@seamapi/types 1.441.2 → 1.442.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 +41 -0
- package/dist/connect.cjs.map +1 -1
- package/dist/connect.d.cts +52 -1
- package/dist/index.cjs +41 -0
- package/dist/index.cjs.map +1 -1
- package/lib/seam/connect/openapi.d.ts +46 -0
- package/lib/seam/connect/openapi.js +41 -0
- package/lib/seam/connect/openapi.js.map +1 -1
- package/lib/seam/connect/route-types.d.ts +6 -1
- package/package.json +1 -1
- package/src/lib/seam/connect/openapi.ts +45 -0
- package/src/lib/seam/connect/route-types.ts +6 -1
package/dist/connect.cjs
CHANGED
|
@@ -34627,6 +34627,15 @@ var openapi_default = {
|
|
|
34627
34627
|
items: { format: "uuid", type: "string" },
|
|
34628
34628
|
type: "array"
|
|
34629
34629
|
}
|
|
34630
|
+
},
|
|
34631
|
+
{
|
|
34632
|
+
in: "query",
|
|
34633
|
+
name: "search",
|
|
34634
|
+
schema: {
|
|
34635
|
+
description: "String for which to search. Filters returned entrances to include all records that satisfy a partial match using `display_name`.",
|
|
34636
|
+
minLength: 1,
|
|
34637
|
+
type: "string"
|
|
34638
|
+
}
|
|
34630
34639
|
}
|
|
34631
34640
|
],
|
|
34632
34641
|
responses: {
|
|
@@ -34710,6 +34719,11 @@ var openapi_default = {
|
|
|
34710
34719
|
type: "string",
|
|
34711
34720
|
"x-deprecated": "Use `space_id`."
|
|
34712
34721
|
},
|
|
34722
|
+
search: {
|
|
34723
|
+
description: "String for which to search. Filters returned entrances to include all records that satisfy a partial match using `display_name`.",
|
|
34724
|
+
minLength: 1,
|
|
34725
|
+
type: "string"
|
|
34726
|
+
},
|
|
34713
34727
|
space_id: {
|
|
34714
34728
|
description: "ID of the space for which you want to list entrances.",
|
|
34715
34729
|
format: "uuid",
|
|
@@ -49023,6 +49037,17 @@ var openapi_default = {
|
|
|
49023
49037
|
get: {
|
|
49024
49038
|
description: "Returns a list of all spaces.",
|
|
49025
49039
|
operationId: "spacesListGet",
|
|
49040
|
+
parameters: [
|
|
49041
|
+
{
|
|
49042
|
+
in: "query",
|
|
49043
|
+
name: "search",
|
|
49044
|
+
schema: {
|
|
49045
|
+
description: "String for which to search. Filters returned spaces to include all records that satisfy a partial match using `name`.",
|
|
49046
|
+
minLength: 1,
|
|
49047
|
+
type: "string"
|
|
49048
|
+
}
|
|
49049
|
+
}
|
|
49050
|
+
],
|
|
49026
49051
|
responses: {
|
|
49027
49052
|
200: {
|
|
49028
49053
|
content: {
|
|
@@ -49062,6 +49087,22 @@ var openapi_default = {
|
|
|
49062
49087
|
post: {
|
|
49063
49088
|
description: "Returns a list of all spaces.",
|
|
49064
49089
|
operationId: "spacesListPost",
|
|
49090
|
+
requestBody: {
|
|
49091
|
+
content: {
|
|
49092
|
+
"application/json": {
|
|
49093
|
+
schema: {
|
|
49094
|
+
properties: {
|
|
49095
|
+
search: {
|
|
49096
|
+
description: "String for which to search. Filters returned spaces to include all records that satisfy a partial match using `name`.",
|
|
49097
|
+
minLength: 1,
|
|
49098
|
+
type: "string"
|
|
49099
|
+
}
|
|
49100
|
+
},
|
|
49101
|
+
type: "object"
|
|
49102
|
+
}
|
|
49103
|
+
}
|
|
49104
|
+
}
|
|
49105
|
+
},
|
|
49065
49106
|
responses: {
|
|
49066
49107
|
200: {
|
|
49067
49108
|
content: {
|