@seamapi/types 1.25.0 → 1.26.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.
Files changed (31) hide show
  1. package/dist/connect.cjs +10 -0
  2. package/dist/connect.cjs.map +1 -1
  3. package/dist/connect.d.cts +35 -0
  4. package/dist/devicedb.cjs +81 -9
  5. package/dist/devicedb.cjs.map +1 -1
  6. package/dist/devicedb.d.cts +1842 -2
  7. package/lib/seam/connect/openapi.d.ts +30 -0
  8. package/lib/seam/connect/openapi.js +10 -0
  9. package/lib/seam/connect/openapi.js.map +1 -1
  10. package/lib/seam/connect/route-types.d.ts +5 -0
  11. package/lib/seam/devicedb/index.d.ts +3 -2
  12. package/lib/seam/devicedb/index.js +2 -0
  13. package/lib/seam/devicedb/index.js.map +1 -1
  14. package/lib/seam/devicedb/public-models/device-model-v1.d.ts +5 -2
  15. package/lib/seam/devicedb/public-models/device-model-v1.js +22 -8
  16. package/lib/seam/devicedb/public-models/device-model-v1.js.map +1 -1
  17. package/lib/seam/devicedb/public-models/manufacturer.d.ts +2 -0
  18. package/lib/seam/devicedb/public-models/manufacturer.js +8 -1
  19. package/lib/seam/devicedb/public-models/manufacturer.js.map +1 -1
  20. package/lib/seam/devicedb/route-specs.d.ts +1817 -0
  21. package/lib/seam/devicedb/route-specs.js +49 -0
  22. package/lib/seam/devicedb/route-specs.js.map +1 -0
  23. package/lib/seam/devicedb/route-types.d.ts +1 -1
  24. package/package.json +3 -1
  25. package/src/lib/seam/connect/openapi.ts +10 -0
  26. package/src/lib/seam/connect/route-types.ts +5 -0
  27. package/src/lib/seam/devicedb/index.ts +5 -1
  28. package/src/lib/seam/devicedb/public-models/device-model-v1.ts +28 -8
  29. package/src/lib/seam/devicedb/public-models/manufacturer.ts +13 -1
  30. package/src/lib/seam/devicedb/route-specs.ts +50 -0
  31. package/src/lib/seam/devicedb/route-types.ts +7 -1
