@seamapi/types 1.157.2 → 1.158.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/devicedb.cjs +12 -1
- package/dist/devicedb.cjs.map +1 -1
- package/dist/devicedb.d.cts +587 -22
- package/lib/seam/devicedb/models/device-model.d.ts +110 -0
- package/lib/seam/devicedb/models/manufacturer.d.ts +33 -0
- package/lib/seam/devicedb/models/manufacturer.js +11 -0
- package/lib/seam/devicedb/models/manufacturer.js.map +1 -1
- package/lib/seam/devicedb/route-specs.d.ts +378 -0
- package/lib/seam/devicedb/route-types.d.ts +44 -0
- package/package.json +1 -1
- package/src/lib/seam/devicedb/models/manufacturer.ts +11 -0
- package/src/lib/seam/devicedb/route-types.ts +44 -0
|
@@ -27,6 +27,17 @@ export interface Routes {
|
|
|
27
27
|
annotation_code: 'subscription_required';
|
|
28
28
|
message: string;
|
|
29
29
|
}>;
|
|
30
|
+
website?: string | undefined;
|
|
31
|
+
legal_name?: string | undefined;
|
|
32
|
+
parent_organization?: string | undefined;
|
|
33
|
+
headquarters?: string[] | undefined;
|
|
34
|
+
countries_of_origin?: string[] | undefined;
|
|
35
|
+
founding_year?: string | undefined;
|
|
36
|
+
us_customer_support_tel?: string | undefined;
|
|
37
|
+
us_customer_support_email?: string | undefined;
|
|
38
|
+
us_customer_support_contact_url?: string | undefined;
|
|
39
|
+
seam_api_guide?: string | undefined;
|
|
40
|
+
description?: string | undefined;
|
|
30
41
|
};
|
|
31
42
|
is_device_supported: boolean;
|
|
32
43
|
display_name: string;
|
|
@@ -153,6 +164,17 @@ export interface Routes {
|
|
|
153
164
|
annotation_code: 'subscription_required';
|
|
154
165
|
message: string;
|
|
155
166
|
}>;
|
|
167
|
+
website?: string | undefined;
|
|
168
|
+
legal_name?: string | undefined;
|
|
169
|
+
parent_organization?: string | undefined;
|
|
170
|
+
headquarters?: string[] | undefined;
|
|
171
|
+
countries_of_origin?: string[] | undefined;
|
|
172
|
+
founding_year?: string | undefined;
|
|
173
|
+
us_customer_support_tel?: string | undefined;
|
|
174
|
+
us_customer_support_email?: string | undefined;
|
|
175
|
+
us_customer_support_contact_url?: string | undefined;
|
|
176
|
+
seam_api_guide?: string | undefined;
|
|
177
|
+
description?: string | undefined;
|
|
156
178
|
};
|
|
157
179
|
is_device_supported: boolean;
|
|
158
180
|
display_name: string;
|
|
@@ -271,6 +293,17 @@ export interface Routes {
|
|
|
271
293
|
annotation_code: 'subscription_required';
|
|
272
294
|
message: string;
|
|
273
295
|
}>;
|
|
296
|
+
website?: string | undefined;
|
|
297
|
+
legal_name?: string | undefined;
|
|
298
|
+
parent_organization?: string | undefined;
|
|
299
|
+
headquarters?: string[] | undefined;
|
|
300
|
+
countries_of_origin?: string[] | undefined;
|
|
301
|
+
founding_year?: string | undefined;
|
|
302
|
+
us_customer_support_tel?: string | undefined;
|
|
303
|
+
us_customer_support_email?: string | undefined;
|
|
304
|
+
us_customer_support_contact_url?: string | undefined;
|
|
305
|
+
seam_api_guide?: string | undefined;
|
|
306
|
+
description?: string | undefined;
|
|
274
307
|
};
|
|
275
308
|
};
|
|
276
309
|
};
|
|
@@ -303,6 +336,17 @@ export interface Routes {
|
|
|
303
336
|
annotation_code: 'subscription_required';
|
|
304
337
|
message: string;
|
|
305
338
|
}>;
|
|
339
|
+
website?: string | undefined;
|
|
340
|
+
legal_name?: string | undefined;
|
|
341
|
+
parent_organization?: string | undefined;
|
|
342
|
+
headquarters?: string[] | undefined;
|
|
343
|
+
countries_of_origin?: string[] | undefined;
|
|
344
|
+
founding_year?: string | undefined;
|
|
345
|
+
us_customer_support_tel?: string | undefined;
|
|
346
|
+
us_customer_support_email?: string | undefined;
|
|
347
|
+
us_customer_support_contact_url?: string | undefined;
|
|
348
|
+
seam_api_guide?: string | undefined;
|
|
349
|
+
description?: string | undefined;
|
|
306
350
|
}>;
|
|
307
351
|
};
|
|
308
352
|
};
|
package/package.json
CHANGED
|
@@ -38,6 +38,17 @@ export const manufacturer = z.object({
|
|
|
38
38
|
requires_seam_support_to_add_account: z.boolean(),
|
|
39
39
|
device_model_count: z.number(),
|
|
40
40
|
annotations: z.array(manufacturer_annotation),
|
|
41
|
+
website: z.string().url().optional(),
|
|
42
|
+
legal_name: z.string().optional(),
|
|
43
|
+
parent_organization: z.string().optional(),
|
|
44
|
+
headquarters: z.array(z.string()).optional(),
|
|
45
|
+
countries_of_origin: z.array(z.string()).optional(),
|
|
46
|
+
founding_year: z.string().optional(),
|
|
47
|
+
us_customer_support_tel: z.string().optional(),
|
|
48
|
+
us_customer_support_email: z.string().email().optional(),
|
|
49
|
+
us_customer_support_contact_url: z.string().url().optional(),
|
|
50
|
+
seam_api_guide: z.string().optional(),
|
|
51
|
+
description: z.string().optional(),
|
|
41
52
|
})
|
|
42
53
|
|
|
43
54
|
export type Manufacturer = z.infer<typeof manufacturer>
|
|
@@ -34,6 +34,17 @@ export interface Routes {
|
|
|
34
34
|
annotation_code: 'subscription_required'
|
|
35
35
|
message: string
|
|
36
36
|
}>
|
|
37
|
+
website?: string | undefined
|
|
38
|
+
legal_name?: string | undefined
|
|
39
|
+
parent_organization?: string | undefined
|
|
40
|
+
headquarters?: string[] | undefined
|
|
41
|
+
countries_of_origin?: string[] | undefined
|
|
42
|
+
founding_year?: string | undefined
|
|
43
|
+
us_customer_support_tel?: string | undefined
|
|
44
|
+
us_customer_support_email?: string | undefined
|
|
45
|
+
us_customer_support_contact_url?: string | undefined
|
|
46
|
+
seam_api_guide?: string | undefined
|
|
47
|
+
description?: string | undefined
|
|
37
48
|
}
|
|
38
49
|
is_device_supported: boolean
|
|
39
50
|
display_name: string
|
|
@@ -211,6 +222,17 @@ export interface Routes {
|
|
|
211
222
|
annotation_code: 'subscription_required'
|
|
212
223
|
message: string
|
|
213
224
|
}>
|
|
225
|
+
website?: string | undefined
|
|
226
|
+
legal_name?: string | undefined
|
|
227
|
+
parent_organization?: string | undefined
|
|
228
|
+
headquarters?: string[] | undefined
|
|
229
|
+
countries_of_origin?: string[] | undefined
|
|
230
|
+
founding_year?: string | undefined
|
|
231
|
+
us_customer_support_tel?: string | undefined
|
|
232
|
+
us_customer_support_email?: string | undefined
|
|
233
|
+
us_customer_support_contact_url?: string | undefined
|
|
234
|
+
seam_api_guide?: string | undefined
|
|
235
|
+
description?: string | undefined
|
|
214
236
|
}
|
|
215
237
|
is_device_supported: boolean
|
|
216
238
|
display_name: string
|
|
@@ -362,6 +384,17 @@ export interface Routes {
|
|
|
362
384
|
annotation_code: 'subscription_required'
|
|
363
385
|
message: string
|
|
364
386
|
}>
|
|
387
|
+
website?: string | undefined
|
|
388
|
+
legal_name?: string | undefined
|
|
389
|
+
parent_organization?: string | undefined
|
|
390
|
+
headquarters?: string[] | undefined
|
|
391
|
+
countries_of_origin?: string[] | undefined
|
|
392
|
+
founding_year?: string | undefined
|
|
393
|
+
us_customer_support_tel?: string | undefined
|
|
394
|
+
us_customer_support_email?: string | undefined
|
|
395
|
+
us_customer_support_contact_url?: string | undefined
|
|
396
|
+
seam_api_guide?: string | undefined
|
|
397
|
+
description?: string | undefined
|
|
365
398
|
}
|
|
366
399
|
}
|
|
367
400
|
}
|
|
@@ -405,6 +438,17 @@ export interface Routes {
|
|
|
405
438
|
annotation_code: 'subscription_required'
|
|
406
439
|
message: string
|
|
407
440
|
}>
|
|
441
|
+
website?: string | undefined
|
|
442
|
+
legal_name?: string | undefined
|
|
443
|
+
parent_organization?: string | undefined
|
|
444
|
+
headquarters?: string[] | undefined
|
|
445
|
+
countries_of_origin?: string[] | undefined
|
|
446
|
+
founding_year?: string | undefined
|
|
447
|
+
us_customer_support_tel?: string | undefined
|
|
448
|
+
us_customer_support_email?: string | undefined
|
|
449
|
+
us_customer_support_contact_url?: string | undefined
|
|
450
|
+
seam_api_guide?: string | undefined
|
|
451
|
+
description?: string | undefined
|
|
408
452
|
}>
|
|
409
453
|
}
|
|
410
454
|
}
|