@escapenavigator/types 1.9.33 → 1.9.34

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.
@@ -45,6 +45,7 @@ export declare class CertificateSaleRO extends RO {
45
45
  deliveryHouse: string;
46
46
  deliveryApart: string;
47
47
  deliveryComment: string;
48
+ comment: string;
48
49
  deliveryCity: string;
49
50
  deliveryPostcode: string;
50
51
  sendingEmailFullUtcDate: string;
@@ -178,6 +178,10 @@ __decorate([
178
178
  (0, class_transformer_1.Expose)(),
179
179
  __metadata("design:type", String)
180
180
  ], CertificateSaleRO.prototype, "deliveryComment", void 0);
181
+ __decorate([
182
+ (0, class_transformer_1.Expose)(),
183
+ __metadata("design:type", String)
184
+ ], CertificateSaleRO.prototype, "comment", void 0);
181
185
  __decorate([
182
186
  (0, class_transformer_1.Expose)(),
183
187
  __metadata("design:type", String)
@@ -17,6 +17,7 @@ export declare class CreateCertificatesaleDto {
17
17
  deliveryHouse: string;
18
18
  deliveryApart: string;
19
19
  deliveryComment: string;
20
+ comment: string;
20
21
  deliveryMessage: string;
21
22
  sendingDate: string;
22
23
  sendingTime: string;
@@ -112,6 +112,11 @@ __decorate([
112
112
  (0, class_transformer_1.Expose)(),
113
113
  __metadata("design:type", String)
114
114
  ], CreateCertificatesaleDto.prototype, "deliveryComment", void 0);
115
+ __decorate([
116
+ (0, class_validator_1.IsOptional)(),
117
+ (0, class_transformer_1.Expose)(),
118
+ __metadata("design:type", String)
119
+ ], CreateCertificatesaleDto.prototype, "comment", void 0);
115
120
  __decorate([
116
121
  (0, class_validator_1.IsOptional)(),
117
122
  (0, class_transformer_1.Expose)(),
@@ -12,6 +12,7 @@ export declare class UpdateCertificatesaleDeliveryInfoDto {
12
12
  deliveryHouse: string;
13
13
  deliveryApart: string;
14
14
  deliveryComment: string;
15
+ comment: string;
15
16
  deliveryMessage: string;
16
17
  sendingDate: string;
17
18
  sendingTime: string;
@@ -86,6 +86,11 @@ __decorate([
86
86
  (0, class_transformer_1.Expose)(),
87
87
  __metadata("design:type", String)
88
88
  ], UpdateCertificatesaleDeliveryInfoDto.prototype, "deliveryComment", void 0);
89
+ __decorate([
90
+ (0, class_validator_1.IsOptional)(),
91
+ (0, class_transformer_1.Expose)(),
92
+ __metadata("design:type", String)
93
+ ], UpdateCertificatesaleDeliveryInfoDto.prototype, "comment", void 0);
89
94
  __decorate([
90
95
  (0, class_validator_1.IsOptional)(),
91
96
  (0, class_transformer_1.Expose)(),
@@ -31,6 +31,7 @@ export declare class OpenapiCertificateSaleRO {
31
31
  deliveryHouse: string;
32
32
  deliveryApart: string;
33
33
  deliveryComment: string;
34
+ comment: string;
34
35
  deliveryCity?: string;
35
36
  deliveryPostCode?: string;
36
37
  deliveryEmail?: string;
@@ -125,6 +125,10 @@ __decorate([
125
125
  (0, class_transformer_1.Expose)(),
126
126
  __metadata("design:type", String)
127
127
  ], OpenapiCertificateSaleRO.prototype, "deliveryComment", void 0);
128
+ __decorate([
129
+ (0, class_transformer_1.Expose)(),
130
+ __metadata("design:type", String)
131
+ ], OpenapiCertificateSaleRO.prototype, "comment", void 0);
128
132
  __decorate([
129
133
  (0, class_transformer_1.Expose)(),
130
134
  __metadata("design:type", String)
@@ -20,6 +20,7 @@ export declare class OpenapiCreateCertificateSaleDto {
20
20
  deliveryHouse: string;
21
21
  deliveryApart: string;
22
22
  deliveryComment: string;
23
+ comment: string;
23
24
  deliveryCity: string;
24
25
  deliveryPostcode: string;
25
26
  deliveryMessage: string;
@@ -123,6 +123,11 @@ __decorate([
123
123
  (0, class_transformer_1.Expose)(),
124
124
  __metadata("design:type", String)
125
125
  ], OpenapiCreateCertificateSaleDto.prototype, "deliveryComment", void 0);
126
+ __decorate([
127
+ (0, class_validator_1.IsOptional)(),
128
+ (0, class_transformer_1.Expose)(),
129
+ __metadata("design:type", String)
130
+ ], OpenapiCreateCertificateSaleDto.prototype, "comment", void 0);
126
131
  __decorate([
127
132
  (0, class_validator_1.ValidateIf)((row) => row.deliveryType === certificatesales_delivery_type_enum_1.CertificatesaleDeliveryTypeEnum.POST),
128
133
  (0, is_not_blank_1.IsNotBlank)(),