@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.
- package/dist/connect.cjs +6 -4
- package/dist/connect.cjs.map +1 -1
- package/dist/connect.d.cts +10 -1
- package/lib/seam/connect/openapi.d.ts +8 -0
- package/lib/seam/connect/openapi.js +4 -2
- package/lib/seam/connect/openapi.js.map +1 -1
- package/lib/seam/connect/route-types.d.ts +2 -1
- package/package.json +1 -1
- package/src/lib/seam/connect/openapi.ts +4 -2
- package/src/lib/seam/connect/route-types.ts +2 -1
package/package.json
CHANGED
|
@@ -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'
|
|
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'
|
|
4780
|
+
required: ['acs_credential_id'],
|
|
4779
4781
|
type: 'object',
|
|
4780
4782
|
},
|
|
4781
4783
|
},
|