@seamapi/types 1.651.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.
@@ -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":"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"}
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;
@@ -44656,6 +44665,11 @@ declare const _default: {
44656
44665
  enum: string[];
44657
44666
  type: string;
44658
44667
  };
44668
+ customization_profile_id: {
44669
+ description: string;
44670
+ format: string;
44671
+ type: string;
44672
+ };
44659
44673
  features: {
44660
44674
  default: {
44661
44675
  $ref: string;
@@ -44677,11 +44691,6 @@ declare const _default: {
44677
44691
  description: string;
44678
44692
  type: string;
44679
44693
  };
44680
- customization_profile_id: {
44681
- description: string;
44682
- format: string;
44683
- type: string;
44684
- };
44685
44694
  exclude: {
44686
44695
  default: boolean;
44687
44696
  description: string;
@@ -44991,6 +45000,12 @@ declare const _default: {
44991
45000
  };
44992
45001
  type: string;
44993
45002
  };
45003
+ locale: {
45004
+ default: string;
45005
+ description: string;
45006
+ enum: string[];
45007
+ type: string;
45008
+ };
44994
45009
  };
44995
45010
  type: string;
44996
45011
  };
@@ -45057,6 +45072,11 @@ declare const _default: {
45057
45072
  enum: string[];
45058
45073
  type: string;
45059
45074
  };
45075
+ customization_profile_id: {
45076
+ description: string;
45077
+ format: string;
45078
+ type: string;
45079
+ };
45060
45080
  features: {
45061
45081
  default: {
45062
45082
  $ref: string;
@@ -45078,11 +45098,6 @@ declare const _default: {
45078
45098
  description: string;
45079
45099
  type: string;
45080
45100
  };
45081
- customization_profile_id: {
45082
- description: string;
45083
- format: string;
45084
- type: string;
45085
- };
45086
45101
  exclude: {
45087
45102
  default: boolean;
45088
45103
  description: string;
@@ -45392,6 +45407,12 @@ declare const _default: {
45392
45407
  };
45393
45408
  type: string;
45394
45409
  };
45410
+ locale: {
45411
+ default: string;
45412
+ description: string;
45413
+ enum: string[];
45414
+ type: string;
45415
+ };
45395
45416
  };
45396
45417
  type: string;
45397
45418
  };
@@ -37449,9 +37449,15 @@ export default {
37449
37449
  organize: { exclude: false },
37450
37450
  },
37451
37451
  is_embedded: false,
37452
+ locale: 'auto',
37452
37453
  },
37453
37454
  description: 'Configuration for a customer portal',
37454
37455
  properties: {
37456
+ customization_profile_id: {
37457
+ description: 'The ID of the customization profile to use for the portal.',
37458
+ format: 'uuid',
37459
+ type: 'string',
37460
+ },
37455
37461
  features: {
37456
37462
  default: {},
37457
37463
  properties: {
@@ -37469,11 +37475,6 @@ export default {
37469
37475
  description: 'Indicates whether the customer can customize the Instant Key profile for their properties.',
37470
37476
  type: 'boolean',
37471
37477
  },
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
37478
  exclude: {
37478
37479
  default: false,
37479
37480
  description: 'Whether to exclude this feature from the portal.',
@@ -37667,6 +37668,12 @@ export default {
37667
37668
  },
37668
37669
  type: 'object',
37669
37670
  },
37671
+ locale: {
37672
+ default: 'auto',
37673
+ description: 'The locale to use for the portal.',
37674
+ enum: ['en-US', 'pt-PT', 'auto'],
37675
+ type: 'string',
37676
+ },
37670
37677
  },
37671
37678
  type: 'object',
37672
37679
  },
@@ -49706,6 +49713,11 @@ export default {
49706
49713
  ],
49707
49714
  type: 'string',
49708
49715
  },
49716
+ customization_profile_id: {
49717
+ description: 'The ID of the customization profile to use for the portal.',
49718
+ format: 'uuid',
49719
+ type: 'string',
49720
+ },
49709
49721
  features: {
49710
49722
  default: { $ref: '#/components/schemas/access_code' },
49711
49723
  properties: {
@@ -49725,11 +49737,6 @@ export default {
49725
49737
  description: 'Indicates whether the customer can customize the Instant Key profile for their properties.',
49726
49738
  type: 'boolean',
49727
49739
  },
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
49740
  exclude: {
49734
49741
  default: false,
49735
49742
  description: 'Whether to exclude this feature from the portal.',
@@ -49933,6 +49940,12 @@ export default {
49933
49940
  },
49934
49941
  type: 'object',
49935
49942
  },
49943
+ locale: {
49944
+ default: 'auto',
49945
+ description: 'The locale to use for the portal.',
49946
+ enum: ['en-US', 'pt-PT', 'auto'],
49947
+ type: 'string',
49948
+ },
49936
49949
  },
49937
49950
  type: 'object',
49938
49951
  },
@@ -49997,6 +50010,11 @@ export default {
49997
50010
  ],
49998
50011
  type: 'string',
49999
50012
  },
50013
+ customization_profile_id: {
50014
+ description: 'The ID of the customization profile to use for the portal.',
50015
+ format: 'uuid',
50016
+ type: 'string',
50017
+ },
50000
50018
  features: {
50001
50019
  default: { $ref: '#/components/schemas/access_code' },
50002
50020
  properties: {
@@ -50016,11 +50034,6 @@ export default {
50016
50034
  description: 'Indicates whether the customer can customize the Instant Key profile for their properties.',
50017
50035
  type: 'boolean',
50018
50036
  },
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
50037
  exclude: {
50025
50038
  default: false,
50026
50039
  description: 'Whether to exclude this feature from the portal.',
@@ -50224,6 +50237,12 @@ export default {
50224
50237
  },
50225
50238
  type: 'object',
50226
50239
  },
50240
+ locale: {
50241
+ default: 'auto',
50242
+ description: 'The locale to use for the portal.',
50243
+ enum: ['en-US', 'pt-PT', 'auto'],
50244
+ type: 'string',
50245
+ },
50227
50246
  },
50228
50247
  type: 'object',
50229
50248
  },