@kohost/api-client 3.0.0-beta.52 → 3.0.0-beta.54
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.
|
@@ -12,6 +12,9 @@
|
|
|
12
12
|
"type": "string",
|
|
13
13
|
"default": "mediaFile"
|
|
14
14
|
},
|
|
15
|
+
"name": {
|
|
16
|
+
"type": "string"
|
|
17
|
+
},
|
|
15
18
|
"fileHash": {
|
|
16
19
|
"type": "string"
|
|
17
20
|
},
|
|
@@ -63,5 +66,5 @@
|
|
|
63
66
|
}
|
|
64
67
|
},
|
|
65
68
|
"additionalProperties": false,
|
|
66
|
-
"required": ["
|
|
69
|
+
"required": ["type"]
|
|
67
70
|
}
|
|
@@ -164,7 +164,23 @@
|
|
|
164
164
|
"appFeatures": {
|
|
165
165
|
"type": "object",
|
|
166
166
|
"properties": {
|
|
167
|
-
"RoomControl": {
|
|
167
|
+
"RoomControl": {
|
|
168
|
+
"type": "object",
|
|
169
|
+
"properties": {
|
|
170
|
+
"commonAreas": {
|
|
171
|
+
"type": "object",
|
|
172
|
+
"properties": {
|
|
173
|
+
"spaces": {
|
|
174
|
+
"type": "array",
|
|
175
|
+
"items": {
|
|
176
|
+
"type": "string"
|
|
177
|
+
}
|
|
178
|
+
}
|
|
179
|
+
}
|
|
180
|
+
}
|
|
181
|
+
},
|
|
182
|
+
"additionalProperties": false
|
|
183
|
+
},
|
|
168
184
|
"CheckIn": {
|
|
169
185
|
"properties": {
|
|
170
186
|
"payment": {},
|
|
@@ -237,6 +253,50 @@
|
|
|
237
253
|
"RoomControl": {}
|
|
238
254
|
}
|
|
239
255
|
},
|
|
256
|
+
"notifications": {
|
|
257
|
+
"type": "object",
|
|
258
|
+
"properties": {
|
|
259
|
+
"email": {
|
|
260
|
+
"type": "object",
|
|
261
|
+
"properties": {
|
|
262
|
+
"enabled": {
|
|
263
|
+
"type": "boolean"
|
|
264
|
+
}
|
|
265
|
+
},
|
|
266
|
+
"additionalProperties": false
|
|
267
|
+
},
|
|
268
|
+
"sms": {
|
|
269
|
+
"type": "object",
|
|
270
|
+
"properties": {
|
|
271
|
+
"enabled": {
|
|
272
|
+
"type": "boolean"
|
|
273
|
+
}
|
|
274
|
+
},
|
|
275
|
+
"additionalProperties": false
|
|
276
|
+
},
|
|
277
|
+
"push": {
|
|
278
|
+
"type": "object",
|
|
279
|
+
"properties": {
|
|
280
|
+
"enabled": {
|
|
281
|
+
"type": "boolean"
|
|
282
|
+
}
|
|
283
|
+
},
|
|
284
|
+
"additionalProperties": false
|
|
285
|
+
}
|
|
286
|
+
},
|
|
287
|
+
"additionalProperties": false,
|
|
288
|
+
"default": {
|
|
289
|
+
"email": {
|
|
290
|
+
"enabled": false
|
|
291
|
+
},
|
|
292
|
+
"sms": {
|
|
293
|
+
"enabled": false
|
|
294
|
+
},
|
|
295
|
+
"push": {
|
|
296
|
+
"enabled": false
|
|
297
|
+
}
|
|
298
|
+
}
|
|
299
|
+
},
|
|
240
300
|
"credentials": {
|
|
241
301
|
"type": "object",
|
|
242
302
|
"additionalProperties": true
|
package/dist/esm/Models.js
CHANGED
|
@@ -8257,6 +8257,9 @@ var require_mediaFile = __commonJS({
|
|
|
8257
8257
|
type: "string",
|
|
8258
8258
|
default: "mediaFile"
|
|
8259
8259
|
},
|
|
8260
|
+
name: {
|
|
8261
|
+
type: "string"
|
|
8262
|
+
},
|
|
8260
8263
|
fileHash: {
|
|
8261
8264
|
type: "string"
|
|
8262
8265
|
},
|
|
@@ -8308,7 +8311,7 @@ var require_mediaFile = __commonJS({
|
|
|
8308
8311
|
}
|
|
8309
8312
|
},
|
|
8310
8313
|
additionalProperties: false,
|
|
8311
|
-
required: ["
|
|
8314
|
+
required: ["type"]
|
|
8312
8315
|
};
|
|
8313
8316
|
}
|
|
8314
8317
|
});
|
|
@@ -15145,7 +15148,23 @@ var require_property = __commonJS({
|
|
|
15145
15148
|
appFeatures: {
|
|
15146
15149
|
type: "object",
|
|
15147
15150
|
properties: {
|
|
15148
|
-
RoomControl: {
|
|
15151
|
+
RoomControl: {
|
|
15152
|
+
type: "object",
|
|
15153
|
+
properties: {
|
|
15154
|
+
commonAreas: {
|
|
15155
|
+
type: "object",
|
|
15156
|
+
properties: {
|
|
15157
|
+
spaces: {
|
|
15158
|
+
type: "array",
|
|
15159
|
+
items: {
|
|
15160
|
+
type: "string"
|
|
15161
|
+
}
|
|
15162
|
+
}
|
|
15163
|
+
}
|
|
15164
|
+
}
|
|
15165
|
+
},
|
|
15166
|
+
additionalProperties: false
|
|
15167
|
+
},
|
|
15149
15168
|
CheckIn: {
|
|
15150
15169
|
properties: {
|
|
15151
15170
|
payment: {},
|
|
@@ -15218,6 +15237,50 @@ var require_property = __commonJS({
|
|
|
15218
15237
|
RoomControl: {}
|
|
15219
15238
|
}
|
|
15220
15239
|
},
|
|
15240
|
+
notifications: {
|
|
15241
|
+
type: "object",
|
|
15242
|
+
properties: {
|
|
15243
|
+
email: {
|
|
15244
|
+
type: "object",
|
|
15245
|
+
properties: {
|
|
15246
|
+
enabled: {
|
|
15247
|
+
type: "boolean"
|
|
15248
|
+
}
|
|
15249
|
+
},
|
|
15250
|
+
additionalProperties: false
|
|
15251
|
+
},
|
|
15252
|
+
sms: {
|
|
15253
|
+
type: "object",
|
|
15254
|
+
properties: {
|
|
15255
|
+
enabled: {
|
|
15256
|
+
type: "boolean"
|
|
15257
|
+
}
|
|
15258
|
+
},
|
|
15259
|
+
additionalProperties: false
|
|
15260
|
+
},
|
|
15261
|
+
push: {
|
|
15262
|
+
type: "object",
|
|
15263
|
+
properties: {
|
|
15264
|
+
enabled: {
|
|
15265
|
+
type: "boolean"
|
|
15266
|
+
}
|
|
15267
|
+
},
|
|
15268
|
+
additionalProperties: false
|
|
15269
|
+
}
|
|
15270
|
+
},
|
|
15271
|
+
additionalProperties: false,
|
|
15272
|
+
default: {
|
|
15273
|
+
email: {
|
|
15274
|
+
enabled: false
|
|
15275
|
+
},
|
|
15276
|
+
sms: {
|
|
15277
|
+
enabled: false
|
|
15278
|
+
},
|
|
15279
|
+
push: {
|
|
15280
|
+
enabled: false
|
|
15281
|
+
}
|
|
15282
|
+
}
|
|
15283
|
+
},
|
|
15221
15284
|
credentials: {
|
|
15222
15285
|
type: "object",
|
|
15223
15286
|
additionalProperties: true
|