@seamapi/types 1.619.0 → 1.620.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 +226 -10
- package/dist/connect.cjs.map +1 -1
- package/dist/connect.d.cts +332 -15
- package/dist/index.cjs +226 -10
- package/dist/index.cjs.map +1 -1
- package/lib/seam/connect/models/customer/customer-data.d.ts +50 -5
- package/lib/seam/connect/models/customer/user-identity-resources.d.ts +60 -6
- package/lib/seam/connect/models/customer/user-identity-resources.js +37 -0
- package/lib/seam/connect/models/customer/user-identity-resources.js.map +1 -1
- package/lib/seam/connect/openapi.d.ts +255 -2
- package/lib/seam/connect/openapi.js +198 -9
- package/lib/seam/connect/openapi.js.map +1 -1
- package/lib/seam/connect/route-types.d.ts +47 -10
- package/package.json +1 -1
- package/src/lib/seam/connect/models/customer/user-identity-resources.ts +55 -0
- package/src/lib/seam/connect/openapi.ts +237 -9
- package/src/lib/seam/connect/route-types.ts +47 -10
|
@@ -211,19 +211,46 @@ export declare const customer_data: z.ZodObject<{
|
|
|
211
211
|
phone_number: z.ZodOptional<z.ZodString>;
|
|
212
212
|
} & {
|
|
213
213
|
staff_member_key: z.ZodString;
|
|
214
|
-
|
|
214
|
+
space_keys: z.ZodOptional<z.ZodArray<z.ZodString, "many">>;
|
|
215
|
+
property_keys: z.ZodOptional<z.ZodArray<z.ZodString, "many">>;
|
|
216
|
+
room_keys: z.ZodOptional<z.ZodArray<z.ZodString, "many">>;
|
|
217
|
+
common_area_keys: z.ZodOptional<z.ZodArray<z.ZodString, "many">>;
|
|
218
|
+
unit_keys: z.ZodOptional<z.ZodArray<z.ZodString, "many">>;
|
|
219
|
+
facility_keys: z.ZodOptional<z.ZodArray<z.ZodString, "many">>;
|
|
220
|
+
building_keys: z.ZodOptional<z.ZodArray<z.ZodString, "many">>;
|
|
221
|
+
listing_keys: z.ZodOptional<z.ZodArray<z.ZodString, "many">>;
|
|
222
|
+
property_listing_keys: z.ZodOptional<z.ZodArray<z.ZodString, "many">>;
|
|
223
|
+
site_keys: z.ZodOptional<z.ZodArray<z.ZodString, "many">>;
|
|
215
224
|
}, "strip", z.ZodTypeAny, {
|
|
216
225
|
name: string;
|
|
217
226
|
staff_member_key: string;
|
|
218
|
-
site_keys: string[];
|
|
219
227
|
email_address?: string | undefined;
|
|
220
228
|
phone_number?: string | undefined;
|
|
229
|
+
space_keys?: string[] | undefined;
|
|
230
|
+
property_keys?: string[] | undefined;
|
|
231
|
+
room_keys?: string[] | undefined;
|
|
232
|
+
common_area_keys?: string[] | undefined;
|
|
233
|
+
unit_keys?: string[] | undefined;
|
|
234
|
+
facility_keys?: string[] | undefined;
|
|
235
|
+
building_keys?: string[] | undefined;
|
|
236
|
+
listing_keys?: string[] | undefined;
|
|
237
|
+
property_listing_keys?: string[] | undefined;
|
|
238
|
+
site_keys?: string[] | undefined;
|
|
221
239
|
}, {
|
|
222
240
|
name: string;
|
|
223
241
|
staff_member_key: string;
|
|
224
|
-
site_keys: string[];
|
|
225
242
|
email_address?: string | undefined;
|
|
226
243
|
phone_number?: string | undefined;
|
|
244
|
+
space_keys?: string[] | undefined;
|
|
245
|
+
property_keys?: string[] | undefined;
|
|
246
|
+
room_keys?: string[] | undefined;
|
|
247
|
+
common_area_keys?: string[] | undefined;
|
|
248
|
+
unit_keys?: string[] | undefined;
|
|
249
|
+
facility_keys?: string[] | undefined;
|
|
250
|
+
building_keys?: string[] | undefined;
|
|
251
|
+
listing_keys?: string[] | undefined;
|
|
252
|
+
property_listing_keys?: string[] | undefined;
|
|
253
|
+
site_keys?: string[] | undefined;
|
|
227
254
|
}>, "many">>;
|
|
228
255
|
reservations: z.ZodOptional<z.ZodArray<z.ZodObject<{
|
|
229
256
|
name: z.ZodOptional<z.ZodString>;
|
|
@@ -506,9 +533,18 @@ export declare const customer_data: z.ZodObject<{
|
|
|
506
533
|
staff_members?: {
|
|
507
534
|
name: string;
|
|
508
535
|
staff_member_key: string;
|
|
509
|
-
site_keys: string[];
|
|
510
536
|
email_address?: string | undefined;
|
|
511
537
|
phone_number?: string | undefined;
|
|
538
|
+
space_keys?: string[] | undefined;
|
|
539
|
+
property_keys?: string[] | undefined;
|
|
540
|
+
room_keys?: string[] | undefined;
|
|
541
|
+
common_area_keys?: string[] | undefined;
|
|
542
|
+
unit_keys?: string[] | undefined;
|
|
543
|
+
facility_keys?: string[] | undefined;
|
|
544
|
+
building_keys?: string[] | undefined;
|
|
545
|
+
listing_keys?: string[] | undefined;
|
|
546
|
+
property_listing_keys?: string[] | undefined;
|
|
547
|
+
site_keys?: string[] | undefined;
|
|
512
548
|
}[] | undefined;
|
|
513
549
|
reservations?: {
|
|
514
550
|
reservation_key: string;
|
|
@@ -648,9 +684,18 @@ export declare const customer_data: z.ZodObject<{
|
|
|
648
684
|
staff_members?: {
|
|
649
685
|
name: string;
|
|
650
686
|
staff_member_key: string;
|
|
651
|
-
site_keys: string[];
|
|
652
687
|
email_address?: string | undefined;
|
|
653
688
|
phone_number?: string | undefined;
|
|
689
|
+
space_keys?: string[] | undefined;
|
|
690
|
+
property_keys?: string[] | undefined;
|
|
691
|
+
room_keys?: string[] | undefined;
|
|
692
|
+
common_area_keys?: string[] | undefined;
|
|
693
|
+
unit_keys?: string[] | undefined;
|
|
694
|
+
facility_keys?: string[] | undefined;
|
|
695
|
+
building_keys?: string[] | undefined;
|
|
696
|
+
listing_keys?: string[] | undefined;
|
|
697
|
+
property_listing_keys?: string[] | undefined;
|
|
698
|
+
site_keys?: string[] | undefined;
|
|
654
699
|
}[] | undefined;
|
|
655
700
|
reservations?: {
|
|
656
701
|
reservation_key: string;
|
|
@@ -73,19 +73,46 @@ export declare const staff_member_resource: z.ZodObject<{
|
|
|
73
73
|
phone_number: z.ZodOptional<z.ZodString>;
|
|
74
74
|
} & {
|
|
75
75
|
staff_member_key: z.ZodString;
|
|
76
|
-
|
|
76
|
+
space_keys: z.ZodOptional<z.ZodArray<z.ZodString, "many">>;
|
|
77
|
+
property_keys: z.ZodOptional<z.ZodArray<z.ZodString, "many">>;
|
|
78
|
+
room_keys: z.ZodOptional<z.ZodArray<z.ZodString, "many">>;
|
|
79
|
+
common_area_keys: z.ZodOptional<z.ZodArray<z.ZodString, "many">>;
|
|
80
|
+
unit_keys: z.ZodOptional<z.ZodArray<z.ZodString, "many">>;
|
|
81
|
+
facility_keys: z.ZodOptional<z.ZodArray<z.ZodString, "many">>;
|
|
82
|
+
building_keys: z.ZodOptional<z.ZodArray<z.ZodString, "many">>;
|
|
83
|
+
listing_keys: z.ZodOptional<z.ZodArray<z.ZodString, "many">>;
|
|
84
|
+
property_listing_keys: z.ZodOptional<z.ZodArray<z.ZodString, "many">>;
|
|
85
|
+
site_keys: z.ZodOptional<z.ZodArray<z.ZodString, "many">>;
|
|
77
86
|
}, "strip", z.ZodTypeAny, {
|
|
78
87
|
name: string;
|
|
79
88
|
staff_member_key: string;
|
|
80
|
-
site_keys: string[];
|
|
81
89
|
email_address?: string | undefined;
|
|
82
90
|
phone_number?: string | undefined;
|
|
91
|
+
space_keys?: string[] | undefined;
|
|
92
|
+
property_keys?: string[] | undefined;
|
|
93
|
+
room_keys?: string[] | undefined;
|
|
94
|
+
common_area_keys?: string[] | undefined;
|
|
95
|
+
unit_keys?: string[] | undefined;
|
|
96
|
+
facility_keys?: string[] | undefined;
|
|
97
|
+
building_keys?: string[] | undefined;
|
|
98
|
+
listing_keys?: string[] | undefined;
|
|
99
|
+
property_listing_keys?: string[] | undefined;
|
|
100
|
+
site_keys?: string[] | undefined;
|
|
83
101
|
}, {
|
|
84
102
|
name: string;
|
|
85
103
|
staff_member_key: string;
|
|
86
|
-
site_keys: string[];
|
|
87
104
|
email_address?: string | undefined;
|
|
88
105
|
phone_number?: string | undefined;
|
|
106
|
+
space_keys?: string[] | undefined;
|
|
107
|
+
property_keys?: string[] | undefined;
|
|
108
|
+
room_keys?: string[] | undefined;
|
|
109
|
+
common_area_keys?: string[] | undefined;
|
|
110
|
+
unit_keys?: string[] | undefined;
|
|
111
|
+
facility_keys?: string[] | undefined;
|
|
112
|
+
building_keys?: string[] | undefined;
|
|
113
|
+
listing_keys?: string[] | undefined;
|
|
114
|
+
property_listing_keys?: string[] | undefined;
|
|
115
|
+
site_keys?: string[] | undefined;
|
|
89
116
|
}>;
|
|
90
117
|
export declare const user_identity_resource: z.ZodObject<{
|
|
91
118
|
name: z.ZodString;
|
|
@@ -190,19 +217,46 @@ export declare const user_identity_resource_union: z.ZodUnion<[z.ZodObject<{
|
|
|
190
217
|
phone_number: z.ZodOptional<z.ZodString>;
|
|
191
218
|
} & {
|
|
192
219
|
staff_member_key: z.ZodString;
|
|
193
|
-
|
|
220
|
+
space_keys: z.ZodOptional<z.ZodArray<z.ZodString, "many">>;
|
|
221
|
+
property_keys: z.ZodOptional<z.ZodArray<z.ZodString, "many">>;
|
|
222
|
+
room_keys: z.ZodOptional<z.ZodArray<z.ZodString, "many">>;
|
|
223
|
+
common_area_keys: z.ZodOptional<z.ZodArray<z.ZodString, "many">>;
|
|
224
|
+
unit_keys: z.ZodOptional<z.ZodArray<z.ZodString, "many">>;
|
|
225
|
+
facility_keys: z.ZodOptional<z.ZodArray<z.ZodString, "many">>;
|
|
226
|
+
building_keys: z.ZodOptional<z.ZodArray<z.ZodString, "many">>;
|
|
227
|
+
listing_keys: z.ZodOptional<z.ZodArray<z.ZodString, "many">>;
|
|
228
|
+
property_listing_keys: z.ZodOptional<z.ZodArray<z.ZodString, "many">>;
|
|
229
|
+
site_keys: z.ZodOptional<z.ZodArray<z.ZodString, "many">>;
|
|
194
230
|
}, "strip", z.ZodTypeAny, {
|
|
195
231
|
name: string;
|
|
196
232
|
staff_member_key: string;
|
|
197
|
-
site_keys: string[];
|
|
198
233
|
email_address?: string | undefined;
|
|
199
234
|
phone_number?: string | undefined;
|
|
235
|
+
space_keys?: string[] | undefined;
|
|
236
|
+
property_keys?: string[] | undefined;
|
|
237
|
+
room_keys?: string[] | undefined;
|
|
238
|
+
common_area_keys?: string[] | undefined;
|
|
239
|
+
unit_keys?: string[] | undefined;
|
|
240
|
+
facility_keys?: string[] | undefined;
|
|
241
|
+
building_keys?: string[] | undefined;
|
|
242
|
+
listing_keys?: string[] | undefined;
|
|
243
|
+
property_listing_keys?: string[] | undefined;
|
|
244
|
+
site_keys?: string[] | undefined;
|
|
200
245
|
}, {
|
|
201
246
|
name: string;
|
|
202
247
|
staff_member_key: string;
|
|
203
|
-
site_keys: string[];
|
|
204
248
|
email_address?: string | undefined;
|
|
205
249
|
phone_number?: string | undefined;
|
|
250
|
+
space_keys?: string[] | undefined;
|
|
251
|
+
property_keys?: string[] | undefined;
|
|
252
|
+
room_keys?: string[] | undefined;
|
|
253
|
+
common_area_keys?: string[] | undefined;
|
|
254
|
+
unit_keys?: string[] | undefined;
|
|
255
|
+
facility_keys?: string[] | undefined;
|
|
256
|
+
building_keys?: string[] | undefined;
|
|
257
|
+
listing_keys?: string[] | undefined;
|
|
258
|
+
property_listing_keys?: string[] | undefined;
|
|
259
|
+
site_keys?: string[] | undefined;
|
|
206
260
|
}>]>;
|
|
207
261
|
export declare const user_identity_key_aliases: z.ZodUnion<[z.ZodObject<{
|
|
208
262
|
guest_key: z.ZodString;
|
|
@@ -55,8 +55,45 @@ export const staff_member_resource = base_user_identity_resource.extend({
|
|
|
55
55
|
staff_member_key: z
|
|
56
56
|
.string()
|
|
57
57
|
.describe('Your unique identifier for the staff.'),
|
|
58
|
+
space_keys: z
|
|
59
|
+
.array(z.string())
|
|
60
|
+
.optional()
|
|
61
|
+
.describe('List of unique identifiers for the spaces the staff member is associated with.'),
|
|
62
|
+
property_keys: z
|
|
63
|
+
.array(z.string())
|
|
64
|
+
.optional()
|
|
65
|
+
.describe('List of unique identifiers for the properties the staff member is associated with.'),
|
|
66
|
+
room_keys: z
|
|
67
|
+
.array(z.string())
|
|
68
|
+
.optional()
|
|
69
|
+
.describe('List of unique identifiers for the rooms the staff member is associated with.'),
|
|
70
|
+
common_area_keys: z
|
|
71
|
+
.array(z.string())
|
|
72
|
+
.optional()
|
|
73
|
+
.describe('List of unique identifiers for the common areas the staff member is associated with.'),
|
|
74
|
+
unit_keys: z
|
|
75
|
+
.array(z.string())
|
|
76
|
+
.optional()
|
|
77
|
+
.describe('List of unique identifiers for the units the staff member is associated with.'),
|
|
78
|
+
facility_keys: z
|
|
79
|
+
.array(z.string())
|
|
80
|
+
.optional()
|
|
81
|
+
.describe('List of unique identifiers for the facilities the staff member is associated with.'),
|
|
82
|
+
building_keys: z
|
|
83
|
+
.array(z.string())
|
|
84
|
+
.optional()
|
|
85
|
+
.describe('List of unique identifiers for the buildings the staff member is associated with.'),
|
|
86
|
+
listing_keys: z
|
|
87
|
+
.array(z.string())
|
|
88
|
+
.optional()
|
|
89
|
+
.describe('List of unique identifiers for the listings the staff member is associated with.'),
|
|
90
|
+
property_listing_keys: z
|
|
91
|
+
.array(z.string())
|
|
92
|
+
.optional()
|
|
93
|
+
.describe('List of unique identifiers for the property listings the staff member is associated with.'),
|
|
58
94
|
site_keys: z
|
|
59
95
|
.array(z.string())
|
|
96
|
+
.optional()
|
|
60
97
|
.describe('List of unique identifiers for the sites the staff member is associated with.'),
|
|
61
98
|
}).describe(`
|
|
62
99
|
---
|
|
@@ -1 +1 @@
|
|
|
1
|
-
{"version":3,"file":"user-identity-resources.js","sourceRoot":"","sources":["../../../../../src/lib/seam/connect/models/customer/user-identity-resources.ts"],"names":[],"mappings":"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"}
|
|
1
|
+
{"version":3,"file":"user-identity-resources.js","sourceRoot":"","sources":["../../../../../src/lib/seam/connect/models/customer/user-identity-resources.ts"],"names":[],"mappings":"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"}
|
|
@@ -12254,10 +12254,38 @@ declare const _default: {
|
|
|
12254
12254
|
staff_member: {
|
|
12255
12255
|
description: string;
|
|
12256
12256
|
properties: {
|
|
12257
|
+
building_keys: {
|
|
12258
|
+
description: string;
|
|
12259
|
+
items: {
|
|
12260
|
+
type: string;
|
|
12261
|
+
};
|
|
12262
|
+
type: string;
|
|
12263
|
+
};
|
|
12264
|
+
common_area_keys: {
|
|
12265
|
+
description: string;
|
|
12266
|
+
items: {
|
|
12267
|
+
type: string;
|
|
12268
|
+
};
|
|
12269
|
+
type: string;
|
|
12270
|
+
};
|
|
12257
12271
|
email_address: {
|
|
12258
12272
|
description: string;
|
|
12259
12273
|
type: string;
|
|
12260
12274
|
};
|
|
12275
|
+
facility_keys: {
|
|
12276
|
+
description: string;
|
|
12277
|
+
items: {
|
|
12278
|
+
type: string;
|
|
12279
|
+
};
|
|
12280
|
+
type: string;
|
|
12281
|
+
};
|
|
12282
|
+
listing_keys: {
|
|
12283
|
+
description: string;
|
|
12284
|
+
items: {
|
|
12285
|
+
type: string;
|
|
12286
|
+
};
|
|
12287
|
+
type: string;
|
|
12288
|
+
};
|
|
12261
12289
|
name: {
|
|
12262
12290
|
description: string;
|
|
12263
12291
|
type: string;
|
|
@@ -12266,6 +12294,27 @@ declare const _default: {
|
|
|
12266
12294
|
description: string;
|
|
12267
12295
|
type: string;
|
|
12268
12296
|
};
|
|
12297
|
+
property_keys: {
|
|
12298
|
+
description: string;
|
|
12299
|
+
items: {
|
|
12300
|
+
type: string;
|
|
12301
|
+
};
|
|
12302
|
+
type: string;
|
|
12303
|
+
};
|
|
12304
|
+
property_listing_keys: {
|
|
12305
|
+
description: string;
|
|
12306
|
+
items: {
|
|
12307
|
+
type: string;
|
|
12308
|
+
};
|
|
12309
|
+
type: string;
|
|
12310
|
+
};
|
|
12311
|
+
room_keys: {
|
|
12312
|
+
description: string;
|
|
12313
|
+
items: {
|
|
12314
|
+
type: string;
|
|
12315
|
+
};
|
|
12316
|
+
type: string;
|
|
12317
|
+
};
|
|
12269
12318
|
site_keys: {
|
|
12270
12319
|
description: string;
|
|
12271
12320
|
items: {
|
|
@@ -12273,10 +12322,24 @@ declare const _default: {
|
|
|
12273
12322
|
};
|
|
12274
12323
|
type: string;
|
|
12275
12324
|
};
|
|
12325
|
+
space_keys: {
|
|
12326
|
+
description: string;
|
|
12327
|
+
items: {
|
|
12328
|
+
type: string;
|
|
12329
|
+
};
|
|
12330
|
+
type: string;
|
|
12331
|
+
};
|
|
12276
12332
|
staff_member_key: {
|
|
12277
12333
|
description: string;
|
|
12278
12334
|
type: string;
|
|
12279
12335
|
};
|
|
12336
|
+
unit_keys: {
|
|
12337
|
+
description: string;
|
|
12338
|
+
items: {
|
|
12339
|
+
type: string;
|
|
12340
|
+
};
|
|
12341
|
+
type: string;
|
|
12342
|
+
};
|
|
12280
12343
|
};
|
|
12281
12344
|
required: string[];
|
|
12282
12345
|
type: string;
|
|
@@ -32751,10 +32814,38 @@ declare const _default: {
|
|
|
32751
32814
|
items: {
|
|
32752
32815
|
description: string;
|
|
32753
32816
|
properties: {
|
|
32817
|
+
building_keys: {
|
|
32818
|
+
description: string;
|
|
32819
|
+
items: {
|
|
32820
|
+
type: string;
|
|
32821
|
+
};
|
|
32822
|
+
type: string;
|
|
32823
|
+
};
|
|
32824
|
+
common_area_keys: {
|
|
32825
|
+
description: string;
|
|
32826
|
+
items: {
|
|
32827
|
+
type: string;
|
|
32828
|
+
};
|
|
32829
|
+
type: string;
|
|
32830
|
+
};
|
|
32754
32831
|
email_address: {
|
|
32755
32832
|
description: string;
|
|
32756
32833
|
type: string;
|
|
32757
32834
|
};
|
|
32835
|
+
facility_keys: {
|
|
32836
|
+
description: string;
|
|
32837
|
+
items: {
|
|
32838
|
+
type: string;
|
|
32839
|
+
};
|
|
32840
|
+
type: string;
|
|
32841
|
+
};
|
|
32842
|
+
listing_keys: {
|
|
32843
|
+
description: string;
|
|
32844
|
+
items: {
|
|
32845
|
+
type: string;
|
|
32846
|
+
};
|
|
32847
|
+
type: string;
|
|
32848
|
+
};
|
|
32758
32849
|
name: {
|
|
32759
32850
|
description: string;
|
|
32760
32851
|
type: string;
|
|
@@ -32763,6 +32854,27 @@ declare const _default: {
|
|
|
32763
32854
|
description: string;
|
|
32764
32855
|
type: string;
|
|
32765
32856
|
};
|
|
32857
|
+
property_keys: {
|
|
32858
|
+
description: string;
|
|
32859
|
+
items: {
|
|
32860
|
+
type: string;
|
|
32861
|
+
};
|
|
32862
|
+
type: string;
|
|
32863
|
+
};
|
|
32864
|
+
property_listing_keys: {
|
|
32865
|
+
description: string;
|
|
32866
|
+
items: {
|
|
32867
|
+
type: string;
|
|
32868
|
+
};
|
|
32869
|
+
type: string;
|
|
32870
|
+
};
|
|
32871
|
+
room_keys: {
|
|
32872
|
+
description: string;
|
|
32873
|
+
items: {
|
|
32874
|
+
type: string;
|
|
32875
|
+
};
|
|
32876
|
+
type: string;
|
|
32877
|
+
};
|
|
32766
32878
|
site_keys: {
|
|
32767
32879
|
description: string;
|
|
32768
32880
|
items: {
|
|
@@ -32770,10 +32882,24 @@ declare const _default: {
|
|
|
32770
32882
|
};
|
|
32771
32883
|
type: string;
|
|
32772
32884
|
};
|
|
32885
|
+
space_keys: {
|
|
32886
|
+
description: string;
|
|
32887
|
+
items: {
|
|
32888
|
+
type: string;
|
|
32889
|
+
};
|
|
32890
|
+
type: string;
|
|
32891
|
+
};
|
|
32773
32892
|
staff_member_key: {
|
|
32774
32893
|
description: string;
|
|
32775
32894
|
type: string;
|
|
32776
32895
|
};
|
|
32896
|
+
unit_keys: {
|
|
32897
|
+
description: string;
|
|
32898
|
+
items: {
|
|
32899
|
+
type: string;
|
|
32900
|
+
};
|
|
32901
|
+
type: string;
|
|
32902
|
+
};
|
|
32777
32903
|
};
|
|
32778
32904
|
required: string[];
|
|
32779
32905
|
type: string;
|
|
@@ -33770,10 +33896,38 @@ declare const _default: {
|
|
|
33770
33896
|
items: {
|
|
33771
33897
|
description: string;
|
|
33772
33898
|
properties: {
|
|
33899
|
+
building_keys: {
|
|
33900
|
+
description: string;
|
|
33901
|
+
items: {
|
|
33902
|
+
type: string;
|
|
33903
|
+
};
|
|
33904
|
+
type: string;
|
|
33905
|
+
};
|
|
33906
|
+
common_area_keys: {
|
|
33907
|
+
description: string;
|
|
33908
|
+
items: {
|
|
33909
|
+
type: string;
|
|
33910
|
+
};
|
|
33911
|
+
type: string;
|
|
33912
|
+
};
|
|
33773
33913
|
email_address: {
|
|
33774
33914
|
description: string;
|
|
33775
33915
|
type: string;
|
|
33776
33916
|
};
|
|
33917
|
+
facility_keys: {
|
|
33918
|
+
description: string;
|
|
33919
|
+
items: {
|
|
33920
|
+
type: string;
|
|
33921
|
+
};
|
|
33922
|
+
type: string;
|
|
33923
|
+
};
|
|
33924
|
+
listing_keys: {
|
|
33925
|
+
description: string;
|
|
33926
|
+
items: {
|
|
33927
|
+
type: string;
|
|
33928
|
+
};
|
|
33929
|
+
type: string;
|
|
33930
|
+
};
|
|
33777
33931
|
name: {
|
|
33778
33932
|
description: string;
|
|
33779
33933
|
type: string;
|
|
@@ -33782,6 +33936,27 @@ declare const _default: {
|
|
|
33782
33936
|
description: string;
|
|
33783
33937
|
type: string;
|
|
33784
33938
|
};
|
|
33939
|
+
property_keys: {
|
|
33940
|
+
description: string;
|
|
33941
|
+
items: {
|
|
33942
|
+
type: string;
|
|
33943
|
+
};
|
|
33944
|
+
type: string;
|
|
33945
|
+
};
|
|
33946
|
+
property_listing_keys: {
|
|
33947
|
+
description: string;
|
|
33948
|
+
items: {
|
|
33949
|
+
type: string;
|
|
33950
|
+
};
|
|
33951
|
+
type: string;
|
|
33952
|
+
};
|
|
33953
|
+
room_keys: {
|
|
33954
|
+
description: string;
|
|
33955
|
+
items: {
|
|
33956
|
+
type: string;
|
|
33957
|
+
};
|
|
33958
|
+
type: string;
|
|
33959
|
+
};
|
|
33785
33960
|
site_keys: {
|
|
33786
33961
|
description: string;
|
|
33787
33962
|
items: {
|
|
@@ -33789,10 +33964,24 @@ declare const _default: {
|
|
|
33789
33964
|
};
|
|
33790
33965
|
type: string;
|
|
33791
33966
|
};
|
|
33967
|
+
space_keys: {
|
|
33968
|
+
description: string;
|
|
33969
|
+
items: {
|
|
33970
|
+
type: string;
|
|
33971
|
+
};
|
|
33972
|
+
type: string;
|
|
33973
|
+
};
|
|
33792
33974
|
staff_member_key: {
|
|
33793
33975
|
description: string;
|
|
33794
33976
|
type: string;
|
|
33795
33977
|
};
|
|
33978
|
+
unit_keys: {
|
|
33979
|
+
description: string;
|
|
33980
|
+
items: {
|
|
33981
|
+
type: string;
|
|
33982
|
+
};
|
|
33983
|
+
type: string;
|
|
33984
|
+
};
|
|
33796
33985
|
};
|
|
33797
33986
|
required: string[];
|
|
33798
33987
|
type: string;
|
|
@@ -45149,7 +45338,39 @@ declare const _default: {
|
|
|
45149
45338
|
};
|
|
45150
45339
|
staff_members: {
|
|
45151
45340
|
items: {
|
|
45152
|
-
|
|
45341
|
+
description: string;
|
|
45342
|
+
properties: {
|
|
45343
|
+
email_address: {
|
|
45344
|
+
description: string;
|
|
45345
|
+
type: string;
|
|
45346
|
+
};
|
|
45347
|
+
name: {
|
|
45348
|
+
description: string;
|
|
45349
|
+
type: string;
|
|
45350
|
+
};
|
|
45351
|
+
phone_number: {
|
|
45352
|
+
description: string;
|
|
45353
|
+
type: string;
|
|
45354
|
+
};
|
|
45355
|
+
space_keys: {
|
|
45356
|
+
description: string;
|
|
45357
|
+
items: {
|
|
45358
|
+
type: string;
|
|
45359
|
+
};
|
|
45360
|
+
type: string;
|
|
45361
|
+
};
|
|
45362
|
+
staff_member_key: {
|
|
45363
|
+
description: string;
|
|
45364
|
+
type: string;
|
|
45365
|
+
};
|
|
45366
|
+
user_identity_id: {
|
|
45367
|
+
format: string;
|
|
45368
|
+
type: string;
|
|
45369
|
+
};
|
|
45370
|
+
};
|
|
45371
|
+
required: string[];
|
|
45372
|
+
type: string;
|
|
45373
|
+
'x-route-path': string;
|
|
45153
45374
|
};
|
|
45154
45375
|
type: string;
|
|
45155
45376
|
};
|
|
@@ -45234,7 +45455,39 @@ declare const _default: {
|
|
|
45234
45455
|
};
|
|
45235
45456
|
staff_members: {
|
|
45236
45457
|
items: {
|
|
45237
|
-
|
|
45458
|
+
description: string;
|
|
45459
|
+
properties: {
|
|
45460
|
+
email_address: {
|
|
45461
|
+
description: string;
|
|
45462
|
+
type: string;
|
|
45463
|
+
};
|
|
45464
|
+
name: {
|
|
45465
|
+
description: string;
|
|
45466
|
+
type: string;
|
|
45467
|
+
};
|
|
45468
|
+
phone_number: {
|
|
45469
|
+
description: string;
|
|
45470
|
+
type: string;
|
|
45471
|
+
};
|
|
45472
|
+
space_keys: {
|
|
45473
|
+
description: string;
|
|
45474
|
+
items: {
|
|
45475
|
+
type: string;
|
|
45476
|
+
};
|
|
45477
|
+
type: string;
|
|
45478
|
+
};
|
|
45479
|
+
staff_member_key: {
|
|
45480
|
+
description: string;
|
|
45481
|
+
type: string;
|
|
45482
|
+
};
|
|
45483
|
+
user_identity_id: {
|
|
45484
|
+
format: string;
|
|
45485
|
+
type: string;
|
|
45486
|
+
};
|
|
45487
|
+
};
|
|
45488
|
+
required: string[];
|
|
45489
|
+
type: string;
|
|
45490
|
+
'x-route-path': string;
|
|
45238
45491
|
};
|
|
45239
45492
|
type: string;
|
|
45240
45493
|
};
|