adamo-types 1.2.15-sit → 1.2.15

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.
@@ -0,0 +1,24 @@
1
+ export declare class CsvCharge {
2
+ billingAccount: string;
3
+ invoiceText: string;
4
+ startDate: string;
5
+ netCharge: string;
6
+ }
7
+ export interface InfonovaApplyChargePayload {
8
+ billingAccount: string;
9
+ name: string;
10
+ validFor: ValidFor;
11
+ prices: Price;
12
+ }
13
+ interface ValidFor {
14
+ start: string;
15
+ }
16
+ interface Price {
17
+ name: string;
18
+ priceAdjustment: PriceAdjustment;
19
+ }
20
+ interface PriceAdjustment {
21
+ netCharge: string;
22
+ invoiceText: string;
23
+ }
24
+ export {};
@@ -0,0 +1,10 @@
1
+ "use strict";
2
+ Object.defineProperty(exports, "__esModule", { value: true });
3
+ exports.CsvCharge = void 0;
4
+ const openapi = require("@nestjs/swagger");
5
+ class CsvCharge {
6
+ static _OPENAPI_METADATA_FACTORY() {
7
+ return { billingAccount: { required: true, type: () => String }, invoiceText: { required: true, type: () => String }, startDate: { required: true, type: () => String }, netCharge: { required: true, type: () => String } };
8
+ }
9
+ }
10
+ exports.CsvCharge = CsvCharge;
@@ -0,0 +1 @@
1
+ export * from './csv-charges.entity';
@@ -0,0 +1,17 @@
1
+ "use strict";
2
+ var __createBinding = (this && this.__createBinding) || (Object.create ? (function(o, m, k, k2) {
3
+ if (k2 === undefined) k2 = k;
4
+ var desc = Object.getOwnPropertyDescriptor(m, k);
5
+ if (!desc || ("get" in desc ? !m.__esModule : desc.writable || desc.configurable)) {
6
+ desc = { enumerable: true, get: function() { return m[k]; } };
7
+ }
8
+ Object.defineProperty(o, k2, desc);
9
+ }) : (function(o, m, k, k2) {
10
+ if (k2 === undefined) k2 = k;
11
+ o[k2] = m[k];
12
+ }));
13
+ var __exportStar = (this && this.__exportStar) || function(m, exports) {
14
+ for (var p in m) if (p !== "default" && !Object.prototype.hasOwnProperty.call(exports, p)) __createBinding(exports, m, p);
15
+ };
16
+ Object.defineProperty(exports, "__esModule", { value: true });
17
+ __exportStar(require("./csv-charges.entity"), exports);
@@ -109,8 +109,8 @@ export declare class PartialNearByFhContactNoCoverageCustomerDto {
109
109
  email: string;
110
110
  }
111
111
  export declare class PartialNearByFhContactNoCoverageAddressSearchDto {
112
- nearestCoverageId?: string;
113
- nearestCoverageDistance?: string;
112
+ nearestCoverageId: string;
113
+ nearestCoverageDistance: string;
114
114
  }
