Skip to content

Commit effca69

Browse files
authored
feat: Sync with Seam API via 76c6ef0d3cdf18b16d76f513593e47d2342ec611 (#2601)
1 parent 0f82e0b commit effca69

File tree

2 files changed

+16
-0
lines changed

2 files changed

+16
-0
lines changed

src/lib/seam/connect/openapi.ts

Lines changed: 14 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -29900,6 +29900,15 @@ export default {
2990029900
description: 'Gets an Access Grant.',
2990129901
operationId: 'accessGrantsListGet',
2990229902
parameters: [
29903+
{
29904+
in: 'query',
29905+
name: 'access_grant_id',
29906+
schema: {
29907+
description: 'ID of the access grant to retrieve.',
29908+
format: 'uuid',
29909+
type: 'string',
29910+
},
29911+
},
2990329912
{
2990429913
in: 'query',
2990529914
name: 'customer_key',
@@ -30043,6 +30052,11 @@ export default {
3004330052
'application/json': {
3004430053
schema: {
3004530054
properties: {
30055+
access_grant_id: {
30056+
description: 'ID of the access grant to retrieve.',
30057+
format: 'uuid',
30058+
type: 'string',
30059+
},
3004630060
access_grant_key: {
3004730061
description: 'Filter Access Grants by access_grant_key.',
3004830062
type: 'string',

src/lib/seam/connect/route-types.ts

Lines changed: 2 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -13545,6 +13545,8 @@ export type Routes = {
1354513545
queryParams: {}
1354613546
jsonBody: {}
1354713547
commonParams: {
13548+
/** ID of the access grant to retrieve. */
13549+
access_grant_id?: string | undefined
1354813550
/** Customer key for which you want to list access grants. */
1354913551
customer_key?: string | undefined
1355013552
/** Numerical limit on the number of access grants to return. */

0 commit comments

Comments
 (0)