@seamapi/types 1.157.2 → 1.159.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.
@@ -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
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@seamapi/types",
3
- "version": "1.157.2",
3
+ "version": "1.159.0",
4
4
  "description": "TypeScript types for the Seam API.",
5
5
  "type": "module",
6
6
  "main": "index.js",
@@ -2,4 +2,5 @@ import { z } from 'zod'
2
2
 
3
3
  export const acs_system_capability_flags = z.object({
4
4
  can_automate_enrollment: z.boolean().optional(),
5
+ can_create_acs_access_groups: z.boolean().optional(),
5
6
  })
@@ -377,6 +377,7 @@ export default {
377
377
  properties: {
378
378
  acs_system_id: { format: 'uuid', type: 'string' },
379
379
  can_automate_enrollment: { type: 'boolean' },
380
+ can_create_acs_access_groups: { type: 'boolean' },
380
381
  connected_account_ids: { items: { type: 'string' }, type: 'array' },
381
382
  created_at: { format: 'date-time', type: 'string' },
382
383
  external_type: {
@@ -1388,6 +1388,7 @@ export interface Routes {
1388
1388
  image_url: string
1389
1389
  image_alt_text: string
1390
1390
  can_automate_enrollment?: boolean | undefined
1391
+ can_create_acs_access_groups?: boolean | undefined
1391
1392
  }
1392
1393
  }
1393
1394
  }
@@ -1446,6 +1447,7 @@ export interface Routes {
1446
1447
  image_url: string
1447
1448
  image_alt_text: string
1448
1449
  can_automate_enrollment?: boolean | undefined
1450
+ can_create_acs_access_groups?: boolean | undefined
1449
1451
  }>
1450
1452
  }
1451
1453
  }
@@ -11919,6 +11921,7 @@ export interface Routes {
11919
11921
  image_url: string
11920
11922
  image_alt_text: string
11921
11923
  can_automate_enrollment?: boolean | undefined
11924
+ can_create_acs_access_groups?: boolean | undefined
11922
11925
  }>
11923
11926
  }
11924
11927
  }
@@ -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
  }