@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
package/dist/connect.d.cts
CHANGED
|
@@ -10384,6 +10384,11 @@ declare const _default: {
|
|
|
10384
10384
|
description: string;
|
|
10385
10385
|
type: string;
|
|
10386
10386
|
};
|
|
10387
|
+
limit: {
|
|
10388
|
+
default: number;
|
|
10389
|
+
nullable: boolean;
|
|
10390
|
+
type: string;
|
|
10391
|
+
};
|
|
10387
10392
|
user_identifier_key: {
|
|
10388
10393
|
type: string;
|
|
10389
10394
|
};
|
|
@@ -19118,6 +19123,7 @@ interface Routes {
|
|
|
19118
19123
|
user_identifier_key?: string | undefined;
|
|
19119
19124
|
/** Returns devices where the webview's custom_metadata contains all of the provided key/value pairs. */
|
|
19120
19125
|
custom_metadata_has?: Record<string, string | boolean> | undefined;
|
|
19126
|
+
limit?: number;
|
|
19121
19127
|
};
|
|
19122
19128
|
formData: {};
|
|
19123
19129
|
jsonResponse: {
|
|
@@ -6631,6 +6631,7 @@ export default {
|
|
|
6631
6631
|
description: "Returns devices where the webview's custom_metadata contains all of the provided key/value pairs.",
|
|
6632
6632
|
type: 'object',
|
|
6633
6633
|
},
|
|
6634
|
+
limit: { default: 500, nullable: true, type: 'number' },
|
|
6634
6635
|
user_identifier_key: { type: 'string' },
|
|
6635
6636
|
},
|
|
6636
6637
|
type: 'object',
|