@seamapi/types 1.138.1 → 1.140.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 +100 -15
- package/dist/connect.cjs.map +1 -1
- package/dist/connect.d.cts +287 -42
- package/lib/seam/connect/openapi.d.ts +180 -42
- package/lib/seam/connect/openapi.js +94 -9
- package/lib/seam/connect/openapi.js.map +1 -1
- package/lib/seam/connect/route-types.d.ts +107 -0
- package/lib/seam/connect/unstable/models/acs/entrance.d.ts +45 -0
- package/lib/seam/connect/unstable/models/acs/entrance.js +7 -0
- package/lib/seam/connect/unstable/models/acs/entrance.js.map +1 -1
- package/lib/seam/connect/unstable/models/devices/managed-device.d.ts +66 -0
- package/lib/seam/connect/unstable/models/devices/managed-device.js +16 -0
- package/lib/seam/connect/unstable/models/devices/managed-device.js.map +1 -1
- package/lib/seam/connect/unstable/models/devices/unmanaged-device.d.ts +21 -0
- package/package.json +1 -1
- package/src/lib/seam/connect/openapi.ts +100 -9
- package/src/lib/seam/connect/route-types.ts +125 -0
- package/src/lib/seam/connect/unstable/models/acs/entrance.ts +11 -0
- package/src/lib/seam/connect/unstable/models/devices/managed-device.ts +20 -1
package/dist/connect.d.cts
CHANGED
|
@@ -841,6 +841,17 @@ declare const _default: {
|
|
|
841
841
|
allOf: ({
|
|
842
842
|
allOf: ({
|
|
843
843
|
properties: {
|
|
844
|
+
accessory_keypad: {
|
|
845
|
+
description: string;
|
|
846
|
+
properties: {
|
|
847
|
+
is_connected: {
|
|
848
|
+
description: string;
|
|
849
|
+
type: string;
|
|
850
|
+
};
|
|
851
|
+
};
|
|
852
|
+
required: string[];
|
|
853
|
+
type: string;
|
|
854
|
+
};
|
|
844
855
|
appearance: {
|
|
845
856
|
properties: {
|
|
846
857
|
name: {
|
|
@@ -896,10 +907,18 @@ declare const _default: {
|
|
|
896
907
|
description: string;
|
|
897
908
|
type: string;
|
|
898
909
|
};
|
|
910
|
+
can_connect_accessory_keypad: {
|
|
911
|
+
description: string;
|
|
912
|
+
type: string;
|
|
913
|
+
};
|
|
899
914
|
display_name: {
|
|
900
915
|
description: string;
|
|
901
916
|
type: string;
|
|
902
917
|
};
|
|
918
|
+
has_built_in_keypad: {
|
|
919
|
+
description: string;
|
|
920
|
+
type: string;
|
|
921
|
+
};
|
|
903
922
|
manufacturer_display_name: {
|
|
904
923
|
description: string;
|
|
905
924
|
type: string;
|
|
@@ -974,6 +993,7 @@ declare const _default: {
|
|
|
974
993
|
required: string[];
|
|
975
994
|
type: string;
|
|
976
995
|
};
|
|
996
|
+
accessory_keypad?: never;
|
|
977
997
|
appearance?: never;
|
|
978
998
|
battery?: never;
|
|
979
999
|
battery_level?: never;
|
|
@@ -2694,10 +2714,18 @@ declare const _default: {
|
|
|
2694
2714
|
description: string;
|
|
2695
2715
|
type: string;
|
|
2696
2716
|
};
|
|
2717
|
+
can_connect_accessory_keypad: {
|
|
2718
|
+
description: string;
|
|
2719
|
+
type: string;
|
|
2720
|
+
};
|
|
2697
2721
|
display_name: {
|
|
2698
2722
|
description: string;
|
|
2699
2723
|
type: string;
|
|
2700
2724
|
};
|
|
2725
|
+
has_built_in_keypad: {
|
|
2726
|
+
description: string;
|
|
2727
|
+
type: string;
|
|
2728
|
+
};
|
|
2701
2729
|
manufacturer_display_name: {
|
|
2702
2730
|
description: string;
|
|
2703
2731
|
type: string;
|
|
@@ -7166,6 +7194,25 @@ declare const _default: {
|
|
|
7166
7194
|
display_name: {
|
|
7167
7195
|
type: string;
|
|
7168
7196
|
};
|
|
7197
|
+
latch_metadata: {
|
|
7198
|
+
nullable: boolean;
|
|
7199
|
+
properties: {
|
|
7200
|
+
accessibility_type: {
|
|
7201
|
+
type: string;
|
|
7202
|
+
};
|
|
7203
|
+
is_connected: {
|
|
7204
|
+
type: string;
|
|
7205
|
+
};
|
|
7206
|
+
name: {
|
|
7207
|
+
type: string;
|
|
7208
|
+
};
|
|
7209
|
+
type: {
|
|
7210
|
+
type: string;
|
|
7211
|
+
};
|
|
7212
|
+
};
|
|
7213
|
+
required: string[];
|
|
7214
|
+
type: string;
|
|
7215
|
+
};
|
|
7169
7216
|
visionline_metadata: {
|
|
7170
7217
|
nullable: boolean;
|
|
7171
7218
|
properties: {
|
|
@@ -7365,6 +7412,25 @@ declare const _default: {
|
|
|
7365
7412
|
display_name: {
|
|
7366
7413
|
type: string;
|
|
7367
7414
|
};
|
|
7415
|
+
latch_metadata: {
|
|
7416
|
+
nullable: boolean;
|
|
7417
|
+
properties: {
|
|
7418
|
+
accessibility_type: {
|
|
7419
|
+
type: string;
|
|
7420
|
+
};
|
|
7421
|
+
is_connected: {
|
|
7422
|
+
type: string;
|
|
7423
|
+
};
|
|
7424
|
+
name: {
|
|
7425
|
+
type: string;
|
|
7426
|
+
};
|
|
7427
|
+
type: {
|
|
7428
|
+
type: string;
|
|
7429
|
+
};
|
|
7430
|
+
};
|
|
7431
|
+
required: string[];
|
|
7432
|
+
type: string;
|
|
7433
|
+
};
|
|
7368
7434
|
visionline_metadata: {
|
|
7369
7435
|
nullable: boolean;
|
|
7370
7436
|
properties: {
|
|
@@ -8276,6 +8342,25 @@ declare const _default: {
|
|
|
8276
8342
|
display_name: {
|
|
8277
8343
|
type: string;
|
|
8278
8344
|
};
|
|
8345
|
+
latch_metadata: {
|
|
8346
|
+
nullable: boolean;
|
|
8347
|
+
properties: {
|
|
8348
|
+
accessibility_type: {
|
|
8349
|
+
type: string;
|
|
8350
|
+
};
|
|
8351
|
+
is_connected: {
|
|
8352
|
+
type: string;
|
|
8353
|
+
};
|
|
8354
|
+
name: {
|
|
8355
|
+
type: string;
|
|
8356
|
+
};
|
|
8357
|
+
type: {
|
|
8358
|
+
type: string;
|
|
8359
|
+
};
|
|
8360
|
+
};
|
|
8361
|
+
required: string[];
|
|
8362
|
+
type: string;
|
|
8363
|
+
};
|
|
8279
8364
|
visionline_metadata: {
|
|
8280
8365
|
nullable: boolean;
|
|
8281
8366
|
properties: {
|
|
@@ -12084,20 +12169,25 @@ declare const _default: {
|
|
|
12084
12169
|
};
|
|
12085
12170
|
};
|
|
12086
12171
|
security: ({
|
|
12087
|
-
|
|
12088
|
-
|
|
12089
|
-
|
|
12090
|
-
|
|
12172
|
+
client_session: never[];
|
|
12173
|
+
pat_with_workspace?: never;
|
|
12174
|
+
console_session?: never;
|
|
12175
|
+
api_key?: never;
|
|
12091
12176
|
} | {
|
|
12092
|
-
|
|
12093
|
-
|
|
12094
|
-
|
|
12095
|
-
|
|
12177
|
+
pat_with_workspace: never[];
|
|
12178
|
+
client_session?: never;
|
|
12179
|
+
console_session?: never;
|
|
12180
|
+
api_key?: never;
|
|
12096
12181
|
} | {
|
|
12097
|
-
|
|
12098
|
-
|
|
12099
|
-
|
|
12100
|
-
|
|
12182
|
+
console_session: never[];
|
|
12183
|
+
client_session?: never;
|
|
12184
|
+
pat_with_workspace?: never;
|
|
12185
|
+
api_key?: never;
|
|
12186
|
+
} | {
|
|
12187
|
+
api_key: never[];
|
|
12188
|
+
client_session?: never;
|
|
12189
|
+
pat_with_workspace?: never;
|
|
12190
|
+
console_session?: never;
|
|
12101
12191
|
})[];
|
|
12102
12192
|
summary: string;
|
|
12103
12193
|
tags: string[];
|
|
@@ -14021,17 +14111,25 @@ declare const _default: {
|
|
|
14021
14111
|
};
|
|
14022
14112
|
};
|
|
14023
14113
|
security: ({
|
|
14024
|
-
api_key: never[];
|
|
14025
|
-
client_session?: never;
|
|
14026
|
-
pat_with_workspace?: never;
|
|
14027
|
-
} | {
|
|
14028
14114
|
client_session: never[];
|
|
14029
|
-
api_key?: never;
|
|
14030
14115
|
pat_with_workspace?: never;
|
|
14116
|
+
console_session?: never;
|
|
14117
|
+
api_key?: never;
|
|
14031
14118
|
} | {
|
|
14032
14119
|
pat_with_workspace: never[];
|
|
14120
|
+
client_session?: never;
|
|
14121
|
+
console_session?: never;
|
|
14033
14122
|
api_key?: never;
|
|
14123
|
+
} | {
|
|
14124
|
+
console_session: never[];
|
|
14034
14125
|
client_session?: never;
|
|
14126
|
+
pat_with_workspace?: never;
|
|
14127
|
+
api_key?: never;
|
|
14128
|
+
} | {
|
|
14129
|
+
api_key: never[];
|
|
14130
|
+
client_session?: never;
|
|
14131
|
+
pat_with_workspace?: never;
|
|
14132
|
+
console_session?: never;
|
|
14035
14133
|
})[];
|
|
14036
14134
|
summary: string;
|
|
14037
14135
|
tags: string[];
|
|
@@ -14089,17 +14187,25 @@ declare const _default: {
|
|
|
14089
14187
|
};
|
|
14090
14188
|
};
|
|
14091
14189
|
security: ({
|
|
14092
|
-
api_key: never[];
|
|
14093
|
-
client_session?: never;
|
|
14094
|
-
pat_with_workspace?: never;
|
|
14095
|
-
} | {
|
|
14096
14190
|
client_session: never[];
|
|
14097
|
-
api_key?: never;
|
|
14098
14191
|
pat_with_workspace?: never;
|
|
14192
|
+
console_session?: never;
|
|
14193
|
+
api_key?: never;
|
|
14099
14194
|
} | {
|
|
14100
14195
|
pat_with_workspace: never[];
|
|
14196
|
+
client_session?: never;
|
|
14197
|
+
console_session?: never;
|
|
14198
|
+
api_key?: never;
|
|
14199
|
+
} | {
|
|
14200
|
+
console_session: never[];
|
|
14201
|
+
client_session?: never;
|
|
14202
|
+
pat_with_workspace?: never;
|
|
14101
14203
|
api_key?: never;
|
|
14204
|
+
} | {
|
|
14205
|
+
api_key: never[];
|
|
14102
14206
|
client_session?: never;
|
|
14207
|
+
pat_with_workspace?: never;
|
|
14208
|
+
console_session?: never;
|
|
14103
14209
|
})[];
|
|
14104
14210
|
summary: string;
|
|
14105
14211
|
tags: string[];
|
|
@@ -14165,17 +14271,25 @@ declare const _default: {
|
|
|
14165
14271
|
};
|
|
14166
14272
|
};
|
|
14167
14273
|
security: ({
|
|
14168
|
-
api_key: never[];
|
|
14169
|
-
client_session?: never;
|
|
14170
|
-
pat_with_workspace?: never;
|
|
14171
|
-
} | {
|
|
14172
14274
|
client_session: never[];
|
|
14173
|
-
api_key?: never;
|
|
14174
14275
|
pat_with_workspace?: never;
|
|
14276
|
+
console_session?: never;
|
|
14277
|
+
api_key?: never;
|
|
14175
14278
|
} | {
|
|
14176
14279
|
pat_with_workspace: never[];
|
|
14280
|
+
client_session?: never;
|
|
14281
|
+
console_session?: never;
|
|
14177
14282
|
api_key?: never;
|
|
14283
|
+
} | {
|
|
14284
|
+
console_session: never[];
|
|
14285
|
+
client_session?: never;
|
|
14286
|
+
pat_with_workspace?: never;
|
|
14287
|
+
api_key?: never;
|
|
14288
|
+
} | {
|
|
14289
|
+
api_key: never[];
|
|
14178
14290
|
client_session?: never;
|
|
14291
|
+
pat_with_workspace?: never;
|
|
14292
|
+
console_session?: never;
|
|
14179
14293
|
})[];
|
|
14180
14294
|
summary: string;
|
|
14181
14295
|
tags: string[];
|
|
@@ -14247,17 +14361,25 @@ declare const _default: {
|
|
|
14247
14361
|
};
|
|
14248
14362
|
};
|
|
14249
14363
|
security: ({
|
|
14250
|
-
api_key: never[];
|
|
14251
|
-
client_session?: never;
|
|
14252
|
-
pat_with_workspace?: never;
|
|
14253
|
-
} | {
|
|
14254
14364
|
client_session: never[];
|
|
14255
|
-
api_key?: never;
|
|
14256
14365
|
pat_with_workspace?: never;
|
|
14366
|
+
console_session?: never;
|
|
14367
|
+
api_key?: never;
|
|
14257
14368
|
} | {
|
|
14258
14369
|
pat_with_workspace: never[];
|
|
14370
|
+
client_session?: never;
|
|
14371
|
+
console_session?: never;
|
|
14259
14372
|
api_key?: never;
|
|
14373
|
+
} | {
|
|
14374
|
+
console_session: never[];
|
|
14260
14375
|
client_session?: never;
|
|
14376
|
+
pat_with_workspace?: never;
|
|
14377
|
+
api_key?: never;
|
|
14378
|
+
} | {
|
|
14379
|
+
api_key: never[];
|
|
14380
|
+
client_session?: never;
|
|
14381
|
+
pat_with_workspace?: never;
|
|
14382
|
+
console_session?: never;
|
|
14261
14383
|
})[];
|
|
14262
14384
|
summary: string;
|
|
14263
14385
|
tags: string[];
|
|
@@ -14466,17 +14588,25 @@ declare const _default: {
|
|
|
14466
14588
|
};
|
|
14467
14589
|
};
|
|
14468
14590
|
security: ({
|
|
14469
|
-
api_key: never[];
|
|
14470
|
-
client_session?: never;
|
|
14471
|
-
pat_with_workspace?: never;
|
|
14472
|
-
} | {
|
|
14473
14591
|
client_session: never[];
|
|
14474
|
-
api_key?: never;
|
|
14475
14592
|
pat_with_workspace?: never;
|
|
14593
|
+
console_session?: never;
|
|
14594
|
+
api_key?: never;
|
|
14476
14595
|
} | {
|
|
14477
14596
|
pat_with_workspace: never[];
|
|
14597
|
+
client_session?: never;
|
|
14598
|
+
console_session?: never;
|
|
14478
14599
|
api_key?: never;
|
|
14600
|
+
} | {
|
|
14601
|
+
console_session: never[];
|
|
14479
14602
|
client_session?: never;
|
|
14603
|
+
pat_with_workspace?: never;
|
|
14604
|
+
api_key?: never;
|
|
14605
|
+
} | {
|
|
14606
|
+
api_key: never[];
|
|
14607
|
+
client_session?: never;
|
|
14608
|
+
pat_with_workspace?: never;
|
|
14609
|
+
console_session?: never;
|
|
14480
14610
|
})[];
|
|
14481
14611
|
summary: string;
|
|
14482
14612
|
tags: string[];
|
|
@@ -14544,17 +14674,25 @@ declare const _default: {
|
|
|
14544
14674
|
};
|
|
14545
14675
|
};
|
|
14546
14676
|
security: ({
|
|
14547
|
-
api_key: never[];
|
|
14548
|
-
client_session?: never;
|
|
14549
|
-
pat_with_workspace?: never;
|
|
14550
|
-
} | {
|
|
14551
14677
|
client_session: never[];
|
|
14552
|
-
api_key?: never;
|
|
14553
14678
|
pat_with_workspace?: never;
|
|
14679
|
+
console_session?: never;
|
|
14680
|
+
api_key?: never;
|
|
14554
14681
|
} | {
|
|
14555
14682
|
pat_with_workspace: never[];
|
|
14683
|
+
client_session?: never;
|
|
14684
|
+
console_session?: never;
|
|
14556
14685
|
api_key?: never;
|
|
14686
|
+
} | {
|
|
14687
|
+
console_session: never[];
|
|
14688
|
+
client_session?: never;
|
|
14689
|
+
pat_with_workspace?: never;
|
|
14690
|
+
api_key?: never;
|
|
14691
|
+
} | {
|
|
14692
|
+
api_key: never[];
|
|
14557
14693
|
client_session?: never;
|
|
14694
|
+
pat_with_workspace?: never;
|
|
14695
|
+
console_session?: never;
|
|
14558
14696
|
})[];
|
|
14559
14697
|
summary: string;
|
|
14560
14698
|
tags: string[];
|
|
@@ -18165,6 +18303,12 @@ interface Routes {
|
|
|
18165
18303
|
display_name: string;
|
|
18166
18304
|
acs_system_id: string;
|
|
18167
18305
|
created_at: string;
|
|
18306
|
+
latch_metadata: {
|
|
18307
|
+
accessibility_type: string;
|
|
18308
|
+
name: string;
|
|
18309
|
+
type: string;
|
|
18310
|
+
is_connected: boolean;
|
|
18311
|
+
} | null;
|
|
18168
18312
|
visionline_metadata: {
|
|
18169
18313
|
door_name: string;
|
|
18170
18314
|
door_category: 'entrance' | 'guest' | 'elevator reader' | 'common' | 'common (PMS)';
|
|
@@ -18204,6 +18348,12 @@ interface Routes {
|
|
|
18204
18348
|
display_name: string;
|
|
18205
18349
|
acs_system_id: string;
|
|
18206
18350
|
created_at: string;
|
|
18351
|
+
latch_metadata: {
|
|
18352
|
+
accessibility_type: string;
|
|
18353
|
+
name: string;
|
|
18354
|
+
type: string;
|
|
18355
|
+
is_connected: boolean;
|
|
18356
|
+
} | null;
|
|
18207
18357
|
visionline_metadata: {
|
|
18208
18358
|
door_name: string;
|
|
18209
18359
|
door_category: 'entrance' | 'guest' | 'elevator reader' | 'common' | 'common (PMS)';
|
|
@@ -18471,6 +18621,12 @@ interface Routes {
|
|
|
18471
18621
|
display_name: string;
|
|
18472
18622
|
acs_system_id: string;
|
|
18473
18623
|
created_at: string;
|
|
18624
|
+
latch_metadata: {
|
|
18625
|
+
accessibility_type: string;
|
|
18626
|
+
name: string;
|
|
18627
|
+
type: string;
|
|
18628
|
+
is_connected: boolean;
|
|
18629
|
+
} | null;
|
|
18474
18630
|
visionline_metadata: {
|
|
18475
18631
|
door_name: string;
|
|
18476
18632
|
door_category: 'entrance' | 'guest' | 'elevator reader' | 'common' | 'common (PMS)';
|
|
@@ -19036,15 +19192,24 @@ interface Routes {
|
|
|
19036
19192
|
online: boolean;
|
|
19037
19193
|
/** Name of the device. Deprecated - use device.display_name instead */
|
|
19038
19194
|
name: string;
|
|
19195
|
+
/** Represents the accessory keypad state. */
|
|
19196
|
+
accessory_keypad?: {
|
|
19197
|
+
/** Indicates if the accessory_keypad is connected to the device. */
|
|
19198
|
+
is_connected: boolean;
|
|
19199
|
+
} | undefined;
|
|
19039
19200
|
appearance: {
|
|
19040
19201
|
/** Name of the device as seen from the provider API and application, not settable through Seam. */
|
|
19041
19202
|
name: string;
|
|
19042
19203
|
};
|
|
19043
19204
|
model: {
|
|
19205
|
+
/** Indicates whether the device can connect a accessory keypad. */
|
|
19206
|
+
can_connect_accessory_keypad?: boolean | undefined;
|
|
19044
19207
|
/** Display name of the device model. */
|
|
19045
19208
|
display_name: string;
|
|
19046
19209
|
/** Display name that corresponds to the manufacturer-specific terminology for the device. */
|
|
19047
19210
|
manufacturer_display_name: string;
|
|
19211
|
+
/** Indicates whether the device has a built in accessory keypad. */
|
|
19212
|
+
has_built_in_keypad?: boolean | undefined;
|
|
19048
19213
|
/** Indicates whether the device supports offline access codes. */
|
|
19049
19214
|
offline_access_codes_supported?: boolean | undefined;
|
|
19050
19215
|
/** Indicates whether the device supports online access codes. */
|
|
@@ -19535,15 +19700,24 @@ interface Routes {
|
|
|
19535
19700
|
online: boolean;
|
|
19536
19701
|
/** Name of the device. Deprecated - use device.display_name instead */
|
|
19537
19702
|
name: string;
|
|
19703
|
+
/** Represents the accessory keypad state. */
|
|
19704
|
+
accessory_keypad?: {
|
|
19705
|
+
/** Indicates if the accessory_keypad is connected to the device. */
|
|
19706
|
+
is_connected: boolean;
|
|
19707
|
+
} | undefined;
|
|
19538
19708
|
appearance: {
|
|
19539
19709
|
/** Name of the device as seen from the provider API and application, not settable through Seam. */
|
|
19540
19710
|
name: string;
|
|
19541
19711
|
};
|
|
19542
19712
|
model: {
|
|
19713
|
+
/** Indicates whether the device can connect a accessory keypad. */
|
|
19714
|
+
can_connect_accessory_keypad?: boolean | undefined;
|
|
19543
19715
|
/** Display name of the device model. */
|
|
19544
19716
|
display_name: string;
|
|
19545
19717
|
/** Display name that corresponds to the manufacturer-specific terminology for the device. */
|
|
19546
19718
|
manufacturer_display_name: string;
|
|
19719
|
+
/** Indicates whether the device has a built in accessory keypad. */
|
|
19720
|
+
has_built_in_keypad?: boolean | undefined;
|
|
19547
19721
|
/** Indicates whether the device supports offline access codes. */
|
|
19548
19722
|
offline_access_codes_supported?: boolean | undefined;
|
|
19549
19723
|
/** Indicates whether the device supports online access codes. */
|
|
@@ -20083,10 +20257,14 @@ interface Routes {
|
|
|
20083
20257
|
/** Indicates whether it is currently possible to use offline access codes for the device. */
|
|
20084
20258
|
offline_access_codes_enabled?: boolean | undefined;
|
|
20085
20259
|
model: {
|
|
20260
|
+
/** Indicates whether the device can connect a accessory keypad. */
|
|
20261
|
+
can_connect_accessory_keypad?: boolean | undefined;
|
|
20086
20262
|
/** Display name of the device model. */
|
|
20087
20263
|
display_name: string;
|
|
20088
20264
|
/** Display name that corresponds to the manufacturer-specific terminology for the device. */
|
|
20089
20265
|
manufacturer_display_name: string;
|
|
20266
|
+
/** Indicates whether the device has a built in accessory keypad. */
|
|
20267
|
+
has_built_in_keypad?: boolean | undefined;
|
|
20090
20268
|
/** Indicates whether the device supports offline access codes. */
|
|
20091
20269
|
offline_access_codes_supported?: boolean | undefined;
|
|
20092
20270
|
/** Indicates whether the device supports online access codes. */
|
|
@@ -20169,10 +20347,14 @@ interface Routes {
|
|
|
20169
20347
|
/** Indicates whether it is currently possible to use offline access codes for the device. */
|
|
20170
20348
|
offline_access_codes_enabled?: boolean | undefined;
|
|
20171
20349
|
model: {
|
|
20350
|
+
/** Indicates whether the device can connect a accessory keypad. */
|
|
20351
|
+
can_connect_accessory_keypad?: boolean | undefined;
|
|
20172
20352
|
/** Display name of the device model. */
|
|
20173
20353
|
display_name: string;
|
|
20174
20354
|
/** Display name that corresponds to the manufacturer-specific terminology for the device. */
|
|
20175
20355
|
manufacturer_display_name: string;
|
|
20356
|
+
/** Indicates whether the device has a built in accessory keypad. */
|
|
20357
|
+
has_built_in_keypad?: boolean | undefined;
|
|
20176
20358
|
/** Indicates whether the device supports offline access codes. */
|
|
20177
20359
|
offline_access_codes_supported?: boolean | undefined;
|
|
20178
20360
|
/** Indicates whether the device supports online access codes. */
|
|
@@ -20370,15 +20552,24 @@ interface Routes {
|
|
|
20370
20552
|
online: boolean;
|
|
20371
20553
|
/** Name of the device. Deprecated - use device.display_name instead */
|
|
20372
20554
|
name: string;
|
|
20555
|
+
/** Represents the accessory keypad state. */
|
|
20556
|
+
accessory_keypad?: {
|
|
20557
|
+
/** Indicates if the accessory_keypad is connected to the device. */
|
|
20558
|
+
is_connected: boolean;
|
|
20559
|
+
} | undefined;
|
|
20373
20560
|
appearance: {
|
|
20374
20561
|
/** Name of the device as seen from the provider API and application, not settable through Seam. */
|
|
20375
20562
|
name: string;
|
|
20376
20563
|
};
|
|
20377
20564
|
model: {
|
|
20565
|
+
/** Indicates whether the device can connect a accessory keypad. */
|
|
20566
|
+
can_connect_accessory_keypad?: boolean | undefined;
|
|
20378
20567
|
/** Display name of the device model. */
|
|
20379
20568
|
display_name: string;
|
|
20380
20569
|
/** Display name that corresponds to the manufacturer-specific terminology for the device. */
|
|
20381
20570
|
manufacturer_display_name: string;
|
|
20571
|
+
/** Indicates whether the device has a built in accessory keypad. */
|
|
20572
|
+
has_built_in_keypad?: boolean | undefined;
|
|
20382
20573
|
/** Indicates whether the device supports offline access codes. */
|
|
20383
20574
|
offline_access_codes_supported?: boolean | undefined;
|
|
20384
20575
|
/** Indicates whether the device supports online access codes. */
|
|
@@ -20846,15 +21037,24 @@ interface Routes {
|
|
|
20846
21037
|
online: boolean;
|
|
20847
21038
|
/** Name of the device. Deprecated - use device.display_name instead */
|
|
20848
21039
|
name: string;
|
|
21040
|
+
/** Represents the accessory keypad state. */
|
|
21041
|
+
accessory_keypad?: {
|
|
21042
|
+
/** Indicates if the accessory_keypad is connected to the device. */
|
|
21043
|
+
is_connected: boolean;
|
|
21044
|
+
} | undefined;
|
|
20849
21045
|
appearance: {
|
|
20850
21046
|
/** Name of the device as seen from the provider API and application, not settable through Seam. */
|
|
20851
21047
|
name: string;
|
|
20852
21048
|
};
|
|
20853
21049
|
model: {
|
|
21050
|
+
/** Indicates whether the device can connect a accessory keypad. */
|
|
21051
|
+
can_connect_accessory_keypad?: boolean | undefined;
|
|
20854
21052
|
/** Display name of the device model. */
|
|
20855
21053
|
display_name: string;
|
|
20856
21054
|
/** Display name that corresponds to the manufacturer-specific terminology for the device. */
|
|
20857
21055
|
manufacturer_display_name: string;
|
|
21056
|
+
/** Indicates whether the device has a built in accessory keypad. */
|
|
21057
|
+
has_built_in_keypad?: boolean | undefined;
|
|
20858
21058
|
/** Indicates whether the device supports offline access codes. */
|
|
20859
21059
|
offline_access_codes_supported?: boolean | undefined;
|
|
20860
21060
|
/** Indicates whether the device supports online access codes. */
|
|
@@ -21345,15 +21545,24 @@ interface Routes {
|
|
|
21345
21545
|
online: boolean;
|
|
21346
21546
|
/** Name of the device. Deprecated - use device.display_name instead */
|
|
21347
21547
|
name: string;
|
|
21548
|
+
/** Represents the accessory keypad state. */
|
|
21549
|
+
accessory_keypad?: {
|
|
21550
|
+
/** Indicates if the accessory_keypad is connected to the device. */
|
|
21551
|
+
is_connected: boolean;
|
|
21552
|
+
} | undefined;
|
|
21348
21553
|
appearance: {
|
|
21349
21554
|
/** Name of the device as seen from the provider API and application, not settable through Seam. */
|
|
21350
21555
|
name: string;
|
|
21351
21556
|
};
|
|
21352
21557
|
model: {
|
|
21558
|
+
/** Indicates whether the device can connect a accessory keypad. */
|
|
21559
|
+
can_connect_accessory_keypad?: boolean | undefined;
|
|
21353
21560
|
/** Display name of the device model. */
|
|
21354
21561
|
display_name: string;
|
|
21355
21562
|
/** Display name that corresponds to the manufacturer-specific terminology for the device. */
|
|
21356
21563
|
manufacturer_display_name: string;
|
|
21564
|
+
/** Indicates whether the device has a built in accessory keypad. */
|
|
21565
|
+
has_built_in_keypad?: boolean | undefined;
|
|
21357
21566
|
/** Indicates whether the device supports offline access codes. */
|
|
21358
21567
|
offline_access_codes_supported?: boolean | undefined;
|
|
21359
21568
|
/** Indicates whether the device supports online access codes. */
|
|
@@ -21821,15 +22030,24 @@ interface Routes {
|
|
|
21821
22030
|
online: boolean;
|
|
21822
22031
|
/** Name of the device. Deprecated - use device.display_name instead */
|
|
21823
22032
|
name: string;
|
|
22033
|
+
/** Represents the accessory keypad state. */
|
|
22034
|
+
accessory_keypad?: {
|
|
22035
|
+
/** Indicates if the accessory_keypad is connected to the device. */
|
|
22036
|
+
is_connected: boolean;
|
|
22037
|
+
} | undefined;
|
|
21824
22038
|
appearance: {
|
|
21825
22039
|
/** Name of the device as seen from the provider API and application, not settable through Seam. */
|
|
21826
22040
|
name: string;
|
|
21827
22041
|
};
|
|
21828
22042
|
model: {
|
|
22043
|
+
/** Indicates whether the device can connect a accessory keypad. */
|
|
22044
|
+
can_connect_accessory_keypad?: boolean | undefined;
|
|
21829
22045
|
/** Display name of the device model. */
|
|
21830
22046
|
display_name: string;
|
|
21831
22047
|
/** Display name that corresponds to the manufacturer-specific terminology for the device. */
|
|
21832
22048
|
manufacturer_display_name: string;
|
|
22049
|
+
/** Indicates whether the device has a built in accessory keypad. */
|
|
22050
|
+
has_built_in_keypad?: boolean | undefined;
|
|
21833
22051
|
/** Indicates whether the device supports offline access codes. */
|
|
21834
22052
|
offline_access_codes_supported?: boolean | undefined;
|
|
21835
22053
|
/** Indicates whether the device supports online access codes. */
|
|
@@ -22936,15 +23154,24 @@ interface Routes {
|
|
|
22936
23154
|
online: boolean;
|
|
22937
23155
|
/** Name of the device. Deprecated - use device.display_name instead */
|
|
22938
23156
|
name: string;
|
|
23157
|
+
/** Represents the accessory keypad state. */
|
|
23158
|
+
accessory_keypad?: {
|
|
23159
|
+
/** Indicates if the accessory_keypad is connected to the device. */
|
|
23160
|
+
is_connected: boolean;
|
|
23161
|
+
} | undefined;
|
|
22939
23162
|
appearance: {
|
|
22940
23163
|
/** Name of the device as seen from the provider API and application, not settable through Seam. */
|
|
22941
23164
|
name: string;
|
|
22942
23165
|
};
|
|
22943
23166
|
model: {
|
|
23167
|
+
/** Indicates whether the device can connect a accessory keypad. */
|
|
23168
|
+
can_connect_accessory_keypad?: boolean | undefined;
|
|
22944
23169
|
/** Display name of the device model. */
|
|
22945
23170
|
display_name: string;
|
|
22946
23171
|
/** Display name that corresponds to the manufacturer-specific terminology for the device. */
|
|
22947
23172
|
manufacturer_display_name: string;
|
|
23173
|
+
/** Indicates whether the device has a built in accessory keypad. */
|
|
23174
|
+
has_built_in_keypad?: boolean | undefined;
|
|
22948
23175
|
/** Indicates whether the device supports offline access codes. */
|
|
22949
23176
|
offline_access_codes_supported?: boolean | undefined;
|
|
22950
23177
|
/** Indicates whether the device supports online access codes. */
|
|
@@ -23511,15 +23738,24 @@ interface Routes {
|
|
|
23511
23738
|
online: boolean;
|
|
23512
23739
|
/** Name of the device. Deprecated - use device.display_name instead */
|
|
23513
23740
|
name: string;
|
|
23741
|
+
/** Represents the accessory keypad state. */
|
|
23742
|
+
accessory_keypad?: {
|
|
23743
|
+
/** Indicates if the accessory_keypad is connected to the device. */
|
|
23744
|
+
is_connected: boolean;
|
|
23745
|
+
} | undefined;
|
|
23514
23746
|
appearance: {
|
|
23515
23747
|
/** Name of the device as seen from the provider API and application, not settable through Seam. */
|
|
23516
23748
|
name: string;
|
|
23517
23749
|
};
|
|
23518
23750
|
model: {
|
|
23751
|
+
/** Indicates whether the device can connect a accessory keypad. */
|
|
23752
|
+
can_connect_accessory_keypad?: boolean | undefined;
|
|
23519
23753
|
/** Display name of the device model. */
|
|
23520
23754
|
display_name: string;
|
|
23521
23755
|
/** Display name that corresponds to the manufacturer-specific terminology for the device. */
|
|
23522
23756
|
manufacturer_display_name: string;
|
|
23757
|
+
/** Indicates whether the device has a built in accessory keypad. */
|
|
23758
|
+
has_built_in_keypad?: boolean | undefined;
|
|
23523
23759
|
/** Indicates whether the device supports offline access codes. */
|
|
23524
23760
|
offline_access_codes_supported?: boolean | undefined;
|
|
23525
23761
|
/** Indicates whether the device supports online access codes. */
|
|
@@ -24271,15 +24507,24 @@ interface Routes {
|
|
|
24271
24507
|
online: boolean;
|
|
24272
24508
|
/** Name of the device. Deprecated - use device.display_name instead */
|
|
24273
24509
|
name: string;
|
|
24510
|
+
/** Represents the accessory keypad state. */
|
|
24511
|
+
accessory_keypad?: {
|
|
24512
|
+
/** Indicates if the accessory_keypad is connected to the device. */
|
|
24513
|
+
is_connected: boolean;
|
|
24514
|
+
} | undefined;
|
|
24274
24515
|
appearance: {
|
|
24275
24516
|
/** Name of the device as seen from the provider API and application, not settable through Seam. */
|
|
24276
24517
|
name: string;
|
|
24277
24518
|
};
|
|
24278
24519
|
model: {
|
|
24520
|
+
/** Indicates whether the device can connect a accessory keypad. */
|
|
24521
|
+
can_connect_accessory_keypad?: boolean | undefined;
|
|
24279
24522
|
/** Display name of the device model. */
|
|
24280
24523
|
display_name: string;
|
|
24281
24524
|
/** Display name that corresponds to the manufacturer-specific terminology for the device. */
|
|
24282
24525
|
manufacturer_display_name: string;
|
|
24526
|
+
/** Indicates whether the device has a built in accessory keypad. */
|
|
24527
|
+
has_built_in_keypad?: boolean | undefined;
|
|
24283
24528
|
/** Indicates whether the device supports offline access codes. */
|
|
24284
24529
|
offline_access_codes_supported?: boolean | undefined;
|
|
24285
24530
|
/** Indicates whether the device supports online access codes. */
|