@seamapi/types 1.863.0 → 1.864.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 +7 -0
- package/dist/connect.cjs.map +1 -1
- package/dist/connect.d.cts +20 -0
- package/dist/index.cjs +7 -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 +4 -0
- package/lib/seam/connect/openapi.js.map +1 -1
- package/lib/seam/connect/route-types.d.ts +12 -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 +5 -0
- package/src/lib/seam/connect/route-types.ts +12 -0
package/dist/connect.cjs
CHANGED
|
@@ -768,6 +768,9 @@ var connected_account = zod.z.object({
|
|
|
768
768
|
),
|
|
769
769
|
ical_feed_origin: zod.z.string().optional().describe(
|
|
770
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."
|
|
771
|
+
),
|
|
772
|
+
ical_url: zod.z.string().optional().describe(
|
|
773
|
+
"For iCal connected accounts, the feed URL for the connection. Sourced from the connector configuration."
|
|
771
774
|
)
|
|
772
775
|
}).describe(`
|
|
773
776
|
---
|
|
@@ -17553,6 +17556,10 @@ var openapi = {
|
|
|
17553
17556
|
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
17557
|
type: "string"
|
|
17555
17558
|
},
|
|
17559
|
+
ical_url: {
|
|
17560
|
+
description: "For iCal connected accounts, the feed URL for the connection. Sourced from the connector configuration.",
|
|
17561
|
+
type: "string"
|
|
17562
|
+
},
|
|
17556
17563
|
image_url: {
|
|
17557
17564
|
description: "Logo URL for the connected account provider.",
|
|
17558
17565
|
format: "uri",
|