@seamapi/types 1.863.0 → 1.865.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 +21 -0
- package/dist/connect.cjs.map +1 -1
- package/dist/connect.d.cts +22 -0
- package/dist/index.cjs +21 -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 +18 -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 +21 -0
- package/src/lib/seam/connect/route-types.ts +14 -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",
|
|
@@ -39901,6 +39908,15 @@ var openapi = {
|
|
|
39901
39908
|
type: "string"
|
|
39902
39909
|
}
|
|
39903
39910
|
},
|
|
39911
|
+
{
|
|
39912
|
+
in: "query",
|
|
39913
|
+
name: "device_id",
|
|
39914
|
+
schema: {
|
|
39915
|
+
description: "ID of the device by which you want to filter the list of Access Grants.",
|
|
39916
|
+
format: "uuid",
|
|
39917
|
+
type: "string"
|
|
39918
|
+
}
|
|
39919
|
+
},
|
|
39904
39920
|
{
|
|
39905
39921
|
in: "query",
|
|
39906
39922
|
name: "location_id",
|
|
@@ -40021,6 +40037,11 @@ var openapi = {
|
|
|
40021
40037
|
description: "Customer key for which you want to list access grants.",
|
|
40022
40038
|
type: "string"
|
|
40023
40039
|
},
|
|
40040
|
+
device_id: {
|
|
40041
|
+
description: "ID of the device by which you want to filter the list of Access Grants.",
|
|
40042
|
+
format: "uuid",
|
|
40043
|
+
type: "string"
|
|
40044
|
+
},
|
|
40024
40045
|
limit: {
|
|
40025
40046
|
default: 500,
|
|
40026
40047
|
description: "Numerical limit on the number of access grants to return.",
|