@kohost/api-client 3.9.1 → 3.9.3
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/cjs/schemas/issue.json +4 -0
- package/dist/cjs/schemas/property.json +6 -0
- package/dist/esm/Models.js +10 -0
- package/dist/esm/Models.js.map +2 -2
- package/dist/esm/utils.js +10 -0
- package/dist/esm/utils.js.map +2 -2
- package/dist/types/schemas/IssueSchema.d.ts +1 -0
- package/dist/types/schemas/PropertySchema.d.ts +4 -0
- package/package.json +1 -1
|
@@ -219,6 +219,12 @@
|
|
|
219
219
|
},
|
|
220
220
|
"default": []
|
|
221
221
|
},
|
|
222
|
+
"newMessageChannel": {
|
|
223
|
+
"type": ["string", "null"],
|
|
224
|
+
"enum": ["sms", "email"],
|
|
225
|
+
"default": "sms",
|
|
226
|
+
"description": "Determines how users should be notified of new messages in the concierge system"
|
|
227
|
+
},
|
|
222
228
|
"quickServices": {
|
|
223
229
|
"type": "array",
|
|
224
230
|
"items": {
|
package/dist/esm/Models.js
CHANGED
|
@@ -13033,6 +13033,10 @@ var require_issue = __commonJS({
|
|
|
13033
13033
|
},
|
|
13034
13034
|
systemKey: {
|
|
13035
13035
|
type: "string"
|
|
13036
|
+
},
|
|
13037
|
+
autoCreateTicket: {
|
|
13038
|
+
type: "boolean",
|
|
13039
|
+
default: true
|
|
13036
13040
|
}
|
|
13037
13041
|
},
|
|
13038
13042
|
required: ["id", "type", "name", "department"]
|
|
@@ -13384,6 +13388,12 @@ var require_property = __commonJS({
|
|
|
13384
13388
|
},
|
|
13385
13389
|
default: []
|
|
13386
13390
|
},
|
|
13391
|
+
newMessageChannel: {
|
|
13392
|
+
type: ["string", "null"],
|
|
13393
|
+
enum: ["sms", "email"],
|
|
13394
|
+
default: "sms",
|
|
13395
|
+
description: "Determines how users should be notified of new messages in the concierge system"
|
|
13396
|
+
},
|
|
13387
13397
|
quickServices: {
|
|
13388
13398
|
type: "array",
|
|
13389
13399
|
items: {
|