adamo-types 2.0.112-sit → 2.0.113-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/admin/email/email.entity.d.ts +1 -0
- package/dist/admin/email/email.entity.js +1 -1
- package/dist/bss/customer/customer-work-task.entity.d.ts +11 -0
- package/dist/bss/customer/customer-work-task.entity.js +8 -2
- package/dist/bss/customer/customer.entity.d.ts +1 -1
- package/dist/database/lead/lead.entity.d.ts +2 -2
- package/dist/database/lead/lead.entity.js +2 -2
- package/dist/database/lead/leads-consent-data.entity.d.ts +15 -10
- package/dist/database/lead/leads-consent-data.entity.js +21 -21
- package/dist/sys03/customer/customer-account-address.entity.d.ts +1 -1
- package/dist/sys03/customer/customer-account.entitty.js +8 -2
- package/dist/sys03/customer-handover-process/cusotmer-handover-process-credit-bureau-validation.entity.js +3 -1
- package/dist/sys03/customer-handover-process/customer-handover-process-file.entity.js +6 -1
- package/dist/sys03/customer-product-change-of-address-process/customer-product-change-of-address-process.entity.js +3 -1
- package/dist/sys03/sale-process/sale-process.consent-data.entity.d.ts +15 -0
- package/dist/sys03/sale-process/sale-process.consent-data.entity.js +24 -0
- package/dist/sys03/sale-process/sale-process.file.entity.d.ts +1 -1
- package/dist/sys03/updowngrade/product-transition-group.entity.js +5 -1
- package/dist/sys03/user/user.entity.d.ts +2 -2
- package/dist/tsconfig.build.tsbuildinfo +1 -1
- package/dist/zoho/sale-process/sale-process.entity.d.ts +2 -2
- package/dist/zoho/sale-process/sale-process.entity.js +1 -6
- package/package.json +1 -1
- package/dist/digitel/consent-data.entity.d.ts +0 -10
- package/dist/digitel/consent-data.entity.js +0 -10
|
@@ -10,7 +10,7 @@ class AdminNotificationPayloadDto {
|
|
|
10
10
|
exports.AdminNotificationPayloadDto = AdminNotificationPayloadDto;
|
|
11
11
|
class BatchProcessNotificationPayloadDto {
|
|
12
12
|
static _OPENAPI_METADATA_FACTORY() {
|
|
13
|
-
return { env: { required: false, type: () => String }, subtitle: { required: true, type: () => String }, body: { required: false, type: () => String }, message: { required: true, type: () => String } };
|
|
13
|
+
return { env: { required: false, type: () => String }, subtitle: { required: true, type: () => String }, body: { required: false, type: () => String }, message: { required: true, type: () => String }, elapsed: { required: true, type: () => String } };
|
|
14
14
|
}
|
|
15
15
|
}
|
|
16
16
|
exports.BatchProcessNotificationPayloadDto = BatchProcessNotificationPayloadDto;
|
|
@@ -152,6 +152,16 @@ export declare class CustomerGrupoAireWorkTaskDetailsDto {
|
|
|
152
152
|
networkData: CustomerGrupoAireWorkTaskDetailsNetworkDataDto;
|
|
153
153
|
requests: CustomerGrupoAireWorkTaskDetailsRequestDto[];
|
|
154
154
|
}
|
|
155
|
+
export declare class CustomerGrupoAireWorkTaskIssueDto {
|
|
156
|
+
id: string;
|
|
157
|
+
code: string;
|
|
158
|
+
status: string;
|
|
159
|
+
typeDescription: string;
|
|
160
|
+
openedAt: Date;
|
|
161
|
+
openObservation: string;
|
|
162
|
+
closedAt: Date;
|
|
163
|
+
closeObservation: string;
|
|
164
|
+
}
|
|
155
165
|
export declare class CustomerGrupoAireWorkTaskDto {
|
|
156
166
|
id: string;
|
|
157
167
|
status: string;
|
|
@@ -166,4 +176,5 @@ export declare class CustomerGrupoAireWorkTaskDto {
|
|
|
166
176
|
iua: string;
|
|
167
177
|
description: string;
|
|
168
178
|
details: CustomerGrupoAireWorkTaskDetailsDto;
|
|
179
|
+
issues?: CustomerGrupoAireWorkTaskIssueDto[];
|
|
169
180
|
}
|
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
"use strict";
|
|
2
2
|
Object.defineProperty(exports, "__esModule", { value: true });
|
|
3
|
-
exports.CustomerGrupoAireWorkTaskDto = exports.CustomerGrupoAireWorkTaskDetailsDto = exports.CustomerGrupoAireWorkTaskDetailsNetworkDataDto = exports.CustomerGrupoAireWorkTaskDetailsTechDataDto = exports.CustomerGrupoAireWorkTaskDetailsCustomerDto = exports.CustomerGrupoAireWorkTaskDetailsRequestDto = exports.CustomerGrupoAireWorkTaskDetailsRequestCoordinatorDto = exports.CustomerWorkTaskDto = exports.CustomerWorkTaskFormDto = exports.CustomerWorkTaskFormCheckDto = exports.CustomerWorkTaskFormTechDataDto = exports.CustomerWorkTaskFormTechInfoDto = exports.CustomerWorkTaskFormInstallationDto = exports.CustomerWorkTaskFormAppointmentDto = exports.CustomerWorkTaskFormAddressDto = exports.CustomerWorkTaskFormCustomerDto = exports.CustomerWorkTaskFormFieldDto = void 0;
|
|
3
|
+
exports.CustomerGrupoAireWorkTaskDto = exports.CustomerGrupoAireWorkTaskIssueDto = exports.CustomerGrupoAireWorkTaskDetailsDto = exports.CustomerGrupoAireWorkTaskDetailsNetworkDataDto = exports.CustomerGrupoAireWorkTaskDetailsTechDataDto = exports.CustomerGrupoAireWorkTaskDetailsCustomerDto = exports.CustomerGrupoAireWorkTaskDetailsRequestDto = exports.CustomerGrupoAireWorkTaskDetailsRequestCoordinatorDto = exports.CustomerWorkTaskDto = exports.CustomerWorkTaskFormDto = exports.CustomerWorkTaskFormCheckDto = exports.CustomerWorkTaskFormTechDataDto = exports.CustomerWorkTaskFormTechInfoDto = exports.CustomerWorkTaskFormInstallationDto = exports.CustomerWorkTaskFormAppointmentDto = exports.CustomerWorkTaskFormAddressDto = exports.CustomerWorkTaskFormCustomerDto = exports.CustomerWorkTaskFormFieldDto = void 0;
|
|
4
4
|
const openapi = require("@nestjs/swagger");
|
|
5
5
|
class CustomerWorkTaskFormFieldDto {
|
|
6
6
|
static _OPENAPI_METADATA_FACTORY() {
|
|
@@ -98,9 +98,15 @@ class CustomerGrupoAireWorkTaskDetailsDto {
|
|
|
98
98
|
}
|
|
99
99
|
}
|
|
100
100
|
exports.CustomerGrupoAireWorkTaskDetailsDto = CustomerGrupoAireWorkTaskDetailsDto;
|
|
101
|
+
class CustomerGrupoAireWorkTaskIssueDto {
|
|
102
|
+
static _OPENAPI_METADATA_FACTORY() {
|
|
103
|
+
return { id: { required: true, type: () => String }, code: { required: true, type: () => String }, status: { required: true, type: () => String }, typeDescription: { required: true, type: () => String }, openedAt: { required: true, type: () => Date }, openObservation: { required: true, type: () => String }, closedAt: { required: true, type: () => Date }, closeObservation: { required: true, type: () => String } };
|
|
104
|
+
}
|
|
105
|
+
}
|
|
106
|
+
exports.CustomerGrupoAireWorkTaskIssueDto = CustomerGrupoAireWorkTaskIssueDto;
|
|
101
107
|
class CustomerGrupoAireWorkTaskDto {
|
|
102
108
|
static _OPENAPI_METADATA_FACTORY() {
|
|
103
|
-
return { id: { required: true, type: () => String }, status: { required: true, type: () => String }, modality: { required: true, type: () => String }, createdAt: { required: true, type: () => Date }, activatedAt: { required: true, type: () => Date }, installedAt: { required: true, type: () => Date }, endedAt: { required: true, type: () => Date }, province: { required: true, type: () => String }, operator: { required: true, type: () => String }, administrativeNumber: { required: true, type: () => String }, iua: { required: true, type: () => String }, description: { required: true, type: () => String }, details: { required: true, type: () => require("./customer-work-task.entity").CustomerGrupoAireWorkTaskDetailsDto } };
|
|
109
|
+
return { id: { required: true, type: () => String }, status: { required: true, type: () => String }, modality: { required: true, type: () => String }, createdAt: { required: true, type: () => Date }, activatedAt: { required: true, type: () => Date }, installedAt: { required: true, type: () => Date }, endedAt: { required: true, type: () => Date }, province: { required: true, type: () => String }, operator: { required: true, type: () => String }, administrativeNumber: { required: true, type: () => String }, iua: { required: true, type: () => String }, description: { required: true, type: () => String }, details: { required: true, type: () => require("./customer-work-task.entity").CustomerGrupoAireWorkTaskDetailsDto }, issues: { required: false, type: () => [require("./customer-work-task.entity").CustomerGrupoAireWorkTaskIssueDto] } };
|
|
104
110
|
}
|
|
105
111
|
}
|
|
106
112
|
exports.CustomerGrupoAireWorkTaskDto = CustomerGrupoAireWorkTaskDto;
|
|
@@ -105,7 +105,7 @@ export declare class CustomerCharacteristicDto {
|
|
|
105
105
|
endDate: string;
|
|
106
106
|
netCharge?: string;
|
|
107
107
|
}
|
|
108
|
-
declare const CreateCustomerCharacteristicDto_base: import("@nestjs/common").Type<Pick<CustomerCharacteristicDto, "name" | "customerAccountId"> & Partial<Pick<CustomerCharacteristicDto,
|
|
108
|
+
declare const CreateCustomerCharacteristicDto_base: import("@nestjs/common").Type<Pick<CustomerCharacteristicDto, "name" | "customerAccountId"> & Partial<Pick<CustomerCharacteristicDto, "invoiceText" | "startDate" | "endDate" | "netCharge">>>;
|
|
109
109
|
export declare class CreateCustomerCharacteristicDto extends CreateCustomerCharacteristicDto_base {
|
|
110
110
|
}
|
|
111
111
|
export declare class CustomerFinancialBalancesDto {
|
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
import { LeadAdditionalContactEntity } from './lead-additional-contact.entity';
|
|
2
2
|
import { LeadFileEntity } from './lead-file.entity';
|
|
3
|
-
import {
|
|
3
|
+
import { LeadConsentDataEntity } from './leads-consent-data.entity';
|
|
4
4
|
import { ApprovalEntity } from './approval.entity';
|
|
5
5
|
declare class LeadSharedColumns {
|
|
6
6
|
id?: number;
|
|
@@ -94,7 +94,7 @@ export declare class LeadEntity extends LeadColumns {
|
|
|
94
94
|
approvals?: ApprovalEntity[];
|
|
95
95
|
files?: LeadFileEntity[];
|
|
96
96
|
additionalContacts?: LeadAdditionalContactEntity[];
|
|
97
|
-
consents?:
|
|
97
|
+
consents?: LeadConsentDataEntity[];
|
|
98
98
|
}
|
|
99
99
|
export type CreateLeadReferenceEntity = Pick<LeadEntity, 'id'>;
|
|
100
100
|
declare class LeadDataColumns extends LeadSharedColumns {
|
|
@@ -361,7 +361,7 @@ __decorate([
|
|
|
361
361
|
], LeadColumns.prototype, "updateByUserChannel", void 0);
|
|
362
362
|
let LeadEntity = class LeadEntity extends LeadColumns {
|
|
363
363
|
static _OPENAPI_METADATA_FACTORY() {
|
|
364
|
-
return { data: { required: false, type: () => [require("./lead.entity").LeadDataEntity] }, approvals: { required: false, type: () => [require("./approval.entity").ApprovalEntity] }, files: { required: false, type: () => [require("./lead-file.entity").LeadFileEntity] }, additionalContacts: { required: false, type: () => [require("./lead-additional-contact.entity").LeadAdditionalContactEntity] }, consents: { required: false, type: () => [require("./leads-consent-data.entity").
|
|
364
|
+
return { data: { required: false, type: () => [require("./lead.entity").LeadDataEntity] }, approvals: { required: false, type: () => [require("./approval.entity").ApprovalEntity] }, files: { required: false, type: () => [require("./lead-file.entity").LeadFileEntity] }, additionalContacts: { required: false, type: () => [require("./lead-additional-contact.entity").LeadAdditionalContactEntity] }, consents: { required: false, type: () => [require("./leads-consent-data.entity").LeadConsentDataEntity] } };
|
|
365
365
|
}
|
|
366
366
|
};
|
|
367
367
|
exports.LeadEntity = LeadEntity;
|
|
@@ -382,7 +382,7 @@ __decorate([
|
|
|
382
382
|
__metadata("design:type", Array)
|
|
383
383
|
], LeadEntity.prototype, "additionalContacts", void 0);
|
|
384
384
|
__decorate([
|
|
385
|
-
(0, typeorm_1.OneToMany)(() => leads_consent_data_entity_1.
|
|
385
|
+
(0, typeorm_1.OneToMany)(() => leads_consent_data_entity_1.LeadConsentDataEntity, (data) => data.lead),
|
|
386
386
|
__metadata("design:type", Array)
|
|
387
387
|
], LeadEntity.prototype, "consents", void 0);
|
|
388
388
|
exports.LeadEntity = LeadEntity = __decorate([
|
|
@@ -1,11 +1,16 @@
|
|
|
1
|
-
import { LeadEntity } from './lead.entity';
|
|
2
|
-
export declare class
|
|
3
|
-
id
|
|
4
|
-
lead
|
|
5
|
-
dtsTransactionId
|
|
6
|
-
dtsRecipientId
|
|
7
|
-
dtsCheckId
|
|
8
|
-
checked
|
|
9
|
-
|
|
10
|
-
|
|
1
|
+
import { CreateLeadReferenceEntity, LeadEntity } from './lead.entity';
|
|
2
|
+
export declare class LeadConsentDataEntity {
|
|
3
|
+
id: number;
|
|
4
|
+
lead: LeadEntity;
|
|
5
|
+
dtsTransactionId: string;
|
|
6
|
+
dtsRecipientId: string;
|
|
7
|
+
dtsCheckId: string;
|
|
8
|
+
checked: boolean;
|
|
9
|
+
type?: string;
|
|
10
|
+
createdAt: Date;
|
|
11
11
|
}
|
|
12
|
+
type CreateLeadConsentDataEntityBase = Pick<LeadConsentDataEntity, 'dtsTransactionId' | 'dtsRecipientId' | 'dtsCheckId' | 'checked' | 'type'>;
|
|
13
|
+
export interface CreateLeadConsentDataEntity extends CreateLeadConsentDataEntityBase {
|
|
14
|
+
lead: CreateLeadReferenceEntity;
|
|
15
|
+
}
|
|
16
|
+
export {};
|
|
@@ -9,49 +9,49 @@ 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.
|
|
12
|
+
exports.LeadConsentDataEntity = void 0;
|
|
13
13
|
const openapi = require("@nestjs/swagger");
|
|
14
14
|
const typeorm_1 = require("typeorm");
|
|
15
15
|
const lead_entity_1 = require("./lead.entity");
|
|
16
|
-
let
|
|
16
|
+
let LeadConsentDataEntity = class LeadConsentDataEntity {
|
|
17
17
|
static _OPENAPI_METADATA_FACTORY() {
|
|
18
|
-
return { id: { required:
|
|
18
|
+
return { id: { required: true, type: () => Number }, lead: { required: true, type: () => require("./lead.entity").LeadEntity }, dtsTransactionId: { required: true, type: () => String }, dtsRecipientId: { required: true, type: () => String }, dtsCheckId: { required: true, type: () => String }, checked: { required: true, type: () => Boolean }, type: { required: false, type: () => String }, createdAt: { required: true, type: () => Date } };
|
|
19
19
|
}
|
|
20
20
|
};
|
|
21
|
-
exports.
|
|
21
|
+
exports.LeadConsentDataEntity = LeadConsentDataEntity;
|
|
22
22
|
__decorate([
|
|
23
23
|
(0, typeorm_1.PrimaryGeneratedColumn)(),
|
|
24
24
|
__metadata("design:type", Number)
|
|
25
|
-
],
|
|
25
|
+
], LeadConsentDataEntity.prototype, "id", void 0);
|
|
26
26
|
__decorate([
|
|
27
27
|
(0, typeorm_1.ManyToOne)(() => lead_entity_1.LeadEntity),
|
|
28
28
|
(0, typeorm_1.JoinColumn)({ name: 'lead', referencedColumnName: 'id' }),
|
|
29
29
|
__metadata("design:type", lead_entity_1.LeadEntity)
|
|
30
|
-
],
|
|
30
|
+
], LeadConsentDataEntity.prototype, "lead", void 0);
|
|
31
31
|
__decorate([
|
|
32
|
-
(0, typeorm_1.Column)({ nullable: false }),
|
|
32
|
+
(0, typeorm_1.Column)({ type: 'varchar', length: 256, nullable: false }),
|
|
33
33
|
__metadata("design:type", String)
|
|
34
|
-
],
|
|
34
|
+
], LeadConsentDataEntity.prototype, "dtsTransactionId", void 0);
|
|
35
35
|
__decorate([
|
|
36
|
-
(0, typeorm_1.Column)({ nullable: false }),
|
|
36
|
+
(0, typeorm_1.Column)({ type: 'varchar', length: 256, nullable: false }),
|
|
37
37
|
__metadata("design:type", String)
|
|
38
|
-
],
|
|
38
|
+
], LeadConsentDataEntity.prototype, "dtsRecipientId", void 0);
|
|
39
39
|
__decorate([
|
|
40
|
-
(0, typeorm_1.Column)({ nullable: false }),
|
|
40
|
+
(0, typeorm_1.Column)({ type: 'varchar', length: 256, nullable: false }),
|
|
41
41
|
__metadata("design:type", String)
|
|
42
|
-
],
|
|
42
|
+
], LeadConsentDataEntity.prototype, "dtsCheckId", void 0);
|
|
43
43
|
__decorate([
|
|
44
|
-
(0, typeorm_1.Column)({
|
|
44
|
+
(0, typeorm_1.Column)({ type: 'tinyint', nullable: false, default: false }),
|
|
45
45
|
__metadata("design:type", Boolean)
|
|
46
|
-
],
|
|
46
|
+
], LeadConsentDataEntity.prototype, "checked", void 0);
|
|
47
|
+
__decorate([
|
|
48
|
+
(0, typeorm_1.Column)({ type: 'varchar', length: 255, nullable: true }),
|
|
49
|
+
__metadata("design:type", String)
|
|
50
|
+
], LeadConsentDataEntity.prototype, "type", void 0);
|
|
47
51
|
__decorate([
|
|
48
52
|
(0, typeorm_1.Column)({ type: 'datetime', default: 'CURRENT_TIMESTAMP' }),
|
|
49
53
|
__metadata("design:type", Date)
|
|
50
|
-
],
|
|
51
|
-
__decorate([
|
|
52
|
-
(0, typeorm_1.Column)({ nullable: true }),
|
|
53
|
-
__metadata("design:type", String)
|
|
54
|
-
], LeadsConsentData.prototype, "type", void 0);
|
|
55
|
-
exports.LeadsConsentData = LeadsConsentData = __decorate([
|
|
54
|
+
], LeadConsentDataEntity.prototype, "createdAt", void 0);
|
|
55
|
+
exports.LeadConsentDataEntity = LeadConsentDataEntity = __decorate([
|
|
56
56
|
(0, typeorm_1.Entity)({ name: 'leads-consent-data' })
|
|
57
|
-
],
|
|
57
|
+
], LeadConsentDataEntity);
|
|
@@ -18,7 +18,7 @@ export declare class CustomerAccountAddressDto {
|
|
|
18
18
|
projectCode: string;
|
|
19
19
|
competition: string;
|
|
20
20
|
}
|
|
21
|
-
declare const CreateCustomerAccountAddressDto_base: import("@nestjs/common").Type<Omit<CustomerAccountAddressDto, "id" | "referenceId" | "serviceableStatus" | "salesAreaId" | "projectCode" | "competition"> & Partial<Pick<CustomerAccountAddressDto,
|
|
21
|
+
declare const CreateCustomerAccountAddressDto_base: import("@nestjs/common").Type<Omit<CustomerAccountAddressDto, "id" | "referenceId" | "serviceableStatus" | "salesAreaId" | "projectCode" | "competition"> & Partial<Pick<CustomerAccountAddressDto, "referenceId" | "serviceableStatus" | "salesAreaId" | "projectCode" | "competition">>>;
|
|
22
22
|
export declare class CreateCustomerAccountAddressDto extends CreateCustomerAccountAddressDto_base {
|
|
23
23
|
}
|
|
24
24
|
export declare class CreateCustomerAccountAddressReqDto {
|
|
@@ -9,7 +9,9 @@ const swagger_1 = require("@nestjs/swagger");
|
|
|
9
9
|
class CustomerAccountPartyRelatedPartyRelationshipDto {
|
|
10
10
|
}
|
|
11
11
|
exports.CustomerAccountPartyRelatedPartyRelationshipDto = CustomerAccountPartyRelatedPartyRelationshipDto;
|
|
12
|
-
class CreateCustomerAccountPartyRelatedPartyRelationshipDto extends (0, swagger_1.OmitType)(CustomerAccountPartyRelatedPartyRelationshipDto, [
|
|
12
|
+
class CreateCustomerAccountPartyRelatedPartyRelationshipDto extends (0, swagger_1.OmitType)(CustomerAccountPartyRelatedPartyRelationshipDto, [
|
|
13
|
+
'type'
|
|
14
|
+
]) {
|
|
13
15
|
}
|
|
14
16
|
exports.CreateCustomerAccountPartyRelatedPartyRelationshipDto = CreateCustomerAccountPartyRelatedPartyRelationshipDto;
|
|
15
17
|
class CustomerAccountDto {
|
|
@@ -80,7 +82,11 @@ exports.CustomerAccountIndividualDtoBuilder = CustomerAccountIndividualDtoBuilde
|
|
|
80
82
|
class CustomerAccountOrganizationDto {
|
|
81
83
|
}
|
|
82
84
|
exports.CustomerAccountOrganizationDto = CustomerAccountOrganizationDto;
|
|
83
|
-
class CreateCustomerAccountOrganizationDto extends (0, swagger_1.OmitType)(CustomerAccountOrganizationDto, [
|
|
85
|
+
class CreateCustomerAccountOrganizationDto extends (0, swagger_1.OmitType)(CustomerAccountOrganizationDto, [
|
|
86
|
+
'id',
|
|
87
|
+
'relatedParties',
|
|
88
|
+
'relatedEntities'
|
|
89
|
+
]) {
|
|
84
90
|
}
|
|
85
91
|
exports.CreateCustomerAccountOrganizationDto = CreateCustomerAccountOrganizationDto;
|
|
86
92
|
class PatchCustomerAccountOrganizationDto extends (0, swagger_1.PartialType)((0, swagger_1.OmitType)(CustomerAccountOrganizationDto, ['id', 'relatedParties', 'relatedEntities'])) {
|
|
@@ -10,7 +10,9 @@ class CustomerHandoverProcessCreditBureauValidationDto extends common_1.CreditBu
|
|
|
10
10
|
}
|
|
11
11
|
}
|
|
12
12
|
exports.CustomerHandoverProcessCreditBureauValidationDto = CustomerHandoverProcessCreditBureauValidationDto;
|
|
13
|
-
class CreateCustomerHandoverProcessCreditBureauValidationDto extends (0, swagger_1.OmitType)(CustomerHandoverProcessCreditBureauValidationDto, [
|
|
13
|
+
class CreateCustomerHandoverProcessCreditBureauValidationDto extends (0, swagger_1.OmitType)(CustomerHandoverProcessCreditBureauValidationDto, [
|
|
14
|
+
'id'
|
|
15
|
+
]) {
|
|
14
16
|
static _OPENAPI_METADATA_FACTORY() {
|
|
15
17
|
return {};
|
|
16
18
|
}
|
|
@@ -21,7 +21,12 @@ class CustomerHandoverProcessFileDto {
|
|
|
21
21
|
}
|
|
22
22
|
}
|
|
23
23
|
exports.CustomerHandoverProcessFileDto = CustomerHandoverProcessFileDto;
|
|
24
|
-
class CreateCustomerHandoverProcessFileDto extends (0, swagger_1.OmitType)(CustomerHandoverProcessFileDto, [
|
|
24
|
+
class CreateCustomerHandoverProcessFileDto extends (0, swagger_1.OmitType)(CustomerHandoverProcessFileDto, [
|
|
25
|
+
'id',
|
|
26
|
+
'documentId',
|
|
27
|
+
'created',
|
|
28
|
+
'updated'
|
|
29
|
+
]) {
|
|
25
30
|
static _OPENAPI_METADATA_FACTORY() {
|
|
26
31
|
return {};
|
|
27
32
|
}
|
|
@@ -107,7 +107,9 @@ __decorate([
|
|
|
107
107
|
(0, class_transformer_1.Type)(() => BodyCreateCustomerProductChangeOfAddressProcessProductDto),
|
|
108
108
|
__metadata("design:type", BodyCreateCustomerProductChangeOfAddressProcessProductDto)
|
|
109
109
|
], BodyCreateCustomerProductChangeOfAddressProcessDto.prototype, "product", void 0);
|
|
110
|
-
class BodyUpdateCustomerProductChangeOfAddressProcessDto extends (0, swagger_1.OmitType)(UpdateCustomerProductChangeOfAddressProcessDto, [
|
|
110
|
+
class BodyUpdateCustomerProductChangeOfAddressProcessDto extends (0, swagger_1.OmitType)(UpdateCustomerProductChangeOfAddressProcessDto, [
|
|
111
|
+
'updated'
|
|
112
|
+
]) {
|
|
111
113
|
static _OPENAPI_METADATA_FACTORY() {
|
|
112
114
|
return {};
|
|
113
115
|
}
|
|
@@ -0,0 +1,15 @@
|
|
|
1
|
+
import { AuditFieldsDto } from '../common';
|
|
2
|
+
export declare class SaleProcessConsentDataDto {
|
|
3
|
+
id: number;
|
|
4
|
+
saleProcessId: number;
|
|
5
|
+
dtsTransactionId: string;
|
|
6
|
+
dtsRecipientId: string;
|
|
7
|
+
dtsCheckId: string;
|
|
8
|
+
checked: boolean;
|
|
9
|
+
type?: string;
|
|
10
|
+
created: AuditFieldsDto;
|
|
11
|
+
}
|
|
12
|
+
declare const CreateSaleProcessConsentDataDto_base: import("@nestjs/common").Type<Pick<SaleProcessConsentDataDto, "type" | "saleProcessId" | "dtsTransactionId" | "dtsRecipientId" | "dtsCheckId" | "checked">>;
|
|
13
|
+
export declare class CreateSaleProcessConsentDataDto extends CreateSaleProcessConsentDataDto_base {
|
|
14
|
+
}
|
|
15
|
+
export {};
|
|
@@ -0,0 +1,24 @@
|
|
|
1
|
+
"use strict";
|
|
2
|
+
Object.defineProperty(exports, "__esModule", { value: true });
|
|
3
|
+
exports.CreateSaleProcessConsentDataDto = exports.SaleProcessConsentDataDto = void 0;
|
|
4
|
+
const openapi = require("@nestjs/swagger");
|
|
5
|
+
const swagger_1 = require("@nestjs/swagger");
|
|
6
|
+
class SaleProcessConsentDataDto {
|
|
7
|
+
static _OPENAPI_METADATA_FACTORY() {
|
|
8
|
+
return { id: { required: true, type: () => Number }, saleProcessId: { required: true, type: () => Number }, dtsTransactionId: { required: true, type: () => String }, dtsRecipientId: { required: true, type: () => String }, dtsCheckId: { required: true, type: () => String }, checked: { required: true, type: () => Boolean }, type: { required: false, type: () => String }, created: { required: true, type: () => require("../common/common.entity").AuditFieldsDto } };
|
|
9
|
+
}
|
|
10
|
+
}
|
|
11
|
+
exports.SaleProcessConsentDataDto = SaleProcessConsentDataDto;
|
|
12
|
+
class CreateSaleProcessConsentDataDto extends (0, swagger_1.PickType)(SaleProcessConsentDataDto, [
|
|
13
|
+
'saleProcessId',
|
|
14
|
+
'dtsTransactionId',
|
|
15
|
+
'dtsRecipientId',
|
|
16
|
+
'dtsCheckId',
|
|
17
|
+
'checked',
|
|
18
|
+
'type'
|
|
19
|
+
]) {
|
|
20
|
+
static _OPENAPI_METADATA_FACTORY() {
|
|
21
|
+
return {};
|
|
22
|
+
}
|
|
23
|
+
}
|
|
24
|
+
exports.CreateSaleProcessConsentDataDto = CreateSaleProcessConsentDataDto;
|
|
@@ -12,7 +12,7 @@ export declare class SaleProcessFileDto {
|
|
|
12
12
|
declare const CreateSaleProcessFileDto_base: import("@nestjs/common").Type<Pick<SaleProcessFileDto, "type" | "fileName" | "comment" | "saleProcessId" | "contentType" | "transactionId">>;
|
|
13
13
|
export declare class CreateSaleProcessFileDto extends CreateSaleProcessFileDto_base {
|
|
14
14
|
}
|
|
15
|
-
declare const PatchSaleProcessFileDto_base: import("@nestjs/common").Type<Partial<Pick<SaleProcessFileDto,
|
|
15
|
+
declare const PatchSaleProcessFileDto_base: import("@nestjs/common").Type<Partial<Pick<SaleProcessFileDto, "type" | "fileName" | "comment" | "contentType" | "transactionId" | "documentId">>>;
|
|
16
16
|
export declare class PatchSaleProcessFileDto extends PatchSaleProcessFileDto_base {
|
|
17
17
|
}
|
|
18
18
|
export declare class CreateSaleProcessFileReqDto {
|
|
@@ -270,7 +270,11 @@ class ProductTransitionGroupAggrupationDto {
|
|
|
270
270
|
}
|
|
271
271
|
}
|
|
272
272
|
exports.ProductTransitionGroupAggrupationDto = ProductTransitionGroupAggrupationDto;
|
|
273
|
-
class CreateProductTransitionGroupAggrupationDto extends (0, swagger_1.OmitType)(ProductTransitionGroupAggrupationDto, [
|
|
273
|
+
class CreateProductTransitionGroupAggrupationDto extends (0, swagger_1.OmitType)(ProductTransitionGroupAggrupationDto, [
|
|
274
|
+
'id',
|
|
275
|
+
'groups',
|
|
276
|
+
'updated'
|
|
277
|
+
]) {
|
|
274
278
|
static _OPENAPI_METADATA_FACTORY() {
|
|
275
279
|
return {};
|
|
276
280
|
}
|
|
@@ -16,7 +16,7 @@ declare const CreateUserAuthWorkgroupByWorkgroupNameDto_base: import("@nestjs/co
|
|
|
16
16
|
export declare class CreateUserAuthWorkgroupByWorkgroupNameDto extends CreateUserAuthWorkgroupByWorkgroupNameDto_base {
|
|
17
17
|
workgroupName: string;
|
|
18
18
|
}
|
|
19
|
-
declare const PatchUserAuthWorkgroupDto_base: import("@nestjs/common").Type<Partial<Pick<UserAuthWorkgroupDto,
|
|
19
|
+
declare const PatchUserAuthWorkgroupDto_base: import("@nestjs/common").Type<Partial<Pick<UserAuthWorkgroupDto, "updated" | "active">>>;
|
|
20
20
|
export declare class PatchUserAuthWorkgroupDto extends PatchUserAuthWorkgroupDto_base {
|
|
21
21
|
}
|
|
22
22
|
export declare class BodyCreateUserAuthWorkgroupDto {
|
|
@@ -43,7 +43,7 @@ export declare class UserAuthDto {
|
|
|
43
43
|
declare const CreateUserAuthDto_base: import("@nestjs/common").Type<Pick<UserAuthDto, "username" | "role" | "created" | "active" | "tenants">>;
|
|
44
44
|
export declare class CreateUserAuthDto extends CreateUserAuthDto_base {
|
|
45
45
|
}
|
|
46
|
-
declare const PatchUserAuthDto_base: import("@nestjs/common").Type<Partial<Pick<UserAuthDto,
|
|
46
|
+
declare const PatchUserAuthDto_base: import("@nestjs/common").Type<Partial<Pick<UserAuthDto, "username" | "channel" | "role" | "updated" | "active" | "tenants" | "entraIdOid" | "firstLogin" | "lastLogin">>>;
|
|
47
47
|
export declare class PatchUserAuthDto extends PatchUserAuthDto_base {
|
|
48
48
|
}
|
|
49
49
|
export declare class BodyCreateUserAuthDto {
|