@seamapi/types 1.981.0 → 1.983.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.
@@ -24482,14 +24482,18 @@ export type Routes = {
24482
24482
  access_grant_id?: string | undefined
24483
24483
  /** Key of Access Grant to list access methods for. */
24484
24484
  access_grant_key?: string | undefined
24485
- /** ID of the device for which you want to retrieve all access methods. */
24485
+ /** ID of the device by which to filter the returned access methods. Must be combined with `access_grant_id`, `access_grant_key`, or `acs_entrance_id`. */
24486
24486
  device_id?: string | undefined
24487
- /** ID of the entrance for which you want to retrieve all access methods. */
24487
+ /** ID of the entrance for which you want to retrieve all access methods that grant access to it. */
24488
24488
  acs_entrance_id?: string | undefined
24489
- /** ID of the space for which you want to retrieve all access methods. */
24489
+ /** ID of the space by which to filter the returned access methods. Must be combined with `access_grant_id`, `access_grant_key`, or `acs_entrance_id`. */
24490
24490
  space_id?: string | undefined
24491
- /** ID of the access code for which you want to retrieve all access methods. */
24491
+ /** ID of the access code by which to filter the returned access methods. Must be combined with `access_grant_id`, `access_grant_key`, or `acs_entrance_id`. */
24492
24492
  access_code_id?: string | undefined
24493
+ /** Maximum number of records to return per page. */
24494
+ limit?: number
24495
+ /** Identifies the specific page of results to return, obtained from the previous page's `next_page_cursor`. */
24496
+ page_cursor?: (string | undefined) | null
24493
24497
  }
24494
24498
  formData: {}
24495
24499
  jsonResponse: {
@@ -24632,6 +24636,15 @@ export type Routes = {
24632
24636
  /** ID of the customization profile associated with the access method. */
24633
24637
  customization_profile_id?: string | undefined
24634
24638
  }[]
24639
+ /** Information about the current page of results. */
24640
+ pagination: {
24641
+ /** Opaque value that can be used to select the next page of results via the `page_cursor` parameter. */
24642
+ next_page_cursor: string | null
24643
+ /** Indicates whether there is another page of results after this one. */
24644
+ has_next_page: boolean
24645
+ /** URL to get the next page of results. */
24646
+ next_page_url: string | null
24647
+ }
24635
24648
  }
24636
24649
  maxDuration: undefined
24637
24650
  }