adamo-types 1.2.121-sit → 1.2.122-uat
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.
|
@@ -108,16 +108,6 @@ export interface LeadDataColumnsAndLeadColumns extends LeadColumns, LeadDataColu
|
|
|
108
108
|
lead?: number;
|
|
109
109
|
}
|
|
110
110
|
export declare class SaleEntity extends LeadDataEntity {
|
|
111
|
-
ibanValidationIntents?: number;
|
|
112
|
-
ibanValidationApprovalIntents?: number;
|
|
113
|
-
ibanValidationStatus?: string;
|
|
114
|
-
ibanValidationApprovalValidation?: string;
|
|
115
|
-
ibanValidationProviderValidationStatus?: string;
|
|
116
|
-
ibanValidationProviderError?: string;
|
|
117
|
-
ibanValidationApprovedBy?: string;
|
|
118
|
-
ibanValidationJobFirstRetryDate?: string;
|
|
119
|
-
ibanValidationJobRetries?: number;
|
|
120
|
-
ibanValidationJobSendDate?: string;
|
|
121
111
|
}
|
|
122
112
|
export declare class LeadDataZohoEntity extends LeadDataEntity {
|
|
123
113
|
}
|
|
@@ -421,49 +421,9 @@ LeadDataEntity = __decorate([
|
|
|
421
421
|
exports.LeadDataEntity = LeadDataEntity;
|
|
422
422
|
let SaleEntity = class SaleEntity extends LeadDataEntity {
|
|
423
423
|
static _OPENAPI_METADATA_FACTORY() {
|
|
424
|
-
return {
|
|
424
|
+
return {};
|
|
425
425
|
}
|
|
426
426
|
};
|
|
427
|
-
__decorate([
|
|
428
|
-
(0, typeorm_1.Column)({ type: 'int', nullable: true }),
|
|
429
|
-
__metadata("design:type", Number)
|
|
430
|
-
], SaleEntity.prototype, "ibanValidationIntents", void 0);
|
|
431
|
-
__decorate([
|
|
432
|
-
(0, typeorm_1.Column)({ type: 'int', nullable: true }),
|
|
433
|
-
__metadata("design:type", Number)
|
|
434
|
-
], SaleEntity.prototype, "ibanValidationApprovalIntents", void 0);
|
|
435
|
-
__decorate([
|
|
436
|
-
(0, typeorm_1.Column)({ type: 'varchar', length: 100, nullable: true }),
|
|
437
|
-
__metadata("design:type", String)
|
|
438
|
-
], SaleEntity.prototype, "ibanValidationStatus", void 0);
|
|
439
|
-
__decorate([
|
|
440
|
-
(0, typeorm_1.Column)({ type: 'varchar', length: 45, nullable: true }),
|
|
441
|
-
__metadata("design:type", String)
|
|
442
|
-
], SaleEntity.prototype, "ibanValidationApprovalValidation", void 0);
|
|
443
|
-
__decorate([
|
|
444
|
-
(0, typeorm_1.Column)({ type: 'text', nullable: true }),
|
|
445
|
-
__metadata("design:type", String)
|
|
446
|
-
], SaleEntity.prototype, "ibanValidationProviderValidationStatus", void 0);
|
|
447
|
-
__decorate([
|
|
448
|
-
(0, typeorm_1.Column)({ type: 'text', nullable: true }),
|
|
449
|
-
__metadata("design:type", String)
|
|
450
|
-
], SaleEntity.prototype, "ibanValidationProviderError", void 0);
|
|
451
|
-
__decorate([
|
|
452
|
-
(0, typeorm_1.Column)({ type: 'varchar', length: 100, nullable: true }),
|
|
453
|
-
__metadata("design:type", String)
|
|
454
|
-
], SaleEntity.prototype, "ibanValidationApprovedBy", void 0);
|
|
455
|
-
__decorate([
|
|
456
|
-
(0, typeorm_1.Column)({ type: 'datetime', nullable: true }),
|
|
457
|
-
__metadata("design:type", String)
|
|
458
|
-
], SaleEntity.prototype, "ibanValidationJobFirstRetryDate", void 0);
|
|
459
|
-
__decorate([
|
|
460
|
-
(0, typeorm_1.Column)({ type: 'int', nullable: true }),
|
|
461
|
-
__metadata("design:type", Number)
|
|
462
|
-
], SaleEntity.prototype, "ibanValidationJobRetries", void 0);
|
|
463
|
-
__decorate([
|
|
464
|
-
(0, typeorm_1.Column)({ type: 'datetime', nullable: true }),
|
|
465
|
-
__metadata("design:type", String)
|
|
466
|
-
], SaleEntity.prototype, "ibanValidationJobSendDate", void 0);
|
|
467
427
|
SaleEntity = __decorate([
|
|
468
428
|
(0, typeorm_1.Entity)({ name: 'sales' })
|
|
469
429
|
], SaleEntity);
|
|
@@ -1,6 +1,5 @@
|
|
|
1
1
|
import { SaleProcessApprovalValidatorKeys } from '../constants';
|
|
2
|
-
import { IbanValidationProviderValidationStatus
|
|
3
|
-
import { AuditFieldsDto } from '../common';
|
|
2
|
+
import { IbanValidationProviderValidationStatus } from '../iban-validation';
|
|
4
3
|
import { ApprovalIndividualIdentificationDto } from '../approval';
|
|
5
4
|
export declare class CreateApprovalDataBaseDto {
|
|
6
5
|
validation: SaleProcessApprovalValidatorKeys;
|
|
@@ -21,18 +20,6 @@ export declare class SaleProcessSaleIbanValidationProviderDto {
|
|
|
21
20
|
validationStatus?: IbanValidationProviderValidationStatus;
|
|
22
21
|
error?: string;
|
|
23
22
|
}
|
|
24
|
-
export declare class SaleProcessSaleIbanValidationDto {
|
|
25
|
-
intents: number;
|
|
26
|
-
approvalIntents: number;
|
|
27
|
-
status: IbanValidationStatus;
|
|
28
|
-
validation: string;
|
|
29
|
-
provider: SaleProcessSaleIbanValidationProviderDto;
|
|
30
|
-
approved?: AuditFieldsDto;
|
|
31
|
-
job?: SaleProcessCacheJobRetriesFailedDto;
|
|
32
|
-
}
|
|
33
|
-
export declare class SaleProcessSaleDto {
|
|
34
|
-
ibanValidation?: SaleProcessSaleIbanValidationDto;
|
|
35
|
-
}
|
|
36
23
|
export declare class SaleProcessCacheJobRetryDto {
|
|
37
24
|
retries: number;
|
|
38
25
|
firstRetryDate: string;
|
|
@@ -9,7 +9,7 @@ var __metadata = (this && this.__metadata) || function (k, v) {
|
|
|
9
9
|
if (typeof Reflect === "object" && typeof Reflect.metadata === "function") return Reflect.metadata(k, v);
|
|
10
10
|
};
|
|
11
11
|
Object.defineProperty(exports, "__esModule", { value: true });
|
|
12
|
-
exports.SaleProcessCacheJobRetriesFailedDto = exports.SaleProcessCacheJobRetryDto = exports.
|
|
12
|
+
exports.SaleProcessCacheJobRetriesFailedDto = exports.SaleProcessCacheJobRetryDto = exports.SaleProcessSaleIbanValidationProviderDto = exports.CreateSaleProcessApprovalDto = exports.CreateApprovalDataIbanValidationRejectedDto = exports.CreateApprovalDataIbanValidationRejectedBillingDto = exports.CreateApprovalDataBaseDto = void 0;
|
|
13
13
|
const openapi = require("@nestjs/swagger");
|
|
14
14
|
const class_validator_1 = require("class-validator");
|
|
15
15
|
const class_transformer_1 = require("class-transformer");
|
|
@@ -87,18 +87,6 @@ class SaleProcessSaleIbanValidationProviderDto {
|
|
|
87
87
|
}
|
|
88
88
|
}
|
|
89
89
|
exports.SaleProcessSaleIbanValidationProviderDto = SaleProcessSaleIbanValidationProviderDto;
|
|
90
|
-
class SaleProcessSaleIbanValidationDto {
|
|
91
|
-
static _OPENAPI_METADATA_FACTORY() {
|
|
92
|
-
return { intents: { required: true, type: () => Number }, approvalIntents: { required: true, type: () => Number }, status: { required: true, enum: require("../iban-validation/iban-validation.constants").IbanValidationStatus }, validation: { required: true, type: () => String }, provider: { required: true, type: () => require("./sale-process.entity").SaleProcessSaleIbanValidationProviderDto }, approved: { required: false, type: () => require("../common/common.entity").AuditFieldsDto }, job: { required: false, type: () => require("./sale-process.entity").SaleProcessCacheJobRetriesFailedDto } };
|
|
93
|
-
}
|
|
94
|
-
}
|
|
95
|
-
exports.SaleProcessSaleIbanValidationDto = SaleProcessSaleIbanValidationDto;
|
|
96
|
-
class SaleProcessSaleDto {
|
|
97
|
-
static _OPENAPI_METADATA_FACTORY() {
|
|
98
|
-
return { ibanValidation: { required: false, type: () => require("./sale-process.entity").SaleProcessSaleIbanValidationDto } };
|
|
99
|
-
}
|
|
100
|
-
}
|
|
101
|
-
exports.SaleProcessSaleDto = SaleProcessSaleDto;
|
|
102
90
|
class SaleProcessCacheJobRetryDto {
|
|
103
91
|
static _OPENAPI_METADATA_FACTORY() {
|
|
104
92
|
return { retries: { required: true, type: () => Number }, firstRetryDate: { required: true, type: () => String }, lastRetryDate: { required: true, type: () => String } };
|