@seamapi/types 1.206.0 → 1.207.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 +8 -2
- package/dist/connect.cjs.map +1 -1
- package/dist/connect.d.cts +4 -0
- package/lib/seam/connect/openapi.d.ts +3 -0
- package/lib/seam/connect/openapi.js +7 -1
- package/lib/seam/connect/openapi.js.map +1 -1
- package/lib/seam/connect/route-types.d.ts +1 -0
- package/package.json +1 -1
- package/src/lib/seam/connect/openapi.ts +9 -1
- package/src/lib/seam/connect/route-types.ts +1 -0
|
@@ -2817,6 +2817,7 @@ export interface Routes {
|
|
|
2817
2817
|
queryParams: {};
|
|
2818
2818
|
jsonBody: {};
|
|
2819
2819
|
commonParams: {
|
|
2820
|
+
/** ID of the connected account by which to filter the list of returned access control systems. */
|
|
2820
2821
|
connected_account_id?: string | undefined;
|
|
2821
2822
|
};
|
|
2822
2823
|
formData: {};
|
package/package.json
CHANGED
|
@@ -6720,13 +6720,20 @@ export default {
|
|
|
6720
6720
|
},
|
|
6721
6721
|
'/acs/systems/list': {
|
|
6722
6722
|
post: {
|
|
6723
|
+
description:
|
|
6724
|
+
'Returns a list of all [access control systems](https://docs.seam.co/latest/capability-guides/access-systems).\n\nTo filter the list of returned access control systems by a specific connected account ID, include the \n`connected_account_id` in the request body. If you omit the `connected_account_id` parameter, the \nresponse includes all access control systems connected to your workspace.',
|
|
6723
6725
|
operationId: 'acsSystemsListPost',
|
|
6724
6726
|
requestBody: {
|
|
6725
6727
|
content: {
|
|
6726
6728
|
'application/json': {
|
|
6727
6729
|
schema: {
|
|
6728
6730
|
properties: {
|
|
6729
|
-
connected_account_id: {
|
|
6731
|
+
connected_account_id: {
|
|
6732
|
+
description:
|
|
6733
|
+
'ID of the connected account by which to filter the list of returned access control systems.',
|
|
6734
|
+
format: 'uuid',
|
|
6735
|
+
type: 'string',
|
|
6736
|
+
},
|
|
6730
6737
|
},
|
|
6731
6738
|
type: 'object',
|
|
6732
6739
|
},
|
|
@@ -6766,6 +6773,7 @@ export default {
|
|
|
6766
6773
|
'x-fern-sdk-group-name': ['acs', 'systems'],
|
|
6767
6774
|
'x-fern-sdk-method-name': 'list',
|
|
6768
6775
|
'x-fern-sdk-return-value': 'acs_systems',
|
|
6776
|
+
'x-title': 'List ACS Systems',
|
|
6769
6777
|
},
|
|
6770
6778
|
},
|
|
6771
6779
|
'/acs/systems/list_compatible_credential_manager_acs_systems': {
|
|
@@ -3185,6 +3185,7 @@ export interface Routes {
|
|
|
3185
3185
|
queryParams: {}
|
|
3186
3186
|
jsonBody: {}
|
|
3187
3187
|
commonParams: {
|
|
3188
|
+
/** ID of the connected account by which to filter the list of returned access control systems. */
|
|
3188
3189
|
connected_account_id?: string | undefined
|
|
3189
3190
|
}
|
|
3190
3191
|
formData: {}
|