You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
Copy file name to clipboardExpand all lines: spec.json
+212-5Lines changed: 212 additions & 5 deletions
Original file line number
Diff line number
Diff line change
@@ -17996,6 +17996,100 @@
17996
17996
}
17997
17997
}
17998
17998
},
17999
+
"/user/features": {
18000
+
"get": {
18001
+
"tags": [
18002
+
"users"
18003
+
],
18004
+
"summary": "List user-visible feature flags enabled for the authenticated user.",
18005
+
"description": "Returns only features that are marked as safe for exposure to clients and currently resolved to `true` for the requesting user (including org overrides).",
"description": "The Content-Location header for responses that are not the final destination. This is used to indicate where the resource can be found, when it is finished.",
18045
+
"style": "simple",
18046
+
"schema": {
18047
+
"nullable": true,
18048
+
"type": "string"
18049
+
}
18050
+
},
18051
+
"Location": {
18052
+
"description": "The location header for redirects and letting users know if there is a websocket they can listen to for status updates on their operation.",
18053
+
"style": "simple",
18054
+
"schema": {
18055
+
"nullable": true,
18056
+
"type": "string"
18057
+
}
18058
+
},
18059
+
"Set-Cookie": {
18060
+
"description": "Set-Cookie header.",
18061
+
"style": "simple",
18062
+
"schema": {
18063
+
"nullable": true,
18064
+
"type": "string"
18065
+
}
18066
+
},
18067
+
"X-Api-Call-Id": {
18068
+
"description": "ID for this request. We return it so that users can report this to us and help us debug their problems.",
18069
+
"style": "simple",
18070
+
"required": true,
18071
+
"schema": {
18072
+
"type": "string"
18073
+
}
18074
+
}
18075
+
},
18076
+
"content": {
18077
+
"application/json": {
18078
+
"schema": {
18079
+
"$ref": "#/components/schemas/UserFeatureList"
18080
+
}
18081
+
}
18082
+
}
18083
+
},
18084
+
"4XX": {
18085
+
"$ref": "#/components/responses/Error"
18086
+
},
18087
+
"5XX": {
18088
+
"$ref": "#/components/responses/Error"
18089
+
}
18090
+
}
18091
+
}
18092
+
},
17999
18093
"/user/form": {
18000
18094
"put": {
18001
18095
"tags": [
@@ -23323,6 +23417,14 @@
23323
23417
"minimum": 0
23324
23418
}
23325
23419
},
23420
+
{
23421
+
"in": "query",
23422
+
"name": "order_independent_transparency",
23423
+
"description": "Enables nicer visuals for transparent surfaces. This slows down rendering, so it's off by default.",
23424
+
"schema": {
23425
+
"type": "boolean"
23426
+
}
23427
+
},
23326
23428
{
23327
23429
"in": "query",
23328
23430
"name": "pool",
@@ -26738,11 +26840,6 @@
26738
26840
"type": "number",
26739
26841
"format": "money-usd"
26740
26842
},
26741
-
"deleted": {
26742
-
"description": "Always true for a deleted object.",
26743
-
"default": false,
26744
-
"type": "boolean"
26745
-
},
26746
26843
"id": {
26747
26844
"description": "Unique identifier for the object.",
26748
26845
"type": "string"
@@ -30320,6 +30417,13 @@
30320
30417
"enum": [
30321
30418
"void"
30322
30419
]
30420
+
},
30421
+
{
30422
+
"description": "Unknown.",
30423
+
"type": "string",
30424
+
"enum": [
30425
+
"unknown"
30426
+
]
30323
30427
}
30324
30428
]
30325
30429
},
@@ -31252,6 +31356,13 @@
31252
31356
"enum": [
31253
31357
"bye"
31254
31358
]
31359
+
},
31360
+
{
31361
+
"description": "Interrupt the current prompt that is being processed.",
31362
+
"type": "string",
31363
+
"enum": [
31364
+
"interrupt"
31365
+
]
31255
31366
}
31256
31367
]
31257
31368
},
@@ -33740,6 +33851,15 @@
33740
33851
"type": "number",
33741
33852
"format": "float"
33742
33853
},
33854
+
"backface_color": {
33855
+
"nullable": true,
33856
+
"description": "Color of the backface",
33857
+
"allOf": [
33858
+
{
33859
+
"$ref": "#/components/schemas/Color"
33860
+
}
33861
+
]
33862
+
},
33743
33863
"color": {
33744
33864
"description": "Color of the new material",
33745
33865
"allOf": [
@@ -36122,6 +36242,26 @@
36122
36242
"required": [
36123
36243
"type"
36124
36244
]
36245
+
},
36246
+
{
36247
+
"description": "Render transparent surfaces more accurately, but this might make rendering slower. Because it can interfere with runtime performance, it defaults to false.",
36248
+
"type": "object",
36249
+
"properties": {
36250
+
"enabled": {
36251
+
"nullable": true,
36252
+
"description": "Enables or disables OIT. If not given, toggles it.",
0 commit comments