File tree Expand file tree Collapse file tree 2 files changed +21
-2
lines changed Expand file tree Collapse file tree 2 files changed +21
-2
lines changed Original file line number Diff line number Diff line change @@ -31402,8 +31402,9 @@ export default {
31402
31402
type: 'array',
31403
31403
},
31404
31404
ok: { type: 'boolean' },
31405
+ pagination: { $ref: '#/components/schemas/pagination' },
31405
31406
},
31406
- required: ['acs_credentials', 'ok'],
31407
+ required: ['acs_credentials', 'pagination', ' ok'],
31407
31408
type: 'object',
31408
31409
},
31409
31410
},
@@ -31514,6 +31515,12 @@ export default {
31514
31515
format: 'float',
31515
31516
type: 'number',
31516
31517
},
31518
+ page_cursor: {
31519
+ description:
31520
+ "Identifies the specific page of results to return, obtained from the previous page's `next_page_cursor`.",
31521
+ nullable: true,
31522
+ type: 'string',
31523
+ },
31517
31524
},
31518
31525
type: 'object',
31519
31526
},
@@ -31533,8 +31540,9 @@ export default {
31533
31540
type: 'array',
31534
31541
},
31535
31542
ok: { type: 'boolean' },
31543
+ pagination: { $ref: '#/components/schemas/pagination' },
31536
31544
},
31537
- required: ['acs_credentials', 'ok'],
31545
+ required: ['acs_credentials', 'pagination', ' ok'],
31538
31546
type: 'object',
31539
31547
},
31540
31548
},
Original file line number Diff line number Diff line change @@ -21214,6 +21214,8 @@ export type Routes = {
21214
21214
created_before?: Date | undefined
21215
21215
/** Indicates whether you want to retrieve only multi-phone sync credentials or non-multi-phone sync credentials. */
21216
21216
is_multi_phone_sync_credential?: boolean | undefined
21217
+ /** Identifies the specific page of results to return, obtained from the previous page's `next_page_cursor`. */
21218
+ page_cursor?: (string | undefined) | null
21217
21219
}
21218
21220
formData: {}
21219
21221
jsonResponse: {
@@ -21374,6 +21376,15 @@ export type Routes = {
21374
21376
| undefined
21375
21377
is_managed: true
21376
21378
}[]
21379
+ /** Information about the current page of results. */
21380
+ pagination: {
21381
+ /** Opaque value that can be used to select the next page of results via the `page_cursor` parameter. */
21382
+ next_page_cursor: string | null
21383
+ /** Indicates whether there is another page of results after this one. */
21384
+ has_next_page: boolean
21385
+ /** URL to get the next page of results. */
21386
+ next_page_url: string | null
21387
+ }
21377
21388
}
21378
21389
}
21379
21390
'/acs/credentials/list_accessible_entrances': {
You can’t perform that action at this time.
0 commit comments