@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
package/dist/connect.d.cts
CHANGED
|
@@ -15303,6 +15303,7 @@ declare const _default: {
|
|
|
15303
15303
|
};
|
|
15304
15304
|
'/acs/systems/list': {
|
|
15305
15305
|
post: {
|
|
15306
|
+
description: string;
|
|
15306
15307
|
operationId: string;
|
|
15307
15308
|
requestBody: {
|
|
15308
15309
|
content: {
|
|
@@ -15310,6 +15311,7 @@ declare const _default: {
|
|
|
15310
15311
|
schema: {
|
|
15311
15312
|
properties: {
|
|
15312
15313
|
connected_account_id: {
|
|
15314
|
+
description: string;
|
|
15313
15315
|
format: string;
|
|
15314
15316
|
type: string;
|
|
15315
15317
|
};
|
|
@@ -15375,6 +15377,7 @@ declare const _default: {
|
|
|
15375
15377
|
'x-fern-sdk-group-name': string[];
|
|
15376
15378
|
'x-fern-sdk-method-name': string;
|
|
15377
15379
|
'x-fern-sdk-return-value': string;
|
|
15380
|
+
'x-title': string;
|
|
15378
15381
|
};
|
|
15379
15382
|
};
|
|
15380
15383
|
'/acs/systems/list_compatible_credential_manager_acs_systems': {
|
|
@@ -15823,6 +15826,15 @@ declare const _default: {
|
|
|
15823
15826
|
format: string;
|
|
15824
15827
|
type: string;
|
|
15825
15828
|
};
|
|
15829
|
+
created_before: {
|
|
15830
|
+
format: string;
|
|
15831
|
+
type: string;
|
|
15832
|
+
};
|
|
15833
|
+
limit: {
|
|
15834
|
+
default: number;
|
|
15835
|
+
format: string;
|
|
15836
|
+
type: string;
|
|
15837
|
+
};
|
|
15826
15838
|
user_identity_email_address: {
|
|
15827
15839
|
type: string;
|
|
15828
15840
|
};
|
|
@@ -27302,6 +27314,7 @@ interface Routes {
|
|
|
27302
27314
|
queryParams: {};
|
|
27303
27315
|
jsonBody: {};
|
|
27304
27316
|
commonParams: {
|
|
27317
|
+
/** ID of the connected account by which to filter the list of returned access control systems. */
|
|
27305
27318
|
connected_account_id?: string | undefined;
|
|
27306
27319
|
};
|
|
27307
27320
|
formData: {};
|
|
@@ -27547,6 +27560,8 @@ interface Routes {
|
|
|
27547
27560
|
user_identity_phone_number?: string | undefined;
|
|
27548
27561
|
user_identity_email_address?: string | undefined;
|
|
27549
27562
|
acs_system_id?: string | undefined;
|
|
27563
|
+
limit?: number;
|
|
27564
|
+
created_before?: Date | undefined;
|
|
27550
27565
|
};
|
|
27551
27566
|
formData: {};
|
|
27552
27567
|
jsonResponse: {
|
|
@@ -7435,6 +7435,7 @@ declare const _default: {
|
|
|
7435
7435
|
};
|
|
7436
7436
|
'/acs/systems/list': {
|
|
7437
7437
|
post: {
|
|
7438
|
+
description: string;
|
|
7438
7439
|
operationId: string;
|
|
7439
7440
|
requestBody: {
|
|
7440
7441
|
content: {
|
|
@@ -7442,6 +7443,7 @@ declare const _default: {
|
|
|
7442
7443
|
schema: {
|
|
7443
7444
|
properties: {
|
|
7444
7445
|
connected_account_id: {
|
|
7446
|
+
description: string;
|
|
7445
7447
|
format: string;
|
|
7446
7448
|
type: string;
|
|
7447
7449
|
};
|
|
@@ -7507,6 +7509,7 @@ declare const _default: {
|
|
|
7507
7509
|
'x-fern-sdk-group-name': string[];
|
|
7508
7510
|
'x-fern-sdk-method-name': string;
|
|
7509
7511
|
'x-fern-sdk-return-value': string;
|
|
7512
|
+
'x-title': string;
|
|
7510
7513
|
};
|
|
7511
7514
|
};
|
|
7512
7515
|
'/acs/systems/list_compatible_credential_manager_acs_systems': {
|
|
@@ -7955,6 +7958,15 @@ declare const _default: {
|
|
|
7955
7958
|
format: string;
|
|
7956
7959
|
type: string;
|
|
7957
7960
|
};
|
|
7961
|
+
created_before: {
|
|
7962
|
+
format: string;
|
|
7963
|
+
type: string;
|
|
7964
|
+
};
|
|
7965
|
+
limit: {
|
|
7966
|
+
default: number;
|
|
7967
|
+
format: string;
|
|
7968
|
+
type: string;
|
|
7969
|
+
};
|
|
7958
7970
|
user_identity_email_address: {
|
|
7959
7971
|
type: string;
|
|
7960
7972
|
};
|
|
@@ -6621,13 +6621,18 @@ export default {
|
|
|
6621
6621
|
},
|
|
6622
6622
|
'/acs/systems/list': {
|
|
6623
6623
|
post: {
|
|
6624
|
+
description: '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.',
|
|
6624
6625
|
operationId: 'acsSystemsListPost',
|
|
6625
6626
|
requestBody: {
|
|
6626
6627
|
content: {
|
|
6627
6628
|
'application/json': {
|
|
6628
6629
|
schema: {
|
|
6629
6630
|
properties: {
|
|
6630
|
-
connected_account_id: {
|
|
6631
|
+
connected_account_id: {
|
|
6632
|
+
description: 'ID of the connected account by which to filter the list of returned access control systems.',
|
|
6633
|
+
format: 'uuid',
|
|
6634
|
+
type: 'string',
|
|
6635
|
+
},
|
|
6631
6636
|
},
|
|
6632
6637
|
type: 'object',
|
|
6633
6638
|
},
|
|
@@ -6667,6 +6672,7 @@ export default {
|
|
|
6667
6672
|
'x-fern-sdk-group-name': ['acs', 'systems'],
|
|
6668
6673
|
'x-fern-sdk-method-name': 'list',
|
|
6669
6674
|
'x-fern-sdk-return-value': 'acs_systems',
|
|
6675
|
+
'x-title': 'List ACS Systems',
|
|
6670
6676
|
},
|
|
6671
6677
|
},
|
|
6672
6678
|
'/acs/systems/list_compatible_credential_manager_acs_systems': {
|
|
@@ -6969,6 +6975,8 @@ export default {
|
|
|
6969
6975
|
schema: {
|
|
6970
6976
|
properties: {
|
|
6971
6977
|
acs_system_id: { format: 'uuid', type: 'string' },
|
|
6978
|
+
created_before: { format: 'date-time', type: 'string' },
|
|
6979
|
+
limit: { default: 500, format: 'float', type: 'number' },
|
|
6972
6980
|
user_identity_email_address: { type: 'string' },
|
|
6973
6981
|
user_identity_id: { format: 'uuid', type: 'string' },
|
|
6974
6982
|
user_identity_phone_number: { type: 'string' },
|