@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 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.optional(),
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
- description: "Reservation/stay-related defaults for the space.",
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.",