@seamapi/types 1.791.0 → 1.793.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 +4 -2
- package/dist/connect.cjs.map +1 -1
- package/dist/connect.d.cts +16 -0
- package/dist/index.cjs +4 -2
- package/dist/index.cjs.map +1 -1
- package/lib/seam/connect/models/access-codes/index.d.ts +1 -0
- package/lib/seam/connect/models/access-codes/index.js +1 -0
- package/lib/seam/connect/models/access-codes/index.js.map +1 -1
- package/lib/seam/connect/models/access-codes/pending-mutations.d.ts +410 -0
- package/lib/seam/connect/models/access-codes/pending-mutations.js +100 -0
- package/lib/seam/connect/models/access-codes/pending-mutations.js.map +1 -0
- package/lib/seam/connect/models/acs/acs-access-groups/pending-mutations.d.ts +22 -22
- package/lib/seam/connect/openapi.d.ts +16 -0
- package/lib/seam/connect/openapi.js +4 -2
- package/lib/seam/connect/openapi.js.map +1 -1
- package/package.json +1 -1
- package/src/lib/seam/connect/models/access-codes/index.ts +1 -0
- package/src/lib/seam/connect/models/access-codes/pending-mutations.ts +136 -0
- package/src/lib/seam/connect/openapi.ts +4 -2
package/dist/connect.cjs
CHANGED
|
@@ -79340,7 +79340,7 @@ var openapi_default = {
|
|
|
79340
79340
|
},
|
|
79341
79341
|
"/user_identities/list_accessible_devices": {
|
|
79342
79342
|
get: {
|
|
79343
|
-
description: "Returns a list of all [devices](https://docs.seam.co/latest/core-concepts/devices) associated with a specified [user identity](https://docs.seam.co/latest/capability-guides/mobile-access/managing-mobile-app-user-accounts-with-user-identities#what-is-a-user-identity).",
|
|
79343
|
+
description: "Returns a list of all [devices](https://docs.seam.co/latest/core-concepts/devices) associated with a specified [user identity](https://docs.seam.co/latest/capability-guides/mobile-access/managing-mobile-app-user-accounts-with-user-identities#what-is-a-user-identity). This includes devices derived from the access grants assigned to the user identity and devices directly linked to the user identity.",
|
|
79344
79344
|
operationId: "userIdentitiesListAccessibleDevicesGet",
|
|
79345
79345
|
parameters: [
|
|
79346
79346
|
{
|
|
@@ -79383,6 +79383,7 @@ var openapi_default = {
|
|
|
79383
79383
|
401: { description: "Unauthorized" }
|
|
79384
79384
|
},
|
|
79385
79385
|
security: [
|
|
79386
|
+
{ client_session: [] },
|
|
79386
79387
|
{ api_key: [] },
|
|
79387
79388
|
{ pat_with_workspace: [] },
|
|
79388
79389
|
{ console_session_with_workspace: [] }
|
|
@@ -79396,7 +79397,7 @@ var openapi_default = {
|
|
|
79396
79397
|
"x-title": "List Accessible Devices for a User Identity"
|
|
79397
79398
|
},
|
|
79398
79399
|
post: {
|
|
79399
|
-
description: "Returns a list of all [devices](https://docs.seam.co/latest/core-concepts/devices) associated with a specified [user identity](https://docs.seam.co/latest/capability-guides/mobile-access/managing-mobile-app-user-accounts-with-user-identities#what-is-a-user-identity).",
|
|
79400
|
+
description: "Returns a list of all [devices](https://docs.seam.co/latest/core-concepts/devices) associated with a specified [user identity](https://docs.seam.co/latest/capability-guides/mobile-access/managing-mobile-app-user-accounts-with-user-identities#what-is-a-user-identity). This includes devices derived from the access grants assigned to the user identity and devices directly linked to the user identity.",
|
|
79400
79401
|
operationId: "userIdentitiesListAccessibleDevicesPost",
|
|
79401
79402
|
requestBody: {
|
|
79402
79403
|
content: {
|
|
@@ -79444,6 +79445,7 @@ var openapi_default = {
|
|
|
79444
79445
|
401: { description: "Unauthorized" }
|
|
79445
79446
|
},
|
|
79446
79447
|
security: [
|
|
79448
|
+
{ client_session: [] },
|
|
79447
79449
|
{ api_key: [] },
|
|
79448
79450
|
{ pat_with_workspace: [] },
|
|
79449
79451
|
{ console_session_with_workspace: [] }
|