@busy-app/busy-lib 0.9.0 → 0.11.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.
package/dist/index.d.ts CHANGED
@@ -1,8 +1,8 @@
1
1
  import { Client } from 'openapi-fetch';
2
2
 
3
- export declare type AccountInfo = components["schemas"]["AccountInfo"];
3
+ export declare type AccountInfo = components['schemas']['AccountInfo'];
4
4
 
5
- export declare type AccountLink = components["schemas"]["AccountLink"];
5
+ export declare type AccountLink = components['schemas']['AccountLink'];
6
6
 
7
7
  declare class AccountMethods {
8
8
  /**
@@ -56,25 +56,48 @@ declare class AccountMethods {
56
56
  AccountLink(this: BusyBar, params?: TimeoutOptions): Promise<AccountLink>;
57
57
  }
58
58
 
59
- export declare type AccountProfile = components["schemas"]["AccountProfile"];
59
+ export declare type AccountProfile = components['schemas']['AccountProfile'];
60
60
 
61
61
  export declare interface AccountProfileSetParams extends TimeoutOptions {
62
- profile: operations["setAccountProfile"]["parameters"]["query"]["profile"];
62
+ profile: operations['setAccountProfile']['parameters']['query']['profile'];
63
63
  }
64
64
 
65
- export declare type AccountState = components["schemas"]["AccountState"];
65
+ export declare type AccountState = components['schemas']['AccountState'];
66
66
 
67
67
  declare type ApiKey = string;
68
68
 
69
- declare type ApiSemver = components["schemas"]["VersionInfo"]["api_semver"];
69
+ declare type ApiSemver = components['schemas']['VersionInfo']['api_semver'];
70
70
 
71
71
  export declare interface AssetsDeleteParams extends TimeoutOptions {
72
- appId: paths["/assets/upload"]["delete"]["parameters"]["query"]["app_id"];
72
+ appId: paths['/assets/upload']['delete']['parameters']['query']['app_id'];
73
+ }
74
+
75
+ declare class AssetsMethods {
76
+ /**
77
+ * Upload asset file with app ID. Uploads a file to a specific app's assets directory.
78
+ *
79
+ * @param {UploadParams} params - Parameters for the upload.
80
+ * @param {UploadParams['appId']} params.appId - Application ID for organizing assets.
81
+ * @param {UploadParams['fileName']} params.fileName - Filename for the uploaded asset.
82
+ * @param {UploadParams['file']} params.file - File data to upload.
83
+ * @param {UploadParams['timeout']} [params.timeout] - Request timeout in milliseconds.
84
+ * @returns {Promise<SuccessResponse>} Result of the upload operation.
85
+ */
86
+ AssetsUpload(this: BusyBar, params: AssetsUploadParams): Promise<SuccessResponse>;
87
+ /**
88
+ * Delete app assets. Deletes all assets for a specific app ID.
89
+ *
90
+ * @param {DeleteParams} params - Parameters for the delete.
91
+ * @param {DeleteParams['appId']} params.appId - Application ID whose assets should be deleted.
92
+ * @param {DeleteParams['timeout']} [params.timeout] - Request timeout in milliseconds.
93
+ * @returns {Promise<SuccessResponse>} Result of the delete operation.
94
+ */
95
+ AssetsDelete(this: BusyBar, params: AssetsDeleteParams): Promise<SuccessResponse>;
73
96
  }
74
97
 
75
98
  export declare interface AssetsUploadParams extends TimeoutOptions {
76
- appId: paths["/assets/upload"]["post"]["parameters"]["query"]["app_id"];
77
- fileName: paths["/assets/upload"]["post"]["parameters"]["query"]["file"];
99
+ appId: paths['/assets/upload']['post']['parameters']['query']['app_id'];
100
+ fileName: paths['/assets/upload']['post']['parameters']['query']['file'];
78
101
  file: BusyFile;
79
102
  }
80
103
 
@@ -117,16 +140,18 @@ declare class AudioMethods {
117
140
  }
118
141
 
119
142
  export declare interface AudioPlayParams extends TimeoutOptions {
120
- appId: paths["/audio/play"]["post"]["parameters"]["query"]["app_id"];
121
- path: paths["/audio/play"]["post"]["parameters"]["query"]["path"];
143
+ appId: paths['/audio/play']['post']['parameters']['query']['app_id'];
144
+ path: paths['/audio/play']['post']['parameters']['query']['path'];
122
145
  }
123
146
 
124
- export declare type AudioVolumeInfo = components["schemas"]["AudioVolumeInfo"];
147
+ export declare type AudioVolumeInfo = components['schemas']['AudioVolumeInfo'];
125
148
 
126
149
  export declare interface AudioVolumeParams extends TimeoutOptions {
127
- volume: operations["setAudioVolume"]["parameters"]["query"]["volume"];
150
+ volume: operations['setAudioVolume']['parameters']['query']['volume'];
128
151
  }
129
152
 
153
+ export declare type AutoUpdateSettings = components['schemas']['AutoupdateSettings'];
154
+
130
155
  declare class BleMethods {
131
156
  /**
132
157
  * Enable BLE. Starts advertising.
@@ -162,11 +187,11 @@ declare class BleMethods {
162
187
  BleStatusGet(this: BusyBar, params?: TimeoutOptions): Promise<BleStatusResponse>;
163
188
  }
164
189
 
165
- export declare type BleStatusResponse = components["schemas"]["BleStatusResponse"];
190
+ export declare type BleStatusResponse = components['schemas']['BleStatusResponse'];
166
191
 
167
- declare type Brightness = number | "auto";
192
+ declare type Brightness = number | 'auto';
168
193
 
169
- export declare interface BusyBar extends SystemMethods, UpdateMethods, TimeMethods, AccountMethods, DisplayMethods, AudioMethods, WifiMethods, StorageMethods, SettingsMethods, BleMethods, InputMethods, MatterMethods {
194
+ export declare interface BusyBar extends SystemMethods, UpdateMethods, TimeMethods, AccountMethods, DisplayMethods, AudioMethods, WifiMethods, StorageMethods, SettingsMethods, BleMethods, InputMethods, AssetsMethods, MatterMethods {
170
195
  }
171
196
 
172
197
  /**
@@ -198,7 +223,7 @@ export declare class BusyBar {
198
223
  * - "usb": Device allows access without token (returned 200).
199
224
  * - "unknown": Detection failed or not yet completed.
200
225
  */
201
- connectionType: "usb" | "wifi" | "unknown";
226
+ connectionType: 'usb' | 'wifi' | 'unknown';
202
227
  /**
203
228
  * Creates an instance of BUSY Bar.
204
229
  * Initializes the API client with the provided host address.
@@ -248,7 +273,7 @@ export declare type BusyBarConfig = {
248
273
 
249
274
  declare type BusyFile = Buffer | Blob | File | ArrayBuffer;
250
275
 
251
- declare type CamelizedRequest = DeepCamelize<components["schemas"]["ConnectRequestConfig"]>;
276
+ declare type CamelizedRequest = DeepCamelize<components['schemas']['ConnectRequestConfig']>;
252
277
 
253
278
  declare interface components {
254
279
  schemas: {
@@ -259,23 +284,19 @@ declare interface components {
259
284
  */
260
285
  result: string;
261
286
  };
262
- /**
263
- * @example {
287
+ /** @example {
264
288
  * "error": "Invalid parameter",
265
289
  * "code": 400
266
- * }
267
- */
290
+ * } */
268
291
  Error: {
269
292
  /** @description Error message */
270
293
  error: string;
271
294
  /** @description Error code */
272
295
  code?: number;
273
296
  };
274
- /**
275
- * @example {
297
+ /** @example {
276
298
  * "api_semver": "0.0.0"
277
- * }
278
- */
299
+ * } */
279
300
  VersionInfo: {
280
301
  /**
281
302
  * @description API SemVer
@@ -283,8 +304,7 @@ declare interface components {
283
304
  */
284
305
  api_semver: string;
285
306
  };
