@seamapi/types 1.718.0 → 1.719.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 +30 -0
- package/dist/index.cjs +14 -0
- package/dist/index.cjs.map +1 -1
- package/lib/seam/connect/openapi.d.ts +28 -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
|
@@ -67419,6 +67419,15 @@ var openapi_default = {
|
|
|
67419
67419
|
description: "Returns a list of all [user identities](https://docs.seam.co/latest/capability-guides/mobile-access/managing-mobile-app-user-accounts-with-user-identities#what-is-a-user-identity).",
|
|
67420
67420
|
operationId: "userIdentitiesListGet",
|
|
67421
67421
|
parameters: [
|
|
67422
|
+
{
|
|
67423
|
+
in: "query",
|
|
67424
|
+
name: "user_identity_ids",
|
|
67425
|
+
schema: {
|
|
67426
|
+
description: "Array of user identity IDs by which to filter the list of user identities.",
|
|
67427
|
+
items: { format: "uuid", type: "string" },
|
|
67428
|
+
type: "array"
|
|
67429
|
+
}
|
|
67430
|
+
},
|
|
67422
67431
|
{
|
|
67423
67432
|
in: "query",
|
|
67424
67433
|
name: "search",
|
|
@@ -67536,6 +67545,11 @@ var openapi_default = {
|
|
|
67536
67545
|
search: {
|
|
67537
67546
|
description: "String for which to search. Filters returned user identities to include all records that satisfy a partial match using `full_name`, `phone_number`, `email_address` or `user_identity_id`.",
|
|
67538
67547
|
type: "string"
|
|
67548
|
+
},
|
|
67549
|
+
user_identity_ids: {
|
|
67550
|
+
description: "Array of user identity IDs by which to filter the list of user identities.",
|
|
67551
|
+
items: { format: "uuid", type: "string" },
|
|
67552
|
+
type: "array"
|
|
67539
67553
|
}
|
|
67540
67554
|
},
|
|
67541
67555
|
type: "object"
|