@seamapi/types 1.241.0 → 1.242.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 (46) hide show
  1. package/dist/connect.cjs +281 -137
  2. package/dist/connect.cjs.map +1 -1
  3. package/dist/connect.d.cts +370 -182
  4. package/dist/devicedb.cjs +9 -6
  5. package/dist/devicedb.cjs.map +1 -1
  6. package/dist/devicedb.d.cts +123 -70
  7. package/lib/seam/connect/models/acs/acs-system.d.ts +86 -42
  8. package/lib/seam/connect/models/acs/acs-system.js +23 -20
  9. package/lib/seam/connect/models/acs/acs-system.js.map +1 -1
  10. package/lib/seam/connect/models/acs/acs-user.d.ts +169 -140
  11. package/lib/seam/connect/models/acs/acs-user.js +32 -30
  12. package/lib/seam/connect/models/acs/acs-user.js.map +1 -1
  13. package/lib/seam/connect/models/devices/capability-properties/index.d.ts +5 -5
  14. package/lib/seam/connect/models/devices/capability-properties/thermostat.d.ts +5 -5
  15. package/lib/seam/connect/models/devices/device.d.ts +6 -6
  16. package/lib/seam/connect/models/devices/phone.d.ts +5 -5
  17. package/lib/seam/connect/models/devices/unmanaged-device.d.ts +5 -5
  18. package/lib/seam/connect/models/thermostats/climate-preset.d.ts +3 -3
  19. package/lib/seam/connect/models/thermostats/climate-preset.js +1 -1
  20. package/lib/seam/connect/models/thermostats/climate-preset.js.map +1 -1
  21. package/lib/seam/connect/models/thermostats/index.d.ts +1 -1
  22. package/lib/seam/connect/models/thermostats/index.js +1 -1
  23. package/lib/seam/connect/models/thermostats/index.js.map +1 -1
  24. package/lib/seam/connect/models/thermostats/{climate-setting-schedule.js → thermostat-schedule.js} +1 -1
  25. package/lib/seam/connect/models/thermostats/thermostat-schedule.js.map +1 -0
  26. package/lib/seam/connect/openapi.d.ts +45 -18
  27. package/lib/seam/connect/openapi.js +219 -90
  28. package/lib/seam/connect/openapi.js.map +1 -1
  29. package/lib/seam/connect/route-types.d.ts +176 -78
  30. package/lib/seam/devicedb/models/device-model.d.ts +59 -24
  31. package/lib/seam/devicedb/models/device-model.js +9 -6
  32. package/lib/seam/devicedb/models/device-model.js.map +1 -1
  33. package/lib/seam/devicedb/route-specs.d.ts +56 -38
  34. package/lib/seam/devicedb/route-types.d.ts +8 -8
  35. package/package.json +1 -1
  36. package/src/lib/seam/connect/models/acs/acs-system.ts +32 -24
  37. package/src/lib/seam/connect/models/acs/acs-user.ts +41 -35
  38. package/src/lib/seam/connect/models/thermostats/climate-preset.ts +1 -1
  39. package/src/lib/seam/connect/models/thermostats/index.ts +1 -1
  40. package/src/lib/seam/connect/openapi.ts +249 -90
  41. package/src/lib/seam/connect/route-types.ts +187 -78
  42. package/src/lib/seam/devicedb/models/device-model.ts +24 -19
  43. package/src/lib/seam/devicedb/route-types.ts +8 -8
  44. package/lib/seam/connect/models/thermostats/climate-setting-schedule.js.map +0 -1
  45. /package/lib/seam/connect/models/thermostats/{climate-setting-schedule.d.ts → thermostat-schedule.d.ts} +0 -0
  46. /package/src/lib/seam/connect/models/thermostats/{climate-setting-schedule.ts → thermostat-schedule.ts} +0 -0
@@ -733,28 +733,30 @@ declare const _default: {
733
733
  description: string;
734
734
  type: string;
735
735
  };
736
+ warning_code?: never;
736
737
  };
737
738
  required: string[];
738
739
  type: string;