286
- /**
287
- * @example {
307
+ /** @example {
288
308
  * "install": {
289
309
  * "is_allowed": true,
290
310
  * "event": "none",
@@ -300,10 +320,9 @@ declare interface components {
300
320
  * "check": {
301
321
  * "available_version": "1.2.3",
302
322
  * "event": "stop",
303
- * "result": "available"
323
+ * "status": "available"
304
324
  * }
305
- * }
306
- */
325
+ * } */
307
326
  UpdateStatus: {
308
327
  install?: {
309
328
  /** @description Whether update installation is allowed (battery check) */
@@ -312,17 +331,17 @@ declare interface components {
312
331
  * @description Current update event
313
332
  * @enum {string}
314
333
  */
315
- event?: "session_start" | "session_stop" | "action_begin" | "action_done" | "detail_change" | "action_progress" | "none";
334
+ event?: 'session_start' | 'session_stop' | 'action_begin' | 'action_done' | 'detail_change' | 'action_progress' | 'none';
316
335
  /**
317
336
  * @description Current update action
318
337
  * @enum {string}
319
338
  */
320
- action?: "download" | "sha_verification" | "unpack" | "prepare" | "apply" | "none";
339
+ action?: 'download' | 'sha_verification' | 'unpack' | 'prepare' | 'apply' | 'none';
321
340
  /**
322
341
  * @description Current or last operation status
323
342
  * @enum {string}
324
343
  */
325
- status?: "ok" | "battery_low" | "busy" | "download_failure" | "download_abort" | "sha_mismatch" | "unpack_staging_dir_failure" | "unpack_archive_open_failure" | "unpack_archive_unpack_failure" | "install_manifest_not_found" | "install_manifest_invalid" | "install_session_config_failure" | "install_pointer_setup_failure" | "unknown_failure";
344
+ status?: 'ok' | 'battery_low' | 'busy' | 'download_failure' | 'download_abort' | 'sha_mismatch' | 'unpack_staging_dir_failure' | 'unpack_archive_open_failure' | 'unpack_archive_unpack_failure' | 'install_manifest_not_found' | 'install_manifest_invalid' | 'install_session_config_failure' | 'install_pointer_setup_failure' | 'unknown_failure';
326
345
  /** @description Optional status detail string */
327
346
  detail?: string;
328
347
  download?: {
@@ -341,19 +360,35 @@ declare interface components {
341
360
  * @description Current check event
342
361
  * @enum {string}
343
362
  */
344
- event?: "start" | "stop" | "none";
363
+ event?: 'start' | 'stop' | 'none';
345
364
  /**
346
365
  * @description Check result status
347
366
  * @enum {string}
348
367
  */
349
- status?: "available" | "not_available" | "failure" | "none";
368
+ status?: 'available' | 'not_available' | 'failure' | 'none';
350
369
  };
351
370
  };
352
- /**
353
- * @example {
371
+ /** @description Autoupdate configuration settings. All fields are optional for POST requests. */
372
+ AutoupdateSettings: {
373
+ /**
374
+ * @description Whether automatic updates are enabled
375
+ * @example true
376
+ */
377
+ is_enabled?: boolean;
378
+ /**
379
+ * @description Start of autoupdate window in HH:MM format (e.g., "08:00")
380
+ * @example 00:00
381
+ */
382
+ interval_start?: string;
383
+ /**
384
+ * @description End of autoupdate window in HH:MM format (e.g., "23:59")
385
+ * @example 08:00
386
+ */
387
+ interval_end?: string;
388
+ };
389
+ /** @example {
354
390
  * "name": "BUSY bar"
355
- * }
356
- */
391
+ * } */
357
392
  NameInfo: {
358
393
  /**
359
394
  * @description Device name
@@ -367,15 +402,14 @@ declare interface components {
367
402
  * @example key
368
403
  * @enum {string}
369
404
  */
370
- mode?: "disabled" | "enabled" | "key";
405
+ mode?: 'disabled' | 'enabled' | 'key';
371
406
  /**
372
407
  * @description Access key was set and is valid
373
408
  * @example true
374
409
  */
375
410
  key_valid?: boolean;
376
411
  };
377
- /**
378
- * @example {
412
+ /** @example {
379
413
  * "list": [
380
414
  * {
381
415
  * "type": "file",
@@ -387,11 +421,10 @@ declare interface components {
387
421
  * "name": "assets"
388
422
  * }
389
423
  * ]
390
- * }
391
- */
424
+ * } */
392
425
  StorageList: {
393
426
  /** @description Array of elements to display */
394
- list: components["schemas"]["StorageListElement"][];
427
+ list: components['schemas']['StorageListElement'][];
395
428
  };
396
429
  StorageStatus: {
397
430
  /** @example 123456 */
@@ -409,11 +442,11 @@ declare interface components {
409
442
  * @description Element type
410
443
  * @enum {string}
411
444
  */
412
- type: "file" | "dir";
445
+ type: 'file' | 'dir';
413
446
  /** @description File or directory name */
414
447
  name: string;
415
448
  };
416
- StorageFileElement: Omit<components["schemas"]["StorageListElement"], "type"> & {
449
+ StorageFileElement: Omit<components['schemas']['StorageListElement'], 'type'> & {
417
450
  /** @description File size in bytes */
418
451
  size: number;
419
452
  } & {
@@ -421,14 +454,14 @@ declare interface components {
421
454
  * @description discriminator enum property added by openapi-typescript
422
455
  * @enum {string}
423
456
  */
424
- type: "file";
457
+ type: 'file';
425
458
  };
426
- StorageDirElement: Omit<components["schemas"]["StorageListElement"], "type"> & Record<string, never> & {
459
+ StorageDirElement: Omit<components['schemas']['StorageListElement'], 'type'> & Record<string, never> & {
427
460
  /**
428
461
  * @description discriminator enum property added by openapi-typescript
429
462
  * @enum {string}
430
463
  */
431
- type: "dir";
464
+ type: 'dir';
432
465
  };
433
466
  /**
434
467
  * Format: binary
@@ -442,8 +475,7 @@ declare interface components {
442
475
  */
443
476
  file: string;
444
477
  };
445
- /**
446
- * @example {
478
+ /** @example {
447
479
  * "app_id": "my_app",
448
480
  * "elements": [
449
481
  * {
@@ -482,16 +514,20 @@ declare interface components {
482
514
  * "display": "back"
483
515
  * }
484
516
  * ]
485
- * }
486
- */
517
+ * } */
487
518
  DisplayElements: {
488
519
  /**
489
520
  * @description Application ID for organizing assets
490
521
  * @example my_app
491
522
  */
492
523
  app_id: string;
524
+ /**
525
+ * @description Draw requests with a lower priority than the currently active draw request will be ignored. Value is 1 through 10, inclusive, higher number means higher priority. Any built-in app is treated as priority level 5.
526
+ * @default 6
527
+ */
528
+ priority: number;
493
529
  /** @description Array of elements to display */
494
- elements: components["schemas"]["DisplayElement"][];
530
+ elements: (components['schemas']['TextElement'] | components['schemas']['ImageElement'] | components['schemas']['AnimElement'] | components['schemas']['CountdownElement'])[];
495
531
  };
496
532
  DisplayElement: {
497
533
  /** @description Unique identifier for the element */
@@ -504,7 +540,7 @@ declare interface components {
504
540
  * @description Type of display element
505
541
  * @enum {string}
506
542
  */
507
- type: "text" | "image" | "anim" | "countdown";
543
+ type: 'text' | 'image' | 'anim' | 'countdown';
508
544
  /** @description X coordinate of selected anchor point relative to top-left of display */
509
545
  x?: number;
510
546
  /** @description Y coordinate of selected anchor point relative to top-left of display */
@@ -514,14 +550,14 @@ declare interface components {
514
550
  * @default front
515
551
  * @enum {string}
516
552
  */
517
- display: "front" | "back";
553
+ display: 'front' | 'back';
518
554
  /**
519
555
  * @description Anchor point of element. Also use `x` and `y` to position element.
520
556
  * @enum {string}
521
557
  */
522
- align?: "top_left" | "top_mid" | "top_right" | "mid_left" | "center" | "mid_right" | "bottom_left" | "bottom_mid" | "bottom_right";
558
+ align?: 'top_left' | 'top_mid' | 'top_right' | 'mid_left' | 'center' | 'mid_right' | 'bottom_left' | 'bottom_mid' | 'bottom_right';
523
559
  };
524
- TextElement: Omit<components["schemas"]["DisplayElement"], "type"> & {
560
+ TextElement: Omit<components['schemas']['DisplayElement'], 'type'> & {
525
561
  /** @description Text content to display */
526
562
  text: string;
527
563
  /**
@@ -529,7 +565,7 @@ declare interface components {
529
565
  * @default tiny5_8
530
566
  * @enum {string}
531
567
  */
532
- font: "small" | "medium" | "medium_condensed" | "big";
568
+ font: 'small' | 'medium' | 'medium_condensed' | 'big';
533
569
  /**
534
570
  * @description Color to display the text in, in #RRGGBBAA format
535
571
  * @default #FFFFFFFF
@@ -544,9 +580,9 @@ declare interface components {
544
580
  * @description discriminator enum property added by openapi-typescript
545
581
  * @enum {string}
546
582
  */
547
- type: "text";
583
+ type: 'text';
548
584
  };
549
- ImageElement: Omit<components["schemas"]["DisplayElement"], "type"> & ({
585
+ ImageElement: Omit<components['schemas']['DisplayElement'], 'type'> & ({
550
586
  /** @description Path to the image file in the app's assets */
551
587
  path?: string;
552
588
  } | {
@@ -557,9 +593,9 @@ declare interface components {
557
593
  * @description discriminator enum property added by openapi-typescript
558
594
  * @enum {string}
559
595
  */
560
- type: "image";
596
+ type: 'image';
561
597
  };
562
- AnimElement: Omit<components["schemas"]["DisplayElement"], "type"> & (({
598
+ AnimElement: Omit<components['schemas']['DisplayElement'], 'type'> & (({
563
599
  /** @description Path to the animation file in the app's assets */
564
600
  path?: string;
565
601
  } | {
@@ -583,9 +619,9 @@ declare interface components {
583
619
  * @description discriminator enum property added by openapi-typescript
584
620
  * @enum {string}
585
621
  */
586
- type: "anim";
622
+ type: 'anim';
587
623
  };
588
- CountdownElement: Omit<components["schemas"]["DisplayElement"], "type"> & {
624
+ CountdownElement: Omit<components['schemas']['DisplayElement'], 'type'> & {
589
625
  /** @description Seconds-based Unix UTC timestamp to count down or up to. Note: it's a number in a string. */
590
626
  timestamp: string;
591
627
  /**
@@ -597,30 +633,25 @@ declare interface components {
597
633
  * @description Whether to count up or down
598
634
  * @enum {string}
599
635
  */
600
- direction: "time_left" | "time_since";
636
+ direction: 'time_left' | 'time_since';
601
637
  /**
602
638
  * @description When to show the hours position
603
639
  * @enum {string}
604
640
  */
605
- show_hours: "when_non_zero" | "always";
641
+ show_hours: 'when_non_zero' | 'always';
606
642
  } & {
607
643
  /**
608
644
  * @description discriminator enum property added by openapi-typescript
609
645
  * @enum {string}
610
646
  */
611
- type: "countdown";
647
+ type: 'countdown';
612
648
  };
613
649
  DisplayBrightnessInfo: {
614
650
  /**
615
- * @description Front display brightness (0-100/auto)
651
+ * @description Displays brightness (0-100/auto)
616
652
  * @example auto
617
653
  */
618
- front?: string;
619
- /**
620
- * @description Back display brightness (0-100/auto)
621
- * @example 50
622
- */
623
- back?: string;
654
+ value?: string;
624
655
  };
625
656
  AudioVolumeInfo: {
626
657
  /**
@@ -644,35 +675,96 @@ declare interface components {
644
675
  timezone: string;
645
676
  };
646
677
  Status: {
647
- system?: components["schemas"]["StatusSystem"];
648
- power?: components["schemas"]["StatusPower"];
678
+ device?: components['schemas']['StatusDevice'];
679
+ firmware?: components['schemas']['StatusFirmware'];
680
+ system?: components['schemas']['StatusSystem'];
681
+ power?: components['schemas']['StatusPower'];
649
682
  };
650
- StatusSystem: {
683
+ StatusDevice: {
651
684
  /**
652
- * @description Git branch name
653
- * @example main
685
+ * @description Device serial number
686
+ * @example 203638485431500400123456
687
+ */
688
+ serial_number: string;
689
+ /**
690
+ * @description MAC of USB ethernet device
691
+ * @example 0c:fa:22:21:2a:31
654
692
  */
655
- branch?: string;
693
+ usb_mac: string;
694
+ /**
695
+ * @description WIFI MAC
696
+ * @example 0c:fa:22:21:2a:31
697
+ */
698
+ wifi_mac?: string;
699
+ /**
700
+ * @description BLE MAC
701
+ * @example 0c:fa:22:21:2a:31
702
+ */
703
+ ble_mac?: string;
704
+ /**
705
+ * @description Is OTP data valid
706
+ * @example true
707
+ */
708
+ otp_valid: boolean;
709
+ /**
710
+ * @description Device model code
711
+ * @example BB.1
712
+ */
713
+ otp_model?: string;
714
+ /**
715
+ * @description Production timestamp
716
+ * @example 1767225600
717
+ */
718
+ otp_timestamp?: number;
719
+ };
720
+ StatusFirmware: {
656
721
  /**
657
722
  * @description Firmware version
658
723
  * @example 1.0.0
659
724
  */
660
- version?: string;
725
+ version: string;
726
+ /**
727
+ * @description Firmware target code
728
+ * @example 22
729
+ */
730
+ target: number;
731
+ /**
732
+ * @description Git branch name
733
+ * @example main
734
+ */
735
+ branch: string;
661
736
  /**
662
737
  * @description Build date
663
738
  * @example 2024-01-01
664
739
  */
665
- build_date?: string;
740
+ build_date: string;
666
741
  /**
667
742
  * @description Git commit hash (may include -dirty suffix)
668
743
  * @example abc123def456-dirty
669
744
  */
670
- commit_hash?: string;
745
+ commit_hash: string;
746
+ /**
747
+ * @description Radio firmware version
748
+ * @example 1711.2.14.5.2.0.7
749
+ */
750
+ nwp_version?: string;
751
+ };
752
+ StatusSystem: {
753
+ /**
754
+ * @description API SemVer
755
+ * @example 0.0.0
756
+ */
757
+ api_semver: string;
671
758
  /**
672
759
  * @description System uptime
673
760
  * @example 00d 00h 04m 13s
674
761
  */
675
- uptime?: string;
762
+ uptime: string;
763
+ /**
764
+ * @description System boot timestamp
765
+ * @example 1767225600
766
+ */
767
+ boot_time: number;
676
768
  };
677
769
  StatusPower: {
678
770
  /**
@@ -680,47 +772,47 @@ declare interface components {
680
772
  * @example discharging
681
773
  * @enum {string}
682
774
  */
683
- state?: "discharging" | "charging" | "charged";
775
+ state: 'discharging' | 'charging' | 'charged';
684
776
  /**
685
777
  * @description Battery charge percent
686
778
  * @example 99
687
779
  */
688
- battery_charge?: number;
780
+ battery_charge: number;
689
781
  /**
690
782
  * @description Battery voltage in mV
691
783
  * @example 4183
692
784
  */
693
- battery_voltage?: number;
785
+ battery_voltage: number;
694
786
  /**
695
787
  * @description Battery current in mA
696
788
  * @example -180
697
789
  */
698
- battery_current?: number;
790
+ battery_current: number;
699
791
  /**
700
792
  * @description USB voltage in mV
701
793
  * @example 4843
702
794
  */
703
- usb_voltage?: number;
795
+ usb_voltage: number;
704
796
  };
705
797
  /**
706
798
  * @example WPA3
707
799
  * @enum {string}
708
800
  */
709
- WifiSecurityMethod: "Open" | "WPA" | "WPA2" | "WEP" | "WPA/WPA2" | "WPA3" | "WPA2/WPA3";
801
+ WifiSecurityMethod: 'Open' | 'WPA' | 'WPA2' | 'WEP' | 'WPA/WPA2' | 'WPA3' | 'WPA2/WPA3';
710
802
  /**
711
803
  * @example dhcp
712
804
  * @enum {string}
713
805
  */
714
- WifiIpMethod: "dhcp" | "static";
806
+ WifiIpMethod: 'dhcp' | 'static';
715
807
  /**
716
808
  * @example ipv4
717
809
  * @enum {string}
718
810
  */
719
- WifiIpType: "ipv4" | "ipv6";
811
+ WifiIpType: 'ipv4' | 'ipv6';
720
812
  Network: {
721
813
  /** @example 42 */
722
814
  ssid?: string;
723
- security?: components["schemas"]["WifiSecurityMethod"];
815
+ security?: components['schemas']['WifiSecurityMethod'];
724
816
  /** @example 58 */
725
817
  rssi?: number;
726
818
  };
@@ -729,7 +821,7 @@ declare interface components {
729
821
  * @example disconnected
730
822
  * @enum {string}
731
823
  */
732
- state?: "unknown" | "disconnected" | "connected" | "connecting" | "disconnecting" | "reconnecting";
824
+ state?: 'unknown' | 'disconnected' | 'connected' | 'connecting' | 'disconnecting' | 'reconnecting';
733
825
  /** @example Your_WIFI_SSID */
734
826
  ssid?: string;
735
827
  /** @example EC:5A:00:0B:55:1D */
@@ -738,10 +830,10 @@ declare interface components {
738
830
  channel?: number;
739
831
  /** @example -43 */
740
832
  rssi?: number;
741
- security?: components["schemas"]["WifiSecurityMethod"];
833
+ security?: components['schemas']['WifiSecurityMethod'];
742
834
  ip_config?: {
743
- ip_method?: components["schemas"]["WifiIpMethod"];
744
- ip_type?: components["schemas"]["WifiIpType"];
835
+ ip_method?: components['schemas']['WifiIpMethod'];
836
+ ip_type?: components['schemas']['WifiIpType'];
745
837
  /** @example 192.168.50.5 */
746
838
  address?: string;
747
839
  };
@@ -751,9 +843,14 @@ declare interface components {
751
843
  ssid?: string;
752
844
  /** @example Your_WIFI_Pass */
753
845
  password?: string;
754
- security?: components["schemas"]["WifiSecurityMethod"];
846
+ security?: components['schemas']['WifiSecurityMethod'];
755
847
  ip_config?: {
756
- ip_method?: components["schemas"]["WifiIpMethod"];
848
+ ip_method?: components['schemas']['WifiIpMethod'];
849
+ /**
850
+ * @example ipv4
851
+ * @enum {string}
852
+ */
853
+ ip_type?: 'ipv4' | 'ipv6';
757
854
  /** @example 192.168.50.5 */
758
855
  address?: string;
759
856
  /** @example 255.255.255.0 */
@@ -765,7 +862,7 @@ declare interface components {
765
862
  NetworkResponse: {
766
863
  /** @example 1 */
767
864
  count?: number;
768
- networks?: components["schemas"]["Network"][];
865
+ networks?: components['schemas']['Network'][];
769
866
  };
770
867
  /**
771
868
  * Format: base64
@@ -787,14 +884,14 @@ declare interface components {
787
884
  * @example connected
788
885
  * @enum {string}
789
886
  */
790
- state?: "error" | "disconnected" | "connected";
887
+ state?: 'error' | 'disconnected' | 'connected';
791
888
  };
792
889
  AccountProfile: {
793
890
  /**
794
891
  * @example dev
795
892
  * @enum {string}
796
893
  */
797
- state?: "dev" | "prod" | "local" | "custom";
894
+ state?: 'dev' | 'prod' | 'local' | 'custom';
798
895
  /** @example mqtts://mqtt.example.com:8883 */
799
896
  custom_url?: string;
800
897
  };
@@ -809,45 +906,43 @@ declare interface components {
809
906
  * @example connected
810
907
  * @enum {string}
811
908
  */
812
- state?: "reset" | "initialization" | "disabled" | "enabled" | "connected" | "internal error";
909
+ state?: 'reset' | 'initialization' | 'disabled' | 'enabled' | 'connected' | 'internal error';
813
910
  /** @example 50:DA:D6:FE:DD:A9 */
814
911
  address?: string;
815
912
  /**
816
913
  * @example paired
817
914
  * @enum {string}
818
915
  */
819
- pairing?: "unknown" | "not paired" | "paired";
916
+ pairing?: 'unknown' | 'not paired' | 'paired';
820
917
  };
821
918
  BusySnapshot: {
822
- snapshot: components["schemas"]["BusySnapshotNotStarted"] | components["schemas"]["BusySnapshotInfinite"] | components["schemas"]["BusySnapshotSimple"] | components["schemas"]["BusySnapshotInterval"];
919
+ snapshot: components['schemas']['BusySnapshotNotStarted'] | components['schemas']['BusySnapshotInfinite'] | components['schemas']['BusySnapshotSimple'] | components['schemas']['BusySnapshotInterval'];
920
+ busy_bar_settings: components['schemas']['BusyBarSettings'];
823
921
  /** @example 1761582532251 */
824
922
  snapshot_timestamp_ms: number;
825
923
  };
826
924
  BusySnapshotNotStarted: {
827
- /**
828
- * @example NOT_STARTED
829
- * @enum {string}
830
- */
831
- type: "NOT_STARTED";
925
+ /** @constant */
926
+ type: 'NOT_STARTED';
832
927
  };
833
928
  BusySnapshotInfinite: {
929
+ /** @constant */
930
+ type: 'INFINITE';
834
931
  /**
835
- * @example INFINITE
836
- * @enum {string}
932
+ * Format: uuid
933
+ * @example 00000000-0000-0000-0000-000000000000
837
934
  */
838
- type: "INFINITE";
839
- /** @example 00000000-0000-0000-0000-000000000000 */
840
935
  card_id: string;
841
936
  /** @example false */
842
937
  is_paused: boolean;
843
938
  };
844
939
  BusySnapshotSimple: {
940
+ /** @constant */
941
+ type: 'SIMPLE';
845
942
  /**
846
- * @example SIMPLE
847
- * @enum {string}
943
+ * Format: uuid
944
+ * @example 00000000-0000-0000-0000-000000000000
848
945
  */
849
- type: "SIMPLE";
850
- /** @example 00000000-0000-0000-0000-000000000000 */
851
946
  card_id: string;
852
947
  /** @example 9000 */
853
948
  time_left_ms: number;
@@ -855,12 +950,12 @@ declare interface components {
855
950
  is_paused: boolean;
856
951
  };
857
952
  BusySnapshotInterval: {
953
+ /** @constant */
954
+ type: 'INTERVAL';
858
955
  /**
859
- * @example INTERVAL
860
- * @enum {string}
956
+ * Format: uuid
957
+ * @example 00000000-0000-0000-0000-000000000000
861
958
  */
862
- type: "INTERVAL";
863
- /** @example 00000000-0000-0000-0000-000000000000 */
864
959
  card_id: string;
865
960
  /** @example 1 */
866
961
  current_interval: number;
@@ -870,40 +965,77 @@ declare interface components {
870
965
  current_interval_time_left_ms: number;
871
966
  /** @example false */
872
967
  is_paused: boolean;
873
- interval_settings: components["schemas"]["BusySnapshotIntervalSettings"];
968
+ interval_settings: components['schemas']['BusyTimerIntervalSettings'];
874
969
  };
875
- BusySnapshotIntervalSettings: {
970
+ BusyProfile: {
971
+ /** @example -1 */
972
+ sort_order: number;
973
+ /** @example study */
974
+ title: string;
876
975
  /**
877
- * @example INTERVAL
878
- * @enum {string}
976
+ * Format: uuid
977
+ * @example 00000000-0000-0000-0000-000000000000
879
978
  */
880
- type?: "INTERVAL";
979
+ id: string;
980
+ timer_settings: components['schemas']['BusyTimerInfiniteSettings'] | components['schemas']['BusyTimerSimpleSettings'] | components['schemas']['BusyTimerIntervalSettings'];
981
+ busy_bar_settings: components['schemas']['BusyBarSettings'];
982
+ /** @example 1761582532251 */
983
+ profile_timestamp_ms: number;
984
+ };
985
+ /**
986
+ * @example busy
987
+ * @enum {string}
988
+ */
989
+ BusyProfileSlot: 'busy' | 'custom';
990
+ BusyTimerInfiniteSettings: {
991
+ /** @constant */
992
+ type: 'INFINITE';
993
+ };
994
+ BusyTimerSimpleSettings: {
995
+ /** @constant */
996
+ type: 'SIMPLE';
997
+ /** @example 300000 */
998
+ total_time_ms: number;
999
+ };
1000
+ BusyTimerIntervalSettings: {
1001
+ /** @constant */
1002
+ type: 'INTERVAL';
881
1003
  /** @example 120000 */
882
- interval_work_ms?: number;
1004
+ interval_work_ms: number;
883
1005
  /** @example 60000 */
884
- interval_rest_ms?: number;
1006
+ interval_rest_ms: number;
885
1007
  /** @example 3 */
886
- interval_work_cycles_count?: number;
1008
+ interval_work_cycles_count: number;
887
1009
  /** @example false */
888
- is_autostart_enabled?: boolean;
1010
+ is_autostart_enabled: boolean;
1011
+ };
1012
+ BusyBarSettings: {
1013
+ /** @example on_air */
1014
+ theme: string;
1015
+ /** @example false */
1016
+ show_work_phase_only: boolean;
1017
+ /** @example true */
1018
+ trigger_smart_home: boolean;
889
1019
  };
890
1020
  TimezoneListResponse: {
891
- /**
892
- * @description Time zone name
893
- * @example Bangalore
894
- */
895
- name?: string;
896
- /**
897
- * @description Time zone offset from UTC
898
- * @example +05:30
899
- */
900
- offset?: string;
901
- /**
902
- * @description Time zone abbreviation
903
- * @example IST
904
- */
905
- abbr?: string;
906
- }[];
1021
+ list?: {
1022
+ /**
1023
+ * @description Time zone name
1024
+ * @example Bangalore
1025
+ */
1026
+ name?: string;
1027
+ /**
1028
+ * @description Time zone offset from UTC
1029
+ * @example +05:30
1030
+ */
1031
+ offset?: string;
1032
+ /**
1033
+ * @description Time zone abbreviation
1034
+ * @example IST
1035
+ */
1036
+ abbr?: string;
1037
+ }[];
1038
+ };
907
1039
  MatterCommissionedFabrics: {
908
1040
  /**
909
1041
  * @description Number of Matter smart homes ("fabrics") that this device is linked with ("commissioned into")
@@ -916,7 +1048,7 @@ declare interface components {
916
1048
  * @example completed_successfully
917
1049
  * @enum {string}
918
1050
  */
919
- value?: "never_started" | "started" | "completed_successfully" | "failed";
1051
+ value?: 'never_started' | 'started' | 'completed_successfully' | 'failed';
920
1052
  /**
921
1053
  * @description UTC Unix millisecond timestamp of latest state update. Note: it's a number in a string.
922
1054
  * @example 1769436711000
@@ -947,7 +1079,7 @@ declare interface components {
947
1079
  * @example switch
948
1080
  * @enum {string}
949
1081
  */
950
- type?: "switch";
1082
+ type?: 'switch';
951
1083
  /**
952
1084
  * @description State of device emulated by a Matter endpoint. Boolean for "switch" device type.
953
1085
  * @example false
@@ -957,10 +1089,11 @@ declare interface components {
957
1089
  * @description For the "switch" device type, specifies the value on startup. Never sent by the server, but can be specified by the client.
958
1090
  * @enum {string}
959
1091
  */
960
- startup?: "off" | "on" | "toggle" | "last";
1092
+ startup?: 'off' | 'on' | 'toggle' | 'last';
961
1093
  };
962
1094
  };
963
1095
  responses: never;
1096
+ parameters: never;
964
1097
  requestBodies: never;
965
1098
  headers: never;
966
1099
  pathItems: never;
@@ -977,16 +1110,17 @@ export declare enum DeviceScreen {
977
1110
  BACK = 1
978
1111
  }
979
1112
 
980
- export declare type DisplayBrightnessInfo = components["schemas"]["DisplayBrightnessInfo"];
1113
+ export declare type DisplayBrightnessInfo = components['schemas']['DisplayBrightnessInfo'];
981
1114
 
982
1115
  export declare interface DisplayBrightnessParams extends TimeoutOptions {
983
- front?: Brightness;
984
- back?: Brightness;
1116
+ value?: Brightness;
985
1117
  }
986
1118
 
987
1119
  export declare interface DisplayDrawParams extends TimeoutOptions {
988
- appId: components["schemas"]["DisplayElements"]["app_id"];
989
- elements: components["schemas"]["DisplayElements"]["elements"];
1120
+ appId: components['schemas']['DisplayElements']['app_id'];
1121
+ elements: components['schemas']['DisplayElements']['elements'];
1122
+ /** @default 6 */
1123
+ priority?: components['schemas']['DisplayElements']['priority'];
990
1124
  }
991
1125
 
992
1126
  declare class DisplayMethods {
@@ -994,8 +1128,9 @@ declare class DisplayMethods {
994
1128
  * Draw on display. Starts the Canvas application if not running.
995
1129
  *
996
1130
  * @param {DrawParams} params - Parameters for the draw operation.
997
- * @param {string} params.appId - Application ID.
998
- * @param {any} params.elements - Display elements to draw.
1131
+ * @param {DrawParams['appId']} params.appId - Application ID.
1132
+ * @param {DrawParams['elements']} params.elements - Display elements to draw.
1133
+ * @param {DrawParams['priority']} [params.priority=6] - Priority for the draw request (1-10).
999
1134
  * @param {TimeoutOptions['timeout']} [params.timeout] - Request timeout in milliseconds.
1000
1135
  * @returns {Promise<SuccessResponse>} A promise that resolves on successful draw command.
1001
1136
  */
@@ -1029,15 +1164,14 @@ declare class DisplayMethods {
1029
1164
  * Set display brightness.
1030
1165
  *
1031
1166
  * @param {BrightnessParams} params - Brightness parameters:
1032
- * @param {number|"auto"} [params.front] - Front brightness (0-100 or "auto").
1033
- * @param {number|"auto"} [params.back] - Back brightness (0-100 or "auto").
1167
+ * @param {BrightnessParams['value']} [params.value] - Brightness (0-100 or "auto").
1034
1168
  * @param {TimeoutOptions['timeout']} [params.timeout] - Request timeout in milliseconds.
1035
1169
  * @returns {Promise<SuccessResponse>} A promise that resolves on success.
1036
1170
  */
1037
1171
  DisplayBrightnessSet(this: BusyBar, params: DisplayBrightnessParams): Promise<SuccessResponse>;
1038
1172
  }
1039
1173
 
1040
- declare type Error_2 = components["schemas"]["Error"];
1174
+ declare type Error_2 = components['schemas']['Error'];
1041
1175
  export { Error_2 as Error }
1042
1176
 
1043
1177
  declare type ErrorListener = (payload: ErrorPayload) => void;
@@ -1048,11 +1182,11 @@ declare interface ErrorPayload {
1048
1182
  raw: Error_2 | CloseEvent | Event;
1049
1183
  }
1050
1184
 
1051
- export declare type HttpAccessInfo = components["schemas"]["HttpAccessInfo"];
1185
+ export declare type HttpAccessInfo = components['schemas']['HttpAccessInfo'];
1052
1186
 
1053
1187
  export declare interface HttpAccessParams extends TimeoutOptions {
1054
- mode: operations["setHttpAccess"]["parameters"]["query"]["mode"];
1055
- key: operations["setHttpAccess"]["parameters"]["query"]["key"];
1188
+ mode: operations['setHttpAccess']['parameters']['query']['mode'];
1189
+ key: operations['setHttpAccess']['parameters']['query']['key'];
1056
1190
  }
1057
1191
 
1058
1192
  export declare class Input {
@@ -1102,7 +1236,7 @@ declare class InputMethods {
1102
1236
  InputSend(this: BusyBar, params: InputKeyParams): Promise<SuccessResponse>;
1103
1237
  }
1104
1238
 
1105
- export declare type KeyName = operations["setInputKey"]["parameters"]["query"]["key"];
1239
+ export declare type KeyName = operations['setInputKey']['parameters']['query']['key'];
1106
1240
 
1107
1241
  export declare type KeyValue = 1 | 0;
1108
1242
 
@@ -1133,14 +1267,14 @@ declare class MatterMethods {
1133
1267
  MatterErase(this: BusyBar, params?: TimeoutOptions): Promise<SuccessResponse>;
1134
1268
  }
1135
1269
 
1136
- export declare type MatterPairingInfo = components["schemas"]["MatterCommissioningPayload"];
1270
+ export declare type MatterPairingInfo = components['schemas']['MatterCommissioningPayload'];
1137
1271
 
1138
- export declare type MatterStatus = components["schemas"]["MatterCommissionedFabrics"];
1272
+ export declare type MatterStatus = components['schemas']['MatterCommissionedFabrics'];
1139
1273
 
1140
- export declare type NameInfo = components["schemas"]["NameInfo"];
1274
+ export declare type NameInfo = components['schemas']['NameInfo'];
1141
1275
 
1142
1276
  export declare interface NameParams extends TimeoutOptions {
1143
- name: NameInfo["name"];
1277
+ name: NameInfo['name'];
1144
1278
  }
1145
1279
 
1146
1280
  declare interface operations {
@@ -1159,7 +1293,7 @@ declare interface operations {
1159
1293
  [name: string]: unknown;
1160
1294
  };
1161
1295
  content: {
1162
- "application/json": components["schemas"]["VersionInfo"];
1296
+ 'application/json': components['schemas']['VersionInfo'];
1163
1297
  };
1164
1298
  };
1165
1299
  /** @description Internal server error */
@@ -1168,7 +1302,7 @@ declare interface operations {
1168
1302
  [name: string]: unknown;
1169
1303
  };
1170
1304
  content: {
1171
- "application/json": components["schemas"]["Error"];
1305
+ 'application/json': components['schemas']['Error'];
1172
1306
  };
1173
1307
  };
1174
1308
  };
@@ -1188,7 +1322,7 @@ declare interface operations {
1188
1322
  [name: string]: unknown;
1189
1323
  };
1190
1324
  content: {
1191
- "application/json": components["schemas"]["HttpAccessInfo"];
1325
+ 'application/json': components['schemas']['HttpAccessInfo'];
1192
1326
  };
1193
1327
  };
1194
1328
  };
@@ -1200,7 +1334,7 @@ declare interface operations {
1200
1334
  * @description Access mode
1201
1335
  * @example key
1202
1336
  */
1203
- mode: "disabled" | "enabled" | "key";
1337
+ mode: 'disabled' | 'enabled' | 'key';
1204
1338
  /**
1205
1339
  * @description Access key (4-10 digits length)
1206
1340
  * @example 12345678
@@ -1219,7 +1353,7 @@ declare interface operations {
1219
1353
  [name: string]: unknown;
1220
1354
  };
1221
1355
  content: {
1222
- "application/json": components["schemas"]["SuccessResponse"];
1356
+ 'application/json': components['schemas']['SuccessResponse'];
1223
1357
  };
1224
1358
  };
1225
1359
  /** @description Invalid request data */
@@ -1228,7 +1362,7 @@ declare interface operations {
1228
1362
  [name: string]: unknown;
1229
1363
  };
1230
1364
  content: {
1231
- "application/json": components["schemas"]["Error"];
1365
+ 'application/json': components['schemas']['Error'];
1232
1366
  };
1233
1367
  };
1234
1368
  };
@@ -1242,7 +1376,7 @@ declare interface operations {
1242
1376
  };
1243
1377
  requestBody: {
1244
1378
  content: {
1245
- "application/octet-stream": string;
1379
+ 'application/octet-stream': string;
1246
1380
  };
1247
1381
  };
1248
1382
  responses: {
@@ -1252,7 +1386,7 @@ declare interface operations {
1252
1386
  [name: string]: unknown;
1253
1387
  };
1254
1388
  content: {
1255
- "application/json": components["schemas"]["SuccessResponse"];
1389
+ 'application/json': components['schemas']['SuccessResponse'];
1256
1390
  };
1257
1391
  };
1258
1392
  /** @description Invalid parameters, invalid TAR file, or update preparation failed. */
@@ -1261,7 +1395,7 @@ declare interface operations {
1261
1395
  [name: string]: unknown;
1262
1396
  };
1263
1397
  content: {
1264
- "application/json": components["schemas"]["Error"];
1398
+ 'application/json': components['schemas']['Error'];
1265
1399
  };
1266
1400
  };
1267
1401
  /** @description Update package too large. */
@@ -1270,7 +1404,7 @@ declare interface operations {
1270
1404
  [name: string]: unknown;
1271
1405
  };
1272
1406
  content: {
1273
- "application/json": components["schemas"]["Error"];
1407
+ 'application/json': components['schemas']['Error'];
1274
1408
  };
1275
1409
  };
1276
1410
  /** @description Internal server error during update process. */
@@ -1279,7 +1413,7 @@ declare interface operations {
1279
1413
  [name: string]: unknown;
1280
1414
  };
1281
1415
  content: {
1282
- "application/json": components["schemas"]["Error"];
1416
+ 'application/json': components['schemas']['Error'];
1283
1417
  };
1284
1418
  };
1285
1419
  };
@@ -1299,7 +1433,7 @@ declare interface operations {
1299
1433
  [name: string]: unknown;
1300
1434
  };
1301
1435
  content: {
1302
- "application/json": components["schemas"]["SuccessResponse"];
1436
+ 'application/json': components['schemas']['SuccessResponse'];
1303
1437
  };
1304
1438
  };
1305
1439
  /** @description Update check already in progress */
@@ -1308,7 +1442,7 @@ declare interface operations {
1308
1442
  [name: string]: unknown;
1309
1443
  };
1310
1444
  content: {
1311
- "application/json": components["schemas"]["Error"];
1445
+ 'application/json': components['schemas']['Error'];
1312
1446
  };
1313
1447
  };
1314
1448
  /** @description Failed to start update check */
@@ -1317,7 +1451,7 @@ declare interface operations {
1317
1451
  [name: string]: unknown;
1318
1452
  };
1319
1453
  content: {
1320
- "application/json": components["schemas"]["Error"];
1454
+ 'application/json': components['schemas']['Error'];
1321
1455
  };
1322
1456
  };
1323
1457
  };
@@ -1337,7 +1471,7 @@ declare interface operations {
1337
1471
  [name: string]: unknown;
1338
1472
  };
1339
1473
  content: {
1340
- "application/json": components["schemas"]["UpdateStatus"];
1474
+ 'application/json': components['schemas']['UpdateStatus'];
1341
1475
  };
1342
1476
  };
1343
1477
  };
@@ -1363,7 +1497,7 @@ declare interface operations {
1363
1497
  [name: string]: unknown;
1364
1498
  };
1365
1499
  content: {
1366
- "application/json": {
1500
+ 'application/json': {
1367
1501
  /** @description Changelog text */
1368
1502
  changelog?: string;
1369
1503
  };
@@ -1375,7 +1509,7 @@ declare interface operations {
1375
1509
  [name: string]: unknown;
1376
1510
  };
1377
1511
  content: {
1378
- "application/json": components["schemas"]["Error"];
1512
+ 'application/json': components['schemas']['Error'];
1379
1513
  };
1380
1514
  };
1381
1515
  };
@@ -1401,7 +1535,7 @@ declare interface operations {
1401
1535
  [name: string]: unknown;
1402
1536
  };
1403
1537
  content: {
1404
- "application/json": components["schemas"]["SuccessResponse"];
1538
+ 'application/json': components['schemas']['SuccessResponse'];
1405
1539
  };
1406
1540
  };
1407
1541
  /** @description Version parameter missing, update not available, or version mismatch */
@@ -1410,7 +1544,7 @@ declare interface operations {
1410
1544
  [name: string]: unknown;
1411
1545
  };
1412
1546
  content: {
1413
- "application/json": components["schemas"]["Error"];
1547
+ 'application/json': components['schemas']['Error'];
1414
1548
  };
1415
1549
  };
1416
1550
  /** @description Update already in progress */
@@ -1419,7 +1553,7 @@ declare interface operations {
1419
1553
  [name: string]: unknown;
1420
1554
  };
1421
1555
  content: {
1422
- "application/json": components["schemas"]["Error"];
1556
+ 'application/json': components['schemas']['Error'];
1423
1557
  };
1424
1558
  };
1425
1559
  /** @description Failed to start background installation */
@@ -1428,7 +1562,7 @@ declare interface operations {
1428
1562
  [name: string]: unknown;
1429
1563
  };
1430
1564
  content: {
1431
- "application/json": components["schemas"]["Error"];
1565
+ 'application/json': components['schemas']['Error'];
1432
1566
  };
1433
1567
  };
1434
1568
  /** @description Battery too low for update */
@@ -1437,7 +1571,7 @@ declare interface operations {
1437
1571
  [name: string]: unknown;
1438
1572
  };
1439
1573
  content: {
1440
- "application/json": components["schemas"]["Error"];
1574
+ 'application/json': components['schemas']['Error'];
1441
1575
  };
1442
1576
  };
1443
1577
  };
@@ -1457,7 +1591,78 @@ declare interface operations {
1457
1591
  [name: string]: unknown;
1458
1592
  };
1459
1593
  content: {
1460
- "application/json": components["schemas"]["SuccessResponse"];
1594
+ 'application/json': components['schemas']['SuccessResponse'];
1595
+ };
1596
+ };
1597
+ };
1598
+ };
1599
+ getAutoupdateSettings: {
1600
+ parameters: {
1601
+ query?: never;
1602
+ header?: never;
1603
+ path?: never;
1604
+ cookie?: never;
1605
+ };
1606
+ requestBody?: never;
1607
+ responses: {
1608
+ /** @description Settings retrieved successfully */
1609
+ 200: {
1610
+ headers: {
1611
+ [name: string]: unknown;
1612
+ };
1613
+ content: {
1614
+ 'application/json': components['schemas']['AutoupdateSettings'];
1615
+ };
1616
+ };
1617
+ /** @description Internal server error */
1618
+ 500: {
1619
+ headers: {
1620
+ [name: string]: unknown;
1621
+ };
1622
+ content: {
1623
+ 'application/json': components['schemas']['Error'];
1624
+ };
1625
+ };
1626
+ };
1627
+ };
1628
+ setAutoupdateSettings: {
1629
+ parameters: {
1630
+ query?: never;
1631
+ header?: never;
1632
+ path?: never;
1633
+ cookie?: never;
1634
+ };
1635
+ requestBody: {
1636
+ content: {
1637
+ 'application/json': components['schemas']['AutoupdateSettings'];
1638
+ };
1639
+ };
1640
+ responses: {
1641
+ /** @description Settings updated successfully */
1642
+ 200: {
1643
+ headers: {
1644
+ [name: string]: unknown;
1645
+ };
1646
+ content: {
1647
+ 'application/json': components['schemas']['SuccessResponse'];
1648
+ };
1649
+ };
1650
+ /** @description Invalid time format (expected HH:MM) */
1651
+ 400: {
1652
+ headers: {
1653
+ [name: string]: unknown;
1654
+ };
1655
+ content: {
1656
+ 'application/json': components['schemas']['Error'];
1657
+ };
1658
+ };
1659
+ /** @description Failed to apply settings */
1660
+ 500: {
1661
+ headers: {
1662
+ [name: string]: unknown;
1663
+ };
1664
+ content: {
1665
+ 'application/json': components['schemas']['Error'];
1461
1666
  };
1462
1667
  };
1463
1668
  };
@@ -1482,7 +1687,7 @@ declare interface operations {
1482
1687
  };
1483
1688
  requestBody: {
1484
1689
  content: {
1485
- "application/octet-stream": string;
1690
+ 'application/octet-stream': string;
1486
1691
  };
1487
1692
  };
1488
1693
  responses: {
@@ -1492,7 +1697,7 @@ declare interface operations {
1492
1697
  [name: string]: unknown;
1493
1698
  };
1494
1699
  content: {
1495
- "application/json": components["schemas"]["SuccessResponse"];
1700
+ 'application/json': components['schemas']['SuccessResponse'];
1496
1701
  };
1497
1702
  };
1498
1703
  /** @description Invalid parameters or upload failed */
@@ -1501,7 +1706,7 @@ declare interface operations {
1501
1706
  [name: string]: unknown;
1502
1707
  };
1503
1708
  content: {
1504
- "application/json": components["schemas"]["Error"];
1709
+ 'application/json': components['schemas']['Error'];
1505
1710
  };
1506
1711
  };
1507
1712
  /** @description File too large */
@@ -1510,7 +1715,7 @@ declare interface operations {
1510
1715
  [name: string]: unknown;
1511
1716
  };
1512
1717
  content: {
1513
- "application/json": components["schemas"]["Error"];
1718
+ 'application/json': components['schemas']['Error'];
1514
1719
  };
1515
1720
  };
