@seamapi/types 1.597.0 → 1.599.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.
@@ -1,4 +1,347 @@
1
1
  import { z } from 'zod';
2
+ export declare const portal_configuration_base: z.ZodObject<{
3
+ features: z.ZodDefault<z.ZodObject<{
4
+ connect: z.ZodDefault<z.ZodObject<{
5
+ exclude: z.ZodDefault<z.ZodBoolean>;
6
+ } & {
7
+ accepted_providers: z.ZodOptional<z.ZodArray<z.ZodString, "many">>;
8
+ excluded_providers: z.ZodOptional<z.ZodArray<z.ZodString, "many">>;
9
+ }, "strip", z.ZodTypeAny, {
10
+ exclude: boolean;
11
+ accepted_providers?: string[] | undefined;
12
+ excluded_providers?: string[] | undefined;
13
+ }, {
14
+ accepted_providers?: string[] | undefined;
15
+ exclude?: boolean | undefined;
16
+ excluded_providers?: string[] | undefined;
17
+ }>>;
18
+ manage: z.ZodDefault<z.ZodObject<{
19
+ exclude: z.ZodDefault<z.ZodBoolean>;
20
+ } & {
21
+ exclude_reservation_management: z.ZodDefault<z.ZodBoolean>;
22
+ }, "strip", z.ZodTypeAny, {
23
+ exclude: boolean;
24
+ exclude_reservation_management: boolean;
25
+ }, {
26
+ exclude?: boolean | undefined;
27
+ exclude_reservation_management?: boolean | undefined;
28
+ }>>;
29
+ manage_devices: z.ZodDefault<z.ZodObject<{
30
+ exclude: z.ZodDefault<z.ZodBoolean>;
31
+ }, "strip", z.ZodTypeAny, {
32
+ exclude: boolean;
33
+ }, {
34
+ exclude?: boolean | undefined;
35
+ }>>;
36
+ organize: z.ZodDefault<z.ZodObject<{
37
+ exclude: z.ZodDefault<z.ZodBoolean>;
38
+ }, "strip", z.ZodTypeAny, {
39
+ exclude: boolean;
40
+ }, {
41
+ exclude?: boolean | undefined;
42
+ }>>;
43
+ configure: z.ZodDefault<z.ZodObject<{
44
+ exclude: z.ZodDefault<z.ZodBoolean>;
45
+ } & {
46
+ allow_access_automation_rule_customization: z.ZodDefault<z.ZodBoolean>;
47
+ allow_instant_key_customization: z.ZodDefault<z.ZodBoolean>;
48
+ }, "strip", z.ZodTypeAny, {
49
+ exclude: boolean;
50
+ allow_access_automation_rule_customization: boolean;
51
+ allow_instant_key_customization: boolean;
52
+ }, {
53
+ exclude?: boolean | undefined;
54
+ allow_access_automation_rule_customization?: boolean | undefined;
55
+ allow_instant_key_customization?: boolean | undefined;
56
+ }>>;
57
+ }, "strip", z.ZodTypeAny, {
58
+ connect: {
59
+ exclude: boolean;
60
+ accepted_providers?: string[] | undefined;
61
+ excluded_providers?: string[] | undefined;
62
+ };
63
+ manage: {
64
+ exclude: boolean;
65
+ exclude_reservation_management: boolean;
66
+ };
67
+ manage_devices: {
68
+ exclude: boolean;
69
+ };
70
+ organize: {
71
+ exclude: boolean;
72
+ };
73
+ configure: {
74
+ exclude: boolean;
75
+ allow_access_automation_rule_customization: boolean;
76
+ allow_instant_key_customization: boolean;
77
+ };
78
+ }, {
79
+ connect?: {
80
+ accepted_providers?: string[] | undefined;
81
+ exclude?: boolean | undefined;
82
+ excluded_providers?: string[] | undefined;
83
+ } | undefined;
84
+ manage?: {
85
+ exclude?: boolean | undefined;
86
+ exclude_reservation_management?: boolean | undefined;
87
+ } | undefined;
88
+ manage_devices?: {
89
+ exclude?: boolean | undefined;
90
+ } | undefined;
91
+ organize?: {
92
+ exclude?: boolean | undefined;
93
+ } | undefined;
94
+ configure?: {
95
+ exclude?: boolean | undefined;
96
+ allow_access_automation_rule_customization?: boolean | undefined;
97
+ allow_instant_key_customization?: boolean | undefined;
98
+ } | undefined;
99
+ }>>;
100
+ is_embedded: z.ZodDefault<z.ZodBoolean>;
101
+ landing_page: z.ZodOptional<z.ZodObject<{
102
+ manage: z.ZodOptional<z.ZodUnion<[z.ZodUnion<[z.ZodObject<{
103
+ space_key: z.ZodString;
104
+ }, "strip", z.ZodTypeAny, {
105
+ space_key: string;
106
+ }, {
107
+ space_key: string;
108
+ }>, z.ZodObject<{
109
+ property_key: z.ZodString;
110
+ }, "strip", z.ZodTypeAny, {
111
+ property_key: string;
112
+ }, {
113
+ property_key: string;
114
+ }>, z.ZodObject<{
115
+ room_key: z.ZodString;
116
+ }, "strip", z.ZodTypeAny, {
117
+ room_key: string;
118
+ }, {
119
+ room_key: string;
120
+ }>, z.ZodObject<{
121
+ common_area_key: z.ZodString;
122
+ }, "strip", z.ZodTypeAny, {
123
+ common_area_key: string;
124
+ }, {
125
+ common_area_key: string;
126
+ }>, z.ZodObject<{
127
+ unit_key: z.ZodString;
128
+ }, "strip", z.ZodTypeAny, {
129
+ unit_key: string;
130
+ }, {
131
+ unit_key: string;
132
+ }>, z.ZodObject<{
133
+ facility_key: z.ZodString;
134
+ }, "strip", z.ZodTypeAny, {
135
+ facility_key: string;
136
+ }, {
137
+ facility_key: string;
138
+ }>, z.ZodObject<{
139
+ building_key: z.ZodString;
140
+ }, "strip", z.ZodTypeAny, {
141
+ building_key: string;
142
+ }, {
143
+ building_key: string;
144
+ }>, z.ZodObject<{
145
+ listing_key: z.ZodString;
146
+ }, "strip", z.ZodTypeAny, {
147
+ listing_key: string;
148
+ }, {
149
+ listing_key: string;
150
+ }>, z.ZodObject<{
151
+ property_listing_key: z.ZodString;
152
+ }, "strip", z.ZodTypeAny, {
153
+ property_listing_key: string;
154
+ }, {
155
+ property_listing_key: string;
156
+ }>, z.ZodObject<{
157
+ site_key: z.ZodString;
158
+ }, "strip", z.ZodTypeAny, {
159
+ site_key: string;
160
+ }, {
161
+ site_key: string;
162
+ }>]>, z.ZodUnion<[z.ZodObject<{
163
+ reservation_key: z.ZodString;
164
+ }, "strip", z.ZodTypeAny, {
165
+ reservation_key: string;
166
+ }, {
167
+ reservation_key: string;
168
+ }>, z.ZodObject<{
169
+ booking_key: z.ZodString;
170
+ }, "strip", z.ZodTypeAny, {
171
+ booking_key: string;
172
+ }, {
173
+ booking_key: string;
174
+ }>, z.ZodObject<{
175
+ access_grant_key: z.ZodString;
176
+ }, "strip", z.ZodTypeAny, {
177
+ access_grant_key: string;
178
+ }, {
179
+ access_grant_key: string;
180
+ }>]>]>>;
181
+ }, "strip", z.ZodTypeAny, {
182
+ manage?: {
183
+ reservation_key: string;
184
+ } | {
185
+ booking_key: string;
186
+ } | {
187
+ access_grant_key: string;
188
+ } | {
189
+ space_key: string;
190
+ } | {
191
+ property_key: string;
192
+ } | {
193
+ room_key: string;
194
+ } | {
195
+ common_area_key: string;
196
+ } | {
197
+ unit_key: string;
198
+ } | {
199
+ facility_key: string;
200
+ } | {
201
+ building_key: string;
202
+ } | {
203
+ listing_key: string;
204
+ } | {
205
+ property_listing_key: string;
206
+ } | {
207
+ site_key: string;
208
+ } | undefined;
209
+ }, {
210
+ manage?: {
211
+ reservation_key: string;
212
+ } | {
213
+ booking_key: string;
214
+ } | {
215
+ access_grant_key: string;
216
+ } | {
217
+ space_key: string;
218
+ } | {
219
+ property_key: string;
220
+ } | {
221
+ room_key: string;
222
+ } | {
223
+ common_area_key: string;
224
+ } | {
225
+ unit_key: string;
226
+ } | {
227
+ facility_key: string;
228
+ } | {
229
+ building_key: string;
230
+ } | {
231
+ listing_key: string;
232
+ } | {
233
+ property_listing_key: string;
234
+ } | {
235
+ site_key: string;
236
+ } | undefined;
237
+ }>>;
238
+ }, "strip", z.ZodTypeAny, {
239
+ features: {
240
+ connect: {
241
+ exclude: boolean;
242
+ accepted_providers?: string[] | undefined;
243
+ excluded_providers?: string[] | undefined;
244
+ };
245
+ manage: {
246
+ exclude: boolean;
247
+ exclude_reservation_management: boolean;
248
+ };
249
+ manage_devices: {
250
+ exclude: boolean;
251
+ };
252
+ organize: {
253
+ exclude: boolean;
254
+ };
255
+ configure: {
256
+ exclude: boolean;
257
+ allow_access_automation_rule_customization: boolean;
258
+ allow_instant_key_customization: boolean;
259
+ };
260
+ };
261
+ is_embedded: boolean;
262
+ landing_page?: {
263
+ manage?: {
264
+ reservation_key: string;
265
+ } | {
266
+ booking_key: string;
267
+ } | {
268
+ access_grant_key: string;
269
+ } | {
270
+ space_key: string;
271
+ } | {
272
+ property_key: string;
273
+ } | {
274
+ room_key: string;
275
+ } | {
276
+ common_area_key: string;
277
+ } | {
278
+ unit_key: string;
279
+ } | {
280
+ facility_key: string;
281
+ } | {
282
+ building_key: string;
283
+ } | {
284
+ listing_key: string;
285
+ } | {
286
+ property_listing_key: string;
287
+ } | {
288
+ site_key: string;
289
+ } | undefined;
290
+ } | undefined;
291
+ }, {
292
+ features?: {
293
+ connect?: {
294
+ accepted_providers?: string[] | undefined;
295
+ exclude?: boolean | undefined;
296
+ excluded_providers?: string[] | undefined;
297
+ } | undefined;
298
+ manage?: {
299
+ exclude?: boolean | undefined;
300
+ exclude_reservation_management?: boolean | undefined;
301
+ } | undefined;
302
+ manage_devices?: {
303
+ exclude?: boolean | undefined;
304
+ } | undefined;
305
+ organize?: {
306
+ exclude?: boolean | undefined;
307
+ } | undefined;
308
+ configure?: {
309
+ exclude?: boolean | undefined;
310
+ allow_access_automation_rule_customization?: boolean | undefined;
311
+ allow_instant_key_customization?: boolean | undefined;
312
+ } | undefined;
313
+ } | undefined;
314
+ is_embedded?: boolean | undefined;
315
+ landing_page?: {
316
+ manage?: {
317
+ reservation_key: string;
318
+ } | {
319
+ booking_key: string;
320
+ } | {
321
+ access_grant_key: string;
322
+ } | {
323
+ space_key: string;
324
+ } | {
325
+ property_key: string;
326
+ } | {
327
+ room_key: string;
328
+ } | {
329
+ common_area_key: string;
330
+ } | {
331
+ unit_key: string;
332
+ } | {
333
+ facility_key: string;
334
+ } | {
335
+ building_key: string;
336
+ } | {
337
+ listing_key: string;
338
+ } | {
339
+ property_listing_key: string;
340
+ } | {
341
+ site_key: string;
342
+ } | undefined;
343
+ } | undefined;
344
+ }>;
2
345
  export declare const portal_configuration: z.ZodDefault<z.ZodObject<{
3
346
  features: z.ZodDefault<z.ZodObject<{
4
347
  connect: z.ZodDefault<z.ZodObject<{
@@ -15,6 +358,17 @@ export declare const portal_configuration: z.ZodDefault<z.ZodObject<{
15
358
  exclude?: boolean | undefined;
16
359
  excluded_providers?: string[] | undefined;
17
360
  }>>;
361
+ manage: z.ZodDefault<z.ZodObject<{
362
+ exclude: z.ZodDefault<z.ZodBoolean>;
363
+ } & {
364
+ exclude_reservation_management: z.ZodDefault<z.ZodBoolean>;
365
+ }, "strip", z.ZodTypeAny, {
366
+ exclude: boolean;
367
+ exclude_reservation_management: boolean;
368
+ }, {
369
+ exclude?: boolean | undefined;
370
+ exclude_reservation_management?: boolean | undefined;
371
+ }>>;
18
372
  manage_devices: z.ZodDefault<z.ZodObject<{
19
373
  exclude: z.ZodDefault<z.ZodBoolean>;
20
374
  }, "strip", z.ZodTypeAny, {
@@ -49,6 +403,10 @@ export declare const portal_configuration: z.ZodDefault<z.ZodObject<{
49
403
  accepted_providers?: string[] | undefined;
50
404
  excluded_providers?: string[] | undefined;
51
405
  };
406
+ manage: {
407
+ exclude: boolean;
408
+ exclude_reservation_management: boolean;
409
+ };
52
410
  manage_devices: {
53
411
  exclude: boolean;
54
412
  };
@@ -66,6 +424,10 @@ export declare const portal_configuration: z.ZodDefault<z.ZodObject<{
66
424
  exclude?: boolean | undefined;
67
425
  excluded_providers?: string[] | undefined;
68
426
  } | undefined;
427
+ manage?: {
428
+ exclude?: boolean | undefined;
429
+ exclude_reservation_management?: boolean | undefined;
430
+ } | undefined;
69
431
  manage_devices?: {
70
432
  exclude?: boolean | undefined;
71
433
  } | undefined;
@@ -223,6 +585,10 @@ export declare const portal_configuration: z.ZodDefault<z.ZodObject<{
223
585
  accepted_providers?: string[] | undefined;
224
586
  excluded_providers?: string[] | undefined;
225
587
  };
588
+ manage: {
589
+ exclude: boolean;
590
+ exclude_reservation_management: boolean;
591
+ };
226
592
  manage_devices: {
227
593
  exclude: boolean;
228
594
  };
@@ -272,6 +638,10 @@ export declare const portal_configuration: z.ZodDefault<z.ZodObject<{
272
638
  exclude?: boolean | undefined;
273
639
  excluded_providers?: string[] | undefined;
274
640
  } | undefined;
641
+ manage?: {
642
+ exclude?: boolean | undefined;
643
+ exclude_reservation_management?: boolean | undefined;
644
+ } | undefined;
275
645
  manage_devices?: {
276
646
  exclude?: boolean | undefined;
277
647
  } | undefined;
@@ -18,6 +18,12 @@ const base_connect_feature = base_feature.extend({
18
18
  .describe('List of provider keys to exclude from the connect feature. These providers will not be shown when the customer tries to connect an account.'),
19
19
  });
20
20
  const base_manage_devices_feature = base_feature;
21
+ const base_manage_feature = base_feature.extend({
22
+ exclude_reservation_management: z
23
+ .boolean()
24
+ .default(false)
25
+ .describe('Indicates whether the customer can manage reservations for their properties.'),
26
+ });
21
27
  const base_organize_feature = base_feature;
22
28
  const base_configure_feature = base_feature.extend({
23
29
  allow_access_automation_rule_customization: z
@@ -33,9 +39,15 @@ const base_features = z.object({
33
39
  connect: base_connect_feature
34
40
  .default({})
35
41
  .describe('Configuration for the connect accounts feature.'),
36
- manage_devices: base_manage_devices_feature
42
+ manage: base_manage_feature
37
43
  .default({})
38
- .describe('Configuration for the manage devices feature.'),
44
+ .describe('Configuration for the manage feature.'),
45
+ manage_devices: base_manage_devices_feature.default({}).describe(`
46
+ Configuration for the manage devices feature.
47
+ ---
48
+ deprecated: Use \`manage\` instead.
49
+ ---
50
+ `),
39
51
  organize: base_organize_feature
40
52
  .default({})
41
53
  .describe('Configuration for the organize feature.'),
@@ -43,8 +55,7 @@ const base_features = z.object({
43
55
  .default({})
44
56
  .describe('Configuration for the configure feature.'),
45
57
  });
46
- export const portal_configuration = z
47
- .object({
58
+ export const portal_configuration_base = z.object({
48
59
  features: base_features.default({}),
49
60
  is_embedded: z
50
61
  .boolean()
@@ -58,12 +69,16 @@ export const portal_configuration = z
58
69
  })
59
70
  .optional()
60
71
  .describe('Configuration for the landing page when the portal loads.'),
61
- })
72
+ });
73
+ export const portal_configuration = portal_configuration_base
62
74
  .default({
63
75
  features: {
64
76
  connect: { exclude: false },
65
77
  organize: { exclude: false },
66
- manage_devices: { exclude: false },
78
+ manage: { exclude: false, exclude_reservation_management: false },
79
+ manage_devices: {
80
+ exclude: false,
81
+ },
67
82
  configure: {
68
83
  exclude: false,
69
84
  allow_instant_key_customization: false, // default
@@ -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;AAChD,MAAM,qBAAqB,GAAG,YAAY,CAAA;AAE1C,MAAM,sBAAsB,GAAG,YAAY,CAAC,MAAM,CAAC;IACjD,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,cAAc,EAAE,2BAA2B;SACxC,OAAO,CAAC,EAAE,CAAC;SACX,QAAQ,CAAC,+CAA+C,CAAC;IAC5D,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,oBAAoB,GAAG,CAAC;KAClC,MAAM,CAAC;IACN,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;KACD,OAAO,CAAC;IACP,QAAQ,EAAE;QACR,OAAO,EAAE,EAAE,OAAO,EAAE,KAAK,EAAE;QAC3B,QAAQ,EAAE,EAAE,OAAO,EAAE,KAAK,EAAE;QAC5B,cAAc,EAAE,EAAE,OAAO,EAAE,KAAK,EAAE;QAClC,SAAS,EAAE;YACT,OAAO,EAAE,KAAK;YACd,+BAA+B,EAAE,KAAK,EAAE,UAAU;YAClD,0CAA0C,EAAE,KAAK,EAAE,UAAU;SAC9D;KACF;IACD,WAAW,EAAE,KAAK;CACnB,CAAC;KACD,QAAQ,CAAC,qCAAqC,CAAC,CAAA"}
1
+ {"version":3,"file":"customer-portal.js","sourceRoot":"","sources":["../../../../../src/lib/seam/connect/models/customer/customer-portal.ts"],"names":[],"mappings":"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"}