@kohost/api-client 3.3.7 → 3.3.9

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.
@@ -150,9 +150,11 @@ export interface MediaSource {
150
150
  muted?: boolean;
151
151
  volume?: number;
152
152
  brightness?: number;
153
+ contrast?: number;
153
154
  power?: "on" | "off";
154
155
  input?: string;
155
156
  supportedInputs?: string[];
157
+ supportedOutputs?: string[];
156
158
  command?:
157
159
  | (
158
160
  | "mute"
@@ -204,6 +206,7 @@ export interface MediaSource {
204
206
  | "enterChannel"
205
207
  | "enterVolume"
206
208
  | "enterBrightness"
209
+ | "enterContrast"
207
210
  | "number10"
208
211
  | "number11"
209
212
  | "number12"
@@ -893,9 +893,11 @@ export interface MediaSource {
893
893
  muted?: boolean;
894
894
  volume?: number;
895
895
  brightness?: number;
896
+ contrast?: number;
896
897
  power?: "on" | "off";
897
898
  input?: string;
898
899
  supportedInputs?: string[];
900
+ supportedOutputs?: string[];
899
901
  command?:
900
902
  | (
901
903
  | "mute"
@@ -947,6 +949,7 @@ export interface MediaSource {
947
949
  | "enterChannel"
948
950
  | "enterVolume"
949
951
  | "enterBrightness"
952
+ | "enterContrast"
950
953
  | "number10"
951
954
  | "number11"
952
955
  | "number12"
@@ -49,6 +49,7 @@ export interface Ticket {
49
49
  status: "open" | "pending" | "solved" | "closed";
50
50
  priority?: "low" | "normal" | "high";
51
51
  tags: string[];
52
+ department?: string;
52
53
  rating?: number;
53
54
  ratingComment?: string;
54
55
  tipAmount?: string;
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@kohost/api-client",
3
- "version": "3.3.7",
3
+ "version": "3.3.9",
4
4
  "description": "API client, models, schemas, commands, and events for Kohost applications",
5
5
  "author": "Ian Rogers",
6
6
  "readme": "README.md",