@seamapi/types 1.898.0 → 1.900.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 +277 -2
- package/dist/connect.cjs.map +1 -1
- package/dist/connect.d.cts +228 -10
- package/dist/index.cjs +277 -2
- package/dist/index.cjs.map +1 -1
- package/lib/seam/connect/models/customer/customer-data.d.ts +132 -0
- package/lib/seam/connect/models/customer/location-resources.d.ts +92 -0
- package/lib/seam/connect/models/customer/location-resources.js +7 -0
- package/lib/seam/connect/models/customer/location-resources.js.map +1 -1
- package/lib/seam/connect/models/spaces/space.d.ts +36 -0
- package/lib/seam/connect/models/spaces/space.js +12 -0
- package/lib/seam/connect/models/spaces/space.js.map +1 -1
- package/lib/seam/connect/openapi.js +269 -0
- package/lib/seam/connect/openapi.js.map +1 -1
- package/lib/seam/connect/route-types.d.ts +205 -10
- package/package.json +1 -1
- package/src/lib/seam/connect/models/customer/location-resources.ts +9 -0
- package/src/lib/seam/connect/models/spaces/space.ts +13 -0
- package/src/lib/seam/connect/openapi.ts +314 -0
- package/src/lib/seam/connect/route-types.ts +238 -0
|
@@ -15014,8 +15014,19 @@ export type Routes = {
|
|
|
15014
15014
|
default_checkin_time?: (string | null) | undefined
|
|
15015
15015
|
/** Default check-out time for reservations at the space, as HH:mm or HH:mm:ss. */
|
|
15016
15016
|
default_checkout_time?: (string | null) | undefined
|
|
15017
|
+
/** Postal address for the space. */
|
|
15018
|
+
address?: (string | null) | undefined
|
|
15017
15019
|
}
|
|
15018
15020
|
| undefined
|
|
15021
|
+
/** Geographic coordinates (latitude and longitude) of the space. */
|
|
15022
|
+
geolocation?:
|
|
15023
|
+
| ({
|
|
15024
|
+
/** Latitude of the space, in decimal degrees. */
|
|
15025
|
+
latitude: number
|
|
15026
|
+
/** Longitude of the space, in decimal degrees. */
|
|
15027
|
+
longitude: number
|
|
15028
|
+
} | null)
|
|
15029
|
+
| undefined
|
|
15019
15030
|
/** */
|
|
15020
15031
|
parent_space_id?: string | undefined
|
|
15021
15032
|
/** */
|
|
@@ -22764,8 +22775,19 @@ export type Routes = {
|
|
|
22764
22775
|
default_checkin_time?: (string | null) | undefined
|
|
22765
22776
|
/** Default check-out time for reservations at the space, as HH:mm or HH:mm:ss. */
|
|
22766
22777
|
default_checkout_time?: (string | null) | undefined
|
|
22778
|
+
/** Postal address for the space. */
|
|
22779
|
+
address?: (string | null) | undefined
|
|
22767
22780
|
}
|
|
22768
22781
|
| undefined
|
|
22782
|
+
/** Geographic coordinates (latitude and longitude) of the space. */
|
|
22783
|
+
geolocation?:
|
|
22784
|
+
| ({
|
|
22785
|
+
/** Latitude of the space, in decimal degrees. */
|
|
22786
|
+
latitude: number
|
|
22787
|
+
/** Longitude of the space, in decimal degrees. */
|
|
22788
|
+
longitude: number
|
|
22789
|
+
} | null)
|
|
22790
|
+
| undefined
|
|
22769
22791
|
/** */
|
|
22770
22792
|
parent_space_id?: string | undefined
|
|
22771
22793
|
/** */
|
|
@@ -46692,6 +46714,7 @@ export type Routes = {
|
|
|
46692
46714
|
| 'yale_access'
|
|
46693
46715
|
| 'hid_cm'
|
|
46694
46716
|
| 'google_nest'
|
|
46717
|
+
| 'slack'
|
|
46695
46718
|
)[]
|
|
46696
46719
|
| undefined
|
|
46697
46720
|
/** Specifies the category of providers that you want to include. To list all providers within a category, use [`/devices/list_device_providers`](https://docs.seam.co/api/devices/list_device_providers) with the desired `provider_category` filter. */
|
|
@@ -47884,6 +47907,28 @@ export type Routes = {
|
|
|
47884
47907
|
parent_site_key?: string | undefined
|
|
47885
47908
|
/** Default duration of this space in minutes, when the space represents a fixed-length bookable slot (e.g. an appointment type). Used to interpret reservations booked against this space. */
|
|
47886
47909
|
duration_minutes?: number | undefined
|
|
47910
|
+
/** Reservation/stay-related defaults for the space (time zone, default check-in/out times, address). */
|
|
47911
|
+
customer_data?:
|
|
47912
|
+
| {
|
|
47913
|
+
/** IANA time zone for the space, e.g. America/Los_Angeles. */
|
|
47914
|
+
time_zone?: (string | null) | undefined
|
|
47915
|
+
/** Default check-in time for reservations at the space, as HH:mm or HH:mm:ss. */
|
|
47916
|
+
default_checkin_time?: (string | null) | undefined
|
|
47917
|
+
/** Default check-out time for reservations at the space, as HH:mm or HH:mm:ss. */
|
|
47918
|
+
default_checkout_time?: (string | null) | undefined
|
|
47919
|
+
/** Postal address for the space. */
|
|
47920
|
+
address?: (string | null) | undefined
|
|
47921
|
+
}
|
|
47922
|
+
| undefined
|
|
47923
|
+
/** Geographic coordinates (latitude and longitude) of the space. */
|
|
47924
|
+
geolocation?:
|
|
47925
|
+
| {
|
|
47926
|
+
/** Latitude of the space, in decimal degrees. */
|
|
47927
|
+
latitude: number
|
|
47928
|
+
/** Longitude of the space, in decimal degrees. */
|
|
47929
|
+
longitude: number
|
|
47930
|
+
}
|
|
47931
|
+
| undefined
|
|
47887
47932
|
}[]
|
|
47888
47933
|
| undefined
|
|
47889
47934
|
/** List of general sites or areas. */
|
|
@@ -48316,6 +48361,28 @@ export type Routes = {
|
|
|
48316
48361
|
parent_site_key?: string | undefined
|
|
48317
48362
|
/** Default duration of this space in minutes, when the space represents a fixed-length bookable slot (e.g. an appointment type). Used to interpret reservations booked against this space. */
|
|
48318
48363
|
duration_minutes?: number | undefined
|
|
48364
|
+
/** Reservation/stay-related defaults for the space (time zone, default check-in/out times, address). */
|
|
48365
|
+
customer_data?:
|
|
48366
|
+
| {
|
|
48367
|
+
/** IANA time zone for the space, e.g. America/Los_Angeles. */
|
|
48368
|
+
time_zone?: (string | null) | undefined
|
|
48369
|
+
/** Default check-in time for reservations at the space, as HH:mm or HH:mm:ss. */
|
|
48370
|
+
default_checkin_time?: (string | null) | undefined
|
|
48371
|
+
/** Default check-out time for reservations at the space, as HH:mm or HH:mm:ss. */
|
|
48372
|
+
default_checkout_time?: (string | null) | undefined
|
|
48373
|
+
/** Postal address for the space. */
|
|
48374
|
+
address?: (string | null) | undefined
|
|
48375
|
+
}
|
|
48376
|
+
| undefined
|
|
48377
|
+
/** Geographic coordinates (latitude and longitude) of the space. */
|
|
48378
|
+
geolocation?:
|
|
48379
|
+
| {
|
|
48380
|
+
/** Latitude of the space, in decimal degrees. */
|
|
48381
|
+
latitude: number
|
|
48382
|
+
/** Longitude of the space, in decimal degrees. */
|
|
48383
|
+
longitude: number
|
|
48384
|
+
}
|
|
48385
|
+
| undefined
|
|
48319
48386
|
}[]
|
|
48320
48387
|
| undefined
|
|
48321
48388
|
/** List of general sites or areas. */
|
|
@@ -88952,8 +89019,19 @@ export type Routes = {
|
|
|
88952
89019
|
default_checkin_time?: (string | null) | undefined
|
|
88953
89020
|
/** Default check-out time for reservations at the space, as HH:mm or HH:mm:ss. */
|
|
88954
89021
|
default_checkout_time?: (string | null) | undefined
|
|
89022
|
+
/** Postal address for the space. */
|
|
89023
|
+
address?: (string | null) | undefined
|
|
88955
89024
|
}
|
|
88956
89025
|
| undefined
|
|
89026
|
+
/** Geographic coordinates (latitude and longitude) of the space. */
|
|
89027
|
+
geolocation?:
|
|
89028
|
+
| ({
|
|
89029
|
+
/** Latitude of the space, in decimal degrees. */
|
|
89030
|
+
latitude: number
|
|
89031
|
+
/** Longitude of the space, in decimal degrees. */
|
|
89032
|
+
longitude: number
|
|
89033
|
+
} | null)
|
|
89034
|
+
| undefined
|
|
88957
89035
|
/** */
|
|
88958
89036
|
parent_space_id?: string | undefined
|
|
88959
89037
|
/** */
|
|
@@ -89014,8 +89092,19 @@ export type Routes = {
|
|
|
89014
89092
|
default_checkin_time?: (string | null) | undefined
|
|
89015
89093
|
/** Default check-out time for reservations at the space, as HH:mm or HH:mm:ss. */
|
|
89016
89094
|
default_checkout_time?: (string | null) | undefined
|
|
89095
|
+
/** Postal address for the space. */
|
|
89096
|
+
address?: (string | null) | undefined
|
|
89017
89097
|
}
|
|
89018
89098
|
| undefined
|
|
89099
|
+
/** Geographic coordinates (latitude and longitude) of the space. */
|
|
89100
|
+
geolocation?:
|
|
89101
|
+
| ({
|
|
89102
|
+
/** Latitude of the space, in decimal degrees. */
|
|
89103
|
+
latitude: number
|
|
89104
|
+
/** Longitude of the space, in decimal degrees. */
|
|
89105
|
+
longitude: number
|
|
89106
|
+
} | null)
|
|
89107
|
+
| undefined
|
|
89019
89108
|
/** */
|
|
89020
89109
|
parent_space_id?: string | undefined
|
|
89021
89110
|
/** */
|
|
@@ -89068,8 +89157,19 @@ export type Routes = {
|
|
|
89068
89157
|
default_checkin_time?: (string | null) | undefined
|
|
89069
89158
|
/** Default check-out time for reservations at the space, as HH:mm or HH:mm:ss. */
|
|
89070
89159
|
default_checkout_time?: (string | null) | undefined
|
|
89160
|
+
/** Postal address for the space. */
|
|
89161
|
+
address?: (string | null) | undefined
|
|
89071
89162
|
}
|
|
89072
89163
|
| undefined
|
|
89164
|
+
/** Geographic coordinates (latitude and longitude) of the space. */
|
|
89165
|
+
geolocation?:
|
|
89166
|
+
| ({
|
|
89167
|
+
/** Latitude of the space, in decimal degrees. */
|
|
89168
|
+
latitude: number
|
|
89169
|
+
/** Longitude of the space, in decimal degrees. */
|
|
89170
|
+
longitude: number
|
|
89171
|
+
} | null)
|
|
89172
|
+
| undefined
|
|
89073
89173
|
/** */
|
|
89074
89174
|
parent_space_id?: string | undefined
|
|
89075
89175
|
/** */
|
|
@@ -96629,6 +96729,8 @@ export type Routes = {
|
|
|
96629
96729
|
default_checkin_time?: (string | null) | undefined
|
|
96630
96730
|
/** Default check-out time for reservations at the space, as HH:mm or HH:mm:ss. */
|
|
96631
96731
|
default_checkout_time?: (string | null) | undefined
|
|
96732
|
+
/** Postal address for the space. */
|
|
96733
|
+
address?: (string | null) | undefined
|
|
96632
96734
|
}
|
|
96633
96735
|
| undefined
|
|
96634
96736
|
/** Space key of the parent space for this space. */
|
|
@@ -96668,8 +96770,19 @@ export type Routes = {
|
|
|
96668
96770
|
default_checkin_time?: (string | null) | undefined
|
|
96669
96771
|
/** Default check-out time for reservations at the space, as HH:mm or HH:mm:ss. */
|
|
96670
96772
|
default_checkout_time?: (string | null) | undefined
|
|
96773
|
+
/** Postal address for the space. */
|
|
96774
|
+
address?: (string | null) | undefined
|
|
96671
96775
|
}
|
|
96672
96776
|
| undefined
|
|
96777
|
+
/** Geographic coordinates (latitude and longitude) of the space. */
|
|
96778
|
+
geolocation?:
|
|
96779
|
+
| ({
|
|
96780
|
+
/** Latitude of the space, in decimal degrees. */
|
|
96781
|
+
latitude: number
|
|
96782
|
+
/** Longitude of the space, in decimal degrees. */
|
|
96783
|
+
longitude: number
|
|
96784
|
+
} | null)
|
|
96785
|
+
| undefined
|
|
96673
96786
|
/** */
|
|
96674
96787
|
parent_space_id?: string | undefined
|
|
96675
96788
|
/** */
|
|
@@ -96725,8 +96838,19 @@ export type Routes = {
|
|
|
96725
96838
|
default_checkin_time?: (string | null) | undefined
|
|
96726
96839
|
/** Default check-out time for reservations at the space, as HH:mm or HH:mm:ss. */
|
|
96727
96840
|
default_checkout_time?: (string | null) | undefined
|
|
96841
|
+
/** Postal address for the space. */
|
|
96842
|
+
address?: (string | null) | undefined
|
|
96728
96843
|
}
|
|
96729
96844
|
| undefined
|
|
96845
|
+
/** Geographic coordinates (latitude and longitude) of the space. */
|
|
96846
|
+
geolocation?:
|
|
96847
|
+
| ({
|
|
96848
|
+
/** Latitude of the space, in decimal degrees. */
|
|
96849
|
+
latitude: number
|
|
96850
|
+
/** Longitude of the space, in decimal degrees. */
|
|
96851
|
+
longitude: number
|
|
96852
|
+
} | null)
|
|
96853
|
+
| undefined
|
|
96730
96854
|
/** */
|
|
96731
96855
|
parent_space_id?: string | undefined
|
|
96732
96856
|
/** */
|
|
@@ -97950,6 +98074,8 @@ export type Routes = {
|
|
|
97950
98074
|
default_checkin_time?: (string | null) | undefined
|
|
97951
98075
|
/** Default check-out time for reservations at the space, as HH:mm or HH:mm:ss. */
|
|
97952
98076
|
default_checkout_time?: (string | null) | undefined
|
|
98077
|
+
/** Postal address for the space. */
|
|
98078
|
+
address?: (string | null) | undefined
|
|
97953
98079
|
}
|
|
97954
98080
|
| undefined
|
|
97955
98081
|
}
|
|
@@ -97985,8 +98111,19 @@ export type Routes = {
|
|
|
97985
98111
|
default_checkin_time?: (string | null) | undefined
|
|
97986
98112
|
/** Default check-out time for reservations at the space, as HH:mm or HH:mm:ss. */
|
|
97987
98113
|
default_checkout_time?: (string | null) | undefined
|
|
98114
|
+
/** Postal address for the space. */
|
|
98115
|
+
address?: (string | null) | undefined
|
|
97988
98116
|
}
|
|
97989
98117
|
| undefined
|
|
98118
|
+
/** Geographic coordinates (latitude and longitude) of the space. */
|
|
98119
|
+
geolocation?:
|
|
98120
|
+
| ({
|
|
98121
|
+
/** Latitude of the space, in decimal degrees. */
|
|
98122
|
+
latitude: number
|
|
98123
|
+
/** Longitude of the space, in decimal degrees. */
|
|
98124
|
+
longitude: number
|
|
98125
|
+
} | null)
|
|
98126
|
+
| undefined
|
|
97990
98127
|
/** */
|
|
97991
98128
|
parent_space_id?: string | undefined
|
|
97992
98129
|
/** */
|
|
@@ -98053,8 +98190,19 @@ export type Routes = {
|
|
|
98053
98190
|
default_checkin_time?: (string | null) | undefined
|
|
98054
98191
|
/** Default check-out time for reservations at the space, as HH:mm or HH:mm:ss. */
|
|
98055
98192
|
default_checkout_time?: (string | null) | undefined
|
|
98193
|
+
/** Postal address for the space. */
|
|
98194
|
+
address?: (string | null) | undefined
|
|
98056
98195
|
}
|
|
98057
98196
|
| undefined
|
|
98197
|
+
/** Geographic coordinates (latitude and longitude) of the space. */
|
|
98198
|
+
geolocation?:
|
|
98199
|
+
| ({
|
|
98200
|
+
/** Latitude of the space, in decimal degrees. */
|
|
98201
|
+
latitude: number
|
|
98202
|
+
/** Longitude of the space, in decimal degrees. */
|
|
98203
|
+
longitude: number
|
|
98204
|
+
} | null)
|
|
98205
|
+
| undefined
|
|
98058
98206
|
/** */
|
|
98059
98207
|
parent_space_id?: string | undefined
|
|
98060
98208
|
/** */
|
|
@@ -98127,8 +98275,19 @@ export type Routes = {
|
|
|
98127
98275
|
default_checkin_time?: (string | null) | undefined
|
|
98128
98276
|
/** Default check-out time for reservations at the space, as HH:mm or HH:mm:ss. */
|
|
98129
98277
|
default_checkout_time?: (string | null) | undefined
|
|
98278
|
+
/** Postal address for the space. */
|
|
98279
|
+
address?: (string | null) | undefined
|
|
98130
98280
|
}
|
|
98131
98281
|
| undefined
|
|
98282
|
+
/** Geographic coordinates (latitude and longitude) of the space. */
|
|
98283
|
+
geolocation?:
|
|
98284
|
+
| ({
|
|
98285
|
+
/** Latitude of the space, in decimal degrees. */
|
|
98286
|
+
latitude: number
|
|
98287
|
+
/** Longitude of the space, in decimal degrees. */
|
|
98288
|
+
longitude: number
|
|
98289
|
+
} | null)
|
|
98290
|
+
| undefined
|
|
98132
98291
|
/** */
|
|
98133
98292
|
parent_space_id?: string | undefined
|
|
98134
98293
|
/** */
|
|
@@ -100659,8 +100818,19 @@ export type Routes = {
|
|
|
100659
100818
|
default_checkin_time?: (string | null) | undefined
|
|
100660
100819
|
/** Default check-out time for reservations at the space, as HH:mm or HH:mm:ss. */
|
|
100661
100820
|
default_checkout_time?: (string | null) | undefined
|
|
100821
|
+
/** Postal address for the space. */
|
|
100822
|
+
address?: (string | null) | undefined
|
|
100662
100823
|
}
|
|
100663
100824
|
| undefined
|
|
100825
|
+
/** Geographic coordinates (latitude and longitude) of the space. */
|
|
100826
|
+
geolocation?:
|
|
100827
|
+
| ({
|
|
100828
|
+
/** Latitude of the space, in decimal degrees. */
|
|
100829
|
+
latitude: number
|
|
100830
|
+
/** Longitude of the space, in decimal degrees. */
|
|
100831
|
+
longitude: number
|
|
100832
|
+
} | null)
|
|
100833
|
+
| undefined
|
|
100664
100834
|
/** */
|
|
100665
100835
|
parent_space_id?: string | undefined
|
|
100666
100836
|
/** */
|
|
@@ -100747,6 +100917,8 @@ export type Routes = {
|
|
|
100747
100917
|
default_checkin_time?: (string | null) | undefined
|
|
100748
100918
|
/** Default check-out time for reservations at the space, as HH:mm or HH:mm:ss. */
|
|
100749
100919
|
default_checkout_time?: (string | null) | undefined
|
|
100920
|
+
/** Postal address for the space. */
|
|
100921
|
+
address?: (string | null) | undefined
|
|
100750
100922
|
}
|
|
100751
100923
|
| undefined
|
|
100752
100924
|
/** Reassign this space to the parent space (site) with this `parent_space_id`. */
|
|
@@ -100786,8 +100958,19 @@ export type Routes = {
|
|
|
100786
100958
|
default_checkin_time?: (string | null) | undefined
|
|
100787
100959
|
/** Default check-out time for reservations at the space, as HH:mm or HH:mm:ss. */
|
|
100788
100960
|
default_checkout_time?: (string | null) | undefined
|
|
100961
|
+
/** Postal address for the space. */
|
|
100962
|
+
address?: (string | null) | undefined
|
|
100789
100963
|
}
|
|
100790
100964
|
| undefined
|
|
100965
|
+
/** Geographic coordinates (latitude and longitude) of the space. */
|
|
100966
|
+
geolocation?:
|
|
100967
|
+
| ({
|
|
100968
|
+
/** Latitude of the space, in decimal degrees. */
|
|
100969
|
+
latitude: number
|
|
100970
|
+
/** Longitude of the space, in decimal degrees. */
|
|
100971
|
+
longitude: number
|
|
100972
|
+
} | null)
|
|
100973
|
+
| undefined
|
|
100791
100974
|
/** */
|
|
100792
100975
|
parent_space_id?: string | undefined
|
|
100793
100976
|
/** */
|
|
@@ -124094,6 +124277,28 @@ export type Routes = {
|
|
|
124094
124277
|
parent_site_key?: string | undefined
|
|
124095
124278
|
/** Default duration of this space in minutes, when the space represents a fixed-length bookable slot (e.g. an appointment type). Used to interpret reservations booked against this space. */
|
|
124096
124279
|
duration_minutes?: number | undefined
|
|
124280
|
+
/** Reservation/stay-related defaults for the space (time zone, default check-in/out times, address). */
|
|
124281
|
+
customer_data?:
|
|
124282
|
+
| {
|
|
124283
|
+
/** IANA time zone for the space, e.g. America/Los_Angeles. */
|
|
124284
|
+
time_zone?: (string | null) | undefined
|
|
124285
|
+
/** Default check-in time for reservations at the space, as HH:mm or HH:mm:ss. */
|
|
124286
|
+
default_checkin_time?: (string | null) | undefined
|
|
124287
|
+
/** Default check-out time for reservations at the space, as HH:mm or HH:mm:ss. */
|
|
124288
|
+
default_checkout_time?: (string | null) | undefined
|
|
124289
|
+
/** Postal address for the space. */
|
|
124290
|
+
address?: (string | null) | undefined
|
|
124291
|
+
}
|
|
124292
|
+
| undefined
|
|
124293
|
+
/** Geographic coordinates (latitude and longitude) of the space. */
|
|
124294
|
+
geolocation?:
|
|
124295
|
+
| {
|
|
124296
|
+
/** Latitude of the space, in decimal degrees. */
|
|
124297
|
+
latitude: number
|
|
124298
|
+
/** Longitude of the space, in decimal degrees. */
|
|
124299
|
+
longitude: number
|
|
124300
|
+
}
|
|
124301
|
+
| undefined
|
|
124097
124302
|
}[]
|
|
124098
124303
|
| undefined
|
|
124099
124304
|
}
|
|
@@ -124169,6 +124374,28 @@ export type Routes = {
|
|
|
124169
124374
|
parent_site_key?: string | undefined
|
|
124170
124375
|
/** Default duration of this space in minutes, when the space represents a fixed-length bookable slot (e.g. an appointment type). Used to interpret reservations booked against this space. */
|
|
124171
124376
|
duration_minutes?: number | undefined
|
|
124377
|
+
/** Reservation/stay-related defaults for the space (time zone, default check-in/out times, address). */
|
|
124378
|
+
customer_data?:
|
|
124379
|
+
| {
|
|
124380
|
+
/** IANA time zone for the space, e.g. America/Los_Angeles. */
|
|
124381
|
+
time_zone?: (string | null) | undefined
|
|
124382
|
+
/** Default check-in time for reservations at the space, as HH:mm or HH:mm:ss. */
|
|
124383
|
+
default_checkin_time?: (string | null) | undefined
|
|
124384
|
+
/** Default check-out time for reservations at the space, as HH:mm or HH:mm:ss. */
|
|
124385
|
+
default_checkout_time?: (string | null) | undefined
|
|
124386
|
+
/** Postal address for the space. */
|
|
124387
|
+
address?: (string | null) | undefined
|
|
124388
|
+
}
|
|
124389
|
+
| undefined
|
|
124390
|
+
/** Geographic coordinates (latitude and longitude) of the space. */
|
|
124391
|
+
geolocation?:
|
|
124392
|
+
| {
|
|
124393
|
+
/** Latitude of the space, in decimal degrees. */
|
|
124394
|
+
latitude: number
|
|
124395
|
+
/** Longitude of the space, in decimal degrees. */
|
|
124396
|
+
longitude: number
|
|
124397
|
+
}
|
|
124398
|
+
| undefined
|
|
124172
124399
|
}[]
|
|
124173
124400
|
| undefined
|
|
124174
124401
|
}
|
|
@@ -135178,8 +135405,19 @@ export type Routes = {
|
|
|
135178
135405
|
default_checkin_time?: (string | null) | undefined
|
|
135179
135406
|
/** Default check-out time for reservations at the space, as HH:mm or HH:mm:ss. */
|
|
135180
135407
|
default_checkout_time?: (string | null) | undefined
|
|
135408
|
+
/** Postal address for the space. */
|
|
135409
|
+
address?: (string | null) | undefined
|
|
135181
135410
|
}
|
|
135182
135411
|
| undefined
|
|
135412
|
+
/** Geographic coordinates (latitude and longitude) of the space. */
|
|
135413
|
+
geolocation?:
|
|
135414
|
+
| ({
|
|
135415
|
+
/** Latitude of the space, in decimal degrees. */
|
|
135416
|
+
latitude: number
|
|
135417
|
+
/** Longitude of the space, in decimal degrees. */
|
|
135418
|
+
longitude: number
|
|
135419
|
+
} | null)
|
|
135420
|
+
| undefined
|
|
135183
135421
|
/** */
|
|
135184
135422
|
parent_space_id?: string | undefined
|
|
135185
135423
|
/** */
|