@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.
- package/dist/connect.cjs +1 -0
- package/dist/connect.cjs.map +1 -1
- package/dist/connect.d.cts +6 -0
- package/lib/seam/connect/openapi.d.ts +5 -0
- package/lib/seam/connect/openapi.js +1 -0
- package/lib/seam/connect/openapi.js.map +1 -1
- package/lib/seam/connect/route-types.d.ts +1 -0
- package/package.json +1 -1
- package/src/lib/seam/connect/openapi.ts +1 -0
- package/src/lib/seam/connect/route-types.ts +1 -0
|
@@ -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
|
@@ -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: {
|