@seamapi/types 1.17.2 → 1.18.1
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
- package/dist/connect.cjs +16 -36
- package/dist/connect.cjs.map +1 -1
- package/dist/connect.d.cts +19 -56
- package/lib/seam/connect/openapi.d.ts +14 -54
- package/lib/seam/connect/openapi.js +14 -34
- package/lib/seam/connect/openapi.js.map +1 -1
- package/lib/seam/connect/route-types.d.ts +5 -2
- package/package.json +1 -1
- package/src/lib/seam/connect/openapi.ts +14 -34
- package/src/lib/seam/connect/route-types.ts +5 -2
package/dist/connect.cjs
CHANGED
|
@@ -3062,9 +3062,9 @@ var openapi_default = {
|
|
|
3062
3062
|
schema: {
|
|
3063
3063
|
properties: {
|
|
3064
3064
|
acs_user_id: { format: "uuid", type: "string" },
|
|
3065
|
-
code: {
|
|
3065
|
+
code: { pattern: "^\\d+$", type: "string" }
|
|
3066
3066
|
},
|
|
3067
|
-
required: ["acs_user_id"],
|
|
3067
|
+
required: ["acs_user_id", "code"],
|
|
3068
3068
|
type: "object"
|
|
3069
3069
|
}
|
|
3070
3070
|
}
|
|
@@ -4413,41 +4413,18 @@ var openapi_default = {
|
|
|
4413
4413
|
}
|
|
4414
4414
|
},
|
|
4415
4415
|
"/connect_webviews/list": {
|
|
4416
|
-
get: {
|
|
4417
|
-
operationId: "connectWebviewsListGet",
|
|
4418
|
-
responses: {
|
|
4419
|
-
200: {
|
|
4420
|
-
content: {
|
|
4421
|
-
"application/json": {
|
|
4422
|
-
schema: {
|
|
4423
|
-
properties: {
|
|
4424
|
-
connect_webviews: {
|
|
4425
|
-
items: { $ref: "#/components/schemas/connect_webview" },
|
|
4426
|
-
type: "array"
|
|
4427
|
-
},
|
|
4428
|
-
ok: { type: "boolean" }
|
|
4429
|
-
},
|
|
4430
|
-
required: ["connect_webviews", "ok"],
|
|
4431
|
-
type: "object"
|
|
4432
|
-
}
|
|
4433
|
-
}
|
|
4434
|
-
},
|
|
4435
|
-
description: "OK"
|
|
4436
|
-
},
|
|
4437
|
-
400: { description: "Bad Request" },
|
|
4438
|
-
401: { description: "Unauthorized" }
|
|
4439
|
-
},
|
|
4440
|
-
security: [
|
|
4441
|
-
{ access_token: [], seam_workspace: [] },
|
|
4442
|
-
{ seam_client_session_token: [] },
|
|
4443
|
-
{ client_session_token: [] }
|
|
4444
|
-
],
|
|
4445
|
-
summary: "/connect_webviews/list",
|
|
4446
|
-
tags: ["/connect_webviews"],
|
|
4447
|
-
"x-fern-ignore": true
|
|
4448
|
-
},
|
|
4449
4416
|
post: {
|
|
4450
4417
|
operationId: "connectWebviewsListPost",
|
|
4418
|
+
requestBody: {
|
|
4419
|
+
content: {
|
|
4420
|
+
"application/json": {
|
|
4421
|
+
schema: {
|
|
4422
|
+
properties: { user_identifier_key: { type: "string" } },
|
|
4423
|
+
type: "object"
|
|
4424
|
+
}
|
|
4425
|
+
}
|
|
4426
|
+
}
|
|
4427
|
+
},
|
|
4451
4428
|
responses: {
|
|
4452
4429
|
200: {
|
|
4453
4430
|
content: {
|
|
@@ -6714,7 +6691,10 @@ var openapi_default = {
|
|
|
6714
6691
|
content: {
|
|
6715
6692
|
"application/json": {
|
|
6716
6693
|
schema: {
|
|
6717
|
-
properties: {
|
|
6694
|
+
properties: {
|
|
6695
|
+
device_id: { format: "uuid", type: "string" },
|
|
6696
|
+
user_identifier_key: { type: "string" }
|
|
6697
|
+
},
|
|
6718
6698
|
required: ["device_id"],
|
|
6719
6699
|
type: "object"
|
|
6720
6700
|
}
|