@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
package/dist/esm/utils.js
CHANGED
|
@@ -13113,6 +13113,10 @@ var require_issue = __commonJS({
|
|
|
13113
13113
|
},
|
|
13114
13114
|
systemKey: {
|
|
13115
13115
|
type: "string"
|
|
13116
|
+
},
|
|
13117
|
+
autoCreateTicket: {
|
|
13118
|
+
type: "boolean",
|
|
13119
|
+
default: true
|
|
13116
13120
|
}
|
|
13117
13121
|
},
|
|
13118
13122
|
required: ["id", "type", "name", "department"]
|
|
@@ -13464,6 +13468,12 @@ var require_property = __commonJS({
|
|
|
13464
13468
|
},
|
|
13465
13469
|
default: []
|
|
13466
13470
|
},
|
|
13471
|
+
newMessageChannel: {
|
|
13472
|
+
type: ["string", "null"],
|
|
13473
|
+
enum: ["sms", "email"],
|
|
13474
|
+
default: "sms",
|
|
13475
|
+
description: "Determines how users should be notified of new messages in the concierge system"
|
|
13476
|
+
},
|
|
13467
13477
|
quickServices: {
|
|
13468
13478
|
type: "array",
|
|
13469
13479
|
items: {
|