@escapenavigator/types 1.9.36 → 1.9.38
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/location/location.ro.d.ts +1 -0
- package/dist/location/location.ro.js +4 -0
- package/dist/openapi/orders/openapi-create-preorder.dto.js +1 -1
- package/dist/openapi/shared/openapi-questroom.ro.d.ts +4 -0
- package/dist/openapi/shared/openapi-questroom.ro.js +8 -0
- package/dist/order/order.ro.d.ts +1 -0
- package/dist/order/order.ro.js +4 -0
- package/dist/questroom/update-sort-postiton.dto.d.ts +4 -0
- package/dist/questroom/update-sort-postiton.dto.js +27 -0
- package/dist/questroom-scenario-email/create-questroom-scenario-email.dto.d.ts +1 -0
- package/dist/questroom-scenario-email/create-questroom-scenario-email.dto.js +7 -0
- package/dist/questroom-scenario-email/questroom-scenario-email.ro.d.ts +1 -0
- package/dist/questroom-scenario-email/questroom-scenario-email.ro.js +4 -0
- package/dist/slot/slot.ro.d.ts +2 -0
- package/dist/slot-template/slot-template-history.ro.d.ts +8 -0
- package/dist/slot-template/slot-template-history.ro.js +37 -0
- package/dist/slot-template/slot-template.ro.d.ts +3 -4
- package/dist/slot-template/slot-template.ro.js +21 -0
- package/dist/tsconfig.build.tsbuildinfo +1 -1
- package/dist/webhook/create-webhook.dto.d.ts +2 -0
- package/dist/webhook/create-webhook.dto.js +6 -0
- package/dist/webhook/webhook-type.enum.d.ts +5 -0
- package/dist/webhook/webhook-type.enum.js +9 -0
- package/dist/webhook/webhook.ro.d.ts +2 -0
- package/dist/webhook/webhook.ro.js +4 -0
- package/package.json +2 -2
|
@@ -19,4 +19,10 @@ __decorate([
|
|
|
19
19
|
(0, class_transformer_1.Expose)(),
|
|
20
20
|
__metadata("design:type", String)
|
|
21
21
|
], CreateWebhookDto.prototype, "url", void 0);
|
|
22
|
+
__decorate([
|
|
23
|
+
(0, class_validator_1.IsArray)(),
|
|
24
|
+
(0, class_validator_1.ArrayMinSize)(1),
|
|
25
|
+
(0, class_transformer_1.Expose)(),
|
|
26
|
+
__metadata("design:type", Array)
|
|
27
|
+
], CreateWebhookDto.prototype, "type", void 0);
|
|
22
28
|
exports.CreateWebhookDto = CreateWebhookDto;
|
|
@@ -0,0 +1,9 @@
|
|
|
1
|
+
"use strict";
|
|
2
|
+
Object.defineProperty(exports, "__esModule", { value: true });
|
|
3
|
+
exports.WebhookTypeEnum = void 0;
|
|
4
|
+
var WebhookTypeEnum;
|
|
5
|
+
(function (WebhookTypeEnum) {
|
|
6
|
+
WebhookTypeEnum["NEW_ORDER"] = "new-order";
|
|
7
|
+
WebhookTypeEnum["UPDATE_ORDER"] = "update-order";
|
|
8
|
+
WebhookTypeEnum["CANCEL_ORDER"] = "cancel-order";
|
|
9
|
+
})(WebhookTypeEnum = exports.WebhookTypeEnum || (exports.WebhookTypeEnum = {}));
|
|
@@ -18,4 +18,8 @@ __decorate([
|
|
|
18
18
|
(0, class_transformer_1.Expose)(),
|
|
19
19
|
__metadata("design:type", String)
|
|
20
20
|
], WebhookRO.prototype, "url", void 0);
|
|
21
|
+
__decorate([
|
|
22
|
+
(0, class_transformer_1.Expose)(),
|
|
23
|
+
__metadata("design:type", Array)
|
|
24
|
+
], WebhookRO.prototype, "type", void 0);
|
|
21
25
|
exports.WebhookRO = WebhookRO;
|
package/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@escapenavigator/types",
|
|
3
|
-
"version": "1.9.
|
|
3
|
+
"version": "1.9.38",
|
|
4
4
|
"publishConfig": {
|
|
5
5
|
"access": "public"
|
|
6
6
|
},
|
|
@@ -21,7 +21,7 @@
|
|
|
21
21
|
"class-transformer": "^0.5.1",
|
|
22
22
|
"class-validator": "^0.13.2"
|
|
23
23
|
},
|
|
24
|
-
"gitHead": "
|
|
24
|
+
"gitHead": "daf2978f7fd6d9217b64cc09944ab7c333690d1c",
|
|
25
25
|
"devDependencies": {
|
|
26
26
|
"@types/validator": "13.0.0",
|
|
27
27
|
"alphakit-presets-lint": "^1.0.0",
|