@seamapi/types 1.258.0 → 1.258.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.
- package/dist/connect.cjs +3 -39
- package/dist/connect.cjs.map +1 -1
- package/dist/connect.d.cts +1 -70
- package/lib/seam/connect/openapi.d.ts +0 -54
- package/lib/seam/connect/openapi.js +2 -38
- package/lib/seam/connect/openapi.js.map +1 -1
- package/lib/seam/connect/route-types.d.ts +1 -16
- package/package.json +1 -1
- package/src/lib/seam/connect/openapi.ts +2 -38
- package/src/lib/seam/connect/route-types.ts +1 -16
|
@@ -14620,22 +14620,7 @@ export interface Routes {
|
|
|
14620
14620
|
};
|
|
14621
14621
|
commonParams: {};
|
|
14622
14622
|
formData: {};
|
|
14623
|
-
jsonResponse: {
|
|
14624
|
-
climate_preset: {
|
|
14625
|
-
climate_preset_key: string;
|
|
14626
|
-
can_edit: boolean;
|
|
14627
|
-
can_delete: boolean;
|
|
14628
|
-
name?: (string | null) | undefined;
|
|
14629
|
-
display_name: string;
|
|
14630
|
-
fan_mode_setting?: ('auto' | 'on' | 'circulate') | undefined;
|
|
14631
|
-
hvac_mode_setting?: ('off' | 'heat' | 'cool' | 'heat_cool') | undefined;
|
|
14632
|
-
cooling_set_point_celsius?: number | undefined;
|
|
14633
|
-
heating_set_point_celsius?: number | undefined;
|
|
14634
|
-
cooling_set_point_fahrenheit?: number | undefined;
|
|
14635
|
-
heating_set_point_fahrenheit?: number | undefined;
|
|
14636
|
-
manual_override_allowed: boolean;
|
|
14637
|
-
};
|
|
14638
|
-
};
|
|
14623
|
+
jsonResponse: {};
|
|
14639
14624
|
};
|
|
14640
14625
|
'/thermostats/delete_climate_preset': {
|
|
14641
14626
|
route: '/thermostats/delete_climate_preset';
|
package/package.json
CHANGED
|
@@ -2441,36 +2441,6 @@ export default {
|
|
|
2441
2441
|
],
|
|
2442
2442
|
type: 'object',
|
|
2443
2443
|
},
|
|
2444
|
-
climate_preset: {
|
|
2445
|
-
properties: {
|
|
2446
|
-
can_delete: { type: 'boolean' },
|
|
2447
|
-
can_edit: { type: 'boolean' },
|
|
2448
|
-
climate_preset_key: { type: 'string' },
|
|
2449
|
-
cooling_set_point_celsius: { format: 'float', type: 'number' },
|
|
2450
|
-
cooling_set_point_fahrenheit: { format: 'float', type: 'number' },
|
|
2451
|
-
display_name: { type: 'string' },
|
|
2452
|
-
fan_mode_setting: {
|
|
2453
|
-
enum: ['auto', 'on', 'circulate'],
|
|
2454
|
-
type: 'string',
|
|
2455
|
-
},
|
|
2456
|
-
heating_set_point_celsius: { format: 'float', type: 'number' },
|
|
2457
|
-
heating_set_point_fahrenheit: { format: 'float', type: 'number' },
|
|
2458
|
-
hvac_mode_setting: {
|
|
2459
|
-
enum: ['off', 'heat', 'cool', 'heat_cool'],
|
|
2460
|
-
type: 'string',
|
|
2461
|
-
},
|
|
2462
|
-
manual_override_allowed: { type: 'boolean' },
|
|
2463
|
-
name: { default: null, nullable: true, type: 'string' },
|
|
2464
|
-
},
|
|
2465
|
-
required: [
|
|
2466
|
-
'climate_preset_key',
|
|
2467
|
-
'can_edit',
|
|
2468
|
-
'can_delete',
|
|
2469
|
-
'display_name',
|
|
2470
|
-
'manual_override_allowed',
|
|
2471
|
-
],
|
|
2472
|
-
type: 'object',
|
|
2473
|
-
},
|
|
2474
2444
|
connect_webview: {
|
|
2475
2445
|
properties: {
|
|
2476
2446
|
accepted_devices: {
|
|
@@ -13564,13 +13534,8 @@ export default {
|
|
|
13564
13534
|
content: {
|
|
13565
13535
|
'application/json': {
|
|
13566
13536
|
schema: {
|
|
13567
|
-
properties: {
|
|
13568
|
-
|
|
13569
|
-
$ref: '#/components/schemas/climate_preset',
|
|
13570
|
-
},
|
|
13571
|
-
ok: { type: 'boolean' },
|
|
13572
|
-
},
|
|
13573
|
-
required: ['climate_preset', 'ok'],
|
|
13537
|
+
properties: { ok: { type: 'boolean' } },
|
|
13538
|
+
required: ['ok'],
|
|
13574
13539
|
type: 'object',
|
|
13575
13540
|
},
|
|
13576
13541
|
},
|
|
@@ -13589,7 +13554,6 @@ export default {
|
|
|
13589
13554
|
tags: ['/thermostats'],
|
|
13590
13555
|
'x-fern-sdk-group-name': ['thermostats'],
|
|
13591
13556
|
'x-fern-sdk-method-name': 'create_climate_preset',
|
|
13592
|
-
'x-fern-sdk-return-value': 'climate_preset',
|
|
13593
13557
|
},
|
|
13594
13558
|
},
|
|
13595
13559
|
'/thermostats/delete_climate_preset': {
|
|
@@ -18368,22 +18368,7 @@ export interface Routes {
|
|
|
18368
18368
|
}
|
|
18369
18369
|
commonParams: {}
|
|
18370
18370
|
formData: {}
|
|
18371
|
-
jsonResponse: {
|
|
18372
|
-
climate_preset: {
|
|
18373
|
-
climate_preset_key: string
|
|
18374
|
-
can_edit: boolean
|
|
18375
|
-
can_delete: boolean
|
|
18376
|
-
name?: (string | null) | undefined
|
|
18377
|
-
display_name: string
|
|
18378
|
-
fan_mode_setting?: ('auto' | 'on' | 'circulate') | undefined
|
|
18379
|
-
hvac_mode_setting?: ('off' | 'heat' | 'cool' | 'heat_cool') | undefined
|
|
18380
|
-
cooling_set_point_celsius?: number | undefined
|
|
18381
|
-
heating_set_point_celsius?: number | undefined
|
|
18382
|
-
cooling_set_point_fahrenheit?: number | undefined
|
|
18383
|
-
heating_set_point_fahrenheit?: number | undefined
|
|
18384
|
-
manual_override_allowed: boolean
|
|
18385
|
-
}
|
|
18386
|
-
}
|
|
18371
|
+
jsonResponse: {}
|
|
18387
18372
|
}
|
|
18388
18373
|
'/thermostats/delete_climate_preset': {
|
|
18389
18374
|
route: '/thermostats/delete_climate_preset'
|