@seamapi/types 1.808.0 → 1.810.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 +103 -31
- package/dist/connect.cjs.map +1 -1
- package/dist/connect.d.cts +256 -31
- package/dist/index.cjs +103 -31
- package/dist/index.cjs.map +1 -1
- package/lib/seam/connect/models/batch.d.ts +33 -0
- package/lib/seam/connect/models/spaces/space.d.ts +36 -0
- package/lib/seam/connect/models/spaces/space.js +20 -0
- package/lib/seam/connect/models/spaces/space.js.map +1 -1
- package/lib/seam/connect/openapi.d.ts +92 -31
- package/lib/seam/connect/openapi.js +92 -31
- package/lib/seam/connect/openapi.js.map +1 -1
- package/lib/seam/connect/route-types.d.ts +108 -0
- package/package.json +1 -1
- package/src/lib/seam/connect/internal/schemas.ts +1 -0
- package/src/lib/seam/connect/models/spaces/space.ts +26 -0
- package/src/lib/seam/connect/openapi.ts +107 -31
- package/src/lib/seam/connect/route-types.ts +132 -0
|
@@ -181,6 +181,19 @@ export declare const batch: z.ZodObject<{
|
|
|
181
181
|
device_count: z.ZodNumber;
|
|
182
182
|
acs_entrance_count: z.ZodNumber;
|
|
183
183
|
customer_key: z.ZodOptional<z.ZodString>;
|
|
184
|
+
customer_data: z.ZodOptional<z.ZodObject<{
|
|
185
|
+
time_zone: z.ZodOptional<z.ZodNullable<z.ZodString>>;
|
|
186
|
+
default_checkin_time: z.ZodOptional<z.ZodNullable<z.ZodString>>;
|
|
187
|
+
default_checkout_time: z.ZodOptional<z.ZodNullable<z.ZodString>>;
|
|
188
|
+
}, "strip", z.ZodTypeAny, {
|
|
189
|
+
time_zone?: string | null | undefined;
|
|
190
|
+
default_checkin_time?: string | null | undefined;
|
|
191
|
+
default_checkout_time?: string | null | undefined;
|
|
192
|
+
}, {
|
|
193
|
+
time_zone?: string | null | undefined;
|
|
194
|
+
default_checkin_time?: string | null | undefined;
|
|
195
|
+
default_checkout_time?: string | null | undefined;
|
|
196
|
+
}>>;
|
|
184
197
|
parent_space_id: z.ZodOptional<z.ZodString>;
|
|
185
198
|
parent_space_key: z.ZodOptional<z.ZodString>;
|
|
186
199
|
}, "strip", z.ZodTypeAny, {
|
|
@@ -193,6 +206,11 @@ export declare const batch: z.ZodObject<{
|
|
|
193
206
|
acs_entrance_count: number;
|
|
194
207
|
customer_key?: string | undefined;
|
|
195
208
|
space_key?: string | undefined;
|
|
209
|
+
customer_data?: {
|
|
210
|
+
time_zone?: string | null | undefined;
|
|
211
|
+
default_checkin_time?: string | null | undefined;
|
|
212
|
+
default_checkout_time?: string | null | undefined;
|
|
213
|
+
} | undefined;
|
|
196
214
|
parent_space_id?: string | undefined;
|
|
197
215
|
parent_space_key?: string | undefined;
|
|
198
216
|
}, {
|
|
@@ -205,6 +223,11 @@ export declare const batch: z.ZodObject<{
|
|
|
205
223
|
acs_entrance_count: number;
|
|
206
224
|
customer_key?: string | undefined;
|
|
207
225
|
space_key?: string | undefined;
|
|
226
|
+
customer_data?: {
|
|
227
|
+
time_zone?: string | null | undefined;
|
|
228
|
+
default_checkin_time?: string | null | undefined;
|
|
229
|
+
default_checkout_time?: string | null | undefined;
|
|
230
|
+
} | undefined;
|
|
208
231
|
parent_space_id?: string | undefined;
|
|
209
232
|
parent_space_key?: string | undefined;
|
|
210
233
|
}>, "many">>;
|
|
@@ -25875,6 +25898,11 @@ export declare const batch: z.ZodObject<{
|
|
|
25875
25898
|
acs_entrance_count: number;
|
|
25876
25899
|
customer_key?: string | undefined;
|
|
25877
25900
|
space_key?: string | undefined;
|
|
25901
|
+
customer_data?: {
|
|
25902
|
+
time_zone?: string | null | undefined;
|
|
25903
|
+
default_checkin_time?: string | null | undefined;
|
|
25904
|
+
default_checkout_time?: string | null | undefined;
|
|
25905
|
+
} | undefined;
|
|
25878
25906
|
parent_space_id?: string | undefined;
|
|
25879
25907
|
parent_space_key?: string | undefined;
|
|
25880
25908
|
}[] | undefined;
|
|
@@ -30812,6 +30840,11 @@ export declare const batch: z.ZodObject<{
|
|
|
30812
30840
|
acs_entrance_count: number;
|
|
30813
30841
|
customer_key?: string | undefined;
|
|
30814
30842
|
space_key?: string | undefined;
|
|
30843
|
+
customer_data?: {
|
|
30844
|
+
time_zone?: string | null | undefined;
|
|
30845
|
+
default_checkin_time?: string | null | undefined;
|
|
30846
|
+
default_checkout_time?: string | null | undefined;
|
|
30847
|
+
} | undefined;
|
|
30815
30848
|
parent_space_id?: string | undefined;
|
|
30816
30849
|
parent_space_key?: string | undefined;
|
|
30817
30850
|
}[] | undefined;
|
|
@@ -1,4 +1,17 @@
|
|
|
1
1
|
import { z } from 'zod';
|
|
2
|
+
export declare const space_customer_data: z.ZodObject<{
|
|
3
|
+
time_zone: z.ZodOptional<z.ZodNullable<z.ZodString>>;
|
|
4
|
+
default_checkin_time: z.ZodOptional<z.ZodNullable<z.ZodString>>;
|
|
5
|
+
default_checkout_time: z.ZodOptional<z.ZodNullable<z.ZodString>>;
|
|
6
|
+
}, "strip", z.ZodTypeAny, {
|
|
7
|
+
time_zone?: string | null | undefined;
|
|
8
|
+
default_checkin_time?: string | null | undefined;
|
|
9
|
+
default_checkout_time?: string | null | undefined;
|
|
10
|
+
}, {
|
|
11
|
+
time_zone?: string | null | undefined;
|
|
12
|
+
default_checkin_time?: string | null | undefined;
|
|
13
|
+
default_checkout_time?: string | null | undefined;
|
|
14
|
+
}>;
|
|
2
15
|
export declare const space: z.ZodObject<{
|
|
3
16
|
space_id: z.ZodString;
|
|
4
17
|
workspace_id: z.ZodString;
|
|
@@ -9,6 +22,19 @@ export declare const space: z.ZodObject<{
|
|
|
9
22
|
device_count: z.ZodNumber;
|
|
10
23
|
acs_entrance_count: z.ZodNumber;
|
|
11
24
|
customer_key: z.ZodOptional<z.ZodString>;
|
|
25
|
+
customer_data: z.ZodOptional<z.ZodObject<{
|
|
26
|
+
time_zone: z.ZodOptional<z.ZodNullable<z.ZodString>>;
|
|
27
|
+
default_checkin_time: z.ZodOptional<z.ZodNullable<z.ZodString>>;
|
|
28
|
+
default_checkout_time: z.ZodOptional<z.ZodNullable<z.ZodString>>;
|
|
29
|
+
}, "strip", z.ZodTypeAny, {
|
|
30
|
+
time_zone?: string | null | undefined;
|
|
31
|
+
default_checkin_time?: string | null | undefined;
|
|
32
|
+
default_checkout_time?: string | null | undefined;
|
|
33
|
+
}, {
|
|
34
|
+
time_zone?: string | null | undefined;
|
|
35
|
+
default_checkin_time?: string | null | undefined;
|
|
36
|
+
default_checkout_time?: string | null | undefined;
|
|
37
|
+
}>>;
|
|
12
38
|
parent_space_id: z.ZodOptional<z.ZodString>;
|
|
13
39
|
parent_space_key: z.ZodOptional<z.ZodString>;
|
|
14
40
|
}, "strip", z.ZodTypeAny, {
|
|
@@ -21,6 +47,11 @@ export declare const space: z.ZodObject<{
|
|
|
21
47
|
acs_entrance_count: number;
|
|
22
48
|
customer_key?: string | undefined;
|
|
23
49
|
space_key?: string | undefined;
|
|
50
|
+
customer_data?: {
|
|
51
|
+
time_zone?: string | null | undefined;
|
|
52
|
+
default_checkin_time?: string | null | undefined;
|
|
53
|
+
default_checkout_time?: string | null | undefined;
|
|
54
|
+
} | undefined;
|
|
24
55
|
parent_space_id?: string | undefined;
|
|
25
56
|
parent_space_key?: string | undefined;
|
|
26
57
|
}, {
|
|
@@ -33,6 +64,11 @@ export declare const space: z.ZodObject<{
|
|
|
33
64
|
acs_entrance_count: number;
|
|
34
65
|
customer_key?: string | undefined;
|
|
35
66
|
space_key?: string | undefined;
|
|
67
|
+
customer_data?: {
|
|
68
|
+
time_zone?: string | null | undefined;
|
|
69
|
+
default_checkin_time?: string | null | undefined;
|
|
70
|
+
default_checkout_time?: string | null | undefined;
|
|
71
|
+
} | undefined;
|
|
36
72
|
parent_space_id?: string | undefined;
|
|
37
73
|
parent_space_key?: string | undefined;
|
|
38
74
|
}>;
|
|
@@ -1,4 +1,23 @@
|
|
|
1
1
|
import { z } from 'zod';
|
|
2
|
+
const time_of_day_re = /^([01]\d|2[0-3]):[0-5]\d(:[0-5]\d)?$/;
|
|
3
|
+
export const space_customer_data = z
|
|
4
|
+
.object({
|
|
5
|
+
time_zone: z
|
|
6
|
+
.string()
|
|
7
|
+
.nullish()
|
|
8
|
+
.describe('IANA time zone for the space, e.g. America/Los_Angeles.'),
|
|
9
|
+
default_checkin_time: z
|
|
10
|
+
.string()
|
|
11
|
+
.regex(time_of_day_re)
|
|
12
|
+
.nullish()
|
|
13
|
+
.describe('Default check-in time for reservations at the space, as HH:mm or HH:mm:ss.'),
|
|
14
|
+
default_checkout_time: z
|
|
15
|
+
.string()
|
|
16
|
+
.regex(time_of_day_re)
|
|
17
|
+
.nullish()
|
|
18
|
+
.describe('Default check-out time for reservations at the space, as HH:mm or HH:mm:ss.'),
|
|
19
|
+
})
|
|
20
|
+
.describe('Reservation/stay-related defaults for the space.');
|
|
2
21
|
export const space = z.object({
|
|
3
22
|
space_id: z.string().uuid().describe('ID of the space.'),
|
|
4
23
|
workspace_id: z
|
|
@@ -21,6 +40,7 @@ export const space = z.object({
|
|
|
21
40
|
.string()
|
|
22
41
|
.optional()
|
|
23
42
|
.describe('Customer key associated with the space.'),
|
|
43
|
+
customer_data: space_customer_data.optional(),
|
|
24
44
|
parent_space_id: z.string().uuid().optional().describe(`
|
|
25
45
|
---
|
|
26
46
|
undocumented: Only used internally.
|
|
@@ -1 +1 @@
|
|
|
1
|
-
{"version":3,"file":"space.js","sourceRoot":"","sources":["../../../../../src/lib/seam/connect/models/spaces/space.ts"],"names":[],"mappings":"AAAA,OAAO,EAAE,CAAC,EAAE,MAAM,KAAK,CAAA;AAEvB,MAAM,CAAC,MAAM,KAAK,GAAG,CAAC,CAAC,MAAM,CAAC;IAC5B,QAAQ,EAAE,CAAC,CAAC,MAAM,EAAE,CAAC,IAAI,EAAE,CAAC,QAAQ,CAAC,kBAAkB,CAAC;IACxD,YAAY,EAAE,CAAC;SACZ,MAAM,EAAE;SACR,IAAI,EAAE;SACN,QAAQ,CACP,wGAAwG,CACzG;IACH,SAAS,EAAE,CAAC;SACT,MAAM,EAAE;SACR,QAAQ,EAAE;SACV,QAAQ,CAAC,gDAAgD,CAAC;IAC7D,IAAI,EAAE,CAAC,CAAC,MAAM,EAAE,CAAC,QAAQ,CAAC,oBAAoB,CAAC;IAC/C,YAAY,EAAE,CAAC,CAAC,MAAM,EAAE,CAAC,QAAQ,CAAC,6BAA6B,CAAC;IAChE,UAAU,EAAE,CAAC;SACV,MAAM,EAAE;SACR,QAAQ,EAAE;SACV,QAAQ,CAAC,+CAA+C,CAAC;IAC5D,YAAY,EAAE,CAAC,CAAC,MAAM,EAAE,CAAC,QAAQ,CAAC,iCAAiC,CAAC;IACpE,kBAAkB,EAAE,CAAC,CAAC,MAAM,EAAE,CAAC,QAAQ,CAAC,mCAAmC,CAAC;IAC5E,YAAY,EAAE,CAAC;SACZ,MAAM,EAAE;SACR,QAAQ,EAAE;SACV,QAAQ,CAAC,yCAAyC,CAAC;IACtD,eAAe,EAAE,CAAC,CAAC,MAAM,EAAE,CAAC,IAAI,EAAE,CAAC,QAAQ,EAAE,CAAC,QAAQ,CAAC;;;;KAIpD,CAAC;IACJ,gBAAgB,EAAE,CAAC,CAAC,MAAM,EAAE,CAAC,QAAQ,EAAE,CAAC,QAAQ,CAAC;;;;KAI9C,CAAC;CACL,CAAC,CAAC,QAAQ,CAAC;;;;;;GAMT,CAAC,CAAA"}
|
|
1
|
+
{"version":3,"file":"space.js","sourceRoot":"","sources":["../../../../../src/lib/seam/connect/models/spaces/space.ts"],"names":[],"mappings":"AAAA,OAAO,EAAE,CAAC,EAAE,MAAM,KAAK,CAAA;AAEvB,MAAM,cAAc,GAAG,sCAAsC,CAAA;AAE7D,MAAM,CAAC,MAAM,mBAAmB,GAAG,CAAC;KACjC,MAAM,CAAC;IACN,SAAS,EAAE,CAAC;SACT,MAAM,EAAE;SACR,OAAO,EAAE;SACT,QAAQ,CAAC,yDAAyD,CAAC;IACtE,oBAAoB,EAAE,CAAC;SACpB,MAAM,EAAE;SACR,KAAK,CAAC,cAAc,CAAC;SACrB,OAAO,EAAE;SACT,QAAQ,CACP,4EAA4E,CAC7E;IACH,qBAAqB,EAAE,CAAC;SACrB,MAAM,EAAE;SACR,KAAK,CAAC,cAAc,CAAC;SACrB,OAAO,EAAE;SACT,QAAQ,CACP,6EAA6E,CAC9E;CACJ,CAAC;KACD,QAAQ,CAAC,kDAAkD,CAAC,CAAA;AAE/D,MAAM,CAAC,MAAM,KAAK,GAAG,CAAC,CAAC,MAAM,CAAC;IAC5B,QAAQ,EAAE,CAAC,CAAC,MAAM,EAAE,CAAC,IAAI,EAAE,CAAC,QAAQ,CAAC,kBAAkB,CAAC;IACxD,YAAY,EAAE,CAAC;SACZ,MAAM,EAAE;SACR,IAAI,EAAE;SACN,QAAQ,CACP,wGAAwG,CACzG;IACH,SAAS,EAAE,CAAC;SACT,MAAM,EAAE;SACR,QAAQ,EAAE;SACV,QAAQ,CAAC,gDAAgD,CAAC;IAC7D,IAAI,EAAE,CAAC,CAAC,MAAM,EAAE,CAAC,QAAQ,CAAC,oBAAoB,CAAC;IAC/C,YAAY,EAAE,CAAC,CAAC,MAAM,EAAE,CAAC,QAAQ,CAAC,6BAA6B,CAAC;IAChE,UAAU,EAAE,CAAC;SACV,MAAM,EAAE;SACR,QAAQ,EAAE;SACV,QAAQ,CAAC,+CAA+C,CAAC;IAC5D,YAAY,EAAE,CAAC,CAAC,MAAM,EAAE,CAAC,QAAQ,CAAC,iCAAiC,CAAC;IACpE,kBAAkB,EAAE,CAAC,CAAC,MAAM,EAAE,CAAC,QAAQ,CAAC,mCAAmC,CAAC;IAC5E,YAAY,EAAE,CAAC;SACZ,MAAM,EAAE;SACR,QAAQ,EAAE;SACV,QAAQ,CAAC,yCAAyC,CAAC;IACtD,aAAa,EAAE,mBAAmB,CAAC,QAAQ,EAAE;IAC7C,eAAe,EAAE,CAAC,CAAC,MAAM,EAAE,CAAC,IAAI,EAAE,CAAC,QAAQ,EAAE,CAAC,QAAQ,CAAC;;;;KAIpD,CAAC;IACJ,gBAAgB,EAAE,CAAC,CAAC,MAAM,EAAE,CAAC,QAAQ,EAAE,CAAC,QAAQ,CAAC;;;;KAI9C,CAAC;CACL,CAAC,CAAC,QAAQ,CAAC;;;;;;GAMT,CAAC,CAAA"}
|
|
@@ -16635,6 +16635,29 @@ declare const _default: {
|
|
|
16635
16635
|
format: string;
|
|
16636
16636
|
type: string;
|
|
16637
16637
|
};
|
|
16638
|
+
customer_data: {
|
|
16639
|
+
description: string;
|
|
16640
|
+
properties: {
|
|
16641
|
+
default_checkin_time: {
|
|
16642
|
+
description: string;
|
|
16643
|
+
nullable: boolean;
|
|
16644
|
+
pattern: string;
|
|
16645
|
+
type: string;
|
|
16646
|
+
};
|
|
16647
|
+
default_checkout_time: {
|
|
16648
|
+
description: string;
|
|
16649
|
+
nullable: boolean;
|
|
16650
|
+
pattern: string;
|
|
16651
|
+
type: string;
|
|
16652
|
+
};
|
|
16653
|
+
time_zone: {
|
|
16654
|
+
description: string;
|
|
16655
|
+
nullable: boolean;
|
|
16656
|
+
type: string;
|
|
16657
|
+
};
|
|
16658
|
+
};
|
|
16659
|
+
type: string;
|
|
16660
|
+
};
|
|
16638
16661
|
customer_key: {
|
|
16639
16662
|
description: string;
|
|
16640
16663
|
type: string;
|
|
@@ -26878,7 +26901,6 @@ declare const _default: {
|
|
|
26878
26901
|
})[];
|
|
26879
26902
|
summary: string;
|
|
26880
26903
|
tags: never[];
|
|
26881
|
-
'x-draft': string;
|
|
26882
26904
|
'x-fern-sdk-group-name': string[];
|
|
26883
26905
|
'x-fern-sdk-method-name': string;
|
|
26884
26906
|
'x-response-key': null;
|
|
@@ -26978,7 +27000,6 @@ declare const _default: {
|
|
|
26978
27000
|
})[];
|
|
26979
27001
|
summary: string;
|
|
26980
27002
|
tags: never[];
|
|
26981
|
-
'x-draft': string;
|
|
26982
27003
|
'x-fern-sdk-group-name': string[];
|
|
26983
27004
|
'x-fern-sdk-method-name': string;
|
|
26984
27005
|
'x-response-key': null;
|
|
@@ -27117,7 +27138,6 @@ declare const _default: {
|
|
|
27117
27138
|
})[];
|
|
27118
27139
|
summary: string;
|
|
27119
27140
|
tags: never[];
|
|
27120
|
-
'x-draft': string;
|
|
27121
27141
|
'x-fern-sdk-group-name': string[];
|
|
27122
27142
|
'x-fern-sdk-method-name': string;
|
|
27123
27143
|
'x-fern-sdk-return-value': string;
|
|
@@ -27186,7 +27206,6 @@ declare const _default: {
|
|
|
27186
27206
|
})[];
|
|
27187
27207
|
summary: string;
|
|
27188
27208
|
tags: never[];
|
|
27189
|
-
'x-draft': string;
|
|
27190
27209
|
'x-fern-sdk-group-name': string[];
|
|
27191
27210
|
'x-fern-sdk-method-name': string;
|
|
27192
27211
|
'x-fern-sdk-return-value': string;
|
|
@@ -27328,7 +27347,6 @@ declare const _default: {
|
|
|
27328
27347
|
summary: string;
|
|
27329
27348
|
tags: never[];
|
|
27330
27349
|
'x-batch-keys': string[];
|
|
27331
|
-
'x-draft': string;
|
|
27332
27350
|
'x-fern-sdk-group-name': string[];
|
|
27333
27351
|
'x-fern-sdk-method-name': string;
|
|
27334
27352
|
'x-fern-sdk-return-value': string;
|
|
@@ -27475,7 +27493,6 @@ declare const _default: {
|
|
|
27475
27493
|
summary: string;
|
|
27476
27494
|
tags: never[];
|
|
27477
27495
|
'x-batch-keys': string[];
|
|
27478
|
-
'x-draft': string;
|
|
27479
27496
|
'x-fern-sdk-group-name': string[];
|
|
27480
27497
|
'x-fern-sdk-method-name': string;
|
|
27481
27498
|
'x-fern-sdk-return-value': string;
|
|
@@ -27559,7 +27576,6 @@ declare const _default: {
|
|
|
27559
27576
|
})[];
|
|
27560
27577
|
summary: string;
|
|
27561
27578
|
tags: never[];
|
|
27562
|
-
'x-draft': string;
|
|
27563
27579
|
'x-fern-sdk-group-name': string[];
|
|
27564
27580
|
'x-fern-sdk-method-name': string;
|
|
27565
27581
|
'x-fern-sdk-return-value': string;
|
|
@@ -27663,7 +27679,6 @@ declare const _default: {
|
|
|
27663
27679
|
})[];
|
|
27664
27680
|
summary: string;
|
|
27665
27681
|
tags: never[];
|
|
27666
|
-
'x-draft': string;
|
|
27667
27682
|
'x-fern-sdk-group-name': string[];
|
|
27668
27683
|
'x-fern-sdk-method-name': string;
|
|
27669
27684
|
'x-fern-sdk-return-value': string;
|
|
@@ -27961,7 +27976,6 @@ declare const _default: {
|
|
|
27961
27976
|
})[];
|
|
27962
27977
|
summary: string;
|
|
27963
27978
|
tags: never[];
|
|
27964
|
-
'x-draft': string;
|
|
27965
27979
|
'x-fern-sdk-group-name': string[];
|
|
27966
27980
|
'x-fern-sdk-method-name': string;
|
|
27967
27981
|
'x-fern-sdk-return-value': string;
|
|
@@ -28264,7 +28278,6 @@ declare const _default: {
|
|
|
28264
28278
|
})[];
|
|
28265
28279
|
summary: string;
|
|
28266
28280
|
tags: never[];
|
|
28267
|
-
'x-draft': string;
|
|
28268
28281
|
'x-fern-sdk-group-name': string[];
|
|
28269
28282
|
'x-fern-sdk-method-name': string;
|
|
28270
28283
|
'x-fern-sdk-return-value': string;
|
|
@@ -28573,7 +28586,6 @@ declare const _default: {
|
|
|
28573
28586
|
})[];
|
|
28574
28587
|
summary: string;
|
|
28575
28588
|
tags: never[];
|
|
28576
|
-
'x-draft': string;
|
|
28577
28589
|
'x-fern-sdk-group-name': string[];
|
|
28578
28590
|
'x-fern-sdk-method-name': string;
|
|
28579
28591
|
'x-fern-sdk-return-value': string;
|
|
@@ -28902,7 +28914,6 @@ declare const _default: {
|
|
|
28902
28914
|
})[];
|
|
28903
28915
|
summary: string;
|
|
28904
28916
|
tags: never[];
|
|
28905
|
-
'x-draft': string;
|
|
28906
28917
|
'x-fern-sdk-group-name': string[];
|
|
28907
28918
|
'x-fern-sdk-method-name': string;
|
|
28908
28919
|
'x-fern-sdk-return-value': string;
|
|
@@ -62285,7 +62296,6 @@ declare const _default: {
|
|
|
62285
62296
|
})[];
|
|
62286
62297
|
summary: string;
|
|
62287
62298
|
tags: never[];
|
|
62288
|
-
'x-draft': string;
|
|
62289
62299
|
'x-fern-sdk-group-name': string[];
|
|
62290
62300
|
'x-fern-sdk-method-name': string;
|
|
62291
62301
|
'x-response-key': null;
|
|
@@ -62367,7 +62377,6 @@ declare const _default: {
|
|
|
62367
62377
|
})[];
|
|
62368
62378
|
summary: string;
|
|
62369
62379
|
tags: never[];
|
|
62370
|
-
'x-draft': string;
|
|
62371
62380
|
'x-fern-sdk-group-name': string[];
|
|
62372
62381
|
'x-fern-sdk-method-name': string;
|
|
62373
62382
|
'x-response-key': null;
|
|
@@ -62451,7 +62460,6 @@ declare const _default: {
|
|
|
62451
62460
|
})[];
|
|
62452
62461
|
summary: string;
|
|
62453
62462
|
tags: never[];
|
|
62454
|
-
'x-draft': string;
|
|
62455
62463
|
'x-fern-sdk-group-name': string[];
|
|
62456
62464
|
'x-fern-sdk-method-name': string;
|
|
62457
62465
|
'x-response-key': null;
|
|
@@ -62533,7 +62541,6 @@ declare const _default: {
|
|
|
62533
62541
|
})[];
|
|
62534
62542
|
summary: string;
|
|
62535
62543
|
tags: never[];
|
|
62536
|
-
'x-draft': string;
|
|
62537
62544
|
'x-fern-sdk-group-name': string[];
|
|
62538
62545
|
'x-fern-sdk-method-name': string;
|
|
62539
62546
|
'x-response-key': null;
|
|
@@ -62557,6 +62564,29 @@ declare const _default: {
|
|
|
62557
62564
|
};
|
|
62558
62565
|
type: string;
|
|
62559
62566
|
};
|
|
62567
|
+
customer_data: {
|
|
62568
|
+
description: string;
|
|
62569
|
+
properties: {
|
|
62570
|
+
default_checkin_time: {
|
|
62571
|
+
description: string;
|
|
62572
|
+
nullable: boolean;
|
|
62573
|
+
pattern: string;
|
|
62574
|
+
type: string;
|
|
62575
|
+
};
|
|
62576
|
+
default_checkout_time: {
|
|
62577
|
+
description: string;
|
|
62578
|
+
nullable: boolean;
|
|
62579
|
+
pattern: string;
|
|
62580
|
+
type: string;
|
|
62581
|
+
};
|
|
62582
|
+
time_zone: {
|
|
62583
|
+
description: string;
|
|
62584
|
+
nullable: boolean;
|
|
62585
|
+
type: string;
|
|
62586
|
+
};
|
|
62587
|
+
};
|
|
62588
|
+
type: string;
|
|
62589
|
+
};
|
|
62560
62590
|
customer_key: {
|
|
62561
62591
|
description: string;
|
|
62562
62592
|
minLength: number;
|
|
@@ -62635,7 +62665,6 @@ declare const _default: {
|
|
|
62635
62665
|
})[];
|
|
62636
62666
|
summary: string;
|
|
62637
62667
|
tags: never[];
|
|
62638
|
-
'x-draft': string;
|
|
62639
62668
|
'x-fern-sdk-group-name': string[];
|
|
62640
62669
|
'x-fern-sdk-method-name': string;
|
|
62641
62670
|
'x-fern-sdk-return-value': string;
|
|
@@ -62711,7 +62740,6 @@ declare const _default: {
|
|
|
62711
62740
|
})[];
|
|
62712
62741
|
summary: string;
|
|
62713
62742
|
tags: never[];
|
|
62714
|
-
'x-draft': string;
|
|
62715
62743
|
'x-fern-sdk-group-name': string[];
|
|
62716
62744
|
'x-fern-sdk-method-name': string;
|
|
62717
62745
|
'x-response-key': null;
|
|
@@ -62784,7 +62812,6 @@ declare const _default: {
|
|
|
62784
62812
|
})[];
|
|
62785
62813
|
summary: string;
|
|
62786
62814
|
tags: never[];
|
|
62787
|
-
'x-draft': string;
|
|
62788
62815
|
'x-fern-sdk-group-name': string[];
|
|
62789
62816
|
'x-fern-sdk-method-name': string;
|
|
62790
62817
|
'x-response-key': null;
|
|
@@ -62845,7 +62872,6 @@ declare const _default: {
|
|
|
62845
62872
|
})[];
|
|
62846
62873
|
summary: string;
|
|
62847
62874
|
tags: never[];
|
|
62848
|
-
'x-draft': string;
|
|
62849
62875
|
'x-fern-sdk-group-name': string[];
|
|
62850
62876
|
'x-fern-sdk-method-name': string;
|
|
62851
62877
|
'x-fern-sdk-return-value': string;
|
|
@@ -62935,7 +62961,6 @@ declare const _default: {
|
|
|
62935
62961
|
})[];
|
|
62936
62962
|
summary: string;
|
|
62937
62963
|
tags: never[];
|
|
62938
|
-
'x-draft': string;
|
|
62939
62964
|
'x-fern-sdk-group-name': string[];
|
|
62940
62965
|
'x-fern-sdk-method-name': string;
|
|
62941
62966
|
'x-fern-sdk-return-value': string;
|
|
@@ -63075,7 +63100,6 @@ declare const _default: {
|
|
|
63075
63100
|
summary: string;
|
|
63076
63101
|
tags: never[];
|
|
63077
63102
|
'x-batch-keys': string[];
|
|
63078
|
-
'x-draft': string;
|
|
63079
63103
|
'x-fern-sdk-group-name': string[];
|
|
63080
63104
|
'x-fern-sdk-method-name': string;
|
|
63081
63105
|
'x-fern-sdk-return-value': string;
|
|
@@ -63216,7 +63240,6 @@ declare const _default: {
|
|
|
63216
63240
|
summary: string;
|
|
63217
63241
|
tags: never[];
|
|
63218
63242
|
'x-batch-keys': string[];
|
|
63219
|
-
'x-draft': string;
|
|
63220
63243
|
'x-fern-sdk-group-name': string[];
|
|
63221
63244
|
'x-fern-sdk-method-name': string;
|
|
63222
63245
|
'x-fern-sdk-return-value': string;
|
|
@@ -63350,7 +63373,6 @@ declare const _default: {
|
|
|
63350
63373
|
})[];
|
|
63351
63374
|
summary: string;
|
|
63352
63375
|
tags: never[];
|
|
63353
|
-
'x-draft': string;
|
|
63354
63376
|
'x-fern-sdk-group-name': string[];
|
|
63355
63377
|
'x-fern-sdk-method-name': string;
|
|
63356
63378
|
'x-fern-sdk-return-value': string;
|
|
@@ -63458,7 +63480,6 @@ declare const _default: {
|
|
|
63458
63480
|
})[];
|
|
63459
63481
|
summary: string;
|
|
63460
63482
|
tags: never[];
|
|
63461
|
-
'x-draft': string;
|
|
63462
63483
|
'x-fern-sdk-group-name': string[];
|
|
63463
63484
|
'x-fern-sdk-method-name': string;
|
|
63464
63485
|
'x-fern-sdk-return-value': string;
|
|
@@ -63541,7 +63562,6 @@ declare const _default: {
|
|
|
63541
63562
|
})[];
|
|
63542
63563
|
summary: string;
|
|
63543
63564
|
tags: never[];
|
|
63544
|
-
'x-draft': string;
|
|
63545
63565
|
'x-fern-sdk-group-name': string[];
|
|
63546
63566
|
'x-fern-sdk-method-name': string;
|
|
63547
63567
|
'x-response-key': null;
|
|
@@ -63622,7 +63642,6 @@ declare const _default: {
|
|
|
63622
63642
|
})[];
|
|
63623
63643
|
summary: string;
|
|
63624
63644
|
tags: never[];
|
|
63625
|
-
'x-draft': string;
|
|
63626
63645
|
'x-fern-sdk-group-name': string[];
|
|
63627
63646
|
'x-fern-sdk-method-name': string;
|
|
63628
63647
|
'x-response-key': null;
|
|
@@ -63704,7 +63723,6 @@ declare const _default: {
|
|
|
63704
63723
|
})[];
|
|
63705
63724
|
summary: string;
|
|
63706
63725
|
tags: never[];
|
|
63707
|
-
'x-draft': string;
|
|
63708
63726
|
'x-fern-sdk-group-name': string[];
|
|
63709
63727
|
'x-fern-sdk-method-name': string;
|
|
63710
63728
|
'x-response-key': null;
|
|
@@ -63785,7 +63803,6 @@ declare const _default: {
|
|
|
63785
63803
|
})[];
|
|
63786
63804
|
summary: string;
|
|
63787
63805
|
tags: never[];
|
|
63788
|
-
'x-draft': string;
|
|
63789
63806
|
'x-fern-sdk-group-name': string[];
|
|
63790
63807
|
'x-fern-sdk-method-name': string;
|
|
63791
63808
|
'x-response-key': null;
|
|
@@ -63809,6 +63826,29 @@ declare const _default: {
|
|
|
63809
63826
|
};
|
|
63810
63827
|
type: string;
|
|
63811
63828
|
};
|
|
63829
|
+
customer_data: {
|
|
63830
|
+
description: string;
|
|
63831
|
+
properties: {
|
|
63832
|
+
default_checkin_time: {
|
|
63833
|
+
description: string;
|
|
63834
|
+
nullable: boolean;
|
|
63835
|
+
pattern: string;
|
|
63836
|
+
type: string;
|
|
63837
|
+
};
|
|
63838
|
+
default_checkout_time: {
|
|
63839
|
+
description: string;
|
|
63840
|
+
nullable: boolean;
|
|
63841
|
+
pattern: string;
|
|
63842
|
+
type: string;
|
|
63843
|
+
};
|
|
63844
|
+
time_zone: {
|
|
63845
|
+
description: string;
|
|
63846
|
+
nullable: boolean;
|
|
63847
|
+
type: string;
|
|
63848
|
+
};
|
|
63849
|
+
};
|
|
63850
|
+
type: string;
|
|
63851
|
+
};
|
|
63812
63852
|
customer_key: {
|
|
63813
63853
|
description: string;
|
|
63814
63854
|
minLength: number;
|
|
@@ -63891,7 +63931,6 @@ declare const _default: {
|
|
|
63891
63931
|
})[];
|
|
63892
63932
|
summary: string;
|
|
63893
63933
|
tags: never[];
|
|
63894
|
-
'x-draft': string;
|
|
63895
63934
|
'x-fern-sdk-group-name': string[];
|
|
63896
63935
|
'x-fern-sdk-method-name': string;
|
|
63897
63936
|
'x-fern-sdk-return-value': string;
|
|
@@ -63914,6 +63953,29 @@ declare const _default: {
|
|
|
63914
63953
|
};
|
|
63915
63954
|
type: string;
|
|
63916
63955
|
};
|
|
63956
|
+
customer_data: {
|
|
63957
|
+
description: string;
|
|
63958
|
+
properties: {
|
|
63959
|
+
default_checkin_time: {
|
|
63960
|
+
description: string;
|
|
63961
|
+
nullable: boolean;
|
|
63962
|
+
pattern: string;
|
|
63963
|
+
type: string;
|
|
63964
|
+
};
|
|
63965
|
+
default_checkout_time: {
|
|
63966
|
+
description: string;
|
|
63967
|
+
nullable: boolean;
|
|
63968
|
+
pattern: string;
|
|
63969
|
+
type: string;
|
|
63970
|
+
};
|
|
63971
|
+
time_zone: {
|
|
63972
|
+
description: string;
|
|
63973
|
+
nullable: boolean;
|
|
63974
|
+
type: string;
|
|
63975
|
+
};
|
|
63976
|
+
};
|
|
63977
|
+
type: string;
|
|
63978
|
+
};
|
|
63917
63979
|
customer_key: {
|
|
63918
63980
|
description: string;
|
|
63919
63981
|
minLength: number;
|
|
@@ -63996,7 +64058,6 @@ declare const _default: {
|
|
|
63996
64058
|
})[];
|
|
63997
64059
|
summary: string;
|
|
63998
64060
|
tags: never[];
|
|
63999
|
-
'x-draft': string;
|
|
64000
64061
|
'x-fern-sdk-group-name': string[];
|
|
64001
64062
|
'x-fern-sdk-method-name': string;
|
|
64002
64063
|
'x-fern-sdk-return-value': string;
|