@seamapi/types 1.18.2 → 1.18.4

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.
@@ -208,6 +208,9 @@ declare const _default: {
208
208
  full_name: {
209
209
  type: string;
210
210
  };
211
+ is_being_deleted: {
212
+ type: string;
213
+ };
211
214
  phone_number: {
212
215
  nullable: boolean;
213
216
  type: string;
@@ -11198,6 +11201,7 @@ interface Routes {
11198
11201
  workspace_id: string;
11199
11202
  created_at: string;
11200
11203
  display_name: string;
11204
+ is_being_deleted: boolean;
11201
11205
  full_name?: string | undefined;
11202
11206
  email?: string | undefined;
11203
11207
  phone_number?: string | undefined;
@@ -11370,6 +11374,7 @@ interface Routes {
11370
11374
  workspace_id: string;
11371
11375
  created_at: string;
11372
11376
  display_name: string;
11377
+ is_being_deleted: boolean;
11373
11378
  full_name?: string | undefined;
11374
11379
  email?: string | undefined;
11375
11380
  phone_number?: string | undefined;
@@ -11403,6 +11408,7 @@ interface Routes {
11403
11408
  workspace_id: string;
11404
11409
  created_at: string;
11405
11410
  display_name: string;
11411
+ is_being_deleted: boolean;
11406
11412
  full_name?: string | undefined;
11407
11413
  email?: string | undefined;
11408
11414
  phone_number?: string | undefined;
@@ -11425,6 +11431,7 @@ interface Routes {
11425
11431
  workspace_id: string;
11426
11432
  created_at: string;
11427
11433
  display_name: string;
11434
+ is_being_deleted: boolean;
11428
11435
  full_name?: string | undefined;
11429
11436
  email?: string | undefined;
11430
11437
  phone_number?: string | undefined;
@@ -321,6 +321,7 @@ interface Routes {
321
321
  };
322
322
  is_device_supported: boolean;
323
323
  display_name: string;
324
+ description: string;
324
325
  product_url: string;
325
326
  main_connection_type: 'wifi' | 'zwave' | 'zigbee' | 'unknown';
326
327
  main_category: 'smartlock' | 'thermostat' | 'noise_sensor';
@@ -372,6 +373,7 @@ interface Routes {
372
373
  };
373
374
  is_device_supported: boolean;
374
375
  display_name: string;
376
+ description: string;
375
377
  product_url: string;
376
378
  main_connection_type: 'wifi' | 'zwave' | 'zigbee' | 'unknown';
377
379
  main_category: 'smartlock' | 'thermostat' | 'noise_sensor';
@@ -442,4 +444,4 @@ interface Routes {
442
444
  };
443
445
  }
444
446
 
445
- export { Routes, publicModels as schemas };
447
+ export { DeviceModelV1, ImageReference, Manufacturer, Routes, publicModels as schemas };
@@ -157,6 +157,9 @@ declare const _default: {
157
157
  full_name: {
158
158
  type: string;
159
159
  };
160
+ is_being_deleted: {
161
+ type: string;
162
+ };
160
163
  phone_number: {
161
164
  nullable: boolean;
162
165
  type: string;
@@ -91,6 +91,7 @@ export default {
91
91
  display_name: { type: 'string' },
92
92
  email: { format: 'email', type: 'string' },
93
93
  full_name: { type: 'string' },
94
+ is_being_deleted: { type: 'boolean' },
94
95
  phone_number: { nullable: true, type: 'string' },
95
96
  workspace_id: { format: 'uuid', type: 'string' },
96
97
  },
@@ -100,6 +101,7 @@ export default {
100
101
  'workspace_id',
101
102
  'created_at',
102
103
  'display_name',
104
+ 'is_being_deleted',
103
105
  ],
104
106
  type: 'object',
105
107
  },