@seamapi/types 1.354.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 +16 -1
- package/dist/connect.cjs.map +1 -1
- package/dist/connect.d.cts +15 -0
- package/lib/seam/connect/openapi.d.ts +11 -0
- package/lib/seam/connect/openapi.js +16 -1
- 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 +17 -1
- package/src/lib/seam/connect/route-types.ts +4 -0
package/dist/connect.cjs
CHANGED
|
@@ -21190,6 +21190,11 @@ var openapi_default = {
|
|
|
21190
21190
|
nullable: true,
|
|
21191
21191
|
type: "string"
|
|
21192
21192
|
},
|
|
21193
|
+
search: {
|
|
21194
|
+
description: "String to partial match between full_name, phone_number and email_address.",
|
|
21195
|
+
minLength: 1,
|
|
21196
|
+
type: "string"
|
|
21197
|
+
},
|
|
21193
21198
|
user_identity_email_address: {
|
|
21194
21199
|
description: "Email address of the user identity for which you want to retrieve all `acs_user`s.",
|
|
21195
21200
|
type: "string"
|
|
@@ -21231,9 +21236,19 @@ var openapi_default = {
|
|
|
21231
21236
|
description: "Opaque value that can be used to select the next page of results via the `page_cursor` parameter.",
|
|
21232
21237
|
nullable: true,
|
|
21233
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"
|
|
21234
21245
|
}
|
|
21235
21246
|
},
|
|
21236
|
-
required: [
|
|
21247
|
+
required: [
|
|
21248
|
+
"next_page_cursor",
|
|
21249
|
+
"has_next_page",
|
|
21250
|
+
"next_page_url"
|
|
21251
|
+
],
|
|
21237
21252
|
type: "object"
|
|
21238
21253
|
}
|
|
21239
21254
|
},
|