739
740
  } | {
741
+ description: string;
740
742
  properties: {
741
743
  created_at: {
742
744
  description: string;
743
745
  format: string;
744
746
  type: string;
745
747
  };
746
- error_code: {
747
- enum: string[];
748
- type: string;
749
- };
750
748
  message: {
751
749
  description: string;
752
750
  type: string;
753
751
  };
752
+ warning_code: {
753
+ enum: string[];
754
+ type: string;
755
+ };
756
+ error_code?: never;
754
757
  };
755
758
  required: string[];
756
759
  type: string;
757
- description?: never;
758
760
  })[];
759
761
  };
760
762
  type: string;
@@ -814,9 +816,11 @@ declare const _default: {
814
816
  created_at: {
815
817
  format: string;
816
818
  type: string;
819
+ description?: never;
817
820
  };
818
821
  message: {
819
822
  type: string;
823
+ description?: never;
820
824
  };
821
825
  warning_code: {
822
826
  enum: string[];
@@ -826,12 +830,15 @@ declare const _default: {
826
830
  required: string[];
827
831
  type: string;
828
832
  } | {
833
+ description: string;
829
834
  properties: {
830
835
  created_at: {
836
+ description: string;
831
837
  format: string;
832
838
  type: string;
833
839
  };
834
840
  message: {
841
+ description: string;
835
842
  type: string;
836
843
  };
837
844
  warning_code: {
@@ -841,7 +848,6 @@ declare const _default: {
841
848
  };
842
849
  required: string[];
843
850
  type: string;
844
- description?: never;
845
851
  })[];
846
852
  };
847
853
  type: string;
@@ -2441,6 +2447,7 @@ declare const _default: {
2441
2447
  type: string;
2442
2448
  };
2443
2449
  name: {
2450
+ default: null;
2444
2451
  nullable: boolean;
2445
2452
  type: string;
2446
2453
  };
@@ -2499,6 +2506,7 @@ declare const _default: {
2499
2506
  type: string;
2500
2507
  };
2501
2508
  name: {
2509
+ default: null;
2502
2510
  nullable: boolean;
2503
2511
  type: string;
2504
2512
  };
@@ -2548,6 +2556,7 @@ declare const _default: {
2548
2556
  type: string;
2549
2557
  };
2550
2558
  name: {
2559
+ default: null;
2551
2560
  nullable: boolean;
2552
2561
  type: string;
2553
2562
  };
@@ -9009,28 +9018,30 @@ declare const _default: {
9009
9018
  description: string;
9010
9019
  type: string;
9011
9020
  };
9021
+ warning_code?: never;
9012
9022
  };
9013
9023
  required: string[];
9014
9024
  type: string;
9015
9025
  } | {
9026
+ description: string;
9016
9027
  properties: {
9017
9028
  created_at: {
9018
9029
  description: string;
9019
9030
  format: string;
9020
9031
  type: string;
9021
9032
  };
9022
- error_code: {
9023
- enum: string[];
9024
- type: string;
9025
- };
9026
9033
  message: {
9027
9034
  description: string;
9028
9035
  type: string;
9029
9036
  };
9037
+ warning_code: {
9038
+ enum: string[];
9039
+ type: string;
9040
+ };
9041
+ error_code?: never;
9030
9042
  };
9031
9043
  required: string[];
9032
9044
  type: string;
9033
- description?: never;
9034
9045
  })[];
9035
9046
  };
9036
9047
  type: string;
