@seamapi/types 1.897.0 → 1.898.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 +22 -0
- package/dist/connect.cjs.map +1 -1
- package/dist/connect.d.cts +4 -0
- package/dist/index.cjs +22 -0
- package/dist/index.cjs.map +1 -1
- package/lib/seam/connect/openapi.js +22 -0
- package/lib/seam/connect/openapi.js.map +1 -1
- package/lib/seam/connect/route-types.d.ts +4 -0
- package/package.json +1 -1
- package/src/lib/seam/connect/openapi.ts +26 -0
- package/src/lib/seam/connect/route-types.ts +4 -0
|
@@ -84387,6 +84387,10 @@ export type Routes = {
|
|
|
84387
84387
|
/** Default check-out time for reservations at the space, as HH:mm or HH:mm:ss. */
|
|
84388
84388
|
default_checkout_time?: (string | null) | undefined;
|
|
84389
84389
|
} | undefined;
|
|
84390
|
+
/** Reassign this space to the parent space (site) with this `parent_space_id`. */
|
|
84391
|
+
parent_space_id?: string | undefined;
|
|
84392
|
+
/** Reassign this space to the parent space (site) with this `parent_space_key`. */
|
|
84393
|
+
parent_space_key?: string | undefined;
|
|
84390
84394
|
};
|
|
84391
84395
|
commonParams: {};
|
|
84392
84396
|
formData: {};
|
package/package.json
CHANGED
|
@@ -79054,6 +79054,19 @@ const openapi: OpenAPISpec = {
|
|
|
79054
79054
|
type: 'array',
|
|
79055
79055
|
},
|
|
79056
79056
|
name: { description: 'Name of the space.', type: 'string' },
|
|
79057
|
+
parent_space_id: {
|
|
79058
|
+
description:
|
|
79059
|
+
'Reassign this space to the parent space (site) with this `parent_space_id`.',
|
|
79060
|
+
format: 'uuid',
|
|
79061
|
+
type: 'string',
|
|
79062
|
+
'x-undocumented': 'Only used internally.',
|
|
79063
|
+
},
|
|
79064
|
+
parent_space_key: {
|
|
79065
|
+
description:
|
|
79066
|
+
'Reassign this space to the parent space (site) with this `parent_space_key`.',
|
|
79067
|
+
type: 'string',
|
|
79068
|
+
'x-undocumented': 'Only used internally.',
|
|
79069
|
+
},
|
|
79057
79070
|
space_id: {
|
|
79058
79071
|
description: 'ID of the space that you want to update.',
|
|
79059
79072
|
format: 'uuid',
|
|
@@ -79151,6 +79164,19 @@ const openapi: OpenAPISpec = {
|
|
|
79151
79164
|
type: 'array',
|
|
79152
79165
|
},
|
|
79153
79166
|
name: { description: 'Name of the space.', type: 'string' },
|
|
79167
|
+
parent_space_id: {
|
|
79168
|
+
description:
|
|
79169
|
+
'Reassign this space to the parent space (site) with this `parent_space_id`.',
|
|
79170
|
+
format: 'uuid',
|
|
79171
|
+
type: 'string',
|
|
79172
|
+
'x-undocumented': 'Only used internally.',
|
|
79173
|
+
},
|
|
79174
|
+
parent_space_key: {
|
|
79175
|
+
description:
|
|
79176
|
+
'Reassign this space to the parent space (site) with this `parent_space_key`.',
|
|
79177
|
+
type: 'string',
|
|
79178
|
+
'x-undocumented': 'Only used internally.',
|
|
79179
|
+
},
|
|
79154
79180
|
space_id: {
|
|
79155
79181
|
description: 'ID of the space that you want to update.',
|
|
79156
79182
|
format: 'uuid',
|
|
@@ -100749,6 +100749,10 @@ export type Routes = {
|
|
|
100749
100749
|
default_checkout_time?: (string | null) | undefined
|
|
100750
100750
|
}
|
|
100751
100751
|
| undefined
|
|
100752
|
+
/** Reassign this space to the parent space (site) with this `parent_space_id`. */
|
|
100753
|
+
parent_space_id?: string | undefined
|
|
100754
|
+
/** Reassign this space to the parent space (site) with this `parent_space_key`. */
|
|
100755
|
+
parent_space_key?: string | undefined
|
|
100752
100756
|
}
|
|
100753
100757
|
commonParams: {}
|
|
100754
100758
|
formData: {}
|