@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.
@@ -20569,14 +20569,18 @@ export type Routes = {
20569
20569
  access_grant_id?: string | undefined;
20570
20570
  /** Key of Access Grant to list access methods for. */
20571
20571
  access_grant_key?: string | undefined;
20572
- /** ID of the device for which you want to retrieve all access methods. */
20572
+ /** 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`. */
20573
20573
  device_id?: string | undefined;
20574
- /** ID of the entrance for which you want to retrieve all access methods. */
20574
+ /** ID of the entrance for which you want to retrieve all access methods that grant access to it. */
20575
20575
  acs_entrance_id?: string | undefined;
20576
- /** ID of the space for which you want to retrieve all access methods. */
20576
+ /** 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`. */
20577
20577
  space_id?: string | undefined;
20578
- /** ID of the access code for which you want to retrieve all access methods. */
20578
+ /** 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`. */
20579
20579
  access_code_id?: string | undefined;
20580
+ /** Maximum number of records to return per page. */
20581
+ limit?: number;
20582
+ /** Identifies the specific page of results to return, obtained from the previous page's `next_page_cursor`. */
20583
+ page_cursor?: (string | undefined) | null;
20580
20584
  };
20581
20585
  formData: {};
20582
20586
  jsonResponse: {
@@ -20710,6 +20714,15 @@ export type Routes = {
20710
20714
  /** ID of the customization profile associated with the access method. */
20711
20715
  customization_profile_id?: string | undefined;
20712
20716
  }[];
20717
+ /** Information about the current page of results. */
20718
+ pagination: {
20719
+ /** Opaque value that can be used to select the next page of results via the `page_cursor` parameter. */
20720
+ next_page_cursor: string | null;
20721
+ /** Indicates whether there is another page of results after this one. */
20722
+ has_next_page: boolean;
20723
+ /** URL to get the next page of results. */
20724
+ next_page_url: string | null;
20725
+ };
20713
20726
  };
20714
20727
  maxDuration: undefined;
20715
20728
  };
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@seamapi/types",
3
- "version": "1.981.0",
3
+ "version": "1.983.0",
4
4
  "description": "TypeScript types for the Seam API.",
5
5
  "type": "module",
6
6
  "main": "index.js",