@seamapi/types 1.845.0 → 1.846.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 +14 -0
- package/dist/connect.cjs.map +1 -1
- package/dist/connect.d.cts +2 -0
- package/dist/index.cjs +14 -0
- package/dist/index.cjs.map +1 -1
- package/lib/seam/connect/openapi.js +14 -0
- package/lib/seam/connect/openapi.js.map +1 -1
- package/lib/seam/connect/route-types.d.ts +2 -0
- package/package.json +1 -1
- package/src/lib/seam/connect/openapi.ts +16 -0
- package/src/lib/seam/connect/route-types.ts +2 -0
package/dist/connect.d.cts
CHANGED
|
@@ -132086,6 +132086,8 @@ type Routes = {
|
|
|
132086
132086
|
space_key?: string | undefined;
|
|
132087
132087
|
/** Filter reservations by space ID (UUID). */
|
|
132088
132088
|
space_id?: string | undefined;
|
|
132089
|
+
/** Filter reservations by the connected account whose connector discovered them. */
|
|
132090
|
+
connected_account_id?: string | undefined;
|
|
132089
132091
|
/** Maximum number of records to return per page. */
|
|
132090
132092
|
limit?: number;
|
|
132091
132093
|
/** Timestamp by which to limit returned reservations. Returns reservations created before this timestamp. */
|
package/dist/index.cjs
CHANGED
|
@@ -72223,6 +72223,15 @@ var openapi = {
|
|
|
72223
72223
|
type: "string"
|
|
72224
72224
|
}
|
|
72225
72225
|
},
|
|
72226
|
+
{
|
|
72227
|
+
in: "query",
|
|
72228
|
+
name: "connected_account_id",
|
|
72229
|
+
schema: {
|
|
72230
|
+
description: "Filter reservations by the connected account whose connector discovered them.",
|
|
72231
|
+
format: "uuid",
|
|
72232
|
+
type: "string"
|
|
72233
|
+
}
|
|
72234
|
+
},
|
|
72226
72235
|
{
|
|
72227
72236
|
in: "query",
|
|
72228
72237
|
name: "limit",
|
|
@@ -72538,6 +72547,11 @@ var openapi = {
|
|
|
72538
72547
|
minItems: 2,
|
|
72539
72548
|
type: "array"
|
|
72540
72549
|
},
|
|
72550
|
+
connected_account_id: {
|
|
72551
|
+
description: "Filter reservations by the connected account whose connector discovered them.",
|
|
72552
|
+
format: "uuid",
|
|
72553
|
+
type: "string"
|
|
72554
|
+
},
|
|
72541
72555
|
created_after: {
|
|
72542
72556
|
description: "Timestamp by which to limit returned reservations. Returns reservations created after this timestamp.",
|
|
72543
72557
|
format: "date-time",
|