@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/dist/connect.d.cts
CHANGED
|
@@ -7574,6 +7574,10 @@ declare const _default: {
|
|
|
7574
7574
|
pattern: string;
|
|
7575
7575
|
type: string;
|
|
7576
7576
|
};
|
|
7577
|
+
ends_at: {
|
|
7578
|
+
format: string;
|
|
7579
|
+
type: string;
|
|
7580
|
+
};
|
|
7577
7581
|
};
|
|
7578
7582
|
required: string[];
|
|
7579
7583
|
type: string;
|
|
@@ -7639,6 +7643,10 @@ declare const _default: {
|
|
|
7639
7643
|
pattern: string;
|
|
7640
7644
|
type: string;
|
|
7641
7645
|
};
|
|
7646
|
+
ends_at: {
|
|
7647
|
+
format: string;
|
|
7648
|
+
type: string;
|
|
7649
|
+
};
|
|
7642
7650
|
};
|
|
7643
7651
|
required: string[];
|
|
7644
7652
|
type: string;
|
|
@@ -18081,7 +18089,8 @@ interface Routes {
|
|
|
18081
18089
|
queryParams: {};
|
|
18082
18090
|
jsonBody: {
|
|
18083
18091
|
acs_credential_id: string;
|
|
18084
|
-
code
|
|
18092
|
+
code?: string | undefined;
|
|
18093
|
+
ends_at?: string | undefined;
|
|
18085
18094
|
};
|
|
18086
18095
|
commonParams: {};
|
|
18087
18096
|
formData: {};
|
|
@@ -6294,6 +6294,10 @@ declare const _default: {
|
|
|
6294
6294
|
pattern: string;
|
|
6295
6295
|
type: string;
|
|
6296
6296
|
};
|
|
6297
|
+
ends_at: {
|
|
6298
|
+
format: string;
|
|
6299
|
+
type: string;
|
|
6300
|
+
};
|
|
6297
6301
|
};
|
|
6298
6302
|
required: string[];
|
|
6299
6303
|
type: string;
|
|
@@ -6359,6 +6363,10 @@ declare const _default: {
|
|
|
6359
6363
|
pattern: string;
|
|
6360
6364
|
type: string;
|
|
6361
6365
|
};
|
|
6366
|
+
ends_at: {
|
|
6367
|
+
format: string;
|
|
6368
|
+
type: string;
|
|
6369
|
+
};
|
|
6362
6370
|
};
|
|
6363
6371
|
required: string[];
|
|
6364
6372
|
type: string;
|
|
@@ -4638,8 +4638,9 @@ export default {
|
|
|
4638
4638
|
properties: {
|
|
4639
4639
|
acs_credential_id: { type: 'string' },
|
|
4640
4640
|
code: { pattern: '^\\d+$', type: 'string' },
|
|
4641
|
+
ends_at: { format: 'date-time', type: 'string' },
|
|
4641
4642
|
},
|
|
4642
|
-
required: ['acs_credential_id'
|
|
4643
|
+
required: ['acs_credential_id'],
|
|
4643
4644
|
type: 'object',
|
|
4644
4645
|
},
|
|
4645
4646
|
},
|
|
@@ -4684,8 +4685,9 @@ export default {
|
|
|
4684
4685
|
properties: {
|
|
4685
4686
|
acs_credential_id: { type: 'string' },
|
|
4686
4687
|
code: { pattern: '^\\d+$', type: 'string' },
|
|
4688
|
+
ends_at: { format: 'date-time', type: 'string' },
|
|
4687
4689
|
},
|
|
4688
|
-
required: ['acs_credential_id'
|
|
4690
|
+
required: ['acs_credential_id'],
|
|
4689
4691
|
type: 'object',
|
|
4690
4692
|
},
|
|
4691
4693
|
},
|