adamo-types 2.1.30-sit → 2.1.32-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/customer/customer.constants.d.ts +5 -3
- package/dist/bss/customer/customer.constants.js +8 -4
- package/dist/common/constants/common.constants.d.ts +4 -2
- package/dist/common/constants/common.constants.js +3 -1
- package/dist/common/constants/customer-mobile-product-sim-change.error.constants.d.ts +4 -0
- package/dist/common/constants/customer-mobile-product-sim-change.error.constants.js +7 -0
- package/dist/common/constants/index.d.ts +2 -0
- package/dist/common/constants/index.js +2 -0
- package/dist/common/constants/iosmvna.error.constants.d.ts +2 -0
- package/dist/common/constants/iosmvna.error.constants.js +5 -0
- package/dist/common/constants/not-found.error.constants.d.ts +1 -0
- package/dist/common/constants/not-found.error.constants.js +3 -2
- package/dist/sys03/common/common.entity.d.ts +3 -0
- package/dist/sys03/common/common.entity.js +7 -1
- package/dist/sys03/customer-product-sim-change/customer-product-sim-change.constants.d.ts +8 -0
- package/dist/sys03/customer-product-sim-change/customer-product-sim-change.constants.js +12 -0
- package/dist/sys03/customer-product-sim-change/customer-product-sim-change.entity.d.ts +30 -0
- package/dist/sys03/customer-product-sim-change/customer-product-sim-change.entity.js +67 -0
- package/dist/sys03/customer-product-sim-change/index.d.ts +2 -0
- package/dist/sys03/customer-product-sim-change/index.js +18 -0
- package/dist/sys03/customer-suma-product/customer-suma-mobile-product.entity.d.ts +32 -0
- package/dist/sys03/customer-suma-product/customer-suma-mobile-product.entity.js +36 -0
- package/dist/sys03/customer-suma-product/index.d.ts +1 -0
- package/dist/sys03/customer-suma-product/index.js +17 -0
- package/dist/tsconfig.build.tsbuildinfo +1 -1
- package/package.json +1 -1
|
@@ -8,15 +8,17 @@ export declare enum ContactMediumType {
|
|
|
8
8
|
UNKNOWN = "UNKNOWN"
|
|
9
9
|
}
|
|
10
10
|
export declare enum CustomerProductActionType {
|
|
11
|
-
|
|
11
|
+
CANCEL_CHANGE_OF_ADDRESS = "CANCEL_CHANGE_OF_ADDRESS",
|
|
12
12
|
CHANGE = "CHANGE",
|
|
13
13
|
CHANGE_OF_ADDRESS = "CHANGE_OF_ADDRESS",
|
|
14
14
|
CONTINUE_CHANGE_OF_ADDRESS = "CONTINUE_CHANGE_OF_ADDRESS",
|
|
15
|
-
|
|
16
|
-
STOP_CHANGE_OF_ADDRESS = "STOP_CHANGE_OF_ADDRESS",
|
|
15
|
+
EXTRA = "EXTRA",
|
|
17
16
|
MIGRATE = "MIGRATE",
|
|
18
17
|
MIGRATE_ONLY_MOBILES = "MIGRATE_ONLY_MOBILES",
|
|
19
18
|
MIGRATE_SHARED_MOBILES = "MIGRATE_SHARED_MOBILES",
|
|
19
|
+
SEE_DETAILS = "SEE_DETAILS",
|
|
20
|
+
SIM_CHANGE = "SIM_CHANGE",
|
|
21
|
+
STOP_CHANGE_OF_ADDRESS = "STOP_CHANGE_OF_ADDRESS",
|
|
20
22
|
TERMINATE = "TERMINATE"
|
|
21
23
|
}
|
|
22
24
|
export declare enum CustomerProcessType {
|
|
@@ -13,15 +13,17 @@ var ContactMediumType;
|
|
|
13
13
|
})(ContactMediumType || (exports.ContactMediumType = ContactMediumType = {}));
|
|
14
14
|
var CustomerProductActionType;
|
|
15
15
|
(function (CustomerProductActionType) {
|
|
16
|
-
CustomerProductActionType["
|
|
16
|
+
CustomerProductActionType["CANCEL_CHANGE_OF_ADDRESS"] = "CANCEL_CHANGE_OF_ADDRESS";
|
|
17
17
|
CustomerProductActionType["CHANGE"] = "CHANGE";
|
|
18
18
|
CustomerProductActionType["CHANGE_OF_ADDRESS"] = "CHANGE_OF_ADDRESS";
|
|
19
19
|
CustomerProductActionType["CONTINUE_CHANGE_OF_ADDRESS"] = "CONTINUE_CHANGE_OF_ADDRESS";
|
|
20
|
-
CustomerProductActionType["
|
|
21
|
-
CustomerProductActionType["STOP_CHANGE_OF_ADDRESS"] = "STOP_CHANGE_OF_ADDRESS";
|
|
20
|
+
CustomerProductActionType["EXTRA"] = "EXTRA";
|
|
22
21
|
CustomerProductActionType["MIGRATE"] = "MIGRATE";
|
|
23
22
|
CustomerProductActionType["MIGRATE_ONLY_MOBILES"] = "MIGRATE_ONLY_MOBILES";
|
|
24
23
|
CustomerProductActionType["MIGRATE_SHARED_MOBILES"] = "MIGRATE_SHARED_MOBILES";
|
|
24
|
+
CustomerProductActionType["SEE_DETAILS"] = "SEE_DETAILS";
|
|
25
|
+
CustomerProductActionType["SIM_CHANGE"] = "SIM_CHANGE";
|
|
26
|
+
CustomerProductActionType["STOP_CHANGE_OF_ADDRESS"] = "STOP_CHANGE_OF_ADDRESS";
|
|
25
27
|
CustomerProductActionType["TERMINATE"] = "TERMINATE";
|
|
26
28
|
})(CustomerProductActionType || (exports.CustomerProductActionType = CustomerProductActionType = {}));
|
|
27
29
|
var CustomerProcessType;
|
|
@@ -47,7 +49,9 @@ exports.CustomerProductActionTypeDisplayOrder = {
|
|
|
47
49
|
[CustomerProductActionType.CANCEL_CHANGE_OF_ADDRESS]: 7,
|
|
48
50
|
[CustomerProductActionType.STOP_CHANGE_OF_ADDRESS]: 8,
|
|
49
51
|
[CustomerProductActionType.TERMINATE]: 9,
|
|
50
|
-
[CustomerProductActionType.EXTRA]: 10
|
|
52
|
+
[CustomerProductActionType.EXTRA]: 10,
|
|
53
|
+
[CustomerProductActionType.SEE_DETAILS]: 11,
|
|
54
|
+
[CustomerProductActionType.SIM_CHANGE]: 12
|
|
51
55
|
};
|
|
52
56
|
exports.CustomerProductTypeToServiceCharacteristicName = {
|
|
53
57
|
[constants_1.ShoppingCartProductType.FIBER]: ['SERVICE_ADDRESS'],
|
|
@@ -44,14 +44,15 @@ export declare enum StorageConfiguration {
|
|
|
44
44
|
CUSTOMER_PRODUCT_ACTION_OMIT_DEBT_VALIDATION_CHANNELS = "CUSTOMER_PRODUCT_ACTION_OMIT_DEBT_VALIDATION_CHANNELS",
|
|
45
45
|
DEPENDENCY_GROUPS = "DEPENDENCY_GROUPS",
|
|
46
46
|
DIGITEL_CIRCUITS_CONFIG = "DIGITEL_CIRCUITS_CONFIG",
|
|
47
|
-
DIGITEL_SIGN_FLOWS_CONFIG = "DIGITEL_SIGN_FLOWS_CONFIG",
|
|
48
47
|
DIGITEL_CLAUSES_CONFIG = "GDPR_CLAUSES",
|
|
49
48
|
DIGITEL_CONTRACT_CHANNELS_B2B = "DIGITEL_CONTRACT_CHANNELS_B2B",
|
|
50
49
|
DIGITEL_CONTRACT_CHANNELS_B2C = "DIGITEL_CONTRACT_CHANNELS_B2C",
|
|
51
50
|
DIGITEL_DEFAULT_USERS_PHONE = "DIGITEL_DEFAULT_USERS_PHONE",
|
|
51
|
+
DIGITEL_SIGN_FLOWS_CONFIG = "DIGITEL_SIGN_FLOWS_CONFIG",
|
|
52
52
|
FORBIDDEN_SALE_PROCESS_STATUSES = "FORBIDDEN_SALE_PROCESS_STATUSES",
|
|
53
53
|
IBAN_SUPPORTED_COUNTRIES = "IBAN_SUPPORTED_COUNTRIES",
|
|
54
54
|
IBAN_VALIDATION_CHANNELS = "IBAN_VALIDATION_CHANNELS",
|
|
55
|
+
LOCKED_SALE_PROCESS_STATUSES = "LOCKED_SALE_PROCESS_STATUSES",
|
|
55
56
|
PROCESS_PENDING_IBAN_VALIDATION_SALE_PROCESSES_JOB = "PROCESS_PENDING_IBAN_VALIDATION_SALE_PROCESSES_JOB",
|
|
56
57
|
PRODUCTS_MANDATORY_DOCUMENTS = "PRODUCTS_MANDATORY_DOCUMENTS",
|
|
57
58
|
PROMOTION_GROUPS = "PROMOTION_GROUPS",
|
|
@@ -121,7 +122,8 @@ export declare enum Templates {
|
|
|
121
122
|
INVOICE_B2C_TEMPLATE = "INVOICE_B2C_TEMPLATE",
|
|
122
123
|
RETAIL_BATCH_HUB_NOTIFICATION_TEMPLATE = "RETAIL_BATCH_HUB_NOTIFICATION_TEMPLATE",
|
|
123
124
|
WEB_ORDER_CLIENT_TEMPLATE = "WEB_ORDER_CLIENT_TEMPLATE",
|
|
124
|
-
WEB_PRE_ORDER_CLIENT_TEMPLATE = "WEB_PRE_ORDER_CLIENT_TEMPLATE"
|
|
125
|
+
WEB_PRE_ORDER_CLIENT_TEMPLATE = "WEB_PRE_ORDER_CLIENT_TEMPLATE",
|
|
126
|
+
CUSTOMER_PRODUCT_ESIM_CHANGE_TEMPLATE = "CUSTOMER_PRODUCT_ESIM_CHANGE_TEMPLATE"
|
|
125
127
|
}
|
|
126
128
|
export declare enum StorageDropdown {
|
|
127
129
|
APPROVAL_VALIDATION_TYPES = "APPROVAL_VALIDATION_TYPES"
|
|
@@ -65,14 +65,15 @@ var StorageConfiguration;
|
|
|
65
65
|
StorageConfiguration["CUSTOMER_PRODUCT_ACTION_OMIT_DEBT_VALIDATION_CHANNELS"] = "CUSTOMER_PRODUCT_ACTION_OMIT_DEBT_VALIDATION_CHANNELS";
|
|
66
66
|
StorageConfiguration["DEPENDENCY_GROUPS"] = "DEPENDENCY_GROUPS";
|
|
67
67
|
StorageConfiguration["DIGITEL_CIRCUITS_CONFIG"] = "DIGITEL_CIRCUITS_CONFIG";
|
|
68
|
-
StorageConfiguration["DIGITEL_SIGN_FLOWS_CONFIG"] = "DIGITEL_SIGN_FLOWS_CONFIG";
|
|
69
68
|
StorageConfiguration["DIGITEL_CLAUSES_CONFIG"] = "GDPR_CLAUSES";
|
|
70
69
|
StorageConfiguration["DIGITEL_CONTRACT_CHANNELS_B2B"] = "DIGITEL_CONTRACT_CHANNELS_B2B";
|
|
71
70
|
StorageConfiguration["DIGITEL_CONTRACT_CHANNELS_B2C"] = "DIGITEL_CONTRACT_CHANNELS_B2C";
|
|
72
71
|
StorageConfiguration["DIGITEL_DEFAULT_USERS_PHONE"] = "DIGITEL_DEFAULT_USERS_PHONE";
|
|
72
|
+
StorageConfiguration["DIGITEL_SIGN_FLOWS_CONFIG"] = "DIGITEL_SIGN_FLOWS_CONFIG";
|
|
73
73
|
StorageConfiguration["FORBIDDEN_SALE_PROCESS_STATUSES"] = "FORBIDDEN_SALE_PROCESS_STATUSES";
|
|
74
74
|
StorageConfiguration["IBAN_SUPPORTED_COUNTRIES"] = "IBAN_SUPPORTED_COUNTRIES";
|
|
75
75
|
StorageConfiguration["IBAN_VALIDATION_CHANNELS"] = "IBAN_VALIDATION_CHANNELS";
|
|
76
|
+
StorageConfiguration["LOCKED_SALE_PROCESS_STATUSES"] = "LOCKED_SALE_PROCESS_STATUSES";
|
|
76
77
|
StorageConfiguration["PROCESS_PENDING_IBAN_VALIDATION_SALE_PROCESSES_JOB"] = "PROCESS_PENDING_IBAN_VALIDATION_SALE_PROCESSES_JOB";
|
|
77
78
|
StorageConfiguration["PRODUCTS_MANDATORY_DOCUMENTS"] = "PRODUCTS_MANDATORY_DOCUMENTS";
|
|
78
79
|
StorageConfiguration["PROMOTION_GROUPS"] = "PROMOTION_GROUPS";
|
|
@@ -148,6 +149,7 @@ var Templates;
|
|
|
148
149
|
Templates["RETAIL_BATCH_HUB_NOTIFICATION_TEMPLATE"] = "RETAIL_BATCH_HUB_NOTIFICATION_TEMPLATE";
|
|
149
150
|
Templates["WEB_ORDER_CLIENT_TEMPLATE"] = "WEB_ORDER_CLIENT_TEMPLATE";
|
|
150
151
|
Templates["WEB_PRE_ORDER_CLIENT_TEMPLATE"] = "WEB_PRE_ORDER_CLIENT_TEMPLATE";
|
|
152
|
+
Templates["CUSTOMER_PRODUCT_ESIM_CHANGE_TEMPLATE"] = "CUSTOMER_PRODUCT_ESIM_CHANGE_TEMPLATE";
|
|
151
153
|
})(Templates || (exports.Templates = Templates = {}));
|
|
152
154
|
var StorageDropdown;
|
|
153
155
|
(function (StorageDropdown) {
|
|
@@ -0,0 +1,4 @@
|
|
|
1
|
+
export declare const E_CUSTOMER_PRODUCT_NOT_MOBILE = "E_CUSTOMER_PRODUCT_NOT_MOBILE";
|
|
2
|
+
export declare const E_CUSTOMER_PRODUCT_MOBILE_MSISDN_NOT_AVAILABLE = "E_CUSTOMER_PRODUCT_MOBILE_MSISDN_NOT_AVAILABLE";
|
|
3
|
+
export declare const E_CUSTOMER_PRODUCT_MOBILE_SUBSCRIPTION_NOT_FOUND = "E_CUSTOMER_PRODUCT_MOBILE_SUBSCRIPTION_NOT_FOUND";
|
|
4
|
+
export declare const E_CUSTOMER_PRODUCT_MOBILE_SUBSCRIPTION_NOT_ACTIVE = "E_CUSTOMER_PRODUCT_MOBILE_SUBSCRIPTION_NOT_ACTIVE";
|
|
@@ -0,0 +1,7 @@
|
|
|
1
|
+
"use strict";
|
|
2
|
+
Object.defineProperty(exports, "__esModule", { value: true });
|
|
3
|
+
exports.E_CUSTOMER_PRODUCT_MOBILE_SUBSCRIPTION_NOT_ACTIVE = exports.E_CUSTOMER_PRODUCT_MOBILE_SUBSCRIPTION_NOT_FOUND = exports.E_CUSTOMER_PRODUCT_MOBILE_MSISDN_NOT_AVAILABLE = exports.E_CUSTOMER_PRODUCT_NOT_MOBILE = void 0;
|
|
4
|
+
exports.E_CUSTOMER_PRODUCT_NOT_MOBILE = 'E_CUSTOMER_PRODUCT_NOT_MOBILE';
|
|
5
|
+
exports.E_CUSTOMER_PRODUCT_MOBILE_MSISDN_NOT_AVAILABLE = 'E_CUSTOMER_PRODUCT_MOBILE_MSISDN_NOT_AVAILABLE';
|
|
6
|
+
exports.E_CUSTOMER_PRODUCT_MOBILE_SUBSCRIPTION_NOT_FOUND = 'E_CUSTOMER_PRODUCT_MOBILE_SUBSCRIPTION_NOT_FOUND';
|
|
7
|
+
exports.E_CUSTOMER_PRODUCT_MOBILE_SUBSCRIPTION_NOT_ACTIVE = 'E_CUSTOMER_PRODUCT_MOBILE_SUBSCRIPTION_NOT_ACTIVE';
|
|
@@ -1,9 +1,11 @@
|
|
|
1
1
|
export * from './billing.error.constants';
|
|
2
2
|
export * from './bundle-type-configuration.error.constants';
|
|
3
|
+
export * from './customer-mobile-product-sim-change.error.constants';
|
|
3
4
|
export * from './common.constants';
|
|
4
5
|
export * from './digitel.error.constants';
|
|
5
6
|
export * from './error.constants';
|
|
6
7
|
export * from './iban-validation.error.constants';
|
|
8
|
+
export * from './iosmvna.error.constants';
|
|
7
9
|
export * from './not-found.error.constants';
|
|
8
10
|
export * from './sale-process.error.constants';
|
|
9
11
|
export * from './updowngrade.error.constants';
|
|
@@ -16,10 +16,12 @@ var __exportStar = (this && this.__exportStar) || function(m, exports) {
|
|
|
16
16
|
Object.defineProperty(exports, "__esModule", { value: true });
|
|
17
17
|
__exportStar(require("./billing.error.constants"), exports);
|
|
18
18
|
__exportStar(require("./bundle-type-configuration.error.constants"), exports);
|
|
19
|
+
__exportStar(require("./customer-mobile-product-sim-change.error.constants"), exports);
|
|
19
20
|
__exportStar(require("./common.constants"), exports);
|
|
20
21
|
__exportStar(require("./digitel.error.constants"), exports);
|
|
21
22
|
__exportStar(require("./error.constants"), exports);
|
|
22
23
|
__exportStar(require("./iban-validation.error.constants"), exports);
|
|
24
|
+
__exportStar(require("./iosmvna.error.constants"), exports);
|
|
23
25
|
__exportStar(require("./not-found.error.constants"), exports);
|
|
24
26
|
__exportStar(require("./sale-process.error.constants"), exports);
|
|
25
27
|
__exportStar(require("./updowngrade.error.constants"), exports);
|
|
@@ -32,6 +32,7 @@ export declare const E_CUSTOMER_PRODUCT_FIBER_PRODUCT_NOT_FOUND = "E_CUSTOMER_PR
|
|
|
32
32
|
export declare const E_CUSTOMER_PRODUCT_MODIFICATION_NOT_FOUND = "E_CUSTOMER_PRODUCT_MODIFICATION_NOT_FOUND";
|
|
33
33
|
export declare const E_CUSTOMER_PRODUCT_MULTIPLE_TRANSITION_NOT_FOUND = "E_CUSTOMER_PRODUCT_MULTIPLE_TRANSITION_NOT_FOUND";
|
|
34
34
|
export declare const E_CUSTOMER_PRODUCT_TRANSITION_NOT_FOUND = "E_CUSTOMER_PRODUCT_TRANSITION_NOT_FOUND";
|
|
35
|
+
export declare const E_CUSTOMER_PRODUCT_SIM_CHANGE_NOT_FOUND = "E_CUSTOMER_PRODUCT_SIM_CHANGE_NOT_FOUND";
|
|
35
36
|
export declare const E_DIGITEL_DEFAULT_USER_NOT_FOUND = "E_DIGITEL_DEFAULT_USER_NOT_FOUND";
|
|
36
37
|
export declare const E_DIGITEL_SIGN_FLOW_CONFIG_NOT_FOUND = "E_DIGITEL_SIGN_FLOW_CONFIG_NOT_FOUND";
|
|
37
38
|
export declare const E_DROPDOWN_DATA_NOT_FOUND = "E_DROPDOWN_DATA_NOT_FOUND";
|
|
@@ -1,7 +1,7 @@
|
|
|
1
1
|
"use strict";
|
|
2
2
|
Object.defineProperty(exports, "__esModule", { value: true });
|
|
3
|
-
exports.
|
|
4
|
-
exports.E_ZIP_ADDRESSES_NOT_FOUND = exports.E_WORKGROUP_NOT_FOUND = exports.E_WORK_ORDER_NOT_FOUND = exports.E_USER_NOT_FOUND = exports.E_TEMPLATE_NOT_FOUND = void 0;
|
|
3
|
+
exports.E_SHOPPING_CART_NOT_FOUND = exports.E_SALE_PROCESS_NOT_FOUND = exports.E_PRODUCT_TRANSITION_GROUP_NOT_FOUND = exports.E_PRODUCT_TRANSITION_CONFIGURATION_NOT_FOUND = exports.E_PRODUCT_MOBILE_PROFILE_EQUIVALENCE_NOT_FOUND = exports.E_PRODUCT_CHARACTERISITC_EQUIVALENCE_NOT_FOUND = exports.E_NUMBER_FROM_POOL_NOT_FOUND = exports.E_NOT_FOUND = exports.E_LEAD_NOT_FOUND = exports.E_LEAD_FILE_NOT_FOUND = exports.E_JIRA_ISSUE_NOT_FOUND = exports.E_DROPDOWN_NOT_FOUND = exports.E_DROPDOWN_DATA_NOT_FOUND = exports.E_DIGITEL_SIGN_FLOW_CONFIG_NOT_FOUND = exports.E_DIGITEL_DEFAULT_USER_NOT_FOUND = exports.E_CUSTOMER_PRODUCT_SIM_CHANGE_NOT_FOUND = exports.E_CUSTOMER_PRODUCT_TRANSITION_NOT_FOUND = exports.E_CUSTOMER_PRODUCT_MULTIPLE_TRANSITION_NOT_FOUND = exports.E_CUSTOMER_PRODUCT_MODIFICATION_NOT_FOUND = exports.E_CUSTOMER_PRODUCT_FIBER_PRODUCT_NOT_FOUND = exports.E_CUSTOMER_PRODUCT_DEACTIVATION_NOT_FOUND = exports.E_CUSTOMER_PRODUCT_CHANGE_OF_ADDRESS_NOT_FOUND = exports.E_CUSTOMER_NOT_FOUND = exports.E_CUSTOMER_NEW_EXTRAS_NOT_FOUND = exports.E_CUSTOMER_HANDOVER_NOT_FOUND = exports.E_CUSTOMER_HANDOVER_FILE_NOT_FOUND = exports.E_CUSTOMER_DOCUMENT_NOT_FOUND = exports.E_CUSTOMER_BILLING_PAYMENT_METHODS_NOT_FOUND = exports.E_CUSTOMER_BILLING_DIRECT_DEBIT_PAYMENT_METHOD_NOT_FOUND = exports.E_CUSTOMER_BILLING_DIRECT_DEBIT_MANDATE_NOT_FOUND = exports.E_CUSTOMER_AGGRUPATION_NOT_FOUND = exports.E_CONFIGURATION_NOT_FOUND = exports.E_CHANGE_OF_ADDRESS_CHARACTERISTIC_NOT_FOUND = exports.E_BUNDLES_PRODUCTS_WITHOUT_VOIP_PRODUCT_NOT_FOUND = exports.E_BUNDLES_PRODUCTS_WITHOUT_VOIP_AND_MOBILE_PRODUCTS_NOT_FOUND = exports.E_BUNDLES_PRODUCTS_WITHOUT_MOBILE_PRODUCT_NOT_FOUND = exports.E_BUNDLES_PRODUCTS_WITH_VOIP_OR_WITHOUT_VOIP_PRODUCT_NOT_FOUND = exports.E_BUNDLES_PRODUCTS_WITH_ANY_VOIP_PRODUCT_NOT_FOUND = exports.E_BUNDLE_TYPE_CONFIGURATION_NOT_FOUND = exports.E_BUNDLE_PRODUCTS_NOT_FOUND = exports.E_BATCH_PROCESS_DEFINITION_NOT_FOUND = exports.E_AUTH_WORKGROUP_NOT_FOUND = exports.E_AUTH_NOT_FOUND = exports.E_AUTH_CLIENT_NOT_FOUND = exports.E_AREA_ADDRESSES_NOT_FOUND = exports.E_APPROVAL_NOT_FOUND = exports.E_APPROVAL_DATA_TO_APPROVE_NOT_FOUND = exports.E_APPROVAL_DATA_NOT_FOUND = exports.E_APARTMENT_NOT_FOUND = exports.E_ADDRESS_NOT_FOUND = void 0;
|
|
4
|
+
exports.E_ZIP_ADDRESSES_NOT_FOUND = exports.E_WORKGROUP_NOT_FOUND = exports.E_WORK_ORDER_NOT_FOUND = exports.E_USER_NOT_FOUND = exports.E_TEMPLATE_NOT_FOUND = exports.E_TASK_NOT_FOUND = void 0;
|
|
5
5
|
exports.E_ADDRESS_NOT_FOUND = 'E_ADDRESS_NOT_FOUND';
|
|
6
6
|
exports.E_APARTMENT_NOT_FOUND = 'E_APARTMENT_NOT_FOUND';
|
|
7
7
|
exports.E_APPROVAL_DATA_NOT_FOUND = 'E_APPROVAL_DATA_NOT_FOUND';
|
|
@@ -36,6 +36,7 @@ exports.E_CUSTOMER_PRODUCT_FIBER_PRODUCT_NOT_FOUND = 'E_CUSTOMER_PRODUCT_FIBER_P
|
|
|
36
36
|
exports.E_CUSTOMER_PRODUCT_MODIFICATION_NOT_FOUND = 'E_CUSTOMER_PRODUCT_MODIFICATION_NOT_FOUND';
|
|
37
37
|
exports.E_CUSTOMER_PRODUCT_MULTIPLE_TRANSITION_NOT_FOUND = 'E_CUSTOMER_PRODUCT_MULTIPLE_TRANSITION_NOT_FOUND';
|
|
38
38
|
exports.E_CUSTOMER_PRODUCT_TRANSITION_NOT_FOUND = 'E_CUSTOMER_PRODUCT_TRANSITION_NOT_FOUND';
|
|
39
|
+
exports.E_CUSTOMER_PRODUCT_SIM_CHANGE_NOT_FOUND = 'E_CUSTOMER_PRODUCT_SIM_CHANGE_NOT_FOUND';
|
|
39
40
|
exports.E_DIGITEL_DEFAULT_USER_NOT_FOUND = 'E_DIGITEL_DEFAULT_USER_NOT_FOUND';
|
|
40
41
|
exports.E_DIGITEL_SIGN_FLOW_CONFIG_NOT_FOUND = 'E_DIGITEL_SIGN_FLOW_CONFIG_NOT_FOUND';
|
|
41
42
|
exports.E_DROPDOWN_DATA_NOT_FOUND = 'E_DROPDOWN_DATA_NOT_FOUND';
|
|
@@ -23,6 +23,9 @@ export declare class AuditFieldsWithValueDto extends AuditFieldsDto {
|
|
|
23
23
|
export declare class ProcessAuditFieldsDto extends AuditFieldsDto {
|
|
24
24
|
inChannel: string;
|
|
25
25
|
}
|
|
26
|
+
declare const CreateProcessAuditFieldsDto_base: import("@nestjs/common").Type<Pick<ProcessAuditFieldsDto, "by" | "inChannel">>;
|
|
27
|
+
export declare class CreateProcessAuditFieldsDto extends CreateProcessAuditFieldsDto_base {
|
|
28
|
+
}
|
|
26
29
|
export declare class CustomerProductActionProcessProductDto {
|
|
27
30
|
id: string;
|
|
28
31
|
name: 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.CreditBureauValidationProcessDto = exports.CreditBureauValidationCacheDto = exports.CreditBureauValidationIdentificationDto = exports.ArsDocumentDto = exports.GenericFileDto = exports.CustomerProductTransitionProcessTransitionDto = exports.UpdateCustomerProcessOrderDto = exports.CustomerProcessOrderDto = exports.CustomerProcessStepRelatedProductDto = exports.CustomerProductActionProcessProductDto = exports.ProcessAuditFieldsDto = exports.AuditFieldsWithValueDto = exports.AuditFieldsDtoBuilder = exports.CreateAuditFieldsDto = exports.AuditFieldsDto = exports.AuditDateDto = void 0;
|
|
12
|
+
exports.CreditBureauValidationProcessDto = exports.CreditBureauValidationCacheDto = exports.CreditBureauValidationIdentificationDto = exports.ArsDocumentDto = exports.GenericFileDto = exports.CustomerProductTransitionProcessTransitionDto = exports.UpdateCustomerProcessOrderDto = exports.CustomerProcessOrderDto = exports.CustomerProcessStepRelatedProductDto = exports.CustomerProductActionProcessProductDto = exports.CreateProcessAuditFieldsDto = exports.ProcessAuditFieldsDto = exports.AuditFieldsWithValueDto = exports.AuditFieldsDtoBuilder = exports.CreateAuditFieldsDto = exports.AuditFieldsDto = exports.AuditDateDto = void 0;
|
|
13
13
|
const openapi = require("@nestjs/swagger");
|
|
14
14
|
const helpers_1 = require("../../common/helpers/helpers");
|
|
15
15
|
const faker_1 = require("@faker-js/faker");
|
|
@@ -58,6 +58,12 @@ class ProcessAuditFieldsDto extends AuditFieldsDto {
|
|
|
58
58
|
}
|
|
59
59
|
}
|
|
60
60
|
exports.ProcessAuditFieldsDto = ProcessAuditFieldsDto;
|
|
61
|
+
class CreateProcessAuditFieldsDto extends (0, swagger_1.PickType)(ProcessAuditFieldsDto, ['by', 'inChannel']) {
|
|
62
|
+
static _OPENAPI_METADATA_FACTORY() {
|
|
63
|
+
return {};
|
|
64
|
+
}
|
|
65
|
+
}
|
|
66
|
+
exports.CreateProcessAuditFieldsDto = CreateProcessAuditFieldsDto;
|
|
61
67
|
class CustomerProductActionProcessProductDto {
|
|
62
68
|
static _OPENAPI_METADATA_FACTORY() {
|
|
63
69
|
return { id: { required: true, type: () => String }, name: { required: true, type: () => String }, displayName: { required: true, type: () => String } };
|
|
@@ -0,0 +1,12 @@
|
|
|
1
|
+
"use strict";
|
|
2
|
+
Object.defineProperty(exports, "__esModule", { value: true });
|
|
3
|
+
exports.CustomerProductSimChangeStatusType = void 0;
|
|
4
|
+
var CustomerProductSimChangeStatusType;
|
|
5
|
+
(function (CustomerProductSimChangeStatusType) {
|
|
6
|
+
CustomerProductSimChangeStatusType["FRESH"] = "fresh";
|
|
7
|
+
CustomerProductSimChangeStatusType["ORDER_CREATED"] = "order-created";
|
|
8
|
+
CustomerProductSimChangeStatusType["ORDER_APPLIED"] = "order-applied";
|
|
9
|
+
CustomerProductSimChangeStatusType["SIM_CREATED"] = "sim-created";
|
|
10
|
+
CustomerProductSimChangeStatusType["SIM_CODE_CREATED"] = "sim-code-created";
|
|
11
|
+
CustomerProductSimChangeStatusType["ERROR"] = "error";
|
|
12
|
+
})(CustomerProductSimChangeStatusType || (exports.CustomerProductSimChangeStatusType = CustomerProductSimChangeStatusType = {}));
|
|
@@ -0,0 +1,30 @@
|
|
|
1
|
+
import { AuditDateDto, CreateProcessAuditFieldsDto, CustomerProductActionProcessProductDto, ProcessAuditFieldsDto } from '../common';
|
|
2
|
+
import { CustomerProductSimChangeStatusType } from './customer-product-sim-change.constants';
|
|
3
|
+
export declare class CustomerProductSimChangeDto {
|
|
4
|
+
id: number;
|
|
5
|
+
customerId: string;
|
|
6
|
+
product: CustomerProductActionProcessProductDto;
|
|
7
|
+
status: CustomerProductSimChangeStatusType;
|
|
8
|
+
error?: any;
|
|
9
|
+
notificationEmail?: string;
|
|
10
|
+
notificationMobilePhone?: string;
|
|
11
|
+
subscriptionId: string;
|
|
12
|
+
msisdn: string;
|
|
13
|
+
orderId?: string;
|
|
14
|
+
simId?: string;
|
|
15
|
+
simCode?: string;
|
|
16
|
+
created: ProcessAuditFieldsDto;
|
|
17
|
+
updated: AuditDateDto;
|
|
18
|
+
}
|
|
19
|
+
export declare class SendCustomerProductSimChangeDto {
|
|
20
|
+
notificationEmail: string;
|
|
21
|
+
notificationMobilePhone: string;
|
|
22
|
+
}
|
|
23
|
+
declare const CreateCustomerProductSimChangeDto_base: import("@nestjs/common").Type<Pick<CustomerProductSimChangeDto, "product" | "customerId" | "status" | "msisdn" | "notificationEmail" | "notificationMobilePhone" | "subscriptionId">>;
|
|
24
|
+
export declare class CreateCustomerProductSimChangeDto extends CreateCustomerProductSimChangeDto_base {
|
|
25
|
+
created: CreateProcessAuditFieldsDto;
|
|
26
|
+
}
|
|
27
|
+
declare const PatchCustomerProductSimChangeDto_base: import("@nestjs/common").Type<Pick<CustomerProductSimChangeDto, "orderId" | "status" | "error" | "notificationEmail" | "notificationMobilePhone" | "simId" | "simCode">>;
|
|
28
|
+
export declare class PatchCustomerProductSimChangeDto extends PatchCustomerProductSimChangeDto_base {
|
|
29
|
+
}
|
|
30
|
+
export {};
|
|
@@ -0,0 +1,67 @@
|
|
|
1
|
+
"use strict";
|
|
2
|
+
var __decorate = (this && this.__decorate) || function (decorators, target, key, desc) {
|
|
3
|
+
var c = arguments.length, r = c < 3 ? target : desc === null ? desc = Object.getOwnPropertyDescriptor(target, key) : desc, d;
|
|
4
|
+
if (typeof Reflect === "object" && typeof Reflect.decorate === "function") r = Reflect.decorate(decorators, target, key, desc);
|
|
5
|
+
else for (var i = decorators.length - 1; i >= 0; i--) if (d = decorators[i]) r = (c < 3 ? d(r) : c > 3 ? d(target, key, r) : d(target, key)) || r;
|
|
6
|
+
return c > 3 && r && Object.defineProperty(target, key, r), r;
|
|
7
|
+
};
|
|
8
|
+
var __metadata = (this && this.__metadata) || function (k, v) {
|
|
9
|
+
if (typeof Reflect === "object" && typeof Reflect.metadata === "function") return Reflect.metadata(k, v);
|
|
10
|
+
};
|
|
11
|
+
Object.defineProperty(exports, "__esModule", { value: true });
|
|
12
|
+
exports.PatchCustomerProductSimChangeDto = exports.CreateCustomerProductSimChangeDto = exports.SendCustomerProductSimChangeDto = exports.CustomerProductSimChangeDto = void 0;
|
|
13
|
+
const openapi = require("@nestjs/swagger");
|
|
14
|
+
const swagger_1 = require("@nestjs/swagger");
|
|
15
|
+
const class_validator_1 = require("class-validator");
|
|
16
|
+
const _validators_1 = require("../../validators/index");
|
|
17
|
+
class CustomerProductSimChangeDto {
|
|
18
|
+
static _OPENAPI_METADATA_FACTORY() {
|
|
19
|
+
return { id: { required: true, type: () => Number }, customerId: { required: true, type: () => String }, product: { required: true, type: () => require("../common/common.entity").CustomerProductActionProcessProductDto }, status: { required: true, enum: require("./customer-product-sim-change.constants").CustomerProductSimChangeStatusType }, error: { required: false, type: () => Object }, notificationEmail: { required: false, type: () => String }, notificationMobilePhone: { required: false, type: () => String }, subscriptionId: { required: true, type: () => String }, msisdn: { required: true, type: () => String }, orderId: { required: false, type: () => String }, simId: { required: false, type: () => String }, simCode: { required: false, type: () => String }, created: { required: true, type: () => require("../common/common.entity").ProcessAuditFieldsDto }, updated: { required: true, type: () => require("../common/common.entity").AuditDateDto } };
|
|
20
|
+
}
|
|
21
|
+
}
|
|
22
|
+
exports.CustomerProductSimChangeDto = CustomerProductSimChangeDto;
|
|
23
|
+
class SendCustomerProductSimChangeDto {
|
|
24
|
+
static _OPENAPI_METADATA_FACTORY() {
|
|
25
|
+
return { notificationEmail: { required: true, type: () => String, format: "email" }, notificationMobilePhone: { required: true, type: () => String } };
|
|
26
|
+
}
|
|
27
|
+
}
|
|
28
|
+
exports.SendCustomerProductSimChangeDto = SendCustomerProductSimChangeDto;
|
|
29
|
+
__decorate([
|
|
30
|
+
(0, class_validator_1.IsEmail)(),
|
|
31
|
+
(0, class_validator_1.IsNotEmpty)(),
|
|
32
|
+
__metadata("design:type", String)
|
|
33
|
+
], SendCustomerProductSimChangeDto.prototype, "notificationEmail", void 0);
|
|
34
|
+
__decorate([
|
|
35
|
+
(0, class_validator_1.IsString)(),
|
|
36
|
+
(0, class_validator_1.IsNotEmpty)(),
|
|
37
|
+
(0, _validators_1.IsNotBlank)(),
|
|
38
|
+
__metadata("design:type", String)
|
|
39
|
+
], SendCustomerProductSimChangeDto.prototype, "notificationMobilePhone", void 0);
|
|
40
|
+
class CreateCustomerProductSimChangeDto extends (0, swagger_1.PickType)(CustomerProductSimChangeDto, [
|
|
41
|
+
'customerId',
|
|
42
|
+
'product',
|
|
43
|
+
'status',
|
|
44
|
+
'notificationEmail',
|
|
45
|
+
'notificationMobilePhone',
|
|
46
|
+
'subscriptionId',
|
|
47
|
+
'msisdn'
|
|
48
|
+
]) {
|
|
49
|
+
static _OPENAPI_METADATA_FACTORY() {
|
|
50
|
+
return { created: { required: true, type: () => require("../common/common.entity").CreateProcessAuditFieldsDto } };
|
|
51
|
+
}
|
|
52
|
+
}
|
|
53
|
+
exports.CreateCustomerProductSimChangeDto = CreateCustomerProductSimChangeDto;
|
|
54
|
+
class PatchCustomerProductSimChangeDto extends (0, swagger_1.PickType)(CustomerProductSimChangeDto, [
|
|
55
|
+
'status',
|
|
56
|
+
'error',
|
|
57
|
+
'notificationEmail',
|
|
58
|
+
'notificationMobilePhone',
|
|
59
|
+
'orderId',
|
|
60
|
+
'simId',
|
|
61
|
+
'simCode'
|
|
62
|
+
]) {
|
|
63
|
+
static _OPENAPI_METADATA_FACTORY() {
|
|
64
|
+
return {};
|
|
65
|
+
}
|
|
66
|
+
}
|
|
67
|
+
exports.PatchCustomerProductSimChangeDto = PatchCustomerProductSimChangeDto;
|
|
@@ -0,0 +1,18 @@
|
|
|
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("./customer-product-sim-change.constants"), exports);
|
|
18
|
+
__exportStar(require("./customer-product-sim-change.entity"), exports);
|
|
@@ -0,0 +1,32 @@
|
|
|
1
|
+
import { CustomerBundleProductDto } from '../customer/customer-product.entity';
|
|
2
|
+
export declare class CustomerSumaMobileProductSubscriptionBalanceDetailsDto {
|
|
3
|
+
amount: string;
|
|
4
|
+
expiresAt: Date;
|
|
5
|
+
}
|
|
6
|
+
export declare class CustomerSumaMobileProductSubscriptionDetailsDto {
|
|
7
|
+
id: string;
|
|
8
|
+
name: string;
|
|
9
|
+
type: string;
|
|
10
|
+
msisdn: string;
|
|
11
|
+
status: string;
|
|
12
|
+
networkStatus: string;
|
|
13
|
+
portabilityStatus: string;
|
|
14
|
+
createdAt: Date;
|
|
15
|
+
activatedAt: Date;
|
|
16
|
+
balance: CustomerSumaMobileProductSubscriptionBalanceDetailsDto;
|
|
17
|
+
}
|
|
18
|
+
export declare class CustomerSumaMobileProductSimDetailsDto {
|
|
19
|
+
id: string;
|
|
20
|
+
status: string;
|
|
21
|
+
pin: string;
|
|
22
|
+
pin2: string;
|
|
23
|
+
puk: string;
|
|
24
|
+
puk2: string;
|
|
25
|
+
}
|
|
26
|
+
declare const CustomerSumaMobileProductDetailsDto_base: import("@nestjs/common").Type<Pick<CustomerBundleProductDto, "name" | "id" | "type" | "displayName" | "displayDescription">>;
|
|
27
|
+
export declare class CustomerSumaMobileProductDetailsDto extends CustomerSumaMobileProductDetailsDto_base {
|
|
28
|
+
customerId: string;
|
|
29
|
+
subscription: CustomerSumaMobileProductSubscriptionDetailsDto;
|
|
30
|
+
sim: CustomerSumaMobileProductSimDetailsDto;
|
|
31
|
+
}
|
|
32
|
+
export {};
|
|
@@ -0,0 +1,36 @@
|
|
|
1
|
+
"use strict";
|
|
2
|
+
Object.defineProperty(exports, "__esModule", { value: true });
|
|
3
|
+
exports.CustomerSumaMobileProductDetailsDto = exports.CustomerSumaMobileProductSimDetailsDto = exports.CustomerSumaMobileProductSubscriptionDetailsDto = exports.CustomerSumaMobileProductSubscriptionBalanceDetailsDto = void 0;
|
|
4
|
+
const openapi = require("@nestjs/swagger");
|
|
5
|
+
const swagger_1 = require("@nestjs/swagger");
|
|
6
|
+
const customer_product_entity_1 = require("../customer/customer-product.entity");
|
|
7
|
+
class CustomerSumaMobileProductSubscriptionBalanceDetailsDto {
|
|
8
|
+
static _OPENAPI_METADATA_FACTORY() {
|
|
9
|
+
return { amount: { required: true, type: () => String }, expiresAt: { required: true, type: () => Date } };
|
|
10
|
+
}
|
|
11
|
+
}
|
|
12
|
+
exports.CustomerSumaMobileProductSubscriptionBalanceDetailsDto = CustomerSumaMobileProductSubscriptionBalanceDetailsDto;
|
|
13
|
+
class CustomerSumaMobileProductSubscriptionDetailsDto {
|
|
14
|
+
static _OPENAPI_METADATA_FACTORY() {
|
|
15
|
+
return { id: { required: true, type: () => String }, name: { required: true, type: () => String }, type: { required: true, type: () => String }, msisdn: { required: true, type: () => String }, status: { required: true, type: () => String }, networkStatus: { required: true, type: () => String }, portabilityStatus: { required: true, type: () => String }, createdAt: { required: true, type: () => Date }, activatedAt: { required: true, type: () => Date }, balance: { required: true, type: () => require("./customer-suma-mobile-product.entity").CustomerSumaMobileProductSubscriptionBalanceDetailsDto } };
|
|
16
|
+
}
|
|
17
|
+
}
|
|
18
|
+
exports.CustomerSumaMobileProductSubscriptionDetailsDto = CustomerSumaMobileProductSubscriptionDetailsDto;
|
|
19
|
+
class CustomerSumaMobileProductSimDetailsDto {
|
|
20
|
+
static _OPENAPI_METADATA_FACTORY() {
|
|
21
|
+
return { id: { required: true, type: () => String }, status: { required: true, type: () => String }, pin: { required: true, type: () => String }, pin2: { required: true, type: () => String }, puk: { required: true, type: () => String }, puk2: { required: true, type: () => String } };
|
|
22
|
+
}
|
|
23
|
+
}
|
|
24
|
+
exports.CustomerSumaMobileProductSimDetailsDto = CustomerSumaMobileProductSimDetailsDto;
|
|
25
|
+
class CustomerSumaMobileProductDetailsDto extends (0, swagger_1.PickType)(customer_product_entity_1.CustomerBundleProductDto, [
|
|
26
|
+
'id',
|
|
27
|
+
'name',
|
|
28
|
+
'type',
|
|
29
|
+
'displayName',
|
|
30
|
+
'displayDescription'
|
|
31
|
+
]) {
|
|
32
|
+
static _OPENAPI_METADATA_FACTORY() {
|
|
33
|
+
return { customerId: { required: true, type: () => String }, subscription: { required: true, type: () => require("./customer-suma-mobile-product.entity").CustomerSumaMobileProductSubscriptionDetailsDto }, sim: { required: true, type: () => require("./customer-suma-mobile-product.entity").CustomerSumaMobileProductSimDetailsDto } };
|
|
34
|
+
}
|
|
35
|
+
}
|
|
36
|
+
exports.CustomerSumaMobileProductDetailsDto = CustomerSumaMobileProductDetailsDto;
|
|
@@ -0,0 +1 @@
|
|
|
1
|
+
export * from './customer-suma-mobile-product.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("./customer-suma-mobile-product.entity"), exports);
|