@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
|
@@ -69053,15 +69053,23 @@ declare const _default: {
|
|
|
69053
69053
|
};
|
|
69054
69054
|
};
|
|
69055
69055
|
security: ({
|
|
69056
|
+
client_session: never[];
|
|
69057
|
+
api_key?: never;
|
|
69058
|
+
pat_with_workspace?: never;
|
|
69059
|
+
console_session_with_workspace?: never;
|
|
69060
|
+
} | {
|
|
69056
69061
|
api_key: never[];
|
|
69062
|
+
client_session?: never;
|
|
69057
69063
|
pat_with_workspace?: never;
|
|
69058
69064
|
console_session_with_workspace?: never;
|
|
69059
69065
|
} | {
|
|
69060
69066
|
pat_with_workspace: never[];
|
|
69067
|
+
client_session?: never;
|
|
69061
69068
|
api_key?: never;
|
|
69062
69069
|
console_session_with_workspace?: never;
|
|
69063
69070
|
} | {
|
|
69064
69071
|
console_session_with_workspace: never[];
|
|
69072
|
+
client_session?: never;
|
|
69065
69073
|
api_key?: never;
|
|
69066
69074
|
pat_with_workspace?: never;
|
|
69067
69075
|
})[];
|
|
@@ -69132,15 +69140,23 @@ declare const _default: {
|
|
|
69132
69140
|
};
|
|
69133
69141
|
};
|
|
69134
69142
|
security: ({
|
|
69143
|
+
client_session: never[];
|
|
69144
|
+
api_key?: never;
|
|
69145
|
+
pat_with_workspace?: never;
|
|
69146
|
+
console_session_with_workspace?: never;
|
|
69147
|
+
} | {
|
|
69135
69148
|
api_key: never[];
|
|
69149
|
+
client_session?: never;
|
|
69136
69150
|
pat_with_workspace?: never;
|
|
69137
69151
|
console_session_with_workspace?: never;
|
|
69138
69152
|
} | {
|
|
69139
69153
|
pat_with_workspace: never[];
|
|
69154
|
+
client_session?: never;
|
|
69140
69155
|
api_key?: never;
|
|
69141
69156
|
console_session_with_workspace?: never;
|
|
69142
69157
|
} | {
|
|
69143
69158
|
console_session_with_workspace: never[];
|
|
69159
|
+
client_session?: never;
|
|
69144
69160
|
api_key?: never;
|
|
69145
69161
|
pat_with_workspace?: never;
|
|
69146
69162
|
})[];
|
|
@@ -72630,7 +72630,7 @@ export default {
|
|
|
72630
72630
|
},
|
|
72631
72631
|
'/user_identities/list_accessible_devices': {
|
|
72632
72632
|
get: {
|
|
72633
|
-
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).',
|
|
72633
|
+
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.',
|
|
72634
72634
|
operationId: 'userIdentitiesListAccessibleDevicesGet',
|
|
72635
72635
|
parameters: [
|
|
72636
72636
|
{
|
|
@@ -72673,6 +72673,7 @@ export default {
|
|
|
72673
72673
|
401: { description: 'Unauthorized' },
|
|
72674
72674
|
},
|
|
72675
72675
|
security: [
|
|
72676
|
+
{ client_session: [] },
|
|
72676
72677
|
{ api_key: [] },
|
|
72677
72678
|
{ pat_with_workspace: [] },
|
|
72678
72679
|
{ console_session_with_workspace: [] },
|
|
@@ -72686,7 +72687,7 @@ export default {
|
|
|
72686
72687
|
'x-title': 'List Accessible Devices for a User Identity',
|
|
72687
72688
|
},
|
|
72688
72689
|
post: {
|
|
72689
|
-
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).',
|
|
72690
|
+
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.',
|
|
72690
72691
|
operationId: 'userIdentitiesListAccessibleDevicesPost',
|
|
72691
72692
|
requestBody: {
|
|
72692
72693
|
content: {
|
|
@@ -72734,6 +72735,7 @@ export default {
|
|
|
72734
72735
|
401: { description: 'Unauthorized' },
|
|
72735
72736
|
},
|
|
72736
72737
|
security: [
|
|
72738
|
+
{ client_session: [] },
|
|
72737
72739
|
{ api_key: [] },
|
|
72738
72740
|
{ pat_with_workspace: [] },
|
|
72739
72741
|
{ console_session_with_workspace: [] },
|