@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
|
@@ -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',
|
|
@@ -38699,7 +38725,6 @@ export default {
|
|
|
38699
38725
|
],
|
|
38700
38726
|
summary: '/access_methods/delete',
|
|
38701
38727
|
tags: [],
|
|
38702
|
-
'x-draft': 'Early access.',
|
|
38703
38728
|
'x-fern-sdk-group-name': ['access_methods'],
|
|
38704
38729
|
'x-fern-sdk-method-name': 'delete',
|
|
38705
38730
|
'x-response-key': null,
|
|
@@ -38776,7 +38801,6 @@ export default {
|
|
|
38776
38801
|
],
|
|
38777
38802
|
summary: '/access_methods/delete',
|
|
38778
38803
|
tags: [],
|
|
38779
|
-
'x-draft': 'Early access.',
|
|
38780
38804
|
'x-fern-sdk-group-name': ['access_methods'],
|
|
38781
38805
|
'x-fern-sdk-method-name': 'delete',
|
|
38782
38806
|
'x-response-key': null,
|
|
@@ -38892,7 +38916,6 @@ export default {
|
|
|
38892
38916
|
],
|
|
38893
38917
|
summary: '/access_methods/get',
|
|
38894
38918
|
tags: [],
|
|
38895
|
-
'x-draft': 'Early access.',
|
|
38896
38919
|
'x-fern-sdk-group-name': ['access_methods'],
|
|
38897
38920
|
'x-fern-sdk-method-name': 'get',
|
|
38898
38921
|
'x-fern-sdk-return-value': 'access_method',
|
|
@@ -38947,7 +38970,6 @@ export default {
|
|
|
38947
38970
|
],
|
|
38948
38971
|
summary: '/access_methods/get',
|
|
38949
38972
|
tags: [],
|
|
38950
|
-
'x-draft': 'Early access.',
|
|
38951
38973
|
'x-fern-sdk-group-name': ['access_methods'],
|
|
38952
38974
|
'x-fern-sdk-method-name': 'get',
|
|
38953
38975
|
'x-fern-sdk-return-value': 'access_method',
|
|
@@ -39094,7 +39116,6 @@ export default {
|
|
|
39094
39116
|
'client_sessions',
|
|
39095
39117
|
'acs_credentials',
|
|
39096
39118
|
],
|
|
39097
|
-
'x-draft': 'Early access.',
|
|
39098
39119
|
'x-fern-sdk-group-name': ['access_methods'],
|
|
39099
39120
|
'x-fern-sdk-method-name': 'get_related',
|
|
39100
39121
|
'x-fern-sdk-return-value': 'batch',
|
|
@@ -39234,7 +39255,6 @@ export default {
|
|
|
39234
39255
|
'client_sessions',
|
|
39235
39256
|
'acs_credentials',
|
|
39236
39257
|
],
|
|
39237
|
-
'x-draft': 'Early access.',
|
|
39238
39258
|
'x-fern-sdk-group-name': ['access_methods'],
|
|
39239
39259
|
'x-fern-sdk-method-name': 'get_related',
|
|
39240
39260
|
'x-fern-sdk-return-value': 'batch',
|
|
@@ -39337,7 +39357,6 @@ export default {
|
|
|
39337
39357
|
],
|
|
39338
39358
|
summary: '/access_methods/list',
|
|
39339
39359
|
tags: [],
|
|
39340
|
-
'x-draft': 'Early access.',
|
|
39341
39360
|
'x-fern-sdk-group-name': ['access_methods'],
|
|
39342
39361
|
'x-fern-sdk-method-name': 'list',
|
|
39343
39362
|
'x-fern-sdk-return-value': 'access_methods',
|
|
@@ -39425,7 +39444,6 @@ export default {
|
|
|
39425
39444
|
],
|
|
39426
39445
|
summary: '/access_methods/list',
|
|
39427
39446
|
tags: [],
|
|
39428
|
-
'x-draft': 'Early access.',
|
|
39429
39447
|
'x-fern-sdk-group-name': ['access_methods'],
|
|
39430
39448
|
'x-fern-sdk-method-name': 'list',
|
|
39431
39449
|
'x-fern-sdk-return-value': 'access_methods',
|
|
@@ -39867,7 +39885,6 @@ export default {
|
|
|
39867
39885
|
],
|
|
39868
39886
|
summary: '/access_methods/unmanaged/get',
|
|
39869
39887
|
tags: [],
|
|
39870
|
-
'x-draft': 'Early access.',
|
|
39871
39888
|
'x-fern-sdk-group-name': ['access_methods', 'unmanaged'],
|
|
39872
39889
|
'x-fern-sdk-method-name': 'get',
|
|
39873
39890
|
'x-fern-sdk-return-value': 'access_method',
|
|
@@ -40312,7 +40329,6 @@ export default {
|
|
|
40312
40329
|
],
|
|
40313
40330
|
summary: '/access_methods/unmanaged/get',
|
|
40314
40331
|
tags: [],
|
|
40315
|
-
'x-draft': 'Early access.',
|
|
40316
40332
|
'x-fern-sdk-group-name': ['access_methods', 'unmanaged'],
|
|
40317
40333
|
'x-fern-sdk-method-name': 'get',
|
|
40318
40334
|
'x-fern-sdk-return-value': 'access_method',
|
|
@@ -40793,7 +40809,6 @@ export default {
|
|
|
40793
40809
|
],
|
|
40794
40810
|
summary: '/access_methods/unmanaged/list',
|
|
40795
40811
|
tags: [],
|
|
40796
|
-
'x-draft': 'Early access.',
|
|
40797
40812
|
'x-fern-sdk-group-name': ['access_methods', 'unmanaged'],
|
|
40798
40813
|
'x-fern-sdk-method-name': 'list',
|
|
40799
40814
|
'x-fern-sdk-return-value': 'access_methods',
|
|
@@ -41262,7 +41277,6 @@ export default {
|
|
|
41262
41277
|
],
|
|
41263
41278
|
summary: '/access_methods/unmanaged/list',
|
|
41264
41279
|
tags: [],
|
|
41265
|
-
'x-draft': 'Early access.',
|
|
41266
41280
|
'x-fern-sdk-group-name': ['access_methods', 'unmanaged'],
|
|
41267
41281
|
'x-fern-sdk-method-name': 'list',
|
|
41268
41282
|
'x-fern-sdk-return-value': 'access_methods',
|
|
@@ -73454,7 +73468,6 @@ export default {
|
|
|
73454
73468
|
],
|
|
73455
73469
|
summary: '/spaces/add_acs_entrances',
|
|
73456
73470
|
tags: [],
|
|
73457
|
-
'x-draft': 'Early access.',
|
|
73458
73471
|
'x-fern-sdk-group-name': ['spaces'],
|
|
73459
73472
|
'x-fern-sdk-method-name': 'add_acs_entrances',
|
|
73460
73473
|
'x-response-key': null,
|
|
@@ -73513,7 +73526,6 @@ export default {
|
|
|
73513
73526
|
],
|
|
73514
73527
|
summary: '/spaces/add_acs_entrances',
|
|
73515
73528
|
tags: [],
|
|
73516
|
-
'x-draft': 'Early access.',
|
|
73517
73529
|
'x-fern-sdk-group-name': ['spaces'],
|
|
73518
73530
|
'x-fern-sdk-method-name': 'add_acs_entrances',
|
|
73519
73531
|
'x-response-key': null,
|
|
@@ -73573,7 +73585,6 @@ export default {
|
|
|
73573
73585
|
],
|
|
73574
73586
|
summary: '/spaces/add_devices',
|
|
73575
73587
|
tags: [],
|
|
73576
|
-
'x-draft': 'Early access.',
|
|
73577
73588
|
'x-fern-sdk-group-name': ['spaces'],
|
|
73578
73589
|
'x-fern-sdk-method-name': 'add_devices',
|
|
73579
73590
|
'x-response-key': null,
|
|
@@ -73631,7 +73642,6 @@ export default {
|
|
|
73631
73642
|
],
|
|
73632
73643
|
summary: '/spaces/add_devices',
|
|
73633
73644
|
tags: [],
|
|
73634
|
-
'x-draft': 'Early access.',
|
|
73635
73645
|
'x-fern-sdk-group-name': ['spaces'],
|
|
73636
73646
|
'x-fern-sdk-method-name': 'add_devices',
|
|
73637
73647
|
'x-response-key': null,
|
|
@@ -73653,6 +73663,33 @@ export default {
|
|
|
73653
73663
|
items: { format: 'uuid', type: 'string' },
|
|
73654
73664
|
type: 'array',
|
|
73655
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
|
+
},
|
|
73656
73693
|
customer_key: {
|
|
73657
73694
|
description:
|
|
73658
73695
|
'Customer key for which you want to create the space.',
|
|
@@ -73708,7 +73745,6 @@ export default {
|
|
|
73708
73745
|
],
|
|
73709
73746
|
summary: '/spaces/create',
|
|
73710
73747
|
tags: [],
|
|
73711
|
-
'x-draft': 'Early access.',
|
|
73712
73748
|
'x-fern-sdk-group-name': ['spaces'],
|
|
73713
73749
|
'x-fern-sdk-method-name': 'create',
|
|
73714
73750
|
'x-fern-sdk-return-value': 'space',
|
|
@@ -73761,7 +73797,6 @@ export default {
|
|
|
73761
73797
|
],
|
|
73762
73798
|
summary: '/spaces/delete',
|
|
73763
73799
|
tags: [],
|
|
73764
|
-
'x-draft': 'Early access.',
|
|
73765
73800
|
'x-fern-sdk-group-name': ['spaces'],
|
|
73766
73801
|
'x-fern-sdk-method-name': 'delete',
|
|
73767
73802
|
'x-response-key': null,
|
|
@@ -73811,7 +73846,6 @@ export default {
|
|
|
73811
73846
|
],
|
|
73812
73847
|
summary: '/spaces/delete',
|
|
73813
73848
|
tags: [],
|
|
73814
|
-
'x-draft': 'Early access.',
|
|
73815
73849
|
'x-fern-sdk-group-name': ['spaces'],
|
|
73816
73850
|
'x-fern-sdk-method-name': 'delete',
|
|
73817
73851
|
'x-response-key': null,
|
|
@@ -73849,7 +73883,6 @@ export default {
|
|
|
73849
73883
|
],
|
|
73850
73884
|
summary: '/spaces/get',
|
|
73851
73885
|
tags: [],
|
|
73852
|
-
'x-draft': 'Early access.',
|
|
73853
73886
|
'x-fern-sdk-group-name': ['spaces'],
|
|
73854
73887
|
'x-fern-sdk-method-name': 'get',
|
|
73855
73888
|
'x-fern-sdk-return-value': 'space',
|
|
@@ -73918,7 +73951,6 @@ export default {
|
|
|
73918
73951
|
],
|
|
73919
73952
|
summary: '/spaces/get',
|
|
73920
73953
|
tags: [],
|
|
73921
|
-
'x-draft': 'Early access.',
|
|
73922
73954
|
'x-fern-sdk-group-name': ['spaces'],
|
|
73923
73955
|
'x-fern-sdk-method-name': 'get',
|
|
73924
73956
|
'x-fern-sdk-return-value': 'space',
|
|
@@ -74055,7 +74087,6 @@ export default {
|
|
|
74055
74087
|
'acs_systems',
|
|
74056
74088
|
'access_methods',
|
|
74057
74089
|
],
|
|
74058
|
-
'x-draft': 'Early access.',
|
|
74059
74090
|
'x-fern-sdk-group-name': ['spaces'],
|
|
74060
74091
|
'x-fern-sdk-method-name': 'get_related',
|
|
74061
74092
|
'x-fern-sdk-return-value': 'batch',
|
|
@@ -74183,7 +74214,6 @@ export default {
|
|
|
74183
74214
|
'acs_systems',
|
|
74184
74215
|
'access_methods',
|
|
74185
74216
|
],
|
|
74186
|
-
'x-draft': 'Early access.',
|
|
74187
74217
|
'x-fern-sdk-group-name': ['spaces'],
|
|
74188
74218
|
'x-fern-sdk-method-name': 'get_related',
|
|
74189
74219
|
'x-fern-sdk-return-value': 'batch',
|
|
@@ -74286,7 +74316,6 @@ export default {
|
|
|
74286
74316
|
],
|
|
74287
74317
|
summary: '/spaces/list',
|
|
74288
74318
|
tags: [],
|
|
74289
|
-
'x-draft': 'Early access.',
|
|
74290
74319
|
'x-fern-sdk-group-name': ['spaces'],
|
|
74291
74320
|
'x-fern-sdk-method-name': 'list',
|
|
74292
74321
|
'x-fern-sdk-return-value': 'spaces',
|
|
@@ -74374,7 +74403,6 @@ export default {
|
|
|
74374
74403
|
],
|
|
74375
74404
|
summary: '/spaces/list',
|
|
74376
74405
|
tags: [],
|
|
74377
|
-
'x-draft': 'Early access.',
|
|
74378
74406
|
'x-fern-sdk-group-name': ['spaces'],
|
|
74379
74407
|
'x-fern-sdk-method-name': 'list',
|
|
74380
74408
|
'x-fern-sdk-return-value': 'spaces',
|
|
@@ -74435,7 +74463,6 @@ export default {
|
|
|
74435
74463
|
],
|
|
74436
74464
|
summary: '/spaces/remove_acs_entrances',
|
|
74437
74465
|
tags: [],
|
|
74438
|
-
'x-draft': 'Early access.',
|
|
74439
74466
|
'x-fern-sdk-group-name': ['spaces'],
|
|
74440
74467
|
'x-fern-sdk-method-name': 'remove_acs_entrances',
|
|
74441
74468
|
'x-response-key': null,
|
|
@@ -74493,7 +74520,6 @@ export default {
|
|
|
74493
74520
|
],
|
|
74494
74521
|
summary: '/spaces/remove_acs_entrances',
|
|
74495
74522
|
tags: [],
|
|
74496
|
-
'x-draft': 'Early access.',
|
|
74497
74523
|
'x-fern-sdk-group-name': ['spaces'],
|
|
74498
74524
|
'x-fern-sdk-method-name': 'remove_acs_entrances',
|
|
74499
74525
|
'x-response-key': null,
|
|
@@ -74552,7 +74578,6 @@ export default {
|
|
|
74552
74578
|
],
|
|
74553
74579
|
summary: '/spaces/remove_devices',
|
|
74554
74580
|
tags: [],
|
|
74555
|
-
'x-draft': 'Early access.',
|
|
74556
74581
|
'x-fern-sdk-group-name': ['spaces'],
|
|
74557
74582
|
'x-fern-sdk-method-name': 'remove_devices',
|
|
74558
74583
|
'x-response-key': null,
|
|
@@ -74609,7 +74634,6 @@ export default {
|
|
|
74609
74634
|
],
|
|
74610
74635
|
summary: '/spaces/remove_devices',
|
|
74611
74636
|
tags: [],
|
|
74612
|
-
'x-draft': 'Early access.',
|
|
74613
74637
|
'x-fern-sdk-group-name': ['spaces'],
|
|
74614
74638
|
'x-fern-sdk-method-name': 'remove_devices',
|
|
74615
74639
|
'x-response-key': null,
|
|
@@ -74631,6 +74655,33 @@ export default {
|
|
|
74631
74655
|
items: { format: 'uuid', type: 'string' },
|
|
74632
74656
|
type: 'array',
|
|
74633
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
|
+
},
|
|
74634
74685
|
customer_key: {
|
|
74635
74686
|
description:
|
|
74636
74687
|
'Customer key for which you want to update the space.',
|
|
@@ -74687,7 +74738,6 @@ export default {
|
|
|
74687
74738
|
],
|
|
74688
74739
|
summary: '/spaces/update',
|
|
74689
74740
|
tags: [],
|
|
74690
|
-
'x-draft': 'Early access.',
|
|
74691
74741
|
'x-fern-sdk-group-name': ['spaces'],
|
|
74692
74742
|
'x-fern-sdk-method-name': 'update',
|
|
74693
74743
|
'x-fern-sdk-return-value': 'space',
|
|
@@ -74708,6 +74758,33 @@ export default {
|
|
|
74708
74758
|
items: { format: 'uuid', type: 'string' },
|
|
74709
74759
|
type: 'array',
|
|
74710
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
|
+
},
|
|
74711
74788
|
customer_key: {
|
|
74712
74789
|
description:
|
|
74713
74790
|
'Customer key for which you want to update the space.',
|
|
@@ -74764,7 +74841,6 @@ export default {
|
|
|
74764
74841
|
],
|
|
74765
74842
|
summary: '/spaces/update',
|
|
74766
74843
|
tags: [],
|
|
74767
|
-
'x-draft': 'Early access.',
|
|
74768
74844
|
'x-fern-sdk-group-name': ['spaces'],
|
|
74769
74845
|
'x-fern-sdk-method-name': 'update',
|
|
74770
74846
|
'x-fern-sdk-return-value': 'space',
|