@seamapi/types 1.616.0 → 1.618.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 +77 -14
- package/dist/connect.cjs.map +1 -1
- package/dist/connect.d.cts +63 -3
- package/dist/index.cjs +77 -14
- package/dist/index.cjs.map +1 -1
- package/lib/seam/connect/models/customer/access-grant-resources.d.ts +6 -6
- package/lib/seam/connect/models/customer/access-grant-resources.js +15 -1
- package/lib/seam/connect/models/customer/access-grant-resources.js.map +1 -1
- package/lib/seam/connect/models/customer/customer-data.d.ts +22 -22
- package/lib/seam/connect/models/customer/customer-data.js +7 -1
- package/lib/seam/connect/models/customer/customer-data.js.map +1 -1
- package/lib/seam/connect/models/customer/location-resources.d.ts +26 -26
- package/lib/seam/connect/models/customer/location-resources.js +76 -8
- package/lib/seam/connect/models/customer/location-resources.js.map +1 -1
- package/lib/seam/connect/models/customer/user-identity-resources.d.ts +10 -10
- package/lib/seam/connect/models/customer/user-identity-resources.js +32 -4
- package/lib/seam/connect/models/customer/user-identity-resources.js.map +1 -1
- package/lib/seam/connect/openapi.d.ts +62 -2
- package/lib/seam/connect/openapi.js +62 -9
- package/lib/seam/connect/openapi.js.map +1 -1
- package/lib/seam/connect/route-types.d.ts +1 -1
- package/lib/seam/devicedb/route-specs.d.ts +2 -2
- package/package.json +1 -1
- package/src/lib/seam/connect/models/customer/access-grant-resources.ts +15 -1
- package/src/lib/seam/connect/models/customer/customer-data.ts +7 -1
- package/src/lib/seam/connect/models/customer/location-resources.ts +76 -8
- package/src/lib/seam/connect/models/customer/user-identity-resources.ts +32 -4
- package/src/lib/seam/connect/openapi.ts +62 -9
- package/src/lib/seam/connect/route-types.ts +1 -1
|
@@ -4,7 +4,7 @@ export declare const guest_resource: z.ZodObject<{
|
|
|
4
4
|
email_address: z.ZodOptional<z.ZodString>;
|
|
5
5
|
phone_number: z.ZodOptional<z.ZodString>;
|
|
6
6
|
} & {
|
|
7
|
-
guest_key: z.ZodString
|
|
7
|
+
guest_key: z.ZodEffects<z.ZodString, string, string>;
|
|
8
8
|
}, "strip", z.ZodTypeAny, {
|
|
9
9
|
name: string;
|
|
10
10
|
guest_key: string;
|
|
@@ -21,7 +21,7 @@ export declare const tenant_resource: z.ZodObject<{
|
|
|
21
21
|
email_address: z.ZodOptional<z.ZodString>;
|
|
22
22
|
phone_number: z.ZodOptional<z.ZodString>;
|
|
23
23
|
} & {
|
|
24
|
-
tenant_key: z.ZodString
|
|
24
|
+
tenant_key: z.ZodEffects<z.ZodString, string, string>;
|
|
25
25
|
}, "strip", z.ZodTypeAny, {
|
|
26
26
|
name: string;
|
|
27
27
|
tenant_key: string;
|
|
@@ -38,7 +38,7 @@ export declare const resident_resource: z.ZodObject<{
|
|
|
38
38
|
email_address: z.ZodOptional<z.ZodString>;
|
|
39
39
|
phone_number: z.ZodOptional<z.ZodString>;
|
|
40
40
|
} & {
|
|
41
|
-
resident_key: z.ZodString
|
|
41
|
+
resident_key: z.ZodEffects<z.ZodString, string, string>;
|
|
42
42
|
}, "strip", z.ZodTypeAny, {
|
|
43
43
|
name: string;
|
|
44
44
|
resident_key: string;
|
|
@@ -55,7 +55,7 @@ export declare const user_resource: z.ZodObject<{
|
|
|
55
55
|
email_address: z.ZodOptional<z.ZodString>;
|
|
56
56
|
phone_number: z.ZodOptional<z.ZodString>;
|
|
57
57
|
} & {
|
|
58
|
-
user_key: z.ZodString
|
|
58
|
+
user_key: z.ZodEffects<z.ZodString, string, string>;
|
|
59
59
|
}, "strip", z.ZodTypeAny, {
|
|
60
60
|
name: string;
|
|
61
61
|
user_key: string;
|
|
@@ -92,7 +92,7 @@ export declare const user_identity_resource: z.ZodObject<{
|
|
|
92
92
|
email_address: z.ZodOptional<z.ZodString>;
|
|
93
93
|
phone_number: z.ZodOptional<z.ZodString>;
|
|
94
94
|
} & {
|
|
95
|
-
user_identity_key: z.ZodString
|
|
95
|
+
user_identity_key: z.ZodEffects<z.ZodString, string, string>;
|
|
96
96
|
}, "strip", z.ZodTypeAny, {
|
|
97
97
|
name: string;
|
|
98
98
|
user_identity_key: string;
|
|
@@ -109,7 +109,7 @@ export declare const user_identity_resource_union: z.ZodUnion<[z.ZodObject<{
|
|
|
109
109
|
email_address: z.ZodOptional<z.ZodString>;
|
|
110
110
|
phone_number: z.ZodOptional<z.ZodString>;
|
|
111
111
|
} & {
|
|
112
|
-
guest_key: z.ZodString
|
|
112
|
+
guest_key: z.ZodEffects<z.ZodString, string, string>;
|
|
113
113
|
}, "strip", z.ZodTypeAny, {
|
|
114
114
|
name: string;
|
|
115
115
|
guest_key: string;
|
|
@@ -125,7 +125,7 @@ export declare const user_identity_resource_union: z.ZodUnion<[z.ZodObject<{
|
|
|
125
125
|
email_address: z.ZodOptional<z.ZodString>;
|
|
126
126
|
phone_number: z.ZodOptional<z.ZodString>;
|
|
127
127
|
} & {
|
|
128
|
-
tenant_key: z.ZodString
|
|
128
|
+
tenant_key: z.ZodEffects<z.ZodString, string, string>;
|
|
129
129
|
}, "strip", z.ZodTypeAny, {
|
|
130
130
|
name: string;
|
|
131
131
|
tenant_key: string;
|
|
@@ -141,7 +141,7 @@ export declare const user_identity_resource_union: z.ZodUnion<[z.ZodObject<{
|
|
|
141
141
|
email_address: z.ZodOptional<z.ZodString>;
|
|
142
142
|
phone_number: z.ZodOptional<z.ZodString>;
|
|
143
143
|
} & {
|
|
144
|
-
resident_key: z.ZodString
|
|
144
|
+
resident_key: z.ZodEffects<z.ZodString, string, string>;
|
|
145
145
|
}, "strip", z.ZodTypeAny, {
|
|
146
146
|
name: string;
|
|
147
147
|
resident_key: string;
|
|
@@ -157,7 +157,7 @@ export declare const user_identity_resource_union: z.ZodUnion<[z.ZodObject<{
|
|
|
157
157
|
email_address: z.ZodOptional<z.ZodString>;
|
|
158
158
|
phone_number: z.ZodOptional<z.ZodString>;
|
|
159
159
|
} & {
|
|
160
|
-
user_key: z.ZodString
|
|
160
|
+
user_key: z.ZodEffects<z.ZodString, string, string>;
|
|
161
161
|
}, "strip", z.ZodTypeAny, {
|
|
162
162
|
name: string;
|
|
163
163
|
user_key: string;
|
|
@@ -173,7 +173,7 @@ export declare const user_identity_resource_union: z.ZodUnion<[z.ZodObject<{
|
|
|
173
173
|
email_address: z.ZodOptional<z.ZodString>;
|
|
174
174
|
phone_number: z.ZodOptional<z.ZodString>;
|
|
175
175
|
} & {
|
|
176
|
-
user_identity_key: z.ZodString
|
|
176
|
+
user_identity_key: z.ZodEffects<z.ZodString, string, string>;
|
|
177
177
|
}, "strip", z.ZodTypeAny, {
|
|
178
178
|
name: string;
|
|
179
179
|
user_identity_key: string;
|
|
@@ -15,16 +15,40 @@ const base_user_identity_resource = z.object({
|
|
|
15
15
|
});
|
|
16
16
|
// User identity resource types with their key aliases
|
|
17
17
|
export const guest_resource = base_user_identity_resource.extend({
|
|
18
|
-
guest_key: z
|
|
18
|
+
guest_key: z
|
|
19
|
+
.string()
|
|
20
|
+
.min(1)
|
|
21
|
+
.refine((val) => val === val.trim(), {
|
|
22
|
+
message: 'Must not have leading or trailing whitespace',
|
|
23
|
+
})
|
|
24
|
+
.describe('Your unique identifier for the guest.'),
|
|
19
25
|
});
|
|
20
26
|
export const tenant_resource = base_user_identity_resource.extend({
|
|
21
|
-
tenant_key: z
|
|
27
|
+
tenant_key: z
|
|
28
|
+
.string()
|
|
29
|
+
.min(1)
|
|
30
|
+
.refine((val) => val === val.trim(), {
|
|
31
|
+
message: 'Must not have leading or trailing whitespace',
|
|
32
|
+
})
|
|
33
|
+
.describe('Your unique identifier for the tenant.'),
|
|
22
34
|
});
|
|
23
35
|
export const resident_resource = base_user_identity_resource.extend({
|
|
24
|
-
resident_key: z
|
|
36
|
+
resident_key: z
|
|
37
|
+
.string()
|
|
38
|
+
.min(1)
|
|
39
|
+
.refine((val) => val === val.trim(), {
|
|
40
|
+
message: 'Must not have leading or trailing whitespace',
|
|
41
|
+
})
|
|
42
|
+
.describe('Your unique identifier for the resident.'),
|
|
25
43
|
});
|
|
26
44
|
export const user_resource = base_user_identity_resource.extend({
|
|
27
|
-
user_key: z
|
|
45
|
+
user_key: z
|
|
46
|
+
.string()
|
|
47
|
+
.min(1)
|
|
48
|
+
.refine((val) => val === val.trim(), {
|
|
49
|
+
message: 'Must not have leading or trailing whitespace',
|
|
50
|
+
})
|
|
51
|
+
.describe('Your unique identifier for the user.'),
|
|
28
52
|
});
|
|
29
53
|
// staff resource
|
|
30
54
|
export const staff_member_resource = base_user_identity_resource.extend({
|
|
@@ -43,6 +67,10 @@ export const staff_member_resource = base_user_identity_resource.extend({
|
|
|
43
67
|
export const user_identity_resource = base_user_identity_resource.extend({
|
|
44
68
|
user_identity_key: z
|
|
45
69
|
.string()
|
|
70
|
+
.min(1)
|
|
71
|
+
.refine((val) => val === val.trim(), {
|
|
72
|
+
message: 'Must not have leading or trailing whitespace',
|
|
73
|
+
})
|
|
46
74
|
.describe('Your unique identifier for the user identity.'),
|
|
47
75
|
});
|
|
48
76
|
// Union of all user identity resource types
|
|
@@ -1 +1 @@
|
|
|
1
|
-
{"version":3,"file":"user-identity-resources.js","sourceRoot":"","sources":["../../../../../src/lib/seam/connect/models/customer/user-identity-resources.ts"],"names":[],"mappings":"AAAA,OAAO,EAAE,CAAC,EAAE,MAAM,KAAK,CAAA;AAEvB,iDAAiD;AACjD,MAAM,2BAA2B,GAAG,CAAC,CAAC,MAAM,CAAC;IAC3C,IAAI,EAAE,CAAC;SACJ,MAAM,EAAE;SACR,QAAQ,CAAC,oDAAoD,CAAC;IACjE,aAAa,EAAE,CAAC;SACb,MAAM,EAAE;SACR,QAAQ,EAAE;SACV,QAAQ,CAAC,kDAAkD,CAAC;IAC/D,YAAY,EAAE,CAAC;SACZ,MAAM,EAAE;SACR,QAAQ,EAAE;SACV,QAAQ,CAAC,iDAAiD,CAAC;CAC/D,CAAC,CAAA;AAEF,sDAAsD;AACtD,MAAM,CAAC,MAAM,cAAc,GAAG,2BAA2B,CAAC,MAAM,CAAC;IAC/D,SAAS,EAAE,CAAC,CAAC,MAAM,EAAE,CAAC,QAAQ,CAAC,uCAAuC,CAAC;
|
|
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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"}
|
|
@@ -17661,6 +17661,7 @@ declare const _default: {
|
|
|
17661
17661
|
properties: {
|
|
17662
17662
|
access_grant_key: {
|
|
17663
17663
|
description: string;
|
|
17664
|
+
minLength: number;
|
|
17664
17665
|
type: string;
|
|
17665
17666
|
};
|
|
17666
17667
|
acs_entrance_ids: {
|
|
@@ -17772,6 +17773,7 @@ declare const _default: {
|
|
|
17772
17773
|
space_keys: {
|
|
17773
17774
|
description: string;
|
|
17774
17775
|
items: {
|
|
17776
|
+
minLength: number;
|
|
17775
17777
|
type: string;
|
|
17776
17778
|
};
|
|
17777
17779
|
type: string;
|
|
@@ -29274,6 +29276,7 @@ declare const _default: {
|
|
|
29274
29276
|
};
|
|
29275
29277
|
customer_key: {
|
|
29276
29278
|
description: string;
|
|
29279
|
+
minLength: number;
|
|
29277
29280
|
type: string;
|
|
29278
29281
|
};
|
|
29279
29282
|
expires_at: {
|
|
@@ -29393,6 +29396,7 @@ declare const _default: {
|
|
|
29393
29396
|
};
|
|
29394
29397
|
customer_key: {
|
|
29395
29398
|
description: string;
|
|
29399
|
+
minLength: number;
|
|
29396
29400
|
type: string;
|
|
29397
29401
|
};
|
|
29398
29402
|
expires_at: {
|
|
@@ -30346,6 +30350,7 @@ declare const _default: {
|
|
|
30346
30350
|
};
|
|
30347
30351
|
customer_key: {
|
|
30348
30352
|
description: string;
|
|
30353
|
+
minLength: number;
|
|
30349
30354
|
type: string;
|
|
30350
30355
|
};
|
|
30351
30356
|
device_selection_mode: {
|
|
@@ -32186,6 +32191,7 @@ declare const _default: {
|
|
|
32186
32191
|
properties: {
|
|
32187
32192
|
access_grant_key: {
|
|
32188
32193
|
description: string;
|
|
32194
|
+
minLength: number;
|
|
32189
32195
|
type: string;
|
|
32190
32196
|
};
|
|
32191
32197
|
building_keys: {
|
|
@@ -32292,6 +32298,7 @@ declare const _default: {
|
|
|
32292
32298
|
properties: {
|
|
32293
32299
|
booking_key: {
|
|
32294
32300
|
description: string;
|
|
32301
|
+
minLength: number;
|
|
32295
32302
|
type: string;
|
|
32296
32303
|
};
|
|
32297
32304
|
building_keys: {
|
|
@@ -32398,6 +32405,7 @@ declare const _default: {
|
|
|
32398
32405
|
properties: {
|
|
32399
32406
|
building_key: {
|
|
32400
32407
|
description: string;
|
|
32408
|
+
minLength: number;
|
|
32401
32409
|
type: string;
|
|
32402
32410
|
};
|
|
32403
32411
|
name: {
|
|
@@ -32416,6 +32424,7 @@ declare const _default: {
|
|
|
32416
32424
|
properties: {
|
|
32417
32425
|
common_area_key: {
|
|
32418
32426
|
description: string;
|
|
32427
|
+
minLength: number;
|
|
32419
32428
|
type: string;
|
|
32420
32429
|
};
|
|
32421
32430
|
name: {
|
|
@@ -32424,6 +32433,7 @@ declare const _default: {
|
|
|
32424
32433
|
};
|
|
32425
32434
|
parent_site_key: {
|
|
32426
32435
|
description: string;
|
|
32436
|
+
minLength: number;
|
|
32427
32437
|
type: string;
|
|
32428
32438
|
};
|
|
32429
32439
|
};
|
|
@@ -32434,6 +32444,7 @@ declare const _default: {
|
|
|
32434
32444
|
};
|
|
32435
32445
|
customer_key: {
|
|
32436
32446
|
description: string;
|
|
32447
|
+
minLength: number;
|
|
32437
32448
|
type: string;
|
|
32438
32449
|
};
|
|
32439
32450
|
facilities: {
|
|
@@ -32442,6 +32453,7 @@ declare const _default: {
|
|
|
32442
32453
|
properties: {
|
|
32443
32454
|
facility_key: {
|
|
32444
32455
|
description: string;
|
|
32456
|
+
minLength: number;
|
|
32445
32457
|
type: string;
|
|
32446
32458
|
};
|
|
32447
32459
|
name: {
|
|
@@ -32464,6 +32476,7 @@ declare const _default: {
|
|
|
32464
32476
|
};
|
|
32465
32477
|
guest_key: {
|
|
32466
32478
|
description: string;
|
|
32479
|
+
minLength: number;
|
|
32467
32480
|
type: string;
|
|
32468
32481
|
};
|
|
32469
32482
|
name: {
|
|
@@ -32486,6 +32499,7 @@ declare const _default: {
|
|
|
32486
32499
|
properties: {
|
|
32487
32500
|
listing_key: {
|
|
32488
32501
|
description: string;
|
|
32502
|
+
minLength: number;
|
|
32489
32503
|
type: string;
|
|
32490
32504
|
};
|
|
32491
32505
|
name: {
|
|
@@ -32508,6 +32522,7 @@ declare const _default: {
|
|
|
32508
32522
|
};
|
|
32509
32523
|
property_key: {
|
|
32510
32524
|
description: string;
|
|
32525
|
+
minLength: number;
|
|
32511
32526
|
type: string;
|
|
32512
32527
|
};
|
|
32513
32528
|
};
|
|
@@ -32526,6 +32541,7 @@ declare const _default: {
|
|
|
32526
32541
|
};
|
|
32527
32542
|
property_listing_key: {
|
|
32528
32543
|
description: string;
|
|
32544
|
+
minLength: number;
|
|
32529
32545
|
type: string;
|
|
32530
32546
|
};
|
|
32531
32547
|
};
|
|
@@ -32591,6 +32607,7 @@ declare const _default: {
|
|
|
32591
32607
|
};
|
|
32592
32608
|
reservation_key: {
|
|
32593
32609
|
description: string;
|
|
32610
|
+
minLength: number;
|
|
32594
32611
|
type: string;
|
|
32595
32612
|
};
|
|
32596
32613
|
resident_key: {
|
|
@@ -32658,6 +32675,7 @@ declare const _default: {
|
|
|
32658
32675
|
};
|
|
32659
32676
|
resident_key: {
|
|
32660
32677
|
description: string;
|
|
32678
|
+
minLength: number;
|
|
32661
32679
|
type: string;
|
|
32662
32680
|
};
|
|
32663
32681
|
};
|
|
@@ -32676,10 +32694,12 @@ declare const _default: {
|
|
|
32676
32694
|
};
|
|
32677
32695
|
parent_site_key: {
|
|
32678
32696
|
description: string;
|
|
32697
|
+
minLength: number;
|
|
32679
32698
|
type: string;
|
|
32680
32699
|
};
|
|
32681
32700
|
room_key: {
|
|
32682
32701
|
description: string;
|
|
32702
|
+
minLength: number;
|
|
32683
32703
|
type: string;
|
|
32684
32704
|
};
|
|
32685
32705
|
};
|
|
@@ -32698,6 +32718,7 @@ declare const _default: {
|
|
|
32698
32718
|
};
|
|
32699
32719
|
site_key: {
|
|
32700
32720
|
description: string;
|
|
32721
|
+
minLength: number;
|
|
32701
32722
|
type: string;
|
|
32702
32723
|
};
|
|
32703
32724
|
};
|
|
@@ -32716,6 +32737,7 @@ declare const _default: {
|
|
|
32716
32737
|
};
|
|
32717
32738
|
space_key: {
|
|
32718
32739
|
description: string;
|
|
32740
|
+
minLength: number;
|
|
32719
32741
|
type: string;
|
|
32720
32742
|
};
|
|
32721
32743
|
};
|
|
@@ -32777,6 +32799,7 @@ declare const _default: {
|
|
|
32777
32799
|
};
|
|
32778
32800
|
tenant_key: {
|
|
32779
32801
|
description: string;
|
|
32802
|
+
minLength: number;
|
|
32780
32803
|
type: string;
|
|
32781
32804
|
};
|
|
32782
32805
|
};
|
|
@@ -32795,10 +32818,12 @@ declare const _default: {
|
|
|
32795
32818
|
};
|
|
32796
32819
|
parent_site_key: {
|
|
32797
32820
|
description: string;
|
|
32821
|
+
minLength: number;
|
|
32798
32822
|
type: string;
|
|
32799
32823
|
};
|
|
32800
32824
|
unit_key: {
|
|
32801
32825
|
description: string;
|
|
32826
|
+
minLength: number;
|
|
32802
32827
|
type: string;
|
|
32803
32828
|
};
|
|
32804
32829
|
};
|
|
@@ -32825,6 +32850,7 @@ declare const _default: {
|
|
|
32825
32850
|
};
|
|
32826
32851
|
user_identity_key: {
|
|
32827
32852
|
description: string;
|
|
32853
|
+
minLength: number;
|
|
32828
32854
|
type: string;
|
|
32829
32855
|
};
|
|
32830
32856
|
};
|
|
@@ -32851,6 +32877,7 @@ declare const _default: {
|
|
|
32851
32877
|
};
|
|
32852
32878
|
user_key: {
|
|
32853
32879
|
description: string;
|
|
32880
|
+
minLength: number;
|
|
32854
32881
|
type: string;
|
|
32855
32882
|
};
|
|
32856
32883
|
};
|
|
@@ -33183,6 +33210,7 @@ declare const _default: {
|
|
|
33183
33210
|
properties: {
|
|
33184
33211
|
access_grant_key: {
|
|
33185
33212
|
description: string;
|
|
33213
|
+
minLength: number;
|
|
33186
33214
|
type: string;
|
|
33187
33215
|
};
|
|
33188
33216
|
building_keys: {
|
|
@@ -33289,6 +33317,7 @@ declare const _default: {
|
|
|
33289
33317
|
properties: {
|
|
33290
33318
|
booking_key: {
|
|
33291
33319
|
description: string;
|
|
33320
|
+
minLength: number;
|
|
33292
33321
|
type: string;
|
|
33293
33322
|
};
|
|
33294
33323
|
building_keys: {
|
|
@@ -33395,6 +33424,7 @@ declare const _default: {
|
|
|
33395
33424
|
properties: {
|
|
33396
33425
|
building_key: {
|
|
33397
33426
|
description: string;
|
|
33427
|
+
minLength: number;
|
|
33398
33428
|
type: string;
|
|
33399
33429
|
};
|
|
33400
33430
|
name: {
|
|
@@ -33413,6 +33443,7 @@ declare const _default: {
|
|
|
33413
33443
|
properties: {
|
|
33414
33444
|
common_area_key: {
|
|
33415
33445
|
description: string;
|
|
33446
|
+
minLength: number;
|
|
33416
33447
|
type: string;
|
|
33417
33448
|
};
|
|
33418
33449
|
name: {
|
|
@@ -33421,6 +33452,7 @@ declare const _default: {
|
|
|
33421
33452
|
};
|
|
33422
33453
|
parent_site_key: {
|
|
33423
33454
|
description: string;
|
|
33455
|
+
minLength: number;
|
|
33424
33456
|
type: string;
|
|
33425
33457
|
};
|
|
33426
33458
|
};
|
|
@@ -33431,6 +33463,7 @@ declare const _default: {
|
|
|
33431
33463
|
};
|
|
33432
33464
|
customer_key: {
|
|
33433
33465
|
description: string;
|
|
33466
|
+
minLength: number;
|
|
33434
33467
|
type: string;
|
|
33435
33468
|
};
|
|
33436
33469
|
facilities: {
|
|
@@ -33439,6 +33472,7 @@ declare const _default: {
|
|
|
33439
33472
|
properties: {
|
|
33440
33473
|
facility_key: {
|
|
33441
33474
|
description: string;
|
|
33475
|
+
minLength: number;
|
|
33442
33476
|
type: string;
|
|
33443
33477
|
};
|
|
33444
33478
|
name: {
|
|
@@ -33461,6 +33495,7 @@ declare const _default: {
|
|
|
33461
33495
|
};
|
|
33462
33496
|
guest_key: {
|
|
33463
33497
|
description: string;
|
|
33498
|
+
minLength: number;
|
|
33464
33499
|
type: string;
|
|
33465
33500
|
};
|
|
33466
33501
|
name: {
|
|
@@ -33483,6 +33518,7 @@ declare const _default: {
|
|
|
33483
33518
|
properties: {
|
|
33484
33519
|
listing_key: {
|
|
33485
33520
|
description: string;
|
|
33521
|
+
minLength: number;
|
|
33486
33522
|
type: string;
|
|
33487
33523
|
};
|
|
33488
33524
|
name: {
|
|
@@ -33505,6 +33541,7 @@ declare const _default: {
|
|
|
33505
33541
|
};
|
|
33506
33542
|
property_key: {
|
|
33507
33543
|
description: string;
|
|
33544
|
+
minLength: number;
|
|
33508
33545
|
type: string;
|
|
33509
33546
|
};
|
|
33510
33547
|
};
|
|
@@ -33523,6 +33560,7 @@ declare const _default: {
|
|
|
33523
33560
|
};
|
|
33524
33561
|
property_listing_key: {
|
|
33525
33562
|
description: string;
|
|
33563
|
+
minLength: number;
|
|
33526
33564
|
type: string;
|
|
33527
33565
|
};
|
|
33528
33566
|
};
|
|
@@ -33588,6 +33626,7 @@ declare const _default: {
|
|
|
33588
33626
|
};
|
|
33589
33627
|
reservation_key: {
|
|
33590
33628
|
description: string;
|
|
33629
|
+
minLength: number;
|
|
33591
33630
|
type: string;
|
|
33592
33631
|
};
|
|
33593
33632
|
resident_key: {
|
|
@@ -33655,6 +33694,7 @@ declare const _default: {
|
|
|
33655
33694
|
};
|
|
33656
33695
|
resident_key: {
|
|
33657
33696
|
description: string;
|
|
33697
|
+
minLength: number;
|
|
33658
33698
|
type: string;
|
|
33659
33699
|
};
|
|
33660
33700
|
};
|
|
@@ -33673,10 +33713,12 @@ declare const _default: {
|
|
|
33673
33713
|
};
|
|
33674
33714
|
parent_site_key: {
|
|
33675
33715
|
description: string;
|
|
33716
|
+
minLength: number;
|
|
33676
33717
|
type: string;
|
|
33677
33718
|
};
|
|
33678
33719
|
room_key: {
|
|
33679
33720
|
description: string;
|
|
33721
|
+
minLength: number;
|
|
33680
33722
|
type: string;
|
|
33681
33723
|
};
|
|
33682
33724
|
};
|
|
@@ -33695,6 +33737,7 @@ declare const _default: {
|
|
|
33695
33737
|
};
|
|
33696
33738
|
site_key: {
|
|
33697
33739
|
description: string;
|
|
33740
|
+
minLength: number;
|
|
33698
33741
|
type: string;
|
|
33699
33742
|
};
|
|
33700
33743
|
};
|
|
@@ -33713,6 +33756,7 @@ declare const _default: {
|
|
|
33713
33756
|
};
|
|
33714
33757
|
space_key: {
|
|
33715
33758
|
description: string;
|
|
33759
|
+
minLength: number;
|
|
33716
33760
|
type: string;
|
|
33717
33761
|
};
|
|
33718
33762
|
};
|
|
@@ -33774,6 +33818,7 @@ declare const _default: {
|
|
|
33774
33818
|
};
|
|
33775
33819
|
tenant_key: {
|
|
33776
33820
|
description: string;
|
|
33821
|
+
minLength: number;
|
|
33777
33822
|
type: string;
|
|
33778
33823
|
};
|
|
33779
33824
|
};
|
|
@@ -33792,10 +33837,12 @@ declare const _default: {
|
|
|
33792
33837
|
};
|
|
33793
33838
|
parent_site_key: {
|
|
33794
33839
|
description: string;
|
|
33840
|
+
minLength: number;
|
|
33795
33841
|
type: string;
|
|
33796
33842
|
};
|
|
33797
33843
|
unit_key: {
|
|
33798
33844
|
description: string;
|
|
33845
|
+
minLength: number;
|
|
33799
33846
|
type: string;
|
|
33800
33847
|
};
|
|
33801
33848
|
};
|
|
@@ -33822,6 +33869,7 @@ declare const _default: {
|
|
|
33822
33869
|
};
|
|
33823
33870
|
user_identity_key: {
|
|
33824
33871
|
description: string;
|
|
33872
|
+
minLength: number;
|
|
33825
33873
|
type: string;
|
|
33826
33874
|
};
|
|
33827
33875
|
};
|
|
@@ -33848,6 +33896,7 @@ declare const _default: {
|
|
|
33848
33896
|
};
|
|
33849
33897
|
user_key: {
|
|
33850
33898
|
description: string;
|
|
33899
|
+
minLength: number;
|
|
33851
33900
|
type: string;
|
|
33852
33901
|
};
|
|
33853
33902
|
};
|
|
@@ -45643,7 +45692,6 @@ declare const _default: {
|
|
|
45643
45692
|
type: string;
|
|
45644
45693
|
};
|
|
45645
45694
|
device_type: {
|
|
45646
|
-
enum: string[];
|
|
45647
45695
|
type: string;
|
|
45648
45696
|
};
|
|
45649
45697
|
name: {
|
|
@@ -45757,7 +45805,6 @@ declare const _default: {
|
|
|
45757
45805
|
type: string;
|
|
45758
45806
|
};
|
|
45759
45807
|
device_type: {
|
|
45760
|
-
enum: string[];
|
|
45761
45808
|
type: string;
|
|
45762
45809
|
};
|
|
45763
45810
|
name: {
|
|
@@ -46169,6 +46216,7 @@ declare const _default: {
|
|
|
46169
46216
|
};
|
|
46170
46217
|
customer_key: {
|
|
46171
46218
|
description: string;
|
|
46219
|
+
minLength: number;
|
|
46172
46220
|
type: string;
|
|
46173
46221
|
};
|
|
46174
46222
|
device_ids: {
|
|
@@ -47367,6 +47415,7 @@ declare const _default: {
|
|
|
47367
47415
|
};
|
|
47368
47416
|
customer_key: {
|
|
47369
47417
|
description: string;
|
|
47418
|
+
minLength: number;
|
|
47370
47419
|
type: string;
|
|
47371
47420
|
};
|
|
47372
47421
|
device_ids: {
|
|
@@ -47471,6 +47520,7 @@ declare const _default: {
|
|
|
47471
47520
|
};
|
|
47472
47521
|
customer_key: {
|
|
47473
47522
|
description: string;
|
|
47523
|
+
minLength: number;
|
|
47474
47524
|
type: string;
|
|
47475
47525
|
};
|
|
47476
47526
|
device_ids: {
|
|
@@ -51332,6 +51382,7 @@ declare const _default: {
|
|
|
51332
51382
|
properties: {
|
|
51333
51383
|
customer_key: {
|
|
51334
51384
|
description: string;
|
|
51385
|
+
minLength: number;
|
|
51335
51386
|
type: string;
|
|
51336
51387
|
};
|
|
51337
51388
|
};
|
|
@@ -51403,6 +51454,7 @@ declare const _default: {
|
|
|
51403
51454
|
description: string;
|
|
51404
51455
|
enum: string[];
|
|
51405
51456
|
type: string;
|
|
51457
|
+
minLength?: never;
|
|
51406
51458
|
items?: never;
|
|
51407
51459
|
};
|
|
51408
51460
|
} | {
|
|
@@ -51411,6 +51463,7 @@ declare const _default: {
|
|
|
51411
51463
|
required: boolean;
|
|
51412
51464
|
schema: {
|
|
51413
51465
|
description: string;
|
|
51466
|
+
minLength: number;
|
|
51414
51467
|
type: string;
|
|
51415
51468
|
enum?: never;
|
|
51416
51469
|
items?: never;
|
|
@@ -51429,6 +51482,7 @@ declare const _default: {
|
|
|
51429
51482
|
};
|
|
51430
51483
|
space_key: {
|
|
51431
51484
|
description: string;
|
|
51485
|
+
minLength: number;
|
|
51432
51486
|
type: string;
|
|
51433
51487
|
};
|
|
51434
51488
|
};
|
|
@@ -51437,6 +51491,7 @@ declare const _default: {
|
|
|
51437
51491
|
};
|
|
51438
51492
|
type: string;
|
|
51439
51493
|
enum?: never;
|
|
51494
|
+
minLength?: never;
|
|
51440
51495
|
};
|
|
51441
51496
|
})[];
|
|
51442
51497
|
responses: {
|
|
@@ -51503,6 +51558,7 @@ declare const _default: {
|
|
|
51503
51558
|
};
|
|
51504
51559
|
customer_key: {
|
|
51505
51560
|
description: string;
|
|
51561
|
+
minLength: number;
|
|
51506
51562
|
type: string;
|
|
51507
51563
|
};
|
|
51508
51564
|
spaces: {
|
|
@@ -51515,6 +51571,7 @@ declare const _default: {
|
|
|
51515
51571
|
};
|
|
51516
51572
|
space_key: {
|
|
51517
51573
|
description: string;
|
|
51574
|
+
minLength: number;
|
|
51518
51575
|
type: string;
|
|
51519
51576
|
};
|
|
51520
51577
|
};
|
|
@@ -51591,6 +51648,7 @@ declare const _default: {
|
|
|
51591
51648
|
properties: {
|
|
51592
51649
|
customer_key: {
|
|
51593
51650
|
description: string;
|
|
51651
|
+
minLength: number;
|
|
51594
51652
|
type: string;
|
|
51595
51653
|
};
|
|
51596
51654
|
};
|
|
@@ -51661,6 +51719,7 @@ declare const _default: {
|
|
|
51661
51719
|
properties: {
|
|
51662
51720
|
customer_key: {
|
|
51663
51721
|
description: string;
|
|
51722
|
+
minLength: number;
|
|
51664
51723
|
type: string;
|
|
51665
51724
|
};
|
|
51666
51725
|
spaces: {
|
|
@@ -51673,6 +51732,7 @@ declare const _default: {
|
|
|
51673
51732
|
};
|
|
51674
51733
|
space_key: {
|
|
51675
51734
|
description: string;
|
|
51735
|
+
minLength: number;
|
|
51676
51736
|
type: string;
|
|
51677
51737
|
};
|
|
51678
51738
|
};
|