@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.
@@ -598,7 +598,7 @@ export interface Routes {
598
598
  jsonBody: {};
599
599
  commonParams: {
600
600
  acs_user_id: string;
601
- code?: string | undefined;
601
+ code: string;
602
602
  };
603
603
  formData: {};
604
604
  jsonResponse: {
@@ -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<{
@@ -2611,6 +2613,7 @@ export interface Routes {
2611
2613
  jsonBody: {};
2612
2614
  commonParams: {
2613
2615
  device_id: string;
2616
+ user_identifier_key?: string | undefined;
2614
2617
  };
2615
2618
  formData: {};
2616
2619
  jsonResponse: {
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@seamapi/types",
3
- "version": "1.17.2",
3
+ "version": "1.18.1",
4
4
  "description": "TypeScript types for the Seam API.",
5
5
  "type": "module",
6
6
  "main": "index.js",
@@ -3031,9 +3031,9 @@ export default {
3031
3031
  schema: {
3032
3032
  properties: {
3033
3033
  acs_user_id: { format: 'uuid', type: 'string' },
3034
- code: { oneOf: [{ pattern: '^\\d+$', type: 'string' }, {}] },
3034
+ code: { pattern: '^\\d+$', type: 'string' },
3035
3035
  },
3036
- required: ['acs_user_id'],
3036
+ required: ['acs_user_id', 'code'],
3037
3037
  type: 'object',
3038
3038
  },
3039
3039
  },
@@ -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: {
@@ -6683,7 +6660,10 @@ export default {
6683
6660
  content: {
6684
6661
  'application/json': {
6685
6662
  schema: {
6686
- properties: { device_id: { format: 'uuid', type: 'string' } },
6663
+ properties: {
6664
+ device_id: { format: 'uuid', type: 'string' },
6665
+ user_identifier_key: { type: 'string' },
6666
+ },
6687
6667
  required: ['device_id'],
6688
6668
  type: 'object',
6689
6669
  },
@@ -612,7 +612,7 @@ export interface Routes {
612
612
  jsonBody: {}
613
613
  commonParams: {
614
614
  acs_user_id: string
615
- code?: string | undefined
615
+ code: string
616
616
  }
617
617
  formData: {}
618
618
  jsonResponse: {
@@ -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<{
@@ -3514,6 +3516,7 @@ export interface Routes {
3514
3516
  jsonBody: {}
3515
3517
  commonParams: {
3516
3518
  device_id: string
3519
+ user_identifier_key?: string | undefined
3517
3520
  }
3518
3521
  formData: {}
3519
3522
  jsonResponse: {