@kohost/api-client 3.2.10 → 3.2.11

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.
@@ -147,6 +147,7 @@ export interface MediaSource {
147
147
  volumeFeedback?: boolean;
148
148
  muted?: boolean;
149
149
  volume?: number;
150
+ brightness?: number;
150
151
  power?: "on" | "off";
151
152
  input?: string;
152
153
  supportedInputs?: string[];
@@ -863,6 +863,7 @@ export interface MediaSource {
863
863
  volumeFeedback?: boolean;
864
864
  muted?: boolean;
865
865
  volume?: number;
866
+ brightness?: number;
866
867
  power?: "on" | "off";
867
868
  input?: string;
868
869
  supportedInputs?: string[];
@@ -73,6 +73,11 @@
73
73
  "minimum": 0,
74
74
  "maximum": 100
75
75
  },
76
+ "brightness": {
77
+ "type": "number",
78
+ "minimum": 0,
79
+ "maximum": 100
80
+ },
76
81
  "power": {
77
82
  "type": "string",
78
83
  "enum": ["on", "off"]
@@ -10356,6 +10356,11 @@ var require_mediaSource = __commonJS({
10356
10356
  minimum: 0,
10357
10357
  maximum: 100
10358
10358
  },
10359
+ brightness: {
10360
+ type: "number",
10361
+ minimum: 0,
10362
+ maximum: 100
10363
+ },
10359
10364
  power: {
10360
10365
  type: "string",
10361
10366
  enum: ["on", "off"]