@seamapi/types 1.355.0 → 1.356.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 +12 -1
- package/dist/connect.cjs.map +1 -1
- package/dist/connect.d.cts +11 -2
- package/lib/seam/connect/openapi.d.ts +7 -0
- package/lib/seam/connect/openapi.js +12 -1
- package/lib/seam/connect/openapi.js.map +1 -1
- package/lib/seam/connect/route-types.d.ts +4 -2
- package/package.json +1 -1
- package/src/lib/seam/connect/openapi.ts +12 -1
- package/src/lib/seam/connect/route-types.ts +4 -2
package/dist/connect.cjs
CHANGED
|
@@ -21192,6 +21192,7 @@ var openapi_default = {
|
|
|
21192
21192
|
},
|
|
21193
21193
|
search: {
|
|
21194
21194
|
description: "String to partial match between full_name, phone_number and email_address.",
|
|
21195
|
+
minLength: 1,
|
|
21195
21196
|
type: "string"
|
|
21196
21197
|
},
|
|
21197
21198
|
user_identity_email_address: {
|
|
@@ -21235,9 +21236,19 @@ var openapi_default = {
|
|
|
21235
21236
|
description: "Opaque value that can be used to select the next page of results via the `page_cursor` parameter.",
|
|
21236
21237
|
nullable: true,
|
|
21237
21238
|
type: "string"
|
|
21239
|
+
},
|
|
21240
|
+
next_page_url: {
|
|
21241
|
+
description: "URL to get the next page of results.",
|
|
21242
|
+
format: "uri",
|
|
21243
|
+
nullable: true,
|
|
21244
|
+
type: "string"
|
|
21238
21245
|
}
|
|
21239
21246
|
},
|
|
21240
|
-
required: [
|
|
21247
|
+
required: [
|
|
21248
|
+
"next_page_cursor",
|
|
21249
|
+
"has_next_page",
|
|
21250
|
+
"next_page_url"
|
|
21251
|
+
],
|
|
21241
21252
|
type: "object"
|
|
21242
21253
|
}
|
|
21243
21254
|
},
|