@seamapi/types 1.862.0 → 1.863.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 +19 -0
- package/dist/connect.cjs.map +1 -1
- package/dist/connect.d.cts +22 -0
- package/dist/index.cjs +19 -0
- package/dist/index.cjs.map +1 -1
- package/lib/seam/connect/models/batch.d.ts +5 -0
- package/lib/seam/connect/models/connected-accounts/connected-account.d.ts +3 -0
- package/lib/seam/connect/models/connected-accounts/connected-account.js +4 -0
- package/lib/seam/connect/models/connected-accounts/connected-account.js.map +1 -1
- package/lib/seam/connect/openapi.js +16 -0
- package/lib/seam/connect/openapi.js.map +1 -1
- package/lib/seam/connect/route-types.d.ts +14 -0
- package/package.json +1 -1
- package/src/lib/seam/connect/models/connected-accounts/connected-account.ts +6 -0
- package/src/lib/seam/connect/openapi.ts +19 -0
- package/src/lib/seam/connect/route-types.ts +14 -0
package/dist/connect.cjs
CHANGED
|
@@ -765,6 +765,9 @@ var connected_account = zod.z.object({
|
|
|
765
765
|
),
|
|
766
766
|
time_zone: zod.z.string().optional().describe(
|
|
767
767
|
"IANA time zone (e.g. America/Los_Angeles) for this connected account. Sourced from the connector configuration."
|
|
768
|
+
),
|
|
769
|
+
ical_feed_origin: zod.z.string().optional().describe(
|
|
770
|
+
"For iCal connected accounts, the platform that produced the feed (for example, `airbnb`, `vrbo`, or `booking`), or `unknown` when it could not be determined. Intended for rendering the source platform's logo."
|
|
768
771
|
)
|
|
769
772
|
}).describe(`
|
|
770
773
|
---
|
|
@@ -17546,6 +17549,10 @@ var openapi = {
|
|
|
17546
17549
|
},
|
|
17547
17550
|
type: "array"
|
|
17548
17551
|
},
|
|
17552
|
+
ical_feed_origin: {
|
|
17553
|
+
description: "For iCal connected accounts, the platform that produced the feed (for example, `airbnb`, `vrbo`, or `booking`), or `unknown` when it could not be determined. Intended for rendering the source platform's logo.",
|
|
17554
|
+
type: "string"
|
|
17555
|
+
},
|
|
17549
17556
|
image_url: {
|
|
17550
17557
|
description: "Logo URL for the connected account provider.",
|
|
17551
17558
|
format: "uri",
|
|
@@ -53914,6 +53921,12 @@ var openapi = {
|
|
|
53914
53921
|
description: "The customer key to associate with this connected account. If provided, the connected account and all resources under the connected account will be moved to this customer. May only be provided if the connected account is not already associated with a customer.",
|
|
53915
53922
|
minLength: 1,
|
|
53916
53923
|
type: "string"
|
|
53924
|
+
},
|
|
53925
|
+
display_name: {
|
|
53926
|
+
description: "Human-readable name for the connected account, shown in the dashboard. For example, `Booking from Airbnb House 1`.",
|
|
53927
|
+
maxLength: 255,
|
|
53928
|
+
minLength: 1,
|
|
53929
|
+
type: "string"
|
|
53917
53930
|
}
|
|
53918
53931
|
},
|
|
53919
53932
|
required: ["connected_account_id"],
|
|
@@ -54002,6 +54015,12 @@ var openapi = {
|
|
|
54002
54015
|
description: "The customer key to associate with this connected account. If provided, the connected account and all resources under the connected account will be moved to this customer. May only be provided if the connected account is not already associated with a customer.",
|
|
54003
54016
|
minLength: 1,
|
|
54004
54017
|
type: "string"
|
|
54018
|
+
},
|
|
54019
|
+
display_name: {
|
|
54020
|
+
description: "Human-readable name for the connected account, shown in the dashboard. For example, `Booking from Airbnb House 1`.",
|
|
54021
|
+
maxLength: 255,
|
|
54022
|
+
minLength: 1,
|
|
54023
|
+
type: "string"
|
|
54005
54024
|
}
|
|
54006
54025
|
},
|
|
54007
54026
|
required: ["connected_account_id"],
|