adamo-types 2.0.70-sit → 2.0.72-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/bss/bearingpoint/{address.entity.d.ts → address/address.entity.d.ts} +8 -6
- package/dist/bss/bearingpoint/address/address.entity.js +3 -0
- package/dist/bss/bearingpoint/address/index.d.ts +1 -0
- package/dist/{common/edge-bss → bss/bearingpoint}/address/index.js +1 -1
- package/dist/bss/bearingpoint/customer/customer-account-document.entity.d.ts +5 -3
- package/dist/bss/bearingpoint/customer/customer-account-document.entity.js +0 -7
- package/dist/bss/bearingpoint/customer/customer-account-note.entity.d.ts +5 -4
- package/dist/bss/bearingpoint/customer/customer-account-note.entity.js +1 -7
- package/dist/bss/bearingpoint/index.d.ts +0 -1
- package/dist/bss/bearingpoint/index.js +0 -1
- package/dist/bss/bearingpoint/product-offering/product-offering-summary.entity.d.ts +2 -2
- package/dist/bss/constants/bp.constants.d.ts +1 -1
- package/dist/bss/constants/bp.constants.js +18 -18
- package/dist/bss/customer/customer-product.entity.d.ts +2 -2
- package/dist/bss/customer/customer.entity.d.ts +3 -17
- package/dist/bss/customer/customer.entity.js +2 -8
- package/dist/bss/tariff-model/index.d.ts +1 -1
- package/dist/bss/tariff-model/index.js +1 -1
- package/dist/bss/tariff-model/{internal/internal.entity.d.ts → tariff-model.entity.d.ts} +8 -7
- package/dist/bss/tariff-model/tariff-model.entity.js +3 -0
- package/dist/common/constants/updowngrade.error.constants.d.ts +1 -1
- package/dist/common/constants/updowngrade.error.constants.js +1 -1
- package/dist/common/edge-bss/customer/req/create.entity.d.ts +1 -14
- package/dist/common/edge-bss/customer/req/create.entity.js +1 -13
- package/dist/common/edge-bss/index.d.ts +0 -1
- package/dist/common/edge-bss/index.js +0 -1
- package/dist/common/edge-zoho/sale-process/req/create.entity.d.ts +2 -2
- package/dist/common/edge-zoho/sale-process/req/create.entity.js +2 -2
- package/dist/common/edge-zoho/sale-process/req/patch.entity.d.ts +2 -2
- package/dist/common/edge-zoho/sale-process/req/patch.entity.js +4 -4
- package/dist/database/ars/product-transition-configuration.entity.js +1 -1
- package/dist/sys03/approval/approval.entity.d.ts +2 -2
- package/dist/sys03/common/common.entity.d.ts +3 -3
- package/dist/sys03/common/common.entity.js +3 -3
- package/dist/sys03/customer/customer-account-address.entity.d.ts +36 -0
- package/dist/sys03/customer/customer-account-address.entity.js +130 -0
- package/dist/sys03/customer/customer-account-note.entity.d.ts +10 -0
- package/dist/sys03/customer/customer-account-note.entity.js +17 -0
- package/dist/sys03/customer/customer-account.entitty.d.ts +7 -1
- package/dist/sys03/customer/customer-account.entitty.js +4 -1
- package/dist/sys03/customer/customer-product.entity.d.ts +2 -2
- package/dist/sys03/customer/index.d.ts +2 -0
- package/dist/sys03/customer/index.js +2 -0
- package/dist/sys03/sale-process/internal/internal.entity.d.ts +2 -2
- package/dist/sys03/user/user.entity.d.ts +3 -3
- package/dist/tsconfig.build.tsbuildinfo +1 -1
- package/dist/zoho/sale-process/billing-info.entity.d.ts +2 -2
- package/dist/zoho/sale-process/billing-info.entity.js +1 -9
- package/dist/zoho/sale-process/customer.entity.d.ts +2 -2
- package/dist/zoho/sale-process/customer.entity.js +1 -8
- package/dist/zoho/sale-process/file.entity.d.ts +2 -2
- package/dist/zoho/sale-process/file.entity.js +1 -1
- package/package.json +1 -1
- package/dist/bss/bearingpoint/address.entity.js +0 -16
- package/dist/bss/tariff-model/internal/internal.entity.js +0 -16
- package/dist/common/edge-bss/address/index.d.ts +0 -1
- package/dist/common/edge-bss/address/req/create.entity.d.ts +0 -19
- package/dist/common/edge-bss/address/req/create.entity.js +0 -117
|
@@ -1,4 +1,4 @@
|
|
|
1
|
-
export
|
|
1
|
+
export interface BpAddressParameters {
|
|
2
2
|
block: string;
|
|
3
3
|
door: string;
|
|
4
4
|
floor: string;
|
|
@@ -10,15 +10,17 @@ export declare class BpAddressParametersDto {
|
|
|
10
10
|
project_code?: string;
|
|
11
11
|
competition?: string;
|
|
12
12
|
}
|
|
13
|
-
export
|
|
14
|
-
id
|
|
13
|
+
export interface BpAddress {
|
|
14
|
+
id: string;
|
|
15
15
|
country: string;
|
|
16
|
-
city: string;
|
|
17
16
|
province: string;
|
|
18
17
|
postcode: string;
|
|
19
|
-
|
|
18
|
+
city: string;
|
|
20
19
|
streetType: string;
|
|
20
|
+
streetName: string;
|
|
21
21
|
referenceId: string;
|
|
22
|
+
referenceSystem: string;
|
|
22
23
|
validated: boolean;
|
|
23
|
-
parameters:
|
|
24
|
+
parameters: BpAddressParameters;
|
|
24
25
|
}
|
|
26
|
+
export type BpCreateAddress = Omit<BpAddress, 'id' | 'validated'>;
|
|
@@ -0,0 +1 @@
|
|
|
1
|
+
export * from './address.entity';
|
|
@@ -14,4 +14,4 @@ var __exportStar = (this && this.__exportStar) || function(m, exports) {
|
|
|
14
14
|
for (var p in m) if (p !== "default" && !Object.prototype.hasOwnProperty.call(exports, p)) __createBinding(exports, m, p);
|
|
15
15
|
};
|
|
16
16
|
Object.defineProperty(exports, "__esModule", { value: true });
|
|
17
|
-
__exportStar(require("./
|
|
17
|
+
__exportStar(require("./address.entity"), exports);
|
|
@@ -1,9 +1,10 @@
|
|
|
1
|
-
import {
|
|
2
|
-
export
|
|
1
|
+
import { BpCustomerAccountDocumentType } from '../../constants';
|
|
2
|
+
export interface BsCustomerAccountDocument {
|
|
3
3
|
id: string;
|
|
4
4
|
name: string;
|
|
5
5
|
customerAccount: string;
|
|
6
|
-
type:
|
|
6
|
+
type: BpCustomerAccountDocumentType;
|
|
7
|
+
comment?: string;
|
|
7
8
|
created: string;
|
|
8
9
|
createdBy: string;
|
|
9
10
|
createdByType: string;
|
|
@@ -13,3 +14,4 @@ export declare class BsCustomerAccountDocumentDto {
|
|
|
13
14
|
encoding: string;
|
|
14
15
|
parameters: Record<string, string>;
|
|
15
16
|
}
|
|
17
|
+
export type BpCreateCustomerAccountDocument = Pick<BsCustomerAccountDocument, 'name' | 'type' | 'comment' | 'mediaType'>;
|
|
@@ -1,10 +1,3 @@
|
|
|
1
1
|
"use strict";
|
|
2
2
|
Object.defineProperty(exports, "__esModule", { value: true });
|
|
3
|
-
exports.BsCustomerAccountDocumentDto = void 0;
|
|
4
3
|
const openapi = require("@nestjs/swagger");
|
|
5
|
-
class BsCustomerAccountDocumentDto {
|
|
6
|
-
static _OPENAPI_METADATA_FACTORY() {
|
|
7
|
-
return { id: { required: true, type: () => String }, name: { required: true, type: () => String }, customerAccount: { required: true, type: () => String }, type: { required: true, enum: require("../../constants/bp.constants").DocumentType }, created: { required: true, type: () => String }, createdBy: { required: true, type: () => String }, createdByType: { required: true, type: () => String }, size: { required: true, type: () => Number }, hash: { required: true, type: () => String }, mediaType: { required: true, type: () => String }, encoding: { required: true, type: () => String }, parameters: { required: true, type: () => Object } };
|
|
8
|
-
}
|
|
9
|
-
}
|
|
10
|
-
exports.BsCustomerAccountDocumentDto = BsCustomerAccountDocumentDto;
|
|
@@ -1,11 +1,12 @@
|
|
|
1
1
|
import { CustomerAccountHistoryType } from '../../constants';
|
|
2
|
-
export
|
|
3
|
-
id
|
|
2
|
+
export interface BpCustomerAccountNote {
|
|
3
|
+
id: string;
|
|
4
|
+
customerAccount: string;
|
|
4
5
|
text: string;
|
|
5
6
|
creator: string;
|
|
6
|
-
created
|
|
7
|
-
customerAccount?: string;
|
|
7
|
+
created: string;
|
|
8
8
|
}
|
|
9
|
+
export type BpCreateCustomerAccountNote = Pick<BpCustomerAccountNote, 'text' | 'creator'>;
|
|
9
10
|
export declare class BpCustomerAccountHistoryDto {
|
|
10
11
|
id?: string;
|
|
11
12
|
type: CustomerAccountHistoryType;
|
|
@@ -1,13 +1,7 @@
|
|
|
1
1
|
"use strict";
|
|
2
2
|
Object.defineProperty(exports, "__esModule", { value: true });
|
|
3
|
-
exports.BpCustomerAccountHistoryDto =
|
|
3
|
+
exports.BpCustomerAccountHistoryDto = void 0;
|
|
4
4
|
const openapi = require("@nestjs/swagger");
|
|
5
|
-
class BpCustomerAccountNoteDto {
|
|
6
|
-
static _OPENAPI_METADATA_FACTORY() {
|
|
7
|
-
return { id: { required: false, type: () => String }, text: { required: true, type: () => String }, creator: { required: true, type: () => String }, created: { required: false, type: () => String }, customerAccount: { required: false, type: () => String } };
|
|
8
|
-
}
|
|
9
|
-
}
|
|
10
|
-
exports.BpCustomerAccountNoteDto = BpCustomerAccountNoteDto;
|
|
11
5
|
class BpCustomerAccountHistoryDto {
|
|
12
6
|
static _OPENAPI_METADATA_FACTORY() {
|
|
13
7
|
return { id: { required: false, type: () => String }, type: { required: true, enum: require("../../constants/bp.constants").CustomerAccountHistoryType }, content: { required: true, type: () => String }, creator: { required: true, type: () => String } };
|
|
@@ -5,7 +5,6 @@ export * from './product-offering';
|
|
|
5
5
|
export * from './service-specification';
|
|
6
6
|
export * from './shopping-cart';
|
|
7
7
|
export * from './auth.entity';
|
|
8
|
-
export * from './address.entity';
|
|
9
8
|
export * from './charge-catalog/charge.entity';
|
|
10
9
|
export * from './product.entity';
|
|
11
10
|
export * from './response.entity';
|
|
@@ -21,7 +21,6 @@ __exportStar(require("./product-offering"), exports);
|
|
|
21
21
|
__exportStar(require("./service-specification"), exports);
|
|
22
22
|
__exportStar(require("./shopping-cart"), exports);
|
|
23
23
|
__exportStar(require("./auth.entity"), exports);
|
|
24
|
-
__exportStar(require("./address.entity"), exports);
|
|
25
24
|
__exportStar(require("./charge-catalog/charge.entity"), exports);
|
|
26
25
|
__exportStar(require("./product.entity"), exports);
|
|
27
26
|
__exportStar(require("./response.entity"), exports);
|
|
@@ -2,7 +2,7 @@ import { DependencySourceTargetType, DependencyType, ProductCatalogItemState } f
|
|
|
2
2
|
import { BpValidFor } from '../common';
|
|
3
3
|
import { BpChangePathType } from './product.constants';
|
|
4
4
|
import { BpConfigurationAttribute } from '../common';
|
|
5
|
-
import {
|
|
5
|
+
import { CacheTariffModel } from '../../tariff-model';
|
|
6
6
|
import { BpProductOfferingCharacteristicGroup } from './product-offering-characteristic.entity';
|
|
7
7
|
import { BpServiceSpecification } from '../service-specification';
|
|
8
8
|
export interface BpProductOfferingRule {
|
|
@@ -38,7 +38,7 @@ export interface BpProductOffering {
|
|
|
38
38
|
billText: string;
|
|
39
39
|
description: string;
|
|
40
40
|
tariffModel: string;
|
|
41
|
-
tariffModelData:
|
|
41
|
+
tariffModelData: CacheTariffModel;
|
|
42
42
|
validFor?: BpValidFor;
|
|
43
43
|
dependencies: BpDependency[];
|
|
44
44
|
productOfferingRuleReferences: BpProductOfferingRule[];
|
|
@@ -240,7 +240,7 @@ export declare enum BpPartyStateType {
|
|
|
240
240
|
VALIDATED = "Validated",
|
|
241
241
|
DECEASED = "Deceased"
|
|
242
242
|
}
|
|
243
|
-
export declare enum
|
|
243
|
+
export declare enum BpCustomerAccountDocumentType {
|
|
244
244
|
BANK_DETAILS = "BANK_DETAILS",
|
|
245
245
|
CIF = "CIF",
|
|
246
246
|
CLIENT_CERTIFICATE = "CLIENT_CERTIFICATE",
|
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
"use strict";
|
|
2
2
|
Object.defineProperty(exports, "__esModule", { value: true });
|
|
3
|
-
exports.DigitelCircuitType = exports.BpCustomerAccountPreferredContactTimeType = exports.BpCustomerAccountBusinessSegmentType = exports.CustomerAccountHistoryType = exports.DeliveryMethod = exports.
|
|
3
|
+
exports.DigitelCircuitType = exports.BpCustomerAccountPreferredContactTimeType = exports.BpCustomerAccountBusinessSegmentType = exports.CustomerAccountHistoryType = exports.DeliveryMethod = exports.BpCustomerAccountDocumentType = exports.BpPartyStateType = exports.BpRelatedPartyRoleType = exports.BpCustomerAccountOrganizationIndustryType = exports.BusinessCustomerTypeToBpCustomerAccountOrganizationType = exports.BpCustomerAccountOrganizationTypeToBusinessCustomerType = exports.BpCustomerAccountOrganizationType = exports.BpCustomerAccountIdentificationType = exports.BpCustomerAccountContactMediumTelephoneNumberType = exports.BpCustomerAccountContactMediumRoleType = exports.BpCustomerAccountContactMediumContactType = exports.BpCustomerAccountContactMediumType = exports.BpCustomerAccountAdamoCustomerIdRepType = exports.BpCustomerAccountContactType = exports.BpAccountStateType = exports.UserState = exports.BpCustomerAccountIndividualTitleType = exports.BpTimezoneType = exports.BpAccountPreferredLanguageType = exports.BpEntityType = exports.BpPartyType = exports.BpCustomerAccountType = exports.ServiceSpecificationDictionary = exports.ServiceSpecificationType = exports.ProductOrderType = exports.ShoppingCartItemState = exports.ShoppingCartItemAction = exports.ProrationConditionType = exports.ProrationModeType = exports.AssignmentType = exports.CurrencyType = exports.TaxType = exports.DependencySourceTargetType = exports.DependencyType = exports.ProductCatalogItemState = exports.MobileVisibilityTypeDisplayOrder = exports.PhoneBonusValue = exports.MobileVisibilityType = exports.ConfigurationAttributeType = void 0;
|
|
4
4
|
const constants_1 = require("../../common/constants");
|
|
5
5
|
const helpers_1 = require("../../common/helpers/helpers");
|
|
6
6
|
var ConfigurationAttributeType;
|
|
@@ -297,23 +297,23 @@ var BpPartyStateType;
|
|
|
297
297
|
BpPartyStateType["VALIDATED"] = "Validated";
|
|
298
298
|
BpPartyStateType["DECEASED"] = "Deceased";
|
|
299
299
|
})(BpPartyStateType || (exports.BpPartyStateType = BpPartyStateType = {}));
|
|
300
|
-
var
|
|
301
|
-
(function (
|
|
302
|
-
|
|
303
|
-
|
|
304
|
-
|
|
305
|
-
|
|
306
|
-
|
|
307
|
-
|
|
308
|
-
|
|
309
|
-
|
|
310
|
-
|
|
311
|
-
|
|
312
|
-
|
|
313
|
-
|
|
314
|
-
|
|
315
|
-
|
|
316
|
-
})(
|
|
300
|
+
var BpCustomerAccountDocumentType;
|
|
301
|
+
(function (BpCustomerAccountDocumentType) {
|
|
302
|
+
BpCustomerAccountDocumentType["BANK_DETAILS"] = "BANK_DETAILS";
|
|
303
|
+
BpCustomerAccountDocumentType["CIF"] = "CIF";
|
|
304
|
+
BpCustomerAccountDocumentType["CLIENT_CERTIFICATE"] = "CLIENT_CERTIFICATE";
|
|
305
|
+
BpCustomerAccountDocumentType["CONTRACT"] = "CONTRACT";
|
|
306
|
+
BpCustomerAccountDocumentType["CREDIT_NOTE"] = "CREDIT_NOTE";
|
|
307
|
+
BpCustomerAccountDocumentType["DNI_NIE_PASSPORT"] = "DNI_NIE_PASSPORT";
|
|
308
|
+
BpCustomerAccountDocumentType["GENERAL"] = "GENERAL";
|
|
309
|
+
BpCustomerAccountDocumentType["INVOICE"] = "INVOICE";
|
|
310
|
+
BpCustomerAccountDocumentType["OFFER_IMAGE"] = "OFFER_IMAGE";
|
|
311
|
+
BpCustomerAccountDocumentType["OFFER_TERMS_AND_CONDITIONS"] = "OFFER_TERMS_AND_CONDITIONS";
|
|
312
|
+
BpCustomerAccountDocumentType["OTHERS"] = "OTHERS";
|
|
313
|
+
BpCustomerAccountDocumentType["REPORT_ARCHIVE"] = "REPORT_ARCHIVE";
|
|
314
|
+
BpCustomerAccountDocumentType["SEPA_MANDATE"] = "SEPA_MANDATE";
|
|
315
|
+
BpCustomerAccountDocumentType["UI_CUSTOMIZATION"] = "UI_CUSTOMIZATION";
|
|
316
|
+
})(BpCustomerAccountDocumentType || (exports.BpCustomerAccountDocumentType = BpCustomerAccountDocumentType = {}));
|
|
317
317
|
var DeliveryMethod;
|
|
318
318
|
(function (DeliveryMethod) {
|
|
319
319
|
DeliveryMethod["ELECTRONIC_INVOICE"] = "ELECTRONIC_INVOICE";
|
|
@@ -1,11 +1,11 @@
|
|
|
1
1
|
import { ProductInventoryState } from '../product';
|
|
2
2
|
import { ShoppingCartProductType } from '../../common/constants';
|
|
3
|
-
import { ArsAddressDto } from '../../common/edge-bss';
|
|
4
3
|
import { CustomerProductActionType } from './customer.constants';
|
|
5
4
|
import { MobileVisibilityType } from '..';
|
|
6
5
|
import { Builder } from '../../common/helpers/helpers';
|
|
7
6
|
import { ShoppingCartConfigurationAttributeDto } from '../../sys03/shopping-cart';
|
|
8
7
|
import { ServiceInventoryServiceStateType } from '../service';
|
|
8
|
+
import { CustomerAccountAddressDto } from '../../sys03/customer';
|
|
9
9
|
export declare class CustomerProductCharacteristicDto {
|
|
10
10
|
id: string;
|
|
11
11
|
name: string;
|
|
@@ -25,7 +25,7 @@ export declare class CustomerProductServiceDataDto {
|
|
|
25
25
|
type?: ShoppingCartProductType;
|
|
26
26
|
serviceCharacteristicInstanceValue?: string;
|
|
27
27
|
serviceCharacteristicName?: string;
|
|
28
|
-
serviceCharacteristicValue?: string |
|
|
28
|
+
serviceCharacteristicValue?: string | CustomerAccountAddressDto;
|
|
29
29
|
services?: CustomerProductServiceDto[];
|
|
30
30
|
}
|
|
31
31
|
export declare class CustomerProductServiceCharacteristicDto {
|
|
@@ -1,15 +1,7 @@
|
|
|
1
1
|
import { BaseSearchFiltersDto } from '../search';
|
|
2
|
-
import { BpAccountStateType,
|
|
3
|
-
import { PassThrough } from 'stream';
|
|
2
|
+
import { BpAccountStateType, BpCustomerAccountIdentificationType, BpCustomerAccountOrganizationIndustryType, BpCustomerAccountIndividualTitleType } from '../constants';
|
|
4
3
|
import { ContactMediumType } from './customer.constants';
|
|
5
|
-
import {
|
|
6
|
-
export interface CustomerAccountDocument {
|
|
7
|
-
stream: PassThrough;
|
|
8
|
-
fileName: string;
|
|
9
|
-
contentType: string;
|
|
10
|
-
type: DocumentType;
|
|
11
|
-
comment: string;
|
|
12
|
-
}
|
|
4
|
+
import { CustomerAccountAddressDto } from '../../sys03/customer';
|
|
13
5
|
export declare class ContactMediumDto {
|
|
14
6
|
type: ContactMediumType;
|
|
15
7
|
value: string;
|
|
@@ -40,16 +32,10 @@ export declare class SearchCustomerCustomerAccountOrganizationPartyDto {
|
|
|
40
32
|
}
|
|
41
33
|
export declare class SearchCustomerCustomerAccountDto {
|
|
42
34
|
state: BpAccountStateType;
|
|
43
|
-
address?:
|
|
35
|
+
address?: CustomerAccountAddressDto;
|
|
44
36
|
individual?: SearchCustomerCustomerAccountIndividualPartyDto;
|
|
45
37
|
organization?: SearchCustomerCustomerAccountOrganizationPartyDto;
|
|
46
38
|
}
|
|
47
|
-
export declare class CustomerAccountNoteDto {
|
|
48
|
-
id: string;
|
|
49
|
-
notes: string;
|
|
50
|
-
createdBy: string;
|
|
51
|
-
createdAt: string;
|
|
52
|
-
}
|
|
53
39
|
export declare class BillReceiverDto {
|
|
54
40
|
givenName: string;
|
|
55
41
|
familyName: string;
|
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
"use strict";
|
|
2
2
|
Object.defineProperty(exports, "__esModule", { value: true });
|
|
3
|
-
exports.CustomerCharacteristicDto = exports.CustomerBillsFiltersDto = exports.CustomerOrdersFiltersDto = exports.CustomerNotesFiltersDto = exports.CustomerTasksFiltersDto = exports.SearchCustomersFiltersDto = exports.SearchCustomerDto = exports.SearchCustomerBillingAccountDto = exports.BillReceiverDto = exports.
|
|
3
|
+
exports.CustomerCharacteristicDto = exports.CustomerBillsFiltersDto = exports.CustomerOrdersFiltersDto = exports.CustomerNotesFiltersDto = exports.CustomerTasksFiltersDto = exports.SearchCustomersFiltersDto = exports.SearchCustomerDto = exports.SearchCustomerBillingAccountDto = exports.BillReceiverDto = exports.SearchCustomerCustomerAccountDto = exports.SearchCustomerCustomerAccountOrganizationPartyDto = exports.SearchCustomerCustomerAccountIndividualPartyDto = exports.IdentificationDto = exports.ContactMediumDto = void 0;
|
|
4
4
|
const openapi = require("@nestjs/swagger");
|
|
5
5
|
const search_1 = require("../search");
|
|
6
6
|
class ContactMediumDto {
|
|
@@ -29,16 +29,10 @@ class SearchCustomerCustomerAccountOrganizationPartyDto {
|
|
|
29
29
|
exports.SearchCustomerCustomerAccountOrganizationPartyDto = SearchCustomerCustomerAccountOrganizationPartyDto;
|
|
30
30
|
class SearchCustomerCustomerAccountDto {
|
|
31
31
|
static _OPENAPI_METADATA_FACTORY() {
|
|
32
|
-
return { state: { required: true, enum: require("../constants/bp.constants").BpAccountStateType }, address: { required: false, type: () => require("../../
|
|
32
|
+
return { state: { required: true, enum: require("../constants/bp.constants").BpAccountStateType }, address: { required: false, type: () => require("../../sys03/customer/customer-account-address.entity").CustomerAccountAddressDto }, individual: { required: false, type: () => require("./customer.entity").SearchCustomerCustomerAccountIndividualPartyDto }, organization: { required: false, type: () => require("./customer.entity").SearchCustomerCustomerAccountOrganizationPartyDto } };
|
|
33
33
|
}
|
|
34
34
|
}
|
|
35
35
|
exports.SearchCustomerCustomerAccountDto = SearchCustomerCustomerAccountDto;
|
|
36
|
-
class CustomerAccountNoteDto {
|
|
37
|
-
static _OPENAPI_METADATA_FACTORY() {
|
|
38
|
-
return { id: { required: true, type: () => String }, notes: { required: true, type: () => String }, createdBy: { required: true, type: () => String }, createdAt: { required: true, type: () => String } };
|
|
39
|
-
}
|
|
40
|
-
}
|
|
41
|
-
exports.CustomerAccountNoteDto = CustomerAccountNoteDto;
|
|
42
36
|
class BillReceiverDto {
|
|
43
37
|
static _OPENAPI_METADATA_FACTORY() {
|
|
44
38
|
return { givenName: { required: true, type: () => String }, familyName: { required: true, type: () => String }, postalAddress: { required: true, type: () => String } };
|
|
@@ -1 +1 @@
|
|
|
1
|
-
export * from './
|
|
1
|
+
export * from './tariff-model.entity';
|
|
@@ -14,4 +14,4 @@ var __exportStar = (this && this.__exportStar) || function(m, exports) {
|
|
|
14
14
|
for (var p in m) if (p !== "default" && !Object.prototype.hasOwnProperty.call(exports, p)) __createBinding(exports, m, p);
|
|
15
15
|
};
|
|
16
16
|
Object.defineProperty(exports, "__esModule", { value: true });
|
|
17
|
-
__exportStar(require("./
|
|
17
|
+
__exportStar(require("./tariff-model.entity"), exports);
|
|
@@ -1,14 +1,15 @@
|
|
|
1
|
-
export
|
|
1
|
+
export interface CacheTariffModelCharacteristic {
|
|
2
2
|
name: string;
|
|
3
|
+
chargeName: string;
|
|
3
4
|
months?: number;
|
|
4
5
|
days?: number;
|
|
5
6
|
validityPeriodAdjustmentAllowed: boolean;
|
|
6
7
|
}
|
|
7
|
-
export
|
|
8
|
+
export interface CacheTariffModel {
|
|
8
9
|
name: string;
|
|
9
|
-
productOfferingCharacteristicTariffs:
|
|
10
|
-
serviceSpecificationTariffs:
|
|
11
|
-
serviceSpecificationCharacteristicTariffs:
|
|
12
|
-
serviceSpecificationCharacteristicValueTariffs:
|
|
13
|
-
resourceSpecificationGroupTariffs:
|
|
10
|
+
productOfferingCharacteristicTariffs: CacheTariffModelCharacteristic[];
|
|
11
|
+
serviceSpecificationTariffs: CacheTariffModelCharacteristic[];
|
|
12
|
+
serviceSpecificationCharacteristicTariffs: CacheTariffModelCharacteristic[];
|
|
13
|
+
serviceSpecificationCharacteristicValueTariffs: CacheTariffModelCharacteristic[];
|
|
14
|
+
resourceSpecificationGroupTariffs: CacheTariffModelCharacteristic[];
|
|
14
15
|
}
|
|
@@ -69,7 +69,7 @@ export declare const E_PRODUCT_TRANSITION_DISABLED_MAIN_SHARED_DATA_PRODUCT_MISS
|
|
|
69
69
|
export declare const E_PRODUCT_ALREADY_INCLUDED_IN_DEACTIVATION_PROCESS = "E_PRODUCT_ALREADY_INCLUDED_IN_DEACTIVATION_PROCESS";
|
|
70
70
|
export declare const E_PRODUCT_ALREADY_INCLUDED_IN_MODIFICATION_PROCESS = "E_PRODUCT_ALREADY_INCLUDED_IN_MODIFICATION_PROCESS";
|
|
71
71
|
export declare const E_PRODUCT_ALREADY_INCLUDED_IN_TRANSITION_PROCESS = "E_PRODUCT_ALREADY_INCLUDED_IN_TRANSITION_PROCESS";
|
|
72
|
-
export declare const E_PRODUCT_ALREADY_INCLUDED_IN_MULTIPLE_TRANSITION_PROCESS = "
|
|
72
|
+
export declare const E_PRODUCT_ALREADY_INCLUDED_IN_MULTIPLE_TRANSITION_PROCESS = "E_PRODUCT_ALREADY_INCLUDED_IN_MULTIPLE_TRANSITION_PROCESS";
|
|
73
73
|
export declare const E_PRODUCT_MOBILE_EXTRA_TRANSITION_OR_MULTIPLE_TRANSITION_READY = "E_PRODUCT_MOBILE_EXTRA_TRANSITION_OR_MULTIPLE_TRANSITION_READY";
|
|
74
74
|
export declare const E_PRODUCT_MODIFICATION_MULTIPLE_TRANSITION_READY = "E_PRODUCT_MODIFICATION_MULTIPLE_TRANSITION_READY";
|
|
75
75
|
export declare const E_PRODUCT_DEACTIVATION_MULTIPLE_TRANSITION_READY = "E_PRODUCT_DEACTIVATION_MULTIPLE_TRANSITION_READY";
|
|
@@ -73,7 +73,7 @@ exports.E_PRODUCT_TRANSITION_DISABLED_MAIN_SHARED_DATA_PRODUCT_MISSING = 'E_PROD
|
|
|
73
73
|
exports.E_PRODUCT_ALREADY_INCLUDED_IN_DEACTIVATION_PROCESS = 'E_PRODUCT_ALREADY_INCLUDED_IN_DEACTIVATION_PROCESS';
|
|
74
74
|
exports.E_PRODUCT_ALREADY_INCLUDED_IN_MODIFICATION_PROCESS = 'E_PRODUCT_ALREADY_INCLUDED_IN_MODIFICATION_PROCESS';
|
|
75
75
|
exports.E_PRODUCT_ALREADY_INCLUDED_IN_TRANSITION_PROCESS = 'E_PRODUCT_ALREADY_INCLUDED_IN_TRANSITION_PROCESS';
|
|
76
|
-
exports.E_PRODUCT_ALREADY_INCLUDED_IN_MULTIPLE_TRANSITION_PROCESS = '
|
|
76
|
+
exports.E_PRODUCT_ALREADY_INCLUDED_IN_MULTIPLE_TRANSITION_PROCESS = 'E_PRODUCT_ALREADY_INCLUDED_IN_MULTIPLE_TRANSITION_PROCESS';
|
|
77
77
|
exports.E_PRODUCT_MOBILE_EXTRA_TRANSITION_OR_MULTIPLE_TRANSITION_READY = 'E_PRODUCT_MOBILE_EXTRA_TRANSITION_OR_MULTIPLE_TRANSITION_READY';
|
|
78
78
|
exports.E_PRODUCT_MODIFICATION_MULTIPLE_TRANSITION_READY = 'E_PRODUCT_MODIFICATION_MULTIPLE_TRANSITION_READY';
|
|
79
79
|
exports.E_PRODUCT_DEACTIVATION_MULTIPLE_TRANSITION_READY = 'E_PRODUCT_DEACTIVATION_MULTIPLE_TRANSITION_READY';
|
|
@@ -1,19 +1,6 @@
|
|
|
1
|
-
import { CustomerAccountHistoryType
|
|
2
|
-
import { PassThrough } from 'stream';
|
|
3
|
-
export declare class ArsCustomerAccountNoteDto {
|
|
4
|
-
creator: string;
|
|
5
|
-
text: string;
|
|
6
|
-
}
|
|
1
|
+
import { CustomerAccountHistoryType } from '../../../../bss/constants';
|
|
7
2
|
export declare class ArsCustomerAccountHistoryDto {
|
|
8
3
|
type: CustomerAccountHistoryType;
|
|
9
4
|
creator: string;
|
|
10
5
|
content: string;
|
|
11
6
|
}
|
|
12
|
-
export declare class ArsCustomerAccountDocumentDto {
|
|
13
|
-
url?: string;
|
|
14
|
-
stream?: PassThrough;
|
|
15
|
-
fileName: string;
|
|
16
|
-
contentType: string;
|
|
17
|
-
type: DocumentType;
|
|
18
|
-
comment?: string;
|
|
19
|
-
}
|
|
@@ -1,22 +1,10 @@
|
|
|
1
1
|
"use strict";
|
|
2
2
|
Object.defineProperty(exports, "__esModule", { value: true });
|
|
3
|
-
exports.
|
|
3
|
+
exports.ArsCustomerAccountHistoryDto = void 0;
|
|
4
4
|
const openapi = require("@nestjs/swagger");
|
|
5
|
-
class ArsCustomerAccountNoteDto {
|
|
6
|
-
static _OPENAPI_METADATA_FACTORY() {
|
|
7
|
-
return { creator: { required: true, type: () => String }, text: { required: true, type: () => String } };
|
|
8
|
-
}
|
|
9
|
-
}
|
|
10
|
-
exports.ArsCustomerAccountNoteDto = ArsCustomerAccountNoteDto;
|
|
11
5
|
class ArsCustomerAccountHistoryDto {
|
|
12
6
|
static _OPENAPI_METADATA_FACTORY() {
|
|
13
7
|
return { type: { required: true, enum: require("../../../../bss/constants/bp.constants").CustomerAccountHistoryType }, creator: { required: true, type: () => String }, content: { required: true, type: () => String } };
|
|
14
8
|
}
|
|
15
9
|
}
|
|
16
10
|
exports.ArsCustomerAccountHistoryDto = ArsCustomerAccountHistoryDto;
|
|
17
|
-
class ArsCustomerAccountDocumentDto {
|
|
18
|
-
static _OPENAPI_METADATA_FACTORY() {
|
|
19
|
-
return { url: { required: false, type: () => String }, stream: { required: false, type: () => require("stream").PassThrough }, fileName: { required: true, type: () => String }, contentType: { required: true, type: () => String }, type: { required: true, enum: require("../../../../bss/constants/bp.constants").DocumentType }, comment: { required: false, type: () => String } };
|
|
20
|
-
}
|
|
21
|
-
}
|
|
22
|
-
exports.ArsCustomerAccountDocumentDto = ArsCustomerAccountDocumentDto;
|
|
@@ -14,7 +14,6 @@ var __exportStar = (this && this.__exportStar) || function(m, exports) {
|
|
|
14
14
|
for (var p in m) if (p !== "default" && !Object.prototype.hasOwnProperty.call(exports, p)) __createBinding(exports, m, p);
|
|
15
15
|
};
|
|
16
16
|
Object.defineProperty(exports, "__esModule", { value: true });
|
|
17
|
-
__exportStar(require("./address"), exports);
|
|
18
17
|
__exportStar(require("./customer"), exports);
|
|
19
18
|
__exportStar(require("./shopping-cart"), exports);
|
|
20
19
|
__exportStar(require("./user"), exports);
|
|
@@ -1,9 +1,9 @@
|
|
|
1
|
-
import {
|
|
1
|
+
import { BpCustomerAccountDocumentType } from '../../../../bss/constants';
|
|
2
2
|
import { AdditionalContactMediumType, AdditionalContactRoleType, SaleProcessCallType } from '../../../../zoho/constants';
|
|
3
3
|
import { UtmDto } from '../../../../zoho/sale-process';
|
|
4
4
|
export declare class ArsSaleProcessDocumentDto {
|
|
5
5
|
fileName: string;
|
|
6
|
-
type:
|
|
6
|
+
type: BpCustomerAccountDocumentType;
|
|
7
7
|
comment?: string;
|
|
8
8
|
transactionId?: string;
|
|
9
9
|
}
|
|
@@ -18,7 +18,7 @@ const class_validator_1 = require("class-validator");
|
|
|
18
18
|
const sale_process_1 = require("../../../../zoho/sale-process");
|
|
19
19
|
class ArsSaleProcessDocumentDto {
|
|
20
20
|
static _OPENAPI_METADATA_FACTORY() {
|
|
21
|
-
return { fileName: { required: true, type: () => String }, type: { required: true, enum: require("../../../../bss/constants/bp.constants").
|
|
21
|
+
return { fileName: { required: true, type: () => String }, type: { required: true, enum: require("../../../../bss/constants/bp.constants").BpCustomerAccountDocumentType }, comment: { required: false, type: () => String, maxLength: 1000 }, transactionId: { required: false, type: () => String, maxLength: 1000 } };
|
|
22
22
|
}
|
|
23
23
|
}
|
|
24
24
|
exports.ArsSaleProcessDocumentDto = ArsSaleProcessDocumentDto;
|
|
@@ -28,7 +28,7 @@ __decorate([
|
|
|
28
28
|
__metadata("design:type", String)
|
|
29
29
|
], ArsSaleProcessDocumentDto.prototype, "fileName", void 0);
|
|
30
30
|
__decorate([
|
|
31
|
-
(0, class_validator_1.IsEnum)(constants_1.
|
|
31
|
+
(0, class_validator_1.IsEnum)(constants_1.BpCustomerAccountDocumentType),
|
|
32
32
|
__metadata("design:type", String)
|
|
33
33
|
], ArsSaleProcessDocumentDto.prototype, "type", void 0);
|
|
34
34
|
__decorate([
|
|
@@ -1,8 +1,8 @@
|
|
|
1
1
|
import { DigitelCircuitType, BpCustomerAccountIndividualTitleType, BpCustomerAccountPreferredContactTimeType } from '../../../../bss/constants';
|
|
2
|
-
import { ArsAddressDto } from '../../../edge-bss';
|
|
3
2
|
import { BusinessCustomerType, CustomerType } from '../../../constants';
|
|
4
3
|
import { AddressSearchType, CustomerAccountBehaviourType, SaleProcessStatusType } from '../../../../zoho/constants';
|
|
5
4
|
import { BusinessIdentificationDto, CustomerIdentificationDto } from '../../../../zoho/sale-process';
|
|
5
|
+
import { CreateCustomerAccountAddressReqDto } from '../../../../sys03/customer';
|
|
6
6
|
export declare class PartialSaleProcessCustomerDto {
|
|
7
7
|
customerType: CustomerType;
|
|
8
8
|
identification?: CustomerIdentificationDto;
|
|
@@ -46,7 +46,7 @@ export declare class PartialSaleProcessBillingInfoFirstAndLastNameDto {
|
|
|
46
46
|
lastName: string;
|
|
47
47
|
}
|
|
48
48
|
export declare class PartialSaleProcessBillingInfoDto extends PartialSaleProcessBillingInfoFirstAndLastNameDto {
|
|
49
|
-
billingAddressData:
|
|
49
|
+
billingAddressData: CreateCustomerAccountAddressReqDto;
|
|
50
50
|
}
|
|
51
51
|
export declare class PartialSaleProcessCustomerBaseDto {
|
|
52
52
|
customerType: CustomerType;
|
|
@@ -12,7 +12,6 @@ Object.defineProperty(exports, "__esModule", { value: true });
|
|
|
12
12
|
exports.PatchSaleProcessPendingIbanValidationCompanyDto = exports.PartialSaleProcessPendingIbanValidationCompanyDto = exports.PatchSaleProcessPendingIbanValidationPersonDto = exports.PartialSaleProcessPendingIbanValidationPersonDto = exports.PatchSaleProcessNoCoverageWebDto = exports.PatchSaleProcessFhContactDto = exports.PatchSaleProcessNearByDto = exports.PatchSaleProcessApolloDto = exports.PatchSaleProcessB2bContactDto = exports.PatchSaleProcessNoSaleDto = exports.PatchSaleProcessApartmentSelectedDto = exports.PatchSaleProcessAddressSelectedDto = exports.PatchSaleProcessAddressSearchDto = exports.PartialNearByFhContactNoCoverageAddressSearchDto = exports.PartialNearByFhContactNoCoverageCustomerDto = exports.PartialApolloAddressSearchDto = exports.PartialB2bContactAddressSearchDto = exports.PartialB2bContactCustomerDto = exports.PartialApartmentSelectedCustomerDto = exports.PartialApartmentSelectedDto = exports.PartialAddressSelectedDto = exports.PartialAddressSearchDto = exports.PatchSaleProcessFeaturesSelectedDto = exports.PatchSaleProcessBundleSelectedDto = exports.PatchSaleProcessNoCoverageDto = exports.PatchSaleProcessPersonalDataSavedDto = exports.PatchSaleProcessContractDataSavedDto = exports.PartialSaleProcessBusinessInfoDto = exports.PartialSaleProcessBillingInfoBaseWithIdentificationDto = exports.PartialSaleProcessBillingInfoBaseDto = exports.PartialSaleProcessContractCustomerDto = exports.PartialSaleProcessCustomerBaseWithoutTypeDto = exports.PartialSaleProcessCustomerBaseDto = exports.PartialSaleProcessBillingInfoDto = exports.PartialSaleProcessBillingInfoFirstAndLastNameDto = exports.PartialSaleProcessContractDataSavedPatchBehaviourBusinessInfoDto = exports.PartialSaleProcessDigitelDto = exports.PartialSaleProcessDigitelCustomerDto = exports.PartialSaleProcessContractDataSavedPatchBehaviourCustomerIdentificationDto = exports.PatchSaleProcessBusinessInfoContractDataSavedDto = exports.PatchSaleProcessCustomerContractDataSavedDto = exports.PatchSaleProcessCustomerTypeValidatedDto = exports.PatchSaleProcessCustomerTypeSelectedDto = exports.PartialSaleProcessBusinessDto = exports.PartialSaleProcessCustomerDto = void 0;
|
|
13
13
|
const openapi = require("@nestjs/swagger");
|
|
14
14
|
const constants_1 = require("../../../../bss/constants");
|
|
15
|
-
const edge_bss_1 = require("../../../edge-bss");
|
|
16
15
|
const constants_2 = require("../../../constants");
|
|
17
16
|
const constants_3 = require("../../../../zoho/constants");
|
|
18
17
|
const sale_process_1 = require("../../../../zoho/sale-process");
|
|
@@ -20,6 +19,7 @@ const class_transformer_1 = require("class-transformer");
|
|
|
20
19
|
const class_validator_1 = require("class-validator");
|
|
21
20
|
const _validators_1 = require("../../../../validators/index");
|
|
22
21
|
const swagger_1 = require("@nestjs/swagger");
|
|
22
|
+
const customer_1 = require("../../../../sys03/customer");
|
|
23
23
|
class PartialSaleProcessCustomerDto {
|
|
24
24
|
static _OPENAPI_METADATA_FACTORY() {
|
|
25
25
|
return { customerType: { required: true, enum: require("../../../constants/common.constants").CustomerType }, identification: { required: false, type: () => require("../../../../zoho/sale-process/customer-identification.entity").CustomerIdentificationDto } };
|
|
@@ -210,15 +210,15 @@ __decorate([
|
|
|
210
210
|
], PartialSaleProcessBillingInfoFirstAndLastNameDto.prototype, "lastName", void 0);
|
|
211
211
|
class PartialSaleProcessBillingInfoDto extends PartialSaleProcessBillingInfoFirstAndLastNameDto {
|
|
212
212
|
static _OPENAPI_METADATA_FACTORY() {
|
|
213
|
-
return { billingAddressData: { required: true, type: () => require("
|
|
213
|
+
return { billingAddressData: { required: true, type: () => require("../../../../sys03/customer/customer-account-address.entity").CreateCustomerAccountAddressReqDto } };
|
|
214
214
|
}
|
|
215
215
|
}
|
|
216
216
|
exports.PartialSaleProcessBillingInfoDto = PartialSaleProcessBillingInfoDto;
|
|
217
217
|
__decorate([
|
|
218
218
|
(0, class_validator_1.ValidateNested)(),
|
|
219
|
-
(0, class_transformer_1.Type)(() =>
|
|
219
|
+
(0, class_transformer_1.Type)(() => customer_1.CreateCustomerAccountAddressReqDto),
|
|
220
220
|
(0, class_transformer_1.Expose)(),
|
|
221
|
-
__metadata("design:type",
|
|
221
|
+
__metadata("design:type", customer_1.CreateCustomerAccountAddressReqDto)
|
|
222
222
|
], PartialSaleProcessBillingInfoDto.prototype, "billingAddressData", void 0);
|
|
223
223
|
class PartialSaleProcessCustomerBaseDto {
|
|
224
224
|
static _OPENAPI_METADATA_FACTORY() {
|
|
@@ -117,7 +117,7 @@ __decorate([
|
|
|
117
117
|
__metadata("design:type", Boolean)
|
|
118
118
|
], ProductTransitionCombinationEntity.prototype, "active", void 0);
|
|
119
119
|
exports.ProductTransitionCombinationEntity = ProductTransitionCombinationEntity = __decorate([
|
|
120
|
-
(0, typeorm_1.Entity)({ name: 'product-transition-combination' }),
|
|
120
|
+
(0, typeorm_1.Entity)({ name: 'product-transition-group-combination' }),
|
|
121
121
|
(0, typeorm_1.Index)('product_UNIQUE', ['product', 'fiberProduct', 'mobileProduct'], { unique: true })
|
|
122
122
|
], ProductTransitionCombinationEntity);
|
|
123
123
|
let ProductTransitionConfigurationEntity = class ProductTransitionConfigurationEntity {
|
|
@@ -135,10 +135,10 @@ export declare class ApprovalWithGroupsDto extends ApprovalDto {
|
|
|
135
135
|
declare const CreateApprovalDataDto_base: import("@nestjs/common").Type<Omit<ApprovalDataDto, "active" | "id" | "approved" | "updated">>;
|
|
136
136
|
export declare class CreateApprovalDataDto extends CreateApprovalDataDto_base {
|
|
137
137
|
}
|
|
138
|
-
declare const PartialCreateApprovalDataDto_base: import("@nestjs/common").Type<Omit<CreateApprovalDataDto, "
|
|
138
|
+
declare const PartialCreateApprovalDataDto_base: import("@nestjs/common").Type<Omit<CreateApprovalDataDto, "created" | "approvalId">>;
|
|
139
139
|
export declare class PartialCreateApprovalDataDto extends PartialCreateApprovalDataDto_base {
|
|
140
140
|
}
|
|
141
|
-
declare const UpdateApprovalDataDto_base: import("@nestjs/common").Type<Omit<ApprovalDataDto, "active" | "id" | "
|
|
141
|
+
declare const UpdateApprovalDataDto_base: import("@nestjs/common").Type<Omit<ApprovalDataDto, "active" | "id" | "created" | "approvalId" | "validation">>;
|
|
142
142
|
export declare class UpdateApprovalDataDto extends UpdateApprovalDataDto_base {
|
|
143
143
|
validation?: SaleProcessApprovalValidation;
|
|
144
144
|
active?: boolean;
|
|
@@ -1,7 +1,7 @@
|
|
|
1
1
|
import { CustomerProductTransitionProcessTransitionType } from './common.constants';
|
|
2
2
|
import { CustomerProductTransitionCombinationDto } from '../customer';
|
|
3
3
|
import { Builder } from '../../common/helpers/helpers';
|
|
4
|
-
import {
|
|
4
|
+
import { BpCustomerAccountDocumentType } from '../../bss/constants';
|
|
5
5
|
export declare class AuditFieldsDto {
|
|
6
6
|
by?: string;
|
|
7
7
|
at?: Date;
|
|
@@ -35,11 +35,11 @@ export declare class GenericFileDto {
|
|
|
35
35
|
url?: string;
|
|
36
36
|
fileName: string;
|
|
37
37
|
contentType?: string;
|
|
38
|
-
type:
|
|
38
|
+
type: BpCustomerAccountDocumentType;
|
|
39
39
|
comment?: string;
|
|
40
40
|
transactionId?: string;
|
|
41
41
|
}
|
|
42
42
|
export declare class ArsDocumentDto {
|
|
43
43
|
fileName: string;
|
|
44
|
-
type:
|
|
44
|
+
type: BpCustomerAccountDocumentType;
|
|
45
45
|
}
|
|
@@ -66,13 +66,13 @@ class CustomerProductTransitionProcessTransitionDto extends customer_1.CustomerP
|
|
|
66
66
|
exports.CustomerProductTransitionProcessTransitionDto = CustomerProductTransitionProcessTransitionDto;
|
|
67
67
|
class GenericFileDto {
|
|
68
68
|
static _OPENAPI_METADATA_FACTORY() {
|
|
69
|
-
return { id: { required: false, type: () => Number }, internalId: { required: false, type: () => Number }, documentId: { required: false, type: () => String }, url: { required: false, type: () => String }, fileName: { required: true, type: () => String }, contentType: { required: false, type: () => String }, type: { required: true, enum: require("../../bss/constants/bp.constants").
|
|
69
|
+
return { id: { required: false, type: () => Number }, internalId: { required: false, type: () => Number }, documentId: { required: false, type: () => String }, url: { required: false, type: () => String }, fileName: { required: true, type: () => String }, contentType: { required: false, type: () => String }, type: { required: true, enum: require("../../bss/constants/bp.constants").BpCustomerAccountDocumentType }, comment: { required: false, type: () => String }, transactionId: { required: false, type: () => String } };
|
|
70
70
|
}
|
|
71
71
|
}
|
|
72
72
|
exports.GenericFileDto = GenericFileDto;
|
|
73
73
|
class ArsDocumentDto {
|
|
74
74
|
static _OPENAPI_METADATA_FACTORY() {
|
|
75
|
-
return { fileName: { required: true, type: () => String }, type: { required: true, enum: require("../../bss/constants/bp.constants").
|
|
75
|
+
return { fileName: { required: true, type: () => String }, type: { required: true, enum: require("../../bss/constants/bp.constants").BpCustomerAccountDocumentType } };
|
|
76
76
|
}
|
|
77
77
|
}
|
|
78
78
|
exports.ArsDocumentDto = ArsDocumentDto;
|
|
@@ -82,6 +82,6 @@ __decorate([
|
|
|
82
82
|
__metadata("design:type", String)
|
|
83
83
|
], ArsDocumentDto.prototype, "fileName", void 0);
|
|
84
84
|
__decorate([
|
|
85
|
-
(0, class_validator_1.IsEnum)(constants_1.
|
|
85
|
+
(0, class_validator_1.IsEnum)(constants_1.BpCustomerAccountDocumentType),
|
|
86
86
|
__metadata("design:type", String)
|
|
87
87
|
], ArsDocumentDto.prototype, "type", void 0);
|