@seamapi/types 1.647.0 → 1.648.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 +20 -3
- package/dist/connect.cjs.map +1 -1
- package/dist/connect.d.cts +37 -2
- package/dist/index.cjs +20 -3
- package/dist/index.cjs.map +1 -1
- 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 +32 -1
- package/lib/seam/connect/openapi.js +18 -1
- package/lib/seam/connect/openapi.js.map +1 -1
- package/lib/seam/connect/route-types.d.ts +5 -1
- package/package.json +1 -1
- package/src/lib/seam/connect/models/customer/customer-portal.ts +7 -0
- package/src/lib/seam/connect/openapi.ts +21 -1
- package/src/lib/seam/connect/route-types.ts +5 -1
|
@@ -47,16 +47,19 @@ export declare const portal_configuration_base: z.ZodObject<{
|
|
|
47
47
|
exclude: z.ZodDefault<z.ZodBoolean>;
|
|
48
48
|
} & {
|
|
49
49
|
customization_profile_id: z.ZodOptional<z.ZodString>;
|
|
50
|
+
allow_automatic_management_of_new_devices: z.ZodDefault<z.ZodBoolean>;
|
|
50
51
|
allow_access_automation_rule_customization: z.ZodDefault<z.ZodBoolean>;
|
|
51
52
|
allow_instant_key_customization: z.ZodDefault<z.ZodBoolean>;
|
|
52
53
|
}, "strip", z.ZodTypeAny, {
|
|
53
54
|
exclude: boolean;
|
|
55
|
+
allow_automatic_management_of_new_devices: boolean;
|
|
54
56
|
allow_access_automation_rule_customization: boolean;
|
|
55
57
|
allow_instant_key_customization: boolean;
|
|
56
58
|
customization_profile_id?: string | undefined;
|
|
57
59
|
}, {
|
|
58
60
|
customization_profile_id?: string | undefined;
|
|
59
61
|
exclude?: boolean | undefined;
|
|
62
|
+
allow_automatic_management_of_new_devices?: boolean | undefined;
|
|
60
63
|
allow_access_automation_rule_customization?: boolean | undefined;
|
|
61
64
|
allow_instant_key_customization?: boolean | undefined;
|
|
62
65
|
}>>;
|
|
@@ -79,6 +82,7 @@ export declare const portal_configuration_base: z.ZodObject<{
|
|
|
79
82
|
};
|
|
80
83
|
configure: {
|
|
81
84
|
exclude: boolean;
|
|
85
|
+
allow_automatic_management_of_new_devices: boolean;
|
|
82
86
|
allow_access_automation_rule_customization: boolean;
|
|
83
87
|
allow_instant_key_customization: boolean;
|
|
84
88
|
customization_profile_id?: string | undefined;
|
|
@@ -103,6 +107,7 @@ export declare const portal_configuration_base: z.ZodObject<{
|
|
|
103
107
|
configure?: {
|
|
104
108
|
customization_profile_id?: string | undefined;
|
|
105
109
|
exclude?: boolean | undefined;
|
|
110
|
+
allow_automatic_management_of_new_devices?: boolean | undefined;
|
|
106
111
|
allow_access_automation_rule_customization?: boolean | undefined;
|
|
107
112
|
allow_instant_key_customization?: boolean | undefined;
|
|
108
113
|
} | undefined;
|
|
@@ -265,6 +270,7 @@ export declare const portal_configuration_base: z.ZodObject<{
|
|
|
265
270
|
};
|
|
266
271
|
configure: {
|
|
267
272
|
exclude: boolean;
|
|
273
|
+
allow_automatic_management_of_new_devices: boolean;
|
|
268
274
|
allow_access_automation_rule_customization: boolean;
|
|
269
275
|
allow_instant_key_customization: boolean;
|
|
270
276
|
customization_profile_id?: string | undefined;
|
|
@@ -321,6 +327,7 @@ export declare const portal_configuration_base: z.ZodObject<{
|
|
|
321
327
|
configure?: {
|
|
322
328
|
customization_profile_id?: string | undefined;
|
|
323
329
|
exclude?: boolean | undefined;
|
|
330
|
+
allow_automatic_management_of_new_devices?: boolean | undefined;
|
|
324
331
|
allow_access_automation_rule_customization?: boolean | undefined;
|
|
325
332
|
allow_instant_key_customization?: boolean | undefined;
|
|
326
333
|
} | undefined;
|
|
@@ -404,16 +411,19 @@ export declare const portal_configuration: z.ZodDefault<z.ZodObject<{
|
|
|
404
411
|
exclude: z.ZodDefault<z.ZodBoolean>;
|
|
405
412
|
} & {
|
|
406
413
|
customization_profile_id: z.ZodOptional<z.ZodString>;
|
|
414
|
+
allow_automatic_management_of_new_devices: z.ZodDefault<z.ZodBoolean>;
|
|
407
415
|
allow_access_automation_rule_customization: z.ZodDefault<z.ZodBoolean>;
|
|
408
416
|
allow_instant_key_customization: z.ZodDefault<z.ZodBoolean>;
|
|
409
417
|
}, "strip", z.ZodTypeAny, {
|
|
410
418
|
exclude: boolean;
|
|
419
|
+
allow_automatic_management_of_new_devices: boolean;
|
|
411
420
|
allow_access_automation_rule_customization: boolean;
|
|
412
421
|
allow_instant_key_customization: boolean;
|
|
413
422
|
customization_profile_id?: string | undefined;
|
|
414
423
|
}, {
|
|
415
424
|
customization_profile_id?: string | undefined;
|
|
416
425
|
exclude?: boolean | undefined;
|
|
426
|
+
allow_automatic_management_of_new_devices?: boolean | undefined;
|
|
417
427
|
allow_access_automation_rule_customization?: boolean | undefined;
|
|
418
428
|
allow_instant_key_customization?: boolean | undefined;
|
|
419
429
|
}>>;
|
|
@@ -436,6 +446,7 @@ export declare const portal_configuration: z.ZodDefault<z.ZodObject<{
|
|
|
436
446
|
};
|
|
437
447
|
configure: {
|
|
438
448
|
exclude: boolean;
|
|
449
|
+
allow_automatic_management_of_new_devices: boolean;
|
|
439
450
|
allow_access_automation_rule_customization: boolean;
|
|
440
451
|
allow_instant_key_customization: boolean;
|
|
441
452
|
customization_profile_id?: string | undefined;
|
|
@@ -460,6 +471,7 @@ export declare const portal_configuration: z.ZodDefault<z.ZodObject<{
|
|
|
460
471
|
configure?: {
|
|
461
472
|
customization_profile_id?: string | undefined;
|
|
462
473
|
exclude?: boolean | undefined;
|
|
474
|
+
allow_automatic_management_of_new_devices?: boolean | undefined;
|
|
463
475
|
allow_access_automation_rule_customization?: boolean | undefined;
|
|
464
476
|
allow_instant_key_customization?: boolean | undefined;
|
|
465
477
|
} | undefined;
|
|
@@ -622,6 +634,7 @@ export declare const portal_configuration: z.ZodDefault<z.ZodObject<{
|
|
|
622
634
|
};
|
|
623
635
|
configure: {
|
|
624
636
|
exclude: boolean;
|
|
637
|
+
allow_automatic_management_of_new_devices: boolean;
|
|
625
638
|
allow_access_automation_rule_customization: boolean;
|
|
626
639
|
allow_instant_key_customization: boolean;
|
|
627
640
|
customization_profile_id?: string | undefined;
|
|
@@ -678,6 +691,7 @@ export declare const portal_configuration: z.ZodDefault<z.ZodObject<{
|
|
|
678
691
|
configure?: {
|
|
679
692
|
customization_profile_id?: string | undefined;
|
|
680
693
|
exclude?: boolean | undefined;
|
|
694
|
+
allow_automatic_management_of_new_devices?: boolean | undefined;
|
|
681
695
|
allow_access_automation_rule_customization?: boolean | undefined;
|
|
682
696
|
allow_instant_key_customization?: boolean | undefined;
|
|
683
697
|
} | undefined;
|
|
@@ -35,6 +35,10 @@ const base_configure_feature = base_feature.extend({
|
|
|
35
35
|
.uuid()
|
|
36
36
|
.optional()
|
|
37
37
|
.describe('The ID of the customization profile to use for the portal.'),
|
|
38
|
+
allow_automatic_management_of_new_devices: z
|
|
39
|
+
.boolean()
|
|
40
|
+
.default(false)
|
|
41
|
+
.describe('Indicates whether the customer can automatically manage new devices for their properties.'),
|
|
38
42
|
allow_access_automation_rule_customization: z
|
|
39
43
|
.boolean()
|
|
40
44
|
.default(false)
|
|
@@ -96,6 +100,7 @@ export const portal_configuration = portal_configuration_base
|
|
|
96
100
|
exclude: false,
|
|
97
101
|
allow_instant_key_customization: false, // default
|
|
98
102
|
allow_access_automation_rule_customization: false, // default
|
|
103
|
+
allow_automatic_management_of_new_devices: false, // default
|
|
99
104
|
},
|
|
100
105
|
},
|
|
101
106
|
is_embedded: false,
|
|
@@ -1 +1 @@
|
|
|
1
|
-
{"version":3,"file":"customer-portal.js","sourceRoot":"","sources":["../../../../../src/lib/seam/connect/models/customer/customer-portal.ts"],"names":[],"mappings":"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
|
|
1
|
+
{"version":3,"file":"customer-portal.js","sourceRoot":"","sources":["../../../../../src/lib/seam/connect/models/customer/customer-portal.ts"],"names":[],"mappings":"AAAA,OAAO,EAAE,CAAC,EAAE,MAAM,KAAK,CAAA;AAEvB,OAAO,EAAE,wBAAwB,EAAE,MAAM,6BAA6B,CAAA;AACtE,OAAO,EAAE,oBAAoB,EAAE,MAAM,yBAAyB,CAAA;AAE9D,MAAM,YAAY,GAAG,CAAC,CAAC,MAAM,CAAC;IAC5B,OAAO,EAAE,CAAC;SACP,OAAO,EAAE;SACT,OAAO,CAAC,KAAK,CAAC;SACd,QAAQ,CAAC,kDAAkD,CAAC;CAChE,CAAC,CAAA;AAEF,MAAM,oBAAoB,GAAG,YAAY,CAAC,MAAM,CAAC;IAC/C,kBAAkB,EAAE,CAAC;SAClB,KAAK,CAAC,CAAC,CAAC,MAAM,EAAE,CAAC;SACjB,QAAQ,EAAE;SACV,QAAQ,CACP,sIAAsI,CACvI;IACH,kBAAkB,EAAE,CAAC;SAClB,KAAK,CAAC,CAAC,CAAC,MAAM,EAAE,CAAC;SACjB,QAAQ,EAAE;SACV,QAAQ,CACP,6IAA6I,CAC9I;CACJ,CAAC,CAAA;AACF,MAAM,2BAA2B,GAAG,YAAY,CAAA;AAEhD,MAAM,mBAAmB,GAAG,YAAY,CAAC,MAAM,CAAC;IAC9C,8BAA8B,EAAE,CAAC;SAC9B,OAAO,EAAE;SACT,OAAO,CAAC,KAAK,CAAC;SACd,QAAQ,CACP,8EAA8E,CAC/E;IACH,wBAAwB,EAAE,CAAC;SACxB,OAAO,EAAE;SACT,OAAO,CAAC,KAAK,CAAC;SACd,QAAQ,CACP,uEAAuE,CACxE;CACJ,CAAC,CAAA;AAEF,MAAM,qBAAqB,GAAG,YAAY,CAAA;AAE1C,MAAM,sBAAsB,GAAG,YAAY,CAAC,MAAM,CAAC;IACjD,wBAAwB,EAAE,CAAC;SACxB,MAAM,EAAE;SACR,IAAI,EAAE;SACN,QAAQ,EAAE;SACV,QAAQ,CAAC,4DAA4D,CAAC;IACzE,yCAAyC,EAAE,CAAC;SACzC,OAAO,EAAE;SACT,OAAO,CAAC,KAAK,CAAC;SACd,QAAQ,CACP,2FAA2F,CAC5F;IACH,0CAA0C,EAAE,CAAC;SAC1C,OAAO,EAAE;SACT,OAAO,CAAC,KAAK,CAAC;SACd,QAAQ,CACP,gGAAgG,CACjG;IACH,+BAA+B,EAAE,CAAC;SAC/B,OAAO,EAAE;SACT,OAAO,CAAC,KAAK,CAAC;SACd,QAAQ,CACP,4FAA4F,CAC7F;CACJ,CAAC,CAAA;AAEF,MAAM,aAAa,GAAG,CAAC,CAAC,MAAM,CAAC;IAC7B,OAAO,EAAE,oBAAoB;SAC1B,OAAO,CAAC,EAAE,CAAC;SACX,QAAQ,CAAC,iDAAiD,CAAC;IAC9D,MAAM,EAAE,mBAAmB;SACxB,OAAO,CAAC,EAAE,CAAC;SACX,QAAQ,CAAC,uCAAuC,CAAC;IACpD,cAAc,EAAE,2BAA2B,CAAC,OAAO,CAAC,EAAE,CAAC,CAAC,QAAQ,CAAC;;;;;KAK9D,CAAC;IACJ,QAAQ,EAAE,qBAAqB;SAC5B,OAAO,CAAC,EAAE,CAAC;SACX,QAAQ,CAAC,yCAAyC,CAAC;IACtD,SAAS,EAAE,sBAAsB;SAC9B,OAAO,CAAC,EAAE,CAAC;SACX,QAAQ,CAAC,0CAA0C,CAAC;CACxD,CAAC,CAAA;AAEF,MAAM,CAAC,MAAM,yBAAyB,GAAG,CAAC,CAAC,MAAM,CAAC;IAChD,QAAQ,EAAE,aAAa,CAAC,OAAO,CAAC,EAAE,CAAC;IACnC,WAAW,EAAE,CAAC;SACX,OAAO,EAAE;SACT,OAAO,CAAC,KAAK,CAAC;SACd,QAAQ,CAAC,wDAAwD,CAAC;IACrE,YAAY,EAAE,CAAC;SACZ,MAAM,CAAC;QACN,MAAM,EAAE,CAAC;aACN,KAAK,CAAC,CAAC,oBAAoB,EAAE,wBAAwB,CAAC,CAAC;aACvD,QAAQ,EAAE;KACd,CAAC;SACD,QAAQ,EAAE;SACV,QAAQ,CAAC,2DAA2D,CAAC;CACzE,CAAC,CAAA;AAEF,MAAM,CAAC,MAAM,oBAAoB,GAAG,yBAAyB;KAC1D,OAAO,CAAC;IACP,QAAQ,EAAE;QACR,OAAO,EAAE,EAAE,OAAO,EAAE,KAAK,EAAE;QAC3B,QAAQ,EAAE,EAAE,OAAO,EAAE,KAAK,EAAE;QAC5B,MAAM,EAAE;YACN,OAAO,EAAE,KAAK;YACd,8BAA8B,EAAE,KAAK;YACrC,wBAAwB,EAAE,KAAK;SAChC;QACD,cAAc,EAAE;YACd,OAAO,EAAE,KAAK;SACf;QACD,SAAS,EAAE;YACT,OAAO,EAAE,KAAK;YACd,+BAA+B,EAAE,KAAK,EAAE,UAAU;YAClD,0CAA0C,EAAE,KAAK,EAAE,UAAU;YAC7D,yCAAyC,EAAE,KAAK,EAAE,UAAU;SAC7D;KACF;IACD,WAAW,EAAE,KAAK;CACnB,CAAC;KACD,QAAQ,CAAC,qCAAqC,CAAC,CAAA"}
|
|
@@ -30531,7 +30531,6 @@ declare const _default: {
|
|
|
30531
30531
|
type: string;
|
|
30532
30532
|
};
|
|
30533
30533
|
automatically_manage_new_devices: {
|
|
30534
|
-
default: boolean;
|
|
30535
30534
|
description: string;
|
|
30536
30535
|
type: string;
|
|
30537
30536
|
};
|
|
@@ -32112,6 +32111,7 @@ declare const _default: {
|
|
|
32112
32111
|
features: {
|
|
32113
32112
|
configure: {
|
|
32114
32113
|
allow_access_automation_rule_customization: boolean;
|
|
32114
|
+
allow_automatic_management_of_new_devices: boolean;
|
|
32115
32115
|
allow_instant_key_customization: boolean;
|
|
32116
32116
|
exclude: boolean;
|
|
32117
32117
|
};
|
|
@@ -32146,6 +32146,11 @@ declare const _default: {
|
|
|
32146
32146
|
description: string;
|
|
32147
32147
|
type: string;
|
|
32148
32148
|
};
|
|
32149
|
+
allow_automatic_management_of_new_devices: {
|
|
32150
|
+
default: boolean;
|
|
32151
|
+
description: string;
|
|
32152
|
+
type: string;
|
|
32153
|
+
};
|
|
32149
32154
|
allow_instant_key_customization: {
|
|
32150
32155
|
default: boolean;
|
|
32151
32156
|
description: string;
|
|
@@ -36247,14 +36252,22 @@ declare const _default: {
|
|
|
36247
36252
|
api_key: never[];
|
|
36248
36253
|
pat_with_workspace?: never;
|
|
36249
36254
|
console_session_with_workspace?: never;
|
|
36255
|
+
client_session_with_customer?: never;
|
|
36250
36256
|
} | {
|
|
36251
36257
|
pat_with_workspace: never[];
|
|
36252
36258
|
api_key?: never;
|
|
36253
36259
|
console_session_with_workspace?: never;
|
|
36260
|
+
client_session_with_customer?: never;
|
|
36254
36261
|
} | {
|
|
36255
36262
|
console_session_with_workspace: never[];
|
|
36256
36263
|
api_key?: never;
|
|
36257
36264
|
pat_with_workspace?: never;
|
|
36265
|
+
client_session_with_customer?: never;
|
|
36266
|
+
} | {
|
|
36267
|
+
client_session_with_customer: never[];
|
|
36268
|
+
api_key?: never;
|
|
36269
|
+
pat_with_workspace?: never;
|
|
36270
|
+
console_session_with_workspace?: never;
|
|
36258
36271
|
})[];
|
|
36259
36272
|
summary: string;
|
|
36260
36273
|
tags: string[];
|
|
@@ -36431,14 +36444,22 @@ declare const _default: {
|
|
|
36431
36444
|
api_key: never[];
|
|
36432
36445
|
pat_with_workspace?: never;
|
|
36433
36446
|
console_session_with_workspace?: never;
|
|
36447
|
+
client_session_with_customer?: never;
|
|
36434
36448
|
} | {
|
|
36435
36449
|
pat_with_workspace: never[];
|
|
36436
36450
|
api_key?: never;
|
|
36437
36451
|
console_session_with_workspace?: never;
|
|
36452
|
+
client_session_with_customer?: never;
|
|
36438
36453
|
} | {
|
|
36439
36454
|
console_session_with_workspace: never[];
|
|
36440
36455
|
api_key?: never;
|
|
36441
36456
|
pat_with_workspace?: never;
|
|
36457
|
+
client_session_with_customer?: never;
|
|
36458
|
+
} | {
|
|
36459
|
+
client_session_with_customer: never[];
|
|
36460
|
+
api_key?: never;
|
|
36461
|
+
pat_with_workspace?: never;
|
|
36462
|
+
console_session_with_workspace?: never;
|
|
36442
36463
|
})[];
|
|
36443
36464
|
summary: string;
|
|
36444
36465
|
tags: string[];
|
|
@@ -44640,6 +44661,11 @@ declare const _default: {
|
|
|
44640
44661
|
description: string;
|
|
44641
44662
|
type: string;
|
|
44642
44663
|
};
|
|
44664
|
+
allow_automatic_management_of_new_devices: {
|
|
44665
|
+
default: boolean;
|
|
44666
|
+
description: string;
|
|
44667
|
+
type: string;
|
|
44668
|
+
};
|
|
44643
44669
|
allow_instant_key_customization: {
|
|
44644
44670
|
default: boolean;
|
|
44645
44671
|
description: string;
|
|
@@ -45041,6 +45067,11 @@ declare const _default: {
|
|
|
45041
45067
|
description: string;
|
|
45042
45068
|
type: string;
|
|
45043
45069
|
};
|
|
45070
|
+
allow_automatic_management_of_new_devices: {
|
|
45071
|
+
default: boolean;
|
|
45072
|
+
description: string;
|
|
45073
|
+
type: string;
|
|
45074
|
+
};
|
|
45044
45075
|
allow_instant_key_customization: {
|
|
45045
45076
|
default: boolean;
|
|
45046
45077
|
description: string;
|
|
@@ -36272,7 +36272,6 @@ export default {
|
|
|
36272
36272
|
type: 'array',
|
|
36273
36273
|
},
|
|
36274
36274
|
automatically_manage_new_devices: {
|
|
36275
|
-
default: true,
|
|
36276
36275
|
description: 'Indicates whether newly-added devices should appear as [managed devices](https://docs.seam.co/latest/core-concepts/devices/managed-and-unmanaged-devices). See also: [Customize the Behavior Settings of Your Connect Webviews](https://docs.seam.co/latest/core-concepts/connect-webviews/customizing-connect-webviews#customize-the-behavior-settings-of-your-connect-webviews).',
|
|
36277
36276
|
type: 'boolean',
|
|
36278
36277
|
},
|
|
@@ -37437,6 +37436,7 @@ export default {
|
|
|
37437
37436
|
features: {
|
|
37438
37437
|
configure: {
|
|
37439
37438
|
allow_access_automation_rule_customization: false,
|
|
37439
|
+
allow_automatic_management_of_new_devices: false,
|
|
37440
37440
|
allow_instant_key_customization: false,
|
|
37441
37441
|
exclude: false,
|
|
37442
37442
|
},
|
|
@@ -37465,6 +37465,11 @@ export default {
|
|
|
37465
37465
|
description: 'Indicates whether the customer can customize the access automation rules for their properties.',
|
|
37466
37466
|
type: 'boolean',
|
|
37467
37467
|
},
|
|
37468
|
+
allow_automatic_management_of_new_devices: {
|
|
37469
|
+
default: false,
|
|
37470
|
+
description: 'Indicates whether the customer can automatically manage new devices for their properties.',
|
|
37471
|
+
type: 'boolean',
|
|
37472
|
+
},
|
|
37468
37473
|
allow_instant_key_customization: {
|
|
37469
37474
|
default: false,
|
|
37470
37475
|
description: 'Indicates whether the customer can customize the Instant Key profile for their properties.',
|
|
@@ -41451,6 +41456,7 @@ export default {
|
|
|
41451
41456
|
{ api_key: [] },
|
|
41452
41457
|
{ pat_with_workspace: [] },
|
|
41453
41458
|
{ console_session_with_workspace: [] },
|
|
41459
|
+
{ client_session_with_customer: [] },
|
|
41454
41460
|
],
|
|
41455
41461
|
summary: '/devices/unmanaged/list',
|
|
41456
41462
|
tags: ['/devices'],
|
|
@@ -41807,6 +41813,7 @@ export default {
|
|
|
41807
41813
|
{ api_key: [] },
|
|
41808
41814
|
{ pat_with_workspace: [] },
|
|
41809
41815
|
{ console_session_with_workspace: [] },
|
|
41816
|
+
{ client_session_with_customer: [] },
|
|
41810
41817
|
],
|
|
41811
41818
|
summary: '/devices/unmanaged/list',
|
|
41812
41819
|
tags: ['/devices'],
|
|
@@ -49700,6 +49707,11 @@ export default {
|
|
|
49700
49707
|
description: 'Indicates whether the customer can customize the access automation rules for their properties.',
|
|
49701
49708
|
type: 'boolean',
|
|
49702
49709
|
},
|
|
49710
|
+
allow_automatic_management_of_new_devices: {
|
|
49711
|
+
default: false,
|
|
49712
|
+
description: 'Indicates whether the customer can automatically manage new devices for their properties.',
|
|
49713
|
+
type: 'boolean',
|
|
49714
|
+
},
|
|
49703
49715
|
allow_instant_key_customization: {
|
|
49704
49716
|
default: false,
|
|
49705
49717
|
description: 'Indicates whether the customer can customize the Instant Key profile for their properties.',
|
|
@@ -49991,6 +50003,11 @@ export default {
|
|
|
49991
50003
|
description: 'Indicates whether the customer can customize the access automation rules for their properties.',
|
|
49992
50004
|
type: 'boolean',
|
|
49993
50005
|
},
|
|
50006
|
+
allow_automatic_management_of_new_devices: {
|
|
50007
|
+
default: false,
|
|
50008
|
+
description: 'Indicates whether the customer can automatically manage new devices for their properties.',
|
|
50009
|
+
type: 'boolean',
|
|
50010
|
+
},
|
|
49994
50011
|
allow_instant_key_customization: {
|
|
49995
50012
|
default: false,
|
|
49996
50013
|
description: 'Indicates whether the customer can customize the Instant Key profile for their properties.',
|