@seamapi/types 1.19.0 → 1.19.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/dist/devicedb.d.cts
CHANGED
|
@@ -901,6 +901,7 @@ interface Routes {
|
|
|
901
901
|
queryParams: {
|
|
902
902
|
main_category?: string | undefined;
|
|
903
903
|
manufacturer_id?: string | undefined;
|
|
904
|
+
manufacturer_ids?: string[] | undefined;
|
|
904
905
|
integration_status?: ('stable' | 'beta' | 'planned' | 'unsupported' | 'inquire') | undefined;
|
|
905
906
|
text_search?: string | undefined;
|
|
906
907
|
};
|
|
@@ -1011,7 +1012,9 @@ interface Routes {
|
|
|
1011
1012
|
'/v1/manufacturers/list': {
|
|
1012
1013
|
route: '/v1/manufacturers/list';
|
|
1013
1014
|
method: 'GET' | 'OPTIONS';
|
|
1014
|
-
queryParams: {
|
|
1015
|
+
queryParams: {
|
|
1016
|
+
integration_status?: ('stable' | 'beta' | 'planned' | 'unsupported' | 'inquire') | undefined;
|
|
1017
|
+
};
|
|
1015
1018
|
jsonBody: {};
|
|
1016
1019
|
commonParams: {};
|
|
1017
1020
|
formData: {};
|
|
@@ -91,6 +91,7 @@ export interface Routes {
|
|
|
91
91
|
queryParams: {
|
|
92
92
|
main_category?: string | undefined;
|
|
93
93
|
manufacturer_id?: string | undefined;
|
|
94
|
+
manufacturer_ids?: string[] | undefined;
|
|
94
95
|
integration_status?: ('stable' | 'beta' | 'planned' | 'unsupported' | 'inquire') | undefined;
|
|
95
96
|
text_search?: string | undefined;
|
|
96
97
|
};
|
|
@@ -201,7 +202,9 @@ export interface Routes {
|
|
|
201
202
|
'/v1/manufacturers/list': {
|
|
202
203
|
route: '/v1/manufacturers/list';
|
|
203
204
|
method: 'GET' | 'OPTIONS';
|
|
204
|
-
queryParams: {
|
|
205
|
+
queryParams: {
|
|
206
|
+
integration_status?: ('stable' | 'beta' | 'planned' | 'unsupported' | 'inquire') | undefined;
|
|
207
|
+
};
|
|
205
208
|
jsonBody: {};
|
|
206
209
|
commonParams: {};
|
|
207
210
|
formData: {};
|
package/package.json
CHANGED
|
@@ -115,6 +115,7 @@ export interface Routes {
|
|
|
115
115
|
queryParams: {
|
|
116
116
|
main_category?: string | undefined
|
|
117
117
|
manufacturer_id?: string | undefined
|
|
118
|
+
manufacturer_ids?: string[] | undefined
|
|
118
119
|
integration_status?:
|
|
119
120
|
| ('stable' | 'beta' | 'planned' | 'unsupported' | 'inquire')
|
|
120
121
|
| undefined
|
|
@@ -260,7 +261,11 @@ export interface Routes {
|
|
|
260
261
|
'/v1/manufacturers/list': {
|
|
261
262
|
route: '/v1/manufacturers/list'
|
|
262
263
|
method: 'GET' | 'OPTIONS'
|
|
263
|
-
queryParams: {
|
|
264
|
+
queryParams: {
|
|
265
|
+
integration_status?:
|
|
266
|
+
| ('stable' | 'beta' | 'planned' | 'unsupported' | 'inquire')
|
|
267
|
+
| undefined
|
|
268
|
+
}
|
|
264
269
|
jsonBody: {}
|
|
265
270
|
commonParams: {}
|
|
266
271
|
formData: {}
|