@escapenavigator/types 1.6.58 → 1.6.60
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/constants/upload-certificate-rows.js +9 -1
- package/dist/openapi/now-escape/openapi-now-escape-order.dto.d.ts +3 -6
- package/dist/openapi/now-escape/openapi-now-escape-order.dto.js +8 -8
- package/dist/tsconfig.build.tsbuildinfo +1 -1
- package/dist/user/current/current-user.ro.d.ts +5 -0
- package/dist/user/current/current-user.ro.js +15 -0
- package/package.json +2 -2
|
@@ -1,4 +1,12 @@
|
|
|
1
1
|
"use strict";
|
|
2
2
|
Object.defineProperty(exports, "__esModule", { value: true });
|
|
3
3
|
exports.uploadCertificateRows = void 0;
|
|
4
|
-
exports.uploadCertificateRows = [
|
|
4
|
+
exports.uploadCertificateRows = [
|
|
5
|
+
'CODE',
|
|
6
|
+
'SOURCE',
|
|
7
|
+
'CLIENT',
|
|
8
|
+
'NOMINAL',
|
|
9
|
+
'VALIDITY',
|
|
10
|
+
'CREATED',
|
|
11
|
+
'USED',
|
|
12
|
+
];
|
|
@@ -1,10 +1,6 @@
|
|
|
1
1
|
declare enum Status {
|
|
2
2
|
BOOKEN = "booked",
|
|
3
|
-
CANCELED = "
|
|
4
|
-
}
|
|
5
|
-
declare enum Paid {
|
|
6
|
-
TRUE = "true",
|
|
7
|
-
FALSE = "false"
|
|
3
|
+
CANCELED = "cancelled"
|
|
8
4
|
}
|
|
9
5
|
export declare class OpenapiNowEscapeOrderDto {
|
|
10
6
|
first_name: string;
|
|
@@ -17,9 +13,10 @@ export declare class OpenapiNowEscapeOrderDto {
|
|
|
17
13
|
time: string;
|
|
18
14
|
your_slot_id: number;
|
|
19
15
|
unique_id: string;
|
|
20
|
-
paid_on_website:
|
|
16
|
+
paid_on_website: boolean;
|
|
21
17
|
status: Status;
|
|
22
18
|
source: string;
|
|
19
|
+
room_id: string;
|
|
23
20
|
md5: string;
|
|
24
21
|
price: number;
|
|
25
22
|
}
|
|
@@ -16,13 +16,8 @@ const is_not_blank_1 = require("../../shared/is-not-blank");
|
|
|
16
16
|
var Status;
|
|
17
17
|
(function (Status) {
|
|
18
18
|
Status["BOOKEN"] = "booked";
|
|
19
|
-
Status["CANCELED"] = "
|
|
19
|
+
Status["CANCELED"] = "cancelled";
|
|
20
20
|
})(Status || (Status = {}));
|
|
21
|
-
var Paid;
|
|
22
|
-
(function (Paid) {
|
|
23
|
-
Paid["TRUE"] = "true";
|
|
24
|
-
Paid["FALSE"] = "false";
|
|
25
|
-
})(Paid || (Paid = {}));
|
|
26
21
|
class OpenapiNowEscapeOrderDto {
|
|
27
22
|
}
|
|
28
23
|
__decorate([
|
|
@@ -77,8 +72,8 @@ __decorate([
|
|
|
77
72
|
], OpenapiNowEscapeOrderDto.prototype, "unique_id", void 0);
|
|
78
73
|
__decorate([
|
|
79
74
|
(0, class_transformer_1.Expose)(),
|
|
80
|
-
(0, class_validator_1.
|
|
81
|
-
__metadata("design:type",
|
|
75
|
+
(0, class_validator_1.IsBoolean)(),
|
|
76
|
+
__metadata("design:type", Boolean)
|
|
82
77
|
], OpenapiNowEscapeOrderDto.prototype, "paid_on_website", void 0);
|
|
83
78
|
__decorate([
|
|
84
79
|
(0, class_transformer_1.Expose)(),
|
|
@@ -90,6 +85,11 @@ __decorate([
|
|
|
90
85
|
(0, class_validator_1.IsOptional)(),
|
|
91
86
|
__metadata("design:type", String)
|
|
92
87
|
], OpenapiNowEscapeOrderDto.prototype, "source", void 0);
|
|
88
|
+
__decorate([
|
|
89
|
+
(0, class_transformer_1.Expose)(),
|
|
90
|
+
(0, class_validator_1.IsOptional)(),
|
|
91
|
+
__metadata("design:type", String)
|
|
92
|
+
], OpenapiNowEscapeOrderDto.prototype, "room_id", void 0);
|
|
93
93
|
__decorate([
|
|
94
94
|
(0, class_transformer_1.Expose)(),
|
|
95
95
|
(0, class_validator_1.IsOptional)(),
|