@seamapi/types 1.154.1 → 1.156.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 +15 -1
- package/dist/connect.cjs.map +1 -1
- package/dist/connect.d.cts +54 -18
- package/lib/seam/connect/models/capability-properties/access-code.d.ts +11 -11
- package/lib/seam/connect/models/capability-properties/access-code.js +1 -0
- package/lib/seam/connect/models/capability-properties/access-code.js.map +1 -1
- package/lib/seam/connect/models/capability-properties/index.d.ts +5 -5
- package/lib/seam/connect/models/devices/device-metadata.d.ts +5 -0
- package/lib/seam/connect/models/devices/device-metadata.js +1 -0
- package/lib/seam/connect/models/devices/device-metadata.js.map +1 -1
- package/lib/seam/connect/models/devices/managed-device.d.ts +18 -9
- package/lib/seam/connect/openapi.d.ts +12 -0
- package/lib/seam/connect/openapi.js +14 -0
- package/lib/seam/connect/openapi.js.map +1 -1
- package/lib/seam/connect/route-types.d.ts +42 -18
- package/package.json +1 -1
- package/src/lib/seam/connect/models/capability-properties/access-code.ts +1 -0
- package/src/lib/seam/connect/models/devices/device-metadata.ts +1 -0
- package/src/lib/seam/connect/openapi.ts +14 -0
- package/src/lib/seam/connect/route-types.ts +42 -0
package/dist/connect.d.cts
CHANGED
|
@@ -960,6 +960,9 @@ declare const _default: {
|
|
|
960
960
|
};
|
|
961
961
|
device: {
|
|
962
962
|
properties: {
|
|
963
|
+
can_program_offline_access_codes: {
|
|
964
|
+
type: string;
|
|
965
|
+
};
|
|
963
966
|
can_program_online_access_codes: {
|
|
964
967
|
type: string;
|
|
965
968
|
};
|
|
@@ -1331,6 +1334,9 @@ declare const _default: {
|
|
|
1331
1334
|
door_id: {
|
|
1332
1335
|
type: string;
|
|
1333
1336
|
};
|
|
1337
|
+
door_is_wireless: {
|
|
1338
|
+
type: string;
|
|
1339
|
+
};
|
|
1334
1340
|
door_name: {
|
|
1335
1341
|
type: string;
|
|
1336
1342
|
};
|
|
@@ -2651,6 +2657,9 @@ declare const _default: {
|
|
|
2651
2657
|
};
|
|
2652
2658
|
phone: {
|
|
2653
2659
|
properties: {
|
|
2660
|
+
can_program_offline_access_codes: {
|
|
2661
|
+
type: string;
|
|
2662
|
+
};
|
|
2654
2663
|
can_program_online_access_codes: {
|
|
2655
2664
|
type: string;
|
|
2656
2665
|
};
|
|
@@ -2873,6 +2882,9 @@ declare const _default: {
|
|
|
2873
2882
|
};
|
|
2874
2883
|
unmanaged_device: {
|
|
2875
2884
|
properties: {
|
|
2885
|
+
can_program_offline_access_codes: {
|
|
2886
|
+
type: string;
|
|
2887
|
+
};
|
|
2876
2888
|
can_program_online_access_codes: {
|
|
2877
2889
|
type: string;
|
|
2878
2890
|
};
|
|
@@ -18010,6 +18022,7 @@ interface Routes {
|
|
|
18010
18022
|
door_id: number;
|
|
18011
18023
|
door_name: string;
|
|
18012
18024
|
device_id?: number | undefined;
|
|
18025
|
+
door_is_wireless: boolean;
|
|
18013
18026
|
site_id: number;
|
|
18014
18027
|
site_name: string;
|
|
18015
18028
|
iana_timezone?: string | undefined;
|
|
@@ -18048,7 +18061,7 @@ interface Routes {
|
|
|
18048
18061
|
}) & ({
|
|
18049
18062
|
_experimental_supported_code_from_access_codes_lengths?: (number[] | undefined) | undefined;
|
|
18050
18063
|
code_constraints?: (Array<{
|
|
18051
|
-
constraint_type: 'no_zeros' | 'cannot_start_with_12' | 'no_triple_consecutive_ints' | 'cannot_specify_pin_code' | 'pin_code_matches_existing_set' | 'start_date_in_future' | 'no_ascending_or_descending_sequence' | 'at_least_three_unique_digits';
|
|
18064
|
+
constraint_type: 'no_zeros' | 'cannot_start_with_12' | 'no_triple_consecutive_ints' | 'cannot_specify_pin_code' | 'pin_code_matches_existing_set' | 'start_date_in_future' | 'no_ascending_or_descending_sequence' | 'at_least_three_unique_digits' | 'cannot_contain_089';
|
|
18052
18065
|
} | {
|
|
18053
18066
|
constraint_type: 'name_length';
|
|
18054
18067
|
min_length?: number | undefined;
|
|
@@ -18272,6 +18285,7 @@ interface Routes {
|
|
|
18272
18285
|
custom_metadata: Record<string, string | boolean>;
|
|
18273
18286
|
can_remotely_unlock?: boolean | undefined;
|
|
18274
18287
|
can_remotely_lock?: boolean | undefined;
|
|
18288
|
+
can_program_offline_access_codes?: boolean | undefined;
|
|
18275
18289
|
can_program_online_access_codes?: boolean | undefined;
|
|
18276
18290
|
can_simulate_removal?: boolean | undefined;
|
|
18277
18291
|
};
|
|
@@ -18295,8 +18309,8 @@ interface Routes {
|
|
|
18295
18309
|
created_before?: Date | undefined;
|
|
18296
18310
|
user_identifier_key?: string | undefined;
|
|
18297
18311
|
custom_metadata_has?: Record<string, string | boolean> | undefined;
|
|
18298
|
-
include_if?: Array<'can_remotely_unlock' | 'can_remotely_lock' | 'can_program_online_access_codes' | 'can_simulate_removal'> | undefined;
|
|
18299
|
-
exclude_if?: Array<'can_remotely_unlock' | 'can_remotely_lock' | 'can_program_online_access_codes' | 'can_simulate_removal'> | undefined;
|
|
18312
|
+
include_if?: Array<'can_remotely_unlock' | 'can_remotely_lock' | 'can_program_offline_access_codes' | 'can_program_online_access_codes' | 'can_simulate_removal'> | undefined;
|
|
18313
|
+
exclude_if?: Array<'can_remotely_unlock' | 'can_remotely_lock' | 'can_program_offline_access_codes' | 'can_program_online_access_codes' | 'can_simulate_removal'> | undefined;
|
|
18300
18314
|
};
|
|
18301
18315
|
formData: {};
|
|
18302
18316
|
jsonResponse: {
|
|
@@ -18544,6 +18558,7 @@ interface Routes {
|
|
|
18544
18558
|
door_id: number;
|
|
18545
18559
|
door_name: string;
|
|
18546
18560
|
device_id?: number | undefined;
|
|
18561
|
+
door_is_wireless: boolean;
|
|
18547
18562
|
site_id: number;
|
|
18548
18563
|
site_name: string;
|
|
18549
18564
|
iana_timezone?: string | undefined;
|
|
@@ -18582,7 +18597,7 @@ interface Routes {
|
|
|
18582
18597
|
}) & ({
|
|
18583
18598
|
_experimental_supported_code_from_access_codes_lengths?: (number[] | undefined) | undefined;
|
|
18584
18599
|
code_constraints?: (Array<{
|
|
18585
|
-
constraint_type: 'no_zeros' | 'cannot_start_with_12' | 'no_triple_consecutive_ints' | 'cannot_specify_pin_code' | 'pin_code_matches_existing_set' | 'start_date_in_future' | 'no_ascending_or_descending_sequence' | 'at_least_three_unique_digits';
|
|
18600
|
+
constraint_type: 'no_zeros' | 'cannot_start_with_12' | 'no_triple_consecutive_ints' | 'cannot_specify_pin_code' | 'pin_code_matches_existing_set' | 'start_date_in_future' | 'no_ascending_or_descending_sequence' | 'at_least_three_unique_digits' | 'cannot_contain_089';
|
|
18586
18601
|
} | {
|
|
18587
18602
|
constraint_type: 'name_length';
|
|
18588
18603
|
min_length?: number | undefined;
|
|
@@ -18806,6 +18821,7 @@ interface Routes {
|
|
|
18806
18821
|
custom_metadata: Record<string, string | boolean>;
|
|
18807
18822
|
can_remotely_unlock?: boolean | undefined;
|
|
18808
18823
|
can_remotely_lock?: boolean | undefined;
|
|
18824
|
+
can_program_offline_access_codes?: boolean | undefined;
|
|
18809
18825
|
can_program_online_access_codes?: boolean | undefined;
|
|
18810
18826
|
can_simulate_removal?: boolean | undefined;
|
|
18811
18827
|
}>;
|
|
@@ -18930,6 +18946,7 @@ interface Routes {
|
|
|
18930
18946
|
};
|
|
18931
18947
|
can_remotely_unlock?: boolean | undefined;
|
|
18932
18948
|
can_remotely_lock?: boolean | undefined;
|
|
18949
|
+
can_program_offline_access_codes?: boolean | undefined;
|
|
18933
18950
|
can_program_online_access_codes?: boolean | undefined;
|
|
18934
18951
|
can_simulate_removal?: boolean | undefined;
|
|
18935
18952
|
};
|
|
@@ -18953,8 +18970,8 @@ interface Routes {
|
|
|
18953
18970
|
created_before?: Date | undefined;
|
|
18954
18971
|
user_identifier_key?: string | undefined;
|
|
18955
18972
|
custom_metadata_has?: Record<string, string | boolean> | undefined;
|
|
18956
|
-
include_if?: Array<'can_remotely_unlock' | 'can_remotely_lock' | 'can_program_online_access_codes' | 'can_simulate_removal'> | undefined;
|
|
18957
|
-
exclude_if?: Array<'can_remotely_unlock' | 'can_remotely_lock' | 'can_program_online_access_codes' | 'can_simulate_removal'> | undefined;
|
|
18973
|
+
include_if?: Array<'can_remotely_unlock' | 'can_remotely_lock' | 'can_program_offline_access_codes' | 'can_program_online_access_codes' | 'can_simulate_removal'> | undefined;
|
|
18974
|
+
exclude_if?: Array<'can_remotely_unlock' | 'can_remotely_lock' | 'can_program_offline_access_codes' | 'can_program_online_access_codes' | 'can_simulate_removal'> | undefined;
|
|
18958
18975
|
};
|
|
18959
18976
|
formData: {};
|
|
18960
18977
|
jsonResponse: {
|
|
@@ -19037,6 +19054,7 @@ interface Routes {
|
|
|
19037
19054
|
};
|
|
19038
19055
|
can_remotely_unlock?: boolean | undefined;
|
|
19039
19056
|
can_remotely_lock?: boolean | undefined;
|
|
19057
|
+
can_program_offline_access_codes?: boolean | undefined;
|
|
19040
19058
|
can_program_online_access_codes?: boolean | undefined;
|
|
19041
19059
|
can_simulate_removal?: boolean | undefined;
|
|
19042
19060
|
}>;
|
|
@@ -19378,6 +19396,7 @@ interface Routes {
|
|
|
19378
19396
|
door_id: number;
|
|
19379
19397
|
door_name: string;
|
|
19380
19398
|
device_id?: number | undefined;
|
|
19399
|
+
door_is_wireless: boolean;
|
|
19381
19400
|
site_id: number;
|
|
19382
19401
|
site_name: string;
|
|
19383
19402
|
iana_timezone?: string | undefined;
|
|
@@ -19416,7 +19435,7 @@ interface Routes {
|
|
|
19416
19435
|
}) & ({
|
|
19417
19436
|
_experimental_supported_code_from_access_codes_lengths?: (number[] | undefined) | undefined;
|
|
19418
19437
|
code_constraints?: (Array<{
|
|
19419
|
-
constraint_type: 'no_zeros' | 'cannot_start_with_12' | 'no_triple_consecutive_ints' | 'cannot_specify_pin_code' | 'pin_code_matches_existing_set' | 'start_date_in_future' | 'no_ascending_or_descending_sequence' | 'at_least_three_unique_digits';
|
|
19438
|
+
constraint_type: 'no_zeros' | 'cannot_start_with_12' | 'no_triple_consecutive_ints' | 'cannot_specify_pin_code' | 'pin_code_matches_existing_set' | 'start_date_in_future' | 'no_ascending_or_descending_sequence' | 'at_least_three_unique_digits' | 'cannot_contain_089';
|
|
19420
19439
|
} | {
|
|
19421
19440
|
constraint_type: 'name_length';
|
|
19422
19441
|
min_length?: number | undefined;
|
|
@@ -19640,6 +19659,7 @@ interface Routes {
|
|
|
19640
19659
|
custom_metadata: Record<string, string | boolean>;
|
|
19641
19660
|
can_remotely_unlock?: boolean | undefined;
|
|
19642
19661
|
can_remotely_lock?: boolean | undefined;
|
|
19662
|
+
can_program_offline_access_codes?: boolean | undefined;
|
|
19643
19663
|
can_program_online_access_codes?: boolean | undefined;
|
|
19644
19664
|
can_simulate_removal?: boolean | undefined;
|
|
19645
19665
|
};
|
|
@@ -19887,6 +19907,7 @@ interface Routes {
|
|
|
19887
19907
|
door_id: number;
|
|
19888
19908
|
door_name: string;
|
|
19889
19909
|
device_id?: number | undefined;
|
|
19910
|
+
door_is_wireless: boolean;
|
|
19890
19911
|
site_id: number;
|
|
19891
19912
|
site_name: string;
|
|
19892
19913
|
iana_timezone?: string | undefined;
|
|
@@ -19925,7 +19946,7 @@ interface Routes {
|
|
|
19925
19946
|
}) & ({
|
|
19926
19947
|
_experimental_supported_code_from_access_codes_lengths?: (number[] | undefined) | undefined;
|
|
19927
19948
|
code_constraints?: (Array<{
|
|
19928
|
-
constraint_type: 'no_zeros' | 'cannot_start_with_12' | 'no_triple_consecutive_ints' | 'cannot_specify_pin_code' | 'pin_code_matches_existing_set' | 'start_date_in_future' | 'no_ascending_or_descending_sequence' | 'at_least_three_unique_digits';
|
|
19949
|
+
constraint_type: 'no_zeros' | 'cannot_start_with_12' | 'no_triple_consecutive_ints' | 'cannot_specify_pin_code' | 'pin_code_matches_existing_set' | 'start_date_in_future' | 'no_ascending_or_descending_sequence' | 'at_least_three_unique_digits' | 'cannot_contain_089';
|
|
19929
19950
|
} | {
|
|
19930
19951
|
constraint_type: 'name_length';
|
|
19931
19952
|
min_length?: number | undefined;
|
|
@@ -20149,6 +20170,7 @@ interface Routes {
|
|
|
20149
20170
|
custom_metadata: Record<string, string | boolean>;
|
|
20150
20171
|
can_remotely_unlock?: boolean | undefined;
|
|
20151
20172
|
can_remotely_lock?: boolean | undefined;
|
|
20173
|
+
can_program_offline_access_codes?: boolean | undefined;
|
|
20152
20174
|
can_program_online_access_codes?: boolean | undefined;
|
|
20153
20175
|
can_simulate_removal?: boolean | undefined;
|
|
20154
20176
|
};
|
|
@@ -20172,8 +20194,8 @@ interface Routes {
|
|
|
20172
20194
|
created_before?: Date | undefined;
|
|
20173
20195
|
user_identifier_key?: string | undefined;
|
|
20174
20196
|
custom_metadata_has?: Record<string, string | boolean> | undefined;
|
|
20175
|
-
include_if?: Array<'can_remotely_unlock' | 'can_remotely_lock' | 'can_program_online_access_codes' | 'can_simulate_removal'> | undefined;
|
|
20176
|
-
exclude_if?: Array<'can_remotely_unlock' | 'can_remotely_lock' | 'can_program_online_access_codes' | 'can_simulate_removal'> | undefined;
|
|
20197
|
+
include_if?: Array<'can_remotely_unlock' | 'can_remotely_lock' | 'can_program_offline_access_codes' | 'can_program_online_access_codes' | 'can_simulate_removal'> | undefined;
|
|
20198
|
+
exclude_if?: Array<'can_remotely_unlock' | 'can_remotely_lock' | 'can_program_offline_access_codes' | 'can_program_online_access_codes' | 'can_simulate_removal'> | undefined;
|
|
20177
20199
|
};
|
|
20178
20200
|
formData: {};
|
|
20179
20201
|
jsonResponse: {
|
|
@@ -20421,6 +20443,7 @@ interface Routes {
|
|
|
20421
20443
|
door_id: number;
|
|
20422
20444
|
door_name: string;
|
|
20423
20445
|
device_id?: number | undefined;
|
|
20446
|
+
door_is_wireless: boolean;
|
|
20424
20447
|
site_id: number;
|
|
20425
20448
|
site_name: string;
|
|
20426
20449
|
iana_timezone?: string | undefined;
|
|
@@ -20459,7 +20482,7 @@ interface Routes {
|
|
|
20459
20482
|
}) & ({
|
|
20460
20483
|
_experimental_supported_code_from_access_codes_lengths?: (number[] | undefined) | undefined;
|
|
20461
20484
|
code_constraints?: (Array<{
|
|
20462
|
-
constraint_type: 'no_zeros' | 'cannot_start_with_12' | 'no_triple_consecutive_ints' | 'cannot_specify_pin_code' | 'pin_code_matches_existing_set' | 'start_date_in_future' | 'no_ascending_or_descending_sequence' | 'at_least_three_unique_digits';
|
|
20485
|
+
constraint_type: 'no_zeros' | 'cannot_start_with_12' | 'no_triple_consecutive_ints' | 'cannot_specify_pin_code' | 'pin_code_matches_existing_set' | 'start_date_in_future' | 'no_ascending_or_descending_sequence' | 'at_least_three_unique_digits' | 'cannot_contain_089';
|
|
20463
20486
|
} | {
|
|
20464
20487
|
constraint_type: 'name_length';
|
|
20465
20488
|
min_length?: number | undefined;
|
|
@@ -20683,6 +20706,7 @@ interface Routes {
|
|
|
20683
20706
|
custom_metadata: Record<string, string | boolean>;
|
|
20684
20707
|
can_remotely_unlock?: boolean | undefined;
|
|
20685
20708
|
can_remotely_lock?: boolean | undefined;
|
|
20709
|
+
can_program_offline_access_codes?: boolean | undefined;
|
|
20686
20710
|
can_program_online_access_codes?: boolean | undefined;
|
|
20687
20711
|
can_simulate_removal?: boolean | undefined;
|
|
20688
20712
|
}>;
|
|
@@ -20930,6 +20954,7 @@ interface Routes {
|
|
|
20930
20954
|
door_id: number;
|
|
20931
20955
|
door_name: string;
|
|
20932
20956
|
device_id?: number | undefined;
|
|
20957
|
+
door_is_wireless: boolean;
|
|
20933
20958
|
site_id: number;
|
|
20934
20959
|
site_name: string;
|
|
20935
20960
|
iana_timezone?: string | undefined;
|
|
@@ -20968,7 +20993,7 @@ interface Routes {
|
|
|
20968
20993
|
}) & ({
|
|
20969
20994
|
_experimental_supported_code_from_access_codes_lengths?: (number[] | undefined) | undefined;
|
|
20970
20995
|
code_constraints?: (Array<{
|
|
20971
|
-
constraint_type: 'no_zeros' | 'cannot_start_with_12' | 'no_triple_consecutive_ints' | 'cannot_specify_pin_code' | 'pin_code_matches_existing_set' | 'start_date_in_future' | 'no_ascending_or_descending_sequence' | 'at_least_three_unique_digits';
|
|
20996
|
+
constraint_type: 'no_zeros' | 'cannot_start_with_12' | 'no_triple_consecutive_ints' | 'cannot_specify_pin_code' | 'pin_code_matches_existing_set' | 'start_date_in_future' | 'no_ascending_or_descending_sequence' | 'at_least_three_unique_digits' | 'cannot_contain_089';
|
|
20972
20997
|
} | {
|
|
20973
20998
|
constraint_type: 'name_length';
|
|
20974
20999
|
min_length?: number | undefined;
|
|
@@ -21192,6 +21217,7 @@ interface Routes {
|
|
|
21192
21217
|
custom_metadata: Record<string, string | boolean>;
|
|
21193
21218
|
can_remotely_unlock?: boolean | undefined;
|
|
21194
21219
|
can_remotely_lock?: boolean | undefined;
|
|
21220
|
+
can_program_offline_access_codes?: boolean | undefined;
|
|
21195
21221
|
can_program_online_access_codes?: boolean | undefined;
|
|
21196
21222
|
can_simulate_removal?: boolean | undefined;
|
|
21197
21223
|
}>;
|
|
@@ -21547,6 +21573,7 @@ interface Routes {
|
|
|
21547
21573
|
custom_metadata: Record<string, string | boolean>;
|
|
21548
21574
|
can_remotely_unlock?: boolean | undefined;
|
|
21549
21575
|
can_remotely_lock?: boolean | undefined;
|
|
21576
|
+
can_program_offline_access_codes?: boolean | undefined;
|
|
21550
21577
|
can_program_online_access_codes?: boolean | undefined;
|
|
21551
21578
|
can_simulate_removal?: boolean | undefined;
|
|
21552
21579
|
}>;
|
|
@@ -21622,6 +21649,7 @@ interface Routes {
|
|
|
21622
21649
|
custom_metadata: Record<string, string | boolean>;
|
|
21623
21650
|
can_remotely_unlock?: boolean | undefined;
|
|
21624
21651
|
can_remotely_lock?: boolean | undefined;
|
|
21652
|
+
can_program_offline_access_codes?: boolean | undefined;
|
|
21625
21653
|
can_program_online_access_codes?: boolean | undefined;
|
|
21626
21654
|
can_simulate_removal?: boolean | undefined;
|
|
21627
21655
|
};
|
|
@@ -22080,6 +22108,7 @@ interface Routes {
|
|
|
22080
22108
|
door_id: number;
|
|
22081
22109
|
door_name: string;
|
|
22082
22110
|
device_id?: number | undefined;
|
|
22111
|
+
door_is_wireless: boolean;
|
|
22083
22112
|
site_id: number;
|
|
22084
22113
|
site_name: string;
|
|
22085
22114
|
iana_timezone?: string | undefined;
|
|
@@ -22118,7 +22147,7 @@ interface Routes {
|
|
|
22118
22147
|
}) & ({
|
|
22119
22148
|
_experimental_supported_code_from_access_codes_lengths?: (number[] | undefined) | undefined;
|
|
22120
22149
|
code_constraints?: (Array<{
|
|
22121
|
-
constraint_type: 'no_zeros' | 'cannot_start_with_12' | 'no_triple_consecutive_ints' | 'cannot_specify_pin_code' | 'pin_code_matches_existing_set' | 'start_date_in_future' | 'no_ascending_or_descending_sequence' | 'at_least_three_unique_digits';
|
|
22150
|
+
constraint_type: 'no_zeros' | 'cannot_start_with_12' | 'no_triple_consecutive_ints' | 'cannot_specify_pin_code' | 'pin_code_matches_existing_set' | 'start_date_in_future' | 'no_ascending_or_descending_sequence' | 'at_least_three_unique_digits' | 'cannot_contain_089';
|
|
22122
22151
|
} | {
|
|
22123
22152
|
constraint_type: 'name_length';
|
|
22124
22153
|
min_length?: number | undefined;
|
|
@@ -22342,6 +22371,7 @@ interface Routes {
|
|
|
22342
22371
|
custom_metadata: Record<string, string | boolean>;
|
|
22343
22372
|
can_remotely_unlock?: boolean | undefined;
|
|
22344
22373
|
can_remotely_lock?: boolean | undefined;
|
|
22374
|
+
can_program_offline_access_codes?: boolean | undefined;
|
|
22345
22375
|
can_program_online_access_codes?: boolean | undefined;
|
|
22346
22376
|
can_simulate_removal?: boolean | undefined;
|
|
22347
22377
|
};
|
|
@@ -22441,8 +22471,8 @@ interface Routes {
|
|
|
22441
22471
|
created_before?: Date | undefined;
|
|
22442
22472
|
user_identifier_key?: string | undefined;
|
|
22443
22473
|
custom_metadata_has?: Record<string, string | boolean> | undefined;
|
|
22444
|
-
include_if?: Array<'can_remotely_unlock' | 'can_remotely_lock' | 'can_program_online_access_codes' | 'can_simulate_removal'> | undefined;
|
|
22445
|
-
exclude_if?: Array<'can_remotely_unlock' | 'can_remotely_lock' | 'can_program_online_access_codes' | 'can_simulate_removal'> | undefined;
|
|
22474
|
+
include_if?: Array<'can_remotely_unlock' | 'can_remotely_lock' | 'can_program_offline_access_codes' | 'can_program_online_access_codes' | 'can_simulate_removal'> | undefined;
|
|
22475
|
+
exclude_if?: Array<'can_remotely_unlock' | 'can_remotely_lock' | 'can_program_offline_access_codes' | 'can_program_online_access_codes' | 'can_simulate_removal'> | undefined;
|
|
22446
22476
|
};
|
|
22447
22477
|
formData: {};
|
|
22448
22478
|
jsonResponse: {
|
|
@@ -22690,6 +22720,7 @@ interface Routes {
|
|
|
22690
22720
|
door_id: number;
|
|
22691
22721
|
door_name: string;
|
|
22692
22722
|
device_id?: number | undefined;
|
|
22723
|
+
door_is_wireless: boolean;
|
|
22693
22724
|
site_id: number;
|
|
22694
22725
|
site_name: string;
|
|
22695
22726
|
iana_timezone?: string | undefined;
|
|
@@ -22728,7 +22759,7 @@ interface Routes {
|
|
|
22728
22759
|
}) & ({
|
|
22729
22760
|
_experimental_supported_code_from_access_codes_lengths?: (number[] | undefined) | undefined;
|
|
22730
22761
|
code_constraints?: (Array<{
|
|
22731
|
-
constraint_type: 'no_zeros' | 'cannot_start_with_12' | 'no_triple_consecutive_ints' | 'cannot_specify_pin_code' | 'pin_code_matches_existing_set' | 'start_date_in_future' | 'no_ascending_or_descending_sequence' | 'at_least_three_unique_digits';
|
|
22762
|
+
constraint_type: 'no_zeros' | 'cannot_start_with_12' | 'no_triple_consecutive_ints' | 'cannot_specify_pin_code' | 'pin_code_matches_existing_set' | 'start_date_in_future' | 'no_ascending_or_descending_sequence' | 'at_least_three_unique_digits' | 'cannot_contain_089';
|
|
22732
22763
|
} | {
|
|
22733
22764
|
constraint_type: 'name_length';
|
|
22734
22765
|
min_length?: number | undefined;
|
|
@@ -22952,6 +22983,7 @@ interface Routes {
|
|
|
22952
22983
|
custom_metadata: Record<string, string | boolean>;
|
|
22953
22984
|
can_remotely_unlock?: boolean | undefined;
|
|
22954
22985
|
can_remotely_lock?: boolean | undefined;
|
|
22986
|
+
can_program_offline_access_codes?: boolean | undefined;
|
|
22955
22987
|
can_program_online_access_codes?: boolean | undefined;
|
|
22956
22988
|
can_simulate_removal?: boolean | undefined;
|
|
22957
22989
|
}>;
|
|
@@ -23483,6 +23515,7 @@ interface Routes {
|
|
|
23483
23515
|
door_id: number;
|
|
23484
23516
|
door_name: string;
|
|
23485
23517
|
device_id?: number | undefined;
|
|
23518
|
+
door_is_wireless: boolean;
|
|
23486
23519
|
site_id: number;
|
|
23487
23520
|
site_name: string;
|
|
23488
23521
|
iana_timezone?: string | undefined;
|
|
@@ -23521,7 +23554,7 @@ interface Routes {
|
|
|
23521
23554
|
}) & ({
|
|
23522
23555
|
_experimental_supported_code_from_access_codes_lengths?: (number[] | undefined) | undefined;
|
|
23523
23556
|
code_constraints?: (Array<{
|
|
23524
|
-
constraint_type: 'no_zeros' | 'cannot_start_with_12' | 'no_triple_consecutive_ints' | 'cannot_specify_pin_code' | 'pin_code_matches_existing_set' | 'start_date_in_future' | 'no_ascending_or_descending_sequence' | 'at_least_three_unique_digits';
|
|
23557
|
+
constraint_type: 'no_zeros' | 'cannot_start_with_12' | 'no_triple_consecutive_ints' | 'cannot_specify_pin_code' | 'pin_code_matches_existing_set' | 'start_date_in_future' | 'no_ascending_or_descending_sequence' | 'at_least_three_unique_digits' | 'cannot_contain_089';
|
|
23525
23558
|
} | {
|
|
23526
23559
|
constraint_type: 'name_length';
|
|
23527
23560
|
min_length?: number | undefined;
|
|
@@ -23745,6 +23778,7 @@ interface Routes {
|
|
|
23745
23778
|
custom_metadata: Record<string, string | boolean>;
|
|
23746
23779
|
can_remotely_unlock?: boolean | undefined;
|
|
23747
23780
|
can_remotely_lock?: boolean | undefined;
|
|
23781
|
+
can_program_offline_access_codes?: boolean | undefined;
|
|
23748
23782
|
can_program_online_access_codes?: boolean | undefined;
|
|
23749
23783
|
can_simulate_removal?: boolean | undefined;
|
|
23750
23784
|
}>;
|
|
@@ -23997,6 +24031,7 @@ interface Routes {
|
|
|
23997
24031
|
door_id: number;
|
|
23998
24032
|
door_name: string;
|
|
23999
24033
|
device_id?: number | undefined;
|
|
24034
|
+
door_is_wireless: boolean;
|
|
24000
24035
|
site_id: number;
|
|
24001
24036
|
site_name: string;
|
|
24002
24037
|
iana_timezone?: string | undefined;
|
|
@@ -24035,7 +24070,7 @@ interface Routes {
|
|
|
24035
24070
|
}) & ({
|
|
24036
24071
|
_experimental_supported_code_from_access_codes_lengths?: (number[] | undefined) | undefined;
|
|
24037
24072
|
code_constraints?: (Array<{
|
|
24038
|
-
constraint_type: 'no_zeros' | 'cannot_start_with_12' | 'no_triple_consecutive_ints' | 'cannot_specify_pin_code' | 'pin_code_matches_existing_set' | 'start_date_in_future' | 'no_ascending_or_descending_sequence' | 'at_least_three_unique_digits';
|
|
24073
|
+
constraint_type: 'no_zeros' | 'cannot_start_with_12' | 'no_triple_consecutive_ints' | 'cannot_specify_pin_code' | 'pin_code_matches_existing_set' | 'start_date_in_future' | 'no_ascending_or_descending_sequence' | 'at_least_three_unique_digits' | 'cannot_contain_089';
|
|
24039
24074
|
} | {
|
|
24040
24075
|
constraint_type: 'name_length';
|
|
24041
24076
|
min_length?: number | undefined;
|
|
@@ -24259,6 +24294,7 @@ interface Routes {
|
|
|
24259
24294
|
custom_metadata: Record<string, string | boolean>;
|
|
24260
24295
|
can_remotely_unlock?: boolean | undefined;
|
|
24261
24296
|
can_remotely_lock?: boolean | undefined;
|
|
24297
|
+
can_program_offline_access_codes?: boolean | undefined;
|
|
24262
24298
|
can_program_online_access_codes?: boolean | undefined;
|
|
24263
24299
|
can_simulate_removal?: boolean | undefined;
|
|
24264
24300
|
}>;
|
|
@@ -1,10 +1,10 @@
|
|
|
1
1
|
import { z } from 'zod';
|
|
2
2
|
export declare const access_code_code_constraint: z.ZodObject<{
|
|
3
|
-
constraint_type: z.ZodEnum<["no_zeros", "cannot_start_with_12", "no_triple_consecutive_ints", "cannot_specify_pin_code", "pin_code_matches_existing_set", "start_date_in_future", "no_ascending_or_descending_sequence", "at_least_three_unique_digits"]>;
|
|
3
|
+
constraint_type: z.ZodEnum<["no_zeros", "cannot_start_with_12", "no_triple_consecutive_ints", "cannot_specify_pin_code", "pin_code_matches_existing_set", "start_date_in_future", "no_ascending_or_descending_sequence", "at_least_three_unique_digits", "cannot_contain_089"]>;
|
|
4
4
|
}, "strip", z.ZodTypeAny, {
|
|
5
|
-
constraint_type: "no_zeros" | "cannot_start_with_12" | "no_triple_consecutive_ints" | "cannot_specify_pin_code" | "pin_code_matches_existing_set" | "start_date_in_future" | "no_ascending_or_descending_sequence" | "at_least_three_unique_digits";
|
|
5
|
+
constraint_type: "no_zeros" | "cannot_start_with_12" | "no_triple_consecutive_ints" | "cannot_specify_pin_code" | "pin_code_matches_existing_set" | "start_date_in_future" | "no_ascending_or_descending_sequence" | "at_least_three_unique_digits" | "cannot_contain_089";
|
|
6
6
|
}, {
|
|
7
|
-
constraint_type: "no_zeros" | "cannot_start_with_12" | "no_triple_consecutive_ints" | "cannot_specify_pin_code" | "pin_code_matches_existing_set" | "start_date_in_future" | "no_ascending_or_descending_sequence" | "at_least_three_unique_digits";
|
|
7
|
+
constraint_type: "no_zeros" | "cannot_start_with_12" | "no_triple_consecutive_ints" | "cannot_specify_pin_code" | "pin_code_matches_existing_set" | "start_date_in_future" | "no_ascending_or_descending_sequence" | "at_least_three_unique_digits" | "cannot_contain_089";
|
|
8
8
|
}>;
|
|
9
9
|
export declare const access_code_name_constraint: z.ZodObject<{
|
|
10
10
|
constraint_type: z.ZodLiteral<"name_length">;
|
|
@@ -20,11 +20,11 @@ export declare const access_code_name_constraint: z.ZodObject<{
|
|
|
20
20
|
max_length?: number | undefined;
|
|
21
21
|
}>;
|
|
22
22
|
export declare const access_code_constraint: z.ZodUnion<[z.ZodObject<{
|
|
23
|
-
constraint_type: z.ZodEnum<["no_zeros", "cannot_start_with_12", "no_triple_consecutive_ints", "cannot_specify_pin_code", "pin_code_matches_existing_set", "start_date_in_future", "no_ascending_or_descending_sequence", "at_least_three_unique_digits"]>;
|
|
23
|
+
constraint_type: z.ZodEnum<["no_zeros", "cannot_start_with_12", "no_triple_consecutive_ints", "cannot_specify_pin_code", "pin_code_matches_existing_set", "start_date_in_future", "no_ascending_or_descending_sequence", "at_least_three_unique_digits", "cannot_contain_089"]>;
|
|
24
24
|
}, "strip", z.ZodTypeAny, {
|
|
25
|
-
constraint_type: "no_zeros" | "cannot_start_with_12" | "no_triple_consecutive_ints" | "cannot_specify_pin_code" | "pin_code_matches_existing_set" | "start_date_in_future" | "no_ascending_or_descending_sequence" | "at_least_three_unique_digits";
|
|
25
|
+
constraint_type: "no_zeros" | "cannot_start_with_12" | "no_triple_consecutive_ints" | "cannot_specify_pin_code" | "pin_code_matches_existing_set" | "start_date_in_future" | "no_ascending_or_descending_sequence" | "at_least_three_unique_digits" | "cannot_contain_089";
|
|
26
26
|
}, {
|
|
27
|
-
constraint_type: "no_zeros" | "cannot_start_with_12" | "no_triple_consecutive_ints" | "cannot_specify_pin_code" | "pin_code_matches_existing_set" | "start_date_in_future" | "no_ascending_or_descending_sequence" | "at_least_three_unique_digits";
|
|
27
|
+
constraint_type: "no_zeros" | "cannot_start_with_12" | "no_triple_consecutive_ints" | "cannot_specify_pin_code" | "pin_code_matches_existing_set" | "start_date_in_future" | "no_ascending_or_descending_sequence" | "at_least_three_unique_digits" | "cannot_contain_089";
|
|
28
28
|
}>, z.ZodObject<{
|
|
29
29
|
constraint_type: z.ZodLiteral<"name_length">;
|
|
30
30
|
min_length: z.ZodOptional<z.ZodNumber>;
|
|
@@ -42,11 +42,11 @@ export type AccessCodeConstraint = z.infer<typeof access_code_constraint>;
|
|
|
42
42
|
export declare const access_code_capability_properties: z.ZodObject<{
|
|
43
43
|
_experimental_supported_code_from_access_codes_lengths: z.ZodOptional<z.ZodArray<z.ZodNumber, "many">>;
|
|
44
44
|
code_constraints: z.ZodOptional<z.ZodArray<z.ZodUnion<[z.ZodObject<{
|
|
45
|
-
constraint_type: z.ZodEnum<["no_zeros", "cannot_start_with_12", "no_triple_consecutive_ints", "cannot_specify_pin_code", "pin_code_matches_existing_set", "start_date_in_future", "no_ascending_or_descending_sequence", "at_least_three_unique_digits"]>;
|
|
45
|
+
constraint_type: z.ZodEnum<["no_zeros", "cannot_start_with_12", "no_triple_consecutive_ints", "cannot_specify_pin_code", "pin_code_matches_existing_set", "start_date_in_future", "no_ascending_or_descending_sequence", "at_least_three_unique_digits", "cannot_contain_089"]>;
|
|
46
46
|
}, "strip", z.ZodTypeAny, {
|
|
47
|
-
constraint_type: "no_zeros" | "cannot_start_with_12" | "no_triple_consecutive_ints" | "cannot_specify_pin_code" | "pin_code_matches_existing_set" | "start_date_in_future" | "no_ascending_or_descending_sequence" | "at_least_three_unique_digits";
|
|
47
|
+
constraint_type: "no_zeros" | "cannot_start_with_12" | "no_triple_consecutive_ints" | "cannot_specify_pin_code" | "pin_code_matches_existing_set" | "start_date_in_future" | "no_ascending_or_descending_sequence" | "at_least_three_unique_digits" | "cannot_contain_089";
|
|
48
48
|
}, {
|
|
49
|
-
constraint_type: "no_zeros" | "cannot_start_with_12" | "no_triple_consecutive_ints" | "cannot_specify_pin_code" | "pin_code_matches_existing_set" | "start_date_in_future" | "no_ascending_or_descending_sequence" | "at_least_three_unique_digits";
|
|
49
|
+
constraint_type: "no_zeros" | "cannot_start_with_12" | "no_triple_consecutive_ints" | "cannot_specify_pin_code" | "pin_code_matches_existing_set" | "start_date_in_future" | "no_ascending_or_descending_sequence" | "at_least_three_unique_digits" | "cannot_contain_089";
|
|
50
50
|
}>, z.ZodObject<{
|
|
51
51
|
constraint_type: z.ZodLiteral<"name_length">;
|
|
52
52
|
min_length: z.ZodOptional<z.ZodNumber>;
|
|
@@ -67,7 +67,7 @@ export declare const access_code_capability_properties: z.ZodObject<{
|
|
|
67
67
|
}, "strip", z.ZodTypeAny, {
|
|
68
68
|
_experimental_supported_code_from_access_codes_lengths?: number[] | undefined;
|
|
69
69
|
code_constraints?: ({
|
|
70
|
-
constraint_type: "no_zeros" | "cannot_start_with_12" | "no_triple_consecutive_ints" | "cannot_specify_pin_code" | "pin_code_matches_existing_set" | "start_date_in_future" | "no_ascending_or_descending_sequence" | "at_least_three_unique_digits";
|
|
70
|
+
constraint_type: "no_zeros" | "cannot_start_with_12" | "no_triple_consecutive_ints" | "cannot_specify_pin_code" | "pin_code_matches_existing_set" | "start_date_in_future" | "no_ascending_or_descending_sequence" | "at_least_three_unique_digits" | "cannot_contain_089";
|
|
71
71
|
} | {
|
|
72
72
|
constraint_type: "name_length";
|
|
73
73
|
min_length?: number | undefined;
|
|
@@ -80,7 +80,7 @@ export declare const access_code_capability_properties: z.ZodObject<{
|
|
|
80
80
|
}, {
|
|
81
81
|
_experimental_supported_code_from_access_codes_lengths?: number[] | undefined;
|
|
82
82
|
code_constraints?: ({
|
|
83
|
-
constraint_type: "no_zeros" | "cannot_start_with_12" | "no_triple_consecutive_ints" | "cannot_specify_pin_code" | "pin_code_matches_existing_set" | "start_date_in_future" | "no_ascending_or_descending_sequence" | "at_least_three_unique_digits";
|
|
83
|
+
constraint_type: "no_zeros" | "cannot_start_with_12" | "no_triple_consecutive_ints" | "cannot_specify_pin_code" | "pin_code_matches_existing_set" | "start_date_in_future" | "no_ascending_or_descending_sequence" | "at_least_three_unique_digits" | "cannot_contain_089";
|
|
84
84
|
} | {
|
|
85
85
|
constraint_type: "name_length";
|
|
86
86
|
min_length?: number | undefined;
|
|
@@ -9,6 +9,7 @@ export const access_code_code_constraint = z.object({
|
|
|
9
9
|
'start_date_in_future', // Kwikset
|
|
10
10
|
'no_ascending_or_descending_sequence', // Tedee
|
|
11
11
|
'at_least_three_unique_digits', // Tedee
|
|
12
|
+
'cannot_contain_089', // TTLock (for some cylinder devices only)
|
|
12
13
|
]),
|
|
13
14
|
});
|
|
14
15
|
export const access_code_name_constraint = z.object({
|
|
@@ -1 +1 @@
|
|
|
1
|
-
{"version":3,"file":"access-code.js","sourceRoot":"","sources":["../../../../../src/lib/seam/connect/models/capability-properties/access-code.ts"],"names":[],"mappings":"AAAA,OAAO,EAAE,CAAC,EAAE,MAAM,KAAK,CAAA;AAEvB,MAAM,CAAC,MAAM,2BAA2B,GAAG,CAAC,CAAC,MAAM,CAAC;IAClD,eAAe,EAAE,CAAC,CAAC,IAAI,CAAC;QACtB,UAAU,EAAE,OAAO;QACnB,sBAAsB,EAAE,OAAO;QAC/B,4BAA4B,EAAE,QAAQ;QACtC,yBAAyB,EAAE,SAAS;QACpC,+BAA+B,EAAE,QAAQ;QACzC,sBAAsB,EAAE,UAAU;QAClC,qCAAqC,EAAE,QAAQ;QAC/C,8BAA8B,EAAE,QAAQ;
|
|
1
|
+
{"version":3,"file":"access-code.js","sourceRoot":"","sources":["../../../../../src/lib/seam/connect/models/capability-properties/access-code.ts"],"names":[],"mappings":"AAAA,OAAO,EAAE,CAAC,EAAE,MAAM,KAAK,CAAA;AAEvB,MAAM,CAAC,MAAM,2BAA2B,GAAG,CAAC,CAAC,MAAM,CAAC;IAClD,eAAe,EAAE,CAAC,CAAC,IAAI,CAAC;QACtB,UAAU,EAAE,OAAO;QACnB,sBAAsB,EAAE,OAAO;QAC/B,4BAA4B,EAAE,QAAQ;QACtC,yBAAyB,EAAE,SAAS;QACpC,+BAA+B,EAAE,QAAQ;QACzC,sBAAsB,EAAE,UAAU;QAClC,qCAAqC,EAAE,QAAQ;QAC/C,8BAA8B,EAAE,QAAQ;QACxC,oBAAoB,EAAE,0CAA0C;KACjE,CAAC;CACH,CAAC,CAAA;AAEF,MAAM,CAAC,MAAM,2BAA2B,GAAG,CAAC,CAAC,MAAM,CAAC;IAClD,eAAe,EAAE,CAAC,CAAC,OAAO,CAAC,aAAa,CAAC,EAAE,gBAAgB;IAC3D,UAAU,EAAE,CAAC,CAAC,MAAM,EAAE,CAAC,QAAQ,EAAE;IACjC,UAAU,EAAE,CAAC,CAAC,MAAM,EAAE,CAAC,QAAQ,EAAE;CAClC,CAAC,CAAA;AAEF,MAAM,CAAC,MAAM,sBAAsB,GAAG,CAAC,CAAC,KAAK,CAAC;IAC5C,2BAA2B;IAC3B,2BAA2B;CAC5B,CAAC,CAAA;AAIF,MAAM,CAAC,MAAM,iCAAiC,GAAG,CAAC,CAAC,MAAM,CAAC;IACxD,sDAAsD,EAAE,CAAC;SACtD,KAAK,CAAC,CAAC,CAAC,MAAM,EAAE,CAAC;SACjB,QAAQ,EAAE;IACb,gBAAgB,EAAE,CAAC,CAAC,KAAK,CAAC,sBAAsB,CAAC,CAAC,QAAQ,EAAE;IAC5D,sBAAsB,EAAE,CAAC,CAAC,KAAK,CAAC,CAAC,CAAC,MAAM,EAAE,CAAC,CAAC,QAAQ,EAAE;IACtD,0BAA0B,EAAE,CAAC,CAAC,MAAM,EAAE,CAAC,QAAQ,EAAE;IACjD,gCAAgC,EAAE,CAAC,CAAC,OAAO,EAAE,CAAC,QAAQ,EAAE;IACxD,uBAAuB,EAAE,CAAC,CAAC,OAAO,EAAE,CAAC,QAAQ,EAAE;CAChD,CAAC,CAAA"}
|
|
@@ -6,11 +6,11 @@ export { access_code_capability_properties, access_code_code_constraint, climate
|
|
|
6
6
|
export declare const capability_properties: z.ZodIntersection<z.ZodObject<{
|
|
7
7
|
_experimental_supported_code_from_access_codes_lengths: z.ZodOptional<z.ZodOptional<z.ZodArray<z.ZodNumber, "many">>>;
|
|
8
8
|
code_constraints: z.ZodOptional<z.ZodOptional<z.ZodArray<z.ZodUnion<[z.ZodObject<{
|
|
9
|
-
constraint_type: z.ZodEnum<["no_zeros", "cannot_start_with_12", "no_triple_consecutive_ints", "cannot_specify_pin_code", "pin_code_matches_existing_set", "start_date_in_future", "no_ascending_or_descending_sequence", "at_least_three_unique_digits"]>;
|
|
9
|
+
constraint_type: z.ZodEnum<["no_zeros", "cannot_start_with_12", "no_triple_consecutive_ints", "cannot_specify_pin_code", "pin_code_matches_existing_set", "start_date_in_future", "no_ascending_or_descending_sequence", "at_least_three_unique_digits", "cannot_contain_089"]>;
|
|
10
10
|
}, "strip", z.ZodTypeAny, {
|
|
11
|
-
constraint_type: "no_zeros" | "cannot_start_with_12" | "no_triple_consecutive_ints" | "cannot_specify_pin_code" | "pin_code_matches_existing_set" | "start_date_in_future" | "no_ascending_or_descending_sequence" | "at_least_three_unique_digits";
|
|
11
|
+
constraint_type: "no_zeros" | "cannot_start_with_12" | "no_triple_consecutive_ints" | "cannot_specify_pin_code" | "pin_code_matches_existing_set" | "start_date_in_future" | "no_ascending_or_descending_sequence" | "at_least_three_unique_digits" | "cannot_contain_089";
|
|
12
12
|
}, {
|
|
13
|
-
constraint_type: "no_zeros" | "cannot_start_with_12" | "no_triple_consecutive_ints" | "cannot_specify_pin_code" | "pin_code_matches_existing_set" | "start_date_in_future" | "no_ascending_or_descending_sequence" | "at_least_three_unique_digits";
|
|
13
|
+
constraint_type: "no_zeros" | "cannot_start_with_12" | "no_triple_consecutive_ints" | "cannot_specify_pin_code" | "pin_code_matches_existing_set" | "start_date_in_future" | "no_ascending_or_descending_sequence" | "at_least_three_unique_digits" | "cannot_contain_089";
|
|
14
14
|
}>, z.ZodObject<{
|
|
15
15
|
constraint_type: z.ZodLiteral<"name_length">;
|
|
16
16
|
min_length: z.ZodOptional<z.ZodNumber>;
|
|
@@ -40,7 +40,7 @@ export declare const capability_properties: z.ZodIntersection<z.ZodObject<{
|
|
|
40
40
|
}, "strip", z.ZodTypeAny, {
|
|
41
41
|
_experimental_supported_code_from_access_codes_lengths?: number[] | undefined;
|
|
42
42
|
code_constraints?: ({
|
|
43
|
-
constraint_type: "no_zeros" | "cannot_start_with_12" | "no_triple_consecutive_ints" | "cannot_specify_pin_code" | "pin_code_matches_existing_set" | "start_date_in_future" | "no_ascending_or_descending_sequence" | "at_least_three_unique_digits";
|
|
43
|
+
constraint_type: "no_zeros" | "cannot_start_with_12" | "no_triple_consecutive_ints" | "cannot_specify_pin_code" | "pin_code_matches_existing_set" | "start_date_in_future" | "no_ascending_or_descending_sequence" | "at_least_three_unique_digits" | "cannot_contain_089";
|
|
44
44
|
} | {
|
|
45
45
|
constraint_type: "name_length";
|
|
46
46
|
min_length?: number | undefined;
|
|
@@ -58,7 +58,7 @@ export declare const capability_properties: z.ZodIntersection<z.ZodObject<{
|
|
|
58
58
|
}, {
|
|
59
59
|
_experimental_supported_code_from_access_codes_lengths?: number[] | undefined;
|
|
60
60
|
code_constraints?: ({
|
|
61
|
-
constraint_type: "no_zeros" | "cannot_start_with_12" | "no_triple_consecutive_ints" | "cannot_specify_pin_code" | "pin_code_matches_existing_set" | "start_date_in_future" | "no_ascending_or_descending_sequence" | "at_least_three_unique_digits";
|
|
61
|
+
constraint_type: "no_zeros" | "cannot_start_with_12" | "no_triple_consecutive_ints" | "cannot_specify_pin_code" | "pin_code_matches_existing_set" | "start_date_in_future" | "no_ascending_or_descending_sequence" | "at_least_three_unique_digits" | "cannot_contain_089";
|
|
62
62
|
} | {
|
|
63
63
|
constraint_type: "name_length";
|
|
64
64
|
min_length?: number | undefined;
|
|
@@ -505,6 +505,7 @@ export declare const device_metadata: z.ZodObject<{
|
|
|
505
505
|
door_id: z.ZodNumber;
|
|
506
506
|
door_name: z.ZodString;
|
|
507
507
|
device_id: z.ZodOptional<z.ZodNumber>;
|
|
508
|
+
door_is_wireless: z.ZodBoolean;
|
|
508
509
|
site_id: z.ZodNumber;
|
|
509
510
|
site_name: z.ZodString;
|
|
510
511
|
iana_timezone: z.ZodOptional<z.ZodString>;
|
|
@@ -547,6 +548,7 @@ export declare const device_metadata: z.ZodObject<{
|
|
|
547
548
|
site_id: number;
|
|
548
549
|
site_name: string;
|
|
549
550
|
door_id: number;
|
|
551
|
+
door_is_wireless: boolean;
|
|
550
552
|
device_id?: number | undefined;
|
|
551
553
|
iana_timezone?: string | undefined;
|
|
552
554
|
predefined_time_slots?: {
|
|
@@ -566,6 +568,7 @@ export declare const device_metadata: z.ZodObject<{
|
|
|
566
568
|
site_id: number;
|
|
567
569
|
site_name: string;
|
|
568
570
|
door_id: number;
|
|
571
|
+
door_is_wireless: boolean;
|
|
569
572
|
device_id?: number | undefined;
|
|
570
573
|
iana_timezone?: string | undefined;
|
|
571
574
|
predefined_time_slots?: {
|
|
@@ -787,6 +790,7 @@ export declare const device_metadata: z.ZodObject<{
|
|
|
787
790
|
site_id: number;
|
|
788
791
|
site_name: string;
|
|
789
792
|
door_id: number;
|
|
793
|
+
door_is_wireless: boolean;
|
|
790
794
|
device_id?: number | undefined;
|
|
791
795
|
iana_timezone?: string | undefined;
|
|
792
796
|
predefined_time_slots?: {
|
|
@@ -974,6 +978,7 @@ export declare const device_metadata: z.ZodObject<{
|
|
|
974
978
|
site_id: number;
|
|
975
979
|
site_name: string;
|
|
976
980
|
door_id: number;
|
|
981
|
+
door_is_wireless: boolean;
|
|
977
982
|
device_id?: number | undefined;
|
|
978
983
|
iana_timezone?: string | undefined;
|
|
979
984
|
predefined_time_slots?: {
|
|
@@ -1 +1 @@
|
|
|
1
|
-
{"version":3,"file":"device-metadata.js","sourceRoot":"","sources":["../../../../../src/lib/seam/connect/models/devices/device-metadata.ts"],"names":[],"mappings":"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"}
|
|
1
|
+
{"version":3,"file":"device-metadata.js","sourceRoot":"","sources":["../../../../../src/lib/seam/connect/models/devices/device-metadata.ts"],"names":[],"mappings":"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"}
|