@seamapi/types 1.53.1 → 1.54.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 +9 -3
- package/dist/connect.cjs.map +1 -1
- package/dist/connect.d.cts +40 -18
- package/lib/seam/connect/openapi.d.ts +15 -0
- package/lib/seam/connect/openapi.js +9 -3
- package/lib/seam/connect/openapi.js.map +1 -1
- package/lib/seam/connect/route-types.d.ts +25 -18
- package/lib/seam/connect/unstable/models/acs/user.d.ts +3 -0
- package/lib/seam/connect/unstable/models/acs/user.js +1 -0
- package/lib/seam/connect/unstable/models/acs/user.js.map +1 -1
- package/lib/seam/connect/unstable/models/devices/managed-device.js +2 -2
- package/lib/seam/connect/unstable/models/devices/managed-device.js.map +1 -1
- package/package.json +1 -1
- package/src/lib/seam/connect/openapi.ts +9 -3
- package/src/lib/seam/connect/route-types.ts +25 -18
- package/src/lib/seam/connect/unstable/models/acs/user.ts +1 -0
- package/src/lib/seam/connect/unstable/models/devices/managed-device.ts +2 -2
package/dist/connect.d.cts
CHANGED
|
@@ -303,6 +303,10 @@ declare const _default: {
|
|
|
303
303
|
full_name: {
|
|
304
304
|
type: string;
|
|
305
305
|
};
|
|
306
|
+
hid_acs_system_id: {
|
|
307
|
+
format: string;
|
|
308
|
+
type: string;
|
|
309
|
+
};
|
|
306
310
|
is_suspended: {
|
|
307
311
|
type: string;
|
|
308
312
|
};
|
|
@@ -6692,6 +6696,10 @@ declare const _default: {
|
|
|
6692
6696
|
full_name: {
|
|
6693
6697
|
type: string;
|
|
6694
6698
|
};
|
|
6699
|
+
hid_acs_system_id: {
|
|
6700
|
+
format: string;
|
|
6701
|
+
type: string;
|
|
6702
|
+
};
|
|
6695
6703
|
phone_number: {
|
|
6696
6704
|
nullable: boolean;
|
|
6697
6705
|
type: string;
|
|
@@ -6770,6 +6778,10 @@ declare const _default: {
|
|
|
6770
6778
|
full_name: {
|
|
6771
6779
|
type: string;
|
|
6772
6780
|
};
|
|
6781
|
+
hid_acs_system_id: {
|
|
6782
|
+
format: string;
|
|
6783
|
+
type: string;
|
|
6784
|
+
};
|
|
6773
6785
|
phone_number: {
|
|
6774
6786
|
nullable: boolean;
|
|
6775
6787
|
type: string;
|
|
@@ -10152,6 +10164,9 @@ declare const _default: {
|
|
|
10152
10164
|
format: string;
|
|
10153
10165
|
type: string;
|
|
10154
10166
|
};
|
|
10167
|
+
is_programmed: {
|
|
10168
|
+
type: string;
|
|
10169
|
+
};
|
|
10155
10170
|
};
|
|
10156
10171
|
required: string[];
|
|
10157
10172
|
type: string;
|
|
@@ -14247,6 +14262,7 @@ interface Routes {
|
|
|
14247
14262
|
acs_users: Array<{
|
|
14248
14263
|
acs_user_id: string;
|
|
14249
14264
|
acs_system_id: string;
|
|
14265
|
+
hid_acs_system_id?: string | undefined;
|
|
14250
14266
|
workspace_id: string;
|
|
14251
14267
|
created_at: string;
|
|
14252
14268
|
display_name: string;
|
|
@@ -14598,6 +14614,7 @@ interface Routes {
|
|
|
14598
14614
|
acs_user: {
|
|
14599
14615
|
acs_user_id: string;
|
|
14600
14616
|
acs_system_id: string;
|
|
14617
|
+
hid_acs_system_id?: string | undefined;
|
|
14601
14618
|
workspace_id: string;
|
|
14602
14619
|
created_at: string;
|
|
14603
14620
|
display_name: string;
|
|
@@ -14636,6 +14653,7 @@ interface Routes {
|
|
|
14636
14653
|
acs_user: {
|
|
14637
14654
|
acs_user_id: string;
|
|
14638
14655
|
acs_system_id: string;
|
|
14656
|
+
hid_acs_system_id?: string | undefined;
|
|
14639
14657
|
workspace_id: string;
|
|
14640
14658
|
created_at: string;
|
|
14641
14659
|
display_name: string;
|
|
@@ -14663,6 +14681,7 @@ interface Routes {
|
|
|
14663
14681
|
acs_users: Array<{
|
|
14664
14682
|
acs_user_id: string;
|
|
14665
14683
|
acs_system_id: string;
|
|
14684
|
+
hid_acs_system_id?: string | undefined;
|
|
14666
14685
|
workspace_id: string;
|
|
14667
14686
|
created_at: string;
|
|
14668
14687
|
display_name: string;
|
|
@@ -14722,6 +14741,7 @@ interface Routes {
|
|
|
14722
14741
|
email?: string | undefined;
|
|
14723
14742
|
phone_number?: string | undefined;
|
|
14724
14743
|
email_address?: string | undefined;
|
|
14744
|
+
hid_acs_system_id?: string | undefined;
|
|
14725
14745
|
};
|
|
14726
14746
|
commonParams: {};
|
|
14727
14747
|
formData: {};
|
|
@@ -15204,9 +15224,9 @@ interface Routes {
|
|
|
15204
15224
|
online_access_codes_enabled?: boolean | undefined;
|
|
15205
15225
|
/** Indicates whether it is currently possible to use offline access codes for the device. */
|
|
15206
15226
|
offline_access_codes_enabled?: boolean | undefined;
|
|
15207
|
-
/** Deprecated
|
|
15227
|
+
/** Deprecated. Use model.accessory_keypad_supported. */
|
|
15208
15228
|
supports_accessory_keypad?: boolean | undefined;
|
|
15209
|
-
/** Deprecated
|
|
15229
|
+
/** Deprecated. Use offline_access_codes_enabled. */
|
|
15210
15230
|
supports_offline_access_codes?: boolean | undefined;
|
|
15211
15231
|
} & {
|
|
15212
15232
|
august_metadata?: {
|
|
@@ -15650,9 +15670,9 @@ interface Routes {
|
|
|
15650
15670
|
online_access_codes_enabled?: boolean | undefined;
|
|
15651
15671
|
/** Indicates whether it is currently possible to use offline access codes for the device. */
|
|
15652
15672
|
offline_access_codes_enabled?: boolean | undefined;
|
|
15653
|
-
/** Deprecated
|
|
15673
|
+
/** Deprecated. Use model.accessory_keypad_supported. */
|
|
15654
15674
|
supports_accessory_keypad?: boolean | undefined;
|
|
15655
|
-
/** Deprecated
|
|
15675
|
+
/** Deprecated. Use offline_access_codes_enabled. */
|
|
15656
15676
|
supports_offline_access_codes?: boolean | undefined;
|
|
15657
15677
|
} & {
|
|
15658
15678
|
august_metadata?: {
|
|
@@ -16367,9 +16387,9 @@ interface Routes {
|
|
|
16367
16387
|
online_access_codes_enabled?: boolean | undefined;
|
|
16368
16388
|
/** Indicates whether it is currently possible to use offline access codes for the device. */
|
|
16369
16389
|
offline_access_codes_enabled?: boolean | undefined;
|
|
16370
|
-
/** Deprecated
|
|
16390
|
+
/** Deprecated. Use model.accessory_keypad_supported. */
|
|
16371
16391
|
supports_accessory_keypad?: boolean | undefined;
|
|
16372
|
-
/** Deprecated
|
|
16392
|
+
/** Deprecated. Use offline_access_codes_enabled. */
|
|
16373
16393
|
supports_offline_access_codes?: boolean | undefined;
|
|
16374
16394
|
} & {
|
|
16375
16395
|
august_metadata?: {
|
|
@@ -16791,9 +16811,9 @@ interface Routes {
|
|
|
16791
16811
|
online_access_codes_enabled?: boolean | undefined;
|
|
16792
16812
|
/** Indicates whether it is currently possible to use offline access codes for the device. */
|
|
16793
16813
|
offline_access_codes_enabled?: boolean | undefined;
|
|
16794
|
-
/** Deprecated
|
|
16814
|
+
/** Deprecated. Use model.accessory_keypad_supported. */
|
|
16795
16815
|
supports_accessory_keypad?: boolean | undefined;
|
|
16796
|
-
/** Deprecated
|
|
16816
|
+
/** Deprecated. Use offline_access_codes_enabled. */
|
|
16797
16817
|
supports_offline_access_codes?: boolean | undefined;
|
|
16798
16818
|
} & {
|
|
16799
16819
|
august_metadata?: {
|
|
@@ -17237,9 +17257,9 @@ interface Routes {
|
|
|
17237
17257
|
online_access_codes_enabled?: boolean | undefined;
|
|
17238
17258
|
/** Indicates whether it is currently possible to use offline access codes for the device. */
|
|
17239
17259
|
offline_access_codes_enabled?: boolean | undefined;
|
|
17240
|
-
/** Deprecated
|
|
17260
|
+
/** Deprecated. Use model.accessory_keypad_supported. */
|
|
17241
17261
|
supports_accessory_keypad?: boolean | undefined;
|
|
17242
|
-
/** Deprecated
|
|
17262
|
+
/** Deprecated. Use offline_access_codes_enabled. */
|
|
17243
17263
|
supports_offline_access_codes?: boolean | undefined;
|
|
17244
17264
|
} & {
|
|
17245
17265
|
august_metadata?: {
|
|
@@ -17661,9 +17681,9 @@ interface Routes {
|
|
|
17661
17681
|
online_access_codes_enabled?: boolean | undefined;
|
|
17662
17682
|
/** Indicates whether it is currently possible to use offline access codes for the device. */
|
|
17663
17683
|
offline_access_codes_enabled?: boolean | undefined;
|
|
17664
|
-
/** Deprecated
|
|
17684
|
+
/** Deprecated. Use model.accessory_keypad_supported. */
|
|
17665
17685
|
supports_accessory_keypad?: boolean | undefined;
|
|
17666
|
-
/** Deprecated
|
|
17686
|
+
/** Deprecated. Use offline_access_codes_enabled. */
|
|
17667
17687
|
supports_offline_access_codes?: boolean | undefined;
|
|
17668
17688
|
} & {
|
|
17669
17689
|
august_metadata?: {
|
|
@@ -18215,6 +18235,7 @@ interface Routes {
|
|
|
18215
18235
|
jsonBody: {};
|
|
18216
18236
|
commonParams: {
|
|
18217
18237
|
device_id: string;
|
|
18238
|
+
is_programmed?: boolean | undefined;
|
|
18218
18239
|
};
|
|
18219
18240
|
formData: {};
|
|
18220
18241
|
jsonResponse: {
|
|
@@ -18505,9 +18526,9 @@ interface Routes {
|
|
|
18505
18526
|
online_access_codes_enabled?: boolean | undefined;
|
|
18506
18527
|
/** Indicates whether it is currently possible to use offline access codes for the device. */
|
|
18507
18528
|
offline_access_codes_enabled?: boolean | undefined;
|
|
18508
|
-
/** Deprecated
|
|
18529
|
+
/** Deprecated. Use model.accessory_keypad_supported. */
|
|
18509
18530
|
supports_accessory_keypad?: boolean | undefined;
|
|
18510
|
-
/** Deprecated
|
|
18531
|
+
/** Deprecated. Use offline_access_codes_enabled. */
|
|
18511
18532
|
supports_offline_access_codes?: boolean | undefined;
|
|
18512
18533
|
} & {
|
|
18513
18534
|
august_metadata?: {
|
|
@@ -18981,9 +19002,9 @@ interface Routes {
|
|
|
18981
19002
|
online_access_codes_enabled?: boolean | undefined;
|
|
18982
19003
|
/** Indicates whether it is currently possible to use offline access codes for the device. */
|
|
18983
19004
|
offline_access_codes_enabled?: boolean | undefined;
|
|
18984
|
-
/** Deprecated
|
|
19005
|
+
/** Deprecated. Use model.accessory_keypad_supported. */
|
|
18985
19006
|
supports_accessory_keypad?: boolean | undefined;
|
|
18986
|
-
/** Deprecated
|
|
19007
|
+
/** Deprecated. Use offline_access_codes_enabled. */
|
|
18987
19008
|
supports_offline_access_codes?: boolean | undefined;
|
|
18988
19009
|
} & {
|
|
18989
19010
|
august_metadata?: {
|
|
@@ -19554,9 +19575,9 @@ interface Routes {
|
|
|
19554
19575
|
online_access_codes_enabled?: boolean | undefined;
|
|
19555
19576
|
/** Indicates whether it is currently possible to use offline access codes for the device. */
|
|
19556
19577
|
offline_access_codes_enabled?: boolean | undefined;
|
|
19557
|
-
/** Deprecated
|
|
19578
|
+
/** Deprecated. Use model.accessory_keypad_supported. */
|
|
19558
19579
|
supports_accessory_keypad?: boolean | undefined;
|
|
19559
|
-
/** Deprecated
|
|
19580
|
+
/** Deprecated. Use offline_access_codes_enabled. */
|
|
19560
19581
|
supports_offline_access_codes?: boolean | undefined;
|
|
19561
19582
|
} & {
|
|
19562
19583
|
august_metadata?: {
|
|
@@ -19947,6 +19968,7 @@ interface Routes {
|
|
|
19947
19968
|
acs_users: Array<{
|
|
19948
19969
|
acs_user_id: string;
|
|
19949
19970
|
acs_system_id: string;
|
|
19971
|
+
hid_acs_system_id?: string | undefined;
|
|
19950
19972
|
workspace_id: string;
|
|
19951
19973
|
created_at: string;
|
|
19952
19974
|
display_name: string;
|
|
@@ -226,6 +226,10 @@ declare const _default: {
|
|
|
226
226
|
full_name: {
|
|
227
227
|
type: string;
|
|
228
228
|
};
|
|
229
|
+
hid_acs_system_id: {
|
|
230
|
+
format: string;
|
|
231
|
+
type: string;
|
|
232
|
+
};
|
|
229
233
|
is_suspended: {
|
|
230
234
|
type: string;
|
|
231
235
|
};
|
|
@@ -6615,6 +6619,10 @@ declare const _default: {
|
|
|
6615
6619
|
full_name: {
|
|
6616
6620
|
type: string;
|
|
6617
6621
|
};
|
|
6622
|
+
hid_acs_system_id: {
|
|
6623
|
+
format: string;
|
|
6624
|
+
type: string;
|
|
6625
|
+
};
|
|
6618
6626
|
phone_number: {
|
|
6619
6627
|
nullable: boolean;
|
|
6620
6628
|
type: string;
|
|
@@ -6693,6 +6701,10 @@ declare const _default: {
|
|
|
6693
6701
|
full_name: {
|
|
6694
6702
|
type: string;
|
|
6695
6703
|
};
|
|
6704
|
+
hid_acs_system_id: {
|
|
6705
|
+
format: string;
|
|
6706
|
+
type: string;
|
|
6707
|
+
};
|
|
6696
6708
|
phone_number: {
|
|
6697
6709
|
nullable: boolean;
|
|
6698
6710
|
type: string;
|
|
@@ -10075,6 +10087,9 @@ declare const _default: {
|
|
|
10075
10087
|
format: string;
|
|
10076
10088
|
type: string;
|
|
10077
10089
|
};
|
|
10090
|
+
is_programmed: {
|
|
10091
|
+
type: string;
|
|
10092
|
+
};
|
|
10078
10093
|
};
|
|
10079
10094
|
required: string[];
|
|
10080
10095
|
type: string;
|
|
@@ -230,6 +230,7 @@ export default {
|
|
|
230
230
|
},
|
|
231
231
|
external_type_display_name: { type: 'string' },
|
|
232
232
|
full_name: { type: 'string' },
|
|
233
|
+
hid_acs_system_id: { format: 'uuid', type: 'string' },
|
|
233
234
|
is_suspended: { type: 'boolean' },
|
|
234
235
|
phone_number: { nullable: true, type: 'string' },
|
|
235
236
|
workspace_id: { format: 'uuid', type: 'string' },
|
|
@@ -666,11 +667,11 @@ export default {
|
|
|
666
667
|
type: 'string',
|
|
667
668
|
},
|
|
668
669
|
supports_accessory_keypad: {
|
|
669
|
-
description: 'Deprecated
|
|
670
|
+
description: 'Deprecated. Use model.accessory_keypad_supported.',
|
|
670
671
|
type: 'boolean',
|
|
671
672
|
},
|
|
672
673
|
supports_offline_access_codes: {
|
|
673
|
-
description: 'Deprecated
|
|
674
|
+
description: 'Deprecated. Use offline_access_codes_enabled.',
|
|
674
675
|
type: 'boolean',
|
|
675
676
|
},
|
|
676
677
|
},
|
|
@@ -4698,6 +4699,7 @@ export default {
|
|
|
4698
4699
|
},
|
|
4699
4700
|
email_address: { format: 'email', type: 'string' },
|
|
4700
4701
|
full_name: { type: 'string' },
|
|
4702
|
+
hid_acs_system_id: { format: 'uuid', type: 'string' },
|
|
4701
4703
|
phone_number: { nullable: true, type: 'string' },
|
|
4702
4704
|
},
|
|
4703
4705
|
required: ['acs_user_id'],
|
|
@@ -4746,6 +4748,7 @@ export default {
|
|
|
4746
4748
|
},
|
|
4747
4749
|
email_address: { format: 'email', type: 'string' },
|
|
4748
4750
|
full_name: { type: 'string' },
|
|
4751
|
+
hid_acs_system_id: { format: 'uuid', type: 'string' },
|
|
4749
4752
|
phone_number: { nullable: true, type: 'string' },
|
|
4750
4753
|
},
|
|
4751
4754
|
required: ['acs_user_id'],
|
|
@@ -7519,7 +7522,10 @@ export default {
|
|
|
7519
7522
|
content: {
|
|
7520
7523
|
'application/json': {
|
|
7521
7524
|
schema: {
|
|
7522
|
-
properties: {
|
|
7525
|
+
properties: {
|
|
7526
|
+
device_id: { format: 'uuid', type: 'string' },
|
|
7527
|
+
is_programmed: { type: 'boolean' },
|
|
7528
|
+
},
|
|
7523
7529
|
required: ['device_id'],
|
|
7524
7530
|
type: 'object',
|
|
7525
7531
|
},
|