@seamapi/types 1.898.0 → 1.899.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 +275 -1
- package/dist/connect.cjs.map +1 -1
- package/dist/connect.d.cts +227 -9
- package/dist/index.cjs +275 -1
- 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 +268 -0
- package/lib/seam/connect/openapi.js.map +1 -1
- package/lib/seam/connect/route-types.d.ts +204 -9
- 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 +313 -0
- package/src/lib/seam/connect/route-types.ts +237 -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
|
/** */
|
|
@@ -47884,6 +47906,28 @@ export type Routes = {
|
|
|
47884
47906
|
parent_site_key?: string | undefined
|
|
47885
47907
|
/** 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
47908
|
duration_minutes?: number | undefined
|
|
47909
|
+
/** Reservation/stay-related defaults for the space (time zone, default check-in/out times, address). */
|
|
47910
|
+
customer_data?:
|
|
47911
|
+
| {
|
|
47912
|
+
/** IANA time zone for the space, e.g. America/Los_Angeles. */
|
|
47913
|
+
time_zone?: (string | null) | undefined
|
|
47914
|
+
/** Default check-in time for reservations at the space, as HH:mm or HH:mm:ss. */
|
|
47915
|
+
default_checkin_time?: (string | null) | undefined
|
|
47916
|
+
/** Default check-out time for reservations at the space, as HH:mm or HH:mm:ss. */
|
|
47917
|
+
default_checkout_time?: (string | null) | undefined
|
|
47918
|
+
/** Postal address for the space. */
|
|
47919
|
+
address?: (string | null) | undefined
|
|
47920
|
+
}
|
|
47921
|
+
| undefined
|
|
47922
|
+
/** Geographic coordinates (latitude and longitude) of the space. */
|
|
47923
|
+
geolocation?:
|
|
47924
|
+
| {
|
|
47925
|
+
/** Latitude of the space, in decimal degrees. */
|
|
47926
|
+
latitude: number
|
|
47927
|
+
/** Longitude of the space, in decimal degrees. */
|
|
47928
|
+
longitude: number
|
|
47929
|
+
}
|
|
47930
|
+
| undefined
|
|
47887
47931
|
}[]
|
|
47888
47932
|
| undefined
|
|
47889
47933
|
/** List of general sites or areas. */
|
|
@@ -48316,6 +48360,28 @@ export type Routes = {
|
|
|
48316
48360
|
parent_site_key?: string | undefined
|
|
48317
48361
|
/** 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
48362
|
duration_minutes?: number | undefined
|
|
48363
|
+
/** Reservation/stay-related defaults for the space (time zone, default check-in/out times, address). */
|
|
48364
|
+
customer_data?:
|
|
48365
|
+
| {
|
|
48366
|
+
/** IANA time zone for the space, e.g. America/Los_Angeles. */
|
|
48367
|
+
time_zone?: (string | null) | undefined
|
|
48368
|
+
/** Default check-in time for reservations at the space, as HH:mm or HH:mm:ss. */
|
|
48369
|
+
default_checkin_time?: (string | null) | undefined
|
|
48370
|
+
/** Default check-out time for reservations at the space, as HH:mm or HH:mm:ss. */
|
|
48371
|
+
default_checkout_time?: (string | null) | undefined
|
|
48372
|
+
/** Postal address for the space. */
|
|
48373
|
+
address?: (string | null) | undefined
|
|
48374
|
+
}
|
|
48375
|
+
| undefined
|
|
48376
|
+
/** Geographic coordinates (latitude and longitude) of the space. */
|
|
48377
|
+
geolocation?:
|
|
48378
|
+
| {
|
|
48379
|
+
/** Latitude of the space, in decimal degrees. */
|
|
48380
|
+
latitude: number
|
|
48381
|
+
/** Longitude of the space, in decimal degrees. */
|
|
48382
|
+
longitude: number
|
|
48383
|
+
}
|
|
48384
|
+
| undefined
|
|
48319
48385
|
}[]
|
|
48320
48386
|
| undefined
|
|
48321
48387
|
/** List of general sites or areas. */
|
|
@@ -88952,8 +89018,19 @@ export type Routes = {
|
|
|
88952
89018
|
default_checkin_time?: (string | null) | undefined
|
|
88953
89019
|
/** Default check-out time for reservations at the space, as HH:mm or HH:mm:ss. */
|
|
88954
89020
|
default_checkout_time?: (string | null) | undefined
|
|
89021
|
+
/** Postal address for the space. */
|
|
89022
|
+
address?: (string | null) | undefined
|
|
88955
89023
|
}
|
|
88956
89024
|
| undefined
|
|
89025
|
+
/** Geographic coordinates (latitude and longitude) of the space. */
|
|
89026
|
+
geolocation?:
|
|
89027
|
+
| ({
|
|
89028
|
+
/** Latitude of the space, in decimal degrees. */
|
|
89029
|
+
latitude: number
|
|
89030
|
+
/** Longitude of the space, in decimal degrees. */
|
|
89031
|
+
longitude: number
|
|
89032
|
+
} | null)
|
|
89033
|
+
| undefined
|
|
88957
89034
|
/** */
|
|
88958
89035
|
parent_space_id?: string | undefined
|
|
88959
89036
|
/** */
|
|
@@ -89014,8 +89091,19 @@ export type Routes = {
|
|
|
89014
89091
|
default_checkin_time?: (string | null) | undefined
|
|
89015
89092
|
/** Default check-out time for reservations at the space, as HH:mm or HH:mm:ss. */
|
|
89016
89093
|
default_checkout_time?: (string | null) | undefined
|
|
89094
|
+
/** Postal address for the space. */
|
|
89095
|
+
address?: (string | null) | undefined
|
|
89017
89096
|
}
|
|
89018
89097
|
| undefined
|
|
89098
|
+
/** Geographic coordinates (latitude and longitude) of the space. */
|
|
89099
|
+
geolocation?:
|
|
89100
|
+
| ({
|
|
89101
|
+
/** Latitude of the space, in decimal degrees. */
|
|
89102
|
+
latitude: number
|
|
89103
|
+
/** Longitude of the space, in decimal degrees. */
|
|
89104
|
+
longitude: number
|
|
89105
|
+
} | null)
|
|
89106
|
+
| undefined
|
|
89019
89107
|
/** */
|
|
89020
89108
|
parent_space_id?: string | undefined
|
|
89021
89109
|
/** */
|
|
@@ -89068,8 +89156,19 @@ export type Routes = {
|
|
|
89068
89156
|
default_checkin_time?: (string | null) | undefined
|
|
89069
89157
|
/** Default check-out time for reservations at the space, as HH:mm or HH:mm:ss. */
|
|
89070
89158
|
default_checkout_time?: (string | null) | undefined
|
|
89159
|
+
/** Postal address for the space. */
|
|
89160
|
+
address?: (string | null) | undefined
|
|
89071
89161
|
}
|
|
89072
89162
|
| undefined
|
|
89163
|
+
/** Geographic coordinates (latitude and longitude) of the space. */
|
|
89164
|
+
geolocation?:
|
|
89165
|
+
| ({
|
|
89166
|
+
/** Latitude of the space, in decimal degrees. */
|
|
89167
|
+
latitude: number
|
|
89168
|
+
/** Longitude of the space, in decimal degrees. */
|
|
89169
|
+
longitude: number
|
|
89170
|
+
} | null)
|
|
89171
|
+
| undefined
|
|
89073
89172
|
/** */
|
|
89074
89173
|
parent_space_id?: string | undefined
|
|
89075
89174
|
/** */
|
|
@@ -96629,6 +96728,8 @@ export type Routes = {
|
|
|
96629
96728
|
default_checkin_time?: (string | null) | undefined
|
|
96630
96729
|
/** Default check-out time for reservations at the space, as HH:mm or HH:mm:ss. */
|
|
96631
96730
|
default_checkout_time?: (string | null) | undefined
|
|
96731
|
+
/** Postal address for the space. */
|
|
96732
|
+
address?: (string | null) | undefined
|
|
96632
96733
|
}
|
|
96633
96734
|
| undefined
|
|
96634
96735
|
/** Space key of the parent space for this space. */
|
|
@@ -96668,8 +96769,19 @@ export type Routes = {
|
|
|
96668
96769
|
default_checkin_time?: (string | null) | undefined
|
|
96669
96770
|
/** Default check-out time for reservations at the space, as HH:mm or HH:mm:ss. */
|
|
96670
96771
|
default_checkout_time?: (string | null) | undefined
|
|
96772
|
+
/** Postal address for the space. */
|
|
96773
|
+
address?: (string | null) | undefined
|
|
96671
96774
|
}
|
|
96672
96775
|
| undefined
|
|
96776
|
+
/** Geographic coordinates (latitude and longitude) of the space. */
|
|
96777
|
+
geolocation?:
|
|
96778
|
+
| ({
|
|
96779
|
+
/** Latitude of the space, in decimal degrees. */
|
|
96780
|
+
latitude: number
|
|
96781
|
+
/** Longitude of the space, in decimal degrees. */
|
|
96782
|
+
longitude: number
|
|
96783
|
+
} | null)
|
|
96784
|
+
| undefined
|
|
96673
96785
|
/** */
|
|
96674
96786
|
parent_space_id?: string | undefined
|
|
96675
96787
|
/** */
|
|
@@ -96725,8 +96837,19 @@ export type Routes = {
|
|
|
96725
96837
|
default_checkin_time?: (string | null) | undefined
|
|
96726
96838
|
/** Default check-out time for reservations at the space, as HH:mm or HH:mm:ss. */
|
|
96727
96839
|
default_checkout_time?: (string | null) | undefined
|
|
96840
|
+
/** Postal address for the space. */
|
|
96841
|
+
address?: (string | null) | undefined
|
|
96728
96842
|
}
|
|
96729
96843
|
| undefined
|
|
96844
|
+
/** Geographic coordinates (latitude and longitude) of the space. */
|
|
96845
|
+
geolocation?:
|
|
96846
|
+
| ({
|
|
96847
|
+
/** Latitude of the space, in decimal degrees. */
|
|
96848
|
+
latitude: number
|
|
96849
|
+
/** Longitude of the space, in decimal degrees. */
|
|
96850
|
+
longitude: number
|
|
96851
|
+
} | null)
|
|
96852
|
+
| undefined
|
|
96730
96853
|
/** */
|
|
96731
96854
|
parent_space_id?: string | undefined
|
|
96732
96855
|
/** */
|
|
@@ -97950,6 +98073,8 @@ export type Routes = {
|
|
|
97950
98073
|
default_checkin_time?: (string | null) | undefined
|
|
97951
98074
|
/** Default check-out time for reservations at the space, as HH:mm or HH:mm:ss. */
|
|
97952
98075
|
default_checkout_time?: (string | null) | undefined
|
|
98076
|
+
/** Postal address for the space. */
|
|
98077
|
+
address?: (string | null) | undefined
|
|
97953
98078
|
}
|
|
97954
98079
|
| undefined
|
|
97955
98080
|
}
|
|
@@ -97985,8 +98110,19 @@ export type Routes = {
|
|
|
97985
98110
|
default_checkin_time?: (string | null) | undefined
|
|
97986
98111
|
/** Default check-out time for reservations at the space, as HH:mm or HH:mm:ss. */
|
|
97987
98112
|
default_checkout_time?: (string | null) | undefined
|
|
98113
|
+
/** Postal address for the space. */
|
|
98114
|
+
address?: (string | null) | undefined
|
|
97988
98115
|
}
|
|
97989
98116
|
| undefined
|
|
98117
|
+
/** Geographic coordinates (latitude and longitude) of the space. */
|
|
98118
|
+
geolocation?:
|
|
98119
|
+
| ({
|
|
98120
|
+
/** Latitude of the space, in decimal degrees. */
|
|
98121
|
+
latitude: number
|
|
98122
|
+
/** Longitude of the space, in decimal degrees. */
|
|
98123
|
+
longitude: number
|
|
98124
|
+
} | null)
|
|
98125
|
+
| undefined
|
|
97990
98126
|
/** */
|
|
97991
98127
|
parent_space_id?: string | undefined
|
|
97992
98128
|
/** */
|
|
@@ -98053,8 +98189,19 @@ export type Routes = {
|
|
|
98053
98189
|
default_checkin_time?: (string | null) | undefined
|
|
98054
98190
|
/** Default check-out time for reservations at the space, as HH:mm or HH:mm:ss. */
|
|
98055
98191
|
default_checkout_time?: (string | null) | undefined
|
|
98192
|
+
/** Postal address for the space. */
|
|
98193
|
+
address?: (string | null) | undefined
|
|
98056
98194
|
}
|
|
98057
98195
|
| undefined
|
|
98196
|
+
/** Geographic coordinates (latitude and longitude) of the space. */
|
|
98197
|
+
geolocation?:
|
|
98198
|
+
| ({
|
|
98199
|
+
/** Latitude of the space, in decimal degrees. */
|
|
98200
|
+
latitude: number
|
|
98201
|
+
/** Longitude of the space, in decimal degrees. */
|
|
98202
|
+
longitude: number
|
|
98203
|
+
} | null)
|
|
98204
|
+
| undefined
|
|
98058
98205
|
/** */
|
|
98059
98206
|
parent_space_id?: string | undefined
|
|
98060
98207
|
/** */
|
|
@@ -98127,8 +98274,19 @@ export type Routes = {
|
|
|
98127
98274
|
default_checkin_time?: (string | null) | undefined
|
|
98128
98275
|
/** Default check-out time for reservations at the space, as HH:mm or HH:mm:ss. */
|
|
98129
98276
|
default_checkout_time?: (string | null) | undefined
|
|
98277
|
+
/** Postal address for the space. */
|
|
98278
|
+
address?: (string | null) | undefined
|
|
98130
98279
|
}
|
|
98131
98280
|
| undefined
|
|
98281
|
+
/** Geographic coordinates (latitude and longitude) of the space. */
|
|
98282
|
+
geolocation?:
|
|
98283
|
+
| ({
|
|
98284
|
+
/** Latitude of the space, in decimal degrees. */
|
|
98285
|
+
latitude: number
|
|
98286
|
+
/** Longitude of the space, in decimal degrees. */
|
|
98287
|
+
longitude: number
|
|
98288
|
+
} | null)
|
|
98289
|
+
| undefined
|
|
98132
98290
|
/** */
|
|
98133
98291
|
parent_space_id?: string | undefined
|
|
98134
98292
|
/** */
|
|
@@ -100659,8 +100817,19 @@ export type Routes = {
|
|
|
100659
100817
|
default_checkin_time?: (string | null) | undefined
|
|
100660
100818
|
/** Default check-out time for reservations at the space, as HH:mm or HH:mm:ss. */
|
|
100661
100819
|
default_checkout_time?: (string | null) | undefined
|
|
100820
|
+
/** Postal address for the space. */
|
|
100821
|
+
address?: (string | null) | undefined
|
|
100662
100822
|
}
|
|
100663
100823
|
| undefined
|
|
100824
|
+
/** Geographic coordinates (latitude and longitude) of the space. */
|
|
100825
|
+
geolocation?:
|
|
100826
|
+
| ({
|
|
100827
|
+
/** Latitude of the space, in decimal degrees. */
|
|
100828
|
+
latitude: number
|
|
100829
|
+
/** Longitude of the space, in decimal degrees. */
|
|
100830
|
+
longitude: number
|
|
100831
|
+
} | null)
|
|
100832
|
+
| undefined
|
|
100664
100833
|
/** */
|
|
100665
100834
|
parent_space_id?: string | undefined
|
|
100666
100835
|
/** */
|
|
@@ -100747,6 +100916,8 @@ export type Routes = {
|
|
|
100747
100916
|
default_checkin_time?: (string | null) | undefined
|
|
100748
100917
|
/** Default check-out time for reservations at the space, as HH:mm or HH:mm:ss. */
|
|
100749
100918
|
default_checkout_time?: (string | null) | undefined
|
|
100919
|
+
/** Postal address for the space. */
|
|
100920
|
+
address?: (string | null) | undefined
|
|
100750
100921
|
}
|
|
100751
100922
|
| undefined
|
|
100752
100923
|
/** Reassign this space to the parent space (site) with this `parent_space_id`. */
|
|
@@ -100786,8 +100957,19 @@ export type Routes = {
|
|
|
100786
100957
|
default_checkin_time?: (string | null) | undefined
|
|
100787
100958
|
/** Default check-out time for reservations at the space, as HH:mm or HH:mm:ss. */
|
|
100788
100959
|
default_checkout_time?: (string | null) | undefined
|
|
100960
|
+
/** Postal address for the space. */
|
|
100961
|
+
address?: (string | null) | undefined
|
|
100789
100962
|
}
|
|
100790
100963
|
| undefined
|
|
100964
|
+
/** Geographic coordinates (latitude and longitude) of the space. */
|
|
100965
|
+
geolocation?:
|
|
100966
|
+
| ({
|
|
100967
|
+
/** Latitude of the space, in decimal degrees. */
|
|
100968
|
+
latitude: number
|
|
100969
|
+
/** Longitude of the space, in decimal degrees. */
|
|
100970
|
+
longitude: number
|
|
100971
|
+
} | null)
|
|
100972
|
+
| undefined
|
|
100791
100973
|
/** */
|
|
100792
100974
|
parent_space_id?: string | undefined
|
|
100793
100975
|
/** */
|
|
@@ -124094,6 +124276,28 @@ export type Routes = {
|
|
|
124094
124276
|
parent_site_key?: string | undefined
|
|
124095
124277
|
/** 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
124278
|
duration_minutes?: number | undefined
|
|
124279
|
+
/** Reservation/stay-related defaults for the space (time zone, default check-in/out times, address). */
|
|
124280
|
+
customer_data?:
|
|
124281
|
+
| {
|
|
124282
|
+
/** IANA time zone for the space, e.g. America/Los_Angeles. */
|
|
124283
|
+
time_zone?: (string | null) | undefined
|
|
124284
|
+
/** Default check-in time for reservations at the space, as HH:mm or HH:mm:ss. */
|
|
124285
|
+
default_checkin_time?: (string | null) | undefined
|
|
124286
|
+
/** Default check-out time for reservations at the space, as HH:mm or HH:mm:ss. */
|
|
124287
|
+
default_checkout_time?: (string | null) | undefined
|
|
124288
|
+
/** Postal address for the space. */
|
|
124289
|
+
address?: (string | null) | undefined
|
|
124290
|
+
}
|
|
124291
|
+
| undefined
|
|
124292
|
+
/** Geographic coordinates (latitude and longitude) of the space. */
|
|
124293
|
+
geolocation?:
|
|
124294
|
+
| {
|
|
124295
|
+
/** Latitude of the space, in decimal degrees. */
|
|
124296
|
+
latitude: number
|
|
124297
|
+
/** Longitude of the space, in decimal degrees. */
|
|
124298
|
+
longitude: number
|
|
124299
|
+
}
|
|
124300
|
+
| undefined
|
|
124097
124301
|
}[]
|
|
124098
124302
|
| undefined
|
|
124099
124303
|
}
|
|
@@ -124169,6 +124373,28 @@ export type Routes = {
|
|
|
124169
124373
|
parent_site_key?: string | undefined
|
|
124170
124374
|
/** 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
124375
|
duration_minutes?: number | undefined
|
|
124376
|
+
/** Reservation/stay-related defaults for the space (time zone, default check-in/out times, address). */
|
|
124377
|
+
customer_data?:
|
|
124378
|
+
| {
|
|
124379
|
+
/** IANA time zone for the space, e.g. America/Los_Angeles. */
|
|
124380
|
+
time_zone?: (string | null) | undefined
|
|
124381
|
+
/** Default check-in time for reservations at the space, as HH:mm or HH:mm:ss. */
|
|
124382
|
+
default_checkin_time?: (string | null) | undefined
|
|
124383
|
+
/** Default check-out time for reservations at the space, as HH:mm or HH:mm:ss. */
|
|
124384
|
+
default_checkout_time?: (string | null) | undefined
|
|
124385
|
+
/** Postal address for the space. */
|
|
124386
|
+
address?: (string | null) | undefined
|
|
124387
|
+
}
|
|
124388
|
+
| undefined
|
|
124389
|
+
/** Geographic coordinates (latitude and longitude) of the space. */
|
|
124390
|
+
geolocation?:
|
|
124391
|
+
| {
|
|
124392
|
+
/** Latitude of the space, in decimal degrees. */
|
|
124393
|
+
latitude: number
|
|
124394
|
+
/** Longitude of the space, in decimal degrees. */
|
|
124395
|
+
longitude: number
|
|
124396
|
+
}
|
|
124397
|
+
| undefined
|
|
124172
124398
|
}[]
|
|
124173
124399
|
| undefined
|
|
124174
124400
|
}
|
|
@@ -135178,8 +135404,19 @@ export type Routes = {
|
|
|
135178
135404
|
default_checkin_time?: (string | null) | undefined
|
|
135179
135405
|
/** Default check-out time for reservations at the space, as HH:mm or HH:mm:ss. */
|
|
135180
135406
|
default_checkout_time?: (string | null) | undefined
|
|
135407
|
+
/** Postal address for the space. */
|
|
135408
|
+
address?: (string | null) | undefined
|
|
135181
135409
|
}
|
|
135182
135410
|
| undefined
|
|
135411
|
+
/** Geographic coordinates (latitude and longitude) of the space. */
|
|
135412
|
+
geolocation?:
|
|
135413
|
+
| ({
|
|
135414
|
+
/** Latitude of the space, in decimal degrees. */
|
|
135415
|
+
latitude: number
|
|
135416
|
+
/** Longitude of the space, in decimal degrees. */
|
|
135417
|
+
longitude: number
|
|
135418
|
+
} | null)
|
|
135419
|
+
| undefined
|
|
135183
135420
|
/** */
|
|
135184
135421
|
parent_space_id?: string | undefined
|
|
135185
135422
|
/** */
|