@seamapi/types 1.792.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/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/openapi.ts +4 -2
package/package.json
CHANGED
|
@@ -78559,7 +78559,7 @@ export default {
|
|
|
78559
78559
|
'/user_identities/list_accessible_devices': {
|
|
78560
78560
|
get: {
|
|
78561
78561
|
description:
|
|
78562
|
-
'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).',
|
|
78562
|
+
'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.',
|
|
78563
78563
|
operationId: 'userIdentitiesListAccessibleDevicesGet',
|
|
78564
78564
|
parameters: [
|
|
78565
78565
|
{
|
|
@@ -78603,6 +78603,7 @@ export default {
|
|
|
78603
78603
|
401: { description: 'Unauthorized' },
|
|
78604
78604
|
},
|
|
78605
78605
|
security: [
|
|
78606
|
+
{ client_session: [] },
|
|
78606
78607
|
{ api_key: [] },
|
|
78607
78608
|
{ pat_with_workspace: [] },
|
|
78608
78609
|
{ console_session_with_workspace: [] },
|
|
@@ -78617,7 +78618,7 @@ export default {
|
|
|
78617
78618
|
},
|
|
78618
78619
|
post: {
|
|
78619
78620
|
description:
|
|
78620
|
-
'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).',
|
|
78621
|
+
'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.',
|
|
78621
78622
|
operationId: 'userIdentitiesListAccessibleDevicesPost',
|
|
78622
78623
|
requestBody: {
|
|
78623
78624
|
content: {
|
|
@@ -78666,6 +78667,7 @@ export default {
|
|
|
78666
78667
|
401: { description: 'Unauthorized' },
|
|
78667
78668
|
},
|
|
78668
78669
|
security: [
|
|
78670
|
+
{ client_session: [] },
|
|
78669
78671
|
{ api_key: [] },
|
|
78670
78672
|
{ pat_with_workspace: [] },
|
|
78671
78673
|
{ console_session_with_workspace: [] },
|