@seamapi/types 1.17.2 → 1.18.0
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 +10 -33
- package/dist/connect.cjs.map +1 -1
- package/dist/connect.d.cts +12 -48
- package/lib/seam/connect/openapi.d.ts +9 -47
- package/lib/seam/connect/openapi.js +8 -31
- package/lib/seam/connect/openapi.js.map +1 -1
- package/lib/seam/connect/route-types.d.ts +3 -1
- package/package.json +1 -1
- package/src/lib/seam/connect/openapi.ts +8 -31
- package/src/lib/seam/connect/route-types.ts +3 -1
|
@@ -1067,7 +1067,9 @@ export interface Routes {
|
|
|
1067
1067
|
method: 'GET' | 'POST';
|
|
1068
1068
|
queryParams: {};
|
|
1069
1069
|
jsonBody: {};
|
|
1070
|
-
commonParams: {
|
|
1070
|
+
commonParams: {
|
|
1071
|
+
user_identifier_key?: string | undefined;
|
|
1072
|
+
};
|
|
1071
1073
|
formData: {};
|
|
1072
1074
|
jsonResponse: {
|
|
1073
1075
|
connect_webviews: Array<{
|
package/package.json
CHANGED
|
@@ -4382,41 +4382,18 @@ export default {
|
|
|
4382
4382
|
},
|
|
4383
4383
|
},
|
|
4384
4384
|
'/connect_webviews/list': {
|
|
4385
|
-
|
|
4386
|
-
operationId: '
|
|
4387
|
-
|
|
4388
|
-
|
|
4389
|
-
|
|
4390
|
-
|
|
4391
|
-
|
|
4392
|
-
|
|
4393
|
-
connect_webviews: {
|
|
4394
|
-
items: { $ref: '#/components/schemas/connect_webview' },
|
|
4395
|
-
type: 'array',
|
|
4396
|
-
},
|
|
4397
|
-
ok: { type: 'boolean' },
|
|
4398
|
-
},
|
|
4399
|
-
required: ['connect_webviews', 'ok'],
|
|
4400
|
-
type: 'object',
|
|
4401
|
-
},
|
|
4385
|
+
post: {
|
|
4386
|
+
operationId: 'connectWebviewsListPost',
|
|
4387
|
+
requestBody: {
|
|
4388
|
+
content: {
|
|
4389
|
+
'application/json': {
|
|
4390
|
+
schema: {
|
|
4391
|
+
properties: { user_identifier_key: { type: 'string' } },
|
|
4392
|
+
type: 'object',
|
|
4402
4393
|
},
|
|
4403
4394
|
},
|
|
4404
|
-
description: 'OK',
|
|
4405
4395
|
},
|
|
4406
|
-
400: { description: 'Bad Request' },
|
|
4407
|
-
401: { description: 'Unauthorized' },
|
|
4408
4396
|
},
|
|
4409
|
-
security: [
|
|
4410
|
-
{ access_token: [], seam_workspace: [] },
|
|
4411
|
-
{ seam_client_session_token: [] },
|
|
4412
|
-
{ client_session_token: [] },
|
|
4413
|
-
],
|
|
4414
|
-
summary: '/connect_webviews/list',
|
|
4415
|
-
tags: ['/connect_webviews'],
|
|
4416
|
-
'x-fern-ignore': true,
|
|
4417
|
-
},
|
|
4418
|
-
post: {
|
|
4419
|
-
operationId: 'connectWebviewsListPost',
|
|
4420
4397
|
responses: {
|
|
4421
4398
|
200: {
|
|
4422
4399
|
content: {
|
|
@@ -1126,7 +1126,9 @@ export interface Routes {
|
|
|
1126
1126
|
method: 'GET' | 'POST'
|
|
1127
1127
|
queryParams: {}
|
|
1128
1128
|
jsonBody: {}
|
|
1129
|
-
commonParams: {
|
|
1129
|
+
commonParams: {
|
|
1130
|
+
user_identifier_key?: string | undefined
|
|
1131
|
+
}
|
|
1130
1132
|
formData: {}
|
|
1131
1133
|
jsonResponse: {
|
|
1132
1134
|
connect_webviews: Array<{
|