@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
package/dist/esm/utils.js
CHANGED
|
@@ -13468,6 +13468,12 @@ var require_property = __commonJS({
|
|
|
13468
13468
|
},
|
|
13469
13469
|
default: []
|
|
13470
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
|
+
},
|
|
13471
13477
|
quickServices: {
|
|
13472
13478
|
type: "array",
|
|
13473
13479
|
items: {
|
|
@@ -13855,8 +13861,8 @@ var require_organization = __commonJS({
|
|
|
13855
13861
|
type: "object",
|
|
13856
13862
|
properties: {
|
|
13857
13863
|
nextTicketNumber: {
|
|
13858
|
-
type: "string",
|
|
13859
|
-
default:
|
|
13864
|
+
type: ["string", "integer"],
|
|
13865
|
+
default: 1
|
|
13860
13866
|
}
|
|
13861
13867
|
}
|
|
13862
13868
|
},
|