1516
1721
  };
@@ -1536,16 +1741,25 @@ declare interface operations {
1536
1741
  [name: string]: unknown;
1537
1742
  };
1538
1743
  content: {
1539
- "application/json": components["schemas"]["SuccessResponse"];
1744
+ 'application/json': components['schemas']['SuccessResponse'];
1540
1745
  };
1541
1746
  };
1542
- /** @description Invalid app_id or deletion failed */
1747
+ /** @description Invalid request parameters */
1543
1748
  400: {
1544
1749
  headers: {
1545
1750
  [name: string]: unknown;
1546
1751
  };
1547
1752
  content: {
1548
- "application/json": components["schemas"]["Error"];
1753
+ 'application/json': components['schemas']['Error'];
1754
+ };
1755
+ };
1756
+ /** @description Delete failed */
1757
+ 500: {
1758
+ headers: {
1759
+ [name: string]: unknown;
1760
+ };
1761
+ content: {
1762
+ 'application/json': components['schemas']['Error'];
1549
1763
  };
1550
1764
  };
1551
1765
  };
@@ -1565,7 +1779,7 @@ declare interface operations {
1565
1779
  };
1566
1780
  requestBody: {
1567
1781
  content: {
1568
- "application/octet-stream": string;
1782
+ 'application/octet-stream': string;
1569
1783
  };
1570
1784
  };
