@kohost/api-client 3.3.6 → 3.3.8

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.
@@ -153,6 +153,7 @@ export interface MediaSource {
153
153
  power?: "on" | "off";
154
154
  input?: string;
155
155
  supportedInputs?: string[];
156
+ supportedOutputs?: string[];
156
157
  command?:
157
158
  | (
158
159
  | "mute"
@@ -12,7 +12,7 @@ export interface Property {
12
12
  id: string;
13
13
  name: string;
14
14
  type: "property";
15
- discriminator?: "hospitality" | "education" | "commercial";
15
+ discriminator: "hospitality" | "education" | "commercial";
16
16
  /**
17
17
  * Reference (id) to the organization that owns this property
18
18
  */
@@ -30,7 +30,10 @@ export interface Property {
30
30
  notificationEmailDomains?: string[];
31
31
  [k: string]: unknown;
32
32
  };
33
- timezone?: string;
33
+ /**
34
+ * IANA timezone string
35
+ */
36
+ timezone: string;
34
37
  smsNumber?: string;
35
38
  checkInTime?: string;
36
39
  checkOutTime?: string;
@@ -896,6 +896,7 @@ export interface MediaSource {
896
896
  power?: "on" | "off";
897
897
  input?: string;
898
898
  supportedInputs?: string[];
899
+ supportedOutputs?: string[];
899
900
  command?:
900
901
  | (
901
902
  | "mute"
@@ -49,9 +49,11 @@ 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;
56
+ autoCloseAt?: Date;
55
57
  scheduleDate?: Date;
56
58
  createdAt: Date;
57
59
  updatedAt: Date;
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@kohost/api-client",
3
- "version": "3.3.6",
3
+ "version": "3.3.8",
4
4
  "description": "API client, models, schemas, commands, and events for Kohost applications",
5
5
  "author": "Ian Rogers",
6
6
  "readme": "README.md",