@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
|
@@ -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
|
/** */
|