@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.
- package/dist/cjs/schemas/organization.json +2 -2
- package/dist/cjs/schemas/property.json +6 -0
- package/dist/esm/Models.js +8 -2
- package/dist/esm/Models.js.map +2 -2
- package/dist/esm/utils.js +8 -2
- package/dist/esm/utils.js.map +2 -2
- package/dist/types/schemas/OrganizationSchema.d.ts +1 -1
- 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
|
@@ -13388,6 +13388,12 @@ var require_property = __commonJS({
|
|
|
13388
13388
|
},
|
|
13389
13389
|
default: []
|
|
13390
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
|
+
},
|
|
13391
13397
|
quickServices: {
|
|
13392
13398
|
type: "array",
|
|
13393
13399
|
items: {
|
|
@@ -13775,8 +13781,8 @@ var require_organization = __commonJS({
|
|
|
13775
13781
|
type: "object",
|
|
13776
13782
|
properties: {
|
|
13777
13783
|
nextTicketNumber: {
|
|
13778
|
-
type: "string",
|
|
13779
|
-
default:
|
|
13784
|
+
type: ["string", "integer"],
|
|
13785
|
+
default: 1
|
|
13780
13786
|
}
|
|
13781
13787
|
}
|
|
13782
13788
|
},
|