@seamapi/types 1.608.0 → 1.609.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 +24 -0
- package/dist/index.cjs +14 -0
- package/dist/index.cjs.map +1 -1
- package/lib/seam/connect/openapi.d.ts +22 -0
- 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.cjs
CHANGED
|
@@ -54903,6 +54903,15 @@ var openapi_default = {
|
|
|
54903
54903
|
type: "string"
|
|
54904
54904
|
}
|
|
54905
54905
|
},
|
|
54906
|
+
{
|
|
54907
|
+
in: "query",
|
|
54908
|
+
name: "search",
|
|
54909
|
+
schema: {
|
|
54910
|
+
description: "String for which to search. Filters returned reservations to include all records that satisfy a partial match using `reservation_id`, `reservation_key`, `name`, `guest_name`, or space names.",
|
|
54911
|
+
minLength: 1,
|
|
54912
|
+
type: "string"
|
|
54913
|
+
}
|
|
54914
|
+
},
|
|
54906
54915
|
{
|
|
54907
54916
|
in: "query",
|
|
54908
54917
|
name: "page_cursor",
|
|
@@ -55019,6 +55028,11 @@ var openapi_default = {
|
|
|
55019
55028
|
nullable: true,
|
|
55020
55029
|
type: "string"
|
|
55021
55030
|
},
|
|
55031
|
+
search: {
|
|
55032
|
+
description: "String for which to search. Filters returned reservations to include all records that satisfy a partial match using `reservation_id`, `reservation_key`, `name`, `guest_name`, or space names.",
|
|
55033
|
+
minLength: 1,
|
|
55034
|
+
type: "string"
|
|
55035
|
+
},
|
|
55022
55036
|
space_id: {
|
|
55023
55037
|
description: "Filter reservations by space ID (UUID).",
|
|
55024
55038
|
format: "uuid",
|