@kohost/api-client 3.9.2 → 3.9.4

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.
@@ -56,7 +56,7 @@ export interface Organization {
56
56
  [k: string]: unknown;
57
57
  };
58
58
  tickets?: {
59
- nextTicketNumber?: string;
59
+ nextTicketNumber?: string | number;
60
60
  [k: string]: unknown;
61
61
  };
62
62
  credentials?: {
@@ -100,6 +100,10 @@ export interface Property {
100
100
  tipping?: boolean;
101
101
  ratings?: boolean;
102
102
  newTicketCCs?: string[];
103
+ /**
104
+ * Determines how users should be notified of new messages in the concierge system
105
+ */
106
+ newMessageChannel?: ("sms" | "email") | null;
103
107
  quickServices?: {
104
108
  name: string;
105
109
  description: string;
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@kohost/api-client",
3
- "version": "3.9.2",
3
+ "version": "3.9.4",
4
4
  "description": "API client, models, schemas, commands, and events for Kohost applications",
5
5
  "author": "Ian Rogers",
6
6
  "readme": "README.md",