@seamapi/types 1.786.0 → 1.787.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 +42 -0
- package/dist/connect.cjs.map +1 -1
- package/dist/connect.d.cts +63 -0
- package/dist/index.cjs +42 -0
- package/dist/index.cjs.map +1 -1
- package/lib/seam/connect/openapi.d.ts +59 -0
- package/lib/seam/connect/openapi.js +42 -0
- package/lib/seam/connect/openapi.js.map +1 -1
- package/lib/seam/connect/route-types.d.ts +4 -0
- package/package.json +1 -1
- package/src/lib/seam/connect/openapi.ts +46 -0
- package/src/lib/seam/connect/route-types.ts +4 -0
package/dist/connect.cjs
CHANGED
|
@@ -70275,6 +70275,31 @@ var openapi_default = {
|
|
|
70275
70275
|
type: "string"
|
|
70276
70276
|
}
|
|
70277
70277
|
},
|
|
70278
|
+
{
|
|
70279
|
+
in: "query",
|
|
70280
|
+
name: "created_after",
|
|
70281
|
+
schema: {
|
|
70282
|
+
description: "Timestamp by which to limit returned reservations. Returns reservations created after this timestamp.",
|
|
70283
|
+
format: "date-time",
|
|
70284
|
+
type: "string"
|
|
70285
|
+
}
|
|
70286
|
+
},
|
|
70287
|
+
{
|
|
70288
|
+
in: "query",
|
|
70289
|
+
name: "between",
|
|
70290
|
+
schema: {
|
|
70291
|
+
description: "Lower and upper timestamps to define an exclusive interval containing the reservations that you want to list.",
|
|
70292
|
+
items: {
|
|
70293
|
+
oneOf: [
|
|
70294
|
+
{ type: "string" },
|
|
70295
|
+
{ format: "date-time", type: "string" }
|
|
70296
|
+
]
|
|
70297
|
+
},
|
|
70298
|
+
maxItems: 2,
|
|
70299
|
+
minItems: 2,
|
|
70300
|
+
type: "array"
|
|
70301
|
+
}
|
|
70302
|
+
},
|
|
70278
70303
|
{
|
|
70279
70304
|
in: "query",
|
|
70280
70305
|
name: "search",
|
|
@@ -70527,6 +70552,23 @@ var openapi_default = {
|
|
|
70527
70552
|
"application/json": {
|
|
70528
70553
|
schema: {
|
|
70529
70554
|
properties: {
|
|
70555
|
+
between: {
|
|
70556
|
+
description: "Lower and upper timestamps to define an exclusive interval containing the reservations that you want to list.",
|
|
70557
|
+
items: {
|
|
70558
|
+
oneOf: [
|
|
70559
|
+
{ type: "string" },
|
|
70560
|
+
{ format: "date-time", type: "string" }
|
|
70561
|
+
]
|
|
70562
|
+
},
|
|
70563
|
+
maxItems: 2,
|
|
70564
|
+
minItems: 2,
|
|
70565
|
+
type: "array"
|
|
70566
|
+
},
|
|
70567
|
+
created_after: {
|
|
70568
|
+
description: "Timestamp by which to limit returned reservations. Returns reservations created after this timestamp.",
|
|
70569
|
+
format: "date-time",
|
|
70570
|
+
type: "string"
|
|
70571
|
+
},
|
|
70530
70572
|
created_before: {
|
|
70531
70573
|
description: "Timestamp by which to limit returned reservations. Returns reservations created before this timestamp.",
|
|
70532
70574
|
format: "date-time",
|