@seamapi/types 1.927.0 → 1.928.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 +5 -2
- package/dist/connect.cjs.map +1 -1
- package/dist/connect.d.cts +36 -36
- package/dist/index.cjs +5 -2
- package/dist/index.cjs.map +1 -1
- package/lib/seam/connect/models/spaces/space.d.ts +23 -23
- package/lib/seam/connect/models/spaces/space.js +4 -1
- package/lib/seam/connect/models/spaces/space.js.map +1 -1
- package/lib/seam/connect/openapi.js +2 -1
- package/lib/seam/connect/openapi.js.map +1 -1
- package/lib/seam/connect/route-types.d.ts +13 -13
- package/package.json +1 -1
- package/src/lib/seam/connect/models/spaces/space.ts +6 -1
- package/src/lib/seam/connect/openapi.ts +3 -1
- package/src/lib/seam/connect/route-types.ts +13 -13
package/dist/connect.cjs
CHANGED
|
@@ -7052,7 +7052,9 @@ var space = zod.z.object({
|
|
|
7052
7052
|
device_count: zod.z.number().describe("Number of devices in the space."),
|
|
7053
7053
|
acs_entrance_count: zod.z.number().describe("Number of entrances in the space."),
|
|
7054
7054
|
customer_key: zod.z.string().optional().describe("Customer key associated with the space."),
|
|
7055
|
-
customer_data: space_customer_data.
|
|
7055
|
+
customer_data: space_customer_data.catchall(zod.z.string().nullish()).describe(
|
|
7056
|
+
"Reservation/stay-related defaults for the space. Also carries the provider/PMS-supplied name under a `<connector_type>_name` key (e.g. `guesty_name`), which Seam preserves when you rename the space (read-only \u2014 managed by Seam)."
|
|
7057
|
+
).optional(),
|
|
7056
7058
|
geolocation: space_geolocation.nullish().describe("Geographic coordinates (latitude and longitude) of the space."),
|
|
7057
7059
|
parent_space_id: zod.z.string().uuid().optional().describe(`
|
|
7058
7060
|
---
|
|
@@ -32950,7 +32952,8 @@ var openapi = {
|
|
|
32950
32952
|
type: "string"
|
|
32951
32953
|
},
|
|
32952
32954
|
customer_data: {
|
|
32953
|
-
|
|
32955
|
+
additionalProperties: { nullable: true, type: "string" },
|
|
32956
|
+
description: "Reservation/stay-related defaults for the space. Also carries the provider/PMS-supplied name under a `<connector_type>_name` key (e.g. `guesty_name`), which Seam preserves when you rename the space (read-only \u2014 managed by Seam).",
|
|
32954
32957
|
properties: {
|
|
32955
32958
|
address: {
|
|
32956
32959
|
description: "Postal address for the space.",
|