@seamapi/types 1.781.0 → 1.782.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 +34 -2
- package/dist/connect.cjs.map +1 -1
- package/dist/connect.d.cts +62 -0
- package/dist/index.cjs +34 -2
- package/dist/index.cjs.map +1 -1
- package/lib/seam/connect/openapi.d.ts +49 -0
- package/lib/seam/connect/openapi.js +34 -2
- package/lib/seam/connect/openapi.js.map +1 -1
- package/lib/seam/connect/route-types.d.ts +13 -0
- package/package.json +1 -1
- package/src/lib/seam/connect/openapi.ts +37 -2
- package/src/lib/seam/connect/route-types.ts +13 -0
package/dist/connect.cjs
CHANGED
|
@@ -74066,6 +74066,25 @@ var openapi_default = {
|
|
|
74066
74066
|
description: "Filter spaces by space_key.",
|
|
74067
74067
|
type: "string"
|
|
74068
74068
|
}
|
|
74069
|
+
},
|
|
74070
|
+
{
|
|
74071
|
+
in: "query",
|
|
74072
|
+
name: "limit",
|
|
74073
|
+
schema: {
|
|
74074
|
+
default: 500,
|
|
74075
|
+
description: "Maximum number of records to return per page.",
|
|
74076
|
+
format: "float",
|
|
74077
|
+
type: "number"
|
|
74078
|
+
}
|
|
74079
|
+
},
|
|
74080
|
+
{
|
|
74081
|
+
in: "query",
|
|
74082
|
+
name: "page_cursor",
|
|
74083
|
+
schema: {
|
|
74084
|
+
description: "Identifies the specific page of results to return, obtained from the previous page's `next_page_cursor`.",
|
|
74085
|
+
nullable: true,
|
|
74086
|
+
type: "string"
|
|
74087
|
+
}
|
|
74069
74088
|
}
|
|
74070
74089
|
],
|
|
74071
74090
|
responses: {
|
|
@@ -74075,12 +74094,13 @@ var openapi_default = {
|
|
|
74075
74094
|
schema: {
|
|
74076
74095
|
properties: {
|
|
74077
74096
|
ok: { type: "boolean" },
|
|
74097
|
+
pagination: { $ref: "#/components/schemas/pagination" },
|
|
74078
74098
|
spaces: {
|
|
74079
74099
|
items: { $ref: "#/components/schemas/space" },
|
|
74080
74100
|
type: "array"
|
|
74081
74101
|
}
|
|
74082
74102
|
},
|
|
74083
|
-
required: ["spaces", "ok"],
|
|
74103
|
+
required: ["spaces", "pagination", "ok"],
|
|
74084
74104
|
type: "object"
|
|
74085
74105
|
}
|
|
74086
74106
|
}
|
|
@@ -74124,6 +74144,17 @@ var openapi_default = {
|
|
|
74124
74144
|
description: "Customer key for which you want to list spaces.",
|
|
74125
74145
|
type: "string"
|
|
74126
74146
|
},
|
|
74147
|
+
limit: {
|
|
74148
|
+
default: 500,
|
|
74149
|
+
description: "Maximum number of records to return per page.",
|
|
74150
|
+
format: "float",
|
|
74151
|
+
type: "number"
|
|
74152
|
+
},
|
|
74153
|
+
page_cursor: {
|
|
74154
|
+
description: "Identifies the specific page of results to return, obtained from the previous page's `next_page_cursor`.",
|
|
74155
|
+
nullable: true,
|
|
74156
|
+
type: "string"
|
|
74157
|
+
},
|
|
74127
74158
|
search: {
|
|
74128
74159
|
description: "String for which to search. Filters returned spaces to include all records that satisfy a partial match using `name`.",
|
|
74129
74160
|
minLength: 1,
|
|
@@ -74146,12 +74177,13 @@ var openapi_default = {
|
|
|
74146
74177
|
schema: {
|
|
74147
74178
|
properties: {
|
|
74148
74179
|
ok: { type: "boolean" },
|
|
74180
|
+
pagination: { $ref: "#/components/schemas/pagination" },
|
|
74149
74181
|
spaces: {
|
|
74150
74182
|
items: { $ref: "#/components/schemas/space" },
|
|
74151
74183
|
type: "array"
|
|
74152
74184
|
}
|
|
74153
74185
|
},
|
|
74154
|
-
required: ["spaces", "ok"],
|
|
74186
|
+
required: ["spaces", "pagination", "ok"],
|
|
74155
74187
|
type: "object"
|
|
74156
74188
|
}
|
|
74157
74189
|
}
|