@seamapi/types 1.862.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 +26 -0
- package/dist/connect.cjs.map +1 -1
- package/dist/connect.d.cts +42 -0
- package/dist/index.cjs +26 -0
- package/dist/index.cjs.map +1 -1
- package/lib/seam/connect/models/batch.d.ts +10 -0
- package/lib/seam/connect/models/connected-accounts/connected-account.d.ts +6 -0
- package/lib/seam/connect/models/connected-accounts/connected-account.js +8 -0
- package/lib/seam/connect/models/connected-accounts/connected-account.js.map +1 -1
- package/lib/seam/connect/openapi.js +20 -0
- package/lib/seam/connect/openapi.js.map +1 -1
- package/lib/seam/connect/route-types.d.ts +26 -0
- package/package.json +1 -1
- package/src/lib/seam/connect/models/connected-accounts/connected-account.ts +12 -0
- package/src/lib/seam/connect/openapi.ts +24 -0
- package/src/lib/seam/connect/route-types.ts +26 -0
package/dist/connect.cjs
CHANGED
|
@@ -765,6 +765,12 @@ 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."
|
|
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."
|
|
768
774
|
)
|
|
769
775
|
}).describe(`
|
|
770
776
|
---
|
|
@@ -17546,6 +17552,14 @@ var openapi = {
|
|
|
17546
17552
|
},
|
|
17547
17553
|
type: "array"
|
|
17548
17554
|
},
|
|
17555
|
+
ical_feed_origin: {
|
|
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.",
|
|
17557
|
+
type: "string"
|
|
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
|
+
},
|
|
17549
17563
|
image_url: {
|
|
17550
17564
|
description: "Logo URL for the connected account provider.",
|
|
17551
17565
|
format: "uri",
|
|
@@ -53914,6 +53928,12 @@ var openapi = {
|
|
|
53914
53928
|
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
53929
|
minLength: 1,
|
|
53916
53930
|
type: "string"
|
|
53931
|
+
},
|
|
53932
|
+
display_name: {
|
|
53933
|
+
description: "Human-readable name for the connected account, shown in the dashboard. For example, `Booking from Airbnb House 1`.",
|
|
53934
|
+
maxLength: 255,
|
|
53935
|
+
minLength: 1,
|
|
53936
|
+
type: "string"
|
|
53917
53937
|
}
|
|
53918
53938
|
},
|
|
53919
53939
|
required: ["connected_account_id"],
|
|
@@ -54002,6 +54022,12 @@ var openapi = {
|
|
|
54002
54022
|
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
54023
|
minLength: 1,
|
|
54004
54024
|
type: "string"
|
|
54025
|
+
},
|
|
54026
|
+
display_name: {
|
|
54027
|
+
description: "Human-readable name for the connected account, shown in the dashboard. For example, `Booking from Airbnb House 1`.",
|
|
54028
|
+
maxLength: 255,
|
|
54029
|
+
minLength: 1,
|
|
54030
|
+
type: "string"
|
|
54005
54031
|
}
|
|
54006
54032
|
},
|
|
54007
54033
|
required: ["connected_account_id"],
|