1571
1785
  responses: {
@@ -1575,7 +1789,7 @@ declare interface operations {
1575
1789
  [name: string]: unknown;
1576
1790
  };
1577
1791
  content: {
1578
- "application/json": components["schemas"]["SuccessResponse"];
1792
+ 'application/json': components['schemas']['SuccessResponse'];
1579
1793
  };
1580
1794
  };
1581
1795
  /** @description Invalid parameters or upload failed */
@@ -1584,7 +1798,7 @@ declare interface operations {
1584
1798
  [name: string]: unknown;
1585
1799
  };
1586
1800
  content: {
1587
- "application/json": components["schemas"]["Error"];
1801
+ 'application/json': components['schemas']['Error'];
1588
1802
  };
1589
1803
  };
1590
1804
  /** @description File too large */
@@ -1593,7 +1807,7 @@ declare interface operations {
1593
1807
  [name: string]: unknown;
1594
1808
  };
1595
1809
  content: {
1596
- "application/json": components["schemas"]["Error"];
1810
+ 'application/json': components['schemas']['Error'];
1597
1811
  };
1598
1812
  };
1599
1813
  };
@@ -1619,7 +1833,7 @@ declare interface operations {
1619
1833
  [name: string]: unknown;
1620
1834
  };
1621
1835
  content: {
1622
- "application/octet-stream": string;
1836
+ 'application/octet-stream': string;
1623
1837
  };
1624
1838
  };
1625
1839
  /** @description Invalid parameters or file not exists */
@@ -1628,7 +1842,7 @@ declare interface operations {
1628
1842
  [name: string]: unknown;
1629
1843
  };
1630
1844
  content: {
1631
- "application/json": components["schemas"]["Error"];
1845
+ 'application/json': components['schemas']['Error'];
1632
1846
  };
1633
1847
  };
1634
1848
  };
@@ -1654,7 +1868,7 @@ declare interface operations {
1654
1868
  [name: string]: unknown;
1655
1869
  };
1656
1870
  content: {
1657
- "application/json": components["schemas"]["StorageList"];
1871
+ 'application/json': components['schemas']['StorageList'];
1658
1872
  };
1659
1873
  };
1660
1874
  /** @description Invalid parameters or directory does not exist */
@@ -1663,7 +1877,7 @@ declare interface operations {
1663
1877
  [name: string]: unknown;
1664
1878
  };
1665
1879
  content: {
1666
- "application/json": components["schemas"]["Error"];
1880
+ 'application/json': components['schemas']['Error'];
1667
1881
  };
1668
1882
  };
1669
1883
  };
@@ -1689,7 +1903,7 @@ declare interface operations {
1689
1903
  [name: string]: unknown;
1690
1904
  };
1691
1905
  content: {
1692
- "application/json": components["schemas"]["SuccessResponse"];
1906
+ 'application/json': components['schemas']['SuccessResponse'];
1693
1907
  };
1694
1908
  };
1695
1909
  /** @description Invalid path or deletion failed */
@@ -1698,7 +1912,7 @@ declare interface operations {
1698
1912
  [name: string]: unknown;
1699
1913
  };
1700
1914
  content: {
1701
- "application/json": components["schemas"]["Error"];
1915
+ 'application/json': components['schemas']['Error'];
1702
1916
  };
1703
1917
  };
1704
1918
  };
@@ -1724,7 +1938,7 @@ declare interface operations {
1724
1938
  [name: string]: unknown;
1725
1939
  };
1726
1940
  content: {
1727
- "application/json": components["schemas"]["SuccessResponse"];
1941
+ 'application/json': components['schemas']['SuccessResponse'];
1728
1942
  };
1729
1943
  };
1730
1944
  /** @description Invalid path or creation failed */
@@ -1733,7 +1947,47 @@ declare interface operations {
1733
1947
  [name: string]: unknown;
1734
1948
  };
1735
1949
  content: {
1736
- "application/json": components["schemas"]["Error"];
1950
+ 'application/json': components['schemas']['Error'];
1951
+ };
1952
+ };
1953
+ };
1954
+ };
1955
+ RenameStorageFile: {
1956
+ parameters: {
1957
+ query: {
1958
+ /**
1959
+ * @description Old location path
1960
+ * @example /ext/old_name.txt
1961
+ */
1962
+ path: string;
1963
+ /**
1964
+ * @description New location path
1965
+ * @example /ext/new_name.txt
1966
+ */
1967
+ new_path: string;
1968
+ };
1969
+ header?: never;
1970
+ path?: never;
1971
+ cookie?: never;
1972
+ };
1973
+ requestBody?: never;
1974
+ responses: {
1975
+ /** @description Renamed successfully */
1976
+ 200: {
1977
+ headers: {
1978
+ [name: string]: unknown;
1979
+ };
1980
+ content: {
1981
+ 'application/json': components['schemas']['SuccessResponse'];
1982
+ };
1983
+ };
1984
+ /** @description Invalid path or operation failed */
1985
+ 400: {
1986
+ headers: {
1987
+ [name: string]: unknown;
1988
+ };
1989
+ content: {
1990
+ 'application/json': components['schemas']['Error'];
1737
1991
  };
1738
1992
  };
1739
1993
  };
@@ -1753,7 +2007,7 @@ declare interface operations {
1753
2007
  [name: string]: unknown;
1754
2008
  };
1755
2009
  content: {
1756
- "application/json": components["schemas"]["StorageStatus"];
2010
+ 'application/json': components['schemas']['StorageStatus'];
1757
2011
  };
1758
2012
  };
1759
2013
  /** @description Invalid parameters or storage doesn't exist */
@@ -1762,7 +2016,7 @@ declare interface operations {
1762
2016
  [name: string]: unknown;
1763
2017
  };
1764
2018
  content: {
1765
- "application/json": components["schemas"]["Error"];
2019
+ 'application/json': components['schemas']['Error'];
1766
2020
  };
1767
2021
  };
1768
2022
  };
@@ -1776,7 +2030,7 @@ declare interface operations {
1776
2030
  };
1777
2031
  requestBody: {
1778
2032
  content: {
1779
- "application/json": components["schemas"]["DisplayElements"];
2033
+ 'application/json': components['schemas']['DisplayElements'];
1780
2034
  };
1781
2035
  };
1782
2036
  responses: {
@@ -1786,7 +2040,7 @@ declare interface operations {
1786
2040
  [name: string]: unknown;
1787
2041
  };
1788
2042
  content: {
1789
- "application/json": components["schemas"]["SuccessResponse"];
2043
+ 'application/json': components['schemas']['SuccessResponse'];
1790
2044
  };
1791
2045
  };
1792
2046
  /** @description Invalid drawing data */
@@ -1795,7 +2049,16 @@ declare interface operations {
1795
2049
  [name: string]: unknown;
1796
2050
  };
1797
2051
  content: {
1798
- "application/json": components["schemas"]["Error"];
2052
+ 'application/json': components['schemas']['Error'];
2053
+ };
2054
+ };
2055
+ /** @description Requested priority level is below that of currently active app */
2056
+ 409: {
2057
+ headers: {
2058
+ [name: string]: unknown;
2059
+ };
2060
+ content: {
2061
+ 'application/json': components['schemas']['Error'];
1799
2062
  };
1800
2063
  };
1801
2064
  /** @description Display error */
@@ -1804,7 +2067,7 @@ declare interface operations {
1804
2067
  [name: string]: unknown;
1805
2068
  };
1806
2069
  content: {
1807
- "application/json": components["schemas"]["Error"];
2070
+ 'application/json': components['schemas']['Error'];
1808
2071
  };
1809
2072
  };
1810
2073
  };
@@ -1830,7 +2093,7 @@ declare interface operations {
1830
2093
  [name: string]: unknown;
1831
2094
  };
1832
2095
  content: {
1833
- "application/json": components["schemas"]["SuccessResponse"];
2096
+ 'application/json': components['schemas']['SuccessResponse'];
1834
2097
  };
1835
2098
  };
1836
2099
  /** @description Display error */
@@ -1839,7 +2102,7 @@ declare interface operations {
1839
2102
  [name: string]: unknown;
1840
2103
  };
1841
2104
  content: {
1842
- "application/json": components["schemas"]["Error"];
2105
+ 'application/json': components['schemas']['Error'];
1843
2106
  };
1844
2107
  };
1845
2108
  };
@@ -1859,7 +2122,7 @@ declare interface operations {
1859
2122
  [name: string]: unknown;
1860
2123
  };
1861
2124
  content: {
1862
- "application/json": components["schemas"]["DisplayBrightnessInfo"];
2125
+ 'application/json': components['schemas']['DisplayBrightnessInfo'];
1863
2126
  };
1864
2127
  };
1865
2128
  };
@@ -1868,15 +2131,10 @@ declare interface operations {
1868
2131
  parameters: {
1869
2132
  query?: {
1870
2133
  /**
1871
- * @description Front display brightness (0-100/auto)
1872
- * @example auto
1873
- */
1874
- front?: string;
1875
- /**
1876
- * @description Back display brightness (0-100/auto)
2134
+ * @description Displays brightness (0-100/auto)
1877
2135
  * @example 50
1878
2136
  */
1879
- back?: string;
2137
+ value?: string;
1880
2138
  };
1881
2139
  header?: never;
1882
2140
  path?: never;
@@ -1890,7 +2148,7 @@ declare interface operations {
1890
2148
  [name: string]: unknown;
1891
2149
  };
1892
2150
  content: {
1893
- "application/json": components["schemas"]["SuccessResponse"];
2151
+ 'application/json': components['schemas']['SuccessResponse'];
1894
2152
  };
1895
2153
  };
1896
2154
  /** @description Invalid request data */
@@ -1899,7 +2157,7 @@ declare interface operations {
1899
2157
  [name: string]: unknown;
1900
2158
  };
1901
2159
  content: {
1902
- "application/json": components["schemas"]["Error"];
2160
+ 'application/json': components['schemas']['Error'];
1903
2161
  };
1904
2162
  };
1905
2163
  };
@@ -1930,7 +2188,7 @@ declare interface operations {
1930
2188
  [name: string]: unknown;
1931
2189
  };
1932
2190
  content: {
1933
- "application/json": components["schemas"]["SuccessResponse"];
2191
+ 'application/json': components['schemas']['SuccessResponse'];
1934
2192
  };
1935
2193
  };
1936
2194
  /** @description Invalid file path or file not found */
@@ -1939,7 +2197,7 @@ declare interface operations {
1939
2197
  [name: string]: unknown;
1940
2198
  };
1941
2199
  content: {
1942
- "application/json": components["schemas"]["Error"];
2200
+ 'application/json': components['schemas']['Error'];
1943
2201
  };
1944
2202
  };
1945
2203
  /** @description Audio system error */
@@ -1948,7 +2206,7 @@ declare interface operations {
1948
2206
  [name: string]: unknown;
1949
2207
  };
1950
2208
  content: {
1951
- "application/json": components["schemas"]["Error"];
2209
+ 'application/json': components['schemas']['Error'];
1952
2210
  };
1953
2211
  };
1954
2212
  };
@@ -1968,7 +2226,7 @@ declare interface operations {
1968
2226
  [name: string]: unknown;
1969
2227
  };
1970
2228
  content: {
1971
- "application/json": components["schemas"]["SuccessResponse"];
2229
+ 'application/json': components['schemas']['SuccessResponse'];
1972
2230
  };
1973
2231
  };
1974
2232
  /** @description Audio system error */
@@ -1977,7 +2235,7 @@ declare interface operations {
1977
2235
  [name: string]: unknown;
1978
2236
  };
1979
2237
  content: {
1980
- "application/json": components["schemas"]["Error"];
2238
+ 'application/json': components['schemas']['Error'];
1981
2239
  };
1982
2240
  };
1983
2241
  };
@@ -1997,7 +2255,7 @@ declare interface operations {
1997
2255
  [name: string]: unknown;
1998
2256
  };
1999
2257
  content: {
2000
- "application/json": components["schemas"]["AudioVolumeInfo"];
2258
+ 'application/json': components['schemas']['AudioVolumeInfo'];
2001
2259
  };
2002
2260
  };
2003
2261
  };
@@ -2023,7 +2281,7 @@ declare interface operations {
2023
2281
  [name: string]: unknown;
2024
2282
  };
2025
2283
  content: {
2026
- "application/json": components["schemas"]["SuccessResponse"];
2284
+ 'application/json': components['schemas']['SuccessResponse'];
2027
2285
  };
2028
2286
  };
2029
2287
  /** @description Invalid request data */
@@ -2032,7 +2290,7 @@ declare interface operations {
2032
2290
  [name: string]: unknown;
2033
2291
  };
2034
2292
  content: {
2035
- "application/json": components["schemas"]["Error"];
2293
+ 'application/json': components['schemas']['Error'];
2036
2294
  };
2037
2295
  };
2038
2296
  };
@@ -2059,7 +2317,7 @@ declare interface operations {
2059
2317
  [name: string]: unknown;
2060
2318
  };
2061
2319
  content: {
2062
- "application/json": components["schemas"]["Error"];
2320
+ 'application/json': components['schemas']['Error'];
2063
2321
  };
2064
2322
  };
2065
2323
  /** @description Upgrade required */
@@ -2068,7 +2326,7 @@ declare interface operations {
2068
2326
  [name: string]: unknown;
2069
2327
  };
2070
2328
  content: {
2071
- "application/json": components["schemas"]["Error"];
2329
+ 'application/json': components['schemas']['Error'];
2072
2330
  };
2073
2331
  };
2074
2332
  };
@@ -2080,7 +2338,7 @@ declare interface operations {
2080
2338
  * @description Key name
2081
2339
  * @example ok
2082
2340
  */
2083
- key: "up" | "down" | "ok" | "back" | "start" | "busy" | "custom" | "off" | "apps" | "settings";
2341
+ key: 'up' | 'down' | 'ok' | 'back' | 'start' | 'busy' | 'custom' | 'off' | 'apps' | 'settings';
2084
2342
  };
2085
2343
  header?: never;
2086
2344
  path?: never;
@@ -2094,7 +2352,7 @@ declare interface operations {
2094
2352
  [name: string]: unknown;
2095
2353
  };
2096
2354
  content: {
2097
- "application/json": components["schemas"]["SuccessResponse"];
2355
+ 'application/json': components['schemas']['SuccessResponse'];
2098
2356
  };
2099
2357
  };
2100
2358
  /** @description Invalid request data */
@@ -2103,7 +2361,7 @@ declare interface operations {
2103
2361
  [name: string]: unknown;
2104
2362
  };
2105
2363
  content: {
2106
- "application/json": components["schemas"]["Error"];
2364
+ 'application/json': components['schemas']['Error'];
2107
2365
  };
2108
2366
  };
2109
2367
  };
@@ -2123,7 +2381,7 @@ declare interface operations {
2123
2381
  [name: string]: unknown;
2124
2382
  };
2125
2383
  content: {
2126
- "application/json": components["schemas"]["Status"];
2384
+ 'application/json': components['schemas']['Status'];
2127
2385
  };
2128
2386
  };
2129
2387
  /** @description Internal server error */
@@ -2132,7 +2390,65 @@ declare interface operations {
2132
2390
  [name: string]: unknown;
2133
2391
  };
2134
2392
  content: {
2135
- "application/json": components["schemas"]["Error"];
2393
+ 'application/json': components['schemas']['Error'];
2394
+ };
2395
+ };
2396
+ };
2397
+ };
2398
+ getStatusDevice: {
2399
+ parameters: {
2400
+ query?: never;
2401
+ header?: never;
2402
+ path?: never;
2403
+ cookie?: never;
2404
+ };
2405
+ requestBody?: never;
2406
+ responses: {
2407
+ /** @description Information retrieved successfully */
2408
+ 200: {
2409
+ headers: {
2410
+ [name: string]: unknown;
2411
+ };
2412
+ content: {
2413
+ 'application/json': components['schemas']['StatusDevice'];
2414
+ };
2415
+ };
2416
+ /** @description Internal server error */
2417
+ 500: {
2418
+ headers: {
2419
+ [name: string]: unknown;
2420
+ };
2421
+ content: {
2422
+ 'application/json': components['schemas']['Error'];
2423
+ };
2424
+ };
2425
+ };
2426
+ };
2427
+ getStatusFirmware: {
2428
+ parameters: {
2429
+ query?: never;
2430
+ header?: never;
2431
+ path?: never;
2432
+ cookie?: never;
2433
+ };
2434
+ requestBody?: never;
2435
+ responses: {
2436
+ /** @description Information retrieved successfully */
2437
+ 200: {
2438
+ headers: {
2439
+ [name: string]: unknown;
2440
+ };
2441
+ content: {
2442
+ 'application/json': components['schemas']['StatusFirmware'];
2443
+ };
2444
+ };
2445
+ /** @description Internal server error */
2446
+ 500: {
2447
+ headers: {
2448
+ [name: string]: unknown;
2449
+ };
2450
+ content: {
2451
+ 'application/json': components['schemas']['Error'];
2136
2452
  };
2137
2453
  };
2138
2454
  };
@@ -2152,7 +2468,7 @@ declare interface operations {
2152
2468
  [name: string]: unknown;
2153
2469
  };
2154
2470
  content: {
2155
- "application/json": components["schemas"]["StatusSystem"];
2471
+ 'application/json': components['schemas']['StatusSystem'];
2156
2472
  };
2157
2473
  };
