@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
|
@@ -1081,6 +1081,12 @@ export interface Routes {
|
|
|
1081
1081
|
display_name: string;
|
|
1082
1082
|
acs_system_id: string;
|
|
1083
1083
|
created_at: string;
|
|
1084
|
+
latch_metadata: {
|
|
1085
|
+
accessibility_type: string;
|
|
1086
|
+
name: string;
|
|
1087
|
+
type: string;
|
|
1088
|
+
is_connected: boolean;
|
|
1089
|
+
} | null;
|
|
1084
1090
|
visionline_metadata: {
|
|
1085
1091
|
door_name: string;
|
|
1086
1092
|
door_category: 'entrance' | 'guest' | 'elevator reader' | 'common' | 'common (PMS)';
|
|
@@ -1120,6 +1126,12 @@ export interface Routes {
|
|
|
1120
1126
|
display_name: string;
|
|
1121
1127
|
acs_system_id: string;
|
|
1122
1128
|
created_at: string;
|
|
1129
|
+
latch_metadata: {
|
|
1130
|
+
accessibility_type: string;
|
|
1131
|
+
name: string;
|
|
1132
|
+
type: string;
|
|
1133
|
+
is_connected: boolean;
|
|
1134
|
+
} | null;
|
|
1123
1135
|
visionline_metadata: {
|
|
1124
1136
|
door_name: string;
|
|
1125
1137
|
door_category: 'entrance' | 'guest' | 'elevator reader' | 'common' | 'common (PMS)';
|
|
@@ -1387,6 +1399,12 @@ export interface Routes {
|
|
|
1387
1399
|
display_name: string;
|
|
1388
1400
|
acs_system_id: string;
|
|
1389
1401
|
created_at: string;
|
|
1402
|
+
latch_metadata: {
|
|
1403
|
+
accessibility_type: string;
|
|
1404
|
+
name: string;
|
|
1405
|
+
type: string;
|
|
1406
|
+
is_connected: boolean;
|
|
1407
|
+
} | null;
|
|
1390
1408
|
visionline_metadata: {
|
|
1391
1409
|
door_name: string;
|
|
1392
1410
|
door_category: 'entrance' | 'guest' | 'elevator reader' | 'common' | 'common (PMS)';
|
|
@@ -1952,15 +1970,24 @@ export interface Routes {
|
|
|
1952
1970
|
online: boolean;
|
|
1953
1971
|
/** Name of the device. Deprecated - use device.display_name instead */
|
|
1954
1972
|
name: string;
|
|
1973
|
+
/** Represents the accessory keypad state. */
|
|
1974
|
+
accessory_keypad?: {
|
|
1975
|
+
/** Indicates if the accessory_keypad is connected to the device. */
|
|
1976
|
+
is_connected: boolean;
|
|
1977
|
+
} | undefined;
|
|
1955
1978
|
appearance: {
|
|
1956
1979
|
/** Name of the device as seen from the provider API and application, not settable through Seam. */
|
|
1957
1980
|
name: string;
|
|
1958
1981
|
};
|
|
1959
1982
|
model: {
|
|
1983
|
+
/** Indicates whether the device can connect a accessory keypad. */
|
|
1984
|
+
can_connect_accessory_keypad?: boolean | undefined;
|
|
1960
1985
|
/** Display name of the device model. */
|
|
1961
1986
|
display_name: string;
|
|
1962
1987
|
/** Display name that corresponds to the manufacturer-specific terminology for the device. */
|
|
1963
1988
|
manufacturer_display_name: string;
|
|
1989
|
+
/** Indicates whether the device has a built in accessory keypad. */
|
|
1990
|
+
has_built_in_keypad?: boolean | undefined;
|
|
1964
1991
|
/** Indicates whether the device supports offline access codes. */
|
|
1965
1992
|
offline_access_codes_supported?: boolean | undefined;
|
|
1966
1993
|
/** Indicates whether the device supports online access codes. */
|
|
@@ -2451,15 +2478,24 @@ export interface Routes {
|
|
|
2451
2478
|
online: boolean;
|
|
2452
2479
|
/** Name of the device. Deprecated - use device.display_name instead */
|
|
2453
2480
|
name: string;
|
|
2481
|
+
/** Represents the accessory keypad state. */
|
|
2482
|
+
accessory_keypad?: {
|
|
2483
|
+
/** Indicates if the accessory_keypad is connected to the device. */
|
|
2484
|
+
is_connected: boolean;
|
|
2485
|
+
} | undefined;
|
|
2454
2486
|
appearance: {
|
|
2455
2487
|
/** Name of the device as seen from the provider API and application, not settable through Seam. */
|
|
2456
2488
|
name: string;
|
|
2457
2489
|
};
|
|
2458
2490
|
model: {
|
|
2491
|
+
/** Indicates whether the device can connect a accessory keypad. */
|
|
2492
|
+
can_connect_accessory_keypad?: boolean | undefined;
|
|
2459
2493
|
/** Display name of the device model. */
|
|
2460
2494
|
display_name: string;
|
|
2461
2495
|
/** Display name that corresponds to the manufacturer-specific terminology for the device. */
|
|
2462
2496
|
manufacturer_display_name: string;
|
|
2497
|
+
/** Indicates whether the device has a built in accessory keypad. */
|
|
2498
|
+
has_built_in_keypad?: boolean | undefined;
|
|
2463
2499
|
/** Indicates whether the device supports offline access codes. */
|
|
2464
2500
|
offline_access_codes_supported?: boolean | undefined;
|
|
2465
2501
|
/** Indicates whether the device supports online access codes. */
|
|
@@ -2999,10 +3035,14 @@ export interface Routes {
|
|
|
2999
3035
|
/** Indicates whether it is currently possible to use offline access codes for the device. */
|
|
3000
3036
|
offline_access_codes_enabled?: boolean | undefined;
|
|
3001
3037
|
model: {
|
|
3038
|
+
/** Indicates whether the device can connect a accessory keypad. */
|
|
3039
|
+
can_connect_accessory_keypad?: boolean | undefined;
|
|
3002
3040
|
/** Display name of the device model. */
|
|
3003
3041
|
display_name: string;
|
|
3004
3042
|
/** Display name that corresponds to the manufacturer-specific terminology for the device. */
|
|
3005
3043
|
manufacturer_display_name: string;
|
|
3044
|
+
/** Indicates whether the device has a built in accessory keypad. */
|
|
3045
|
+
has_built_in_keypad?: boolean | undefined;
|
|
3006
3046
|
/** Indicates whether the device supports offline access codes. */
|
|
3007
3047
|
offline_access_codes_supported?: boolean | undefined;
|
|
3008
3048
|
/** Indicates whether the device supports online access codes. */
|
|
@@ -3085,10 +3125,14 @@ export interface Routes {
|
|
|
3085
3125
|
/** Indicates whether it is currently possible to use offline access codes for the device. */
|
|
3086
3126
|
offline_access_codes_enabled?: boolean | undefined;
|
|
3087
3127
|
model: {
|
|
3128
|
+
/** Indicates whether the device can connect a accessory keypad. */
|
|
3129
|
+
can_connect_accessory_keypad?: boolean | undefined;
|
|
3088
3130
|
/** Display name of the device model. */
|
|
3089
3131
|
display_name: string;
|
|
3090
3132
|
/** Display name that corresponds to the manufacturer-specific terminology for the device. */
|
|
3091
3133
|
manufacturer_display_name: string;
|
|
3134
|
+
/** Indicates whether the device has a built in accessory keypad. */
|
|
3135
|
+
has_built_in_keypad?: boolean | undefined;
|
|
3092
3136
|
/** Indicates whether the device supports offline access codes. */
|
|
3093
3137
|
offline_access_codes_supported?: boolean | undefined;
|
|
3094
3138
|
/** Indicates whether the device supports online access codes. */
|
|
@@ -3286,15 +3330,24 @@ export interface Routes {
|
|
|
3286
3330
|
online: boolean;
|
|
3287
3331
|
/** Name of the device. Deprecated - use device.display_name instead */
|
|
3288
3332
|
name: string;
|
|
3333
|
+
/** Represents the accessory keypad state. */
|
|
3334
|
+
accessory_keypad?: {
|
|
3335
|
+
/** Indicates if the accessory_keypad is connected to the device. */
|
|
3336
|
+
is_connected: boolean;
|
|
3337
|
+
} | undefined;
|
|
3289
3338
|
appearance: {
|
|
3290
3339
|
/** Name of the device as seen from the provider API and application, not settable through Seam. */
|
|
3291
3340
|
name: string;
|
|
3292
3341
|
};
|
|
3293
3342
|
model: {
|
|
3343
|
+
/** Indicates whether the device can connect a accessory keypad. */
|
|
3344
|
+
can_connect_accessory_keypad?: boolean | undefined;
|
|
3294
3345
|
/** Display name of the device model. */
|
|
3295
3346
|
display_name: string;
|
|
3296
3347
|
/** Display name that corresponds to the manufacturer-specific terminology for the device. */
|
|
3297
3348
|
manufacturer_display_name: string;
|
|
3349
|
+
/** Indicates whether the device has a built in accessory keypad. */
|
|
3350
|
+
has_built_in_keypad?: boolean | undefined;
|
|
3298
3351
|
/** Indicates whether the device supports offline access codes. */
|
|
3299
3352
|
offline_access_codes_supported?: boolean | undefined;
|
|
3300
3353
|
/** Indicates whether the device supports online access codes. */
|
|
@@ -3762,15 +3815,24 @@ export interface Routes {
|
|
|
3762
3815
|
online: boolean;
|
|
3763
3816
|
/** Name of the device. Deprecated - use device.display_name instead */
|
|
3764
3817
|
name: string;
|
|
3818
|
+
/** Represents the accessory keypad state. */
|
|
3819
|
+
accessory_keypad?: {
|
|
3820
|
+
/** Indicates if the accessory_keypad is connected to the device. */
|
|
3821
|
+
is_connected: boolean;
|
|
3822
|
+
} | undefined;
|
|
3765
3823
|
appearance: {
|
|
3766
3824
|
/** Name of the device as seen from the provider API and application, not settable through Seam. */
|
|
3767
3825
|
name: string;
|
|
3768
3826
|
};
|
|
3769
3827
|
model: {
|
|
3828
|
+
/** Indicates whether the device can connect a accessory keypad. */
|
|
3829
|
+
can_connect_accessory_keypad?: boolean | undefined;
|
|
3770
3830
|
/** Display name of the device model. */
|
|
3771
3831
|
display_name: string;
|
|
3772
3832
|
/** Display name that corresponds to the manufacturer-specific terminology for the device. */
|
|
3773
3833
|
manufacturer_display_name: string;
|
|
3834
|
+
/** Indicates whether the device has a built in accessory keypad. */
|
|
3835
|
+
has_built_in_keypad?: boolean | undefined;
|
|
3774
3836
|
/** Indicates whether the device supports offline access codes. */
|
|
3775
3837
|
offline_access_codes_supported?: boolean | undefined;
|
|
3776
3838
|
/** Indicates whether the device supports online access codes. */
|
|
@@ -4261,15 +4323,24 @@ export interface Routes {
|
|
|
4261
4323
|
online: boolean;
|
|
4262
4324
|
/** Name of the device. Deprecated - use device.display_name instead */
|
|
4263
4325
|
name: string;
|
|
4326
|
+
/** Represents the accessory keypad state. */
|
|
4327
|
+
accessory_keypad?: {
|
|
4328
|
+
/** Indicates if the accessory_keypad is connected to the device. */
|
|
4329
|
+
is_connected: boolean;
|
|
4330
|
+
} | undefined;
|
|
4264
4331
|
appearance: {
|
|
4265
4332
|
/** Name of the device as seen from the provider API and application, not settable through Seam. */
|
|
4266
4333
|
name: string;
|
|
4267
4334
|
};
|
|
4268
4335
|
model: {
|
|
4336
|
+
/** Indicates whether the device can connect a accessory keypad. */
|
|
4337
|
+
can_connect_accessory_keypad?: boolean | undefined;
|
|
4269
4338
|
/** Display name of the device model. */
|
|
4270
4339
|
display_name: string;
|
|
4271
4340
|
/** Display name that corresponds to the manufacturer-specific terminology for the device. */
|
|
4272
4341
|
manufacturer_display_name: string;
|
|
4342
|
+
/** Indicates whether the device has a built in accessory keypad. */
|
|
4343
|
+
has_built_in_keypad?: boolean | undefined;
|
|
4273
4344
|
/** Indicates whether the device supports offline access codes. */
|
|
4274
4345
|
offline_access_codes_supported?: boolean | undefined;
|
|
4275
4346
|
/** Indicates whether the device supports online access codes. */
|
|
@@ -4737,15 +4808,24 @@ export interface Routes {
|
|
|
4737
4808
|
online: boolean;
|
|
4738
4809
|
/** Name of the device. Deprecated - use device.display_name instead */
|
|
4739
4810
|
name: string;
|
|
4811
|
+
/** Represents the accessory keypad state. */
|
|
4812
|
+
accessory_keypad?: {
|
|
4813
|
+
/** Indicates if the accessory_keypad is connected to the device. */
|
|
4814
|
+
is_connected: boolean;
|
|
4815
|
+
} | undefined;
|
|
4740
4816
|
appearance: {
|
|
4741
4817
|
/** Name of the device as seen from the provider API and application, not settable through Seam. */
|
|
4742
4818
|
name: string;
|
|
4743
4819
|
};
|
|
4744
4820
|
model: {
|
|
4821
|
+
/** Indicates whether the device can connect a accessory keypad. */
|
|
4822
|
+
can_connect_accessory_keypad?: boolean | undefined;
|
|
4745
4823
|
/** Display name of the device model. */
|
|
4746
4824
|
display_name: string;
|
|
4747
4825
|
/** Display name that corresponds to the manufacturer-specific terminology for the device. */
|
|
4748
4826
|
manufacturer_display_name: string;
|
|
4827
|
+
/** Indicates whether the device has a built in accessory keypad. */
|
|
4828
|
+
has_built_in_keypad?: boolean | undefined;
|
|
4749
4829
|
/** Indicates whether the device supports offline access codes. */
|
|
4750
4830
|
offline_access_codes_supported?: boolean | undefined;
|
|
4751
4831
|
/** Indicates whether the device supports online access codes. */
|
|
@@ -5852,15 +5932,24 @@ export interface Routes {
|
|
|
5852
5932
|
online: boolean;
|
|
5853
5933
|
/** Name of the device. Deprecated - use device.display_name instead */
|
|
5854
5934
|
name: string;
|
|
5935
|
+
/** Represents the accessory keypad state. */
|
|
5936
|
+
accessory_keypad?: {
|
|
5937
|
+
/** Indicates if the accessory_keypad is connected to the device. */
|
|
5938
|
+
is_connected: boolean;
|
|
5939
|
+
} | undefined;
|
|
5855
5940
|
appearance: {
|
|
5856
5941
|
/** Name of the device as seen from the provider API and application, not settable through Seam. */
|
|
5857
5942
|
name: string;
|
|
5858
5943
|
};
|
|
5859
5944
|
model: {
|
|
5945
|
+
/** Indicates whether the device can connect a accessory keypad. */
|
|
5946
|
+
can_connect_accessory_keypad?: boolean | undefined;
|
|
5860
5947
|
/** Display name of the device model. */
|
|
5861
5948
|
display_name: string;
|
|
5862
5949
|
/** Display name that corresponds to the manufacturer-specific terminology for the device. */
|
|
5863
5950
|
manufacturer_display_name: string;
|
|
5951
|
+
/** Indicates whether the device has a built in accessory keypad. */
|
|
5952
|
+
has_built_in_keypad?: boolean | undefined;
|
|
5864
5953
|
/** Indicates whether the device supports offline access codes. */
|
|
5865
5954
|
offline_access_codes_supported?: boolean | undefined;
|
|
5866
5955
|
/** Indicates whether the device supports online access codes. */
|
|
@@ -6427,15 +6516,24 @@ export interface Routes {
|
|
|
6427
6516
|
online: boolean;
|
|
6428
6517
|
/** Name of the device. Deprecated - use device.display_name instead */
|
|
6429
6518
|
name: string;
|
|
6519
|
+
/** Represents the accessory keypad state. */
|
|
6520
|
+
accessory_keypad?: {
|
|
6521
|
+
/** Indicates if the accessory_keypad is connected to the device. */
|
|
6522
|
+
is_connected: boolean;
|
|
6523
|
+
} | undefined;
|
|
6430
6524
|
appearance: {
|
|
6431
6525
|
/** Name of the device as seen from the provider API and application, not settable through Seam. */
|
|
6432
6526
|
name: string;
|
|
6433
6527
|
};
|
|
6434
6528
|
model: {
|
|
6529
|
+
/** Indicates whether the device can connect a accessory keypad. */
|
|
6530
|
+
can_connect_accessory_keypad?: boolean | undefined;
|
|
6435
6531
|
/** Display name of the device model. */
|
|
6436
6532
|
display_name: string;
|
|
6437
6533
|
/** Display name that corresponds to the manufacturer-specific terminology for the device. */
|
|
6438
6534
|
manufacturer_display_name: string;
|
|
6535
|
+
/** Indicates whether the device has a built in accessory keypad. */
|
|
6536
|
+
has_built_in_keypad?: boolean | undefined;
|
|
6439
6537
|
/** Indicates whether the device supports offline access codes. */
|
|
6440
6538
|
offline_access_codes_supported?: boolean | undefined;
|
|
6441
6539
|
/** Indicates whether the device supports online access codes. */
|
|
@@ -7187,15 +7285,24 @@ export interface Routes {
|
|
|
7187
7285
|
online: boolean;
|
|
7188
7286
|
/** Name of the device. Deprecated - use device.display_name instead */
|
|
7189
7287
|
name: string;
|
|
7288
|
+
/** Represents the accessory keypad state. */
|
|
7289
|
+
accessory_keypad?: {
|
|
7290
|
+
/** Indicates if the accessory_keypad is connected to the device. */
|
|
7291
|
+
is_connected: boolean;
|
|
7292
|
+
} | undefined;
|
|
7190
7293
|
appearance: {
|
|
7191
7294
|
/** Name of the device as seen from the provider API and application, not settable through Seam. */
|
|
7192
7295
|
name: string;
|
|
7193
7296
|
};
|
|
7194
7297
|
model: {
|
|
7298
|
+
/** Indicates whether the device can connect a accessory keypad. */
|
|
7299
|
+
can_connect_accessory_keypad?: boolean | undefined;
|
|
7195
7300
|
/** Display name of the device model. */
|
|
7196
7301
|
display_name: string;
|
|
7197
7302
|
/** Display name that corresponds to the manufacturer-specific terminology for the device. */
|
|
7198
7303
|
manufacturer_display_name: string;
|
|
7304
|
+
/** Indicates whether the device has a built in accessory keypad. */
|
|
7305
|
+
has_built_in_keypad?: boolean | undefined;
|
|
7199
7306
|
/** Indicates whether the device supports offline access codes. */
|
|
7200
7307
|
offline_access_codes_supported?: boolean | undefined;
|
|
7201
7308
|
/** Indicates whether the device supports online access codes. */
|
|
@@ -1,9 +1,41 @@
|
|
|
1
1
|
import { z } from 'zod';
|
|
2
|
+
export declare const acs_entrance_latch_metadata: z.ZodObject<{
|
|
3
|
+
accessibility_type: z.ZodString;
|
|
4
|
+
name: z.ZodString;
|
|
5
|
+
type: z.ZodString;
|
|
6
|
+
is_connected: z.ZodBoolean;
|
|
7
|
+
}, "strip", z.ZodTypeAny, {
|
|
8
|
+
type: string;
|
|
9
|
+
name: string;
|
|
10
|
+
is_connected: boolean;
|
|
11
|
+
accessibility_type: string;
|
|
12
|
+
}, {
|
|
13
|
+
type: string;
|
|
14
|
+
name: string;
|
|
15
|
+
is_connected: boolean;
|
|
16
|
+
accessibility_type: string;
|
|
17
|
+
}>;
|
|
2
18
|
export declare const acs_entrance: z.ZodObject<{
|
|
3
19
|
acs_entrance_id: z.ZodString;
|
|
4
20
|
display_name: z.ZodString;
|
|
5
21
|
acs_system_id: z.ZodString;
|
|
6
22
|
created_at: z.ZodString;
|
|
23
|
+
latch_metadata: z.ZodNullable<z.ZodObject<{
|
|
24
|
+
accessibility_type: z.ZodString;
|
|
25
|
+
name: z.ZodString;
|
|
26
|
+
type: z.ZodString;
|
|
27
|
+
is_connected: z.ZodBoolean;
|
|
28
|
+
}, "strip", z.ZodTypeAny, {
|
|
29
|
+
type: string;
|
|
30
|
+
name: string;
|
|
31
|
+
is_connected: boolean;
|
|
32
|
+
accessibility_type: string;
|
|
33
|
+
}, {
|
|
34
|
+
type: string;
|
|
35
|
+
name: string;
|
|
36
|
+
is_connected: boolean;
|
|
37
|
+
accessibility_type: string;
|
|
38
|
+
}>>;
|
|
7
39
|
visionline_metadata: z.ZodNullable<z.ZodObject<{
|
|
8
40
|
door_name: z.ZodString;
|
|
9
41
|
door_category: z.ZodEnum<["entrance", "guest", "elevator reader", "common", "common (PMS)"]>;
|
|
@@ -37,6 +69,12 @@ export declare const acs_entrance: z.ZodObject<{
|
|
|
37
69
|
acs_system_id: string;
|
|
38
70
|
display_name: string;
|
|
39
71
|
acs_entrance_id: string;
|
|
72
|
+
latch_metadata: {
|
|
73
|
+
type: string;
|
|
74
|
+
name: string;
|
|
75
|
+
is_connected: boolean;
|
|
76
|
+
accessibility_type: string;
|
|
77
|
+
} | null;
|
|
40
78
|
visionline_metadata: {
|
|
41
79
|
door_name: string;
|
|
42
80
|
door_category: "entrance" | "guest" | "elevator reader" | "common" | "common (PMS)";
|
|
@@ -50,6 +88,12 @@ export declare const acs_entrance: z.ZodObject<{
|
|
|
50
88
|
acs_system_id: string;
|
|
51
89
|
display_name: string;
|
|
52
90
|
acs_entrance_id: string;
|
|
91
|
+
latch_metadata: {
|
|
92
|
+
type: string;
|
|
93
|
+
name: string;
|
|
94
|
+
is_connected: boolean;
|
|
95
|
+
accessibility_type: string;
|
|
96
|
+
} | null;
|
|
53
97
|
visionline_metadata: {
|
|
54
98
|
door_name: string;
|
|
55
99
|
door_category: "entrance" | "guest" | "elevator reader" | "common" | "common (PMS)";
|
|
@@ -59,4 +103,5 @@ export declare const acs_entrance: z.ZodObject<{
|
|
|
59
103
|
}[] | undefined;
|
|
60
104
|
} | null;
|
|
61
105
|
}>;
|
|
106
|
+
export type AcsEntranceLatchMetadata = z.infer<typeof acs_entrance_latch_metadata>;
|
|
62
107
|
export type AcsEntrance = z.infer<typeof acs_entrance>;
|
|
@@ -1,9 +1,16 @@
|
|
|
1
1
|
import { z } from 'zod';
|
|
2
|
+
export const acs_entrance_latch_metadata = z.object({
|
|
3
|
+
accessibility_type: z.string(),
|
|
4
|
+
name: z.string(),
|
|
5
|
+
type: z.string(),
|
|
6
|
+
is_connected: z.boolean(),
|
|
7
|
+
});
|
|
2
8
|
export const acs_entrance = z.object({
|
|
3
9
|
acs_entrance_id: z.string().uuid(),
|
|
4
10
|
display_name: z.string(),
|
|
5
11
|
acs_system_id: z.string().uuid(),
|
|
6
12
|
created_at: z.string().datetime(),
|
|
13
|
+
latch_metadata: acs_entrance_latch_metadata.nullable(),
|
|
7
14
|
visionline_metadata: z
|
|
8
15
|
.object({
|
|
9
16
|
door_name: z.string(),
|
|
@@ -1 +1 @@
|
|
|
1
|
-
{"version":3,"file":"entrance.js","sourceRoot":"","sources":["../../../../../../src/lib/seam/connect/unstable/models/acs/entrance.ts"],"names":[],"mappings":"AAAA,OAAO,EAAE,CAAC,EAAE,MAAM,KAAK,CAAA;AAEvB,MAAM,CAAC,MAAM,YAAY,GAAG,CAAC,CAAC,MAAM,CAAC;IACnC,eAAe,EAAE,CAAC,CAAC,MAAM,EAAE,CAAC,IAAI,EAAE;IAClC,YAAY,EAAE,CAAC,CAAC,MAAM,EAAE;IACxB,aAAa,EAAE,CAAC,CAAC,MAAM,EAAE,CAAC,IAAI,EAAE;IAChC,UAAU,EAAE,CAAC,CAAC,MAAM,EAAE,CAAC,QAAQ,EAAE;IACjC,mBAAmB,EAAE,CAAC;SACnB,MAAM,CAAC;QACN,SAAS,EAAE,CAAC,CAAC,MAAM,EAAE;QACrB,aAAa,EAAE,CAAC,CAAC,IAAI,CAAC;YACpB,UAAU;YACV,OAAO;YACP,iBAAiB;YACjB,QAAQ;YACR,cAAc;SACf,CAAC;QACF,QAAQ,EAAE,CAAC;aACR,KAAK,CACJ,CAAC,CAAC,MAAM,CAAC;YACP,0BAA0B,EAAE,CAAC,CAAC,MAAM,EAAE;YACtC,4BAA4B,EAAE,CAAC,CAAC,IAAI,CAAC;gBACnC,KAAK;gBACL,YAAY;gBACZ,OAAO;aACR,CAAC;SACH,CAAC,CACH;aACA,QAAQ,EAAE;KACd,CAAC;SACD,QAAQ,EAAE;CACd,CAAC,CAAA"}
|
|
1
|
+
{"version":3,"file":"entrance.js","sourceRoot":"","sources":["../../../../../../src/lib/seam/connect/unstable/models/acs/entrance.ts"],"names":[],"mappings":"AAAA,OAAO,EAAE,CAAC,EAAE,MAAM,KAAK,CAAA;AAEvB,MAAM,CAAC,MAAM,2BAA2B,GAAG,CAAC,CAAC,MAAM,CAAC;IAClD,kBAAkB,EAAE,CAAC,CAAC,MAAM,EAAE;IAC9B,IAAI,EAAE,CAAC,CAAC,MAAM,EAAE;IAChB,IAAI,EAAE,CAAC,CAAC,MAAM,EAAE;IAChB,YAAY,EAAE,CAAC,CAAC,OAAO,EAAE;CAC1B,CAAC,CAAA;AAEF,MAAM,CAAC,MAAM,YAAY,GAAG,CAAC,CAAC,MAAM,CAAC;IACnC,eAAe,EAAE,CAAC,CAAC,MAAM,EAAE,CAAC,IAAI,EAAE;IAClC,YAAY,EAAE,CAAC,CAAC,MAAM,EAAE;IACxB,aAAa,EAAE,CAAC,CAAC,MAAM,EAAE,CAAC,IAAI,EAAE;IAChC,UAAU,EAAE,CAAC,CAAC,MAAM,EAAE,CAAC,QAAQ,EAAE;IACjC,cAAc,EAAE,2BAA2B,CAAC,QAAQ,EAAE;IACtD,mBAAmB,EAAE,CAAC;SACnB,MAAM,CAAC;QACN,SAAS,EAAE,CAAC,CAAC,MAAM,EAAE;QACrB,aAAa,EAAE,CAAC,CAAC,IAAI,CAAC;YACpB,UAAU;YACV,OAAO;YACP,iBAAiB;YACjB,QAAQ;YACR,cAAc;SACf,CAAC;QACF,QAAQ,EAAE,CAAC;aACR,KAAK,CACJ,CAAC,CAAC,MAAM,CAAC;YACP,0BAA0B,EAAE,CAAC,CAAC,MAAM,EAAE;YACtC,4BAA4B,EAAE,CAAC,CAAC,IAAI,CAAC;gBACnC,KAAK;gBACL,YAAY;gBACZ,OAAO;aACR,CAAC;SACH,CAAC,CACH;aACA,QAAQ,EAAE;KACd,CAAC;SACD,QAAQ,EAAE;CACd,CAAC,CAAA"}
|
|
@@ -6,6 +6,13 @@ export type BatteryStatus = z.infer<typeof battery_status>;
|
|
|
6
6
|
export declare const common_device_properties: z.ZodObject<{
|
|
7
7
|
online: z.ZodBoolean;
|
|
8
8
|
name: z.ZodString;
|
|
9
|
+
accessory_keypad: z.ZodOptional<z.ZodObject<{
|
|
10
|
+
is_connected: z.ZodBoolean;
|
|
11
|
+
}, "strip", z.ZodTypeAny, {
|
|
12
|
+
is_connected: boolean;
|
|
13
|
+
}, {
|
|
14
|
+
is_connected: boolean;
|
|
15
|
+
}>>;
|
|
9
16
|
appearance: z.ZodObject<{
|
|
10
17
|
name: z.ZodString;
|
|
11
18
|
}, "strip", z.ZodTypeAny, {
|
|
@@ -14,20 +21,26 @@ export declare const common_device_properties: z.ZodObject<{
|
|
|
14
21
|
name: string;
|
|
15
22
|
}>;
|
|
16
23
|
model: z.ZodObject<{
|
|
24
|
+
can_connect_accessory_keypad: z.ZodOptional<z.ZodBoolean>;
|
|
17
25
|
display_name: z.ZodString;
|
|
18
26
|
manufacturer_display_name: z.ZodString;
|
|
27
|
+
has_built_in_keypad: z.ZodOptional<z.ZodBoolean>;
|
|
19
28
|
offline_access_codes_supported: z.ZodOptional<z.ZodBoolean>;
|
|
20
29
|
online_access_codes_supported: z.ZodOptional<z.ZodBoolean>;
|
|
21
30
|
accessory_keypad_supported: z.ZodOptional<z.ZodBoolean>;
|
|
22
31
|
}, "strip", z.ZodTypeAny, {
|
|
23
32
|
display_name: string;
|
|
24
33
|
manufacturer_display_name: string;
|
|
34
|
+
can_connect_accessory_keypad?: boolean | undefined;
|
|
35
|
+
has_built_in_keypad?: boolean | undefined;
|
|
25
36
|
offline_access_codes_supported?: boolean | undefined;
|
|
26
37
|
online_access_codes_supported?: boolean | undefined;
|
|
27
38
|
accessory_keypad_supported?: boolean | undefined;
|
|
28
39
|
}, {
|
|
29
40
|
display_name: string;
|
|
30
41
|
manufacturer_display_name: string;
|
|
42
|
+
can_connect_accessory_keypad?: boolean | undefined;
|
|
43
|
+
has_built_in_keypad?: boolean | undefined;
|
|
31
44
|
offline_access_codes_supported?: boolean | undefined;
|
|
32
45
|
online_access_codes_supported?: boolean | undefined;
|
|
33
46
|
accessory_keypad_supported?: boolean | undefined;
|
|
@@ -61,10 +74,15 @@ export declare const common_device_properties: z.ZodObject<{
|
|
|
61
74
|
model: {
|
|
62
75
|
display_name: string;
|
|
63
76
|
manufacturer_display_name: string;
|
|
77
|
+
can_connect_accessory_keypad?: boolean | undefined;
|
|
78
|
+
has_built_in_keypad?: boolean | undefined;
|
|
64
79
|
offline_access_codes_supported?: boolean | undefined;
|
|
65
80
|
online_access_codes_supported?: boolean | undefined;
|
|
66
81
|
accessory_keypad_supported?: boolean | undefined;
|
|
67
82
|
};
|
|
83
|
+
accessory_keypad?: {
|
|
84
|
+
is_connected: boolean;
|
|
85
|
+
} | undefined;
|
|
68
86
|
has_direct_power?: boolean | undefined;
|
|
69
87
|
battery_level?: number | undefined;
|
|
70
88
|
battery?: {
|
|
@@ -88,10 +106,15 @@ export declare const common_device_properties: z.ZodObject<{
|
|
|
88
106
|
model: {
|
|
89
107
|
display_name: string;
|
|
90
108
|
manufacturer_display_name: string;
|
|
109
|
+
can_connect_accessory_keypad?: boolean | undefined;
|
|
110
|
+
has_built_in_keypad?: boolean | undefined;
|
|
91
111
|
offline_access_codes_supported?: boolean | undefined;
|
|
92
112
|
online_access_codes_supported?: boolean | undefined;
|
|
93
113
|
accessory_keypad_supported?: boolean | undefined;
|
|
94
114
|
};
|
|
115
|
+
accessory_keypad?: {
|
|
116
|
+
is_connected: boolean;
|
|
117
|
+
} | undefined;
|
|
95
118
|
has_direct_power?: boolean | undefined;
|
|
96
119
|
battery_level?: number | undefined;
|
|
97
120
|
battery?: {
|
|
@@ -128,6 +151,13 @@ export declare const managed_device: z.ZodObject<{
|
|
|
128
151
|
properties: z.ZodIntersection<z.ZodIntersection<z.ZodIntersection<z.ZodObject<{
|
|
129
152
|
online: z.ZodBoolean;
|
|
130
153
|
name: z.ZodString;
|
|
154
|
+
accessory_keypad: z.ZodOptional<z.ZodObject<{
|
|
155
|
+
is_connected: z.ZodBoolean;
|
|
156
|
+
}, "strip", z.ZodTypeAny, {
|
|
157
|
+
is_connected: boolean;
|
|
158
|
+
}, {
|
|
159
|
+
is_connected: boolean;
|
|
160
|
+
}>>;
|
|
131
161
|
appearance: z.ZodObject<{
|
|
132
162
|
name: z.ZodString;
|
|
133
163
|
}, "strip", z.ZodTypeAny, {
|
|
@@ -136,20 +166,26 @@ export declare const managed_device: z.ZodObject<{
|
|
|
136
166
|
name: string;
|
|
137
167
|
}>;
|
|
138
168
|
model: z.ZodObject<{
|
|
169
|
+
can_connect_accessory_keypad: z.ZodOptional<z.ZodBoolean>;
|
|
139
170
|
display_name: z.ZodString;
|
|
140
171
|
manufacturer_display_name: z.ZodString;
|
|
172
|
+
has_built_in_keypad: z.ZodOptional<z.ZodBoolean>;
|
|
141
173
|
offline_access_codes_supported: z.ZodOptional<z.ZodBoolean>;
|
|
142
174
|
online_access_codes_supported: z.ZodOptional<z.ZodBoolean>;
|
|
143
175
|
accessory_keypad_supported: z.ZodOptional<z.ZodBoolean>;
|
|
144
176
|
}, "strip", z.ZodTypeAny, {
|
|
145
177
|
display_name: string;
|
|
146
178
|
manufacturer_display_name: string;
|
|
179
|
+
can_connect_accessory_keypad?: boolean | undefined;
|
|
180
|
+
has_built_in_keypad?: boolean | undefined;
|
|
147
181
|
offline_access_codes_supported?: boolean | undefined;
|
|
148
182
|
online_access_codes_supported?: boolean | undefined;
|
|
149
183
|
accessory_keypad_supported?: boolean | undefined;
|
|
150
184
|
}, {
|
|
151
185
|
display_name: string;
|
|
152
186
|
manufacturer_display_name: string;
|
|
187
|
+
can_connect_accessory_keypad?: boolean | undefined;
|
|
188
|
+
has_built_in_keypad?: boolean | undefined;
|
|
153
189
|
offline_access_codes_supported?: boolean | undefined;
|
|
154
190
|
online_access_codes_supported?: boolean | undefined;
|
|
155
191
|
accessory_keypad_supported?: boolean | undefined;
|
|
@@ -183,10 +219,15 @@ export declare const managed_device: z.ZodObject<{
|
|
|
183
219
|
model: {
|
|
184
220
|
display_name: string;
|
|
185
221
|
manufacturer_display_name: string;
|
|
222
|
+
can_connect_accessory_keypad?: boolean | undefined;
|
|
223
|
+
has_built_in_keypad?: boolean | undefined;
|
|
186
224
|
offline_access_codes_supported?: boolean | undefined;
|
|
187
225
|
online_access_codes_supported?: boolean | undefined;
|
|
188
226
|
accessory_keypad_supported?: boolean | undefined;
|
|
189
227
|
};
|
|
228
|
+
accessory_keypad?: {
|
|
229
|
+
is_connected: boolean;
|
|
230
|
+
} | undefined;
|
|
190
231
|
has_direct_power?: boolean | undefined;
|
|
191
232
|
battery_level?: number | undefined;
|
|
192
233
|
battery?: {
|
|
@@ -210,10 +251,15 @@ export declare const managed_device: z.ZodObject<{
|
|
|
210
251
|
model: {
|
|
211
252
|
display_name: string;
|
|
212
253
|
manufacturer_display_name: string;
|
|
254
|
+
can_connect_accessory_keypad?: boolean | undefined;
|
|
255
|
+
has_built_in_keypad?: boolean | undefined;
|
|
213
256
|
offline_access_codes_supported?: boolean | undefined;
|
|
214
257
|
online_access_codes_supported?: boolean | undefined;
|
|
215
258
|
accessory_keypad_supported?: boolean | undefined;
|
|
216
259
|
};
|
|
260
|
+
accessory_keypad?: {
|
|
261
|
+
is_connected: boolean;
|
|
262
|
+
} | undefined;
|
|
217
263
|
has_direct_power?: boolean | undefined;
|
|
218
264
|
battery_level?: number | undefined;
|
|
219
265
|
battery?: {
|
|
@@ -2074,10 +2120,15 @@ export declare const managed_device: z.ZodObject<{
|
|
|
2074
2120
|
model: {
|
|
2075
2121
|
display_name: string;
|
|
2076
2122
|
manufacturer_display_name: string;
|
|
2123
|
+
can_connect_accessory_keypad?: boolean | undefined;
|
|
2124
|
+
has_built_in_keypad?: boolean | undefined;
|
|
2077
2125
|
offline_access_codes_supported?: boolean | undefined;
|
|
2078
2126
|
online_access_codes_supported?: boolean | undefined;
|
|
2079
2127
|
accessory_keypad_supported?: boolean | undefined;
|
|
2080
2128
|
};
|
|
2129
|
+
accessory_keypad?: {
|
|
2130
|
+
is_connected: boolean;
|
|
2131
|
+
} | undefined;
|
|
2081
2132
|
has_direct_power?: boolean | undefined;
|
|
2082
2133
|
battery_level?: number | undefined;
|
|
2083
2134
|
battery?: {
|
|
@@ -2485,10 +2536,15 @@ export declare const managed_device: z.ZodObject<{
|
|
|
2485
2536
|
model: {
|
|
2486
2537
|
display_name: string;
|
|
2487
2538
|
manufacturer_display_name: string;
|
|
2539
|
+
can_connect_accessory_keypad?: boolean | undefined;
|
|
2540
|
+
has_built_in_keypad?: boolean | undefined;
|
|
2488
2541
|
offline_access_codes_supported?: boolean | undefined;
|
|
2489
2542
|
online_access_codes_supported?: boolean | undefined;
|
|
2490
2543
|
accessory_keypad_supported?: boolean | undefined;
|
|
2491
2544
|
};
|
|
2545
|
+
accessory_keypad?: {
|
|
2546
|
+
is_connected: boolean;
|
|
2547
|
+
} | undefined;
|
|
2492
2548
|
has_direct_power?: boolean | undefined;
|
|
2493
2549
|
battery_level?: number | undefined;
|
|
2494
2550
|
battery?: {
|
|
@@ -2924,10 +2980,15 @@ export declare const managed_device: z.ZodObject<{
|
|
|
2924
2980
|
model: {
|
|
2925
2981
|
display_name: string;
|
|
2926
2982
|
manufacturer_display_name: string;
|
|
2983
|
+
can_connect_accessory_keypad?: boolean | undefined;
|
|
2984
|
+
has_built_in_keypad?: boolean | undefined;
|
|
2927
2985
|
offline_access_codes_supported?: boolean | undefined;
|
|
2928
2986
|
online_access_codes_supported?: boolean | undefined;
|
|
2929
2987
|
accessory_keypad_supported?: boolean | undefined;
|
|
2930
2988
|
};
|
|
2989
|
+
accessory_keypad?: {
|
|
2990
|
+
is_connected: boolean;
|
|
2991
|
+
} | undefined;
|
|
2931
2992
|
has_direct_power?: boolean | undefined;
|
|
2932
2993
|
battery_level?: number | undefined;
|
|
2933
2994
|
battery?: {
|
|
@@ -3335,10 +3396,15 @@ export declare const managed_device: z.ZodObject<{
|
|
|
3335
3396
|
model: {
|
|
3336
3397
|
display_name: string;
|
|
3337
3398
|
manufacturer_display_name: string;
|
|
3399
|
+
can_connect_accessory_keypad?: boolean | undefined;
|
|
3400
|
+
has_built_in_keypad?: boolean | undefined;
|
|
3338
3401
|
offline_access_codes_supported?: boolean | undefined;
|
|
3339
3402
|
online_access_codes_supported?: boolean | undefined;
|
|
3340
3403
|
accessory_keypad_supported?: boolean | undefined;
|
|
3341
3404
|
};
|
|
3405
|
+
accessory_keypad?: {
|
|
3406
|
+
is_connected: boolean;
|
|
3407
|
+
} | undefined;
|
|
3342
3408
|
has_direct_power?: boolean | undefined;
|
|
3343
3409
|
battery_level?: number | undefined;
|
|
3344
3410
|
battery?: {
|
|
@@ -12,16 +12,32 @@ export const common_device_properties = z.object({
|
|
|
12
12
|
name: z
|
|
13
13
|
.string()
|
|
14
14
|
.describe('Name of the device. Deprecated - use device.display_name instead'),
|
|
15
|
+
accessory_keypad: z
|
|
16
|
+
.object({
|
|
17
|
+
is_connected: z
|
|
18
|
+
.boolean()
|
|
19
|
+
.describe('Indicates if the accessory_keypad is connected to the device.'),
|
|
20
|
+
})
|
|
21
|
+
.optional()
|
|
22
|
+
.describe('Represents the accessory keypad state.'),
|
|
15
23
|
appearance: z.object({
|
|
16
24
|
name: z
|
|
17
25
|
.string()
|
|
18
26
|
.describe('Name of the device as seen from the provider API and application, not settable through Seam.'),
|
|
19
27
|
}),
|
|
20
28
|
model: z.object({
|
|
29
|
+
can_connect_accessory_keypad: z
|
|
30
|
+
.boolean()
|
|
31
|
+
.optional()
|
|
32
|
+
.describe('Indicates whether the device can connect a accessory keypad.'),
|
|
21
33
|
display_name: z.string().describe('Display name of the device model.'),
|
|
22
34
|
manufacturer_display_name: z
|
|
23
35
|
.string()
|
|
24
36
|
.describe('Display name that corresponds to the manufacturer-specific terminology for the device.'),
|
|
37
|
+
has_built_in_keypad: z
|
|
38
|
+
.boolean()
|
|
39
|
+
.optional()
|
|
40
|
+
.describe('Indicates whether the device has a built in accessory keypad.'),
|
|
25
41
|
offline_access_codes_supported: z
|
|
26
42
|
.boolean()
|
|
27
43
|
.optional()
|
|
@@ -1 +1 @@
|
|
|
1
|
-
{"version":3,"file":"managed-device.js","sourceRoot":"","sources":["../../../../../../src/lib/seam/connect/unstable/models/devices/managed-device.ts"],"names":[],"mappings":"AACA,OAAO,EAAE,CAAC,EAAE,MAAM,KAAK,CAAA;AAEvB,OAAO,EAAE,OAAO,IAAI,gBAAgB,EAAE,MAAM,yBAAyB,CAAA;AAErE,OAAO,EAAE,eAAe,EAAE,MAAM,2CAA2C,CAAA;AAC3E,OAAO,EAAE,qBAAqB,EAAE,MAAM,mCAAmC,CAAA;AACzE,OAAO,EAAE,YAAY,EAAE,MAAM,6BAA6B,CAAA;AAC1D,OAAO,EAAE,eAAe,EAAE,MAAM,sBAAsB,CAAA;AACtD,OAAO,EAAE,eAAe,EAAE,MAAM,kBAAkB,CAAA;AAClD,OAAO,EAAE,yBAAyB,EAAE,MAAM,uBAAuB,CAAA;AAEjE,MAAM,CAAC,MAAM,cAAc,GAAG,CAAC,CAAC,IAAI,CAAC,CAAC,UAAU,EAAE,KAAK,EAAE,MAAM,EAAE,MAAM,CAAC,CAAC,CAAA;AAIzE,MAAM,CAAC,MAAM,wBAAwB,GAAG,CAAC,CAAC,MAAM,CAAC;IAC/C,MAAM,EAAE,CAAC,CAAC,OAAO,EAAE,CAAC,QAAQ,CAAC,yCAAyC,CAAC;IACvE,IAAI,EAAE,CAAC;SACJ,MAAM,EAAE;SACR,QAAQ,CACP,kEAAkE,CACnE;IACH,UAAU,EAAE,CAAC,CAAC,MAAM,CAAC;QACnB,IAAI,EAAE,CAAC;aACJ,MAAM,EAAE;aACR,QAAQ,CACP,8FAA8F,CAC/F;KACJ,CAAC;IACF,KAAK,EAAE,CAAC,CAAC,MAAM,CAAC;QACd,YAAY,EAAE,CAAC,CAAC,MAAM,EAAE,CAAC,QAAQ,CAAC,mCAAmC,CAAC;QACtE,yBAAyB,EAAE,CAAC;aACzB,MAAM,EAAE;aACR,QAAQ,CACP,wFAAwF,CACzF;
|
|
1
|
+
{"version":3,"file":"managed-device.js","sourceRoot":"","sources":["../../../../../../src/lib/seam/connect/unstable/models/devices/managed-device.ts"],"names":[],"mappings":"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"}
|