@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.
@@ -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
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@seamapi/types",
3
- "version": "1.17.2",
3
+ "version": "1.18.0",
4
4
  "description": "TypeScript types for the Seam API.",
5
5
  "type": "module",
6
6
  "main": "index.js",
@@ -4382,41 +4382,18 @@ export default {
4382
4382
  },
4383
4383
  },
4384
4384
  '/connect_webviews/list': {
4385
- get: {
4386
- operationId: 'connectWebviewsListGet',
4387
- responses: {
4388
- 200: {
4389
- content: {
4390
- 'application/json': {
4391
- schema: {
4392
- properties: {
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<{