adamo-types 1.2.122 → 1.2.124-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.
@@ -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";
@@ -19,6 +19,7 @@ export declare class CsvBillingStateResDto {
19
19
  output?: unknown;
20
20
  }
21
21
  export declare class BillToEmailDto {
22
+ billingAccountId: string;
22
23
  invoiceId: string;
23
24
  billNumberId: string;
24
25
  email: string;
@@ -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)(),
@@ -52,6 +52,7 @@ export declare class UpDownGradeDto {
52
52
  fromId?: string;
53
53
  to: string;
54
54
  baseOffers: UpDownGradeBaseOfferDto[];
55
+ characteristics: string[];
55
56
  }
56
57
  export declare class BulkUpDownGradeDto {
57
58
  dryrun?: boolean;
@@ -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() {