2158
2474
  /** @description Internal server error */
@@ -2161,7 +2477,7 @@ declare interface operations {
2161
2477
  [name: string]: unknown;
2162
2478
  };
2163
2479
  content: {
2164
- "application/json": components["schemas"]["Error"];
2480
+ 'application/json': components['schemas']['Error'];
2165
2481
  };
2166
2482
  };
2167
2483
  };
@@ -2181,7 +2497,7 @@ declare interface operations {
2181
2497
  [name: string]: unknown;
2182
2498
  };
2183
2499
  content: {
2184
- "application/json": components["schemas"]["StatusPower"];
2500
+ 'application/json': components['schemas']['StatusPower'];
2185
2501
  };
2186
2502
  };
2187
2503
  /** @description Internal server error */
@@ -2190,7 +2506,7 @@ declare interface operations {
2190
2506
  [name: string]: unknown;
2191
2507
  };
2192
2508
  content: {
2193
- "application/json": components["schemas"]["Error"];
2509
+ 'application/json': components['schemas']['Error'];
2194
2510
  };
2195
2511
  };
2196
2512
  };
@@ -2217,7 +2533,7 @@ declare interface operations {
2217
2533
  [name: string]: unknown;
2218
2534
  };
2219
2535
  content: {
2220
- "application/json": components["schemas"]["Error"];
2536
+ 'application/json': components['schemas']['Error'];
2221
2537
  };
2222
2538
  };
2223
2539
  };
@@ -2237,7 +2553,7 @@ declare interface operations {
2237
2553
  [name: string]: unknown;
2238
2554
  };
2239
2555
  content: {
2240
- "application/json": components["schemas"]["TimestampInfo"];
2556
+ 'application/json': components['schemas']['TimestampInfo'];
2241
2557
  };
2242
2558
  };
2243
2559
  /** @description Bad request */
@@ -2246,7 +2562,7 @@ declare interface operations {
2246
2562
  [name: string]: unknown;
2247
2563
  };
2248
2564
  content: {
2249
- "application/json": components["schemas"]["Error"];
2565
+ 'application/json': components['schemas']['Error'];
2250
2566
  };
2251
2567
  };
2252
2568
  };
@@ -2266,7 +2582,7 @@ declare interface operations {
2266
2582
  [name: string]: unknown;
2267
2583
  };
2268
2584
  content: {
2269
- "application/json": components["schemas"]["SuccessResponse"];
2585
+ 'application/json': components['schemas']['SuccessResponse'];
2270
2586
  };
2271
2587
  };
2272
2588
  };
@@ -2286,7 +2602,7 @@ declare interface operations {
2286
2602
  [name: string]: unknown;
2287
2603
  };
2288
2604
  content: {
2289
- "application/json": components["schemas"]["AccountLink"];
2605
+ 'application/json': components['schemas']['AccountLink'];
2290
2606
  };
2291
2607
  };
2292
2608
  /** @description Bad request */
@@ -2295,7 +2611,7 @@ declare interface operations {
2295
2611
  [name: string]: unknown;
2296
2612
  };
2297
2613
  content: {
2298
- "application/json": components["schemas"]["Error"];
2614
+ 'application/json': components['schemas']['Error'];
2299
2615
  };
2300
2616
  };
2301
2617
  };
@@ -2315,7 +2631,7 @@ declare interface operations {
2315
2631
  [name: string]: unknown;
2316
2632
  };
2317
2633
  content: {
2318
- "application/json": components["schemas"]["AccountInfo"];
2634
+ 'application/json': components['schemas']['AccountInfo'];
2319
2635
  };
2320
2636
  };
2321
2637
  };
@@ -2335,7 +2651,7 @@ declare interface operations {
2335
2651
  [name: string]: unknown;
2336
2652
  };
2337
2653
  content: {
2338
- "application/json": components["schemas"]["AccountState"];
2654
+ 'application/json': components['schemas']['AccountState'];
2339
2655
  };
2340
2656
  };
2341
2657
  };
@@ -2355,7 +2671,7 @@ declare interface operations {
2355
2671
  [name: string]: unknown;
2356
2672
  };
2357
2673
  content: {
2358
- "application/json": components["schemas"]["AccountProfile"];
2674
+ 'application/json': components['schemas']['AccountProfile'];
2359
2675
  };
2360
2676
  };
2361
2677
  };
@@ -2364,7 +2680,7 @@ declare interface operations {
2364
2680
  parameters: {
2365
2681
  query: {
2366
2682
  /** @example dev */
2367
- profile: "dev" | "prod" | "local" | "custom";
2683
+ profile: 'dev' | 'prod' | 'local' | 'custom';
2368
2684
  custom_url?: string;
2369
2685
  };
2370
2686
  header?: never;
@@ -2379,7 +2695,7 @@ declare interface operations {
2379
2695
  [name: string]: unknown;
2380
2696
  };
2381
2697
  content: {
2382
- "application/json": components["schemas"]["SuccessResponse"];
2698
+ 'application/json': components['schemas']['SuccessResponse'];
2383
2699
  };
2384
2700
  };
2385
2701
  /** @description Bad request */
@@ -2388,7 +2704,7 @@ declare interface operations {
2388
2704
  [name: string]: unknown;
2389
2705
  };
2390
2706
  content: {
2391
- "application/json": components["schemas"]["Error"];
2707
+ 'application/json': components['schemas']['Error'];
2392
2708
  };
2393
2709
  };
2394
2710
  };
@@ -2414,7 +2730,7 @@ declare interface operations {
2414
2730
  [name: string]: unknown;
2415
2731
  };
2416
2732
  content: {
2417
- "application/json": components["schemas"]["SuccessResponse"];
2733
+ 'application/json': components['schemas']['SuccessResponse'];
2418
2734
  };
2419
2735
  };
2420
2736
  /** @description Invalid timestamp format or value */
@@ -2423,7 +2739,7 @@ declare interface operations {
2423
2739
  [name: string]: unknown;
2424
2740
  };
2425
2741
  content: {
2426
- "application/json": components["schemas"]["Error"];
2742
+ 'application/json': components['schemas']['Error'];
2427
2743
  };
2428
2744
  };
2429
2745
  };
@@ -2443,7 +2759,7 @@ declare interface operations {
2443
2759
  [name: string]: unknown;
2444
2760
  };
2445
2761
  content: {
2446
- "application/json": components["schemas"]["TimezoneInfo"];
2762
+ 'application/json': components['schemas']['TimezoneInfo'];
2447
2763
  };
2448
2764
  };
2449
2765
  /** @description Invalid timezone offset */
@@ -2452,7 +2768,7 @@ declare interface operations {
2452
2768
  [name: string]: unknown;
2453
2769
  };
2454
2770
  content: {
2455
- "application/json": components["schemas"]["Error"];
2771
+ 'application/json': components['schemas']['Error'];
2456
2772
  };
2457
2773
  };
2458
2774
  };
@@ -2478,7 +2794,7 @@ declare interface operations {
2478
2794
  [name: string]: unknown;
2479
2795
  };
2480
2796
  content: {
2481
- "application/json": components["schemas"]["SuccessResponse"];
2797
+ 'application/json': components['schemas']['SuccessResponse'];
2482
2798
  };
2483
2799
  };
2484
2800
  /** @description Invalid timezone offset */
@@ -2487,7 +2803,7 @@ declare interface operations {
2487
2803
  [name: string]: unknown;
2488
2804
  };
2489
2805
  content: {
2490
- "application/json": components["schemas"]["Error"];
2806
+ 'application/json': components['schemas']['Error'];
2491
2807
  };
2492
2808
  };
2493
2809
  };
@@ -2507,7 +2823,7 @@ declare interface operations {
2507
2823
  [name: string]: unknown;
2508
2824
  };
2509
2825
  content: {
2510
- "application/json": components["schemas"]["TimezoneListResponse"];
2826
+ 'application/json': components['schemas']['TimezoneListResponse'];
2511
2827
  };
2512
2828
  };
2513
2829
  /** @description Error getting time zone list */
@@ -2516,7 +2832,7 @@ declare interface operations {
2516
2832
  [name: string]: unknown;
2517
2833
  };
2518
2834
  content: {
2519
- "application/json": components["schemas"]["Error"];
2835
+ 'application/json': components['schemas']['Error'];
2520
2836
  };
2521
2837
  };
2522
2838
  };
@@ -2536,7 +2852,7 @@ declare interface operations {
2536
2852
  [name: string]: unknown;
2537
2853
  };
2538
2854
  content: {
2539
- "application/json": components["schemas"]["BusySnapshot"];
2855
+ 'application/json': components['schemas']['BusySnapshot'];
2540
2856
  };
2541
2857
  };
2542
2858
  /** @description Error getting snapshot */
@@ -2545,7 +2861,7 @@ declare interface operations {
2545
2861
  [name: string]: unknown;
2546
2862
  };
2547
2863
  content: {
2548
- "application/json": components["schemas"]["Error"];
2864
+ 'application/json': components['schemas']['Error'];
2549
2865
  };
2550
2866
  };
2551
2867
  };
@@ -2559,7 +2875,7 @@ declare interface operations {
2559
2875
  };
2560
2876
  requestBody: {
2561
2877
  content: {
2562
- "application/json": components["schemas"]["BusySnapshot"];
2878
+ 'application/json': components['schemas']['BusySnapshot'];
2563
2879
  };
2564
2880
  };
2565
2881
  responses: {
@@ -2569,7 +2885,7 @@ declare interface operations {
2569
2885
  [name: string]: unknown;
2570
2886
  };
2571
2887
  content: {
2572
- "application/json": components["schemas"]["SuccessResponse"];
2888
+ 'application/json': components['schemas']['SuccessResponse'];
2573
2889
  };
2574
2890
  };
2575
2891
  /** @description Error setting snapshot */
@@ -2578,7 +2894,73 @@ declare interface operations {
2578
2894
  [name: string]: unknown;
2579
2895
  };
2580
2896
  content: {
2581
- "application/json": components["schemas"]["Error"];
2897
+ 'application/json': components['schemas']['Error'];
2898
+ };
2899
+ };
2900
+ };
2901
+ };
2902
+ getBusyProfile: {
2903
+ parameters: {
2904
+ query?: never;
2905
+ header?: never;
2906
+ path: {
2907
+ slot: components['schemas']['BusyProfileSlot'];
2908
+ };
2909
+ cookie?: never;
2910
+ };
2911
+ requestBody?: never;
2912
+ responses: {
2913
+ /** @description Got profile successfully */
2914
+ 200: {
2915
+ headers: {
2916
+ [name: string]: unknown;
2917
+ };
2918
+ content: {
2919
+ 'application/json': components['schemas']['BusyProfile'];
2920
+ };
2921
+ };
2922
+ /** @description Error getting profile */
2923
+ 400: {
2924
+ headers: {
2925
+ [name: string]: unknown;
2926
+ };
2927
+ content: {
2928
+ 'application/json': components['schemas']['Error'];
2929
+ };
2930
+ };
2931
+ };
2932
+ };
2933
+ setBusyProfile: {
2934
+ parameters: {
2935
+ query?: never;
2936
+ header?: never;
2937
+ path: {
2938
+ slot: components['schemas']['BusyProfileSlot'];
2939
+ };
2940
+ cookie?: never;
2941
+ };
2942
+ requestBody: {
2943
+ content: {
2944
+ 'application/json': components['schemas']['BusyProfile'];
2945
+ };
2946
+ };
2947
+ responses: {
2948
+ /** @description Profile successfully set */
2949
+ 200: {
2950
+ headers: {
2951
+ [name: string]: unknown;
2952
+ };
2953
+ content: {
2954
+ 'application/json': components['schemas']['SuccessResponse'];
2955
+ };
2956
+ };
2957
+ /** @description Error setting profile */
2958
+ 400: {
2959
+ headers: {
2960
+ [name: string]: unknown;
2961
+ };
2962
+ content: {
2963
+ 'application/json': components['schemas']['Error'];
2582
2964
  };
2583
2965
  };
2584
2966
  };
@@ -2598,7 +2980,7 @@ declare interface operations {
2598
2980
  [name: string]: unknown;
2599
2981
  };
2600
2982
  content: {
2601
- "application/json": components["schemas"]["MatterCommissionedFabrics"];
2983
+ 'application/json': components['schemas']['MatterCommissionedFabrics'];
2602
2984
  };
2603
2985
  };
2604
2986
  };
@@ -2618,7 +3000,7 @@ declare interface operations {
2618
3000
  [name: string]: unknown;
2619
3001
  };
2620
3002
  content: {
2621
- "application/json": components["schemas"]["MatterCommissioningPayload"];
3003
+ 'application/json': components['schemas']['MatterCommissioningPayload'];
2622
3004
  };
2623
3005
  };
2624
3006
  /** @description Internal Matter service is broken */
@@ -2627,7 +3009,7 @@ declare interface operations {
2627
3009
  [name: string]: unknown;
2628
3010
  };
2629
3011
  content: {
2630
- "application/json": components["schemas"]["Error"];
3012
+ 'application/json': components['schemas']['Error'];
2631
3013
  };
2632
3014
  };
2633
3015
  };
