adamo-types 1.2.127-uat → 1.2.129-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.
@@ -115,5 +115,6 @@ export declare class CustomerCharacteristicDto {
115
115
  name: string;
116
116
  invoiceText: string;
117
117
  startDate: string;
118
+ endDate: string;
118
119
  netCharge: string;
119
120
  }
@@ -125,7 +125,7 @@ class CustomerBillsFiltersDto extends search_1.BaseSearchFiltersDto {
125
125
  exports.CustomerBillsFiltersDto = CustomerBillsFiltersDto;
126
126
  class CustomerCharacteristicDto {
127
127
  static _OPENAPI_METADATA_FACTORY() {
128
- return { id: { required: false, type: () => String }, billingAccountId: { required: false, type: () => String }, name: { required: true, type: () => String }, invoiceText: { required: true, type: () => String }, startDate: { required: true, type: () => String }, netCharge: { required: true, type: () => String } };
128
+ return { id: { required: false, type: () => String }, billingAccountId: { required: false, type: () => String }, name: { required: true, type: () => String }, invoiceText: { required: true, type: () => String }, startDate: { required: true, type: () => String }, endDate: { required: true, type: () => String }, netCharge: { required: true, type: () => String } };
129
129
  }
130
130
  }
131
131
  exports.CustomerCharacteristicDto = CustomerCharacteristicDto;
@@ -2,7 +2,7 @@ export declare enum ArsTenant {
2
2
  ADMIN = "admin",
3
3
  CLI = "cli",
4
4
  DIGITEL = "digitel",
5
- EVENT = "event",
5
+ PUBLIC = "public",
6
6
  SYS03 = "sys03",
7
7
  WEB = "web",
8
8
  ZOHO = "zoho"
@@ -6,7 +6,7 @@ var ArsTenant;
6
6
  ArsTenant["ADMIN"] = "admin";
7
7
  ArsTenant["CLI"] = "cli";
8
8
  ArsTenant["DIGITEL"] = "digitel";
9
- ArsTenant["EVENT"] = "event";
9
+ ArsTenant["PUBLIC"] = "public";
10
10
  ArsTenant["SYS03"] = "sys03";
11
11
  ArsTenant["WEB"] = "web";
12
12
  ArsTenant["ZOHO"] = "zoho";
@@ -1 +1,2 @@
1
1
  export * from './bill.entity';
2
+ export * from './bill.file.dic';
@@ -15,3 +15,4 @@ var __exportStar = (this && this.__exportStar) || function(m, exports) {
15
15
  };
16
16
  Object.defineProperty(exports, "__esModule", { value: true });
17
17
  __exportStar(require("./bill.entity"), exports);
18
+ __exportStar(require("./bill.file.dic"), exports);
@@ -2,6 +2,7 @@ export declare class CsvChargeDto {
2
2
  billingAccountId: string;
3
3
  invoiceText: string;
4
4
  startDate: string;
5
+ endDate?: string;
5
6
  netCharge: string;
6
7
  name?: string;
7
8
  }
@@ -16,7 +16,7 @@ const class_transformer_1 = require("class-transformer");
16
16
  const class_validator_1 = require("class-validator");
17
17
  class CsvChargeDto {
18
18
  static _OPENAPI_METADATA_FACTORY() {
19
- return { billingAccountId: { required: true, type: () => String }, invoiceText: { required: true, type: () => String }, startDate: { required: true, type: () => String }, netCharge: { required: true, type: () => String }, name: { required: false, type: () => String } };
19
+ return { billingAccountId: { required: true, type: () => String }, invoiceText: { required: true, type: () => String }, startDate: { required: true, type: () => String }, endDate: { required: false, type: () => String }, netCharge: { required: true, type: () => String }, name: { required: false, type: () => String } };
20
20
  }
21
21
  }
22
22
  __decorate([
@@ -41,6 +41,12 @@ __decorate([
41
41
  (0, class_transformer_1.Expose)(),
42
42
  __metadata("design:type", String)
43
43
  ], CsvChargeDto.prototype, "startDate", void 0);
44
+ __decorate([
45
+ (0, class_validator_1.IsString)(),
46
+ (0, class_validator_1.IsOptional)(),
47
+ (0, class_transformer_1.Expose)(),
48
+ __metadata("design:type", String)
49
+ ], CsvChargeDto.prototype, "endDate", void 0);
44
50
  __decorate([
45
51
  (0, class_validator_1.IsNumberString)(),
46
52
  (0, class_validator_1.IsNotEmpty)(),