@seamapi/types 1.322.0 → 1.322.2
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.
- package/dist/connect.cjs +30 -22
- package/dist/connect.cjs.map +1 -1
- package/dist/connect.d.cts +184 -105
- package/lib/seam/connect/models/devices/capability-properties/index.d.ts +26 -5
- package/lib/seam/connect/models/devices/capability-properties/thermostat.d.ts +26 -5
- package/lib/seam/connect/models/devices/device.d.ts +34 -7
- package/lib/seam/connect/models/devices/phone.d.ts +26 -5
- package/lib/seam/connect/models/devices/unmanaged-device.d.ts +26 -5
- package/lib/seam/connect/models/events/acs/common.js +0 -1
- package/lib/seam/connect/models/events/acs/common.js.map +1 -1
- package/lib/seam/connect/models/thermostats/thermostat-schedule.d.ts +18 -3
- package/lib/seam/connect/models/thermostats/thermostat-schedule.js +4 -1
- package/lib/seam/connect/models/thermostats/thermostat-schedule.js.map +1 -1
- package/lib/seam/connect/openapi.d.ts +26 -42
- package/lib/seam/connect/openapi.js +20 -16
- package/lib/seam/connect/openapi.js.map +1 -1
- package/lib/seam/connect/route-types.d.ts +80 -48
- package/package.json +1 -1
- package/src/lib/seam/connect/models/events/acs/common.ts +0 -1
- package/src/lib/seam/connect/models/thermostats/thermostat-schedule.ts +6 -1
- package/src/lib/seam/connect/openapi.ts +20 -16
- package/src/lib/seam/connect/route-types.ts +80 -48
|
@@ -13163,7 +13163,10 @@ export interface Routes {
|
|
|
13163
13163
|
/** Date and time at which the thermostat schedule was created. */
|
|
13164
13164
|
created_at: string
|
|
13165
13165
|
/** Array of errors associated with the thermostat schedule. Each error object within the array contains two fields: `error_code` and `message`. `error_code` is a string that uniquely identifies the type of error, enabling quick recognition and categorization of the issue. `message` provides a more detailed description of the error, offering insights into the issue and potentially how to rectify it. */
|
|
13166
|
-
errors
|
|
13166
|
+
errors: Array<{
|
|
13167
|
+
error_code: string
|
|
13168
|
+
message: string
|
|
13169
|
+
}>
|
|
13167
13170
|
} | null)
|
|
13168
13171
|
| undefined
|
|
13169
13172
|
min_cooling_set_point_celsius?: number | undefined
|
|
@@ -14049,7 +14052,10 @@ export interface Routes {
|
|
|
14049
14052
|
/** Date and time at which the thermostat schedule was created. */
|
|
14050
14053
|
created_at: string
|
|
14051
14054
|
/** Array of errors associated with the thermostat schedule. Each error object within the array contains two fields: `error_code` and `message`. `error_code` is a string that uniquely identifies the type of error, enabling quick recognition and categorization of the issue. `message` provides a more detailed description of the error, offering insights into the issue and potentially how to rectify it. */
|
|
14052
|
-
errors
|
|
14055
|
+
errors: Array<{
|
|
14056
|
+
error_code: string
|
|
14057
|
+
message: string
|
|
14058
|
+
}>
|
|
14053
14059
|
} | null)
|
|
14054
14060
|
| undefined
|
|
14055
14061
|
min_cooling_set_point_celsius?: number | undefined
|
|
@@ -15092,8 +15098,7 @@ export interface Routes {
|
|
|
15092
15098
|
created_at: string
|
|
15093
15099
|
/** Time when the event occurred. */
|
|
15094
15100
|
occurred_at: string
|
|
15095
|
-
/** ID of the connected account.
|
|
15096
|
-
* @deprecated Will be removed. */
|
|
15101
|
+
/** ID of the connected account. */
|
|
15097
15102
|
connected_account_id?: string | undefined
|
|
15098
15103
|
/** ID of the ACS system. */
|
|
15099
15104
|
acs_system_id: string
|
|
@@ -15108,8 +15113,7 @@ export interface Routes {
|
|
|
15108
15113
|
created_at: string
|
|
15109
15114
|
/** Time when the event occurred. */
|
|
15110
15115
|
occurred_at: string
|
|
15111
|
-
/** ID of the connected account.
|
|
15112
|
-
* @deprecated Will be removed. */
|
|
15116
|
+
/** ID of the connected account. */
|
|
15113
15117
|
connected_account_id?: string | undefined
|
|
15114
15118
|
/** ID of the ACS system. */
|
|
15115
15119
|
acs_system_id: string
|
|
@@ -15124,8 +15128,7 @@ export interface Routes {
|
|
|
15124
15128
|
created_at: string
|
|
15125
15129
|
/** Time when the event occurred. */
|
|
15126
15130
|
occurred_at: string
|
|
15127
|
-
/** ID of the connected account.
|
|
15128
|
-
* @deprecated Will be removed. */
|
|
15131
|
+
/** ID of the connected account. */
|
|
15129
15132
|
connected_account_id?: string | undefined
|
|
15130
15133
|
/** ID of the ACS system. */
|
|
15131
15134
|
acs_system_id: string
|
|
@@ -15140,8 +15143,7 @@ export interface Routes {
|
|
|
15140
15143
|
created_at: string
|
|
15141
15144
|
/** Time when the event occurred. */
|
|
15142
15145
|
occurred_at: string
|
|
15143
|
-
/** ID of the connected account.
|
|
15144
|
-
* @deprecated Will be removed. */
|
|
15146
|
+
/** ID of the connected account. */
|
|
15145
15147
|
connected_account_id?: string | undefined
|
|
15146
15148
|
/** ID of the ACS system. */
|
|
15147
15149
|
acs_system_id: string
|
|
@@ -15157,8 +15159,7 @@ export interface Routes {
|
|
|
15157
15159
|
created_at: string
|
|
15158
15160
|
/** Time when the event occurred. */
|
|
15159
15161
|
occurred_at: string
|
|
15160
|
-
/** ID of the connected account.
|
|
15161
|
-
* @deprecated Will be removed. */
|
|
15162
|
+
/** ID of the connected account. */
|
|
15162
15163
|
connected_account_id?: string | undefined
|
|
15163
15164
|
/** ID of the ACS system. */
|
|
15164
15165
|
acs_system_id: string
|
|
@@ -15174,8 +15175,7 @@ export interface Routes {
|
|
|
15174
15175
|
created_at: string
|
|
15175
15176
|
/** Time when the event occurred. */
|
|
15176
15177
|
occurred_at: string
|
|
15177
|
-
/** ID of the connected account.
|
|
15178
|
-
* @deprecated Will be removed. */
|
|
15178
|
+
/** ID of the connected account. */
|
|
15179
15179
|
connected_account_id?: string | undefined
|
|
15180
15180
|
/** ID of the ACS system. */
|
|
15181
15181
|
acs_system_id: string
|
|
@@ -15191,8 +15191,7 @@ export interface Routes {
|
|
|
15191
15191
|
created_at: string
|
|
15192
15192
|
/** Time when the event occurred. */
|
|
15193
15193
|
occurred_at: string
|
|
15194
|
-
/** ID of the connected account.
|
|
15195
|
-
* @deprecated Will be removed. */
|
|
15194
|
+
/** ID of the connected account. */
|
|
15196
15195
|
connected_account_id?: string | undefined
|
|
15197
15196
|
/** ID of the ACS system. */
|
|
15198
15197
|
acs_system_id: string
|
|
@@ -15209,8 +15208,7 @@ export interface Routes {
|
|
|
15209
15208
|
created_at: string
|
|
15210
15209
|
/** Time when the event occurred. */
|
|
15211
15210
|
occurred_at: string
|
|
15212
|
-
/** ID of the connected account.
|
|
15213
|
-
* @deprecated Will be removed. */
|
|
15211
|
+
/** ID of the connected account. */
|
|
15214
15212
|
connected_account_id?: string | undefined
|
|
15215
15213
|
/** ID of the ACS system. */
|
|
15216
15214
|
acs_system_id: string
|
|
@@ -16482,8 +16480,7 @@ export interface Routes {
|
|
|
16482
16480
|
created_at: string
|
|
16483
16481
|
/** Time when the event occurred. */
|
|
16484
16482
|
occurred_at: string
|
|
16485
|
-
/** ID of the connected account.
|
|
16486
|
-
* @deprecated Will be removed. */
|
|
16483
|
+
/** ID of the connected account. */
|
|
16487
16484
|
connected_account_id?: string | undefined
|
|
16488
16485
|
/** ID of the ACS system. */
|
|
16489
16486
|
acs_system_id: string
|
|
@@ -16498,8 +16495,7 @@ export interface Routes {
|
|
|
16498
16495
|
created_at: string
|
|
16499
16496
|
/** Time when the event occurred. */
|
|
16500
16497
|
occurred_at: string
|
|
16501
|
-
/** ID of the connected account.
|
|
16502
|
-
* @deprecated Will be removed. */
|
|
16498
|
+
/** ID of the connected account. */
|
|
16503
16499
|
connected_account_id?: string | undefined
|
|
16504
16500
|
/** ID of the ACS system. */
|
|
16505
16501
|
acs_system_id: string
|
|
@@ -16514,8 +16510,7 @@ export interface Routes {
|
|
|
16514
16510
|
created_at: string
|
|
16515
16511
|
/** Time when the event occurred. */
|
|
16516
16512
|
occurred_at: string
|
|
16517
|
-
/** ID of the connected account.
|
|
16518
|
-
* @deprecated Will be removed. */
|
|
16513
|
+
/** ID of the connected account. */
|
|
16519
16514
|
connected_account_id?: string | undefined
|
|
16520
16515
|
/** ID of the ACS system. */
|
|
16521
16516
|
acs_system_id: string
|
|
@@ -16530,8 +16525,7 @@ export interface Routes {
|
|
|
16530
16525
|
created_at: string
|
|
16531
16526
|
/** Time when the event occurred. */
|
|
16532
16527
|
occurred_at: string
|
|
16533
|
-
/** ID of the connected account.
|
|
16534
|
-
* @deprecated Will be removed. */
|
|
16528
|
+
/** ID of the connected account. */
|
|
16535
16529
|
connected_account_id?: string | undefined
|
|
16536
16530
|
/** ID of the ACS system. */
|
|
16537
16531
|
acs_system_id: string
|
|
@@ -16547,8 +16541,7 @@ export interface Routes {
|
|
|
16547
16541
|
created_at: string
|
|
16548
16542
|
/** Time when the event occurred. */
|
|
16549
16543
|
occurred_at: string
|
|
16550
|
-
/** ID of the connected account.
|
|
16551
|
-
* @deprecated Will be removed. */
|
|
16544
|
+
/** ID of the connected account. */
|
|
16552
16545
|
connected_account_id?: string | undefined
|
|
16553
16546
|
/** ID of the ACS system. */
|
|
16554
16547
|
acs_system_id: string
|
|
@@ -16564,8 +16557,7 @@ export interface Routes {
|
|
|
16564
16557
|
created_at: string
|
|
16565
16558
|
/** Time when the event occurred. */
|
|
16566
16559
|
occurred_at: string
|
|
16567
|
-
/** ID of the connected account.
|
|
16568
|
-
* @deprecated Will be removed. */
|
|
16560
|
+
/** ID of the connected account. */
|
|
16569
16561
|
connected_account_id?: string | undefined
|
|
16570
16562
|
/** ID of the ACS system. */
|
|
16571
16563
|
acs_system_id: string
|
|
@@ -16581,8 +16573,7 @@ export interface Routes {
|
|
|
16581
16573
|
created_at: string
|
|
16582
16574
|
/** Time when the event occurred. */
|
|
16583
16575
|
occurred_at: string
|
|
16584
|
-
/** ID of the connected account.
|
|
16585
|
-
* @deprecated Will be removed. */
|
|
16576
|
+
/** ID of the connected account. */
|
|
16586
16577
|
connected_account_id?: string | undefined
|
|
16587
16578
|
/** ID of the ACS system. */
|
|
16588
16579
|
acs_system_id: string
|
|
@@ -16599,8 +16590,7 @@ export interface Routes {
|
|
|
16599
16590
|
created_at: string
|
|
16600
16591
|
/** Time when the event occurred. */
|
|
16601
16592
|
occurred_at: string
|
|
16602
|
-
/** ID of the connected account.
|
|
16603
|
-
* @deprecated Will be removed. */
|
|
16593
|
+
/** ID of the connected account. */
|
|
16604
16594
|
connected_account_id?: string | undefined
|
|
16605
16595
|
/** ID of the ACS system. */
|
|
16606
16596
|
acs_system_id: string
|
|
@@ -18025,7 +18015,10 @@ export interface Routes {
|
|
|
18025
18015
|
/** Date and time at which the thermostat schedule was created. */
|
|
18026
18016
|
created_at: string
|
|
18027
18017
|
/** Array of errors associated with the thermostat schedule. Each error object within the array contains two fields: `error_code` and `message`. `error_code` is a string that uniquely identifies the type of error, enabling quick recognition and categorization of the issue. `message` provides a more detailed description of the error, offering insights into the issue and potentially how to rectify it. */
|
|
18028
|
-
errors
|
|
18018
|
+
errors: Array<{
|
|
18019
|
+
error_code: string
|
|
18020
|
+
message: string
|
|
18021
|
+
}>
|
|
18029
18022
|
} | null)
|
|
18030
18023
|
| undefined
|
|
18031
18024
|
min_cooling_set_point_celsius?: number | undefined
|
|
@@ -18727,7 +18720,10 @@ export interface Routes {
|
|
|
18727
18720
|
/** Date and time at which the thermostat schedule was created. */
|
|
18728
18721
|
created_at: string
|
|
18729
18722
|
/** Array of errors associated with the thermostat schedule. Each error object within the array contains two fields: `error_code` and `message`. `error_code` is a string that uniquely identifies the type of error, enabling quick recognition and categorization of the issue. `message` provides a more detailed description of the error, offering insights into the issue and potentially how to rectify it. */
|
|
18730
|
-
errors
|
|
18723
|
+
errors: Array<{
|
|
18724
|
+
error_code: string
|
|
18725
|
+
message: string
|
|
18726
|
+
}>
|
|
18731
18727
|
} | null)
|
|
18732
18728
|
| undefined
|
|
18733
18729
|
min_cooling_set_point_celsius?: number | undefined
|
|
@@ -19613,7 +19609,10 @@ export interface Routes {
|
|
|
19613
19609
|
/** Date and time at which the thermostat schedule was created. */
|
|
19614
19610
|
created_at: string
|
|
19615
19611
|
/** Array of errors associated with the thermostat schedule. Each error object within the array contains two fields: `error_code` and `message`. `error_code` is a string that uniquely identifies the type of error, enabling quick recognition and categorization of the issue. `message` provides a more detailed description of the error, offering insights into the issue and potentially how to rectify it. */
|
|
19616
|
-
errors
|
|
19612
|
+
errors: Array<{
|
|
19613
|
+
error_code: string
|
|
19614
|
+
message: string
|
|
19615
|
+
}>
|
|
19617
19616
|
} | null)
|
|
19618
19617
|
| undefined
|
|
19619
19618
|
min_cooling_set_point_celsius?: number | undefined
|
|
@@ -20315,7 +20314,10 @@ export interface Routes {
|
|
|
20315
20314
|
/** Date and time at which the thermostat schedule was created. */
|
|
20316
20315
|
created_at: string
|
|
20317
20316
|
/** Array of errors associated with the thermostat schedule. Each error object within the array contains two fields: `error_code` and `message`. `error_code` is a string that uniquely identifies the type of error, enabling quick recognition and categorization of the issue. `message` provides a more detailed description of the error, offering insights into the issue and potentially how to rectify it. */
|
|
20318
|
-
errors
|
|
20317
|
+
errors: Array<{
|
|
20318
|
+
error_code: string
|
|
20319
|
+
message: string
|
|
20320
|
+
}>
|
|
20319
20321
|
} | null)
|
|
20320
20322
|
| undefined
|
|
20321
20323
|
min_cooling_set_point_celsius?: number | undefined
|
|
@@ -23131,7 +23133,10 @@ export interface Routes {
|
|
|
23131
23133
|
/** Date and time at which the thermostat schedule was created. */
|
|
23132
23134
|
created_at: string
|
|
23133
23135
|
/** Array of errors associated with the thermostat schedule. Each error object within the array contains two fields: `error_code` and `message`. `error_code` is a string that uniquely identifies the type of error, enabling quick recognition and categorization of the issue. `message` provides a more detailed description of the error, offering insights into the issue and potentially how to rectify it. */
|
|
23134
|
-
errors
|
|
23136
|
+
errors: Array<{
|
|
23137
|
+
error_code: string
|
|
23138
|
+
message: string
|
|
23139
|
+
}>
|
|
23135
23140
|
} | null)
|
|
23136
23141
|
| undefined
|
|
23137
23142
|
min_cooling_set_point_celsius?: number | undefined
|
|
@@ -23833,7 +23838,10 @@ export interface Routes {
|
|
|
23833
23838
|
/** Date and time at which the thermostat schedule was created. */
|
|
23834
23839
|
created_at: string
|
|
23835
23840
|
/** Array of errors associated with the thermostat schedule. Each error object within the array contains two fields: `error_code` and `message`. `error_code` is a string that uniquely identifies the type of error, enabling quick recognition and categorization of the issue. `message` provides a more detailed description of the error, offering insights into the issue and potentially how to rectify it. */
|
|
23836
|
-
errors
|
|
23841
|
+
errors: Array<{
|
|
23842
|
+
error_code: string
|
|
23843
|
+
message: string
|
|
23844
|
+
}>
|
|
23837
23845
|
} | null)
|
|
23838
23846
|
| undefined
|
|
23839
23847
|
min_cooling_set_point_celsius?: number | undefined
|
|
@@ -29613,7 +29621,10 @@ export interface Routes {
|
|
|
29613
29621
|
/** Date and time at which the thermostat schedule was created. */
|
|
29614
29622
|
created_at: string
|
|
29615
29623
|
/** Array of errors associated with the thermostat schedule. Each error object within the array contains two fields: `error_code` and `message`. `error_code` is a string that uniquely identifies the type of error, enabling quick recognition and categorization of the issue. `message` provides a more detailed description of the error, offering insights into the issue and potentially how to rectify it. */
|
|
29616
|
-
errors
|
|
29624
|
+
errors: Array<{
|
|
29625
|
+
error_code: string
|
|
29626
|
+
message: string
|
|
29627
|
+
}>
|
|
29617
29628
|
} | null)
|
|
29618
29629
|
| undefined
|
|
29619
29630
|
min_cooling_set_point_celsius?: number | undefined
|
|
@@ -32411,7 +32422,10 @@ export interface Routes {
|
|
|
32411
32422
|
/** Date and time at which the thermostat schedule was created. */
|
|
32412
32423
|
created_at: string
|
|
32413
32424
|
/** Array of errors associated with the thermostat schedule. Each error object within the array contains two fields: `error_code` and `message`. `error_code` is a string that uniquely identifies the type of error, enabling quick recognition and categorization of the issue. `message` provides a more detailed description of the error, offering insights into the issue and potentially how to rectify it. */
|
|
32414
|
-
errors
|
|
32425
|
+
errors: Array<{
|
|
32426
|
+
error_code: string
|
|
32427
|
+
message: string
|
|
32428
|
+
}>
|
|
32415
32429
|
} | null)
|
|
32416
32430
|
| undefined
|
|
32417
32431
|
min_cooling_set_point_celsius?: number | undefined
|
|
@@ -33113,7 +33127,10 @@ export interface Routes {
|
|
|
33113
33127
|
/** Date and time at which the thermostat schedule was created. */
|
|
33114
33128
|
created_at: string
|
|
33115
33129
|
/** Array of errors associated with the thermostat schedule. Each error object within the array contains two fields: `error_code` and `message`. `error_code` is a string that uniquely identifies the type of error, enabling quick recognition and categorization of the issue. `message` provides a more detailed description of the error, offering insights into the issue and potentially how to rectify it. */
|
|
33116
|
-
errors
|
|
33130
|
+
errors: Array<{
|
|
33131
|
+
error_code: string
|
|
33132
|
+
message: string
|
|
33133
|
+
}>
|
|
33117
33134
|
} | null)
|
|
33118
33135
|
| undefined
|
|
33119
33136
|
min_cooling_set_point_celsius?: number | undefined
|
|
@@ -34180,7 +34197,10 @@ export interface Routes {
|
|
|
34180
34197
|
/** Date and time at which the thermostat schedule was created. */
|
|
34181
34198
|
created_at: string
|
|
34182
34199
|
/** Array of errors associated with the thermostat schedule. Each error object within the array contains two fields: `error_code` and `message`. `error_code` is a string that uniquely identifies the type of error, enabling quick recognition and categorization of the issue. `message` provides a more detailed description of the error, offering insights into the issue and potentially how to rectify it. */
|
|
34183
|
-
errors
|
|
34200
|
+
errors: Array<{
|
|
34201
|
+
error_code: string
|
|
34202
|
+
message: string
|
|
34203
|
+
}>
|
|
34184
34204
|
}
|
|
34185
34205
|
}
|
|
34186
34206
|
}
|
|
@@ -34228,7 +34248,10 @@ export interface Routes {
|
|
|
34228
34248
|
/** Date and time at which the thermostat schedule was created. */
|
|
34229
34249
|
created_at: string
|
|
34230
34250
|
/** Array of errors associated with the thermostat schedule. Each error object within the array contains two fields: `error_code` and `message`. `error_code` is a string that uniquely identifies the type of error, enabling quick recognition and categorization of the issue. `message` provides a more detailed description of the error, offering insights into the issue and potentially how to rectify it. */
|
|
34231
|
-
errors
|
|
34251
|
+
errors: Array<{
|
|
34252
|
+
error_code: string
|
|
34253
|
+
message: string
|
|
34254
|
+
}>
|
|
34232
34255
|
}
|
|
34233
34256
|
}
|
|
34234
34257
|
}
|
|
@@ -34265,7 +34288,10 @@ export interface Routes {
|
|
|
34265
34288
|
/** Date and time at which the thermostat schedule was created. */
|
|
34266
34289
|
created_at: string
|
|
34267
34290
|
/** Array of errors associated with the thermostat schedule. Each error object within the array contains two fields: `error_code` and `message`. `error_code` is a string that uniquely identifies the type of error, enabling quick recognition and categorization of the issue. `message` provides a more detailed description of the error, offering insights into the issue and potentially how to rectify it. */
|
|
34268
|
-
errors
|
|
34291
|
+
errors: Array<{
|
|
34292
|
+
error_code: string
|
|
34293
|
+
message: string
|
|
34294
|
+
}>
|
|
34269
34295
|
}>
|
|
34270
34296
|
}
|
|
34271
34297
|
}
|
|
@@ -37165,7 +37191,10 @@ export interface Routes {
|
|
|
37165
37191
|
/** Date and time at which the thermostat schedule was created. */
|
|
37166
37192
|
created_at: string
|
|
37167
37193
|
/** Array of errors associated with the thermostat schedule. Each error object within the array contains two fields: `error_code` and `message`. `error_code` is a string that uniquely identifies the type of error, enabling quick recognition and categorization of the issue. `message` provides a more detailed description of the error, offering insights into the issue and potentially how to rectify it. */
|
|
37168
|
-
errors
|
|
37194
|
+
errors: Array<{
|
|
37195
|
+
error_code: string
|
|
37196
|
+
message: string
|
|
37197
|
+
}>
|
|
37169
37198
|
} | null)
|
|
37170
37199
|
| undefined
|
|
37171
37200
|
min_cooling_set_point_celsius?: number | undefined
|
|
@@ -37869,7 +37898,10 @@ export interface Routes {
|
|
|
37869
37898
|
/** Date and time at which the thermostat schedule was created. */
|
|
37870
37899
|
created_at: string
|
|
37871
37900
|
/** Array of errors associated with the thermostat schedule. Each error object within the array contains two fields: `error_code` and `message`. `error_code` is a string that uniquely identifies the type of error, enabling quick recognition and categorization of the issue. `message` provides a more detailed description of the error, offering insights into the issue and potentially how to rectify it. */
|
|
37872
|
-
errors
|
|
37901
|
+
errors: Array<{
|
|
37902
|
+
error_code: string
|
|
37903
|
+
message: string
|
|
37904
|
+
}>
|
|
37873
37905
|
} | null)
|
|
37874
37906
|
| undefined
|
|
37875
37907
|
min_cooling_set_point_celsius?: number | undefined
|