@@ -9090,9 +9101,11 @@ declare const _default: {
9090
9101
  created_at: {
9091
9102
  format: string;
9092
9103
  type: string;
9104
+ description?: never;
9093
9105
  };
9094
9106
  message: {
9095
9107
  type: string;
9108
+ description?: never;
9096
9109
  };
9097
9110
  warning_code: {
9098
9111
  enum: string[];
@@ -9102,12 +9115,15 @@ declare const _default: {
9102
9115
  required: string[];
9103
9116
  type: string;
9104
9117
  } | {
9118
+ description: string;
9105
9119
  properties: {
9106
9120
  created_at: {
9121
+ description: string;
9107
9122
  format: string;
9108
9123
  type: string;
9109
9124
  };
9110
9125
  message: {
9126
+ description: string;
9111
9127
  type: string;
9112
9128
  };
9113
9129
  warning_code: {
@@ -9117,7 +9133,6 @@ declare const _default: {
9117
9133
  };
9118
9134
  required: string[];
9119
9135
  type: string;
9120
- description?: never;
9121
9136
  })[];
9122
9137
  };
9123
9138
  type: string;
@@ -9257,28 +9272,30 @@ declare const _default: {
9257
9272
  description: string;
9258
9273
  type: string;
9259
9274
  };
9275
+ warning_code?: never;
9260
9276
  };
9261
9277
  required: string[];
9262
9278
  type: string;
9263
9279
  } | {
9280
+ description: string;
9264
9281
  properties: {
9265
9282
  created_at: {
9266
9283
  description: string;
9267
9284
  format: string;
9268
9285
  type: string;
9269
9286
  };
9270
- error_code: {
9271
- enum: string[];
9272
- type: string;
9273
- };
9274
9287
  message: {
9275
9288
  description: string;
9276
9289
  type: string;
9277
9290
  };
9291
+ warning_code: {
9292
+ enum: string[];
9293
+ type: string;
9294
+ };
9295
+ error_code?: never;
9278
9296
  };
9279
9297
  required: string[];
9280
9298
  type: string;
9281
- description?: never;
9282
9299
  })[];
9283
9300
  };
9284
9301
  type: string;
@@ -9338,9 +9355,11 @@ declare const _default: {
9338
9355
  created_at: {
9339
9356
  format: string;
9340
9357
  type: string;
9358
+ description?: never;
9341
9359
  };
9342
9360
  message: {
9343
9361
  type: string;
9362
+ description?: never;
9344
9363
  };
9345
9364
  warning_code: {
9346
9365
  enum: string[];
@@ -9350,12 +9369,15 @@ declare const _default: {
9350
9369
  required: string[];
9351
9370
  type: string;
9352
9371
  } | {
9372
+ description: string;
9353
9373
  properties: {
9354
9374
  created_at: {
9375
+ description: string;
9355
9376
  format: string;
9356
9377
  type: string;
9357
9378
  };
9358
9379
  message: {
9380
+ description: string;
9359
9381
  type: string;
9360
9382
  };
9361
9383
  warning_code: {
@@ -9365,7 +9387,6 @@ declare const _default: {
9365
9387
  };
9366
9388
  required: string[];
9367
9389
  type: string;
9368
- description?: never;
9369
9390
  })[];
9370
9391
  };
9371
9392
  type: string;
@@ -14259,6 +14280,7 @@ declare const _default: {
14259
14280
  type: string;
14260
14281
  };
14261
14282
  name: {
14283
+ default: null;
14262
14284
  nullable: boolean;
14263
14285
  type: string;
14264
14286
  };
@@ -14317,6 +14339,7 @@ declare const _default: {
14317
14339
  type: string;
14318
14340
  };
14319
14341
  name: {
14342
+ default: null;
14320
14343
  nullable: boolean;
14321
14344
  type: string;
14322
14345
  };
@@ -15594,6 +15617,7 @@ declare const _default: {
15594
15617
  type: string;
15595
15618
  };
15596
15619
  name: {
15620
+ default: null;
15597
15621
  nullable: boolean;
15598
15622
  type: string;
15599
15623
  };
@@ -15652,6 +15676,7 @@ declare const _default: {
15652
15676
  type: string;
15653
15677
  };
15654
15678
  name: {
15679
+ default: null;
15655
15680
  nullable: boolean;
15656
15681
  type: string;
15657
15682
  };
@@ -15736,6 +15761,7 @@ declare const _default: {
15736
15761
  type: string;
15737
15762
  };
15738
15763
  name: {
15764
+ default: null;
15739
15765
  nullable: boolean;
15740
15766
  type: string;
15741
15767
  };
@@ -15794,6 +15820,7 @@ declare const _default: {
15794
15820
  type: string;
15795
15821
  };
15796
15822
  name: {
15823
+ default: null;
15797
15824
  nullable: boolean;
15798
15825
  type: string;
15799
15826
  };