@seamapi/types 1.846.0 → 1.848.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 +81 -7
- package/dist/connect.cjs.map +1 -1
- package/dist/connect.d.cts +239 -80
- package/dist/index.cjs +81 -7
- package/dist/index.cjs.map +1 -1
- package/lib/seam/connect/models/access-codes/unmanaged-access-code.d.ts +6 -0
- package/lib/seam/connect/models/access-codes/unmanaged-access-code.js +8 -0
- package/lib/seam/connect/models/access-codes/unmanaged-access-code.js.map +1 -1
- package/lib/seam/connect/models/acs/acs-access-group.d.ts +13 -13
- package/lib/seam/connect/models/acs/acs-access-group.js +1 -0
- package/lib/seam/connect/models/acs/acs-access-group.js.map +1 -1
- package/lib/seam/connect/models/acs/acs-entrance.d.ts +49 -4
- package/lib/seam/connect/models/acs/acs-entrance.js +9 -0
- package/lib/seam/connect/models/acs/acs-entrance.js.map +1 -1
- package/lib/seam/connect/models/batch.d.ts +67 -28
- package/lib/seam/connect/models/phones/phone-session.d.ts +110 -28
- package/lib/seam/connect/openapi.js +60 -0
- package/lib/seam/connect/openapi.js.map +1 -1
- package/lib/seam/connect/route-types.d.ts +129 -36
- package/package.json +1 -1
- package/src/lib/seam/connect/models/access-codes/unmanaged-access-code.ts +12 -0
- package/src/lib/seam/connect/models/acs/acs-access-group.ts +1 -0
- package/src/lib/seam/connect/models/acs/acs-entrance.ts +12 -0
- package/src/lib/seam/connect/openapi.ts +70 -0
- package/src/lib/seam/connect/route-types.ts +228 -88
package/dist/connect.d.cts
CHANGED
|
@@ -3317,6 +3317,8 @@ declare const unmanaged_access_code: z.ZodObject<{
|
|
|
3317
3317
|
} & {
|
|
3318
3318
|
is_managed: z.ZodLiteral<false>;
|
|
3319
3319
|
status: z.ZodEnum<["set", "unset"]>;
|
|
3320
|
+
cannot_be_managed: z.ZodOptional<z.ZodLiteral<true>>;
|
|
3321
|
+
cannot_delete_unmanaged_access_code: z.ZodOptional<z.ZodLiteral<true>>;
|
|
3320
3322
|
dormakaba_oracode_metadata: z.ZodOptional<z.ZodNullable<z.ZodObject<{
|
|
3321
3323
|
stay_id: z.ZodNumber;
|
|
3322
3324
|
user_level_id: z.ZodOptional<z.ZodString>;
|
|
@@ -3643,6 +3645,8 @@ declare const unmanaged_access_code: z.ZodObject<{
|
|
|
3643
3645
|
is_early_checkin_able?: boolean | undefined;
|
|
3644
3646
|
is_overridable?: boolean | undefined;
|
|
3645
3647
|
} | null | undefined;
|
|
3648
|
+
cannot_be_managed?: true | undefined;
|
|
3649
|
+
cannot_delete_unmanaged_access_code?: true | undefined;
|
|
3646
3650
|
}, {
|
|
3647
3651
|
code: string | null;
|
|
3648
3652
|
type: "time_bound" | "ongoing";
|
|
@@ -3941,6 +3945,8 @@ declare const unmanaged_access_code: z.ZodObject<{
|
|
|
3941
3945
|
is_early_checkin_able?: boolean | undefined;
|
|
3942
3946
|
is_overridable?: boolean | undefined;
|
|
3943
3947
|
} | null | undefined;
|
|
3948
|
+
cannot_be_managed?: true | undefined;
|
|
3949
|
+
cannot_delete_unmanaged_access_code?: true | undefined;
|
|
3944
3950
|
}>;
|
|
3945
3951
|
type UnmanagedAccessCode = z.infer<typeof unmanaged_access_code>;
|
|
3946
3952
|
|
|
@@ -4746,10 +4752,10 @@ declare const acs_access_group: z.ZodObject<{
|
|
|
4746
4752
|
workspace_id: z.ZodString;
|
|
4747
4753
|
connected_account_id: z.ZodString;
|
|
4748
4754
|
name: z.ZodString;
|
|
4749
|
-
access_group_type: z.ZodEnum<["pti_unit", "pti_access_level", "salto_ks_access_group", "brivo_group", "salto_space_group", "dormakaba_community_access_group", "dormakaba_ambiance_access_group"]>;
|
|
4755
|
+
access_group_type: z.ZodEnum<["pti_unit", "pti_access_level", "salto_ks_access_group", "brivo_group", "salto_space_group", "dormakaba_community_access_group", "dormakaba_ambiance_access_group", "avigilon_alta_group"]>;
|
|
4750
4756
|
access_group_type_display_name: z.ZodString;
|
|
4751
4757
|
display_name: z.ZodString;
|
|
4752
|
-
external_type: z.ZodEnum<["pti_unit", "pti_access_level", "salto_ks_access_group", "brivo_group", "salto_space_group", "dormakaba_community_access_group", "dormakaba_ambiance_access_group"]>;
|
|
4758
|
+
external_type: z.ZodEnum<["pti_unit", "pti_access_level", "salto_ks_access_group", "brivo_group", "salto_space_group", "dormakaba_community_access_group", "dormakaba_ambiance_access_group", "avigilon_alta_group"]>;
|
|
4753
4759
|
external_type_display_name: z.ZodString;
|
|
4754
4760
|
created_at: z.ZodString;
|
|
4755
4761
|
errors: z.ZodArray<z.ZodDiscriminatedUnion<"error_code", [z.ZodObject<{
|
|
@@ -5114,9 +5120,9 @@ declare const acs_access_group: z.ZodObject<{
|
|
|
5114
5120
|
})[];
|
|
5115
5121
|
acs_access_group_id: string;
|
|
5116
5122
|
acs_system_id: string;
|
|
5117
|
-
access_group_type: "pti_unit" | "pti_access_level" | "salto_ks_access_group" | "brivo_group" | "salto_space_group" | "dormakaba_community_access_group" | "dormakaba_ambiance_access_group";
|
|
5123
|
+
access_group_type: "pti_unit" | "pti_access_level" | "salto_ks_access_group" | "brivo_group" | "salto_space_group" | "dormakaba_community_access_group" | "dormakaba_ambiance_access_group" | "avigilon_alta_group";
|
|
5118
5124
|
access_group_type_display_name: string;
|
|
5119
|
-
external_type: "pti_unit" | "pti_access_level" | "salto_ks_access_group" | "brivo_group" | "salto_space_group" | "dormakaba_community_access_group" | "dormakaba_ambiance_access_group";
|
|
5125
|
+
external_type: "pti_unit" | "pti_access_level" | "salto_ks_access_group" | "brivo_group" | "salto_space_group" | "dormakaba_community_access_group" | "dormakaba_ambiance_access_group" | "avigilon_alta_group";
|
|
5120
5126
|
external_type_display_name: string;
|
|
5121
5127
|
access_schedule?: {
|
|
5122
5128
|
starts_at: string;
|
|
@@ -5206,9 +5212,9 @@ declare const acs_access_group: z.ZodObject<{
|
|
|
5206
5212
|
})[];
|
|
5207
5213
|
acs_access_group_id: string;
|
|
5208
5214
|
acs_system_id: string;
|
|
5209
|
-
access_group_type: "pti_unit" | "pti_access_level" | "salto_ks_access_group" | "brivo_group" | "salto_space_group" | "dormakaba_community_access_group" | "dormakaba_ambiance_access_group";
|
|
5215
|
+
access_group_type: "pti_unit" | "pti_access_level" | "salto_ks_access_group" | "brivo_group" | "salto_space_group" | "dormakaba_community_access_group" | "dormakaba_ambiance_access_group" | "avigilon_alta_group";
|
|
5210
5216
|
access_group_type_display_name: string;
|
|
5211
|
-
external_type: "pti_unit" | "pti_access_level" | "salto_ks_access_group" | "brivo_group" | "salto_space_group" | "dormakaba_community_access_group" | "dormakaba_ambiance_access_group";
|
|
5217
|
+
external_type: "pti_unit" | "pti_access_level" | "salto_ks_access_group" | "brivo_group" | "salto_space_group" | "dormakaba_community_access_group" | "dormakaba_ambiance_access_group" | "avigilon_alta_group";
|
|
5212
5218
|
external_type_display_name: string;
|
|
5213
5219
|
access_schedule?: {
|
|
5214
5220
|
starts_at: string;
|
|
@@ -5221,10 +5227,10 @@ declare const unmanaged_acs_access_group: z.ZodObject<{
|
|
|
5221
5227
|
workspace_id: z.ZodString;
|
|
5222
5228
|
connected_account_id: z.ZodString;
|
|
5223
5229
|
name: z.ZodString;
|
|
5224
|
-
access_group_type: z.ZodEnum<["pti_unit", "pti_access_level", "salto_ks_access_group", "brivo_group", "salto_space_group", "dormakaba_community_access_group", "dormakaba_ambiance_access_group"]>;
|
|
5230
|
+
access_group_type: z.ZodEnum<["pti_unit", "pti_access_level", "salto_ks_access_group", "brivo_group", "salto_space_group", "dormakaba_community_access_group", "dormakaba_ambiance_access_group", "avigilon_alta_group"]>;
|
|
5225
5231
|
access_group_type_display_name: z.ZodString;
|
|
5226
5232
|
display_name: z.ZodString;
|
|
5227
|
-
external_type: z.ZodEnum<["pti_unit", "pti_access_level", "salto_ks_access_group", "brivo_group", "salto_space_group", "dormakaba_community_access_group", "dormakaba_ambiance_access_group"]>;
|
|
5233
|
+
external_type: z.ZodEnum<["pti_unit", "pti_access_level", "salto_ks_access_group", "brivo_group", "salto_space_group", "dormakaba_community_access_group", "dormakaba_ambiance_access_group", "avigilon_alta_group"]>;
|
|
5228
5234
|
external_type_display_name: z.ZodString;
|
|
5229
5235
|
created_at: z.ZodString;
|
|
5230
5236
|
errors: z.ZodArray<z.ZodDiscriminatedUnion<"error_code", [z.ZodObject<{
|
|
@@ -5589,9 +5595,9 @@ declare const unmanaged_acs_access_group: z.ZodObject<{
|
|
|
5589
5595
|
})[];
|
|
5590
5596
|
acs_access_group_id: string;
|
|
5591
5597
|
acs_system_id: string;
|
|
5592
|
-
access_group_type: "pti_unit" | "pti_access_level" | "salto_ks_access_group" | "brivo_group" | "salto_space_group" | "dormakaba_community_access_group" | "dormakaba_ambiance_access_group";
|
|
5598
|
+
access_group_type: "pti_unit" | "pti_access_level" | "salto_ks_access_group" | "brivo_group" | "salto_space_group" | "dormakaba_community_access_group" | "dormakaba_ambiance_access_group" | "avigilon_alta_group";
|
|
5593
5599
|
access_group_type_display_name: string;
|
|
5594
|
-
external_type: "pti_unit" | "pti_access_level" | "salto_ks_access_group" | "brivo_group" | "salto_space_group" | "dormakaba_community_access_group" | "dormakaba_ambiance_access_group";
|
|
5600
|
+
external_type: "pti_unit" | "pti_access_level" | "salto_ks_access_group" | "brivo_group" | "salto_space_group" | "dormakaba_community_access_group" | "dormakaba_ambiance_access_group" | "avigilon_alta_group";
|
|
5595
5601
|
external_type_display_name: string;
|
|
5596
5602
|
access_schedule?: {
|
|
5597
5603
|
starts_at: string;
|
|
@@ -5681,9 +5687,9 @@ declare const unmanaged_acs_access_group: z.ZodObject<{
|
|
|
5681
5687
|
})[];
|
|
5682
5688
|
acs_access_group_id: string;
|
|
5683
5689
|
acs_system_id: string;
|
|
5684
|
-
access_group_type: "pti_unit" | "pti_access_level" | "salto_ks_access_group" | "brivo_group" | "salto_space_group" | "dormakaba_community_access_group" | "dormakaba_ambiance_access_group";
|
|
5690
|
+
access_group_type: "pti_unit" | "pti_access_level" | "salto_ks_access_group" | "brivo_group" | "salto_space_group" | "dormakaba_community_access_group" | "dormakaba_ambiance_access_group" | "avigilon_alta_group";
|
|
5685
5691
|
access_group_type_display_name: string;
|
|
5686
|
-
external_type: "pti_unit" | "pti_access_level" | "salto_ks_access_group" | "brivo_group" | "salto_space_group" | "dormakaba_community_access_group" | "dormakaba_ambiance_access_group";
|
|
5692
|
+
external_type: "pti_unit" | "pti_access_level" | "salto_ks_access_group" | "brivo_group" | "salto_space_group" | "dormakaba_community_access_group" | "dormakaba_ambiance_access_group" | "avigilon_alta_group";
|
|
5687
5693
|
external_type_display_name: string;
|
|
5688
5694
|
access_schedule?: {
|
|
5689
5695
|
starts_at: string;
|
|
@@ -6392,6 +6398,19 @@ declare const acs_entrance: z.ZodObject<{
|
|
|
6392
6398
|
message: string;
|
|
6393
6399
|
created_at: string;
|
|
6394
6400
|
warning_code: "salto_ks_entrance_access_code_support_removed";
|
|
6401
|
+
}>, z.ZodObject<{
|
|
6402
|
+
created_at: z.ZodString;
|
|
6403
|
+
message: z.ZodString;
|
|
6404
|
+
} & {
|
|
6405
|
+
warning_code: z.ZodLiteral<"entrance_shares_zone">;
|
|
6406
|
+
}, "strip", z.ZodTypeAny, {
|
|
6407
|
+
message: string;
|
|
6408
|
+
created_at: string;
|
|
6409
|
+
warning_code: "entrance_shares_zone";
|
|
6410
|
+
}, {
|
|
6411
|
+
message: string;
|
|
6412
|
+
created_at: string;
|
|
6413
|
+
warning_code: "entrance_shares_zone";
|
|
6395
6414
|
}>]>, "many">;
|
|
6396
6415
|
latch_metadata: z.ZodOptional<z.ZodObject<{
|
|
6397
6416
|
accessibility_type: z.ZodString;
|
|
@@ -6585,11 +6604,15 @@ declare const acs_entrance: z.ZodObject<{
|
|
|
6585
6604
|
error_code: string;
|
|
6586
6605
|
}[];
|
|
6587
6606
|
connected_account_id: string;
|
|
6588
|
-
warnings: {
|
|
6607
|
+
warnings: ({
|
|
6589
6608
|
message: string;
|
|
6590
6609
|
created_at: string;
|
|
6591
6610
|
warning_code: "salto_ks_entrance_access_code_support_removed";
|
|
6592
|
-
}
|
|
6611
|
+
} | {
|
|
6612
|
+
message: string;
|
|
6613
|
+
created_at: string;
|
|
6614
|
+
warning_code: "entrance_shares_zone";
|
|
6615
|
+
})[];
|
|
6593
6616
|
space_ids: string[];
|
|
6594
6617
|
acs_entrance_id: string;
|
|
6595
6618
|
acs_system_id: string;
|
|
@@ -6670,11 +6693,15 @@ declare const acs_entrance: z.ZodObject<{
|
|
|
6670
6693
|
error_code: string;
|
|
6671
6694
|
}[];
|
|
6672
6695
|
connected_account_id: string;
|
|
6673
|
-
warnings: {
|
|
6696
|
+
warnings: ({
|
|
6674
6697
|
message: string;
|
|
6675
6698
|
created_at: string;
|
|
6676
6699
|
warning_code: "salto_ks_entrance_access_code_support_removed";
|
|
6677
|
-
}
|
|
6700
|
+
} | {
|
|
6701
|
+
message: string;
|
|
6702
|
+
created_at: string;
|
|
6703
|
+
warning_code: "entrance_shares_zone";
|
|
6704
|
+
})[];
|
|
6678
6705
|
space_ids: string[];
|
|
6679
6706
|
acs_entrance_id: string;
|
|
6680
6707
|
acs_system_id: string;
|
|
@@ -17851,6 +17878,19 @@ declare const batch: z.ZodObject<{
|
|
|
17851
17878
|
message: string;
|
|
17852
17879
|
created_at: string;
|
|
17853
17880
|
warning_code: "salto_ks_entrance_access_code_support_removed";
|
|
17881
|
+
}>, z.ZodObject<{
|
|
17882
|
+
created_at: z.ZodString;
|
|
17883
|
+
message: z.ZodString;
|
|
17884
|
+
} & {
|
|
17885
|
+
warning_code: z.ZodLiteral<"entrance_shares_zone">;
|
|
17886
|
+
}, "strip", z.ZodTypeAny, {
|
|
17887
|
+
message: string;
|
|
17888
|
+
created_at: string;
|
|
17889
|
+
warning_code: "entrance_shares_zone";
|
|
17890
|
+
}, {
|
|
17891
|
+
message: string;
|
|
17892
|
+
created_at: string;
|
|
17893
|
+
warning_code: "entrance_shares_zone";
|
|
17854
17894
|
}>]>, "many">;
|
|
17855
17895
|
latch_metadata: z.ZodOptional<z.ZodObject<{
|
|
17856
17896
|
accessibility_type: z.ZodString;
|
|
@@ -18044,11 +18084,15 @@ declare const batch: z.ZodObject<{
|
|
|
18044
18084
|
error_code: string;
|
|
18045
18085
|
}[];
|
|
18046
18086
|
connected_account_id: string;
|
|
18047
|
-
warnings: {
|
|
18087
|
+
warnings: ({
|
|
18048
18088
|
message: string;
|
|
18049
18089
|
created_at: string;
|
|
18050
18090
|
warning_code: "salto_ks_entrance_access_code_support_removed";
|
|
18051
|
-
}
|
|
18091
|
+
} | {
|
|
18092
|
+
message: string;
|
|
18093
|
+
created_at: string;
|
|
18094
|
+
warning_code: "entrance_shares_zone";
|
|
18095
|
+
})[];
|
|
18052
18096
|
space_ids: string[];
|
|
18053
18097
|
acs_entrance_id: string;
|
|
18054
18098
|
acs_system_id: string;
|
|
@@ -18129,11 +18173,15 @@ declare const batch: z.ZodObject<{
|
|
|
18129
18173
|
error_code: string;
|
|
18130
18174
|
}[];
|
|
18131
18175
|
connected_account_id: string;
|
|
18132
|
-
warnings: {
|
|
18176
|
+
warnings: ({
|
|
18133
18177
|
message: string;
|
|
18134
18178
|
created_at: string;
|
|
18135
18179
|
warning_code: "salto_ks_entrance_access_code_support_removed";
|
|
18136
|
-
}
|
|
18180
|
+
} | {
|
|
18181
|
+
message: string;
|
|
18182
|
+
created_at: string;
|
|
18183
|
+
warning_code: "entrance_shares_zone";
|
|
18184
|
+
})[];
|
|
18137
18185
|
space_ids: string[];
|
|
18138
18186
|
acs_entrance_id: string;
|
|
18139
18187
|
acs_system_id: string;
|
|
@@ -19263,10 +19311,10 @@ declare const batch: z.ZodObject<{
|
|
|
19263
19311
|
workspace_id: z.ZodString;
|
|
19264
19312
|
connected_account_id: z.ZodString;
|
|
19265
19313
|
name: z.ZodString;
|
|
19266
|
-
access_group_type: z.ZodEnum<["pti_unit", "pti_access_level", "salto_ks_access_group", "brivo_group", "salto_space_group", "dormakaba_community_access_group", "dormakaba_ambiance_access_group"]>;
|
|
19314
|
+
access_group_type: z.ZodEnum<["pti_unit", "pti_access_level", "salto_ks_access_group", "brivo_group", "salto_space_group", "dormakaba_community_access_group", "dormakaba_ambiance_access_group", "avigilon_alta_group"]>;
|
|
19267
19315
|
access_group_type_display_name: z.ZodString;
|
|
19268
19316
|
display_name: z.ZodString;
|
|
19269
|
-
external_type: z.ZodEnum<["pti_unit", "pti_access_level", "salto_ks_access_group", "brivo_group", "salto_space_group", "dormakaba_community_access_group", "dormakaba_ambiance_access_group"]>;
|
|
19317
|
+
external_type: z.ZodEnum<["pti_unit", "pti_access_level", "salto_ks_access_group", "brivo_group", "salto_space_group", "dormakaba_community_access_group", "dormakaba_ambiance_access_group", "avigilon_alta_group"]>;
|
|
19270
19318
|
external_type_display_name: z.ZodString;
|
|
19271
19319
|
created_at: z.ZodString;
|
|
19272
19320
|
errors: z.ZodArray<z.ZodDiscriminatedUnion<"error_code", [z.ZodObject<{
|
|
@@ -19631,9 +19679,9 @@ declare const batch: z.ZodObject<{
|
|
|
19631
19679
|
})[];
|
|
19632
19680
|
acs_access_group_id: string;
|
|
19633
19681
|
acs_system_id: string;
|
|
19634
|
-
access_group_type: "pti_unit" | "pti_access_level" | "salto_ks_access_group" | "brivo_group" | "salto_space_group" | "dormakaba_community_access_group" | "dormakaba_ambiance_access_group";
|
|
19682
|
+
access_group_type: "pti_unit" | "pti_access_level" | "salto_ks_access_group" | "brivo_group" | "salto_space_group" | "dormakaba_community_access_group" | "dormakaba_ambiance_access_group" | "avigilon_alta_group";
|
|
19635
19683
|
access_group_type_display_name: string;
|
|
19636
|
-
external_type: "pti_unit" | "pti_access_level" | "salto_ks_access_group" | "brivo_group" | "salto_space_group" | "dormakaba_community_access_group" | "dormakaba_ambiance_access_group";
|
|
19684
|
+
external_type: "pti_unit" | "pti_access_level" | "salto_ks_access_group" | "brivo_group" | "salto_space_group" | "dormakaba_community_access_group" | "dormakaba_ambiance_access_group" | "avigilon_alta_group";
|
|
19637
19685
|
external_type_display_name: string;
|
|
19638
19686
|
access_schedule?: {
|
|
19639
19687
|
starts_at: string;
|
|
@@ -19723,9 +19771,9 @@ declare const batch: z.ZodObject<{
|
|
|
19723
19771
|
})[];
|
|
19724
19772
|
acs_access_group_id: string;
|
|
19725
19773
|
acs_system_id: string;
|
|
19726
|
-
access_group_type: "pti_unit" | "pti_access_level" | "salto_ks_access_group" | "brivo_group" | "salto_space_group" | "dormakaba_community_access_group" | "dormakaba_ambiance_access_group";
|
|
19774
|
+
access_group_type: "pti_unit" | "pti_access_level" | "salto_ks_access_group" | "brivo_group" | "salto_space_group" | "dormakaba_community_access_group" | "dormakaba_ambiance_access_group" | "avigilon_alta_group";
|
|
19727
19775
|
access_group_type_display_name: string;
|
|
19728
|
-
external_type: "pti_unit" | "pti_access_level" | "salto_ks_access_group" | "brivo_group" | "salto_space_group" | "dormakaba_community_access_group" | "dormakaba_ambiance_access_group";
|
|
19776
|
+
external_type: "pti_unit" | "pti_access_level" | "salto_ks_access_group" | "brivo_group" | "salto_space_group" | "dormakaba_community_access_group" | "dormakaba_ambiance_access_group" | "avigilon_alta_group";
|
|
19729
19777
|
external_type_display_name: string;
|
|
19730
19778
|
access_schedule?: {
|
|
19731
19779
|
starts_at: string;
|
|
@@ -25204,10 +25252,10 @@ declare const batch: z.ZodObject<{
|
|
|
25204
25252
|
workspace_id: z.ZodString;
|
|
25205
25253
|
connected_account_id: z.ZodString;
|
|
25206
25254
|
name: z.ZodString;
|
|
25207
|
-
access_group_type: z.ZodEnum<["pti_unit", "pti_access_level", "salto_ks_access_group", "brivo_group", "salto_space_group", "dormakaba_community_access_group", "dormakaba_ambiance_access_group"]>;
|
|
25255
|
+
access_group_type: z.ZodEnum<["pti_unit", "pti_access_level", "salto_ks_access_group", "brivo_group", "salto_space_group", "dormakaba_community_access_group", "dormakaba_ambiance_access_group", "avigilon_alta_group"]>;
|
|
25208
25256
|
access_group_type_display_name: z.ZodString;
|
|
25209
25257
|
display_name: z.ZodString;
|
|
25210
|
-
external_type: z.ZodEnum<["pti_unit", "pti_access_level", "salto_ks_access_group", "brivo_group", "salto_space_group", "dormakaba_community_access_group", "dormakaba_ambiance_access_group"]>;
|
|
25258
|
+
external_type: z.ZodEnum<["pti_unit", "pti_access_level", "salto_ks_access_group", "brivo_group", "salto_space_group", "dormakaba_community_access_group", "dormakaba_ambiance_access_group", "avigilon_alta_group"]>;
|
|
25211
25259
|
external_type_display_name: z.ZodString;
|
|
25212
25260
|
created_at: z.ZodString;
|
|
25213
25261
|
errors: z.ZodArray<z.ZodDiscriminatedUnion<"error_code", [z.ZodObject<{
|
|
@@ -25572,9 +25620,9 @@ declare const batch: z.ZodObject<{
|
|
|
25572
25620
|
})[];
|
|
25573
25621
|
acs_access_group_id: string;
|
|
25574
25622
|
acs_system_id: string;
|
|
25575
|
-
access_group_type: "pti_unit" | "pti_access_level" | "salto_ks_access_group" | "brivo_group" | "salto_space_group" | "dormakaba_community_access_group" | "dormakaba_ambiance_access_group";
|
|
25623
|
+
access_group_type: "pti_unit" | "pti_access_level" | "salto_ks_access_group" | "brivo_group" | "salto_space_group" | "dormakaba_community_access_group" | "dormakaba_ambiance_access_group" | "avigilon_alta_group";
|
|
25576
25624
|
access_group_type_display_name: string;
|
|
25577
|
-
external_type: "pti_unit" | "pti_access_level" | "salto_ks_access_group" | "brivo_group" | "salto_space_group" | "dormakaba_community_access_group" | "dormakaba_ambiance_access_group";
|
|
25625
|
+
external_type: "pti_unit" | "pti_access_level" | "salto_ks_access_group" | "brivo_group" | "salto_space_group" | "dormakaba_community_access_group" | "dormakaba_ambiance_access_group" | "avigilon_alta_group";
|
|
25578
25626
|
external_type_display_name: string;
|
|
25579
25627
|
access_schedule?: {
|
|
25580
25628
|
starts_at: string;
|
|
@@ -25664,9 +25712,9 @@ declare const batch: z.ZodObject<{
|
|
|
25664
25712
|
})[];
|
|
25665
25713
|
acs_access_group_id: string;
|
|
25666
25714
|
acs_system_id: string;
|
|
25667
|
-
access_group_type: "pti_unit" | "pti_access_level" | "salto_ks_access_group" | "brivo_group" | "salto_space_group" | "dormakaba_community_access_group" | "dormakaba_ambiance_access_group";
|
|
25715
|
+
access_group_type: "pti_unit" | "pti_access_level" | "salto_ks_access_group" | "brivo_group" | "salto_space_group" | "dormakaba_community_access_group" | "dormakaba_ambiance_access_group" | "avigilon_alta_group";
|
|
25668
25716
|
access_group_type_display_name: string;
|
|
25669
|
-
external_type: "pti_unit" | "pti_access_level" | "salto_ks_access_group" | "brivo_group" | "salto_space_group" | "dormakaba_community_access_group" | "dormakaba_ambiance_access_group";
|
|
25717
|
+
external_type: "pti_unit" | "pti_access_level" | "salto_ks_access_group" | "brivo_group" | "salto_space_group" | "dormakaba_community_access_group" | "dormakaba_ambiance_access_group" | "avigilon_alta_group";
|
|
25670
25718
|
external_type_display_name: string;
|
|
25671
25719
|
access_schedule?: {
|
|
25672
25720
|
starts_at: string;
|
|
@@ -37993,6 +38041,8 @@ declare const batch: z.ZodObject<{
|
|
|
37993
38041
|
} & {
|
|
37994
38042
|
is_managed: z.ZodLiteral<false>;
|
|
37995
38043
|
status: z.ZodEnum<["set", "unset"]>;
|
|
38044
|
+
cannot_be_managed: z.ZodOptional<z.ZodLiteral<true>>;
|
|
38045
|
+
cannot_delete_unmanaged_access_code: z.ZodOptional<z.ZodLiteral<true>>;
|
|
37996
38046
|
dormakaba_oracode_metadata: z.ZodOptional<z.ZodNullable<z.ZodObject<{
|
|
37997
38047
|
stay_id: z.ZodNumber;
|
|
37998
38048
|
user_level_id: z.ZodOptional<z.ZodString>;
|
|
@@ -38319,6 +38369,8 @@ declare const batch: z.ZodObject<{
|
|
|
38319
38369
|
is_early_checkin_able?: boolean | undefined;
|
|
38320
38370
|
is_overridable?: boolean | undefined;
|
|
38321
38371
|
} | null | undefined;
|
|
38372
|
+
cannot_be_managed?: true | undefined;
|
|
38373
|
+
cannot_delete_unmanaged_access_code?: true | undefined;
|
|
38322
38374
|
}, {
|
|
38323
38375
|
code: string | null;
|
|
38324
38376
|
type: "time_bound" | "ongoing";
|
|
@@ -38617,6 +38669,8 @@ declare const batch: z.ZodObject<{
|
|
|
38617
38669
|
is_early_checkin_able?: boolean | undefined;
|
|
38618
38670
|
is_overridable?: boolean | undefined;
|
|
38619
38671
|
} | null | undefined;
|
|
38672
|
+
cannot_be_managed?: true | undefined;
|
|
38673
|
+
cannot_delete_unmanaged_access_code?: true | undefined;
|
|
38620
38674
|
}>, "many">>;
|
|
38621
38675
|
thermostat_daily_programs: z.ZodOptional<z.ZodArray<z.ZodObject<{
|
|
38622
38676
|
thermostat_daily_program_id: z.ZodString;
|
|
@@ -39678,11 +39732,15 @@ declare const batch: z.ZodObject<{
|
|
|
39678
39732
|
error_code: string;
|
|
39679
39733
|
}[];
|
|
39680
39734
|
connected_account_id: string;
|
|
39681
|
-
warnings: {
|
|
39735
|
+
warnings: ({
|
|
39682
39736
|
message: string;
|
|
39683
39737
|
created_at: string;
|
|
39684
39738
|
warning_code: "salto_ks_entrance_access_code_support_removed";
|
|
39685
|
-
}
|
|
39739
|
+
} | {
|
|
39740
|
+
message: string;
|
|
39741
|
+
created_at: string;
|
|
39742
|
+
warning_code: "entrance_shares_zone";
|
|
39743
|
+
})[];
|
|
39686
39744
|
space_ids: string[];
|
|
39687
39745
|
acs_entrance_id: string;
|
|
39688
39746
|
acs_system_id: string;
|
|
@@ -40054,9 +40112,9 @@ declare const batch: z.ZodObject<{
|
|
|
40054
40112
|
})[];
|
|
40055
40113
|
acs_access_group_id: string;
|
|
40056
40114
|
acs_system_id: string;
|
|
40057
|
-
access_group_type: "pti_unit" | "pti_access_level" | "salto_ks_access_group" | "brivo_group" | "salto_space_group" | "dormakaba_community_access_group" | "dormakaba_ambiance_access_group";
|
|
40115
|
+
access_group_type: "pti_unit" | "pti_access_level" | "salto_ks_access_group" | "brivo_group" | "salto_space_group" | "dormakaba_community_access_group" | "dormakaba_ambiance_access_group" | "avigilon_alta_group";
|
|
40058
40116
|
access_group_type_display_name: string;
|
|
40059
|
-
external_type: "pti_unit" | "pti_access_level" | "salto_ks_access_group" | "brivo_group" | "salto_space_group" | "dormakaba_community_access_group" | "dormakaba_ambiance_access_group";
|
|
40117
|
+
external_type: "pti_unit" | "pti_access_level" | "salto_ks_access_group" | "brivo_group" | "salto_space_group" | "dormakaba_community_access_group" | "dormakaba_ambiance_access_group" | "avigilon_alta_group";
|
|
40060
40118
|
external_type_display_name: string;
|
|
40061
40119
|
access_schedule?: {
|
|
40062
40120
|
starts_at: string;
|
|
@@ -41237,9 +41295,9 @@ declare const batch: z.ZodObject<{
|
|
|
41237
41295
|
})[];
|
|
41238
41296
|
acs_access_group_id: string;
|
|
41239
41297
|
acs_system_id: string;
|
|
41240
|
-
access_group_type: "pti_unit" | "pti_access_level" | "salto_ks_access_group" | "brivo_group" | "salto_space_group" | "dormakaba_community_access_group" | "dormakaba_ambiance_access_group";
|
|
41298
|
+
access_group_type: "pti_unit" | "pti_access_level" | "salto_ks_access_group" | "brivo_group" | "salto_space_group" | "dormakaba_community_access_group" | "dormakaba_ambiance_access_group" | "avigilon_alta_group";
|
|
41241
41299
|
access_group_type_display_name: string;
|
|
41242
|
-
external_type: "pti_unit" | "pti_access_level" | "salto_ks_access_group" | "brivo_group" | "salto_space_group" | "dormakaba_community_access_group" | "dormakaba_ambiance_access_group";
|
|
41300
|
+
external_type: "pti_unit" | "pti_access_level" | "salto_ks_access_group" | "brivo_group" | "salto_space_group" | "dormakaba_community_access_group" | "dormakaba_ambiance_access_group" | "avigilon_alta_group";
|
|
41243
41301
|
external_type_display_name: string;
|
|
41244
41302
|
access_schedule?: {
|
|
41245
41303
|
starts_at: string;
|
|
@@ -43752,6 +43810,8 @@ declare const batch: z.ZodObject<{
|
|
|
43752
43810
|
is_early_checkin_able?: boolean | undefined;
|
|
43753
43811
|
is_overridable?: boolean | undefined;
|
|
43754
43812
|
} | null | undefined;
|
|
43813
|
+
cannot_be_managed?: true | undefined;
|
|
43814
|
+
cannot_delete_unmanaged_access_code?: true | undefined;
|
|
43755
43815
|
}[] | undefined;
|
|
43756
43816
|
thermostat_schedules?: {
|
|
43757
43817
|
climate_preset_key: string;
|
|
@@ -44686,11 +44746,15 @@ declare const batch: z.ZodObject<{
|
|
|
44686
44746
|
error_code: string;
|
|
44687
44747
|
}[];
|
|
44688
44748
|
connected_account_id: string;
|
|
44689
|
-
warnings: {
|
|
44749
|
+
warnings: ({
|
|
44690
44750
|
message: string;
|
|
44691
44751
|
created_at: string;
|
|
44692
44752
|
warning_code: "salto_ks_entrance_access_code_support_removed";
|
|
44693
|
-
}
|
|
44753
|
+
} | {
|
|
44754
|
+
message: string;
|
|
44755
|
+
created_at: string;
|
|
44756
|
+
warning_code: "entrance_shares_zone";
|
|
44757
|
+
})[];
|
|
44694
44758
|
space_ids: string[];
|
|
44695
44759
|
acs_entrance_id: string;
|
|
44696
44760
|
acs_system_id: string;
|
|
@@ -45062,9 +45126,9 @@ declare const batch: z.ZodObject<{
|
|
|
45062
45126
|
})[];
|
|
45063
45127
|
acs_access_group_id: string;
|
|
45064
45128
|
acs_system_id: string;
|
|
45065
|
-
access_group_type: "pti_unit" | "pti_access_level" | "salto_ks_access_group" | "brivo_group" | "salto_space_group" | "dormakaba_community_access_group" | "dormakaba_ambiance_access_group";
|
|
45129
|
+
access_group_type: "pti_unit" | "pti_access_level" | "salto_ks_access_group" | "brivo_group" | "salto_space_group" | "dormakaba_community_access_group" | "dormakaba_ambiance_access_group" | "avigilon_alta_group";
|
|
45066
45130
|
access_group_type_display_name: string;
|
|
45067
|
-
external_type: "pti_unit" | "pti_access_level" | "salto_ks_access_group" | "brivo_group" | "salto_space_group" | "dormakaba_community_access_group" | "dormakaba_ambiance_access_group";
|
|
45131
|
+
external_type: "pti_unit" | "pti_access_level" | "salto_ks_access_group" | "brivo_group" | "salto_space_group" | "dormakaba_community_access_group" | "dormakaba_ambiance_access_group" | "avigilon_alta_group";
|
|
45068
45132
|
external_type_display_name: string;
|
|
45069
45133
|
access_schedule?: {
|
|
45070
45134
|
starts_at: string;
|
|
@@ -46245,9 +46309,9 @@ declare const batch: z.ZodObject<{
|
|
|
46245
46309
|
})[];
|
|
46246
46310
|
acs_access_group_id: string;
|
|
46247
46311
|
acs_system_id: string;
|
|
46248
|
-
access_group_type: "pti_unit" | "pti_access_level" | "salto_ks_access_group" | "brivo_group" | "salto_space_group" | "dormakaba_community_access_group" | "dormakaba_ambiance_access_group";
|
|
46312
|
+
access_group_type: "pti_unit" | "pti_access_level" | "salto_ks_access_group" | "brivo_group" | "salto_space_group" | "dormakaba_community_access_group" | "dormakaba_ambiance_access_group" | "avigilon_alta_group";
|
|
46249
46313
|
access_group_type_display_name: string;
|
|
46250
|
-
external_type: "pti_unit" | "pti_access_level" | "salto_ks_access_group" | "brivo_group" | "salto_space_group" | "dormakaba_community_access_group" | "dormakaba_ambiance_access_group";
|
|
46314
|
+
external_type: "pti_unit" | "pti_access_level" | "salto_ks_access_group" | "brivo_group" | "salto_space_group" | "dormakaba_community_access_group" | "dormakaba_ambiance_access_group" | "avigilon_alta_group";
|
|
46251
46315
|
external_type_display_name: string;
|
|
46252
46316
|
access_schedule?: {
|
|
46253
46317
|
starts_at: string;
|
|
@@ -48760,6 +48824,8 @@ declare const batch: z.ZodObject<{
|
|
|
48760
48824
|
is_early_checkin_able?: boolean | undefined;
|
|
48761
48825
|
is_overridable?: boolean | undefined;
|
|
48762
48826
|
} | null | undefined;
|
|
48827
|
+
cannot_be_managed?: true | undefined;
|
|
48828
|
+
cannot_delete_unmanaged_access_code?: true | undefined;
|
|
48763
48829
|
}[] | undefined;
|
|
48764
48830
|
thermostat_schedules?: {
|
|
48765
48831
|
climate_preset_key: string;
|
|
@@ -71418,6 +71484,10 @@ type Routes = {
|
|
|
71418
71484
|
ends_at?: (string | null) | undefined;
|
|
71419
71485
|
/** Current status of the access code within the operational lifecycle. `set` indicates that the code is active and operational. `unset` indicates that the code exists on the provider but is not usable on the device. */
|
|
71420
71486
|
status: 'set' | 'unset';
|
|
71487
|
+
/** Indicates that Seam cannot convert this unmanaged access code to a managed access code. Some providers do not support management of unmanaged access codes through API integrations. */
|
|
71488
|
+
cannot_be_managed?: true | undefined;
|
|
71489
|
+
/** Indicates that Seam cannot delete this unmanaged access code through the provider. If this access code needs to be deleted, it will only be possible from the manufacturer app. */
|
|
71490
|
+
cannot_delete_unmanaged_access_code?: true | undefined;
|
|
71421
71491
|
/** Metadata for a dormakaba Oracode unmanaged access code. Only present for unmanaged access codes from dormakaba Oracode devices. */
|
|
71422
71492
|
dormakaba_oracode_metadata?: ({
|
|
71423
71493
|
/** Dormakaba Oracode stay ID associated with this access code. */
|
|
@@ -73312,6 +73382,10 @@ type Routes = {
|
|
|
73312
73382
|
ends_at?: (string | null) | undefined;
|
|
73313
73383
|
/** Current status of the access code within the operational lifecycle. `set` indicates that the code is active and operational. `unset` indicates that the code exists on the provider but is not usable on the device. */
|
|
73314
73384
|
status: 'set' | 'unset';
|
|
73385
|
+
/** Indicates that Seam cannot convert this unmanaged access code to a managed access code. Some providers do not support management of unmanaged access codes through API integrations. */
|
|
73386
|
+
cannot_be_managed?: true | undefined;
|
|
73387
|
+
/** Indicates that Seam cannot delete this unmanaged access code through the provider. If this access code needs to be deleted, it will only be possible from the manufacturer app. */
|
|
73388
|
+
cannot_delete_unmanaged_access_code?: true | undefined;
|
|
73315
73389
|
/** Metadata for a dormakaba Oracode unmanaged access code. Only present for unmanaged access codes from dormakaba Oracode devices. */
|
|
73316
73390
|
dormakaba_oracode_metadata?: ({
|
|
73317
73391
|
/** Dormakaba Oracode stay ID associated with this access code. */
|
|
@@ -73836,6 +73910,10 @@ type Routes = {
|
|
|
73836
73910
|
ends_at?: (string | null) | undefined;
|
|
73837
73911
|
/** Current status of the access code within the operational lifecycle. `set` indicates that the code is active and operational. `unset` indicates that the code exists on the provider but is not usable on the device. */
|
|
73838
73912
|
status: 'set' | 'unset';
|
|
73913
|
+
/** Indicates that Seam cannot convert this unmanaged access code to a managed access code. Some providers do not support management of unmanaged access codes through API integrations. */
|
|
73914
|
+
cannot_be_managed?: true | undefined;
|
|
73915
|
+
/** Indicates that Seam cannot delete this unmanaged access code through the provider. If this access code needs to be deleted, it will only be possible from the manufacturer app. */
|
|
73916
|
+
cannot_delete_unmanaged_access_code?: true | undefined;
|
|
73839
73917
|
/** Metadata for a dormakaba Oracode unmanaged access code. Only present for unmanaged access codes from dormakaba Oracode devices. */
|
|
73840
73918
|
dormakaba_oracode_metadata?: ({
|
|
73841
73919
|
/** Dormakaba Oracode stay ID associated with this access code. */
|
|
@@ -77157,14 +77235,21 @@ type Routes = {
|
|
|
77157
77235
|
message: string;
|
|
77158
77236
|
}[];
|
|
77159
77237
|
/** Warnings associated with the [entrance](https://docs.seam.co/latest/capability-guides/access-systems/retrieving-entrance-details). */
|
|
77160
|
-
warnings: {
|
|
77238
|
+
warnings: ({
|
|
77161
77239
|
/** Date and time at which Seam created the warning. */
|
|
77162
77240
|
created_at: string;
|
|
77163
77241
|
/** Detailed description of the warning. Provides insights into the issue and potentially how to rectify it. */
|
|
77164
77242
|
message: string;
|
|
77165
77243
|
/** Unique identifier of the type of warning. Enables quick recognition and categorization of the issue. */
|
|
77166
77244
|
warning_code: 'salto_ks_entrance_access_code_support_removed';
|
|
77167
|
-
}
|
|
77245
|
+
} | {
|
|
77246
|
+
/** Date and time at which Seam created the warning. */
|
|
77247
|
+
created_at: string;
|
|
77248
|
+
/** Detailed description of the warning. Provides insights into the issue and potentially how to rectify it. */
|
|
77249
|
+
message: string;
|
|
77250
|
+
/** Unique identifier of the type of warning. Enables quick recognition and categorization of the issue. */
|
|
77251
|
+
warning_code: 'entrance_shares_zone';
|
|
77252
|
+
})[];
|
|
77168
77253
|
/** Latch-specific metadata associated with the [entrance](https://docs.seam.co/latest/capability-guides/access-systems/retrieving-entrance-details). */
|
|
77169
77254
|
latch_metadata?: {
|
|
77170
77255
|
/** Accessibility type in the Latch access system. */
|
|
@@ -77622,13 +77707,13 @@ type Routes = {
|
|
|
77622
77707
|
name: string;
|
|
77623
77708
|
/**
|
|
77624
77709
|
* @deprecated Use `external_type`.*/
|
|
77625
|
-
access_group_type: 'pti_unit' | 'pti_access_level' | 'salto_ks_access_group' | 'brivo_group' | 'salto_space_group' | 'dormakaba_community_access_group' | 'dormakaba_ambiance_access_group';
|
|
77710
|
+
access_group_type: 'pti_unit' | 'pti_access_level' | 'salto_ks_access_group' | 'brivo_group' | 'salto_space_group' | 'dormakaba_community_access_group' | 'dormakaba_ambiance_access_group' | 'avigilon_alta_group';
|
|
77626
77711
|
/**
|
|
77627
77712
|
* @deprecated Use `external_type_display_name`.*/
|
|
77628
77713
|
access_group_type_display_name: string;
|
|
77629
77714
|
display_name: string;
|
|
77630
77715
|
/** Brand-specific terminology for the access group type. */
|
|
77631
|
-
external_type: 'pti_unit' | 'pti_access_level' | 'salto_ks_access_group' | 'brivo_group' | 'salto_space_group' | 'dormakaba_community_access_group' | 'dormakaba_ambiance_access_group';
|
|
77716
|
+
external_type: 'pti_unit' | 'pti_access_level' | 'salto_ks_access_group' | 'brivo_group' | 'salto_space_group' | 'dormakaba_community_access_group' | 'dormakaba_ambiance_access_group' | 'avigilon_alta_group';
|
|
77632
77717
|
/** Display name that corresponds to the brand-specific terminology for the access group type. */
|
|
77633
77718
|
external_type_display_name: string;
|
|
77634
77719
|
/** Date and time at which the access group was created. */
|
|
@@ -81629,14 +81714,21 @@ type Routes = {
|
|
|
81629
81714
|
message: string;
|
|
81630
81715
|
}[];
|
|
81631
81716
|
/** Warnings associated with the [entrance](https://docs.seam.co/latest/capability-guides/access-systems/retrieving-entrance-details). */
|
|
81632
|
-
warnings: {
|
|
81717
|
+
warnings: ({
|
|
81633
81718
|
/** Date and time at which Seam created the warning. */
|
|
81634
81719
|
created_at: string;
|
|
81635
81720
|
/** Detailed description of the warning. Provides insights into the issue and potentially how to rectify it. */
|
|
81636
81721
|
message: string;
|
|
81637
81722
|
/** Unique identifier of the type of warning. Enables quick recognition and categorization of the issue. */
|
|
81638
81723
|
warning_code: 'salto_ks_entrance_access_code_support_removed';
|
|
81639
|
-
}
|
|
81724
|
+
} | {
|
|
81725
|
+
/** Date and time at which Seam created the warning. */
|
|
81726
|
+
created_at: string;
|
|
81727
|
+
/** Detailed description of the warning. Provides insights into the issue and potentially how to rectify it. */
|
|
81728
|
+
message: string;
|
|
81729
|
+
/** Unique identifier of the type of warning. Enables quick recognition and categorization of the issue. */
|
|
81730
|
+
warning_code: 'entrance_shares_zone';
|
|
81731
|
+
})[];
|
|
81640
81732
|
/** Latch-specific metadata associated with the [entrance](https://docs.seam.co/latest/capability-guides/access-systems/retrieving-entrance-details). */
|
|
81641
81733
|
latch_metadata?: {
|
|
81642
81734
|
/** Accessibility type in the Latch access system. */
|
|
@@ -82679,13 +82771,13 @@ type Routes = {
|
|
|
82679
82771
|
name: string;
|
|
82680
82772
|
/**
|
|
82681
82773
|
* @deprecated Use `external_type`.*/
|
|
82682
|
-
access_group_type: 'pti_unit' | 'pti_access_level' | 'salto_ks_access_group' | 'brivo_group' | 'salto_space_group' | 'dormakaba_community_access_group' | 'dormakaba_ambiance_access_group';
|
|
82774
|
+
access_group_type: 'pti_unit' | 'pti_access_level' | 'salto_ks_access_group' | 'brivo_group' | 'salto_space_group' | 'dormakaba_community_access_group' | 'dormakaba_ambiance_access_group' | 'avigilon_alta_group';
|
|
82683
82775
|
/**
|
|
82684
82776
|
* @deprecated Use `external_type_display_name`.*/
|
|
82685
82777
|
access_group_type_display_name: string;
|
|
82686
82778
|
display_name: string;
|
|
82687
82779
|
/** Brand-specific terminology for the access group type. */
|
|
82688
|
-
external_type: 'pti_unit' | 'pti_access_level' | 'salto_ks_access_group' | 'brivo_group' | 'salto_space_group' | 'dormakaba_community_access_group' | 'dormakaba_ambiance_access_group';
|
|
82780
|
+
external_type: 'pti_unit' | 'pti_access_level' | 'salto_ks_access_group' | 'brivo_group' | 'salto_space_group' | 'dormakaba_community_access_group' | 'dormakaba_ambiance_access_group' | 'avigilon_alta_group';
|
|
82689
82781
|
/** Display name that corresponds to the brand-specific terminology for the access group type. */
|
|
82690
82782
|
external_type_display_name: string;
|
|
82691
82783
|
/** Date and time at which the access group was created. */
|
|
@@ -82863,13 +82955,13 @@ type Routes = {
|
|
|
82863
82955
|
name: string;
|
|
82864
82956
|
/**
|
|
82865
82957
|
* @deprecated Use `external_type`.*/
|
|
82866
|
-
access_group_type: 'pti_unit' | 'pti_access_level' | 'salto_ks_access_group' | 'brivo_group' | 'salto_space_group' | 'dormakaba_community_access_group' | 'dormakaba_ambiance_access_group';
|
|
82958
|
+
access_group_type: 'pti_unit' | 'pti_access_level' | 'salto_ks_access_group' | 'brivo_group' | 'salto_space_group' | 'dormakaba_community_access_group' | 'dormakaba_ambiance_access_group' | 'avigilon_alta_group';
|
|
82867
82959
|
/**
|
|
82868
82960
|
* @deprecated Use `external_type_display_name`.*/
|
|
82869
82961
|
access_group_type_display_name: string;
|
|
82870
82962
|
display_name: string;
|
|
82871
82963
|
/** Brand-specific terminology for the access group type. */
|
|
82872
|
-
external_type: 'pti_unit' | 'pti_access_level' | 'salto_ks_access_group' | 'brivo_group' | 'salto_space_group' | 'dormakaba_community_access_group' | 'dormakaba_ambiance_access_group';
|
|
82964
|
+
external_type: 'pti_unit' | 'pti_access_level' | 'salto_ks_access_group' | 'brivo_group' | 'salto_space_group' | 'dormakaba_community_access_group' | 'dormakaba_ambiance_access_group' | 'avigilon_alta_group';
|
|
82873
82965
|
/** Display name that corresponds to the brand-specific terminology for the access group type. */
|
|
82874
82966
|
external_type_display_name: string;
|
|
82875
82967
|
/** Date and time at which the access group was created. */
|
|
@@ -83049,14 +83141,21 @@ type Routes = {
|
|
|
83049
83141
|
message: string;
|
|
83050
83142
|
}[];
|
|
83051
83143
|
/** Warnings associated with the [entrance](https://docs.seam.co/latest/capability-guides/access-systems/retrieving-entrance-details). */
|
|
83052
|
-
warnings: {
|
|
83144
|
+
warnings: ({
|
|
83053
83145
|
/** Date and time at which Seam created the warning. */
|
|
83054
83146
|
created_at: string;
|
|
83055
83147
|
/** Detailed description of the warning. Provides insights into the issue and potentially how to rectify it. */
|
|
83056
83148
|
message: string;
|
|
83057
83149
|
/** Unique identifier of the type of warning. Enables quick recognition and categorization of the issue. */
|
|
83058
83150
|
warning_code: 'salto_ks_entrance_access_code_support_removed';
|
|
83059
|
-
}
|
|
83151
|
+
} | {
|
|
83152
|
+
/** Date and time at which Seam created the warning. */
|
|
83153
|
+
created_at: string;
|
|
83154
|
+
/** Detailed description of the warning. Provides insights into the issue and potentially how to rectify it. */
|
|
83155
|
+
message: string;
|
|
83156
|
+
/** Unique identifier of the type of warning. Enables quick recognition and categorization of the issue. */
|
|
83157
|
+
warning_code: 'entrance_shares_zone';
|
|
83158
|
+
})[];
|
|
83060
83159
|
/** Latch-specific metadata associated with the [entrance](https://docs.seam.co/latest/capability-guides/access-systems/retrieving-entrance-details). */
|
|
83061
83160
|
latch_metadata?: {
|
|
83062
83161
|
/** Accessibility type in the Latch access system. */
|
|
@@ -83496,13 +83595,13 @@ type Routes = {
|
|
|
83496
83595
|
name: string;
|
|
83497
83596
|
/**
|
|
83498
83597
|
* @deprecated Use `external_type`.*/
|
|
83499
|
-
access_group_type: 'pti_unit' | 'pti_access_level' | 'salto_ks_access_group' | 'brivo_group' | 'salto_space_group' | 'dormakaba_community_access_group' | 'dormakaba_ambiance_access_group';
|
|
83598
|
+
access_group_type: 'pti_unit' | 'pti_access_level' | 'salto_ks_access_group' | 'brivo_group' | 'salto_space_group' | 'dormakaba_community_access_group' | 'dormakaba_ambiance_access_group' | 'avigilon_alta_group';
|
|
83500
83599
|
/**
|
|
83501
83600
|
* @deprecated Use `external_type_display_name`.*/
|
|
83502
83601
|
access_group_type_display_name: string;
|
|
83503
83602
|
display_name: string;
|
|
83504
83603
|
/** Brand-specific terminology for the access group type. */
|
|
83505
|
-
external_type: 'pti_unit' | 'pti_access_level' | 'salto_ks_access_group' | 'brivo_group' | 'salto_space_group' | 'dormakaba_community_access_group' | 'dormakaba_ambiance_access_group';
|
|
83604
|
+
external_type: 'pti_unit' | 'pti_access_level' | 'salto_ks_access_group' | 'brivo_group' | 'salto_space_group' | 'dormakaba_community_access_group' | 'dormakaba_ambiance_access_group' | 'avigilon_alta_group';
|
|
83506
83605
|
/** Display name that corresponds to the brand-specific terminology for the access group type. */
|
|
83507
83606
|
external_type_display_name: string;
|
|
83508
83607
|
/** Date and time at which the access group was created. */
|
|
@@ -83678,13 +83777,13 @@ type Routes = {
|
|
|
83678
83777
|
name: string;
|
|
83679
83778
|
/**
|
|
83680
83779
|
* @deprecated Use `external_type`.*/
|
|
83681
|
-
access_group_type: 'pti_unit' | 'pti_access_level' | 'salto_ks_access_group' | 'brivo_group' | 'salto_space_group' | 'dormakaba_community_access_group' | 'dormakaba_ambiance_access_group';
|
|
83780
|
+
access_group_type: 'pti_unit' | 'pti_access_level' | 'salto_ks_access_group' | 'brivo_group' | 'salto_space_group' | 'dormakaba_community_access_group' | 'dormakaba_ambiance_access_group' | 'avigilon_alta_group';
|
|
83682
83781
|
/**
|
|
83683
83782
|
* @deprecated Use `external_type_display_name`.*/
|
|
83684
83783
|
access_group_type_display_name: string;
|
|
83685
83784
|
display_name: string;
|
|
83686
83785
|
/** Brand-specific terminology for the access group type. */
|
|
83687
|
-
external_type: 'pti_unit' | 'pti_access_level' | 'salto_ks_access_group' | 'brivo_group' | 'salto_space_group' | 'dormakaba_community_access_group' | 'dormakaba_ambiance_access_group';
|
|
83786
|
+
external_type: 'pti_unit' | 'pti_access_level' | 'salto_ks_access_group' | 'brivo_group' | 'salto_space_group' | 'dormakaba_community_access_group' | 'dormakaba_ambiance_access_group' | 'avigilon_alta_group';
|
|
83688
83787
|
/** Display name that corresponds to the brand-specific terminology for the access group type. */
|
|
83689
83788
|
external_type_display_name: string;
|
|
83690
83789
|
/** Date and time at which the access group was created. */
|
|
@@ -84770,14 +84869,21 @@ type Routes = {
|
|
|
84770
84869
|
message: string;
|
|
84771
84870
|
}[];
|
|
84772
84871
|
/** Warnings associated with the [entrance](https://docs.seam.co/latest/capability-guides/access-systems/retrieving-entrance-details). */
|
|
84773
|
-
warnings: {
|
|
84872
|
+
warnings: ({
|
|
84774
84873
|
/** Date and time at which Seam created the warning. */
|
|
84775
84874
|
created_at: string;
|
|
84776
84875
|
/** Detailed description of the warning. Provides insights into the issue and potentially how to rectify it. */
|
|
84777
84876
|
message: string;
|
|
84778
84877
|
/** Unique identifier of the type of warning. Enables quick recognition and categorization of the issue. */
|
|
84779
84878
|
warning_code: 'salto_ks_entrance_access_code_support_removed';
|
|
84780
|
-
}
|
|
84879
|
+
} | {
|
|
84880
|
+
/** Date and time at which Seam created the warning. */
|
|
84881
|
+
created_at: string;
|
|
84882
|
+
/** Detailed description of the warning. Provides insights into the issue and potentially how to rectify it. */
|
|
84883
|
+
message: string;
|
|
84884
|
+
/** Unique identifier of the type of warning. Enables quick recognition and categorization of the issue. */
|
|
84885
|
+
warning_code: 'entrance_shares_zone';
|
|
84886
|
+
})[];
|
|
84781
84887
|
/** Latch-specific metadata associated with the [entrance](https://docs.seam.co/latest/capability-guides/access-systems/retrieving-entrance-details). */
|
|
84782
84888
|
latch_metadata?: {
|
|
84783
84889
|
/** Accessibility type in the Latch access system. */
|
|
@@ -88432,14 +88538,21 @@ type Routes = {
|
|
|
88432
88538
|
message: string;
|
|
88433
88539
|
}[];
|
|
88434
88540
|
/** Warnings associated with the [entrance](https://docs.seam.co/latest/capability-guides/access-systems/retrieving-entrance-details). */
|
|
88435
|
-
warnings: {
|
|
88541
|
+
warnings: ({
|
|
88436
88542
|
/** Date and time at which Seam created the warning. */
|
|
88437
88543
|
created_at: string;
|
|
88438
88544
|
/** Detailed description of the warning. Provides insights into the issue and potentially how to rectify it. */
|
|
88439
88545
|
message: string;
|
|
88440
88546
|
/** Unique identifier of the type of warning. Enables quick recognition and categorization of the issue. */
|
|
88441
88547
|
warning_code: 'salto_ks_entrance_access_code_support_removed';
|
|
88442
|
-
}
|
|
88548
|
+
} | {
|
|
88549
|
+
/** Date and time at which Seam created the warning. */
|
|
88550
|
+
created_at: string;
|
|
88551
|
+
/** Detailed description of the warning. Provides insights into the issue and potentially how to rectify it. */
|
|
88552
|
+
message: string;
|
|
88553
|
+
/** Unique identifier of the type of warning. Enables quick recognition and categorization of the issue. */
|
|
88554
|
+
warning_code: 'entrance_shares_zone';
|
|
88555
|
+
})[];
|
|
88443
88556
|
/** Latch-specific metadata associated with the [entrance](https://docs.seam.co/latest/capability-guides/access-systems/retrieving-entrance-details). */
|
|
88444
88557
|
latch_metadata?: {
|
|
88445
88558
|
/** Accessibility type in the Latch access system. */
|
|
@@ -88639,14 +88752,21 @@ type Routes = {
|
|
|
88639
88752
|
message: string;
|
|
88640
88753
|
}[];
|
|
88641
88754
|
/** Warnings associated with the [entrance](https://docs.seam.co/latest/capability-guides/access-systems/retrieving-entrance-details). */
|
|
88642
|
-
warnings: {
|
|
88755
|
+
warnings: ({
|
|
88643
88756
|
/** Date and time at which Seam created the warning. */
|
|
88644
88757
|
created_at: string;
|
|
88645
88758
|
/** Detailed description of the warning. Provides insights into the issue and potentially how to rectify it. */
|
|
88646
88759
|
message: string;
|
|
88647
88760
|
/** Unique identifier of the type of warning. Enables quick recognition and categorization of the issue. */
|
|
88648
88761
|
warning_code: 'salto_ks_entrance_access_code_support_removed';
|
|
88649
|
-
}
|
|
88762
|
+
} | {
|
|
88763
|
+
/** Date and time at which Seam created the warning. */
|
|
88764
|
+
created_at: string;
|
|
88765
|
+
/** Detailed description of the warning. Provides insights into the issue and potentially how to rectify it. */
|
|
88766
|
+
message: string;
|
|
88767
|
+
/** Unique identifier of the type of warning. Enables quick recognition and categorization of the issue. */
|
|
88768
|
+
warning_code: 'entrance_shares_zone';
|
|
88769
|
+
})[];
|
|
88650
88770
|
/** Latch-specific metadata associated with the [entrance](https://docs.seam.co/latest/capability-guides/access-systems/retrieving-entrance-details). */
|
|
88651
88771
|
latch_metadata?: {
|
|
88652
88772
|
/** Accessibility type in the Latch access system. */
|
|
@@ -91640,14 +91760,21 @@ type Routes = {
|
|
|
91640
91760
|
message: string;
|
|
91641
91761
|
}[];
|
|
91642
91762
|
/** Warnings associated with the [entrance](https://docs.seam.co/latest/capability-guides/access-systems/retrieving-entrance-details). */
|
|
91643
|
-
warnings: {
|
|
91763
|
+
warnings: ({
|
|
91644
91764
|
/** Date and time at which Seam created the warning. */
|
|
91645
91765
|
created_at: string;
|
|
91646
91766
|
/** Detailed description of the warning. Provides insights into the issue and potentially how to rectify it. */
|
|
91647
91767
|
message: string;
|
|
91648
91768
|
/** Unique identifier of the type of warning. Enables quick recognition and categorization of the issue. */
|
|
91649
91769
|
warning_code: 'salto_ks_entrance_access_code_support_removed';
|
|
91650
|
-
}
|
|
91770
|
+
} | {
|
|
91771
|
+
/** Date and time at which Seam created the warning. */
|
|
91772
|
+
created_at: string;
|
|
91773
|
+
/** Detailed description of the warning. Provides insights into the issue and potentially how to rectify it. */
|
|
91774
|
+
message: string;
|
|
91775
|
+
/** Unique identifier of the type of warning. Enables quick recognition and categorization of the issue. */
|
|
91776
|
+
warning_code: 'entrance_shares_zone';
|
|
91777
|
+
})[];
|
|
91651
91778
|
/** Latch-specific metadata associated with the [entrance](https://docs.seam.co/latest/capability-guides/access-systems/retrieving-entrance-details). */
|
|
91652
91779
|
latch_metadata?: {
|
|
91653
91780
|
/** Accessibility type in the Latch access system. */
|
|
@@ -133333,14 +133460,21 @@ type Routes = {
|
|
|
133333
133460
|
message: string;
|
|
133334
133461
|
}[];
|
|
133335
133462
|
/** Warnings associated with the [entrance](https://docs.seam.co/latest/capability-guides/access-systems/retrieving-entrance-details). */
|
|
133336
|
-
warnings: {
|
|
133463
|
+
warnings: ({
|
|
133337
133464
|
/** Date and time at which Seam created the warning. */
|
|
133338
133465
|
created_at: string;
|
|
133339
133466
|
/** Detailed description of the warning. Provides insights into the issue and potentially how to rectify it. */
|
|
133340
133467
|
message: string;
|
|
133341
133468
|
/** Unique identifier of the type of warning. Enables quick recognition and categorization of the issue. */
|
|
133342
133469
|
warning_code: 'salto_ks_entrance_access_code_support_removed';
|
|
133343
|
-
}
|
|
133470
|
+
} | {
|
|
133471
|
+
/** Date and time at which Seam created the warning. */
|
|
133472
|
+
created_at: string;
|
|
133473
|
+
/** Detailed description of the warning. Provides insights into the issue and potentially how to rectify it. */
|
|
133474
|
+
message: string;
|
|
133475
|
+
/** Unique identifier of the type of warning. Enables quick recognition and categorization of the issue. */
|
|
133476
|
+
warning_code: 'entrance_shares_zone';
|
|
133477
|
+
})[];
|
|
133344
133478
|
/** Latch-specific metadata associated with the [entrance](https://docs.seam.co/latest/capability-guides/access-systems/retrieving-entrance-details). */
|
|
133345
133479
|
latch_metadata?: {
|
|
133346
133480
|
/** Accessibility type in the Latch access system. */
|
|
@@ -135160,14 +135294,21 @@ type Routes = {
|
|
|
135160
135294
|
message: string;
|
|
135161
135295
|
}[];
|
|
135162
135296
|
/** Warnings associated with the [entrance](https://docs.seam.co/latest/capability-guides/access-systems/retrieving-entrance-details). */
|
|
135163
|
-
warnings: {
|
|
135297
|
+
warnings: ({
|
|
135164
135298
|
/** Date and time at which Seam created the warning. */
|
|
135165
135299
|
created_at: string;
|
|
135166
135300
|
/** Detailed description of the warning. Provides insights into the issue and potentially how to rectify it. */
|
|
135167
135301
|
message: string;
|
|
135168
135302
|
/** Unique identifier of the type of warning. Enables quick recognition and categorization of the issue. */
|
|
135169
135303
|
warning_code: 'salto_ks_entrance_access_code_support_removed';
|
|
135170
|
-
}
|
|
135304
|
+
} | {
|
|
135305
|
+
/** Date and time at which Seam created the warning. */
|
|
135306
|
+
created_at: string;
|
|
135307
|
+
/** Detailed description of the warning. Provides insights into the issue and potentially how to rectify it. */
|
|
135308
|
+
message: string;
|
|
135309
|
+
/** Unique identifier of the type of warning. Enables quick recognition and categorization of the issue. */
|
|
135310
|
+
warning_code: 'entrance_shares_zone';
|
|
135311
|
+
})[];
|
|
135171
135312
|
/** Latch-specific metadata associated with the [entrance](https://docs.seam.co/latest/capability-guides/access-systems/retrieving-entrance-details). */
|
|
135172
135313
|
latch_metadata?: {
|
|
135173
135314
|
/** Accessibility type in the Latch access system. */
|
|
@@ -155785,14 +155926,21 @@ type Routes = {
|
|
|
155785
155926
|
message: string;
|
|
155786
155927
|
}[];
|
|
155787
155928
|
/** Warnings associated with the [entrance](https://docs.seam.co/latest/capability-guides/access-systems/retrieving-entrance-details). */
|
|
155788
|
-
warnings: {
|
|
155929
|
+
warnings: ({
|
|
155789
155930
|
/** Date and time at which Seam created the warning. */
|
|
155790
155931
|
created_at: string;
|
|
155791
155932
|
/** Detailed description of the warning. Provides insights into the issue and potentially how to rectify it. */
|
|
155792
155933
|
message: string;
|
|
155793
155934
|
/** Unique identifier of the type of warning. Enables quick recognition and categorization of the issue. */
|
|
155794
155935
|
warning_code: 'salto_ks_entrance_access_code_support_removed';
|
|
155795
|
-
}
|
|
155936
|
+
} | {
|
|
155937
|
+
/** Date and time at which Seam created the warning. */
|
|
155938
|
+
created_at: string;
|
|
155939
|
+
/** Detailed description of the warning. Provides insights into the issue and potentially how to rectify it. */
|
|
155940
|
+
message: string;
|
|
155941
|
+
/** Unique identifier of the type of warning. Enables quick recognition and categorization of the issue. */
|
|
155942
|
+
warning_code: 'entrance_shares_zone';
|
|
155943
|
+
})[];
|
|
155796
155944
|
/** Latch-specific metadata associated with the [entrance](https://docs.seam.co/latest/capability-guides/access-systems/retrieving-entrance-details). */
|
|
155797
155945
|
latch_metadata?: {
|
|
155798
155946
|
/** Accessibility type in the Latch access system. */
|
|
@@ -158272,14 +158420,21 @@ type Routes = {
|
|
|
158272
158420
|
message: string;
|
|
158273
158421
|
}[];
|
|
158274
158422
|
/** Warnings associated with the [entrance](https://docs.seam.co/latest/capability-guides/access-systems/retrieving-entrance-details). */
|
|
158275
|
-
warnings: {
|
|
158423
|
+
warnings: ({
|
|
158276
158424
|
/** Date and time at which Seam created the warning. */
|
|
158277
158425
|
created_at: string;
|
|
158278
158426
|
/** Detailed description of the warning. Provides insights into the issue and potentially how to rectify it. */
|
|
158279
158427
|
message: string;
|
|
158280
158428
|
/** Unique identifier of the type of warning. Enables quick recognition and categorization of the issue. */
|
|
158281
158429
|
warning_code: 'salto_ks_entrance_access_code_support_removed';
|
|
158282
|
-
}
|
|
158430
|
+
} | {
|
|
158431
|
+
/** Date and time at which Seam created the warning. */
|
|
158432
|
+
created_at: string;
|
|
158433
|
+
/** Detailed description of the warning. Provides insights into the issue and potentially how to rectify it. */
|
|
158434
|
+
message: string;
|
|
158435
|
+
/** Unique identifier of the type of warning. Enables quick recognition and categorization of the issue. */
|
|
158436
|
+
warning_code: 'entrance_shares_zone';
|
|
158437
|
+
})[];
|
|
158283
158438
|
/** Latch-specific metadata associated with the [entrance](https://docs.seam.co/latest/capability-guides/access-systems/retrieving-entrance-details). */
|
|
158284
158439
|
latch_metadata?: {
|
|
158285
158440
|
/** Accessibility type in the Latch access system. */
|
|
@@ -158791,13 +158946,13 @@ type Routes = {
|
|
|
158791
158946
|
name: string;
|
|
158792
158947
|
/**
|
|
158793
158948
|
* @deprecated Use `external_type`.*/
|
|
158794
|
-
access_group_type: 'pti_unit' | 'pti_access_level' | 'salto_ks_access_group' | 'brivo_group' | 'salto_space_group' | 'dormakaba_community_access_group' | 'dormakaba_ambiance_access_group';
|
|
158949
|
+
access_group_type: 'pti_unit' | 'pti_access_level' | 'salto_ks_access_group' | 'brivo_group' | 'salto_space_group' | 'dormakaba_community_access_group' | 'dormakaba_ambiance_access_group' | 'avigilon_alta_group';
|
|
158795
158950
|
/**
|
|
158796
158951
|
* @deprecated Use `external_type_display_name`.*/
|
|
158797
158952
|
access_group_type_display_name: string;
|
|
158798
158953
|
display_name: string;
|
|
158799
158954
|
/** Brand-specific terminology for the access group type. */
|
|
158800
|
-
external_type: 'pti_unit' | 'pti_access_level' | 'salto_ks_access_group' | 'brivo_group' | 'salto_space_group' | 'dormakaba_community_access_group' | 'dormakaba_ambiance_access_group';
|
|
158955
|
+
external_type: 'pti_unit' | 'pti_access_level' | 'salto_ks_access_group' | 'brivo_group' | 'salto_space_group' | 'dormakaba_community_access_group' | 'dormakaba_ambiance_access_group' | 'avigilon_alta_group';
|
|
158801
158956
|
/** Display name that corresponds to the brand-specific terminology for the access group type. */
|
|
158802
158957
|
external_type_display_name: string;
|
|
158803
158958
|
/** Date and time at which the access group was created. */
|
|
@@ -160578,13 +160733,13 @@ type Routes = {
|
|
|
160578
160733
|
name: string;
|
|
160579
160734
|
/**
|
|
160580
160735
|
* @deprecated Use `external_type`.*/
|
|
160581
|
-
access_group_type: 'pti_unit' | 'pti_access_level' | 'salto_ks_access_group' | 'brivo_group' | 'salto_space_group' | 'dormakaba_community_access_group' | 'dormakaba_ambiance_access_group';
|
|
160736
|
+
access_group_type: 'pti_unit' | 'pti_access_level' | 'salto_ks_access_group' | 'brivo_group' | 'salto_space_group' | 'dormakaba_community_access_group' | 'dormakaba_ambiance_access_group' | 'avigilon_alta_group';
|
|
160582
160737
|
/**
|
|
160583
160738
|
* @deprecated Use `external_type_display_name`.*/
|
|
160584
160739
|
access_group_type_display_name: string;
|
|
160585
160740
|
display_name: string;
|
|
160586
160741
|
/** Brand-specific terminology for the access group type. */
|
|
160587
|
-
external_type: 'pti_unit' | 'pti_access_level' | 'salto_ks_access_group' | 'brivo_group' | 'salto_space_group' | 'dormakaba_community_access_group' | 'dormakaba_ambiance_access_group';
|
|
160742
|
+
external_type: 'pti_unit' | 'pti_access_level' | 'salto_ks_access_group' | 'brivo_group' | 'salto_space_group' | 'dormakaba_community_access_group' | 'dormakaba_ambiance_access_group' | 'avigilon_alta_group';
|
|
160588
160743
|
/** Display name that corresponds to the brand-specific terminology for the access group type. */
|
|
160589
160744
|
external_type_display_name: string;
|
|
160590
160745
|
/** Date and time at which the access group was created. */
|
|
@@ -165237,6 +165392,10 @@ type Routes = {
|
|
|
165237
165392
|
ends_at?: (string | null) | undefined;
|
|
165238
165393
|
/** Current status of the access code within the operational lifecycle. `set` indicates that the code is active and operational. `unset` indicates that the code exists on the provider but is not usable on the device. */
|
|
165239
165394
|
status: 'set' | 'unset';
|
|
165395
|
+
/** Indicates that Seam cannot convert this unmanaged access code to a managed access code. Some providers do not support management of unmanaged access codes through API integrations. */
|
|
165396
|
+
cannot_be_managed?: true | undefined;
|
|
165397
|
+
/** Indicates that Seam cannot delete this unmanaged access code through the provider. If this access code needs to be deleted, it will only be possible from the manufacturer app. */
|
|
165398
|
+
cannot_delete_unmanaged_access_code?: true | undefined;
|
|
165240
165399
|
/** Metadata for a dormakaba Oracode unmanaged access code. Only present for unmanaged access codes from dormakaba Oracode devices. */
|
|
165241
165400
|
dormakaba_oracode_metadata?: ({
|
|
165242
165401
|
/** Dormakaba Oracode stay ID associated with this access code. */
|