@seamapi/types 1.841.0 → 1.842.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
@@ -756,6 +756,15 @@ var connected_account = zod.z.object({
756
756
  ),
757
757
  accepted_capabilities: zod.z.array(provider_capability).describe(
758
758
  "List of capabilities that were accepted during the account connection process."
759
+ ),
760
+ default_checkin_time: zod.z.string().optional().describe(
761
+ "Default reservation check-in time for this connected account, as `HH:mm` (24-hour). Sourced from the connector configuration \u2014 set during the connect_webview for providers like Lodgify whose API does not expose check-in times."
762
+ ),
763
+ default_checkout_time: zod.z.string().optional().describe(
764
+ "Default reservation check-out time for this connected account, as `HH:mm` (24-hour). Sourced from the connector configuration."
765
+ ),
766
+ time_zone: zod.z.string().optional().describe(
767
+ "IANA time zone (e.g. America/Los_Angeles) for this connected account. Sourced from the connector configuration."
759
768
  )
760
769
  }).describe(`
761
770
  ---
@@ -16765,6 +16774,14 @@ var openapi = {
16765
16774
  description: "Your unique key for the customer associated with this connected account.",
16766
16775
  type: "string"
16767
16776
  },
16777
+ default_checkin_time: {
16778
+ description: "Default reservation check-in time for this connected account, as `HH:mm` (24-hour). Sourced from the connector configuration \u2014 set during the connect_webview for providers like Lodgify whose API does not expose check-in times.",
16779
+ type: "string"
16780
+ },
16781
+ default_checkout_time: {
16782
+ description: "Default reservation check-out time for this connected account, as `HH:mm` (24-hour). Sourced from the connector configuration.",
16783
+ type: "string"
16784
+ },
16768
16785
  display_name: {
16769
16786
  description: "Display name for the connected account.",
16770
16787
  type: "string"
@@ -16916,6 +16933,10 @@ var openapi = {
16916
16933
  format: "uri",
16917
16934
  type: "string"
16918
16935
  },
16936
+ time_zone: {
16937
+ description: "IANA time zone (e.g. America/Los_Angeles) for this connected account. Sourced from the connector configuration.",
16938
+ type: "string"
16939
+ },
16919
16940
  user_identifier: {
16920
16941
  deprecated: true,
16921
16942
  description: "User identifier associated with the connected account.",
@@ -73360,6 +73381,29 @@ var openapi = {
73360
73381
  items: { format: "uuid", type: "string" },
73361
73382
  type: "array"
73362
73383
  },
73384
+ customer_data: {
73385
+ description: "Reservation/stay-related defaults for the space. When omitted and `connected_account_ids` is provided, `default_checkin_time` / `default_checkout_time` / `time_zone` are auto-inherited from the first connected account's connector configuration.",
73386
+ properties: {
73387
+ default_checkin_time: {
73388
+ description: "Default check-in time for reservations at the space, as HH:mm or HH:mm:ss.",
73389
+ nullable: true,
73390
+ pattern: "^([01]\\d|2[0-3]):[0-5]\\d(:[0-5]\\d)?$",
73391
+ type: "string"
73392
+ },
73393
+ default_checkout_time: {
73394
+ description: "Default check-out time for reservations at the space, as HH:mm or HH:mm:ss.",
73395
+ nullable: true,
73396
+ pattern: "^([01]\\d|2[0-3]):[0-5]\\d(:[0-5]\\d)?$",
73397
+ type: "string"
73398
+ },
73399
+ time_zone: {
73400
+ description: "IANA time zone for the space, e.g. America/Los_Angeles.",
73401
+ nullable: true,
73402
+ type: "string"
73403
+ }
73404
+ },
73405
+ type: "object"
73406
+ },
73363
73407
  device_ids: {
73364
73408
  description: "IDs of the devices that you want to add to the new space.",
73365
73409
  items: { format: "uuid", type: "string" },