@seamapi/types 1.167.0 → 1.168.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.
@@ -1064,7 +1064,8 @@ export interface Routes {
1064
1064
  queryParams: {};
1065
1065
  jsonBody: {
1066
1066
  acs_credential_id: string;
1067
- code: string;
1067
+ code?: string | undefined;
1068
+ ends_at?: string | undefined;
1068
1069
  };
1069
1070
  commonParams: {};
1070
1071
  formData: {};
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@seamapi/types",
3
- "version": "1.167.0",
3
+ "version": "1.168.0",
4
4
  "description": "TypeScript types for the Seam API.",
5
5
  "type": "module",
6
6
  "main": "index.js",
@@ -4728,8 +4728,9 @@ export default {
4728
4728
  properties: {
4729
4729
  acs_credential_id: { type: 'string' },
4730
4730
  code: { pattern: '^\\d+$', type: 'string' },
4731
+ ends_at: { format: 'date-time', type: 'string' },
4731
4732
  },
4732
- required: ['acs_credential_id', 'code'],
4733
+ required: ['acs_credential_id'],
4733
4734
  type: 'object',
4734
4735
  },
4735
4736
  },
@@ -4774,8 +4775,9 @@ export default {
4774
4775
  properties: {
4775
4776
  acs_credential_id: { type: 'string' },
4776
4777
  code: { pattern: '^\\d+$', type: 'string' },
4778
+ ends_at: { format: 'date-time', type: 'string' },
4777
4779
  },
4778
- required: ['acs_credential_id', 'code'],
4780
+ required: ['acs_credential_id'],
4779
4781
  type: 'object',
4780
4782
  },
4781
4783
  },
@@ -1156,7 +1156,8 @@ export interface Routes {
1156
1156
  queryParams: {}
1157
1157
  jsonBody: {
1158
1158
  acs_credential_id: string
1159
- code: string
1159
+ code?: string | undefined
1160
+ ends_at?: string | undefined
1160
1161
  }
1161
1162
  commonParams: {}
1162
1163
  formData: {}