@seamapi/types 1.174.1 → 1.175.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.
@@ -1987,6 +1987,7 @@ export interface Routes {
1987
1987
  user_identifier_key?: string | undefined;
1988
1988
  /** Returns devices where the webview's custom_metadata contains all of the provided key/value pairs. */
1989
1989
  custom_metadata_has?: Record<string, string | boolean> | undefined;
1990
+ limit?: number;
1990
1991
  };
1991
1992
  formData: {};
1992
1993
  jsonResponse: {
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@seamapi/types",
3
- "version": "1.174.1",
3
+ "version": "1.175.0",
4
4
  "description": "TypeScript types for the Seam API.",
5
5
  "type": "module",
6
6
  "main": "index.js",
@@ -6727,6 +6727,7 @@ export default {
6727
6727
  "Returns devices where the webview's custom_metadata contains all of the provided key/value pairs.",
6728
6728
  type: 'object',
6729
6729
  },
6730
+ limit: { default: 500, nullable: true, type: 'number' },
6730
6731
  user_identifier_key: { type: 'string' },
6731
6732
  },
6732
6733
  type: 'object',
@@ -2284,6 +2284,7 @@ export interface Routes {
2284
2284
  user_identifier_key?: string | undefined
2285
2285
  /** Returns devices where the webview's custom_metadata contains all of the provided key/value pairs. */
2286
2286
  custom_metadata_has?: Record<string, string | boolean> | undefined
2287
+ limit?: number
2287
2288
  }
2288
2289
  formData: {}
2289
2290
  jsonResponse: {