@@ -2639,7 +3021,7 @@ declare interface operations {
2639
3021
  * Do not make direct changes to the file.
2640
3022
  */
2641
3023
  declare interface paths {
2642
- "/version": {
3024
+ '/version': {
2643
3025
  parameters: {
2644
3026
  query?: never;
2645
3027
  header?: never;
@@ -2650,7 +3032,7 @@ declare interface paths {
2650
3032
  * Get API version information
2651
3033
  * @description Retrieves API version
2652
3034
  */
2653
- get: operations["getVersion"];
3035
+ get: operations['getVersion'];
2654
3036
  put?: never;
2655
3037
  post?: never;
2656
3038
  delete?: never;
@@ -2659,7 +3041,7 @@ declare interface paths {
2659
3041
  patch?: never;
2660
3042
  trace?: never;
2661
3043
  };
2662
- "/access": {
3044
+ '/access': {
2663
3045
  parameters: {
2664
3046
  query?: never;
2665
3047
  header?: never;
@@ -2670,20 +3052,20 @@ declare interface paths {
2670
3052
  * Get HTTP API access over Wi-Fi configuration
2671
3053
  * @description Get HTTP API access over Wi-Fi configuration
2672
3054
  */
2673
- get: operations["getHttpAccess"];
3055
+ get: operations['getHttpAccess'];
2674
3056
  put?: never;
2675
3057
  /**
2676
3058
  * Set HTTP API access over Wi-Fi configuration
2677
3059
  * @description Set HTTP API access over Wi-Fi configuration
2678
3060
  */
2679
- post: operations["setHttpAccess"];
3061
+ post: operations['setHttpAccess'];
2680
3062
  delete?: never;
2681
3063
  options?: never;
2682
3064
  head?: never;
2683
3065
  patch?: never;
2684
3066
  trace?: never;
2685
3067
  };
2686
- "/name": {
3068
+ '/name': {
2687
3069
  parameters: {
2688
3070
  query?: never;
2689
3071
  header?: never;
@@ -2709,7 +3091,7 @@ declare interface paths {
2709
3091
  [name: string]: unknown;
2710
3092
  };
2711
3093
  content: {
2712
- "application/json": components["schemas"]["NameInfo"];
3094
+ 'application/json': components['schemas']['NameInfo'];
2713
3095
  };
2714
3096
  };
2715
3097
  };
@@ -2728,7 +3110,7 @@ declare interface paths {
2728
3110
  };
2729
3111
  requestBody: {
2730
3112
  content: {
2731
- "application/json": components["schemas"]["NameInfo"];
3113
+ 'application/json': components['schemas']['NameInfo'];
2732
3114
  };
2733
3115
  };
2734
3116
  responses: {
@@ -2738,7 +3120,7 @@ declare interface paths {
2738
3120
  [name: string]: unknown;
2739
3121
  };
2740
3122
  content: {
2741
- "application/json": components["schemas"]["SuccessResponse"];
3123
+ 'application/json': components['schemas']['SuccessResponse'];
2742
3124
  };
2743
3125
  };
2744
3126
  /** @description Invalid name parameter, or failed to store new name */
@@ -2747,7 +3129,7 @@ declare interface paths {
2747
3129
  [name: string]: unknown;
2748
3130
  };
2749
3131
  content: {
2750
- "application/json": components["schemas"]["Error"];
3132
+ 'application/json': components['schemas']['Error'];
2751
3133
  };
2752
3134
  };
2753
3135
  };
@@ -2758,7 +3140,7 @@ declare interface paths {
2758
3140
  patch?: never;
2759
3141
  trace?: never;
2760
3142
  };
2761
- "/update": {
3143
+ '/update': {
2762
3144
  parameters: {
2763
3145
  query?: never;
2764
3146
  header?: never;
@@ -2771,14 +3153,14 @@ declare interface paths {
2771
3153
  * Update firmware
2772
3154
  * @description Uploads a firmware update package (TAR file) and initiates the update process.
2773
3155
  */
2774
- post: operations["updateFirmware"];
3156
+ post: operations['updateFirmware'];
2775
3157
  delete?: never;
2776
3158
  options?: never;
2777
3159
  head?: never;
2778
3160
  patch?: never;
2779
3161
  trace?: never;
2780
3162
  };
2781
- "/update/check": {
3163
+ '/update/check': {
2782
3164
  parameters: {
2783
3165
  query?: never;
2784
3166
  header?: never;
@@ -2791,14 +3173,14 @@ declare interface paths {
2791
3173
  * Start firmware update check
2792
3174
  * @description Initiates an asynchronous check for available firmware updates.
2793
3175
  */
2794
- post: operations["checkFirmwareUpdate"];
3176
+ post: operations['checkFirmwareUpdate'];
2795
3177
  delete?: never;
2796
3178
  options?: never;
2797
3179
  head?: never;
2798
3180
  patch?: never;
2799
3181
  trace?: never;
2800
3182
  };
2801
- "/update/status": {
3183
+ '/update/status': {
2802
3184
  parameters: {
2803
3185
  query?: never;
2804
3186
  header?: never;
@@ -2809,7 +3191,7 @@ declare interface paths {
2809
3191
  * Get firmware update status
2810
3192
  * @description Returns current update and check status including progress information.
2811
3193
  */
2812
- get: operations["getFirmwareUpdateStatus"];
3194
+ get: operations['getFirmwareUpdateStatus'];
2813
3195
  put?: never;
2814
3196
  post?: never;
2815
3197
  delete?: never;
@@ -2818,7 +3200,7 @@ declare interface paths {
2818
3200
  patch?: never;
2819
3201
  trace?: never;
2820
3202
  };
2821
- "/update/changelog": {
3203
+ '/update/changelog': {
2822
3204
  parameters: {
2823
3205
  query?: never;
2824
3206
  header?: never;
@@ -2829,7 +3211,7 @@ declare interface paths {
2829
3211
  * Get update changelog
2830
3212
  * @description Returns the changelog for a specific firmware version.
2831
3213
  */
2832
- get: operations["getUpdateChangelog"];
3214
+ get: operations['getUpdateChangelog'];
2833
3215
  put?: never;
2834
3216
  post?: never;
2835
3217
  delete?: never;
@@ -2838,7 +3220,7 @@ declare interface paths {
2838
3220
  patch?: never;
2839
3221
  trace?: never;
2840
3222
  };
2841
- "/update/install": {
3223
+ '/update/install': {
2842
3224
  parameters: {
2843
3225
  query?: never;
2844
3226
  header?: never;
@@ -2852,15 +3234,16 @@ declare interface paths {
2852
3234
  * @description Starts asynchronous firmware installation from a remote URL.
2853
3235
  * The update process (download, SHA verification, unpack, prepare, reboot) runs in the background.
2854
3236
  * Use /update/status to monitor progress.
3237
+ *
2855
3238
  */
2856
- post: operations["installFirmwareUpdate"];
3239
+ post: operations['installFirmwareUpdate'];
2857
3240
  delete?: never;
2858
3241
  options?: never;
2859
3242
  head?: never;
2860
3243
  patch?: never;
2861
3244
  trace?: never;
2862
3245
  };
2863
- "/update/abort_download": {
3246
+ '/update/abort_download': {
2864
3247
  parameters: {
2865
3248
  query?: never;
2866
3249
  header?: never;
@@ -2873,14 +3256,38 @@ declare interface paths {
2873
3256
  * Abort ongoing firmware download
2874
3257
  * @description Signals the updater to abort an ongoing download operation.
2875
3258
  */
2876
- post: operations["abortFirmwareDownload"];
3259
+ post: operations['abortFirmwareDownload'];
2877
3260
  delete?: never;
2878
3261
  options?: never;
2879
3262
  head?: never;
2880
3263
  patch?: never;
2881
3264
  trace?: never;
2882
3265
  };
2883
- "/assets/upload": {
3266
+ '/update/autoupdate': {
3267
+ parameters: {
3268
+ query?: never;
3269
+ header?: never;
3270
+ path?: never;
3271
+ cookie?: never;
3272
+ };
3273
+ /**
3274
+ * Get autoupdate settings
3275
+ * @description Returns current autoupdate configuration
3276
+ */
3277
+ get: operations['getAutoupdateSettings'];
3278
+ put?: never;
3279
+ /**
3280
+ * Set autoupdate settings
3281
+ * @description Updates autoupdate configuration. All fields are optional - only provided fields are updated.
3282
+ */
3283
+ post: operations['setAutoupdateSettings'];
3284
+ delete?: never;
3285
+ options?: never;
3286
+ head?: never;
3287
+ patch?: never;
3288
+ trace?: never;
3289
+ };
3290
+ '/assets/upload': {
2884
3291
  parameters: {
2885
3292
  query?: never;
2886
3293
  header?: never;
@@ -2893,18 +3300,18 @@ declare interface paths {
2893
3300
  * Upload asset file with app ID
2894
3301
  * @description Uploads a file to a specific app's assets directory
2895
3302
  */
2896
- post: operations["uploadAssetWithAppId"];
3303
+ post: operations['uploadAssetWithAppId'];
2897
3304
  /**
2898
3305
  * Delete app assets
2899
3306
  * @description Deletes all assets for a specific app ID
2900
3307
  */
2901
- delete: operations["deleteAppAssets"];
3308
+ delete: operations['deleteAppAssets'];
2902
3309
  options?: never;
2903
3310
  head?: never;
2904
3311
  patch?: never;
2905
3312
  trace?: never;
2906
3313
  };
2907
- "/storage/write": {
3314
+ '/storage/write': {
2908
3315
  parameters: {
2909
3316
  query?: never;
2910
3317
  header?: never;
@@ -2917,14 +3324,14 @@ declare interface paths {
2917
3324
  * Upload file to internal storage
2918
3325
  * @description Uploads a file to a specified path
2919
3326
  */
2920
- post: operations["writeStorageFile"];
3327
+ post: operations['writeStorageFile'];
2921
3328
  delete?: never;
2922
3329
  options?: never;
2923
3330
  head?: never;
2924
3331
  patch?: never;
2925
3332
  trace?: never;
2926
3333
  };
2927
- "/storage/read": {
3334
+ '/storage/read': {
2928
3335
  parameters: {
2929
3336
  query?: never;
2930
3337
  header?: never;
@@ -2935,7 +3342,7 @@ declare interface paths {
2935
3342
  * Download file from internal storage
2936
3343
  * @description Downloads a file from a specified path
2937
3344
  */
2938
- get: operations["readStorageFile"];
3345
+ get: operations['readStorageFile'];
2939
3346
  put?: never;
2940
3347
  post?: never;
2941
3348
  delete?: never;
@@ -2944,7 +3351,7 @@ declare interface paths {
2944
3351
  patch?: never;
2945
3352
  trace?: never;
2946
3353
  };
2947
- "/storage/list": {
3354
+ '/storage/list': {
2948
3355
  parameters: {
2949
3356
  query?: never;
2950
3357
  header?: never;
@@ -2952,7 +3359,7 @@ declare interface paths {
2952
3359
  cookie?: never;
2953
3360
  };
2954
3361
  /** List files on internal storage */
2955
- get: operations["listStorageFiles"];
3362
+ get: operations['listStorageFiles'];
2956
3363
  put?: never;
2957
3364
  post?: never;
2958
3365
  delete?: never;
@@ -2961,7 +3368,7 @@ declare interface paths {
2961
3368
  patch?: never;
2962
3369
  trace?: never;
2963
3370
  };
2964
- "/storage/remove": {
3371
+ '/storage/remove': {
2965
3372
  parameters: {
2966
3373
  query?: never;
2967
3374
  header?: never;
@@ -2975,13 +3382,13 @@ declare interface paths {
2975
3382
  * Remove a file on internal storage
2976
3383
  * @description Removes a file with a specified path
2977
3384
  */
2978
- delete: operations["removeStorageFile"];
3385
+ delete: operations['removeStorageFile'];
2979
3386
  options?: never;
2980
3387
  head?: never;
2981
3388
  patch?: never;
2982
3389
  trace?: never;
2983
3390
  };
2984
- "/storage/mkdir": {
3391
+ '/storage/mkdir': {
2985
3392
  parameters: {
2986
3393
  query?: never;
2987
3394
  header?: never;
@@ -2994,14 +3401,34 @@ declare interface paths {
2994
3401
  * Create a directory on internal storage
2995
3402
  * @description Creates a new directory with a specified path
2996
3403
  */
2997
- post: operations["createStorageDir"];
3404
+ post: operations['createStorageDir'];
2998
3405
  delete?: never;
2999
3406
  options?: never;
3000
3407
  head?: never;
3001
3408
  patch?: never;
3002
3409
  trace?: never;
3003
3410
  };
3004
- "/storage/status": {
3411
+ '/storage/rename': {
3412
+ parameters: {
3413
+ query?: never;
3414
+ header?: never;
3415
+ path?: never;
3416
+ cookie?: never;
3417
+ };
3418
+ get?: never;
3419
+ put?: never;
3420
+ /**
3421
+ * Rename/move a file
3422
+ * @description Moves a file to a new location
3423
+ */
3424
+ post: operations['RenameStorageFile'];
3425
+ delete?: never;
3426
+ options?: never;
3427
+ head?: never;
3428
+ patch?: never;
3429
+ trace?: never;
3430
+ };
3431
+ '/storage/status': {
3005
3432
  parameters: {
3006
3433
  query?: never;
3007
3434
  header?: never;
@@ -3009,7 +3436,7 @@ declare interface paths {
3009
3436
  cookie?: never;
3010
3437
  };
3011
3438
  /** Show storage usage */
3012
- get: operations["getStorageStatus"];
3439
+ get: operations['getStorageStatus'];
3013
3440
  put?: never;
3014
3441
  post?: never;
3015
3442
  delete?: never;
@@ -3018,7 +3445,7 @@ declare interface paths {
3018
3445
  patch?: never;
3019
3446
  trace?: never;
3020
3447
  };
3021
- "/display/draw": {
3448
+ '/display/draw': {
3022
3449
  parameters: {
3023
3450
  query?: never;
3024
3451
  header?: never;
@@ -3031,19 +3458,20 @@ declare interface paths {
3031
3458
  * Draw on display
3032
3459
  * @description Sends drawing data to the display.
3033
3460
  * Supports JSON-defined display elements.
3461
+ *
3034
3462
  */
3035
- post: operations["drawOnDisplay"];
3463
+ post: operations['drawOnDisplay'];
3036
3464
  /**
3037
3465
  * Clear display
3038
3466
  * @description Clears the display and stops the Canvas application if running
3039
3467
  */
3040
- delete: operations["clearDisplay"];
3468
+ delete: operations['clearDisplay'];
3041
3469
  options?: never;
3042
3470
  head?: never;
3043
3471
  patch?: never;
3044
3472
  trace?: never;
3045
3473
  };
3046
- "/display/brightness": {
3474
+ '/display/brightness': {
3047
3475
  parameters: {
3048
3476
  query?: never;
3049
3477
  header?: never;
@@ -3054,20 +3482,21 @@ declare interface paths {
3054
3482
  * Get display brightness
3055
3483
  * @description Get brightness value for displays
3056
3484
  */
3057
- get: operations["getDisplayBrightness"];
3485
+ get: operations['getDisplayBrightness'];
3058
3486
  put?: never;
3059
3487
  /**
3060
3488
  * Set display brightness
3061
3489
  * @description Set brightness for one or both displays
3490
+ *
3062
3491
  */
3063
- post: operations["setDisplayBrightness"];
3492
+ post: operations['setDisplayBrightness'];
3064
3493
  delete?: never;
3065
3494
  options?: never;
3066
3495
  head?: never;
3067
3496
  patch?: never;
3068
3497
  trace?: never;
3069
3498
  };
3070
- "/audio/play": {
3499
+ '/audio/play': {
3071
3500
  parameters: {
3072
3501
  query?: never;
3073
3502
  header?: never;
@@ -3080,19 +3509,20 @@ declare interface paths {
3080
3509
  * Play audio file
3081
3510
  * @description Plays an audio file from the assets directory.
3082
3511
  * Supported formats include .snd files.
3512
+ *
3083
3513
  */
3084
- post: operations["playAudio"];
3514
+ post: operations['playAudio'];
3085
3515
  /**
3086
3516
  * Stop audio playback
3087
3517
  * @description Stops any currently playing audio
3088
3518
  */
3089
- delete: operations["stopAudio"];
3519
+ delete: operations['stopAudio'];
3090
3520
  options?: never;
3091
3521
  head?: never;
3092
3522
  patch?: never;
3093
3523
  trace?: never;
3094
3524
  };
3095
- "/audio/volume": {
3525
+ '/audio/volume': {
3096
3526
  parameters: {
3097
3527
  query?: never;
3098
3528
  header?: never;
@@ -3103,20 +3533,20 @@ declare interface paths {
3103
3533
  * Get audio volume
3104
3534
  * @description Get audio volume value
3105
3535
  */
3106
- get: operations["getAudioVolume"];
3536
+ get: operations['getAudioVolume'];
3107
3537
  put?: never;
3108
3538
  /**
3109
3539
  * Set audio volume
3110
3540
  * @description Set audio volume value
3111
3541
  */
3112
- post: operations["setAudioVolume"];
3542
+ post: operations['setAudioVolume'];
3113
3543
  delete?: never;
3114
3544
  options?: never;
3115
3545
  head?: never;
3116
3546
  patch?: never;
3117
3547
  trace?: never;
3118
3548
  };
3119
- "/input": {
3549
+ '/input': {
3120
3550
  parameters: {
3121
3551
  query?: never;
3122
3552
  header?: never;
@@ -3127,20 +3557,20 @@ declare interface paths {
3127
3557
  * Input events streaming
3128
3558
  * @description Start WebSocket session for input events streaming
3129
3559
  */
3130
- get: operations["connectInputWebSocket"];
3560
+ get: operations['connectInputWebSocket'];
3131
3561
  put?: never;
3132
3562
  /**
3133
3563
  * Send input event
3134
3564
  * @description Send single key press event
3135
3565
  */
3136
- post: operations["setInputKey"];
3566
+ post: operations['setInputKey'];
3137
3567
  delete?: never;
3138
3568
  options?: never;
3139
3569
  head?: never;
3140
3570
  patch?: never;
3141
3571
  trace?: never;
3142
3572
  };
3143
- "/status": {
3573
+ '/status': {
3144
3574
  parameters: {
3145
3575
  query?: never;
3146
3576
  header?: never;
@@ -3151,7 +3581,27 @@ declare interface paths {
3151
3581
  * Get device status
3152
3582
  * @description Get device status
3153
3583
  */
3154
- get: operations["getStatus"];
3584
+ get: operations['getStatus'];
3585
+ put?: never;
3586
+ post?: never;
3587
+ delete?: never;
3588
+ options?: never;
3589
+ head?: never;
3590
+ patch?: never;
3591
+ trace?: never;
3592
+ };
3593
+ '/status/device': {
3594
+ parameters: {
3595
+ query?: never;
3596
+ header?: never;
3597
+ path?: never;
3598
+ cookie?: never;
3599
+ };
3600
+ /**
3601
+ * Get device info
3602
+ * @description Get device info
3603
+ */
3604
+ get: operations['getStatusDevice'];
3155
3605
  put?: never;
3156
3606
  post?: never;
3157
3607
  delete?: never;
@@ -3160,7 +3610,27 @@ declare interface paths {
3160
3610
  patch?: never;
3161
3611
  trace?: never;
3162
3612
  };
3163
- "/status/system": {
3613
+ '/status/firmware': {
3614
+ parameters: {
3615
+ query?: never;
3616
+ header?: never;
3617
+ path?: never;
3618
+ cookie?: never;
3619
+ };
3620
+ /**
3621
+ * Get firmware info
3622
+ * @description Get firmware info
3623
+ */
3624
+ get: operations['getStatusFirmware'];
3625
+ put?: never;
3626
+ post?: never;
3627
+ delete?: never;
3628
+ options?: never;
3629
+ head?: never;
3630
+ patch?: never;
3631
+ trace?: never;
3632
+ };
3633
+ '/status/system': {
3164
3634
  parameters: {
3165
3635
  query?: never;
3166
3636
  header?: never;
@@ -3171,7 +3641,7 @@ declare interface paths {
3171
3641
  * Get system status
3172
3642
  * @description Get system status
3173
3643
  */
3174
- get: operations["getStatusSystem"];
3644
+ get: operations['getStatusSystem'];
3175
3645
  put?: never;
3176
3646
  post?: never;
3177
3647
  delete?: never;
@@ -3180,7 +3650,7 @@ declare interface paths {
3180
3650
  patch?: never;
3181
3651
  trace?: never;
3182
3652
  };
3183
- "/status/power": {
3653
+ '/status/power': {
3184
3654
  parameters: {
3185
3655
  query?: never;
3186
3656
  header?: never;
@@ -3191,7 +3661,7 @@ declare interface paths {
3191
3661
  * Get power status
3192
3662
  * @description Get power status
3193
3663
  */
3194
- get: operations["getStatusPower"];
3664
+ get: operations['getStatusPower'];
3195
3665
  put?: never;
3196
3666
  post?: never;
3197
3667
  delete?: never;
@@ -3200,7 +3670,7 @@ declare interface paths {
3200
3670
  patch?: never;
3201
3671
  trace?: never;
3202
3672
  };
3203
- "/wifi/status": {
3673
+ '/wifi/status': {
3204
3674
  parameters: {
3205
3675
  query?: never;
3206
3676
  header?: never;
@@ -3223,7 +3693,7 @@ declare interface paths {
3223
3693
  [name: string]: unknown;
3224
3694
  };
3225
3695
  content: {
3226
- "application/json": components["schemas"]["StatusResponse"];
3696
+ 'application/json': components['schemas']['StatusResponse'];
3227
3697
  };
3228
3698
  };
3229
3699
  };
@@ -3236,7 +3706,7 @@ declare interface paths {
3236
3706
  patch?: never;
3237
3707
  trace?: never;
3238
3708
  };
3239
- "/wifi/connect": {
3709
+ '/wifi/connect': {
3240
3710
  parameters: {
3241
3711
  query?: never;
3242
3712
  header?: never;
@@ -3255,7 +3725,7 @@ declare interface paths {
3255
3725
  };
3256
3726
  requestBody: {
3257
3727
  content: {
3258
- "application/json": components["schemas"]["ConnectRequestConfig"];
3728
+ 'application/json': components['schemas']['ConnectRequestConfig'];
3259
3729
  };
3260
3730
  };
3261
3731
  responses: {
@@ -3265,7 +3735,7 @@ declare interface paths {
3265
3735
  [name: string]: unknown;
3266
3736
  };
3267
3737
  content: {
3268
- "application/json": components["schemas"]["SuccessResponse"];
3738
+ 'application/json': components['schemas']['SuccessResponse'];
3269
3739
  };
3270
3740
  };
3271
3741
  /** @description Already connected */
@@ -3274,7 +3744,7 @@ declare interface paths {
3274
3744
  [name: string]: unknown;
3275
3745
  };
3276
3746
  content: {
3277
- "application/json": components["schemas"]["Error"];
3747
+ 'application/json': components['schemas']['Error'];
3278
3748
  };
3279
3749
  };
3280
3750
  };
@@ -3285,7 +3755,7 @@ declare interface paths {
3285
3755
  patch?: never;
3286
3756
  trace?: never;
3287
3757
  };
3288
- "/wifi/disconnect": {
3758
+ '/wifi/disconnect': {
3289
3759
  parameters: {
3290
3760
  query?: never;
3291
3761
  header?: never;
@@ -3310,7 +3780,7 @@ declare interface paths {
3310
3780
  [name: string]: unknown;
3311
3781
  };
3312
3782
  content: {
3313
- "application/json": components["schemas"]["SuccessResponse"];
3783
+ 'application/json': components['schemas']['SuccessResponse'];
3314
3784
  };
3315
3785
  };
3316
3786
  /** @description Already disconnected */
@@ -3319,7 +3789,7 @@ declare interface paths {
3319
3789
  [name: string]: unknown;
3320
3790
  };
3321
3791
  content: {
3322
- "application/json": components["schemas"]["Error"];
3792
+ 'application/json': components['schemas']['Error'];
3323
3793
  };
3324
3794
  };
3325
3795
  };
@@ -3330,7 +3800,7 @@ declare interface paths {
3330
3800
  patch?: never;
3331
3801
  trace?: never;
3332
3802
  };
3333
- "/wifi/networks": {
3803
+ '/wifi/networks': {
3334
3804
  parameters: {
3335
3805
  query?: never;
3336
3806
  header?: never;
@@ -3353,7 +3823,7 @@ declare interface paths {
3353
3823
  [name: string]: unknown;
3354
3824
  };
3355
3825
  content: {
3356
- "application/json": components["schemas"]["NetworkResponse"];
3826
+ 'application/json': components['schemas']['NetworkResponse'];
3357
3827
  };
3358
3828
  };
3359
3829
  /** @description Scan not possible when connected */
@@ -3362,7 +3832,7 @@ declare interface paths {
3362
3832
  [name: string]: unknown;
3363
3833
  };
3364
3834
  content: {
3365
- "application/json": components["schemas"]["Error"];
3835
+ 'application/json': components['schemas']['Error'];
3366
3836
  };
3367
3837
  };
3368
3838
  };
@@ -3375,7 +3845,7 @@ declare interface paths {
3375
3845
  patch?: never;
3376
3846
  trace?: never;
3377
3847
  };
3378
- "/screen": {
3848
+ '/screen': {
3379
3849
  parameters: {
3380
3850
  query?: never;
3381
3851
  header?: never;
@@ -3404,7 +3874,7 @@ declare interface paths {
3404
3874
  [name: string]: unknown;
3405
3875
  };
3406
3876
  content: {
3407
- "image/bmp": components["schemas"]["ScreenResponse"];
3877
+ 'image/bmp': components['schemas']['ScreenResponse'];
3408
3878
  };
3409
3879
  };
3410
3880
  /** @description Wrong display */
@@ -3413,7 +3883,7 @@ declare interface paths {
3413
3883
  [name: string]: unknown;
3414
3884
  };
3415
3885
  content: {
3416
- "application/json": components["schemas"]["Error"];
3886
+ 'application/json': components['schemas']['Error'];
3417
3887
  };
3418
3888
  };
3419
3889
  };
@@ -3426,7 +3896,7 @@ declare interface paths {
3426
3896
  patch?: never;
3427
3897
  trace?: never;
3428
3898
  };
3429
- "/screen/ws": {
3899
+ '/screen/ws': {
3430
3900
  parameters: {
3431
3901
  query?: never;
3432
3902
  header?: never;
@@ -3439,8 +3909,9 @@ declare interface paths {
3439
3909
  * Upgrade from HTTP to WebSocket protocol is required.
3440
3910
  * After connection, client must send desired display ID
3441
3911
  * as JSON {"display": 0}
3912
+ *
3442
3913
  */
3443
- get: operations["connectWebSocket"];
3914
+ get: operations['connectWebSocket'];
3444
3915
  put?: never;
3445
3916
  post?: never;
3446
3917
  delete?: never;
@@ -3449,7 +3920,7 @@ declare interface paths {
3449
3920
  patch?: never;
3450
3921
  trace?: never;
3451
3922
  };
3452
- "/ble/enable": {
3923
+ '/ble/enable': {
3453
3924
  parameters: {
3454
3925
  query?: never;
3455
3926
  header?: never;
@@ -3477,7 +3948,7 @@ declare interface paths {
3477
3948
  [name: string]: unknown;
3478
3949
  };
3479
3950
  content: {
3480
- "application/json": components["schemas"]["SuccessResponse"];
3951
+ 'application/json': components['schemas']['SuccessResponse'];
3481
3952
  };
3482
3953
  };
3483
3954
  };
@@ -3488,7 +3959,7 @@ declare interface paths {
3488
3959
  patch?: never;
3489
3960
  trace?: never;
3490
3961
  };
3491
- "/ble/disable": {
3962
+ '/ble/disable': {
3492
3963
  parameters: {
3493
3964
  query?: never;
3494
3965
  header?: never;
@@ -3516,7 +3987,7 @@ declare interface paths {
3516
3987
  [name: string]: unknown;
3517
3988
  };
3518
3989
  content: {
3519
- "application/json": components["schemas"]["SuccessResponse"];
3990
+ 'application/json': components['schemas']['SuccessResponse'];
3520
3991
  };
3521
3992
  };
3522
3993
  };
@@ -3527,7 +3998,7 @@ declare interface paths {
3527
3998
  patch?: never;
3528
3999
  trace?: never;
3529
4000
  };
3530
- "/ble/pairing": {
4001
+ '/ble/pairing': {
3531
4002
  parameters: {
3532
4003
  query?: never;
3533
4004
  header?: never;
@@ -3556,7 +4027,7 @@ declare interface paths {
3556
4027
  [name: string]: unknown;
3557
4028
  };
3558
4029
  content: {
3559
- "application/json": components["schemas"]["SuccessResponse"];
4030
+ 'application/json': components['schemas']['SuccessResponse'];
3560
4031
  };
3561
4032
  };
3562
4033
  /** @description Failed to remove because BLE is not initialized or pairing was already removed */
@@ -3565,7 +4036,7 @@ declare interface paths {
3565
4036
  [name: string]: unknown;
3566
4037
  };
3567
4038
  content: {
3568
- "application/json": components["schemas"]["Error"];
4039
+ 'application/json': components['schemas']['Error'];
3569
4040
  };
3570
4041
  };
3571
4042
  };
@@ -3575,7 +4046,7 @@ declare interface paths {
3575
4046
  patch?: never;
3576
4047
  trace?: never;
3577
4048
  };
3578
- "/ble/status": {
4049
+ '/ble/status': {
3579
4050
  parameters: {
3580
4051
  query?: never;
3581
4052
  header?: never;
@@ -3598,7 +4069,7 @@ declare interface paths {
3598
4069
  [name: string]: unknown;
3599
4070
  };
3600
4071
  content: {
3601
- "application/json": components["schemas"]["BleStatusResponse"];
4072
+ 'application/json': components['schemas']['BleStatusResponse'];
3602
4073
  };
3603
4074
  };
3604
4075
  };
@@ -3611,7 +4082,7 @@ declare interface paths {
3611
4082
  patch?: never;
3612
4083
  trace?: never;
3613
4084
  };
3614
- "/time": {
4085
+ '/time': {
3615
4086
  parameters: {
3616
4087
  query?: never;
3617
4088
  header?: never;
@@ -3622,7 +4093,7 @@ declare interface paths {
3622
4093
  * Get current timestamp with timezone
3623
4094
  * @description Retrieves the current timestamp from RTC with timezone in ISO 8601 format
3624
4095
  */
3625
- get: operations["getTime"];
4096
+ get: operations['getTime'];
3626
4097
  put?: never;
3627
4098
  post?: never;
3628
4099
  delete?: never;
@@ -3631,7 +4102,7 @@ declare interface paths {
3631
4102
  patch?: never;
3632
4103
  trace?: never;
3633
4104
  };
3634
- "/account": {
4105
+ '/account': {
3635
4106
  parameters: {
3636
4107
  query?: never;
3637
4108
  header?: never;
@@ -3645,13 +4116,13 @@ declare interface paths {
3645
4116
  * Unlink device from account
3646
4117
  * @description Removes account linking data
3647
4118
  */
3648
- delete: operations["unlinkAccount"];
4119
+ delete: operations['unlinkAccount'];
3649
4120
  options?: never;
3650
4121
  head?: never;
3651
4122
  patch?: never;
3652
4123
  trace?: never;
3653
4124
  };
3654
- "/account/link": {
4125
+ '/account/link': {
3655
4126
  parameters: {
3656
4127
  query?: never;
3657
4128
  header?: never;
@@ -3664,14 +4135,14 @@ declare interface paths {
3664
4135
  * Link device to account
3665
4136
  * @description Requests account link PIN. Works only if device is connected to MQTT and is not linked to account
3666
4137
  */
3667
- post: operations["linkAccount"];
4138
+ post: operations['linkAccount'];
3668
4139
  delete?: never;
3669
4140
  options?: never;
3670
4141
  head?: never;
3671
4142
  patch?: never;
3672
4143
  trace?: never;
3673
4144
  };
3674
- "/account/info": {
4145
+ '/account/info': {
3675
4146
  parameters: {
3676
4147
  query?: never;
3677
4148
  header?: never;
@@ -3682,7 +4153,7 @@ declare interface paths {
3682
4153
  * Get linked account info
3683
4154
  * @description Retrieves linked account data
3684
4155
  */
3685
- get: operations["getAccountInfo"];
4156
+ get: operations['getAccountInfo'];
3686
4157
  put?: never;
3687
4158
  post?: never;
3688
4159
  delete?: never;
@@ -3691,7 +4162,7 @@ declare interface paths {
3691
4162
  patch?: never;
3692
4163
  trace?: never;
3693
4164
  };
3694
- "/account/status": {
4165
+ '/account/status': {
3695
4166
  parameters: {
3696
4167
  query?: never;
3697
4168
  header?: never;
@@ -3702,7 +4173,7 @@ declare interface paths {
3702
4173
  * Get MQTT status info
3703
4174
  * @description Retrieves MQTT status
3704
4175
  */
3705
- get: operations["getAccountState"];
4176
+ get: operations['getAccountState'];
3706
4177
  put?: never;
3707
4178
  post?: never;
3708
4179
  delete?: never;
@@ -3711,7 +4182,7 @@ declare interface paths {
3711
4182
  patch?: never;
3712
4183
  trace?: never;
3713
4184
  };
3714
- "/account/profile": {
4185
+ '/account/profile': {
3715
4186
  parameters: {
3716
4187
  query?: never;
3717
4188
  header?: never;
@@ -3722,20 +4193,20 @@ declare interface paths {
3722
4193
  * Get MQTT profile
3723
4194
  * @description Retrieves MQTT backend type (dev/prod/local)
3724
4195
  */
3725
- get: operations["getAccountProfile"];
4196
+ get: operations['getAccountProfile'];
3726
4197
  put?: never;
3727
4198
  /**
3728
4199
  * Set MQTT profile
3729
4200
  * @description Sets MQTT backend type (dev/prod/local)
3730
4201
  */
3731
- post: operations["setAccountProfile"];
4202
+ post: operations['setAccountProfile'];
3732
4203
  delete?: never;
3733
4204
  options?: never;
3734
4205
  head?: never;
3735
4206
  patch?: never;
3736
4207
  trace?: never;
3737
4208
  };
3738
- "/time/timestamp": {
4209
+ '/time/timestamp': {
3739
4210
  parameters: {
3740
4211
  query?: never;
3741
4212
  header?: never;
@@ -3747,15 +4218,16 @@ declare interface paths {
3747
4218
  /**
3748
4219
  * Set current timestamp
3749
4220
  * @description Sets the RTC timestamp in ISO 8601 format. Time zone qualifier (e.g. Z of UTC or +hh:mm for local time) is required.
4221
+ *
3750
4222
  */
3751
- post: operations["setTimeTimestamp"];
4223
+ post: operations['setTimeTimestamp'];
3752
4224
  delete?: never;
3753
4225
  options?: never;
3754
4226
  head?: never;
3755
4227
  patch?: never;
3756
4228
  trace?: never;
3757
4229
  };
3758
- "/time/timezone": {
4230
+ '/time/timezone': {
3759
4231
  parameters: {
3760
4232
  query?: never;
3761
4233
  header?: never;
@@ -3766,20 +4238,20 @@ declare interface paths {
3766
4238
  * Get timezone
3767
4239
  * @description Get current timezone name
3768
4240
  */
3769
- get: operations["getTimeTimezone"];
4241
+ get: operations['getTimeTimezone'];
3770
4242
  put?: never;
3771
4243
  /**
3772
4244
  * Set timezone
3773
4245
  * @description Sets the timezone name. Use /time/tzlist to get available names list.
3774
4246
  */
3775
- post: operations["setTimeTimezone"];
4247
+ post: operations['setTimeTimezone'];
3776
4248
  delete?: never;
3777
4249
  options?: never;
3778
4250
  head?: never;
3779
4251
  patch?: never;
3780
4252
  trace?: never;
3781
4253
  };
3782
- "/time/tzlist": {
4254
+ '/time/tzlist': {
3783
4255
  parameters: {
3784
4256
  query?: never;
3785
4257
  header?: never;
@@ -3790,7 +4262,7 @@ declare interface paths {
3790
4262
  * Get list of supported time zones
3791
4263
  * @description Retrieves the list of time zones accepted by /time/timezone
3792
4264
  */
3793
- get: operations["getTimeTzlist"];
4265
+ get: operations['getTimeTzlist'];
3794
4266
  put?: never;
3795
4267
  post?: never;
3796
4268
  delete?: never;
@@ -3799,7 +4271,7 @@ declare interface paths {
3799
4271
  patch?: never;
3800
4272
  trace?: never;
3801
4273
  };
3802
- "/busy/snapshot": {
4274
+ '/busy/snapshot': {
3803
4275
  parameters: {
3804
4276
  query?: never;
3805
4277
  header?: never;
@@ -3810,12 +4282,12 @@ declare interface paths {
3810
4282
  * Get BUSY timer snapshot
3811
4283
  * @description Gets the current state of the BUSY timer in snapshot form
3812
4284
  */
3813
- get: operations["getBusySnapshot"];
4285
+ get: operations['getBusySnapshot'];
3814
4286
  /**
3815
- * Set BUSY time snapshot
4287
+ * Set BUSY timer snapshot
3816
4288
  * @description Run the timer starting from the given snapshot
3817
4289
  */
3818
- put: operations["setBusySnapshot"];
4290
+ put: operations['setBusySnapshot'];
3819
4291
  post?: never;
3820
4292
  delete?: never;
3821
4293
  options?: never;
@@ -3823,7 +4295,31 @@ declare interface paths {
3823
4295
  patch?: never;
3824
4296
  trace?: never;
3825
4297
  };
3826
- "/matter/commissioning": {
4298
+ '/busy/profiles/{slot}': {
4299
+ parameters: {
4300
+ query?: never;
4301
+ header?: never;
4302
+ path?: never;
4303
+ cookie?: never;
4304
+ };
4305
+ /**
4306
+ * Get BUSY timer profile
4307
+ * @description Gets the BUSY timer profile under specified slot
4308
+ */
4309
+ get: operations['getBusyProfile'];
4310
+ /**
4311
+ * Set BUSY time profile
4312
+ * @description Sets the BUSY timer profile under specified slot
4313
+ */
4314
+ put: operations['setBusyProfile'];
4315
+ post?: never;
4316
+ delete?: never;
4317
+ options?: never;
4318
+ head?: never;
4319
+ patch?: never;
4320
+ trace?: never;
4321
+ };
4322
+ '/matter/commissioning': {
3827
4323
  parameters: {
3828
4324
  query?: never;
3829
4325
  header?: never;
@@ -3831,10 +4327,10 @@ declare interface paths {
3831
4327
  cookie?: never;
3832
4328
  };
3833
4329
  /** Smart home commissioning status */
3834
- get: operations["getMatterCommissioningStatus"];
4330
+ get: operations['getMatterCommissioningStatus'];
3835
4331
  put?: never;
3836
4332
  /** Link device to a smart home */
3837
- post: operations["startMatterCommissioning"];
4333
+ post: operations['startMatterCommissioning'];
3838
4334
  /** Erase all smart home links */
3839
4335
  delete: {
3840
4336
  parameters: {
@@ -3851,7 +4347,84 @@ declare interface paths {
3851
4347
  [name: string]: unknown;
3852
4348
  };
3853
4349
  content: {
3854
- "application/json": components["schemas"]["SuccessResponse"];
4350
+ 'application/json': components['schemas']['SuccessResponse'];
4351
+ };
4352
+ };
4353
+ /** @description Internal Matter service is broken */
4354
+ 503: {
4355
+ headers: {
4356
+ [name: string]: unknown;
4357
+ };
4358
+ content: {
4359
+ 'application/json': components['schemas']['Error'];
4360
+ };
4361
+ };
4362
+ };
4363
+ };
4364
+ options?: never;
4365
+ head?: never;
4366
+ patch?: never;
4367
+ trace?: never;
4368
+ };
4369
+ '/matter/endpoint/1': {
4370
+ parameters: {
4371
+ query?: never;
4372
+ header?: never;
4373
+ path?: never;
4374
+ cookie?: never;
4375
+ };
4376
+ /** Get Matter endpoint 1 state */
4377
+ get: {
4378
+ parameters: {
4379
+ query?: never;
4380
+ header?: never;
4381
+ path?: never;
4382
+ cookie?: never;
4383
+ };
4384
+ requestBody?: never;
4385
+ responses: {
4386
+ /** @description Successfully got Matter endpoint 1 state */
4387
+ 200: {
4388
+ headers: {
4389
+ [name: string]: unknown;
4390
+ };
4391
+ content: {
4392
+ 'application/json': components['schemas']['MatterEndpointState'];
4393
+ };
4394
+ };
4395
+ /** @description Internal Matter service is broken */
4396
+ 503: {
4397
+ headers: {
4398
+ [name: string]: unknown;
4399
+ };
4400
+ content: {
4401
+ 'application/json': components['schemas']['Error'];
4402
+ };
4403
+ };
4404
+ };
4405
+ };
4406
+ put?: never;
4407
+ /** Set Matter endpoint 1 state */
4408
+ post: {
4409
+ parameters: {
4410
+ query?: never;
4411
+ header?: never;
4412
+ path?: never;
4413
+ cookie?: never;
4414
+ };
4415
+ requestBody: {
4416
+ content: {
4417
+ 'application/json': components['schemas']['MatterEndpointState'];
4418
+ };
4419
+ };
4420
+ responses: {
4421
+ /** @description Successfully set Matter endpoint 1 state */
4422
+ 200: {
4423
+ headers: {
4424
+ [name: string]: unknown;
4425
+ };
4426
+ content: {
4427
+ 'application/json': components['schemas']['SuccessResponse'];
3855
4428
  };
3856
4429
  };
3857
4430
  /** @description Internal Matter service is broken */
@@ -3860,11 +4433,12 @@ declare interface paths {
3860
4433
  [name: string]: unknown;
3861
4434
  };
3862
4435
  content: {
3863
- "application/json": components["schemas"]["Error"];
4436
+ 'application/json': components['schemas']['Error'];
3864
4437
  };
3865
4438
  };
3866
4439
  };
3867
4440
  };
4441
+ delete?: never;
3868
4442
  options?: never;
3869
4443
  head?: never;
3870
4444
  patch?: never;
@@ -3872,12 +4446,14 @@ declare interface paths {
3872
4446
  };
3873
4447
  }
3874
4448
 
3875
- declare type RequiredIpConfig = RequireKeys<NonNullable<CamelizedRequest["ipConfig"]>, "ipMethod">;
4449
+ declare type RenameQuery = operations['RenameStorageFile']['parameters']['query'];
4450
+
4451
+ declare type RequiredIpConfig = RequireKeys<NonNullable<CamelizedRequest['ipConfig']>, 'ipMethod'>;
3876
4452
 
3877
4453
  declare type RequireKeys<T, K extends keyof T> = Required<Pick<T, K>> & Omit<T, K>;
3878
4454
 
3879
4455
  export declare interface ScreenFrameGetParams extends TimeoutOptions {
3880
- display: paths["/screen"]["get"]["parameters"]["query"]["display"];
4456
+ display: paths['/screen']['get']['parameters']['query']['display'];
3881
4457
  }
3882
4458
 
3883
4459
  export declare class ScreenStream {
@@ -3948,30 +4524,34 @@ declare class SettingsMethods {
3948
4524
 
3949
4525
  declare type SnakeToCamel<S extends string> = S extends `${infer Head}_${infer Tail}` ? `${Head}${Capitalize<SnakeToCamel<Tail>>}` : S;
3950
4526
 
3951
- export declare type Status = components["schemas"]["Status"];
4527
+ export declare type Status = components['schemas']['Status'];
4528
+
4529
+ export declare type StatusDevice = components['schemas']['StatusDevice'];
3952
4530
 
3953
- export declare type StatusPower = components["schemas"]["StatusPower"];
4531
+ export declare type StatusFirmware = components['schemas']['StatusFirmware'];
3954
4532
 
3955
- export declare type StatusSystem = components["schemas"]["StatusSystem"];
4533
+ export declare type StatusPower = components['schemas']['StatusPower'];
4534
+
4535
+ export declare type StatusSystem = components['schemas']['StatusSystem'];
3956
4536
 
3957
4537
  declare type StopListener = () => void;
3958
4538
 
3959
4539
  export declare interface StorageCreateDirectoryParams extends TimeoutOptions {
3960
- path: operations["createStorageDir"]["parameters"]["query"]["path"];
4540
+ path: operations['createStorageDir']['parameters']['query']['path'];
3961
4541
  }
3962
4542
 
3963
- export declare type StorageDirElement = components["schemas"]["StorageDirElement"];
4543
+ export declare type StorageDirElement = components['schemas']['StorageDirElement'];
3964
4544
 
3965
4545
  export declare interface StorageDownloadFileParams extends TimeoutOptions {
3966
- path: operations["readStorageFile"]["parameters"]["query"]["path"];
4546
+ path: operations['readStorageFile']['parameters']['query']['path'];
3967
4547
  asArrayBuffer?: boolean;
3968
4548
  }
3969
4549
 
3970
- export declare type StorageFileElement = components["schemas"]["StorageFileElement"];
4550
+ export declare type StorageFileElement = components['schemas']['StorageFileElement'];
3971
4551
 
3972
- export declare type StorageList = components["schemas"]["StorageList"];
4552
+ export declare type StorageList = components['schemas']['StorageList'];
3973
4553
 
3974
- export declare type StorageListElement = components["schemas"]["StorageListElement"];
4554
+ export declare type StorageListElement = components['schemas']['StorageListElement'];
3975
4555
 
3976
4556
  declare class StorageMethods {
3977
4557
  /**
@@ -4029,26 +4609,39 @@ declare class StorageMethods {
4029
4609
  * @returns {Promise<StorageStatus>} A promise that resolves to the storage status.
4030
4610
  */
4031
4611
  StorageStatusGet(this: BusyBar, params?: TimeoutOptions): Promise<StorageStatus>;
4612
+ /**
4613
+ * Rename/move a file. Moves a file to a new location.
4614
+ *
4615
+ * @param {RenameParams} params - Rename parameters:
4616
+ * @param {RenameParams['path']} params.path - Current path of the file or directory.
4617
+ * @param {RenameParams['new_path']} params.new_path - New path for the file or directory.
4618
+ * @param {TimeoutOptions['timeout']} [params.timeout] - Request timeout in milliseconds.
4619
+ * @returns {Promise<SuccessResponse>} A promise that resolves on successful rename.
4620
+ */
4621
+ StorageRename(this: BusyBar, params: StorageRenameParams): Promise<SuccessResponse>;
4032
4622
  }
4033
4623
 
4034
4624
  export declare interface StorageReadDirectoryParams extends TimeoutOptions {
4035
- path: operations["listStorageFiles"]["parameters"]["query"]["path"];
4625
+ path: operations['listStorageFiles']['parameters']['query']['path'];
4036
4626
  }
4037
4627
 
4038
4628
  export declare type StorageReadResponse = ArrayBuffer | Blob;
4039
4629
 
4040
4630
  export declare interface StorageRemoveParams extends TimeoutOptions {
4041
- path: operations["removeStorageFile"]["parameters"]["query"]["path"];
4631
+ path: operations['removeStorageFile']['parameters']['query']['path'];
4632
+ }
4633
+
4634
+ export declare interface StorageRenameParams extends TimeoutOptions, RenameQuery {
4042
4635
  }
4043
4636
 
4044
- export declare type StorageStatus = components["schemas"]["StorageStatus"];
4637
+ export declare type StorageStatus = components['schemas']['StorageStatus'];
4045
4638
 
4046
4639
  export declare interface StorageUploadFileParams extends TimeoutOptions {
4047
- path: operations["writeStorageFile"]["parameters"]["query"]["path"];
4640
+ path: operations['writeStorageFile']['parameters']['query']['path'];
4048
4641
  file: BusyFile;
4049
4642
  }
4050
4643
 
4051
- export declare type SuccessResponse = components["schemas"]["SuccessResponse"];
4644
+ export declare type SuccessResponse = components['schemas']['SuccessResponse'];
4052
4645
 
4053
4646
  declare class SystemMethods {
4054
4647
  /**
@@ -4060,7 +4653,7 @@ declare class SystemMethods {
4060
4653
  */
4061
4654
  SystemVersionGet(this: BusyBar, params?: TimeoutOptions): Promise<VersionInfo>;
4062
4655
  /**
4063
- * Get device status.
4656
+ * Get full status.
4064
4657
  *
4065
4658
  * @param {TimeoutOptions} [params] - Optional parameters.
4066
4659
  * @param {TimeoutOptions['timeout']} [params.timeout] - Request timeout in milliseconds.
@@ -4083,6 +4676,22 @@ declare class SystemMethods {
4083
4676
  * @returns {Promise<StatusPower>} Current power status.
4084
4677
  */
4085
4678
  SystemStatusPowerGet(this: BusyBar, params?: TimeoutOptions): Promise<StatusPower>;
4679
+ /**
4680
+ * Get device status.
4681
+ *
4682
+ * @param {TimeoutOptions} [params] - Optional parameters.
4683
+ * @param {TimeoutOptions['timeout']} [params.timeout] - Request timeout in milliseconds.
4684
+ * @returns {Promise<StatusDevice>} Current device status.
4685
+ */
4686
+ SystemStatusDeviceGet(this: BusyBar, params?: TimeoutOptions): Promise<StatusDevice>;
4687
+ /**
4688
+ * Get firmware status.
4689
+ *
4690
+ * @param {TimeoutOptions} [params] - Optional parameters.
4691
+ * @param {TimeoutOptions['timeout']} [params.timeout] - Request timeout in milliseconds.
4692
+ * @returns {Promise<StatusFirmware>} Current firmware status.
4693
+ */
4694
+ SystemStatusFirmwareGet(this: BusyBar, params?: TimeoutOptions): Promise<StatusFirmware>;
4086
4695
  }
4087
4696
 
4088
4697
  declare class TimeMethods {
@@ -4134,23 +4743,26 @@ export declare interface TimeoutOptions {
4134
4743
  timeout?: number;
4135
4744
  }
4136
4745
 
4137
- export declare type TimestampInfo = components["schemas"]["TimestampInfo"];
4746
+ export declare type TimestampInfo = components['schemas']['TimestampInfo'];
4138
4747
 
4139
4748
  export declare interface TimeTimestampParams extends TimeoutOptions {
4140
- timestamp: operations["setTimeTimestamp"]["parameters"]["query"]["timestamp"];
4749
+ timestamp: operations['setTimeTimestamp']['parameters']['query']['timestamp'];
4141
4750
  }
4142
4751
 
4143
4752
  export declare interface TimeTimezoneParams extends TimeoutOptions {
4144
- timezone: operations["setTimeTimezone"]["parameters"]["query"]["timezone"];
4753
+ timezone: operations['setTimeTimezone']['parameters']['query']['timezone'];
4145
4754
  }
4146
4755
 
4147
- export declare type TimezoneInfo = components["schemas"]["TimezoneInfo"];
4756
+ export declare type TimezoneInfo = components['schemas']['TimezoneInfo'];
4148
4757
 
4149
- export declare type TimezoneItem = components["schemas"]["TimezoneListResponse"][number];
4758
+ export declare type TimezoneItem = NonNullable<TimezoneList['list']>[number];
4150
4759
 
4151
- export declare type TimezoneList = components["schemas"]["TimezoneListResponse"];
4760
+ export declare type TimezoneList = components['schemas']['TimezoneListResponse'];
4152
4761
 
4153
- export declare type UpdateChangelog = operations["getUpdateChangelog"]["responses"]["200"]["content"]["application/json"];
4762
+ export declare interface UpdateAutoUpdateParams extends TimeoutOptions, AutoUpdateSettings {
4763
+ }
4764
+
4765
+ export declare type UpdateChangelog = operations['getUpdateChangelog']['responses']['200']['content']['application/json'];
4154
4766
 
4155
4767
  export declare interface UpdateChangelogParams extends TimeoutOptions {
4156
4768
  version: string;
@@ -4216,21 +4828,40 @@ declare class UpdateMethods {
4216
4828
  * @returns {Promise<SuccessResponse>} A promise that resolves on successful abort.
4217
4829
  */
4218
4830
  UpdateAbort(this: BusyBar, params?: TimeoutOptions): Promise<SuccessResponse>;
4831
+ /**
4832
+ * Get current auto-update settings.
4833
+ *
4834
+ * @param {TimeoutOptions} [params] - Optional parameters.
4835
+ * @param {TimeoutOptions['timeout']} [params.timeout] - Request timeout in milliseconds.
4836
+ * @returns {Promise<AutoUpdateSettings>} A promise that resolves to the current auto-update settings.
4837
+ */
4838
+ UpdateAutoUpdateGet(this: BusyBar, params?: TimeoutOptions): Promise<AutoUpdateSettings>;
4839
+ /**
4840
+ * Set auto-update settings.
4841
+ *
4842
+ * @param {AutoUpdateParams} params - Parameters for auto-update settings.
4843
+ * @param {AutoUpdateParams['is_enabled']} params.is_enabled - Whether auto-update is enabled.
4844
+ * @param {AutoUpdateParams['interval_start']} params.interval_start - Auto-update interval start time (HH:mm).
4845
+ * @param {AutoUpdateParams['interval_end']} params.interval_end - Auto-update interval end time (HH:mm).
4846
+ * @param {TimeoutOptions['timeout']} [params.timeout] - Request timeout in milliseconds.
4847
+ * @returns {Promise<SuccessResponse>} A promise that resolves on successful update of settings.
4848
+ */
4849
+ UpdateAutoUpdateSet(this: BusyBar, params: UpdateAutoUpdateParams): Promise<SuccessResponse>;
4219
4850
  }
4220
4851
 
4221
- export declare type UpdateStatus = components["schemas"]["UpdateStatus"];
4852
+ export declare type UpdateStatus = components['schemas']['UpdateStatus'];
4222
4853
 
4223
- export declare type VersionInfo = components["schemas"]["VersionInfo"];
4854
+ export declare type VersionInfo = components['schemas']['VersionInfo'];
4224
4855
 
4225
- export declare type WifiConnectParams = RequireKeys<Omit<CamelizedRequest, "ipConfig"> & {
4856
+ export declare type WifiConnectParams = RequireKeys<Omit<CamelizedRequest, 'ipConfig'> & {
4226
4857
  ipConfig: RequiredIpConfig;
4227
- }, "ssid" | "security" | "ipConfig"> & TimeoutOptions;
4858
+ }, 'ssid' | 'security' | 'ipConfig'> & TimeoutOptions;
4228
4859
 
4229
- export declare type WifiConnectRequestConfig = components["schemas"]["ConnectRequestConfig"];
4860
+ export declare type WifiConnectRequestConfig = components['schemas']['ConnectRequestConfig'];
4230
4861
 
4231
- export declare type WifiIpMethod = components["schemas"]["WifiIpMethod"];
4862
+ export declare type WifiIpMethod = components['schemas']['WifiIpMethod'];
4232
4863
 
4233
- export declare type WifiIpType = components["schemas"]["WifiIpType"];
4864
+ export declare type WifiIpType = components['schemas']['WifiIpType'];
4234
4865
 
4235
4866
  declare class WifiMethods {
4236
4867
  /**
@@ -4271,12 +4902,12 @@ declare class WifiMethods {
4271
4902
  WifiNetworksGet(this: BusyBar, params?: TimeoutOptions): Promise<WifiNetworkResponse>;
4272
4903
  }
4273
4904
 
4274
- export declare type WifiNetwork = components["schemas"]["Network"];
4905
+ export declare type WifiNetwork = components['schemas']['Network'];
4275
4906
 
4276
- export declare type WifiNetworkResponse = components["schemas"]["NetworkResponse"];
4907
+ export declare type WifiNetworkResponse = components['schemas']['NetworkResponse'];
4277
4908
 
4278
- export declare type WifiSecurityMethod = components["schemas"]["WifiSecurityMethod"];
4909
+ export declare type WifiSecurityMethod = components['schemas']['WifiSecurityMethod'];
4279
4910
 
4280
- export declare type WifiStatusResponse = components["schemas"]["StatusResponse"];
4911
+ export declare type WifiStatusResponse = components['schemas']['StatusResponse'];
4281
4912
 
4282
4913
  export { }