@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.
@@ -50934,14 +50934,18 @@ type Routes = {
50934
50934
  access_grant_id?: string | undefined;
50935
50935
  /** Key of Access Grant to list access methods for. */
50936
50936
  access_grant_key?: string | undefined;
50937
- /** ID of the device for which you want to retrieve all access methods. */
50937
+ /** 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`. */
50938
50938
  device_id?: string | undefined;
50939
- /** ID of the entrance for which you want to retrieve all access methods. */
50939
+ /** ID of the entrance for which you want to retrieve all access methods that grant access to it. */
50940
50940
  acs_entrance_id?: string | undefined;
50941
- /** ID of the space for which you want to retrieve all access methods. */
50941
+ /** 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`. */
50942
50942
  space_id?: string | undefined;
50943
- /** ID of the access code for which you want to retrieve all access methods. */
50943
+ /** 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`. */
50944
50944
  access_code_id?: string | undefined;
50945
+ /** Maximum number of records to return per page. */
50946
+ limit?: number;
50947
+ /** Identifies the specific page of results to return, obtained from the previous page's `next_page_cursor`. */
50948
+ page_cursor?: (string | undefined) | null;
50945
50949
  };
50946
50950
  formData: {};
50947
50951
  jsonResponse: {
@@ -51075,6 +51079,15 @@ type Routes = {
51075
51079
  /** ID of the customization profile associated with the access method. */
51076
51080
  customization_profile_id?: string | undefined;
51077
51081
  }[];
51082
+ /** Information about the current page of results. */
51083
+ pagination: {
51084
+ /** Opaque value that can be used to select the next page of results via the `page_cursor` parameter. */
51085
+ next_page_cursor: string | null;
51086
+ /** Indicates whether there is another page of results after this one. */
51087
+ has_next_page: boolean;
51088
+ /** URL to get the next page of results. */
51089
+ next_page_url: string | null;
51090
+ };
51078
51091
  };
51079
51092
  maxDuration: undefined;
51080
51093
  };