Skip to content

Commit a2b33a3

Browse files
Update api spec (#1384)
YOYO NEW API SPEC! Co-authored-by: zoo-github-actions-auth[bot] <zoo-github-actions-auth[bot]@users.noreply.github.com>
1 parent ceab6ee commit a2b33a3

File tree

1 file changed

+78
-7
lines changed

1 file changed

+78
-7
lines changed

spec.json

Lines changed: 78 additions & 7 deletions
Original file line numberDiff line numberDiff line change
@@ -27902,11 +27902,6 @@
2790227902
"default": false,
2790327903
"type": "boolean"
2790427904
},
27905-
"payment_intent_id": {
27906-
"nullable": true,
27907-
"description": "Identifier for the payment intent backing this invoice.",
27908-
"type": "string"
27909-
},
2791027905
"pdf": {
2791127906
"nullable": true,
2791227907
"description": "The link to download the PDF for the invoice.",
@@ -28903,10 +28898,10 @@
2890328898
]
2890428899
},
2890528900
{
28906-
"description": "o3",
28901+
"description": "o3-mini",
2890728902
"type": "string",
2890828903
"enum": [
28909-
"o3"
28904+
"o3_mini"
2891028905
]
2891128906
}
2891228907
]
@@ -33201,6 +33196,44 @@
3320133196
"type"
3320233197
]
3320333198
},
33199+
{
33200+
"description": "Get the ids of a given entity type.",
33201+
"type": "object",
33202+
"properties": {
33203+
"filter": {
33204+
"description": "The entity types to be queried.",
33205+
"type": "array",
33206+
"items": {
33207+
"$ref": "#/components/schemas/EntityType"
33208+
}
33209+
},
33210+
"skip": {
33211+
"description": "Skip the first n returned ids. If multiple filters are provided, this skip will apply to each filter individually.",
33212+
"type": "integer",
33213+
"format": "uint32",
33214+
"minimum": 0
33215+
},
33216+
"take": {
33217+
"description": "Take n ids after any ids skipped. This value must be greater than zero and not exceed 1000. If multiple filters are provided, this take will apply to each filter individually. If there are fewer than `take` items of the provided filter type then the returned list's length will be the smaller value.",
33218+
"type": "integer",
33219+
"format": "uint32",
33220+
"minimum": 1,
33221+
"maximum": 1000
33222+
},
33223+
"type": {
33224+
"type": "string",
33225+
"enum": [
33226+
"scene_get_entity_ids"
33227+
]
33228+
}
33229+
},
33230+
"required": [
33231+
"filter",
33232+
"skip",
33233+
"take",
33234+
"type"
33235+
]
33236+
},
3320433237
{
3320533238
"description": "Use orthographic projection.",
3320633239
"type": "object",
@@ -35556,6 +35589,24 @@
3555635589
"type"
3555735590
]
3555835591
},
35592+
{
35593+
"type": "object",
35594+
"properties": {
35595+
"data": {
35596+
"$ref": "#/components/schemas/SceneGetEntityIds"
35597+
},
35598+
"type": {
35599+
"type": "string",
35600+
"enum": [
35601+
"scene_get_entity_ids"
35602+
]
35603+
}
35604+
},
35605+
"required": [
35606+
"data",
35607+
"type"
35608+
]
35609+
},
3555935610
{
3556035611
"type": "object",
3556135612
"properties": {
@@ -38920,6 +38971,26 @@
3892038971
"description": "The response from the `SceneClearAll` endpoint.",
3892138972
"type": "object"
3892238973
},
38974+
"SceneGetEntityIds": {
38975+
"description": "The response from the `SceneGetEntityIds` command.",
38976+
"type": "object",
38977+
"properties": {
38978+
"entity_ids": {
38979+
"description": "The ids of the requested entities.",
38980+
"type": "array",
38981+
"items": {
38982+
"type": "array",
38983+
"items": {
38984+
"type": "string",
38985+
"format": "uuid"
38986+
}
38987+
}
38988+
}
38989+
},
38990+
"required": [
38991+
"entity_ids"
38992+
]
38993+
},
3892338994
"SceneSelectionType": {
3892438995
"description": "The type of scene selection change",
3892538996
"oneOf": [

0 commit comments

Comments
 (0)