@seamapi/types 1.85.0 → 1.85.1
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/README.md +5 -0
- package/dist/connect.cjs +6 -2
- package/dist/connect.cjs.map +1 -1
- package/dist/connect.d.cts +22 -2
- package/lib/seam/connect/openapi.d.ts +20 -0
- package/lib/seam/connect/openapi.js +4 -0
- package/lib/seam/connect/openapi.js.map +1 -1
- package/lib/seam/connect/route-types.d.ts +2 -2
- package/package.json +1 -1
- package/src/lib/seam/connect/openapi.ts +4 -0
- package/src/lib/seam/connect/route-types.ts +2 -2
|
@@ -1589,7 +1589,7 @@ export interface Routes {
|
|
|
1589
1589
|
commonParams: {
|
|
1590
1590
|
user_identifier_key?: string | undefined;
|
|
1591
1591
|
/** Returns devices where the webview's custom_metadata contains all of the provided key/value pairs. */
|
|
1592
|
-
custom_metadata_has?: Record<string, string | boolean> | undefined;
|
|
1592
|
+
custom_metadata_has?: Record<string, string | boolean | null> | undefined;
|
|
1593
1593
|
};
|
|
1594
1594
|
formData: {};
|
|
1595
1595
|
jsonResponse: {
|
|
@@ -1678,7 +1678,7 @@ export interface Routes {
|
|
|
1678
1678
|
jsonBody: {};
|
|
1679
1679
|
commonParams: {
|
|
1680
1680
|
/** Returns devices where the account's custom_metadata contains all of the provided key/value pairs. */
|
|
1681
|
-
custom_metadata_has?: Record<string, string | boolean> | undefined;
|
|
1681
|
+
custom_metadata_has?: Record<string, string | boolean | null> | undefined;
|
|
1682
1682
|
};
|
|
1683
1683
|
formData: {};
|
|
1684
1684
|
jsonResponse: {
|
package/package.json
CHANGED
|
@@ -7539,9 +7539,11 @@ export default {
|
|
|
7539
7539
|
properties: {
|
|
7540
7540
|
custom_metadata_has: {
|
|
7541
7541
|
additionalProperties: {
|
|
7542
|
+
nullable: true,
|
|
7542
7543
|
oneOf: [
|
|
7543
7544
|
{ maxLength: 500, type: 'string' },
|
|
7544
7545
|
{ type: 'boolean' },
|
|
7546
|
+
{ format: 'null', nullable: true, type: 'string' },
|
|
7545
7547
|
],
|
|
7546
7548
|
},
|
|
7547
7549
|
description:
|
|
@@ -7729,9 +7731,11 @@ export default {
|
|
|
7729
7731
|
properties: {
|
|
7730
7732
|
custom_metadata_has: {
|
|
7731
7733
|
additionalProperties: {
|
|
7734
|
+
nullable: true,
|
|
7732
7735
|
oneOf: [
|
|
7733
7736
|
{ maxLength: 500, type: 'string' },
|
|
7734
7737
|
{ type: 'boolean' },
|
|
7738
|
+
{ format: 'null', nullable: true, type: 'string' },
|
|
7735
7739
|
],
|
|
7736
7740
|
},
|
|
7737
7741
|
description:
|
|
@@ -1787,7 +1787,7 @@ export interface Routes {
|
|
|
1787
1787
|
commonParams: {
|
|
1788
1788
|
user_identifier_key?: string | undefined
|
|
1789
1789
|
/** Returns devices where the webview's custom_metadata contains all of the provided key/value pairs. */
|
|
1790
|
-
custom_metadata_has?: Record<string, string | boolean> | undefined
|
|
1790
|
+
custom_metadata_has?: Record<string, string | boolean | null> | undefined
|
|
1791
1791
|
}
|
|
1792
1792
|
formData: {}
|
|
1793
1793
|
jsonResponse: {
|
|
@@ -1880,7 +1880,7 @@ export interface Routes {
|
|
|
1880
1880
|
jsonBody: {}
|
|
1881
1881
|
commonParams: {
|
|
1882
1882
|
/** Returns devices where the account's custom_metadata contains all of the provided key/value pairs. */
|
|
1883
|
-
custom_metadata_has?: Record<string, string | boolean> | undefined
|
|
1883
|
+
custom_metadata_has?: Record<string, string | boolean | null> | undefined
|
|
1884
1884
|
}
|
|
1885
1885
|
formData: {}
|
|
1886
1886
|
jsonResponse: {
|