@seamapi/types 1.650.0 → 1.652.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 +92 -54
- package/dist/connect.cjs.map +1 -1
- package/dist/connect.d.cts +99 -55
- package/dist/index.cjs +92 -54
- 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 +11 -5
- package/lib/seam/connect/models/customer/customer-portal.js.map +1 -1
- package/lib/seam/connect/openapi.d.ts +83 -45
- package/lib/seam/connect/openapi.js +89 -51
- package/lib/seam/connect/openapi.js.map +1 -1
- package/lib/seam/connect/route-types.d.ts +16 -10
- package/package.json +1 -1
- package/src/lib/seam/connect/models/customer/customer-portal.ts +11 -5
- package/src/lib/seam/connect/openapi.ts +92 -54
- package/src/lib/seam/connect/route-types.ts +16 -10
|
@@ -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.ZodDefault<z.ZodOptional<z.ZodEnum<["en-US", "pt-PT", "auto"]>>>;
|
|
244
|
+
customization_profile_id: z.ZodOptional<z.ZodString>;
|
|
248
245
|
}, "strip", z.ZodTypeAny, {
|
|
249
246
|
features: {
|
|
250
247
|
connect: {
|
|
@@ -267,10 +264,11 @@ 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
|
+
locale: "auto" | "en-US" | "pt-PT";
|
|
271
|
+
customization_profile_id?: string | undefined;
|
|
274
272
|
landing_page?: {
|
|
275
273
|
manage?: {
|
|
276
274
|
reservation_key: string;
|
|
@@ -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?: "auto" | "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.ZodDefault<z.ZodOptional<z.ZodEnum<["en-US", "pt-PT", "auto"]>>>;
|
|
600
|
+
customization_profile_id: z.ZodOptional<z.ZodString>;
|
|
605
601
|
}, "strip", z.ZodTypeAny, {
|
|
606
602
|
features: {
|
|
607
603
|
connect: {
|
|
@@ -624,10 +620,11 @@ 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
|
+
locale: "auto" | "en-US" | "pt-PT";
|
|
627
|
+
customization_profile_id?: string | undefined;
|
|
631
628
|
landing_page?: {
|
|
632
629
|
manage?: {
|
|
633
630
|
reservation_key: string;
|
|
@@ -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?: "auto" | "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,16 @@ 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', 'auto'])
|
|
78
|
+
.optional()
|
|
79
|
+
.default('auto')
|
|
80
|
+
.describe('The locale to use for the portal.'),
|
|
81
|
+
customization_profile_id: z
|
|
82
|
+
.string()
|
|
83
|
+
.uuid()
|
|
84
|
+
.optional()
|
|
85
|
+
.describe('The ID of the customization profile to use for the portal.'),
|
|
81
86
|
});
|
|
82
87
|
export const portal_configuration = portal_configuration_base
|
|
83
88
|
.default({
|
|
@@ -99,6 +104,7 @@ export const portal_configuration = portal_configuration_base
|
|
|
99
104
|
},
|
|
100
105
|
},
|
|
101
106
|
is_embedded: false,
|
|
107
|
+
locale: 'auto',
|
|
102
108
|
})
|
|
103
109
|
.describe(`Configuration for a customer portal`);
|
|
104
110
|
//# 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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"}
|
|
@@ -32130,9 +32130,15 @@ declare const _default: {
|
|
|
32130
32130
|
};
|
|
32131
32131
|
};
|
|
32132
32132
|
is_embedded: boolean;
|
|
32133
|
+
locale: string;
|
|
32133
32134
|
};
|
|
32134
32135
|
description: string;
|
|
32135
32136
|
properties: {
|
|
32137
|
+
customization_profile_id: {
|
|
32138
|
+
description: string;
|
|
32139
|
+
format: string;
|
|
32140
|
+
type: string;
|
|
32141
|
+
};
|
|
32136
32142
|
features: {
|
|
32137
32143
|
default: {};
|
|
32138
32144
|
properties: {
|
|
@@ -32150,11 +32156,6 @@ declare const _default: {
|
|
|
32150
32156
|
description: string;
|
|
32151
32157
|
type: string;
|
|
32152
32158
|
};
|
|
32153
|
-
customization_profile_id: {
|
|
32154
|
-
description: string;
|
|
32155
|
-
format: string;
|
|
32156
|
-
type: string;
|
|
32157
|
-
};
|
|
32158
32159
|
exclude: {
|
|
32159
32160
|
default: boolean;
|
|
32160
32161
|
description: string;
|
|
@@ -32456,6 +32457,12 @@ declare const _default: {
|
|
|
32456
32457
|
};
|
|
32457
32458
|
type: string;
|
|
32458
32459
|
};
|
|
32460
|
+
locale: {
|
|
32461
|
+
default: string;
|
|
32462
|
+
description: string;
|
|
32463
|
+
enum: string[];
|
|
32464
|
+
type: string;
|
|
32465
|
+
};
|
|
32459
32466
|
customer_data?: never;
|
|
32460
32467
|
};
|
|
32461
32468
|
type: string;
|
|
@@ -33237,9 +33244,11 @@ declare const _default: {
|
|
|
33237
33244
|
required: string[];
|
|
33238
33245
|
type: string;
|
|
33239
33246
|
};
|
|
33247
|
+
customization_profile_id?: never;
|
|
33240
33248
|
features?: never;
|
|
33241
33249
|
is_embedded?: never;
|
|
33242
33250
|
landing_page?: never;
|
|
33251
|
+
locale?: never;
|
|
33243
33252
|
};
|
|
33244
33253
|
type: string;
|
|
33245
33254
|
default?: never;
|
|
@@ -43581,23 +43590,29 @@ declare const _default: {
|
|
|
43581
43590
|
display_name: {
|
|
43582
43591
|
type: string;
|
|
43583
43592
|
};
|
|
43584
|
-
|
|
43585
|
-
|
|
43586
|
-
|
|
43587
|
-
|
|
43588
|
-
|
|
43589
|
-
|
|
43590
|
-
|
|
43591
|
-
|
|
43592
|
-
|
|
43593
|
-
|
|
43594
|
-
|
|
43595
|
-
|
|
43596
|
-
|
|
43597
|
-
|
|
43593
|
+
editable_fields: {
|
|
43594
|
+
items: {
|
|
43595
|
+
properties: {
|
|
43596
|
+
description: {
|
|
43597
|
+
type: string;
|
|
43598
|
+
};
|
|
43599
|
+
display_name: {
|
|
43600
|
+
type: string;
|
|
43601
|
+
};
|
|
43602
|
+
name: {
|
|
43603
|
+
type: string;
|
|
43604
|
+
};
|
|
43605
|
+
required: {
|
|
43606
|
+
type: string;
|
|
43607
|
+
};
|
|
43608
|
+
type: {
|
|
43609
|
+
enum: string[];
|
|
43610
|
+
type: string;
|
|
43611
|
+
};
|
|
43598
43612
|
};
|
|
43613
|
+
required: string[];
|
|
43614
|
+
type: string;
|
|
43599
43615
|
};
|
|
43600
|
-
required: string[];
|
|
43601
43616
|
type: string;
|
|
43602
43617
|
};
|
|
43603
43618
|
};
|
|
@@ -43667,23 +43682,29 @@ declare const _default: {
|
|
|
43667
43682
|
display_name: {
|
|
43668
43683
|
type: string;
|
|
43669
43684
|
};
|
|
43670
|
-
|
|
43671
|
-
|
|
43672
|
-
|
|
43673
|
-
|
|
43674
|
-
|
|
43675
|
-
|
|
43676
|
-
|
|
43677
|
-
|
|
43678
|
-
|
|
43679
|
-
|
|
43680
|
-
|
|
43681
|
-
|
|
43682
|
-
|
|
43683
|
-
|
|
43685
|
+
editable_fields: {
|
|
43686
|
+
items: {
|
|
43687
|
+
properties: {
|
|
43688
|
+
description: {
|
|
43689
|
+
type: string;
|
|
43690
|
+
};
|
|
43691
|
+
display_name: {
|
|
43692
|
+
type: string;
|
|
43693
|
+
};
|
|
43694
|
+
name: {
|
|
43695
|
+
type: string;
|
|
43696
|
+
};
|
|
43697
|
+
required: {
|
|
43698
|
+
type: string;
|
|
43699
|
+
};
|
|
43700
|
+
type: {
|
|
43701
|
+
enum: string[];
|
|
43702
|
+
type: string;
|
|
43703
|
+
};
|
|
43684
43704
|
};
|
|
43705
|
+
required: string[];
|
|
43706
|
+
type: string;
|
|
43685
43707
|
};
|
|
43686
|
-
required: string[];
|
|
43687
43708
|
type: string;
|
|
43688
43709
|
};
|
|
43689
43710
|
};
|
|
@@ -44193,6 +44214,7 @@ declare const _default: {
|
|
|
44193
44214
|
client_token?: never;
|
|
44194
44215
|
enterprise_id?: never;
|
|
44195
44216
|
enterprise_ids?: never;
|
|
44217
|
+
auth_token?: never;
|
|
44196
44218
|
client_id?: never;
|
|
44197
44219
|
client_password?: never;
|
|
44198
44220
|
property_id?: never;
|
|
@@ -44223,6 +44245,7 @@ declare const _default: {
|
|
|
44223
44245
|
};
|
|
44224
44246
|
type: string;
|
|
44225
44247
|
};
|
|
44248
|
+
auth_token?: never;
|
|
44226
44249
|
client_id?: never;
|
|
44227
44250
|
client_password?: never;
|
|
44228
44251
|
property_id?: never;
|
|
@@ -44231,6 +44254,9 @@ declare const _default: {
|
|
|
44231
44254
|
required?: never;
|
|
44232
44255
|
} | {
|
|
44233
44256
|
properties: {
|
|
44257
|
+
auth_token: {
|
|
44258
|
+
type: string;
|
|
44259
|
+
};
|
|
44234
44260
|
client_id: {
|
|
44235
44261
|
description: string;
|
|
44236
44262
|
minLength: number;
|
|
@@ -44639,6 +44665,11 @@ declare const _default: {
|
|
|
44639
44665
|
enum: string[];
|
|
44640
44666
|
type: string;
|
|
44641
44667
|
};
|
|
44668
|
+
customization_profile_id: {
|
|
44669
|
+
description: string;
|
|
44670
|
+
format: string;
|
|
44671
|
+
type: string;
|
|
44672
|
+
};
|
|
44642
44673
|
features: {
|
|
44643
44674
|
default: {
|
|
44644
44675
|
$ref: string;
|
|
@@ -44660,11 +44691,6 @@ declare const _default: {
|
|
|
44660
44691
|
description: string;
|
|
44661
44692
|
type: string;
|
|
44662
44693
|
};
|
|
44663
|
-
customization_profile_id: {
|
|
44664
|
-
description: string;
|
|
44665
|
-
format: string;
|
|
44666
|
-
type: string;
|
|
44667
|
-
};
|
|
44668
44694
|
exclude: {
|
|
44669
44695
|
default: boolean;
|
|
44670
44696
|
description: string;
|
|
@@ -44974,6 +45000,12 @@ declare const _default: {
|
|
|
44974
45000
|
};
|
|
44975
45001
|
type: string;
|
|
44976
45002
|
};
|
|
45003
|
+
locale: {
|
|
45004
|
+
default: string;
|
|
45005
|
+
description: string;
|
|
45006
|
+
enum: string[];
|
|
45007
|
+
type: string;
|
|
45008
|
+
};
|
|
44977
45009
|
};
|
|
44978
45010
|
type: string;
|
|
44979
45011
|
};
|
|
@@ -45040,6 +45072,11 @@ declare const _default: {
|
|
|
45040
45072
|
enum: string[];
|
|
45041
45073
|
type: string;
|
|
45042
45074
|
};
|
|
45075
|
+
customization_profile_id: {
|
|
45076
|
+
description: string;
|
|
45077
|
+
format: string;
|
|
45078
|
+
type: string;
|
|
45079
|
+
};
|
|
45043
45080
|
features: {
|
|
45044
45081
|
default: {
|
|
45045
45082
|
$ref: string;
|
|
@@ -45061,11 +45098,6 @@ declare const _default: {
|
|
|
45061
45098
|
description: string;
|
|
45062
45099
|
type: string;
|
|
45063
45100
|
};
|
|
45064
|
-
customization_profile_id: {
|
|
45065
|
-
description: string;
|
|
45066
|
-
format: string;
|
|
45067
|
-
type: string;
|
|
45068
|
-
};
|
|
45069
45101
|
exclude: {
|
|
45070
45102
|
default: boolean;
|
|
45071
45103
|
description: string;
|
|
@@ -45375,6 +45407,12 @@ declare const _default: {
|
|
|
45375
45407
|
};
|
|
45376
45408
|
type: string;
|
|
45377
45409
|
};
|
|
45410
|
+
locale: {
|
|
45411
|
+
default: string;
|
|
45412
|
+
description: string;
|
|
45413
|
+
enum: string[];
|
|
45414
|
+
type: string;
|
|
45415
|
+
};
|
|
45378
45416
|
};
|
|
45379
45417
|
type: string;
|
|
45380
45418
|
};
|