@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
package/dist/connect.d.cts
CHANGED
|
@@ -114575,6 +114575,10 @@ type Routes = {
|
|
|
114575
114575
|
/** Default check-out time for reservations at the space, as HH:mm or HH:mm:ss. */
|
|
114576
114576
|
default_checkout_time?: (string | null) | undefined;
|
|
114577
114577
|
} | undefined;
|
|
114578
|
+
/** Reassign this space to the parent space (site) with this `parent_space_id`. */
|
|
114579
|
+
parent_space_id?: string | undefined;
|
|
114580
|
+
/** Reassign this space to the parent space (site) with this `parent_space_key`. */
|
|
114581
|
+
parent_space_key?: string | undefined;
|
|
114578
114582
|
};
|
|
114579
114583
|
commonParams: {};
|
|
114580
114584
|
formData: {};
|
package/dist/index.cjs
CHANGED
|
@@ -80284,6 +80284,17 @@ var openapi = {
|
|
|
80284
80284
|
type: "array"
|
|
80285
80285
|
},
|
|
80286
80286
|
name: { description: "Name of the space.", type: "string" },
|
|
80287
|
+
parent_space_id: {
|
|
80288
|
+
description: "Reassign this space to the parent space (site) with this `parent_space_id`.",
|
|
80289
|
+
format: "uuid",
|
|
80290
|
+
type: "string",
|
|
80291
|
+
"x-undocumented": "Only used internally."
|
|
80292
|
+
},
|
|
80293
|
+
parent_space_key: {
|
|
80294
|
+
description: "Reassign this space to the parent space (site) with this `parent_space_key`.",
|
|
80295
|
+
type: "string",
|
|
80296
|
+
"x-undocumented": "Only used internally."
|
|
80297
|
+
},
|
|
80287
80298
|
space_id: {
|
|
80288
80299
|
description: "ID of the space that you want to update.",
|
|
80289
80300
|
format: "uuid",
|
|
@@ -80374,6 +80385,17 @@ var openapi = {
|
|
|
80374
80385
|
type: "array"
|
|
80375
80386
|
},
|
|
80376
80387
|
name: { description: "Name of the space.", type: "string" },
|
|
80388
|
+
parent_space_id: {
|
|
80389
|
+
description: "Reassign this space to the parent space (site) with this `parent_space_id`.",
|
|
80390
|
+
format: "uuid",
|
|
80391
|
+
type: "string",
|
|
80392
|
+
"x-undocumented": "Only used internally."
|
|
80393
|
+
},
|
|
80394
|
+
parent_space_key: {
|
|
80395
|
+
description: "Reassign this space to the parent space (site) with this `parent_space_key`.",
|
|
80396
|
+
type: "string",
|
|
80397
|
+
"x-undocumented": "Only used internally."
|
|
80398
|
+
},
|
|
80377
80399
|
space_id: {
|
|
80378
80400
|
description: "ID of the space that you want to update.",
|
|
80379
80401
|
format: "uuid",
|