@@ -2092,6 +2092,9 @@ declare const _default: {
2092
2092
  ends_at: {
2093
2093
  type: string;
2094
2094
  };
2095
+ is_external_modification_allowed: {
2096
+ type: string;
2097
+ };
2095
2098
  name: {
2096
2099
  type: string;
2097
2100
  };
@@ -2204,6 +2207,9 @@ declare const _default: {
2204
2207
  ends_at: {
2205
2208
  type: string;
2206
2209
  };
2210
+ is_external_modification_allowed: {
2211
+ type: string;
2212
+ };
2207
2213
  name: {
2208
2214
  type: string;
2209
2215
  };
@@ -2310,6 +2316,9 @@ declare const _default: {
2310
2316
  ends_at: {
2311
2317
  type: string;
2312
2318
  };
2319
+ is_external_modification_allowed: {
2320
+ type: string;
2321
+ };
2313
2322
  name: {
2314
2323
  type: string;
2315
2324
  };
@@ -2935,6 +2944,9 @@ declare const _default: {
2935
2944
  force: {
2936
2945
  type: string;
2937
2946
  };
2947
+ is_external_modification_allowed: {
2948
+ type: string;
2949
+ };
2938
2950
  sync: {
2939
2951
  default: boolean;
2940
2952
  type: string;
@@ -3007,6 +3019,9 @@ declare const _default: {
3007
3019
  force: {
3008
3020
  type: string;
3009
3021
  };
3022
+ is_external_modification_allowed: {
3023
+ type: string;
3024
+ };
3010
3025
  sync: {
3011
3026
  default: boolean;
3012
3027
  type: string;
@@ -3407,6 +3422,9 @@ declare const _default: {
3407
3422
  force: {
3408
3423
  type: string;
3409
3424
  };
3425
+ is_external_modification_allowed: {
3426
+ type: string;
3427
+ };
3410
3428
  is_managed: {
3411
3429
  type: string;
3412
3430
  };
@@ -3478,6 +3496,9 @@ declare const _default: {
3478
3496
  force: {
3479
3497
  type: string;
3480
3498
  };
3499
+ is_external_modification_allowed: {
3500
+ type: string;
3501
+ };
3481
3502
  is_managed: {
3482
3503
  type: string;
3483
3504
  };
@@ -3566,6 +3587,9 @@ declare const _default: {
3566
3587
  ends_at: {
3567
3588
  type: string;
3568
3589
  };
3590
+ is_external_modification_allowed: {
3591
+ type: string;
3592
+ };
3569
3593
  is_managed: {
3570
3594
  type: string;
3571
3595
  };
@@ -3674,6 +3698,9 @@ declare const _default: {
3674
3698
  ends_at: {
3675
3699
  type: string;
3676
3700
  };
3701
+ is_external_modification_allowed: {
3702
+ type: string;
3703
+ };
3677
3704
  is_managed: {
3678
3705
  type: string;
3679
3706
  };
@@ -3784,6 +3811,9 @@ declare const _default: {
3784
3811
  ends_at: {
3785
3812
  type: string;
3786
3813
  };
3814
+ is_external_modification_allowed: {
3815
+ type: string;
3816
+ };
3787
3817
  is_managed: {
3788
3818
  type: string;
3789
3819
  };
@@ -1520,6 +1520,7 @@ export default {
1520
1520
  common_code_key: { type: 'string' },
1521
1521
  device_id: { format: 'uuid', type: 'string' },
1522
1522
  ends_at: { type: 'string' },
1523
+ is_external_modification_allowed: { type: 'boolean' },
1523
1524
  name: { type: 'string' },
1524
1525
  prefer_native_scheduling: { type: 'boolean' },
1525
1526
  starts_at: { type: 'string' },
@@ -1595,6 +1596,7 @@ export default {
1595
1596
  type: 'array',
1596
1597
  },
1597
1598
  ends_at: { type: 'string' },
1599
+ is_external_modification_allowed: { type: 'boolean' },
1598
1600
  name: { type: 'string' },
1599
1601
  prefer_native_scheduling: { type: 'boolean' },
1600
1602
  starts_at: { type: 'string' },
@@ -1667,6 +1669,7 @@ export default {
1667
1669
  type: 'array',
1668
1670
  },
1669
1671
  ends_at: { type: 'string' },
1672
+ is_external_modification_allowed: { type: 'boolean' },
1670
1673
  name: { type: 'string' },
1671
1674
  prefer_native_scheduling: { type: 'boolean' },
1672
1675
  starts_at: { type: 'string' },
@@ -2091,6 +2094,7 @@ export default {
2091
2094
  access_code_id: { format: 'uuid', type: 'string' },
2092
2095
  allow_external_modification: { type: 'boolean' },
2093
2096
  force: { type: 'boolean' },
2097
+ is_external_modification_allowed: { type: 'boolean' },
2094
2098
  sync: { default: false, type: 'boolean' },
2095
2099
  },
2096
2100
  required: ['access_code_id'],
@@ -2134,6 +2138,7 @@ export default {
2134
2138
  access_code_id: { format: 'uuid', type: 'string' },
2135
2139
  allow_external_modification: { type: 'boolean' },
2136
2140
  force: { type: 'boolean' },
2141
+ is_external_modification_allowed: { type: 'boolean' },
2137
2142
  sync: { default: false, type: 'boolean' },
2138
2143
  },
2139
2144
  required: ['access_code_id'],
@@ -2407,6 +2412,7 @@ export default {
2407
2412
  access_code_id: { format: 'uuid', type: 'string' },
2408
2413
  allow_external_modification: { type: 'boolean' },
2409
2414
  force: { type: 'boolean' },
2415
+ is_external_modification_allowed: { type: 'boolean' },
2410
2416
  is_managed: { type: 'boolean' },
2411
2417
  },
2412
2418
  required: ['access_code_id', 'is_managed'],
@@ -2450,6 +2456,7 @@ export default {
2450
2456
  access_code_id: { format: 'uuid', type: 'string' },
2451
2457
  allow_external_modification: { type: 'boolean' },
2452
2458
  force: { type: 'boolean' },
2459
+ is_external_modification_allowed: { type: 'boolean' },
2453
2460
  is_managed: { type: 'boolean' },
2454
2461
  },
2455
2462
  required: ['access_code_id', 'is_managed'],
@@ -2507,6 +2514,7 @@ export default {
2507
2514
  },
2508
2515
  device_id: { format: 'uuid', type: 'string' },
2509
2516
  ends_at: { type: 'string' },
2517
+ is_external_modification_allowed: { type: 'boolean' },
2510
2518
  is_managed: { type: 'boolean' },
2511
2519
  name: { type: 'string' },
2512
2520
  prefer_native_scheduling: { type: 'boolean' },
@@ -2572,6 +2580,7 @@ export default {
2572
2580
  },
2573
2581
  device_id: { format: 'uuid', type: 'string' },
2574
2582
  ends_at: { type: 'string' },
2583
+ is_external_modification_allowed: { type: 'boolean' },
2575
2584
  is_managed: { type: 'boolean' },
2576
2585
  name: { type: 'string' },
2577
2586
  prefer_native_scheduling: { type: 'boolean' },
@@ -2639,6 +2648,7 @@ export default {
2639
2648
  },
2640
2649
  device_id: { format: 'uuid', type: 'string' },
2641
2650
  ends_at: { type: 'string' },
2651
+ is_external_modification_allowed: { type: 'boolean' },
2642
2652
  is_managed: { type: 'boolean' },
2643
2653
  name: { type: 'string' },
2644
2654
  prefer_native_scheduling: { type: 'boolean' },