@seamapi/types 1.211.0 → 1.212.1
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 +2 -0
- package/dist/connect.cjs.map +1 -1
- package/dist/connect.d.cts +6 -0
- package/lib/seam/connect/openapi.d.ts +5 -0
- package/lib/seam/connect/openapi.js +2 -0
- 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 +2 -0
- package/src/lib/seam/connect/route-types.ts +1 -0
|
@@ -11001,6 +11001,7 @@ export interface Routes {
|
|
|
11001
11001
|
jsonBody: {};
|
|
11002
11002
|
commonParams: {
|
|
11003
11003
|
owner_user_identity_id?: string | undefined;
|
|
11004
|
+
acs_credential_id?: string | undefined;
|
|
11004
11005
|
};
|
|
11005
11006
|
formData: {};
|
|
11006
11007
|
jsonResponse: {
|
package/package.json
CHANGED
|
@@ -6795,6 +6795,7 @@ export default {
|
|
|
6795
6795
|
'x-fern-sdk-group-name': ['acs', 'systems'],
|
|
6796
6796
|
'x-fern-sdk-method-name': 'list',
|
|
6797
6797
|
'x-fern-sdk-return-value': 'acs_systems',
|
|
6798
|
+
'x-response-key': 'acs_systems',
|
|
6798
6799
|
'x-title': 'List ACS Systems',
|
|
6799
6800
|
},
|
|
6800
6801
|
},
|
|
@@ -11066,6 +11067,7 @@ export default {
|
|
|
11066
11067
|
'application/json': {
|
|
11067
11068
|
schema: {
|
|
11068
11069
|
properties: {
|
|
11070
|
+
acs_credential_id: { format: 'uuid', type: 'string' },
|
|
11069
11071
|
owner_user_identity_id: { format: 'uuid', type: 'string' },
|
|
11070
11072
|
},
|
|
11071
11073
|
type: 'object',
|
|
@@ -14451,6 +14451,7 @@ export interface Routes {
|
|
|
14451
14451
|
jsonBody: {}
|
|
14452
14452
|
commonParams: {
|
|
14453
14453
|
owner_user_identity_id?: string | undefined
|
|
14454
|
+
acs_credential_id?: string | undefined
|
|
14454
14455
|
}
|
|
14455
14456
|
formData: {}
|
|
14456
14457
|
jsonResponse: {
|