@seamapi/types 1.651.0 → 1.653.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 +30 -15
- package/dist/connect.cjs.map +1 -1
- package/dist/connect.d.cts +40 -19
- package/dist/index.cjs +30 -15
- package/dist/index.cjs.map +1 -1
- package/lib/seam/connect/models/customer/customer-portal.d.ts +12 -14
- package/lib/seam/connect/models/customer/customer-portal.js +10 -5
- package/lib/seam/connect/models/customer/customer-portal.js.map +1 -1
- package/lib/seam/connect/openapi.d.ts +32 -15
- package/lib/seam/connect/openapi.js +30 -15
- package/lib/seam/connect/openapi.js.map +1 -1
- package/lib/seam/connect/route-types.d.ts +8 -4
- package/package.json +1 -1
- package/src/lib/seam/connect/models/customer/customer-portal.ts +10 -5
- package/src/lib/seam/connect/openapi.ts +33 -18
- package/src/lib/seam/connect/route-types.ts +8 -4
|
@@ -46,16 +46,13 @@ export declare const portal_configuration_base: z.ZodObject<{
|
|
|
46
46
|
configure: z.ZodDefault<z.ZodObject<{
|
|
47
47
|
exclude: z.ZodDefault<z.ZodBoolean>;
|
|
48
48
|
} & {
|
|
49
|
-
customization_profile_id: z.ZodOptional<z.ZodString>;
|
|
50
49
|
allow_access_automation_rule_customization: z.ZodDefault<z.ZodBoolean>;
|
|
51
50
|
allow_instant_key_customization: z.ZodDefault<z.ZodBoolean>;
|
|
52
51
|
}, "strip", z.ZodTypeAny, {
|
|
53
52
|
exclude: boolean;
|
|
54
53
|
allow_access_automation_rule_customization: boolean;
|
|
55
54
|
allow_instant_key_customization: boolean;
|
|
56
|
-
customization_profile_id?: string | undefined;
|
|
57
55
|
}, {
|
|
58
|
-
customization_profile_id?: string | undefined;
|
|
59
56
|
exclude?: boolean | undefined;
|
|
60
57
|
allow_access_automation_rule_customization?: boolean | undefined;
|
|
61
58
|
allow_instant_key_customization?: boolean | undefined;
|
|
@@ -81,7 +78,6 @@ export declare const portal_configuration_base: z.ZodObject<{
|
|
|
81
78
|
exclude: boolean;
|
|
82
79
|
allow_access_automation_rule_customization: boolean;
|
|
83
80
|
allow_instant_key_customization: boolean;
|
|
84
|
-
customization_profile_id?: string | undefined;
|
|
85
81
|
};
|
|
86
82
|
}, {
|
|
87
83
|
connect?: {
|
|
@@ -101,7 +97,6 @@ export declare const portal_configuration_base: z.ZodObject<{
|
|
|
101
97
|
exclude?: boolean | undefined;
|
|
102
98
|
} | undefined;
|
|
103
99
|
configure?: {
|
|
104
|
-
customization_profile_id?: string | undefined;
|
|
105
100
|
exclude?: boolean | undefined;
|
|
106
101
|
allow_access_automation_rule_customization?: boolean | undefined;
|
|
107
102
|
allow_instant_key_customization?: boolean | undefined;
|
|
@@ -245,6 +240,8 @@ export declare const portal_configuration_base: z.ZodObject<{
|
|
|
245
240
|
site_key: string;
|
|
246
241
|
} | undefined;
|
|
247
242
|
}>>;
|
|
243
|
+
locale: z.ZodOptional<z.ZodEnum<["en-US", "pt-PT"]>>;
|
|
244
|
+
customization_profile_id: z.ZodOptional<z.ZodString>;
|
|
248
245
|
}, "strip", z.ZodTypeAny, {
|
|
249
246
|
features: {
|
|
250
247
|
connect: {
|
|
@@ -267,10 +264,10 @@ export declare const portal_configuration_base: z.ZodObject<{
|
|
|
267
264
|
exclude: boolean;
|
|
268
265
|
allow_access_automation_rule_customization: boolean;
|
|
269
266
|
allow_instant_key_customization: boolean;
|
|
270
|
-
customization_profile_id?: string | undefined;
|
|
271
267
|
};
|
|
272
268
|
};
|
|
273
269
|
is_embedded: boolean;
|
|
270
|
+
customization_profile_id?: string | undefined;
|
|
274
271
|
landing_page?: {
|
|
275
272
|
manage?: {
|
|
276
273
|
reservation_key: string;
|
|
@@ -300,6 +297,7 @@ export declare const portal_configuration_base: z.ZodObject<{
|
|
|
300
297
|
site_key: string;
|
|
301
298
|
} | undefined;
|
|
302
299
|
} | undefined;
|
|
300
|
+
locale?: "en-US" | "pt-PT" | undefined;
|
|
303
301
|
}, {
|
|
304
302
|
features?: {
|
|
305
303
|
connect?: {
|
|
@@ -319,12 +317,12 @@ export declare const portal_configuration_base: z.ZodObject<{
|
|
|
319
317
|
exclude?: boolean | undefined;
|
|
320
318
|
} | undefined;
|
|
321
319
|
configure?: {
|
|
322
|
-
customization_profile_id?: string | undefined;
|
|
323
320
|
exclude?: boolean | undefined;
|
|
324
321
|
allow_access_automation_rule_customization?: boolean | undefined;
|
|
325
322
|
allow_instant_key_customization?: boolean | undefined;
|
|
326
323
|
} | undefined;
|
|
327
324
|
} | undefined;
|
|
325
|
+
customization_profile_id?: string | undefined;
|
|
328
326
|
is_embedded?: boolean | undefined;
|
|
329
327
|
landing_page?: {
|
|
330
328
|
manage?: {
|
|
@@ -355,6 +353,7 @@ export declare const portal_configuration_base: z.ZodObject<{
|
|
|
355
353
|
site_key: string;
|
|
356
354
|
} | undefined;
|
|
357
355
|
} | undefined;
|
|
356
|
+
locale?: "en-US" | "pt-PT" | undefined;
|
|
358
357
|
}>;
|
|
359
358
|
export declare const portal_configuration: z.ZodDefault<z.ZodObject<{
|
|
360
359
|
features: z.ZodDefault<z.ZodObject<{
|
|
@@ -403,16 +402,13 @@ export declare const portal_configuration: z.ZodDefault<z.ZodObject<{
|
|
|
403
402
|
configure: z.ZodDefault<z.ZodObject<{
|
|
404
403
|
exclude: z.ZodDefault<z.ZodBoolean>;
|
|
405
404
|
} & {
|
|
406
|
-
customization_profile_id: z.ZodOptional<z.ZodString>;
|
|
407
405
|
allow_access_automation_rule_customization: z.ZodDefault<z.ZodBoolean>;
|
|
408
406
|
allow_instant_key_customization: z.ZodDefault<z.ZodBoolean>;
|
|
409
407
|
}, "strip", z.ZodTypeAny, {
|
|
410
408
|
exclude: boolean;
|
|
411
409
|
allow_access_automation_rule_customization: boolean;
|
|
412
410
|
allow_instant_key_customization: boolean;
|
|
413
|
-
customization_profile_id?: string | undefined;
|
|
414
411
|
}, {
|
|
415
|
-
customization_profile_id?: string | undefined;
|
|
416
412
|
exclude?: boolean | undefined;
|
|
417
413
|
allow_access_automation_rule_customization?: boolean | undefined;
|
|
418
414
|
allow_instant_key_customization?: boolean | undefined;
|
|
@@ -438,7 +434,6 @@ export declare const portal_configuration: z.ZodDefault<z.ZodObject<{
|
|
|
438
434
|
exclude: boolean;
|
|
439
435
|
allow_access_automation_rule_customization: boolean;
|
|
440
436
|
allow_instant_key_customization: boolean;
|
|
441
|
-
customization_profile_id?: string | undefined;
|
|
442
437
|
};
|
|
443
438
|
}, {
|
|
444
439
|
connect?: {
|
|
@@ -458,7 +453,6 @@ export declare const portal_configuration: z.ZodDefault<z.ZodObject<{
|
|
|
458
453
|
exclude?: boolean | undefined;
|
|
459
454
|
} | undefined;
|
|
460
455
|
configure?: {
|
|
461
|
-
customization_profile_id?: string | undefined;
|
|
462
456
|
exclude?: boolean | undefined;
|
|
463
457
|
allow_access_automation_rule_customization?: boolean | undefined;
|
|
464
458
|
allow_instant_key_customization?: boolean | undefined;
|
|
@@ -602,6 +596,8 @@ export declare const portal_configuration: z.ZodDefault<z.ZodObject<{
|
|
|
602
596
|
site_key: string;
|
|
603
597
|
} | undefined;
|
|
604
598
|
}>>;
|
|
599
|
+
locale: z.ZodOptional<z.ZodEnum<["en-US", "pt-PT"]>>;
|
|
600
|
+
customization_profile_id: z.ZodOptional<z.ZodString>;
|
|
605
601
|
}, "strip", z.ZodTypeAny, {
|
|
606
602
|
features: {
|
|
607
603
|
connect: {
|
|
@@ -624,10 +620,10 @@ export declare const portal_configuration: z.ZodDefault<z.ZodObject<{
|
|
|
624
620
|
exclude: boolean;
|
|
625
621
|
allow_access_automation_rule_customization: boolean;
|
|
626
622
|
allow_instant_key_customization: boolean;
|
|
627
|
-
customization_profile_id?: string | undefined;
|
|
628
623
|
};
|
|
629
624
|
};
|
|
630
625
|
is_embedded: boolean;
|
|
626
|
+
customization_profile_id?: string | undefined;
|
|
631
627
|
landing_page?: {
|
|
632
628
|
manage?: {
|
|
633
629
|
reservation_key: string;
|
|
@@ -657,6 +653,7 @@ export declare const portal_configuration: z.ZodDefault<z.ZodObject<{
|
|
|
657
653
|
site_key: string;
|
|
658
654
|
} | undefined;
|
|
659
655
|
} | undefined;
|
|
656
|
+
locale?: "en-US" | "pt-PT" | undefined;
|
|
660
657
|
}, {
|
|
661
658
|
features?: {
|
|
662
659
|
connect?: {
|
|
@@ -676,12 +673,12 @@ export declare const portal_configuration: z.ZodDefault<z.ZodObject<{
|
|
|
676
673
|
exclude?: boolean | undefined;
|
|
677
674
|
} | undefined;
|
|
678
675
|
configure?: {
|
|
679
|
-
customization_profile_id?: string | undefined;
|
|
680
676
|
exclude?: boolean | undefined;
|
|
681
677
|
allow_access_automation_rule_customization?: boolean | undefined;
|
|
682
678
|
allow_instant_key_customization?: boolean | undefined;
|
|
683
679
|
} | undefined;
|
|
684
680
|
} | undefined;
|
|
681
|
+
customization_profile_id?: string | undefined;
|
|
685
682
|
is_embedded?: boolean | undefined;
|
|
686
683
|
landing_page?: {
|
|
687
684
|
manage?: {
|
|
@@ -712,5 +709,6 @@ export declare const portal_configuration: z.ZodDefault<z.ZodObject<{
|
|
|
712
709
|
site_key: string;
|
|
713
710
|
} | undefined;
|
|
714
711
|
} | undefined;
|
|
712
|
+
locale?: "en-US" | "pt-PT" | undefined;
|
|
715
713
|
}>>;
|
|
716
714
|
export type PortalConfiguration = z.infer<typeof portal_configuration>;
|
|
@@ -30,11 +30,6 @@ const base_manage_feature = base_feature.extend({
|
|
|
30
30
|
});
|
|
31
31
|
const base_organize_feature = base_feature;
|
|
32
32
|
const base_configure_feature = base_feature.extend({
|
|
33
|
-
customization_profile_id: z
|
|
34
|
-
.string()
|
|
35
|
-
.uuid()
|
|
36
|
-
.optional()
|
|
37
|
-
.describe('The ID of the customization profile to use for the portal.'),
|
|
38
33
|
allow_access_automation_rule_customization: z
|
|
39
34
|
.boolean()
|
|
40
35
|
.default(false)
|
|
@@ -78,6 +73,15 @@ export const portal_configuration_base = z.object({
|
|
|
78
73
|
})
|
|
79
74
|
.optional()
|
|
80
75
|
.describe('Configuration for the landing page when the portal loads.'),
|
|
76
|
+
locale: z
|
|
77
|
+
.enum(['en-US', 'pt-PT'])
|
|
78
|
+
.optional()
|
|
79
|
+
.describe('The locale to use for the portal.'),
|
|
80
|
+
customization_profile_id: z
|
|
81
|
+
.string()
|
|
82
|
+
.uuid()
|
|
83
|
+
.optional()
|
|
84
|
+
.describe('The ID of the customization profile to use for the portal.'),
|
|
81
85
|
});
|
|
82
86
|
export const portal_configuration = portal_configuration_base
|
|
83
87
|
.default({
|
|
@@ -99,6 +103,7 @@ export const portal_configuration = portal_configuration_base
|
|
|
99
103
|
},
|
|
100
104
|
},
|
|
101
105
|
is_embedded: false,
|
|
106
|
+
locale: undefined,
|
|
102
107
|
})
|
|
103
108
|
.describe(`Configuration for a customer portal`);
|
|
104
109
|
//# sourceMappingURL=customer-portal.js.map
|
|
@@ -1 +1 @@
|
|
|
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,
|
|
1
|
+
{"version":3,"file":"customer-portal.js","sourceRoot":"","sources":["../../../../../src/lib/seam/connect/models/customer/customer-portal.ts"],"names":[],"mappings":"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"}
|
|
@@ -32133,6 +32133,11 @@ declare const _default: {
|
|
|
32133
32133
|
};
|
|
32134
32134
|
description: string;
|
|
32135
32135
|
properties: {
|
|
32136
|
+
customization_profile_id: {
|
|
32137
|
+
description: string;
|
|
32138
|
+
format: string;
|
|
32139
|
+
type: string;
|
|
32140
|
+
};
|
|
32136
32141
|
features: {
|
|
32137
32142
|
default: {};
|
|
32138
32143
|
properties: {
|
|
@@ -32150,11 +32155,6 @@ declare const _default: {
|
|
|
32150
32155
|
description: string;
|
|
32151
32156
|
type: string;
|
|
32152
32157
|
};
|
|
32153
|
-
customization_profile_id: {
|
|
32154
|
-
description: string;
|
|
32155
|
-
format: string;
|
|
32156
|
-
type: string;
|
|
32157
|
-
};
|
|
32158
32158
|
exclude: {
|
|
32159
32159
|
default: boolean;
|
|
32160
32160
|
description: string;
|
|
@@ -32456,6 +32456,11 @@ declare const _default: {
|
|
|
32456
32456
|
};
|
|
32457
32457
|
type: string;
|
|
32458
32458
|
};
|
|
32459
|
+
locale: {
|
|
32460
|
+
description: string;
|
|
32461
|
+
enum: string[];
|
|
32462
|
+
type: string;
|
|
32463
|
+
};
|
|
32459
32464
|
customer_data?: never;
|
|
32460
32465
|
};
|
|
32461
32466
|
type: string;
|
|
@@ -33237,9 +33242,11 @@ declare const _default: {
|
|
|
33237
33242
|
required: string[];
|
|
33238
33243
|
type: string;
|
|
33239
33244
|
};
|
|
33245
|
+
customization_profile_id?: never;
|
|
33240
33246
|
features?: never;
|
|
33241
33247
|
is_embedded?: never;
|
|
33242
33248
|
landing_page?: never;
|
|
33249
|
+
locale?: never;
|
|
33243
33250
|
};
|
|
33244
33251
|
type: string;
|
|
33245
33252
|
default?: never;
|
|
@@ -44656,6 +44663,11 @@ declare const _default: {
|
|
|
44656
44663
|
enum: string[];
|
|
44657
44664
|
type: string;
|
|
44658
44665
|
};
|
|
44666
|
+
customization_profile_id: {
|
|
44667
|
+
description: string;
|
|
44668
|
+
format: string;
|
|
44669
|
+
type: string;
|
|
44670
|
+
};
|
|
44659
44671
|
features: {
|
|
44660
44672
|
default: {
|
|
44661
44673
|
$ref: string;
|
|
@@ -44677,11 +44689,6 @@ declare const _default: {
|
|
|
44677
44689
|
description: string;
|
|
44678
44690
|
type: string;
|
|
44679
44691
|
};
|
|
44680
|
-
customization_profile_id: {
|
|
44681
|
-
description: string;
|
|
44682
|
-
format: string;
|
|
44683
|
-
type: string;
|
|
44684
|
-
};
|
|
44685
44692
|
exclude: {
|
|
44686
44693
|
default: boolean;
|
|
44687
44694
|
description: string;
|
|
@@ -44991,6 +44998,11 @@ declare const _default: {
|
|
|
44991
44998
|
};
|
|
44992
44999
|
type: string;
|
|
44993
45000
|
};
|
|
45001
|
+
locale: {
|
|
45002
|
+
description: string;
|
|
45003
|
+
enum: string[];
|
|
45004
|
+
type: string;
|
|
45005
|
+
};
|
|
44994
45006
|
};
|
|
44995
45007
|
type: string;
|
|
44996
45008
|
};
|
|
@@ -45057,6 +45069,11 @@ declare const _default: {
|
|
|
45057
45069
|
enum: string[];
|
|
45058
45070
|
type: string;
|
|
45059
45071
|
};
|
|
45072
|
+
customization_profile_id: {
|
|
45073
|
+
description: string;
|
|
45074
|
+
format: string;
|
|
45075
|
+
type: string;
|
|
45076
|
+
};
|
|
45060
45077
|
features: {
|
|
45061
45078
|
default: {
|
|
45062
45079
|
$ref: string;
|
|
@@ -45078,11 +45095,6 @@ declare const _default: {
|
|
|
45078
45095
|
description: string;
|
|
45079
45096
|
type: string;
|
|
45080
45097
|
};
|
|
45081
|
-
customization_profile_id: {
|
|
45082
|
-
description: string;
|
|
45083
|
-
format: string;
|
|
45084
|
-
type: string;
|
|
45085
|
-
};
|
|
45086
45098
|
exclude: {
|
|
45087
45099
|
default: boolean;
|
|
45088
45100
|
description: string;
|
|
@@ -45392,6 +45404,11 @@ declare const _default: {
|
|
|
45392
45404
|
};
|
|
45393
45405
|
type: string;
|
|
45394
45406
|
};
|
|
45407
|
+
locale: {
|
|
45408
|
+
description: string;
|
|
45409
|
+
enum: string[];
|
|
45410
|
+
type: string;
|
|
45411
|
+
};
|
|
45395
45412
|
};
|
|
45396
45413
|
type: string;
|
|
45397
45414
|
};
|
|
@@ -37452,6 +37452,11 @@ export default {
|
|
|
37452
37452
|
},
|
|
37453
37453
|
description: 'Configuration for a customer portal',
|
|
37454
37454
|
properties: {
|
|
37455
|
+
customization_profile_id: {
|
|
37456
|
+
description: 'The ID of the customization profile to use for the portal.',
|
|
37457
|
+
format: 'uuid',
|
|
37458
|
+
type: 'string',
|
|
37459
|
+
},
|
|
37455
37460
|
features: {
|
|
37456
37461
|
default: {},
|
|
37457
37462
|
properties: {
|
|
@@ -37469,11 +37474,6 @@ export default {
|
|
|
37469
37474
|
description: 'Indicates whether the customer can customize the Instant Key profile for their properties.',
|
|
37470
37475
|
type: 'boolean',
|
|
37471
37476
|
},
|
|
37472
|
-
customization_profile_id: {
|
|
37473
|
-
description: 'The ID of the customization profile to use for the portal.',
|
|
37474
|
-
format: 'uuid',
|
|
37475
|
-
type: 'string',
|
|
37476
|
-
},
|
|
37477
37477
|
exclude: {
|
|
37478
37478
|
default: false,
|
|
37479
37479
|
description: 'Whether to exclude this feature from the portal.',
|
|
@@ -37667,6 +37667,11 @@ export default {
|
|
|
37667
37667
|
},
|
|
37668
37668
|
type: 'object',
|
|
37669
37669
|
},
|
|
37670
|
+
locale: {
|
|
37671
|
+
description: 'The locale to use for the portal.',
|
|
37672
|
+
enum: ['en-US', 'pt-PT'],
|
|
37673
|
+
type: 'string',
|
|
37674
|
+
},
|
|
37670
37675
|
},
|
|
37671
37676
|
type: 'object',
|
|
37672
37677
|
},
|
|
@@ -49706,6 +49711,11 @@ export default {
|
|
|
49706
49711
|
],
|
|
49707
49712
|
type: 'string',
|
|
49708
49713
|
},
|
|
49714
|
+
customization_profile_id: {
|
|
49715
|
+
description: 'The ID of the customization profile to use for the portal.',
|
|
49716
|
+
format: 'uuid',
|
|
49717
|
+
type: 'string',
|
|
49718
|
+
},
|
|
49709
49719
|
features: {
|
|
49710
49720
|
default: { $ref: '#/components/schemas/access_code' },
|
|
49711
49721
|
properties: {
|
|
@@ -49725,11 +49735,6 @@ export default {
|
|
|
49725
49735
|
description: 'Indicates whether the customer can customize the Instant Key profile for their properties.',
|
|
49726
49736
|
type: 'boolean',
|
|
49727
49737
|
},
|
|
49728
|
-
customization_profile_id: {
|
|
49729
|
-
description: 'The ID of the customization profile to use for the portal.',
|
|
49730
|
-
format: 'uuid',
|
|
49731
|
-
type: 'string',
|
|
49732
|
-
},
|
|
49733
49738
|
exclude: {
|
|
49734
49739
|
default: false,
|
|
49735
49740
|
description: 'Whether to exclude this feature from the portal.',
|
|
@@ -49933,6 +49938,11 @@ export default {
|
|
|
49933
49938
|
},
|
|
49934
49939
|
type: 'object',
|
|
49935
49940
|
},
|
|
49941
|
+
locale: {
|
|
49942
|
+
description: 'The locale to use for the portal.',
|
|
49943
|
+
enum: ['en-US', 'pt-PT'],
|
|
49944
|
+
type: 'string',
|
|
49945
|
+
},
|
|
49936
49946
|
},
|
|
49937
49947
|
type: 'object',
|
|
49938
49948
|
},
|
|
@@ -49997,6 +50007,11 @@ export default {
|
|
|
49997
50007
|
],
|
|
49998
50008
|
type: 'string',
|
|
49999
50009
|
},
|
|
50010
|
+
customization_profile_id: {
|
|
50011
|
+
description: 'The ID of the customization profile to use for the portal.',
|
|
50012
|
+
format: 'uuid',
|
|
50013
|
+
type: 'string',
|
|
50014
|
+
},
|
|
50000
50015
|
features: {
|
|
50001
50016
|
default: { $ref: '#/components/schemas/access_code' },
|
|
50002
50017
|
properties: {
|
|
@@ -50016,11 +50031,6 @@ export default {
|
|
|
50016
50031
|
description: 'Indicates whether the customer can customize the Instant Key profile for their properties.',
|
|
50017
50032
|
type: 'boolean',
|
|
50018
50033
|
},
|
|
50019
|
-
customization_profile_id: {
|
|
50020
|
-
description: 'The ID of the customization profile to use for the portal.',
|
|
50021
|
-
format: 'uuid',
|
|
50022
|
-
type: 'string',
|
|
50023
|
-
},
|
|
50024
50034
|
exclude: {
|
|
50025
50035
|
default: false,
|
|
50026
50036
|
description: 'Whether to exclude this feature from the portal.',
|
|
@@ -50224,6 +50234,11 @@ export default {
|
|
|
50224
50234
|
},
|
|
50225
50235
|
type: 'object',
|
|
50226
50236
|
},
|
|
50237
|
+
locale: {
|
|
50238
|
+
description: 'The locale to use for the portal.',
|
|
50239
|
+
enum: ['en-US', 'pt-PT'],
|
|
50240
|
+
type: 'string',
|
|
50241
|
+
},
|
|
50227
50242
|
},
|
|
50228
50243
|
type: 'object',
|
|
50229
50244
|
},
|