@seamapi/types 1.218.0 → 1.219.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.
@@ -1652,8 +1652,13 @@ declare const _default: {
1652
1652
  dormakaba_oracode_metadata: {
1653
1653
  properties: {
1654
1654
  device_id: {
1655
- format: string;
1656
- type: string;
1655
+ oneOf: ({
1656
+ format: string;
1657
+ type: string;
1658
+ } | {
1659
+ type: string;
1660
+ format?: never;
1661
+ })[];
1657
1662
  };
1658
1663
  door_id: {
1659
1664
  format: string;
@@ -1711,7 +1716,9 @@ declare const _default: {
1711
1716
  type: string;
1712
1717
  };
1713
1718
  site_id: {
1719
+ description: string;
1714
1720
  format: string;
1721
+ nullable: boolean;
1715
1722
  type: string;
1716
1723
  };
1717
1724
  site_name: {
@@ -2355,7 +2355,12 @@ export default {
2355
2355
  },
2356
2356
  dormakaba_oracode_metadata: {
2357
2357
  properties: {
2358
- device_id: { format: 'float', type: 'number' },
2358
+ device_id: {
2359
+ oneOf: [
2360
+ { format: 'float', type: 'number' },
2361
+ { type: 'string' },
2362
+ ],
2363
+ },
2359
2364
  door_id: { format: 'float', type: 'number' },
2360
2365
  door_is_wireless: { type: 'boolean' },
2361
2366
  door_name: { type: 'string' },
@@ -2396,11 +2401,15 @@ export default {
2396
2401
  },
2397
2402
  type: 'array',
2398
2403
  },
2399
- site_id: { format: 'float', type: 'number' },
2404
+ site_id: {
2405
+ description: '@DEPRECATED',
2406
+ format: 'float',
2407
+ nullable: true,
2408
+ type: 'number',
2409
+ },
2400
2410
  site_name: { type: 'string' },
2401
2411
  },
2402
2412
  required: [
2403
- 'door_id',
2404
2413
  'door_name',
2405
2414
  'door_is_wireless',
2406
2415
  'site_id',