@seamapi/types 1.74.0 → 1.75.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 +3 -1
- package/dist/connect.cjs.map +1 -1
- package/dist/connect.d.cts +10 -0
- package/lib/seam/connect/openapi.d.ts +8 -0
- package/lib/seam/connect/openapi.js +2 -0
- package/lib/seam/connect/openapi.js.map +1 -1
- package/lib/seam/connect/route-types.d.ts +2 -0
- package/package.json +1 -1
- package/src/lib/seam/connect/openapi.ts +2 -0
- package/src/lib/seam/connect/route-types.ts +2 -0
package/dist/connect.d.cts
CHANGED
|
@@ -6781,6 +6781,10 @@ declare const _default: {
|
|
|
6781
6781
|
pattern: string;
|
|
6782
6782
|
type: string;
|
|
6783
6783
|
};
|
|
6784
|
+
ends_at: {
|
|
6785
|
+
format: string;
|
|
6786
|
+
type: string;
|
|
6787
|
+
};
|
|
6784
6788
|
external_type: {
|
|
6785
6789
|
enum: string[];
|
|
6786
6790
|
type: string;
|
|
@@ -6791,6 +6795,10 @@ declare const _default: {
|
|
|
6791
6795
|
is_override_key: {
|
|
6792
6796
|
type: string;
|
|
6793
6797
|
};
|
|
6798
|
+
starts_at: {
|
|
6799
|
+
format: string;
|
|
6800
|
+
type: string;
|
|
6801
|
+
};
|
|
6794
6802
|
};
|
|
6795
6803
|
required: string[];
|
|
6796
6804
|
type: string;
|
|
@@ -17204,6 +17212,8 @@ interface Routes {
|
|
|
17204
17212
|
external_type?: ('pti_card' | 'brivo_credential' | 'hid_credential' | 'visionline_card') | undefined;
|
|
17205
17213
|
card_format?: ('TLCode' | 'rfid48') | undefined;
|
|
17206
17214
|
is_override_key?: boolean | undefined;
|
|
17215
|
+
starts_at?: string | undefined;
|
|
17216
|
+
ends_at?: string | undefined;
|
|
17207
17217
|
};
|
|
17208
17218
|
formData: {};
|
|
17209
17219
|
jsonResponse: {
|
|
@@ -6707,6 +6707,10 @@ declare const _default: {
|
|
|
6707
6707
|
pattern: string;
|
|
6708
6708
|
type: string;
|
|
6709
6709
|
};
|
|
6710
|
+
ends_at: {
|
|
6711
|
+
format: string;
|
|
6712
|
+
type: string;
|
|
6713
|
+
};
|
|
6710
6714
|
external_type: {
|
|
6711
6715
|
enum: string[];
|
|
6712
6716
|
type: string;
|
|
@@ -6717,6 +6721,10 @@ declare const _default: {
|
|
|
6717
6721
|
is_override_key: {
|
|
6718
6722
|
type: string;
|
|
6719
6723
|
};
|
|
6724
|
+
starts_at: {
|
|
6725
|
+
format: string;
|
|
6726
|
+
type: string;
|
|
6727
|
+
};
|
|
6720
6728
|
};
|
|
6721
6729
|
required: string[];
|
|
6722
6730
|
type: string;
|
|
@@ -5087,6 +5087,7 @@ export default {
|
|
|
5087
5087
|
},
|
|
5088
5088
|
card_format: { enum: ['TLCode', 'rfid48'], type: 'string' },
|
|
5089
5089
|
code: { pattern: '^\\d+$', type: 'string' },
|
|
5090
|
+
ends_at: { format: 'date-time', type: 'string' },
|
|
5090
5091
|
external_type: {
|
|
5091
5092
|
enum: [
|
|
5092
5093
|
'pti_card',
|
|
@@ -5098,6 +5099,7 @@ export default {
|
|
|
5098
5099
|
},
|
|
5099
5100
|
is_multi_phone_sync_credential: { type: 'boolean' },
|
|
5100
5101
|
is_override_key: { type: 'boolean' },
|
|
5102
|
+
starts_at: { format: 'date-time', type: 'string' },
|
|
5101
5103
|
},
|
|
5102
5104
|
required: ['acs_user_id', 'access_method'],
|
|
5103
5105
|
type: 'object',
|