@seamapi/types 1.205.1 → 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 +10 -2
- package/dist/connect.cjs.map +1 -1
- package/dist/connect.d.cts +15 -0
- package/lib/seam/connect/openapi.d.ts +12 -0
- package/lib/seam/connect/openapi.js +9 -1
- package/lib/seam/connect/openapi.js.map +1 -1
- package/lib/seam/connect/route-types.d.ts +3 -0
- package/package.json +1 -1
- package/src/lib/seam/connect/openapi.ts +11 -1
- package/src/lib/seam/connect/route-types.ts +3 -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: {};
|
|
@@ -3062,6 +3063,8 @@ export interface Routes {
|
|
|
3062
3063
|
user_identity_phone_number?: string | undefined;
|
|
3063
3064
|
user_identity_email_address?: string | undefined;
|
|
3064
3065
|
acs_system_id?: string | undefined;
|
|
3066
|
+
limit?: number;
|
|
3067
|
+
created_before?: Date | undefined;
|
|
3065
3068
|
};
|
|
3066
3069
|
formData: {};
|
|
3067
3070
|
jsonResponse: {
|
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': {
|
|
@@ -7069,6 +7077,8 @@ export default {
|
|
|
7069
7077
|
schema: {
|
|
7070
7078
|
properties: {
|
|
7071
7079
|
acs_system_id: { format: 'uuid', type: 'string' },
|
|
7080
|
+
created_before: { format: 'date-time', type: 'string' },
|
|
7081
|
+
limit: { default: 500, format: 'float', type: 'number' },
|
|
7072
7082
|
user_identity_email_address: { type: 'string' },
|
|
7073
7083
|
user_identity_id: { format: 'uuid', type: 'string' },
|
|
7074
7084
|
user_identity_phone_number: { type: 'string' },
|
|
@@ -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: {}
|
|
@@ -3502,6 +3503,8 @@ export interface Routes {
|
|
|
3502
3503
|
user_identity_phone_number?: string | undefined
|
|
3503
3504
|
user_identity_email_address?: string | undefined
|
|
3504
3505
|
acs_system_id?: string | undefined
|
|
3506
|
+
limit?: number
|
|
3507
|
+
created_before?: Date | undefined
|
|
3505
3508
|
}
|
|
3506
3509
|
formData: {}
|
|
3507
3510
|
jsonResponse: {
|