adamo-types 1.2.122 → 1.2.123-sit
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/common/constants/common.constants.d.ts +2 -0
- package/dist/common/constants/common.constants.js +2 -0
- package/dist/sys03/bill/bill.entity.d.ts +1 -0
- package/dist/sys03/bill/bill.entity.js +8 -1
- package/dist/sys03/updowngrade/updowngrade.entity.d.ts +1 -0
- package/dist/sys03/updowngrade/updowngrade.entity.js +6 -1
- package/dist/tsconfig.build.tsbuildinfo +1 -1
- package/package.json +2 -2
|
@@ -90,6 +90,8 @@ export declare enum Templates {
|
|
|
90
90
|
WEB_ORDER_CLIENT_TEMPLATE = "WEB_ORDER_CLIENT_TEMPLATE",
|
|
91
91
|
ADMIN_NOTIFICATION_TEMPLATE = "ADMIN_NOTIFICATION_TEMPLATE",
|
|
92
92
|
INVOICE_B2B_TEMPLATE = "INVOICE_B2B_TEMPLATE",
|
|
93
|
+
INVOICE_B2B_PYMES_TEMPLATE = "INVOICE_B2B_PYMES_TEMPLATE",
|
|
94
|
+
INVOICE_B2B_CORPORATE_TEMPLATE = "INVOICE_B2B_CORPORATE_TEMPLATE",
|
|
93
95
|
INVOICE_B2C_TEMPLATE = "INVOICE_B2C_TEMPLATE",
|
|
94
96
|
DIGITEL_WEB_REMINDER_TEMPLATE = "DIGITEL_WEB_REMINDER_TEMPLATE",
|
|
95
97
|
WEB_PRE_ORDER_CLIENT_TEMPLATE = "WEB_PRE_ORDER_CLIENT_TEMPLATE"
|
|
@@ -110,6 +110,8 @@ var Templates;
|
|
|
110
110
|
Templates["WEB_ORDER_CLIENT_TEMPLATE"] = "WEB_ORDER_CLIENT_TEMPLATE";
|
|
111
111
|
Templates["ADMIN_NOTIFICATION_TEMPLATE"] = "ADMIN_NOTIFICATION_TEMPLATE";
|
|
112
112
|
Templates["INVOICE_B2B_TEMPLATE"] = "INVOICE_B2B_TEMPLATE";
|
|
113
|
+
Templates["INVOICE_B2B_PYMES_TEMPLATE"] = "INVOICE_B2B_PYMES_TEMPLATE";
|
|
114
|
+
Templates["INVOICE_B2B_CORPORATE_TEMPLATE"] = "INVOICE_B2B_CORPORATE_TEMPLATE";
|
|
113
115
|
Templates["INVOICE_B2C_TEMPLATE"] = "INVOICE_B2C_TEMPLATE";
|
|
114
116
|
Templates["DIGITEL_WEB_REMINDER_TEMPLATE"] = "DIGITEL_WEB_REMINDER_TEMPLATE";
|
|
115
117
|
Templates["WEB_PRE_ORDER_CLIENT_TEMPLATE"] = "WEB_PRE_ORDER_CLIENT_TEMPLATE";
|
|
@@ -84,9 +84,16 @@ class CsvBillingStateResDto {
|
|
|
84
84
|
exports.CsvBillingStateResDto = CsvBillingStateResDto;
|
|
85
85
|
class BillToEmailDto {
|
|
86
86
|
static _OPENAPI_METADATA_FACTORY() {
|
|
87
|
-
return { invoiceId: { required: true, type: () => String }, billNumberId: { required: true, type: () => String }, email: { required: true, type: () => String }, additionalContactEmail: { required: false, type: () => String } };
|
|
87
|
+
return { billingAccountId: { required: true, type: () => String }, invoiceId: { required: true, type: () => String }, billNumberId: { required: true, type: () => String }, email: { required: true, type: () => String }, additionalContactEmail: { required: false, type: () => String } };
|
|
88
88
|
}
|
|
89
89
|
}
|
|
90
|
+
__decorate([
|
|
91
|
+
(0, class_validator_1.IsNumberString)({ no_symbols: true }),
|
|
92
|
+
(0, class_validator_1.IsNotEmpty)(),
|
|
93
|
+
(0, _validators_1.IsNotBlank)(),
|
|
94
|
+
(0, class_transformer_1.Expose)(),
|
|
95
|
+
__metadata("design:type", String)
|
|
96
|
+
], BillToEmailDto.prototype, "billingAccountId", void 0);
|
|
90
97
|
__decorate([
|
|
91
98
|
(0, class_validator_1.IsNumberString)({ no_symbols: true }),
|
|
92
99
|
(0, class_validator_1.IsNotEmpty)(),
|
|
@@ -128,7 +128,7 @@ __decorate([
|
|
|
128
128
|
exports.UpDownGradeBaseOfferDto = UpDownGradeBaseOfferDto;
|
|
129
129
|
class UpDownGradeDto {
|
|
130
130
|
static _OPENAPI_METADATA_FACTORY() {
|
|
131
|
-
return { dryrun: { required: false, type: () => Boolean }, billingAccountId: { required: true, type: () => String }, taskDescription: { required: false, type: () => String }, user: { required: false, type: () => String }, channel: { required: false, type: () => String }, chargeDate: { required: false, type: () => String }, from: { required: true, type: () => String }, fromId: { required: false, type: () => String }, to: { required: true, type: () => String }, baseOffers: { required: true, type: () => [require("./updowngrade.entity").UpDownGradeBaseOfferDto] } };
|
|
131
|
+
return { dryrun: { required: false, type: () => Boolean }, billingAccountId: { required: true, type: () => String }, taskDescription: { required: false, type: () => String }, user: { required: false, type: () => String }, channel: { required: false, type: () => String }, chargeDate: { required: false, type: () => String }, from: { required: true, type: () => String }, fromId: { required: false, type: () => String }, to: { required: true, type: () => String }, baseOffers: { required: true, type: () => [require("./updowngrade.entity").UpDownGradeBaseOfferDto] }, characteristics: { required: true, type: () => [String] } };
|
|
132
132
|
}
|
|
133
133
|
}
|
|
134
134
|
__decorate([
|
|
@@ -195,6 +195,11 @@ __decorate([
|
|
|
195
195
|
(0, class_transformer_1.Type)(() => UpDownGradeBaseOfferDto),
|
|
196
196
|
__metadata("design:type", Array)
|
|
197
197
|
], UpDownGradeDto.prototype, "baseOffers", void 0);
|
|
198
|
+
__decorate([
|
|
199
|
+
(0, class_validator_1.IsArray)(),
|
|
200
|
+
(0, class_validator_1.IsOptional)(),
|
|
201
|
+
__metadata("design:type", Array)
|
|
202
|
+
], UpDownGradeDto.prototype, "characteristics", void 0);
|
|
198
203
|
exports.UpDownGradeDto = UpDownGradeDto;
|
|
199
204
|
class BulkUpDownGradeDto {
|
|
200
205
|
static _OPENAPI_METADATA_FACTORY() {
|