115
115
  export declare class PatchSaleProcessAddressSearchDto {
116
116
  status: SaleProcessStatusType;
@@ -147,10 +147,10 @@ export declare class PatchSaleProcessFhContactDto {
147
147
  status: SaleProcessStatusType;
148
148
  fiberhoodId: number;
149
149
  customer: PartialNearByFhContactNoCoverageCustomerDto;
150
- addressSearch?: PartialNearByFhContactNoCoverageAddressSearchDto;
150
+ addressSearch: PartialNearByFhContactNoCoverageAddressSearchDto;
151
151
  }
152
152
  export declare class PatchSaleProcessNoCoverageWebDto {
153
153
  status: SaleProcessStatusType;
154
154
  customer: PartialNearByFhContactNoCoverageCustomerDto;
155
- addressSearch?: PartialNearByFhContactNoCoverageAddressSearchDto;
155
+ addressSearch: PartialNearByFhContactNoCoverageAddressSearchDto;
156
156
  }
@@ -502,21 +502,17 @@ __decorate([
502
502
  exports.PartialNearByFhContactNoCoverageCustomerDto = PartialNearByFhContactNoCoverageCustomerDto;
503
503
  class PartialNearByFhContactNoCoverageAddressSearchDto {
504
504
  static _OPENAPI_METADATA_FACTORY() {
505
- return { nearestCoverageId: { required: false, type: () => String }, nearestCoverageDistance: { required: false, type: () => String } };
505
+ return { nearestCoverageId: { required: true, type: () => String }, nearestCoverageDistance: { required: true, type: () => String } };
506
506
  }
507
507
  }
508
508
  __decorate([
509
509
  (0, class_validator_1.IsString)(),
510
510
  (0, class_validator_1.IsNotEmpty)(),
511
- (0, _validators_1.IsNotBlank)(),
512
- (0, class_validator_1.IsOptional)(),
513
511
  __metadata("design:type", String)
514
512
  ], PartialNearByFhContactNoCoverageAddressSearchDto.prototype, "nearestCoverageId", void 0);
515
513
  __decorate([
516
514
  (0, class_validator_1.IsString)(),
517
515
  (0, class_validator_1.IsNotEmpty)(),
518
- (0, _validators_1.IsNotBlank)(),
519
- (0, class_validator_1.IsOptional)(),
520
516
  __metadata("design:type", String)
521
517
  ], PartialNearByFhContactNoCoverageAddressSearchDto.prototype, "nearestCoverageDistance", void 0);
522
518
  exports.PartialNearByFhContactNoCoverageAddressSearchDto = PartialNearByFhContactNoCoverageAddressSearchDto;
@@ -647,13 +643,12 @@ __decorate([
647
643
  (0, class_validator_1.IsDefined)(),
648
644
  (0, class_validator_1.ValidateNested)(),
649
645
  (0, class_transformer_1.Type)(() => PartialNearByFhContactNoCoverageAddressSearchDto),
650
- (0, class_validator_1.IsOptional)(),
651
646
  __metadata("design:type", PartialNearByFhContactNoCoverageAddressSearchDto)
652
647
  ], PatchSaleProcessNearByDto.prototype, "addressSearch", void 0);
653
648
  exports.PatchSaleProcessNearByDto = PatchSaleProcessNearByDto;
654
649
  class PatchSaleProcessFhContactDto {
655
650
  static _OPENAPI_METADATA_FACTORY() {
656
- return { status: { required: true, enum: require("../../../../zoho/constants/zoho.constants").SaleProcessStatusType }, fiberhoodId: { required: true, type: () => Number }, customer: { required: true, type: () => require("./patch.entity").PartialNearByFhContactNoCoverageCustomerDto }, addressSearch: { required: false, type: () => require("./patch.entity").PartialNearByFhContactNoCoverageAddressSearchDto } };
651
+ return { status: { required: true, enum: require("../../../../zoho/constants/zoho.constants").SaleProcessStatusType }, fiberhoodId: { required: true, type: () => Number }, customer: { required: true, type: () => require("./patch.entity").PartialNearByFhContactNoCoverageCustomerDto }, addressSearch: { required: true, type: () => require("./patch.entity").PartialNearByFhContactNoCoverageAddressSearchDto } };
657
652
  }
658
653
  }
659
654
  __decorate([
@@ -674,13 +669,12 @@ __decorate([
674
669
  (0, class_validator_1.IsDefined)(),
675
670
  (0, class_validator_1.ValidateNested)(),
676
671
  (0, class_transformer_1.Type)(() => PartialNearByFhContactNoCoverageAddressSearchDto),
677
- (0, class_validator_1.IsOptional)(),
678
672
  __metadata("design:type", PartialNearByFhContactNoCoverageAddressSearchDto)
679
673
  ], PatchSaleProcessFhContactDto.prototype, "addressSearch", void 0);
680
674
  exports.PatchSaleProcessFhContactDto = PatchSaleProcessFhContactDto;
681
675
  class PatchSaleProcessNoCoverageWebDto {
682
676
  static _OPENAPI_METADATA_FACTORY() {
683
- return { status: { required: true, enum: require("../../../../zoho/constants/zoho.constants").SaleProcessStatusType }, customer: { required: true, type: () => require("./patch.entity").PartialNearByFhContactNoCoverageCustomerDto }, addressSearch: { required: false, type: () => require("./patch.entity").PartialNearByFhContactNoCoverageAddressSearchDto } };
677
+ return { status: { required: true, enum: require("../../../../zoho/constants/zoho.constants").SaleProcessStatusType }, customer: { required: true, type: () => require("./patch.entity").PartialNearByFhContactNoCoverageCustomerDto }, addressSearch: { required: true, type: () => require("./patch.entity").PartialNearByFhContactNoCoverageAddressSearchDto } };
684
678
  }
685
679
  }
686
680
  __decorate([
@@ -697,7 +691,6 @@ __decorate([
697
691
  (0, class_validator_1.IsDefined)(),
698
692
  (0, class_validator_1.ValidateNested)(),
699
693
  (0, class_transformer_1.Type)(() => PartialNearByFhContactNoCoverageAddressSearchDto),
700
- (0, class_validator_1.IsOptional)(),
701
694
  __metadata("design:type", PartialNearByFhContactNoCoverageAddressSearchDto)
702
695
  ], PatchSaleProcessNoCoverageWebDto.prototype, "addressSearch", void 0);
703
696
  exports.PatchSaleProcessNoCoverageWebDto = PatchSaleProcessNoCoverageWebDto;
@@ -14,7 +14,6 @@ export declare class PortInOperator {
14
14
  }
15
15
  export declare class TVBundle {
16
16
  displayName: string;
17
- displayNameB2B: string;
18
17
  }
19
18
  export declare class ContractPrice {
20
19
  promoFirstMonth: number;
@@ -10,7 +10,7 @@ class PortInOperator {
10
10
  exports.PortInOperator = PortInOperator;
11
11
  class TVBundle {
12
12
  static _OPENAPI_METADATA_FACTORY() {
13
- return { displayName: { required: true, type: () => String }, displayNameB2B: { required: true, type: () => String } };
13
+ return { displayName: { required: true, type: () => String } };
14
14
  }
15
15
  }
16
16
  exports.TVBundle = TVBundle;