Skip to content
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
40 changes: 38 additions & 2 deletions src/lib/seam/connect/openapi.ts
Original file line number Diff line number Diff line change
Expand Up @@ -36106,6 +36106,27 @@ export default {
type: 'string',
},
},
{
in: 'query',
name: 'limit',
schema: {
default: 500,
description:
'Numerical limit on the number of unmanaged access grants to return.',
format: 'float',
type: 'number',
},
},
{
in: 'query',
name: 'page_cursor',
schema: {
description:
"Identifies the specific page of results to return, obtained from the previous page's `next_page_cursor`.",
nullable: true,
type: 'string',
},
},
],
responses: {
200: {
Expand Down Expand Up @@ -36687,8 +36708,9 @@ export default {
type: 'array',
},
ok: { type: 'boolean' },
pagination: { $ref: '#/components/schemas/pagination' },
},
required: ['access_grants', 'ok'],
required: ['access_grants', 'pagination', 'ok'],
type: 'object',
},
},
Expand Down Expand Up @@ -36733,6 +36755,19 @@ export default {
format: 'uuid',
type: 'string',
},
limit: {
default: 500,
description:
'Numerical limit on the number of unmanaged access grants to return.',
format: 'float',
type: 'number',
},
page_cursor: {
description:
"Identifies the specific page of results to return, obtained from the previous page's `next_page_cursor`.",
nullable: true,
type: 'string',
},
reservation_key: {
description:
'Filter unmanaged Access Grants by reservation_key.',
Expand Down Expand Up @@ -37330,8 +37365,9 @@ export default {
type: 'array',
},
ok: { type: 'boolean' },
pagination: { $ref: '#/components/schemas/pagination' },
},
required: ['access_grants', 'ok'],
required: ['access_grants', 'pagination', 'ok'],
type: 'object',
},
},
Expand Down
13 changes: 13 additions & 0 deletions src/lib/seam/connect/route-types.ts
Original file line number Diff line number Diff line change
Expand Up @@ -14984,6 +14984,10 @@ export type Routes = {
acs_entrance_id?: string | undefined
/** Filter unmanaged Access Grants by reservation_key. */
reservation_key?: string | undefined
/** Numerical limit on the number of unmanaged access grants to return. */
limit?: number
/** Identifies the specific page of results to return, obtained from the previous page's `next_page_cursor`. */
page_cursor?: (string | undefined) | null
}
formData: {}
jsonResponse: {
Expand Down Expand Up @@ -15146,6 +15150,15 @@ export type Routes = {
/** ID of user identity to which the Access Grant gives access. */
user_identity_id?: string | undefined
}[]
/** Information about the current page of results. */
pagination: {
/** Opaque value that can be used to select the next page of results via the `page_cursor` parameter. */
next_page_cursor: string | null
/** Indicates whether there is another page of results after this one. */
has_next_page: boolean
/** URL to get the next page of results. */
next_page_url: string | null
}
}
maxDuration: undefined
}
Expand Down
Loading