@seamapi/types 1.662.0 → 1.664.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 +27 -2
- package/dist/connect.cjs.map +1 -1
- package/dist/connect.d.cts +70 -0
- package/dist/index.cjs +27 -2
- package/dist/index.cjs.map +1 -1
- package/lib/seam/connect/models/acs/acs-users/acs-user.d.ts +10 -0
- package/lib/seam/connect/models/acs/metadata/salto-space.d.ts +3 -0
- package/lib/seam/connect/models/acs/metadata/salto-space.js +2 -1
- package/lib/seam/connect/models/acs/metadata/salto-space.js.map +1 -1
- package/lib/seam/connect/models/batch.d.ts +14 -0
- package/lib/seam/connect/models/customer/customer-portal.d.ts +14 -0
- package/lib/seam/connect/models/customer/customer-portal.js +5 -0
- package/lib/seam/connect/models/customer/customer-portal.js.map +1 -1
- package/lib/seam/connect/openapi.d.ts +24 -0
- package/lib/seam/connect/openapi.js +24 -0
- package/lib/seam/connect/openapi.js.map +1 -1
- package/lib/seam/connect/route-types.d.ts +22 -0
- package/package.json +1 -1
- package/src/lib/seam/connect/models/acs/metadata/salto-space.ts +2 -1
- package/src/lib/seam/connect/models/customer/customer-portal.ts +7 -0
- package/src/lib/seam/connect/openapi.ts +27 -0
- package/src/lib/seam/connect/route-types.ts +22 -0
package/dist/connect.d.cts
CHANGED
|
@@ -5574,10 +5574,13 @@ declare const acs_user: z.ZodObject<{
|
|
|
5574
5574
|
last_successful_sync_at: z.ZodNullable<z.ZodString>;
|
|
5575
5575
|
connected_account_id: z.ZodString;
|
|
5576
5576
|
salto_space_metadata: z.ZodOptional<z.ZodObject<{
|
|
5577
|
+
user_id: z.ZodOptional<z.ZodString>;
|
|
5577
5578
|
audit_openings: z.ZodOptional<z.ZodBoolean>;
|
|
5578
5579
|
}, "strip", z.ZodTypeAny, {
|
|
5580
|
+
user_id?: string | undefined;
|
|
5579
5581
|
audit_openings?: boolean | undefined;
|
|
5580
5582
|
}, {
|
|
5583
|
+
user_id?: string | undefined;
|
|
5581
5584
|
audit_openings?: boolean | undefined;
|
|
5582
5585
|
}>>;
|
|
5583
5586
|
} & {
|
|
@@ -5643,6 +5646,7 @@ declare const acs_user: z.ZodObject<{
|
|
|
5643
5646
|
external_type?: "pti_user" | "brivo_user" | "hid_credential_manager_user" | "salto_site_user" | "latch_user" | "dormakaba_community_user" | "salto_space_user" | undefined;
|
|
5644
5647
|
external_type_display_name?: string | undefined;
|
|
5645
5648
|
salto_space_metadata?: {
|
|
5649
|
+
user_id?: string | undefined;
|
|
5646
5650
|
audit_openings?: boolean | undefined;
|
|
5647
5651
|
} | undefined;
|
|
5648
5652
|
email_address?: string | undefined;
|
|
@@ -5773,6 +5777,7 @@ declare const acs_user: z.ZodObject<{
|
|
|
5773
5777
|
external_type?: "pti_user" | "brivo_user" | "hid_credential_manager_user" | "salto_site_user" | "latch_user" | "dormakaba_community_user" | "salto_space_user" | undefined;
|
|
5774
5778
|
external_type_display_name?: string | undefined;
|
|
5775
5779
|
salto_space_metadata?: {
|
|
5780
|
+
user_id?: string | undefined;
|
|
5776
5781
|
audit_openings?: boolean | undefined;
|
|
5777
5782
|
} | undefined;
|
|
5778
5783
|
email_address?: string | undefined;
|
|
@@ -6236,10 +6241,13 @@ declare const unmanaged_acs_user: z.ZodObject<{
|
|
|
6236
6241
|
last_successful_sync_at: z.ZodNullable<z.ZodString>;
|
|
6237
6242
|
connected_account_id: z.ZodString;
|
|
6238
6243
|
salto_space_metadata: z.ZodOptional<z.ZodObject<{
|
|
6244
|
+
user_id: z.ZodOptional<z.ZodString>;
|
|
6239
6245
|
audit_openings: z.ZodOptional<z.ZodBoolean>;
|
|
6240
6246
|
}, "strip", z.ZodTypeAny, {
|
|
6247
|
+
user_id?: string | undefined;
|
|
6241
6248
|
audit_openings?: boolean | undefined;
|
|
6242
6249
|
}, {
|
|
6250
|
+
user_id?: string | undefined;
|
|
6243
6251
|
audit_openings?: boolean | undefined;
|
|
6244
6252
|
}>>;
|
|
6245
6253
|
} & {
|
|
@@ -6305,6 +6313,7 @@ declare const unmanaged_acs_user: z.ZodObject<{
|
|
|
6305
6313
|
external_type?: "pti_user" | "brivo_user" | "hid_credential_manager_user" | "salto_site_user" | "latch_user" | "dormakaba_community_user" | "salto_space_user" | undefined;
|
|
6306
6314
|
external_type_display_name?: string | undefined;
|
|
6307
6315
|
salto_space_metadata?: {
|
|
6316
|
+
user_id?: string | undefined;
|
|
6308
6317
|
audit_openings?: boolean | undefined;
|
|
6309
6318
|
} | undefined;
|
|
6310
6319
|
email_address?: string | undefined;
|
|
@@ -6435,6 +6444,7 @@ declare const unmanaged_acs_user: z.ZodObject<{
|
|
|
6435
6444
|
external_type?: "pti_user" | "brivo_user" | "hid_credential_manager_user" | "salto_site_user" | "latch_user" | "dormakaba_community_user" | "salto_space_user" | undefined;
|
|
6436
6445
|
external_type_display_name?: string | undefined;
|
|
6437
6446
|
salto_space_metadata?: {
|
|
6447
|
+
user_id?: string | undefined;
|
|
6438
6448
|
audit_openings?: boolean | undefined;
|
|
6439
6449
|
} | undefined;
|
|
6440
6450
|
email_address?: string | undefined;
|
|
@@ -16145,10 +16155,13 @@ declare const batch: z.ZodObject<{
|
|
|
16145
16155
|
last_successful_sync_at: z.ZodNullable<z.ZodString>;
|
|
16146
16156
|
connected_account_id: z.ZodString;
|
|
16147
16157
|
salto_space_metadata: z.ZodOptional<z.ZodObject<{
|
|
16158
|
+
user_id: z.ZodOptional<z.ZodString>;
|
|
16148
16159
|
audit_openings: z.ZodOptional<z.ZodBoolean>;
|
|
16149
16160
|
}, "strip", z.ZodTypeAny, {
|
|
16161
|
+
user_id?: string | undefined;
|
|
16150
16162
|
audit_openings?: boolean | undefined;
|
|
16151
16163
|
}, {
|
|
16164
|
+
user_id?: string | undefined;
|
|
16152
16165
|
audit_openings?: boolean | undefined;
|
|
16153
16166
|
}>>;
|
|
16154
16167
|
} & {
|
|
@@ -16214,6 +16227,7 @@ declare const batch: z.ZodObject<{
|
|
|
16214
16227
|
external_type?: "pti_user" | "brivo_user" | "hid_credential_manager_user" | "salto_site_user" | "latch_user" | "dormakaba_community_user" | "salto_space_user" | undefined;
|
|
16215
16228
|
external_type_display_name?: string | undefined;
|
|
16216
16229
|
salto_space_metadata?: {
|
|
16230
|
+
user_id?: string | undefined;
|
|
16217
16231
|
audit_openings?: boolean | undefined;
|
|
16218
16232
|
} | undefined;
|
|
16219
16233
|
email_address?: string | undefined;
|
|
@@ -16344,6 +16358,7 @@ declare const batch: z.ZodObject<{
|
|
|
16344
16358
|
external_type?: "pti_user" | "brivo_user" | "hid_credential_manager_user" | "salto_site_user" | "latch_user" | "dormakaba_community_user" | "salto_space_user" | undefined;
|
|
16345
16359
|
external_type_display_name?: string | undefined;
|
|
16346
16360
|
salto_space_metadata?: {
|
|
16361
|
+
user_id?: string | undefined;
|
|
16347
16362
|
audit_openings?: boolean | undefined;
|
|
16348
16363
|
} | undefined;
|
|
16349
16364
|
email_address?: string | undefined;
|
|
@@ -21396,10 +21411,13 @@ declare const batch: z.ZodObject<{
|
|
|
21396
21411
|
last_successful_sync_at: z.ZodNullable<z.ZodString>;
|
|
21397
21412
|
connected_account_id: z.ZodString;
|
|
21398
21413
|
salto_space_metadata: z.ZodOptional<z.ZodObject<{
|
|
21414
|
+
user_id: z.ZodOptional<z.ZodString>;
|
|
21399
21415
|
audit_openings: z.ZodOptional<z.ZodBoolean>;
|
|
21400
21416
|
}, "strip", z.ZodTypeAny, {
|
|
21417
|
+
user_id?: string | undefined;
|
|
21401
21418
|
audit_openings?: boolean | undefined;
|
|
21402
21419
|
}, {
|
|
21420
|
+
user_id?: string | undefined;
|
|
21403
21421
|
audit_openings?: boolean | undefined;
|
|
21404
21422
|
}>>;
|
|
21405
21423
|
} & {
|
|
@@ -21465,6 +21483,7 @@ declare const batch: z.ZodObject<{
|
|
|
21465
21483
|
external_type?: "pti_user" | "brivo_user" | "hid_credential_manager_user" | "salto_site_user" | "latch_user" | "dormakaba_community_user" | "salto_space_user" | undefined;
|
|
21466
21484
|
external_type_display_name?: string | undefined;
|
|
21467
21485
|
salto_space_metadata?: {
|
|
21486
|
+
user_id?: string | undefined;
|
|
21468
21487
|
audit_openings?: boolean | undefined;
|
|
21469
21488
|
} | undefined;
|
|
21470
21489
|
email_address?: string | undefined;
|
|
@@ -21595,6 +21614,7 @@ declare const batch: z.ZodObject<{
|
|
|
21595
21614
|
external_type?: "pti_user" | "brivo_user" | "hid_credential_manager_user" | "salto_site_user" | "latch_user" | "dormakaba_community_user" | "salto_space_user" | undefined;
|
|
21596
21615
|
external_type_display_name?: string | undefined;
|
|
21597
21616
|
salto_space_metadata?: {
|
|
21617
|
+
user_id?: string | undefined;
|
|
21598
21618
|
audit_openings?: boolean | undefined;
|
|
21599
21619
|
} | undefined;
|
|
21600
21620
|
email_address?: string | undefined;
|
|
@@ -32755,6 +32775,7 @@ declare const batch: z.ZodObject<{
|
|
|
32755
32775
|
external_type?: "pti_user" | "brivo_user" | "hid_credential_manager_user" | "salto_site_user" | "latch_user" | "dormakaba_community_user" | "salto_space_user" | undefined;
|
|
32756
32776
|
external_type_display_name?: string | undefined;
|
|
32757
32777
|
salto_space_metadata?: {
|
|
32778
|
+
user_id?: string | undefined;
|
|
32758
32779
|
audit_openings?: boolean | undefined;
|
|
32759
32780
|
} | undefined;
|
|
32760
32781
|
email_address?: string | undefined;
|
|
@@ -33804,6 +33825,7 @@ declare const batch: z.ZodObject<{
|
|
|
33804
33825
|
external_type?: "pti_user" | "brivo_user" | "hid_credential_manager_user" | "salto_site_user" | "latch_user" | "dormakaba_community_user" | "salto_space_user" | undefined;
|
|
33805
33826
|
external_type_display_name?: string | undefined;
|
|
33806
33827
|
salto_space_metadata?: {
|
|
33828
|
+
user_id?: string | undefined;
|
|
33807
33829
|
audit_openings?: boolean | undefined;
|
|
33808
33830
|
} | undefined;
|
|
33809
33831
|
email_address?: string | undefined;
|
|
@@ -36786,6 +36808,7 @@ declare const batch: z.ZodObject<{
|
|
|
36786
36808
|
external_type?: "pti_user" | "brivo_user" | "hid_credential_manager_user" | "salto_site_user" | "latch_user" | "dormakaba_community_user" | "salto_space_user" | undefined;
|
|
36787
36809
|
external_type_display_name?: string | undefined;
|
|
36788
36810
|
salto_space_metadata?: {
|
|
36811
|
+
user_id?: string | undefined;
|
|
36789
36812
|
audit_openings?: boolean | undefined;
|
|
36790
36813
|
} | undefined;
|
|
36791
36814
|
email_address?: string | undefined;
|
|
@@ -37835,6 +37858,7 @@ declare const batch: z.ZodObject<{
|
|
|
37835
37858
|
external_type?: "pti_user" | "brivo_user" | "hid_credential_manager_user" | "salto_site_user" | "latch_user" | "dormakaba_community_user" | "salto_space_user" | undefined;
|
|
37836
37859
|
external_type_display_name?: string | undefined;
|
|
37837
37860
|
salto_space_metadata?: {
|
|
37861
|
+
user_id?: string | undefined;
|
|
37838
37862
|
audit_openings?: boolean | undefined;
|
|
37839
37863
|
} | undefined;
|
|
37840
37864
|
email_address?: string | undefined;
|
|
@@ -54755,6 +54779,10 @@ declare const _default: {
|
|
|
54755
54779
|
description: string;
|
|
54756
54780
|
type: string;
|
|
54757
54781
|
};
|
|
54782
|
+
user_id: {
|
|
54783
|
+
description: string;
|
|
54784
|
+
type: string;
|
|
54785
|
+
};
|
|
54758
54786
|
};
|
|
54759
54787
|
type: string;
|
|
54760
54788
|
};
|
|
@@ -66794,6 +66822,10 @@ declare const _default: {
|
|
|
66794
66822
|
description: string;
|
|
66795
66823
|
type: string;
|
|
66796
66824
|
};
|
|
66825
|
+
user_id: {
|
|
66826
|
+
description: string;
|
|
66827
|
+
type: string;
|
|
66828
|
+
};
|
|
66797
66829
|
};
|
|
66798
66830
|
type: string;
|
|
66799
66831
|
};
|
|
@@ -85016,6 +85048,7 @@ declare const _default: {
|
|
|
85016
85048
|
features: {
|
|
85017
85049
|
configure: {
|
|
85018
85050
|
allow_access_automation_rule_customization: boolean;
|
|
85051
|
+
allow_climate_automation_rule_customization: boolean;
|
|
85019
85052
|
allow_instant_key_customization: boolean;
|
|
85020
85053
|
exclude: boolean;
|
|
85021
85054
|
};
|
|
@@ -85055,6 +85088,11 @@ declare const _default: {
|
|
|
85055
85088
|
description: string;
|
|
85056
85089
|
type: string;
|
|
85057
85090
|
};
|
|
85091
|
+
allow_climate_automation_rule_customization: {
|
|
85092
|
+
default: boolean;
|
|
85093
|
+
description: string;
|
|
85094
|
+
type: string;
|
|
85095
|
+
};
|
|
85058
85096
|
allow_instant_key_customization: {
|
|
85059
85097
|
default: boolean;
|
|
85060
85098
|
description: string;
|
|
@@ -97589,6 +97627,11 @@ declare const _default: {
|
|
|
97589
97627
|
description: string;
|
|
97590
97628
|
type: string;
|
|
97591
97629
|
};
|
|
97630
|
+
allow_climate_automation_rule_customization: {
|
|
97631
|
+
default: boolean;
|
|
97632
|
+
description: string;
|
|
97633
|
+
type: string;
|
|
97634
|
+
};
|
|
97592
97635
|
allow_instant_key_customization: {
|
|
97593
97636
|
default: boolean;
|
|
97594
97637
|
description: string;
|
|
@@ -97995,6 +98038,11 @@ declare const _default: {
|
|
|
97995
98038
|
description: string;
|
|
97996
98039
|
type: string;
|
|
97997
98040
|
};
|
|
98041
|
+
allow_climate_automation_rule_customization: {
|
|
98042
|
+
default: boolean;
|
|
98043
|
+
description: string;
|
|
98044
|
+
type: string;
|
|
98045
|
+
};
|
|
97998
98046
|
allow_instant_key_customization: {
|
|
97999
98047
|
default: boolean;
|
|
98000
98048
|
description: string;
|
|
@@ -128544,6 +128592,8 @@ type Routes = {
|
|
|
128544
128592
|
connected_account_id: string;
|
|
128545
128593
|
/** Salto Space-specific metadata associated with the [access system user](https://docs.seam.co/latest/capability-guides/access-systems/user-management). */
|
|
128546
128594
|
salto_space_metadata?: {
|
|
128595
|
+
/** User ID in the Salto Space access system. */
|
|
128596
|
+
user_id?: string | undefined;
|
|
128547
128597
|
/** Indicates whether AuditOpenings is enabled for the user in the Salto Space access system. */
|
|
128548
128598
|
audit_openings?: boolean | undefined;
|
|
128549
128599
|
} | undefined;
|
|
@@ -134232,6 +134282,8 @@ type Routes = {
|
|
|
134232
134282
|
connected_account_id: string;
|
|
134233
134283
|
/** Salto Space-specific metadata associated with the [access system user](https://docs.seam.co/latest/capability-guides/access-systems/user-management). */
|
|
134234
134284
|
salto_space_metadata?: {
|
|
134285
|
+
/** User ID in the Salto Space access system. */
|
|
134286
|
+
user_id?: string | undefined;
|
|
134235
134287
|
/** Indicates whether AuditOpenings is enabled for the user in the Salto Space access system. */
|
|
134236
134288
|
audit_openings?: boolean | undefined;
|
|
134237
134289
|
} | undefined;
|
|
@@ -134494,6 +134546,8 @@ type Routes = {
|
|
|
134494
134546
|
connected_account_id: string;
|
|
134495
134547
|
/** Salto Space-specific metadata associated with the [access system user](https://docs.seam.co/latest/capability-guides/access-systems/user-management). */
|
|
134496
134548
|
salto_space_metadata?: {
|
|
134549
|
+
/** User ID in the Salto Space access system. */
|
|
134550
|
+
user_id?: string | undefined;
|
|
134497
134551
|
/** Indicates whether AuditOpenings is enabled for the user in the Salto Space access system. */
|
|
134498
134552
|
audit_openings?: boolean | undefined;
|
|
134499
134553
|
} | undefined;
|
|
@@ -134744,6 +134798,8 @@ type Routes = {
|
|
|
134744
134798
|
connected_account_id: string;
|
|
134745
134799
|
/** Salto Space-specific metadata associated with the [access system user](https://docs.seam.co/latest/capability-guides/access-systems/user-management). */
|
|
134746
134800
|
salto_space_metadata?: {
|
|
134801
|
+
/** User ID in the Salto Space access system. */
|
|
134802
|
+
user_id?: string | undefined;
|
|
134747
134803
|
/** Indicates whether AuditOpenings is enabled for the user in the Salto Space access system. */
|
|
134748
134804
|
audit_openings?: boolean | undefined;
|
|
134749
134805
|
} | undefined;
|
|
@@ -135182,6 +135238,8 @@ type Routes = {
|
|
|
135182
135238
|
connected_account_id: string;
|
|
135183
135239
|
/** Salto Space-specific metadata associated with the [access system user](https://docs.seam.co/latest/capability-guides/access-systems/user-management). */
|
|
135184
135240
|
salto_space_metadata?: {
|
|
135241
|
+
/** User ID in the Salto Space access system. */
|
|
135242
|
+
user_id?: string | undefined;
|
|
135185
135243
|
/** Indicates whether AuditOpenings is enabled for the user in the Salto Space access system. */
|
|
135186
135244
|
audit_openings?: boolean | undefined;
|
|
135187
135245
|
} | undefined;
|
|
@@ -135426,6 +135484,8 @@ type Routes = {
|
|
|
135426
135484
|
connected_account_id: string;
|
|
135427
135485
|
/** Salto Space-specific metadata associated with the [access system user](https://docs.seam.co/latest/capability-guides/access-systems/user-management). */
|
|
135428
135486
|
salto_space_metadata?: {
|
|
135487
|
+
/** User ID in the Salto Space access system. */
|
|
135488
|
+
user_id?: string | undefined;
|
|
135429
135489
|
/** Indicates whether AuditOpenings is enabled for the user in the Salto Space access system. */
|
|
135430
135490
|
audit_openings?: boolean | undefined;
|
|
135431
135491
|
} | undefined;
|
|
@@ -139183,6 +139243,8 @@ type Routes = {
|
|
|
139183
139243
|
exclude?: boolean;
|
|
139184
139244
|
/** Indicates whether the customer can customize the access automation rules for their properties. */
|
|
139185
139245
|
allow_access_automation_rule_customization?: boolean;
|
|
139246
|
+
/** Indicates whether the customer can customize the climate automation rules for their properties. */
|
|
139247
|
+
allow_climate_automation_rule_customization?: boolean;
|
|
139186
139248
|
/** Indicates whether the customer can customize the Instant Key profile for their properties. */
|
|
139187
139249
|
allow_instant_key_customization?: boolean;
|
|
139188
139250
|
};
|
|
@@ -166985,6 +167047,8 @@ type Routes = {
|
|
|
166985
167047
|
exclude?: boolean;
|
|
166986
167048
|
/** Indicates whether the customer can customize the access automation rules for their properties. */
|
|
166987
167049
|
allow_access_automation_rule_customization?: boolean;
|
|
167050
|
+
/** Indicates whether the customer can customize the climate automation rules for their properties. */
|
|
167051
|
+
allow_climate_automation_rule_customization?: boolean;
|
|
166988
167052
|
/** Indicates whether the customer can customize the Instant Key profile for their properties. */
|
|
166989
167053
|
allow_instant_key_customization?: boolean;
|
|
166990
167054
|
};
|
|
@@ -188956,6 +189020,8 @@ type Routes = {
|
|
|
188956
189020
|
connected_account_id: string;
|
|
188957
189021
|
/** Salto Space-specific metadata associated with the [access system user](https://docs.seam.co/latest/capability-guides/access-systems/user-management). */
|
|
188958
189022
|
salto_space_metadata?: {
|
|
189023
|
+
/** User ID in the Salto Space access system. */
|
|
189024
|
+
user_id?: string | undefined;
|
|
188959
189025
|
/** Indicates whether AuditOpenings is enabled for the user in the Salto Space access system. */
|
|
188960
189026
|
audit_openings?: boolean | undefined;
|
|
188961
189027
|
} | undefined;
|
|
@@ -191238,6 +191304,8 @@ type Routes = {
|
|
|
191238
191304
|
connected_account_id: string;
|
|
191239
191305
|
/** Salto Space-specific metadata associated with the [access system user](https://docs.seam.co/latest/capability-guides/access-systems/user-management). */
|
|
191240
191306
|
salto_space_metadata?: {
|
|
191307
|
+
/** User ID in the Salto Space access system. */
|
|
191308
|
+
user_id?: string | undefined;
|
|
191241
191309
|
/** Indicates whether AuditOpenings is enabled for the user in the Salto Space access system. */
|
|
191242
191310
|
audit_openings?: boolean | undefined;
|
|
191243
191311
|
} | undefined;
|
|
@@ -192795,6 +192863,8 @@ type Routes = {
|
|
|
192795
192863
|
connected_account_id: string;
|
|
192796
192864
|
/** Salto Space-specific metadata associated with the [access system user](https://docs.seam.co/latest/capability-guides/access-systems/user-management). */
|
|
192797
192865
|
salto_space_metadata?: {
|
|
192866
|
+
/** User ID in the Salto Space access system. */
|
|
192867
|
+
user_id?: string | undefined;
|
|
192798
192868
|
/** Indicates whether AuditOpenings is enabled for the user in the Salto Space access system. */
|
|
192799
192869
|
audit_openings?: boolean | undefined;
|
|
192800
192870
|
} | undefined;
|
package/dist/index.cjs
CHANGED
|
@@ -2635,10 +2635,11 @@ var acs_entrance_salto_space_metadata = zod.z.object({
|
|
|
2635
2635
|
room_description: zod.z.string().describe("Description of the room in the Salto Space access system.")
|
|
2636
2636
|
}).partial().describe("Salto Space-specific metadata associated with the entrance.");
|
|
2637
2637
|
var acs_user_salto_space_metadata = zod.z.object({
|
|
2638
|
-
|
|
2638
|
+
user_id: zod.z.string().describe("User ID in the Salto Space access system."),
|
|
2639
|
+
audit_openings: zod.z.boolean().describe(
|
|
2639
2640
|
"Indicates whether AuditOpenings is enabled for the user in the Salto Space access system."
|
|
2640
2641
|
)
|
|
2641
|
-
}).describe(
|
|
2642
|
+
}).partial().describe(
|
|
2642
2643
|
"Salto Space-specific metadata associated with the access system user."
|
|
2643
2644
|
);
|
|
2644
2645
|
var acs_entrance_visionline_metadata = zod.z.object({
|
|
@@ -9493,6 +9494,10 @@ var openapi_default = {
|
|
|
9493
9494
|
audit_openings: {
|
|
9494
9495
|
description: "Indicates whether AuditOpenings is enabled for the user in the Salto Space access system.",
|
|
9495
9496
|
type: "boolean"
|
|
9497
|
+
},
|
|
9498
|
+
user_id: {
|
|
9499
|
+
description: "User ID in the Salto Space access system.",
|
|
9500
|
+
type: "string"
|
|
9496
9501
|
}
|
|
9497
9502
|
},
|
|
9498
9503
|
type: "object"
|
|
@@ -27656,6 +27661,10 @@ var openapi_default = {
|
|
|
27656
27661
|
audit_openings: {
|
|
27657
27662
|
description: "Indicates whether AuditOpenings is enabled for the user in the Salto Space access system.",
|
|
27658
27663
|
type: "boolean"
|
|
27664
|
+
},
|
|
27665
|
+
user_id: {
|
|
27666
|
+
description: "User ID in the Salto Space access system.",
|
|
27667
|
+
type: "string"
|
|
27659
27668
|
}
|
|
27660
27669
|
},
|
|
27661
27670
|
type: "object"
|
|
@@ -43444,6 +43453,7 @@ var openapi_default = {
|
|
|
43444
43453
|
features: {
|
|
43445
43454
|
configure: {
|
|
43446
43455
|
allow_access_automation_rule_customization: false,
|
|
43456
|
+
allow_climate_automation_rule_customization: false,
|
|
43447
43457
|
allow_instant_key_customization: false,
|
|
43448
43458
|
exclude: false
|
|
43449
43459
|
},
|
|
@@ -43477,6 +43487,11 @@ var openapi_default = {
|
|
|
43477
43487
|
description: "Indicates whether the customer can customize the access automation rules for their properties.",
|
|
43478
43488
|
type: "boolean"
|
|
43479
43489
|
},
|
|
43490
|
+
allow_climate_automation_rule_customization: {
|
|
43491
|
+
default: false,
|
|
43492
|
+
description: "Indicates whether the customer can customize the climate automation rules for their properties.",
|
|
43493
|
+
type: "boolean"
|
|
43494
|
+
},
|
|
43480
43495
|
allow_instant_key_customization: {
|
|
43481
43496
|
default: false,
|
|
43482
43497
|
description: "Indicates whether the customer can customize the Instant Key profile for their properties.",
|
|
@@ -55738,6 +55753,11 @@ var openapi_default = {
|
|
|
55738
55753
|
description: "Indicates whether the customer can customize the access automation rules for their properties.",
|
|
55739
55754
|
type: "boolean"
|
|
55740
55755
|
},
|
|
55756
|
+
allow_climate_automation_rule_customization: {
|
|
55757
|
+
default: false,
|
|
55758
|
+
description: "Indicates whether the customer can customize the climate automation rules for their properties.",
|
|
55759
|
+
type: "boolean"
|
|
55760
|
+
},
|
|
55741
55761
|
allow_instant_key_customization: {
|
|
55742
55762
|
default: false,
|
|
55743
55763
|
description: "Indicates whether the customer can customize the Instant Key profile for their properties.",
|
|
@@ -56034,6 +56054,11 @@ var openapi_default = {
|
|
|
56034
56054
|
description: "Indicates whether the customer can customize the access automation rules for their properties.",
|
|
56035
56055
|
type: "boolean"
|
|
56036
56056
|
},
|
|
56057
|
+
allow_climate_automation_rule_customization: {
|
|
56058
|
+
default: false,
|
|
56059
|
+
description: "Indicates whether the customer can customize the climate automation rules for their properties.",
|
|
56060
|
+
type: "boolean"
|
|
56061
|
+
},
|
|
56037
56062
|
allow_instant_key_customization: {
|
|
56038
56063
|
default: false,
|
|
56039
56064
|
description: "Indicates whether the customer can customize the Instant Key profile for their properties.",
|