@seamapi/types 1.62.0 → 1.63.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 +45 -0
- package/dist/connect.cjs.map +1 -1
- package/dist/connect.d.cts +86 -0
- package/lib/seam/connect/openapi.d.ts +74 -0
- package/lib/seam/connect/openapi.js +45 -0
- package/lib/seam/connect/openapi.js.map +1 -1
- package/lib/seam/connect/route-types.d.ts +12 -0
- package/package.json +1 -1
- package/src/lib/seam/connect/openapi.ts +45 -0
- package/src/lib/seam/connect/route-types.ts +12 -0
|
@@ -961,6 +961,18 @@ export interface Routes {
|
|
|
961
961
|
};
|
|
962
962
|
};
|
|
963
963
|
};
|
|
964
|
+
'/acs/entrances/grant_access': {
|
|
965
|
+
route: '/acs/entrances/grant_access';
|
|
966
|
+
method: 'POST';
|
|
967
|
+
queryParams: {};
|
|
968
|
+
jsonBody: {
|
|
969
|
+
acs_entrance_id: string;
|
|
970
|
+
acs_user_id: string;
|
|
971
|
+
};
|
|
972
|
+
commonParams: {};
|
|
973
|
+
formData: {};
|
|
974
|
+
jsonResponse: {};
|
|
975
|
+
};
|
|
964
976
|
'/acs/entrances/list': {
|
|
965
977
|
route: '/acs/entrances/list';
|
|
966
978
|
method: 'GET' | 'POST';
|
package/package.json
CHANGED
|
@@ -4488,6 +4488,51 @@ export default {
|
|
|
4488
4488
|
'x-fern-sdk-method-name': 'get',
|
|
4489
4489
|
},
|
|
4490
4490
|
},
|
|
4491
|
+
'/acs/entrances/grant_access': {
|
|
4492
|
+
post: {
|
|
4493
|
+
operationId: 'acsEntrancesGrantAccessPost',
|
|
4494
|
+
requestBody: {
|
|
4495
|
+
content: {
|
|
4496
|
+
'application/json': {
|
|
4497
|
+
schema: {
|
|
4498
|
+
properties: {
|
|
4499
|
+
acs_entrance_id: { format: 'uuid', type: 'string' },
|
|
4500
|
+
acs_user_id: { format: 'uuid', type: 'string' },
|
|
4501
|
+
},
|
|
4502
|
+
required: ['acs_entrance_id', 'acs_user_id'],
|
|
4503
|
+
type: 'object',
|
|
4504
|
+
},
|
|
4505
|
+
},
|
|
4506
|
+
},
|
|
4507
|
+
},
|
|
4508
|
+
responses: {
|
|
4509
|
+
200: {
|
|
4510
|
+
content: {
|
|
4511
|
+
'application/json': {
|
|
4512
|
+
schema: {
|
|
4513
|
+
properties: { ok: { type: 'boolean' } },
|
|
4514
|
+
required: ['ok'],
|
|
4515
|
+
type: 'object',
|
|
4516
|
+
},
|
|
4517
|
+
},
|
|
4518
|
+
},
|
|
4519
|
+
description: 'OK',
|
|
4520
|
+
},
|
|
4521
|
+
400: { description: 'Bad Request' },
|
|
4522
|
+
401: { description: 'Unauthorized' },
|
|
4523
|
+
},
|
|
4524
|
+
security: [
|
|
4525
|
+
{ api_key: [] },
|
|
4526
|
+
{ client_session: [] },
|
|
4527
|
+
{ pat_with_workspace: [] },
|
|
4528
|
+
{ console_session: [] },
|
|
4529
|
+
],
|
|
4530
|
+
summary: '/acs/entrances/grant_access',
|
|
4531
|
+
tags: [],
|
|
4532
|
+
'x-fern-sdk-group-name': ['acs', 'entrances'],
|
|
4533
|
+
'x-fern-sdk-method-name': 'grant_access',
|
|
4534
|
+
},
|
|
4535
|
+
},
|
|
4491
4536
|
'/acs/entrances/list': {
|
|
4492
4537
|
post: {
|
|
4493
4538
|
operationId: 'acsEntrancesListPost',
|
|
@@ -996,6 +996,18 @@ export interface Routes {
|
|
|
996
996
|
}
|
|
997
997
|
}
|
|
998
998
|
}
|
|
999
|
+
'/acs/entrances/grant_access': {
|
|
1000
|
+
route: '/acs/entrances/grant_access'
|
|
1001
|
+
method: 'POST'
|
|
1002
|
+
queryParams: {}
|
|
1003
|
+
jsonBody: {
|
|
1004
|
+
acs_entrance_id: string
|
|
1005
|
+
acs_user_id: string
|
|
1006
|
+
}
|
|
1007
|
+
commonParams: {}
|
|
1008
|
+
formData: {}
|
|
1009
|
+
jsonResponse: {}
|
|
1010
|
+
}
|
|
999
1011
|
'/acs/entrances/list': {
|
|
1000
1012
|
route: '/acs/entrances/list'
|
|
1001
1013
|
method: 'GET' | 'POST'
|