@seamapi/types 1.809.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 -0
- package/dist/connect.cjs.map +1 -1
- package/dist/connect.d.cts +256 -0
- package/dist/index.cjs +103 -0
- 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 -0
- package/lib/seam/connect/openapi.js +92 -0
- 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 -0
- package/src/lib/seam/connect/route-types.ts +132 -0
|
@@ -11372,6 +11372,15 @@ export type Routes = {
|
|
|
11372
11372
|
acs_entrance_count: number;
|
|
11373
11373
|
/** Customer key associated with the space. */
|
|
11374
11374
|
customer_key?: string | undefined;
|
|
11375
|
+
/** Reservation/stay-related defaults for the space. */
|
|
11376
|
+
customer_data?: {
|
|
11377
|
+
/** IANA time zone for the space, e.g. America/Los_Angeles. */
|
|
11378
|
+
time_zone?: (string | null) | undefined;
|
|
11379
|
+
/** Default check-in time for reservations at the space, as HH:mm or HH:mm:ss. */
|
|
11380
|
+
default_checkin_time?: (string | null) | undefined;
|
|
11381
|
+
/** Default check-out time for reservations at the space, as HH:mm or HH:mm:ss. */
|
|
11382
|
+
default_checkout_time?: (string | null) | undefined;
|
|
11383
|
+
} | undefined;
|
|
11375
11384
|
/** */
|
|
11376
11385
|
parent_space_id?: string | undefined;
|
|
11377
11386
|
/** */
|
|
@@ -15735,6 +15744,15 @@ export type Routes = {
|
|
|
15735
15744
|
acs_entrance_count: number;
|
|
15736
15745
|
/** Customer key associated with the space. */
|
|
15737
15746
|
customer_key?: string | undefined;
|
|
15747
|
+
/** Reservation/stay-related defaults for the space. */
|
|
15748
|
+
customer_data?: {
|
|
15749
|
+
/** IANA time zone for the space, e.g. America/Los_Angeles. */
|
|
15750
|
+
time_zone?: (string | null) | undefined;
|
|
15751
|
+
/** Default check-in time for reservations at the space, as HH:mm or HH:mm:ss. */
|
|
15752
|
+
default_checkin_time?: (string | null) | undefined;
|
|
15753
|
+
/** Default check-out time for reservations at the space, as HH:mm or HH:mm:ss. */
|
|
15754
|
+
default_checkout_time?: (string | null) | undefined;
|
|
15755
|
+
} | undefined;
|
|
15738
15756
|
/** */
|
|
15739
15757
|
parent_space_id?: string | undefined;
|
|
15740
15758
|
/** */
|
|
@@ -67553,6 +67571,15 @@ export type Routes = {
|
|
|
67553
67571
|
acs_entrance_count: number;
|
|
67554
67572
|
/** Customer key associated with the space. */
|
|
67555
67573
|
customer_key?: string | undefined;
|
|
67574
|
+
/** Reservation/stay-related defaults for the space. */
|
|
67575
|
+
customer_data?: {
|
|
67576
|
+
/** IANA time zone for the space, e.g. America/Los_Angeles. */
|
|
67577
|
+
time_zone?: (string | null) | undefined;
|
|
67578
|
+
/** Default check-in time for reservations at the space, as HH:mm or HH:mm:ss. */
|
|
67579
|
+
default_checkin_time?: (string | null) | undefined;
|
|
67580
|
+
/** Default check-out time for reservations at the space, as HH:mm or HH:mm:ss. */
|
|
67581
|
+
default_checkout_time?: (string | null) | undefined;
|
|
67582
|
+
} | undefined;
|
|
67556
67583
|
/** */
|
|
67557
67584
|
parent_space_id?: string | undefined;
|
|
67558
67585
|
/** */
|
|
@@ -67595,6 +67622,15 @@ export type Routes = {
|
|
|
67595
67622
|
acs_entrance_count: number;
|
|
67596
67623
|
/** Customer key associated with the space. */
|
|
67597
67624
|
customer_key?: string | undefined;
|
|
67625
|
+
/** Reservation/stay-related defaults for the space. */
|
|
67626
|
+
customer_data?: {
|
|
67627
|
+
/** IANA time zone for the space, e.g. America/Los_Angeles. */
|
|
67628
|
+
time_zone?: (string | null) | undefined;
|
|
67629
|
+
/** Default check-in time for reservations at the space, as HH:mm or HH:mm:ss. */
|
|
67630
|
+
default_checkin_time?: (string | null) | undefined;
|
|
67631
|
+
/** Default check-out time for reservations at the space, as HH:mm or HH:mm:ss. */
|
|
67632
|
+
default_checkout_time?: (string | null) | undefined;
|
|
67633
|
+
} | undefined;
|
|
67598
67634
|
/** */
|
|
67599
67635
|
parent_space_id?: string | undefined;
|
|
67600
67636
|
/** */
|
|
@@ -68603,6 +68639,15 @@ export type Routes = {
|
|
|
68603
68639
|
acs_entrance_ids?: string[] | undefined;
|
|
68604
68640
|
/** Customer key for which you want to create the space. */
|
|
68605
68641
|
customer_key?: string | undefined;
|
|
68642
|
+
/** Reservation/stay-related defaults for the space. */
|
|
68643
|
+
customer_data?: {
|
|
68644
|
+
/** IANA time zone for the space, e.g. America/Los_Angeles. */
|
|
68645
|
+
time_zone?: (string | null) | undefined;
|
|
68646
|
+
/** Default check-in time for reservations at the space, as HH:mm or HH:mm:ss. */
|
|
68647
|
+
default_checkin_time?: (string | null) | undefined;
|
|
68648
|
+
/** Default check-out time for reservations at the space, as HH:mm or HH:mm:ss. */
|
|
68649
|
+
default_checkout_time?: (string | null) | undefined;
|
|
68650
|
+
} | undefined;
|
|
68606
68651
|
};
|
|
68607
68652
|
commonParams: {};
|
|
68608
68653
|
formData: {};
|
|
@@ -68627,6 +68672,15 @@ export type Routes = {
|
|
|
68627
68672
|
acs_entrance_count: number;
|
|
68628
68673
|
/** Customer key associated with the space. */
|
|
68629
68674
|
customer_key?: string | undefined;
|
|
68675
|
+
/** Reservation/stay-related defaults for the space. */
|
|
68676
|
+
customer_data?: {
|
|
68677
|
+
/** IANA time zone for the space, e.g. America/Los_Angeles. */
|
|
68678
|
+
time_zone?: (string | null) | undefined;
|
|
68679
|
+
/** Default check-in time for reservations at the space, as HH:mm or HH:mm:ss. */
|
|
68680
|
+
default_checkin_time?: (string | null) | undefined;
|
|
68681
|
+
/** Default check-out time for reservations at the space, as HH:mm or HH:mm:ss. */
|
|
68682
|
+
default_checkout_time?: (string | null) | undefined;
|
|
68683
|
+
} | undefined;
|
|
68630
68684
|
/** */
|
|
68631
68685
|
parent_space_id?: string | undefined;
|
|
68632
68686
|
/** */
|
|
@@ -68682,6 +68736,15 @@ export type Routes = {
|
|
|
68682
68736
|
acs_entrance_count: number;
|
|
68683
68737
|
/** Customer key associated with the space. */
|
|
68684
68738
|
customer_key?: string | undefined;
|
|
68739
|
+
/** Reservation/stay-related defaults for the space. */
|
|
68740
|
+
customer_data?: {
|
|
68741
|
+
/** IANA time zone for the space, e.g. America/Los_Angeles. */
|
|
68742
|
+
time_zone?: (string | null) | undefined;
|
|
68743
|
+
/** Default check-in time for reservations at the space, as HH:mm or HH:mm:ss. */
|
|
68744
|
+
default_checkin_time?: (string | null) | undefined;
|
|
68745
|
+
/** Default check-out time for reservations at the space, as HH:mm or HH:mm:ss. */
|
|
68746
|
+
default_checkout_time?: (string | null) | undefined;
|
|
68747
|
+
} | undefined;
|
|
68685
68748
|
/** */
|
|
68686
68749
|
parent_space_id?: string | undefined;
|
|
68687
68750
|
/** */
|
|
@@ -68726,6 +68789,15 @@ export type Routes = {
|
|
|
68726
68789
|
acs_entrance_count: number;
|
|
68727
68790
|
/** Customer key associated with the space. */
|
|
68728
68791
|
customer_key?: string | undefined;
|
|
68792
|
+
/** Reservation/stay-related defaults for the space. */
|
|
68793
|
+
customer_data?: {
|
|
68794
|
+
/** IANA time zone for the space, e.g. America/Los_Angeles. */
|
|
68795
|
+
time_zone?: (string | null) | undefined;
|
|
68796
|
+
/** Default check-in time for reservations at the space, as HH:mm or HH:mm:ss. */
|
|
68797
|
+
default_checkin_time?: (string | null) | undefined;
|
|
68798
|
+
/** Default check-out time for reservations at the space, as HH:mm or HH:mm:ss. */
|
|
68799
|
+
default_checkout_time?: (string | null) | undefined;
|
|
68800
|
+
} | undefined;
|
|
68729
68801
|
/** */
|
|
68730
68802
|
parent_space_id?: string | undefined;
|
|
68731
68803
|
/** */
|
|
@@ -70596,6 +70668,15 @@ export type Routes = {
|
|
|
70596
70668
|
acs_entrance_count: number;
|
|
70597
70669
|
/** Customer key associated with the space. */
|
|
70598
70670
|
customer_key?: string | undefined;
|
|
70671
|
+
/** Reservation/stay-related defaults for the space. */
|
|
70672
|
+
customer_data?: {
|
|
70673
|
+
/** IANA time zone for the space, e.g. America/Los_Angeles. */
|
|
70674
|
+
time_zone?: (string | null) | undefined;
|
|
70675
|
+
/** Default check-in time for reservations at the space, as HH:mm or HH:mm:ss. */
|
|
70676
|
+
default_checkin_time?: (string | null) | undefined;
|
|
70677
|
+
/** Default check-out time for reservations at the space, as HH:mm or HH:mm:ss. */
|
|
70678
|
+
default_checkout_time?: (string | null) | undefined;
|
|
70679
|
+
} | undefined;
|
|
70599
70680
|
/** */
|
|
70600
70681
|
parent_space_id?: string | undefined;
|
|
70601
70682
|
/** */
|
|
@@ -70660,6 +70741,15 @@ export type Routes = {
|
|
|
70660
70741
|
acs_entrance_ids?: string[] | undefined;
|
|
70661
70742
|
/** Customer key for which you want to update the space. */
|
|
70662
70743
|
customer_key?: string | undefined;
|
|
70744
|
+
/** Reservation/stay-related defaults for the space. Only the keys you provide are updated; omit a key to leave it unchanged. Pass null on a key to clear it. */
|
|
70745
|
+
customer_data?: {
|
|
70746
|
+
/** IANA time zone for the space, e.g. America/Los_Angeles. */
|
|
70747
|
+
time_zone?: (string | null) | undefined;
|
|
70748
|
+
/** Default check-in time for reservations at the space, as HH:mm or HH:mm:ss. */
|
|
70749
|
+
default_checkin_time?: (string | null) | undefined;
|
|
70750
|
+
/** Default check-out time for reservations at the space, as HH:mm or HH:mm:ss. */
|
|
70751
|
+
default_checkout_time?: (string | null) | undefined;
|
|
70752
|
+
} | undefined;
|
|
70663
70753
|
};
|
|
70664
70754
|
commonParams: {};
|
|
70665
70755
|
formData: {};
|
|
@@ -70684,6 +70774,15 @@ export type Routes = {
|
|
|
70684
70774
|
acs_entrance_count: number;
|
|
70685
70775
|
/** Customer key associated with the space. */
|
|
70686
70776
|
customer_key?: string | undefined;
|
|
70777
|
+
/** Reservation/stay-related defaults for the space. */
|
|
70778
|
+
customer_data?: {
|
|
70779
|
+
/** IANA time zone for the space, e.g. America/Los_Angeles. */
|
|
70780
|
+
time_zone?: (string | null) | undefined;
|
|
70781
|
+
/** Default check-in time for reservations at the space, as HH:mm or HH:mm:ss. */
|
|
70782
|
+
default_checkin_time?: (string | null) | undefined;
|
|
70783
|
+
/** Default check-out time for reservations at the space, as HH:mm or HH:mm:ss. */
|
|
70784
|
+
default_checkout_time?: (string | null) | undefined;
|
|
70785
|
+
} | undefined;
|
|
70687
70786
|
/** */
|
|
70688
70787
|
parent_space_id?: string | undefined;
|
|
70689
70788
|
/** */
|
|
@@ -95906,6 +96005,15 @@ export type Routes = {
|
|
|
95906
96005
|
acs_entrance_count: number;
|
|
95907
96006
|
/** Customer key associated with the space. */
|
|
95908
96007
|
customer_key?: string | undefined;
|
|
96008
|
+
/** Reservation/stay-related defaults for the space. */
|
|
96009
|
+
customer_data?: {
|
|
96010
|
+
/** IANA time zone for the space, e.g. America/Los_Angeles. */
|
|
96011
|
+
time_zone?: (string | null) | undefined;
|
|
96012
|
+
/** Default check-in time for reservations at the space, as HH:mm or HH:mm:ss. */
|
|
96013
|
+
default_checkin_time?: (string | null) | undefined;
|
|
96014
|
+
/** Default check-out time for reservations at the space, as HH:mm or HH:mm:ss. */
|
|
96015
|
+
default_checkout_time?: (string | null) | undefined;
|
|
96016
|
+
} | undefined;
|
|
95909
96017
|
/** */
|
|
95910
96018
|
parent_space_id?: string | undefined;
|
|
95911
96019
|
/** */
|
package/package.json
CHANGED
|
@@ -1,5 +1,30 @@
|
|
|
1
1
|
import { z } from 'zod'
|
|
2
2
|
|
|
3
|
+
const time_of_day_re = /^([01]\d|2[0-3]):[0-5]\d(:[0-5]\d)?$/
|
|
4
|
+
|
|
5
|
+
export const space_customer_data = z
|
|
6
|
+
.object({
|
|
7
|
+
time_zone: z
|
|
8
|
+
.string()
|
|
9
|
+
.nullish()
|
|
10
|
+
.describe('IANA time zone for the space, e.g. America/Los_Angeles.'),
|
|
11
|
+
default_checkin_time: z
|
|
12
|
+
.string()
|
|
13
|
+
.regex(time_of_day_re)
|
|
14
|
+
.nullish()
|
|
15
|
+
.describe(
|
|
16
|
+
'Default check-in time for reservations at the space, as HH:mm or HH:mm:ss.',
|
|
17
|
+
),
|
|
18
|
+
default_checkout_time: z
|
|
19
|
+
.string()
|
|
20
|
+
.regex(time_of_day_re)
|
|
21
|
+
.nullish()
|
|
22
|
+
.describe(
|
|
23
|
+
'Default check-out time for reservations at the space, as HH:mm or HH:mm:ss.',
|
|
24
|
+
),
|
|
25
|
+
})
|
|
26
|
+
.describe('Reservation/stay-related defaults for the space.')
|
|
27
|
+
|
|
3
28
|
export const space = z.object({
|
|
4
29
|
space_id: z.string().uuid().describe('ID of the space.'),
|
|
5
30
|
workspace_id: z
|
|
@@ -24,6 +49,7 @@ export const space = z.object({
|
|
|
24
49
|
.string()
|
|
25
50
|
.optional()
|
|
26
51
|
.describe('Customer key associated with the space.'),
|
|
52
|
+
customer_data: space_customer_data.optional(),
|
|
27
53
|
parent_space_id: z.string().uuid().optional().describe(`
|
|
28
54
|
---
|
|
29
55
|
undocumented: Only used internally.
|
|
@@ -25784,6 +25784,32 @@ export default {
|
|
|
25784
25784
|
format: 'date-time',
|
|
25785
25785
|
type: 'string',
|
|
25786
25786
|
},
|
|
25787
|
+
customer_data: {
|
|
25788
|
+
description: 'Reservation/stay-related defaults for the space.',
|
|
25789
|
+
properties: {
|
|
25790
|
+
default_checkin_time: {
|
|
25791
|
+
description:
|
|
25792
|
+
'Default check-in time for reservations at the space, as HH:mm or HH:mm:ss.',
|
|
25793
|
+
nullable: true,
|
|
25794
|
+
pattern: '^([01]\\d|2[0-3]):[0-5]\\d(:[0-5]\\d)?$',
|
|
25795
|
+
type: 'string',
|
|
25796
|
+
},
|
|
25797
|
+
default_checkout_time: {
|
|
25798
|
+
description:
|
|
25799
|
+
'Default check-out time for reservations at the space, as HH:mm or HH:mm:ss.',
|
|
25800
|
+
nullable: true,
|
|
25801
|
+
pattern: '^([01]\\d|2[0-3]):[0-5]\\d(:[0-5]\\d)?$',
|
|
25802
|
+
type: 'string',
|
|
25803
|
+
},
|
|
25804
|
+
time_zone: {
|
|
25805
|
+
description:
|
|
25806
|
+
'IANA time zone for the space, e.g. America/Los_Angeles.',
|
|
25807
|
+
nullable: true,
|
|
25808
|
+
type: 'string',
|
|
25809
|
+
},
|
|
25810
|
+
},
|
|
25811
|
+
type: 'object',
|
|
25812
|
+
},
|
|
25787
25813
|
customer_key: {
|
|
25788
25814
|
description: 'Customer key associated with the space.',
|
|
25789
25815
|
type: 'string',
|
|
@@ -73637,6 +73663,33 @@ export default {
|
|
|
73637
73663
|
items: { format: 'uuid', type: 'string' },
|
|
73638
73664
|
type: 'array',
|
|
73639
73665
|
},
|
|
73666
|
+
customer_data: {
|
|
73667
|
+
description:
|
|
73668
|
+
'Reservation/stay-related defaults for the space.',
|
|
73669
|
+
properties: {
|
|
73670
|
+
default_checkin_time: {
|
|
73671
|
+
description:
|
|
73672
|
+
'Default check-in time for reservations at the space, as HH:mm or HH:mm:ss.',
|
|
73673
|
+
nullable: true,
|
|
73674
|
+
pattern: '^([01]\\d|2[0-3]):[0-5]\\d(:[0-5]\\d)?$',
|
|
73675
|
+
type: 'string',
|
|
73676
|
+
},
|
|
73677
|
+
default_checkout_time: {
|
|
73678
|
+
description:
|
|
73679
|
+
'Default check-out time for reservations at the space, as HH:mm or HH:mm:ss.',
|
|
73680
|
+
nullable: true,
|
|
73681
|
+
pattern: '^([01]\\d|2[0-3]):[0-5]\\d(:[0-5]\\d)?$',
|
|
73682
|
+
type: 'string',
|
|
73683
|
+
},
|
|
73684
|
+
time_zone: {
|
|
73685
|
+
description:
|
|
73686
|
+
'IANA time zone for the space, e.g. America/Los_Angeles.',
|
|
73687
|
+
nullable: true,
|
|
73688
|
+
type: 'string',
|
|
73689
|
+
},
|
|
73690
|
+
},
|
|
73691
|
+
type: 'object',
|
|
73692
|
+
},
|
|
73640
73693
|
customer_key: {
|
|
73641
73694
|
description:
|
|
73642
73695
|
'Customer key for which you want to create the space.',
|
|
@@ -74602,6 +74655,33 @@ export default {
|
|
|
74602
74655
|
items: { format: 'uuid', type: 'string' },
|
|
74603
74656
|
type: 'array',
|
|
74604
74657
|
},
|
|
74658
|
+
customer_data: {
|
|
74659
|
+
description:
|
|
74660
|
+
'Reservation/stay-related defaults for the space. Only the keys you provide are updated; omit a key to leave it unchanged. Pass null on a key to clear it.',
|
|
74661
|
+
properties: {
|
|
74662
|
+
default_checkin_time: {
|
|
74663
|
+
description:
|
|
74664
|
+
'Default check-in time for reservations at the space, as HH:mm or HH:mm:ss.',
|
|
74665
|
+
nullable: true,
|
|
74666
|
+
pattern: '^([01]\\d|2[0-3]):[0-5]\\d(:[0-5]\\d)?$',
|
|
74667
|
+
type: 'string',
|
|
74668
|
+
},
|
|
74669
|
+
default_checkout_time: {
|
|
74670
|
+
description:
|
|
74671
|
+
'Default check-out time for reservations at the space, as HH:mm or HH:mm:ss.',
|
|
74672
|
+
nullable: true,
|
|
74673
|
+
pattern: '^([01]\\d|2[0-3]):[0-5]\\d(:[0-5]\\d)?$',
|
|
74674
|
+
type: 'string',
|
|
74675
|
+
},
|
|
74676
|
+
time_zone: {
|
|
74677
|
+
description:
|
|
74678
|
+
'IANA time zone for the space, e.g. America/Los_Angeles.',
|
|
74679
|
+
nullable: true,
|
|
74680
|
+
type: 'string',
|
|
74681
|
+
},
|
|
74682
|
+
},
|
|
74683
|
+
type: 'object',
|
|
74684
|
+
},
|
|
74605
74685
|
customer_key: {
|
|
74606
74686
|
description:
|
|
74607
74687
|
'Customer key for which you want to update the space.',
|
|
@@ -74678,6 +74758,33 @@ export default {
|
|
|
74678
74758
|
items: { format: 'uuid', type: 'string' },
|
|
74679
74759
|
type: 'array',
|
|
74680
74760
|
},
|
|
74761
|
+
customer_data: {
|
|
74762
|
+
description:
|
|
74763
|
+
'Reservation/stay-related defaults for the space. Only the keys you provide are updated; omit a key to leave it unchanged. Pass null on a key to clear it.',
|
|
74764
|
+
properties: {
|
|
74765
|
+
default_checkin_time: {
|
|
74766
|
+
description:
|
|
74767
|
+
'Default check-in time for reservations at the space, as HH:mm or HH:mm:ss.',
|
|
74768
|
+
nullable: true,
|
|
74769
|
+
pattern: '^([01]\\d|2[0-3]):[0-5]\\d(:[0-5]\\d)?$',
|
|
74770
|
+
type: 'string',
|
|
74771
|
+
},
|
|
74772
|
+
default_checkout_time: {
|
|
74773
|
+
description:
|
|
74774
|
+
'Default check-out time for reservations at the space, as HH:mm or HH:mm:ss.',
|
|
74775
|
+
nullable: true,
|
|
74776
|
+
pattern: '^([01]\\d|2[0-3]):[0-5]\\d(:[0-5]\\d)?$',
|
|
74777
|
+
type: 'string',
|
|
74778
|
+
},
|
|
74779
|
+
time_zone: {
|
|
74780
|
+
description:
|
|
74781
|
+
'IANA time zone for the space, e.g. America/Los_Angeles.',
|
|
74782
|
+
nullable: true,
|
|
74783
|
+
type: 'string',
|
|
74784
|
+
},
|
|
74785
|
+
},
|
|
74786
|
+
type: 'object',
|
|
74787
|
+
},
|
|
74681
74788
|
customer_key: {
|
|
74682
74789
|
description:
|
|
74683
74790
|
'Customer key for which you want to update the space.',
|
|
@@ -12870,6 +12870,17 @@ export type Routes = {
|
|
|
12870
12870
|
acs_entrance_count: number
|
|
12871
12871
|
/** Customer key associated with the space. */
|
|
12872
12872
|
customer_key?: string | undefined
|
|
12873
|
+
/** Reservation/stay-related defaults for the space. */
|
|
12874
|
+
customer_data?:
|
|
12875
|
+
| {
|
|
12876
|
+
/** IANA time zone for the space, e.g. America/Los_Angeles. */
|
|
12877
|
+
time_zone?: (string | null) | undefined
|
|
12878
|
+
/** Default check-in time for reservations at the space, as HH:mm or HH:mm:ss. */
|
|
12879
|
+
default_checkin_time?: (string | null) | undefined
|
|
12880
|
+
/** Default check-out time for reservations at the space, as HH:mm or HH:mm:ss. */
|
|
12881
|
+
default_checkout_time?: (string | null) | undefined
|
|
12882
|
+
}
|
|
12883
|
+
| undefined
|
|
12873
12884
|
/** */
|
|
12874
12885
|
parent_space_id?: string | undefined
|
|
12875
12886
|
/** */
|
|
@@ -18033,6 +18044,17 @@ export type Routes = {
|
|
|
18033
18044
|
acs_entrance_count: number
|
|
18034
18045
|
/** Customer key associated with the space. */
|
|
18035
18046
|
customer_key?: string | undefined
|
|
18047
|
+
/** Reservation/stay-related defaults for the space. */
|
|
18048
|
+
customer_data?:
|
|
18049
|
+
| {
|
|
18050
|
+
/** IANA time zone for the space, e.g. America/Los_Angeles. */
|
|
18051
|
+
time_zone?: (string | null) | undefined
|
|
18052
|
+
/** Default check-in time for reservations at the space, as HH:mm or HH:mm:ss. */
|
|
18053
|
+
default_checkin_time?: (string | null) | undefined
|
|
18054
|
+
/** Default check-out time for reservations at the space, as HH:mm or HH:mm:ss. */
|
|
18055
|
+
default_checkout_time?: (string | null) | undefined
|
|
18056
|
+
}
|
|
18057
|
+
| undefined
|
|
18036
18058
|
/** */
|
|
18037
18059
|
parent_space_id?: string | undefined
|
|
18038
18060
|
/** */
|
|
@@ -80670,6 +80692,17 @@ export type Routes = {
|
|
|
80670
80692
|
acs_entrance_count: number
|
|
80671
80693
|
/** Customer key associated with the space. */
|
|
80672
80694
|
customer_key?: string | undefined
|
|
80695
|
+
/** Reservation/stay-related defaults for the space. */
|
|
80696
|
+
customer_data?:
|
|
80697
|
+
| {
|
|
80698
|
+
/** IANA time zone for the space, e.g. America/Los_Angeles. */
|
|
80699
|
+
time_zone?: (string | null) | undefined
|
|
80700
|
+
/** Default check-in time for reservations at the space, as HH:mm or HH:mm:ss. */
|
|
80701
|
+
default_checkin_time?: (string | null) | undefined
|
|
80702
|
+
/** Default check-out time for reservations at the space, as HH:mm or HH:mm:ss. */
|
|
80703
|
+
default_checkout_time?: (string | null) | undefined
|
|
80704
|
+
}
|
|
80705
|
+
| undefined
|
|
80673
80706
|
/** */
|
|
80674
80707
|
parent_space_id?: string | undefined
|
|
80675
80708
|
/** */
|
|
@@ -80712,6 +80745,17 @@ export type Routes = {
|
|
|
80712
80745
|
acs_entrance_count: number
|
|
80713
80746
|
/** Customer key associated with the space. */
|
|
80714
80747
|
customer_key?: string | undefined
|
|
80748
|
+
/** Reservation/stay-related defaults for the space. */
|
|
80749
|
+
customer_data?:
|
|
80750
|
+
| {
|
|
80751
|
+
/** IANA time zone for the space, e.g. America/Los_Angeles. */
|
|
80752
|
+
time_zone?: (string | null) | undefined
|
|
80753
|
+
/** Default check-in time for reservations at the space, as HH:mm or HH:mm:ss. */
|
|
80754
|
+
default_checkin_time?: (string | null) | undefined
|
|
80755
|
+
/** Default check-out time for reservations at the space, as HH:mm or HH:mm:ss. */
|
|
80756
|
+
default_checkout_time?: (string | null) | undefined
|
|
80757
|
+
}
|
|
80758
|
+
| undefined
|
|
80715
80759
|
/** */
|
|
80716
80760
|
parent_space_id?: string | undefined
|
|
80717
80761
|
/** */
|
|
@@ -81831,6 +81875,17 @@ export type Routes = {
|
|
|
81831
81875
|
acs_entrance_ids?: string[] | undefined
|
|
81832
81876
|
/** Customer key for which you want to create the space. */
|
|
81833
81877
|
customer_key?: string | undefined
|
|
81878
|
+
/** Reservation/stay-related defaults for the space. */
|
|
81879
|
+
customer_data?:
|
|
81880
|
+
| {
|
|
81881
|
+
/** IANA time zone for the space, e.g. America/Los_Angeles. */
|
|
81882
|
+
time_zone?: (string | null) | undefined
|
|
81883
|
+
/** Default check-in time for reservations at the space, as HH:mm or HH:mm:ss. */
|
|
81884
|
+
default_checkin_time?: (string | null) | undefined
|
|
81885
|
+
/** Default check-out time for reservations at the space, as HH:mm or HH:mm:ss. */
|
|
81886
|
+
default_checkout_time?: (string | null) | undefined
|
|
81887
|
+
}
|
|
81888
|
+
| undefined
|
|
81834
81889
|
}
|
|
81835
81890
|
commonParams: {}
|
|
81836
81891
|
formData: {}
|
|
@@ -81855,6 +81910,17 @@ export type Routes = {
|
|
|
81855
81910
|
acs_entrance_count: number
|
|
81856
81911
|
/** Customer key associated with the space. */
|
|
81857
81912
|
customer_key?: string | undefined
|
|
81913
|
+
/** Reservation/stay-related defaults for the space. */
|
|
81914
|
+
customer_data?:
|
|
81915
|
+
| {
|
|
81916
|
+
/** IANA time zone for the space, e.g. America/Los_Angeles. */
|
|
81917
|
+
time_zone?: (string | null) | undefined
|
|
81918
|
+
/** Default check-in time for reservations at the space, as HH:mm or HH:mm:ss. */
|
|
81919
|
+
default_checkin_time?: (string | null) | undefined
|
|
81920
|
+
/** Default check-out time for reservations at the space, as HH:mm or HH:mm:ss. */
|
|
81921
|
+
default_checkout_time?: (string | null) | undefined
|
|
81922
|
+
}
|
|
81923
|
+
| undefined
|
|
81858
81924
|
/** */
|
|
81859
81925
|
parent_space_id?: string | undefined
|
|
81860
81926
|
/** */
|
|
@@ -81912,6 +81978,17 @@ export type Routes = {
|
|
|
81912
81978
|
acs_entrance_count: number
|
|
81913
81979
|
/** Customer key associated with the space. */
|
|
81914
81980
|
customer_key?: string | undefined
|
|
81981
|
+
/** Reservation/stay-related defaults for the space. */
|
|
81982
|
+
customer_data?:
|
|
81983
|
+
| {
|
|
81984
|
+
/** IANA time zone for the space, e.g. America/Los_Angeles. */
|
|
81985
|
+
time_zone?: (string | null) | undefined
|
|
81986
|
+
/** Default check-in time for reservations at the space, as HH:mm or HH:mm:ss. */
|
|
81987
|
+
default_checkin_time?: (string | null) | undefined
|
|
81988
|
+
/** Default check-out time for reservations at the space, as HH:mm or HH:mm:ss. */
|
|
81989
|
+
default_checkout_time?: (string | null) | undefined
|
|
81990
|
+
}
|
|
81991
|
+
| undefined
|
|
81915
81992
|
/** */
|
|
81916
81993
|
parent_space_id?: string | undefined
|
|
81917
81994
|
/** */
|
|
@@ -81975,6 +82052,17 @@ export type Routes = {
|
|
|
81975
82052
|
acs_entrance_count: number
|
|
81976
82053
|
/** Customer key associated with the space. */
|
|
81977
82054
|
customer_key?: string | undefined
|
|
82055
|
+
/** Reservation/stay-related defaults for the space. */
|
|
82056
|
+
customer_data?:
|
|
82057
|
+
| {
|
|
82058
|
+
/** IANA time zone for the space, e.g. America/Los_Angeles. */
|
|
82059
|
+
time_zone?: (string | null) | undefined
|
|
82060
|
+
/** Default check-in time for reservations at the space, as HH:mm or HH:mm:ss. */
|
|
82061
|
+
default_checkin_time?: (string | null) | undefined
|
|
82062
|
+
/** Default check-out time for reservations at the space, as HH:mm or HH:mm:ss. */
|
|
82063
|
+
default_checkout_time?: (string | null) | undefined
|
|
82064
|
+
}
|
|
82065
|
+
| undefined
|
|
81978
82066
|
/** */
|
|
81979
82067
|
parent_space_id?: string | undefined
|
|
81980
82068
|
/** */
|
|
@@ -84316,6 +84404,17 @@ export type Routes = {
|
|
|
84316
84404
|
acs_entrance_count: number
|
|
84317
84405
|
/** Customer key associated with the space. */
|
|
84318
84406
|
customer_key?: string | undefined
|
|
84407
|
+
/** Reservation/stay-related defaults for the space. */
|
|
84408
|
+
customer_data?:
|
|
84409
|
+
| {
|
|
84410
|
+
/** IANA time zone for the space, e.g. America/Los_Angeles. */
|
|
84411
|
+
time_zone?: (string | null) | undefined
|
|
84412
|
+
/** Default check-in time for reservations at the space, as HH:mm or HH:mm:ss. */
|
|
84413
|
+
default_checkin_time?: (string | null) | undefined
|
|
84414
|
+
/** Default check-out time for reservations at the space, as HH:mm or HH:mm:ss. */
|
|
84415
|
+
default_checkout_time?: (string | null) | undefined
|
|
84416
|
+
}
|
|
84417
|
+
| undefined
|
|
84319
84418
|
/** */
|
|
84320
84419
|
parent_space_id?: string | undefined
|
|
84321
84420
|
/** */
|
|
@@ -84380,6 +84479,17 @@ export type Routes = {
|
|
|
84380
84479
|
acs_entrance_ids?: string[] | undefined
|
|
84381
84480
|
/** Customer key for which you want to update the space. */
|
|
84382
84481
|
customer_key?: string | undefined
|
|
84482
|
+
/** Reservation/stay-related defaults for the space. Only the keys you provide are updated; omit a key to leave it unchanged. Pass null on a key to clear it. */
|
|
84483
|
+
customer_data?:
|
|
84484
|
+
| {
|
|
84485
|
+
/** IANA time zone for the space, e.g. America/Los_Angeles. */
|
|
84486
|
+
time_zone?: (string | null) | undefined
|
|
84487
|
+
/** Default check-in time for reservations at the space, as HH:mm or HH:mm:ss. */
|
|
84488
|
+
default_checkin_time?: (string | null) | undefined
|
|
84489
|
+
/** Default check-out time for reservations at the space, as HH:mm or HH:mm:ss. */
|
|
84490
|
+
default_checkout_time?: (string | null) | undefined
|
|
84491
|
+
}
|
|
84492
|
+
| undefined
|
|
84383
84493
|
}
|
|
84384
84494
|
commonParams: {}
|
|
84385
84495
|
formData: {}
|
|
@@ -84404,6 +84514,17 @@ export type Routes = {
|
|
|
84404
84514
|
acs_entrance_count: number
|
|
84405
84515
|
/** Customer key associated with the space. */
|
|
84406
84516
|
customer_key?: string | undefined
|
|
84517
|
+
/** Reservation/stay-related defaults for the space. */
|
|
84518
|
+
customer_data?:
|
|
84519
|
+
| {
|
|
84520
|
+
/** IANA time zone for the space, e.g. America/Los_Angeles. */
|
|
84521
|
+
time_zone?: (string | null) | undefined
|
|
84522
|
+
/** Default check-in time for reservations at the space, as HH:mm or HH:mm:ss. */
|
|
84523
|
+
default_checkin_time?: (string | null) | undefined
|
|
84524
|
+
/** Default check-out time for reservations at the space, as HH:mm or HH:mm:ss. */
|
|
84525
|
+
default_checkout_time?: (string | null) | undefined
|
|
84526
|
+
}
|
|
84527
|
+
| undefined
|
|
84407
84528
|
/** */
|
|
84408
84529
|
parent_space_id?: string | undefined
|
|
84409
84530
|
/** */
|
|
@@ -114365,6 +114486,17 @@ export type Routes = {
|
|
|
114365
114486
|
acs_entrance_count: number
|
|
114366
114487
|
/** Customer key associated with the space. */
|
|
114367
114488
|
customer_key?: string | undefined
|
|
114489
|
+
/** Reservation/stay-related defaults for the space. */
|
|
114490
|
+
customer_data?:
|
|
114491
|
+
| {
|
|
114492
|
+
/** IANA time zone for the space, e.g. America/Los_Angeles. */
|
|
114493
|
+
time_zone?: (string | null) | undefined
|
|
114494
|
+
/** Default check-in time for reservations at the space, as HH:mm or HH:mm:ss. */
|
|
114495
|
+
default_checkin_time?: (string | null) | undefined
|
|
114496
|
+
/** Default check-out time for reservations at the space, as HH:mm or HH:mm:ss. */
|
|
114497
|
+
default_checkout_time?: (string | null) | undefined
|
|
114498
|
+
}
|
|
114499
|
+
| undefined
|
|
114368
114500
|
/** */
|
|
114369
114501
|
parent_space_id?: string | undefined
|
|
114370
114502
|
/** */
|