adamo-types 2.0.111-uat → 2.0.112-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.
Files changed (41) hide show
  1. package/dist/bss/product/product.entity.d.ts +5 -5
  2. package/dist/bss/task/task.entity.d.ts +1 -1
  3. package/dist/common/constants/not-found.error.constants.d.ts +22 -20
  4. package/dist/common/constants/not-found.error.constants.js +23 -21
  5. package/dist/database/ars/dependency.entity.d.ts +2 -8
  6. package/dist/database/ars/dependency.entity.js +17 -24
  7. package/dist/database/ars/dropdown.entity.d.ts +13 -8
  8. package/dist/database/ars/dropdown.entity.js +49 -46
  9. package/dist/sys03/approval/approval.entity.d.ts +4 -4
  10. package/dist/sys03/bureau-validation/bureau-validation.entity.d.ts +1 -1
  11. package/dist/sys03/common/common.entity.d.ts +4 -0
  12. package/dist/sys03/common/common.entity.js +8 -1
  13. package/dist/sys03/customer/customer-account-note.entity.d.ts +1 -1
  14. package/dist/sys03/customer/customer-account-summary.entity.d.ts +1 -0
  15. package/dist/sys03/customer/customer-account-summary.entity.js +1 -1
  16. package/dist/sys03/customer/customer.entity.d.ts +3 -15
  17. package/dist/sys03/customer/customer.entity.js +1 -7
  18. package/dist/sys03/customer-handover-process/customer-handover-process-additional-contact.entity.d.ts +1 -1
  19. package/dist/sys03/customer-handover-process/customer-handover-process-file.entity.d.ts +2 -2
  20. package/dist/sys03/customer-handover-process/customer-handover-process.entity.d.ts +4 -4
  21. package/dist/sys03/customer-product-change-of-address-process/customer-product-change-of-address-process.entity.d.ts +1 -1
  22. package/dist/sys03/sale-process/sale-process.file.entity.d.ts +1 -1
  23. package/dist/sys03/storage/index.d.ts +1 -1
  24. package/dist/sys03/storage/index.js +1 -1
  25. package/dist/sys03/storage/storage.constants.d.ts +6 -0
  26. package/dist/sys03/storage/storage.constants.js +10 -0
  27. package/dist/sys03/storage/storage.entity.d.ts +68 -0
  28. package/dist/sys03/storage/storage.entity.js +144 -1
  29. package/dist/sys03/updowngrade/bundle-type-configuration.entity.d.ts +1 -1
  30. package/dist/sys03/updowngrade/product-transition-group.entity.d.ts +4 -4
  31. package/dist/sys03/user/user.entity.d.ts +1 -1
  32. package/dist/tsconfig.build.tsbuildinfo +1 -1
  33. package/package.json +1 -1
  34. package/dist/admin/storage/dropdown/req.entity.d.ts +0 -19
  35. package/dist/admin/storage/dropdown/req.entity.js +0 -93
  36. package/dist/admin/storage/index.d.ts +0 -1
  37. package/dist/admin/storage/index.js +0 -17
  38. package/dist/sys03/storage/res/index.d.ts +0 -1
  39. package/dist/sys03/storage/res/index.js +0 -17
  40. package/dist/sys03/storage/res/onther.entity.d.ts +0 -14
  41. package/dist/sys03/storage/res/onther.entity.js +0 -16
@@ -1,7 +1,7 @@
1
1
  import { BpOnceOnlyCharge, BpRecurringCharge, BpTerminationCharge } from '../bearingpoint/charge-catalog';
2
2
  import { BssChargeType } from '../constants';
3
3
  import { ShoppingCartProductType } from '../../common/constants';
4
- import { DependencyResDto } from '../../sys03/storage';
4
+ import { ProductServiceDependencyDto } from '../../sys03/storage';
5
5
  import { ProductInventoryCharacteristicStateType, ProductInventoryCompletenessStateType, ProductInventoryRelationshipType, ProductInventoryStateType } from './product.constants';
6
6
  import { ShoppingCartParametersDto } from '../bearingpoint/shopping-cart';
7
7
  import { Builder } from '../../common/helpers/helpers';
@@ -18,10 +18,10 @@ export interface DependencyGroup {
18
18
  notSelected: DependencySubGroup;
19
19
  }
20
20
  export interface DependencySubGroup {
21
- items: DependencyResDto[];
22
- requires: DependencyResDto[];
23
- excludes: DependencyResDto[];
24
- includes: DependencyResDto[];
21
+ items: ProductServiceDependencyDto[];
22
+ requires: ProductServiceDependencyDto[];
23
+ excludes: ProductServiceDependencyDto[];
24
+ includes: ProductServiceDependencyDto[];
25
25
  requiresName: string[];
26
26
  excludesName: string[];
27
27
  includesName: string[];
@@ -20,7 +20,7 @@ export declare class TaskDto extends BaseTaskDto {
20
20
  contact: string;
21
21
  otrsQueueName: string;
22
22
  }
23
- declare const CreateTaskDto_base: import("@nestjs/common").Type<Pick<TaskDto, "description" | "customerAccountId" | "type" | "createdBy" | "dueDate" | "category" | "contact" | "subType" | "tags" | "definition" | "assignedTo">>;
23
+ declare const CreateTaskDto_base: import("@nestjs/common").Type<Pick<TaskDto, "customerAccountId" | "type" | "description" | "createdBy" | "dueDate" | "category" | "contact" | "subType" | "tags" | "definition" | "assignedTo">>;
24
24
  export declare class CreateTaskDto extends CreateTaskDto_base {
25
25
  relatedProductOrders?: string[];
26
26
  }
@@ -7,37 +7,39 @@ export declare const E_AREA_ADDRESSES_NOT_FOUND = "E_AREA_ADDRESSES_NOT_FOUND";
7
7
  export declare const E_AUTH_NOT_FOUND = "E_AUTH_NOT_FOUND";
8
8
  export declare const E_BATCH_PROCESS_DEFINITION_NOT_FOUND = "E_BATCH_PROCESS_DEFINITION_NOT_FOUND";
9
9
  export declare const E_BUNDLE_PRODUCTS_NOT_FOUND = "E_BUNDLE_PRODUCTS_NOT_FOUND";
10
- export declare const E_CUSTOMER_NOT_FOUND = "E_CUSTOMER_NOT_FOUND";
10
+ export declare const E_BUNDLE_TYPE_CONFIGURATION_NOT_FOUND = "E_BUNDLE_TYPE_CONFIGURATION_NOT_FOUND";
11
+ export declare const E_BUNDLES_PRODUCTS_WITHOUT_VOIP_AND_MOBILE_PRODUCTS_NOT_FOUND = "E_BUNDLES_PRODUCTS_WITHOUT_VOIP_AND_MOBILE_PRODUCTS_NOT_FOUND";
12
+ export declare const E_CHANGE_OF_ADDRESS_CHARACTERISTIC_NOT_FOUND = "E_CHANGE_OF_ADDRESS_CHARACTERISTIC_NOT_FOUND";
13
+ export declare const E_CONFIGURATION_NOT_FOUND = "E_CONFIGURATION_NOT_FOUND";
11
14
  export declare const E_CUSTOMER_AGGRUPATION_NOT_FOUND = "E_CUSTOMER_AGGRUPATION_NOT_FOUND";
15
+ export declare const E_CUSTOMER_BILLING_DIRECT_DEBIT_MANDATE_NOT_FOUND = "E_CUSTOMER_BILLING_DIRECT_DEBIT_MANDATE_NOT_FOUND";
16
+ export declare const E_CUSTOMER_BILLING_DIRECT_DEBIT_PAYMENT_METHOD_NOT_FOUND = "E_CUSTOMER_BILLING_DIRECT_DEBIT_PAYMENT_METHOD_NOT_FOUND";
17
+ export declare const E_CUSTOMER_BILLING_PAYMENT_METHODS_NOT_FOUND = "E_CUSTOMER_BILLING_PAYMENT_METHODS_NOT_FOUND";
18
+ export declare const E_CUSTOMER_HANDOVER_FILE_NOT_FOUND = "E_CUSTOMER_HANDOVER_FILE_NOT_FOUND";
19
+ export declare const E_CUSTOMER_HANDOVER_NOT_FOUND = "E_CUSTOMER_HANDOVER_NOT_FOUND";
12
20
  export declare const E_CUSTOMER_NEW_EXTRAS_NOT_FOUND = "E_CUSTOMER_NEW_EXTRAS_NOT_FOUND";
21
+ export declare const E_CUSTOMER_NOT_FOUND = "E_CUSTOMER_NOT_FOUND";
22
+ export declare const E_CUSTOMER_PRODUCT_CHANGE_OF_ADDRESS_NOT_FOUND = "E_CUSTOMER_PRODUCT_CHANGE_OF_ADDRESS_NOT_FOUND";
13
23
  export declare const E_CUSTOMER_PRODUCT_DEACTIVATION_NOT_FOUND = "E_CUSTOMER_PRODUCT_DEACTIVATION_NOT_FOUND";
24
+ export declare const E_CUSTOMER_PRODUCT_FIBER_PRODUCT_NOT_FOUND = "E_CUSTOMER_PRODUCT_FIBER_PRODUCT_NOT_FOUND";
14
25
  export declare const E_CUSTOMER_PRODUCT_MODIFICATION_NOT_FOUND = "E_CUSTOMER_PRODUCT_MODIFICATION_NOT_FOUND";
15
- export declare const E_CUSTOMER_PRODUCT_TRANSITION_NOT_FOUND = "E_CUSTOMER_PRODUCT_TRANSITION_NOT_FOUND";
16
26
  export declare const E_CUSTOMER_PRODUCT_MULTIPLE_TRANSITION_NOT_FOUND = "E_CUSTOMER_PRODUCT_MULTIPLE_TRANSITION_NOT_FOUND";
17
- export declare const E_CUSTOMER_PRODUCT_CHANGE_OF_ADDRESS_NOT_FOUND = "E_CUSTOMER_PRODUCT_CHANGE_OF_ADDRESS_NOT_FOUND";
18
- export declare const E_CUSTOMER_PRODUCT_FIBER_PRODUCT_NOT_FOUND = "E_CUSTOMER_PRODUCT_FIBER_PRODUCT_NOT_FOUND";
19
- export declare const E_BUNDLES_PRODUCTS_WITHOUT_VOIP_AND_MOBILE_PRODUCTS_NOT_FOUND = "E_BUNDLES_PRODUCTS_WITHOUT_VOIP_AND_MOBILE_PRODUCTS_NOT_FOUND";
20
- export declare const E_CHANGE_OF_ADDRESS_CHARACTERISTIC_NOT_FOUND = "E_CHANGE_OF_ADDRESS_CHARACTERISTIC_NOT_FOUND";
21
- export declare const E_CONFIGURATION_NOT_FOUND = "E_CONFIGURATION_NOT_FOUND";
27
+ export declare const E_CUSTOMER_PRODUCT_TRANSITION_NOT_FOUND = "E_CUSTOMER_PRODUCT_TRANSITION_NOT_FOUND";
28
+ export declare const E_DROPDOWN_DATA_NOT_FOUND = "E_DROPDOWN_DATA_NOT_FOUND";
29
+ export declare const E_DROPDOWN_NOT_FOUND = "E_DROPDOWN_NOT_FOUND";
22
30
  export declare const E_LEAD_FILE_NOT_FOUND = "E_LEAD_FILE_NOT_FOUND";
23
31
  export declare const E_LEAD_NOT_FOUND = "E_LEAD_NOT_FOUND";
24
- export declare const E_SALE_PROCESS_NOT_FOUND = "E_SALE_PROCESS_NOT_FOUND";
25
32
  export declare const E_NOT_FOUND = "E_NOT_FOUND";
26
- export declare const E_SHOPPING_CART_NOT_FOUND = "E_SHOPPING_CART_NOT_FOUND";
33
+ export declare const E_NUMBER_FROM_POOL_NOT_FOUND = "E_NUMBER_FROM_POOL_NOT_FOUND";
27
34
  export declare const E_PRODUCT_CHARACTERISITC_EQUIVALENCE_NOT_FOUND = "E_PRODUCT_CHARACTERISITC_EQUIVALENCE_NOT_FOUND";
28
35
  export declare const E_PRODUCT_MOBILE_PROFILE_EQUIVALENCE_NOT_FOUND = "E_PRODUCT_MOBILE_PROFILE_EQUIVALENCE_NOT_FOUND";
29
- export declare const E_PRODUCT_TRANSITION_GROUP_NOT_FOUND = "E_PRODUCT_TRANSITION_GROUP_NOT_FOUND";
30
36
  export declare const E_PRODUCT_TRANSITION_CONFIGURATION_NOT_FOUND = "E_PRODUCT_TRANSITION_CONFIGURATION_NOT_FOUND";
31
- export declare const E_USER_NOT_FOUND = "E_USER_NOT_FOUND";
32
- export declare const E_WORKGROUP_NOT_FOUND = "E_WORKGROUP_NOT_FOUND";
33
- export declare const E_ZIP_ADDRESSES_NOT_FOUND = "E_ZIP_ADDRESSES_NOT_FOUND";
34
- export declare const E_CUSTOMER_HANDOVER_NOT_FOUND = "E_CUSTOMER_HANDOVER_NOT_FOUND";
35
- export declare const E_CUSTOMER_HANDOVER_FILE_NOT_FOUND = "E_CUSTOMER_HANDOVER_FILE_NOT_FOUND";
36
- export declare const E_NUMBER_FROM_POOL_NOT_FOUND = "E_NUMBER_FROM_POOL_NOT_FOUND";
37
- export declare const E_BUNDLE_TYPE_CONFIGURATION_NOT_FOUND = "E_BUNDLE_TYPE_CONFIGURATION_NOT_FOUND";
38
- export declare const E_CUSTOMER_BILLING_PAYMENT_METHODS_NOT_FOUND = "E_CUSTOMER_BILLING_PAYMENT_METHODS_NOT_FOUND";
39
- export declare const E_CUSTOMER_BILLING_DIRECT_DEBIT_PAYMENT_METHOD_NOT_FOUND = "E_CUSTOMER_BILLING_DIRECT_DEBIT_PAYMENT_METHOD_NOT_FOUND";
40
- export declare const E_CUSTOMER_BILLING_DIRECT_DEBIT_MANDATE_NOT_FOUND = "E_CUSTOMER_BILLING_DIRECT_DEBIT_MANDATE_NOT_FOUND";
37
+ export declare const E_PRODUCT_TRANSITION_GROUP_NOT_FOUND = "E_PRODUCT_TRANSITION_GROUP_NOT_FOUND";
38
+ export declare const E_SALE_PROCESS_NOT_FOUND = "E_SALE_PROCESS_NOT_FOUND";
39
+ export declare const E_SHOPPING_CART_NOT_FOUND = "E_SHOPPING_CART_NOT_FOUND";
41
40
  export declare const E_TASK_NOT_FOUND = "E_TASK_NOT_FOUND";
42
41
  export declare const E_TEMPLATE_NOT_FOUND = "E_TEMPLATE_NOT_FOUND";
42
+ export declare const E_USER_NOT_FOUND = "E_USER_NOT_FOUND";
43
43
  export declare const E_WORK_ORDER_NOT_FOUND = "E_WORK_ORDER_NOT_FOUND";
44
+ export declare const E_WORKGROUP_NOT_FOUND = "E_WORKGROUP_NOT_FOUND";
45
+ export declare const E_ZIP_ADDRESSES_NOT_FOUND = "E_ZIP_ADDRESSES_NOT_FOUND";
@@ -1,6 +1,6 @@
1
1
  "use strict";
2
2
  Object.defineProperty(exports, "__esModule", { value: true });
3
- exports.E_WORK_ORDER_NOT_FOUND = exports.E_TEMPLATE_NOT_FOUND = exports.E_TASK_NOT_FOUND = exports.E_CUSTOMER_BILLING_DIRECT_DEBIT_MANDATE_NOT_FOUND = exports.E_CUSTOMER_BILLING_DIRECT_DEBIT_PAYMENT_METHOD_NOT_FOUND = exports.E_CUSTOMER_BILLING_PAYMENT_METHODS_NOT_FOUND = exports.E_BUNDLE_TYPE_CONFIGURATION_NOT_FOUND = exports.E_NUMBER_FROM_POOL_NOT_FOUND = exports.E_CUSTOMER_HANDOVER_FILE_NOT_FOUND = exports.E_CUSTOMER_HANDOVER_NOT_FOUND = exports.E_ZIP_ADDRESSES_NOT_FOUND = exports.E_WORKGROUP_NOT_FOUND = exports.E_USER_NOT_FOUND = exports.E_PRODUCT_TRANSITION_CONFIGURATION_NOT_FOUND = exports.E_PRODUCT_TRANSITION_GROUP_NOT_FOUND = exports.E_PRODUCT_MOBILE_PROFILE_EQUIVALENCE_NOT_FOUND = exports.E_PRODUCT_CHARACTERISITC_EQUIVALENCE_NOT_FOUND = exports.E_SHOPPING_CART_NOT_FOUND = exports.E_NOT_FOUND = exports.E_SALE_PROCESS_NOT_FOUND = exports.E_LEAD_NOT_FOUND = exports.E_LEAD_FILE_NOT_FOUND = exports.E_CONFIGURATION_NOT_FOUND = exports.E_CHANGE_OF_ADDRESS_CHARACTERISTIC_NOT_FOUND = exports.E_BUNDLES_PRODUCTS_WITHOUT_VOIP_AND_MOBILE_PRODUCTS_NOT_FOUND = exports.E_CUSTOMER_PRODUCT_FIBER_PRODUCT_NOT_FOUND = exports.E_CUSTOMER_PRODUCT_CHANGE_OF_ADDRESS_NOT_FOUND = exports.E_CUSTOMER_PRODUCT_MULTIPLE_TRANSITION_NOT_FOUND = exports.E_CUSTOMER_PRODUCT_TRANSITION_NOT_FOUND = exports.E_CUSTOMER_PRODUCT_MODIFICATION_NOT_FOUND = exports.E_CUSTOMER_PRODUCT_DEACTIVATION_NOT_FOUND = exports.E_CUSTOMER_NEW_EXTRAS_NOT_FOUND = exports.E_CUSTOMER_AGGRUPATION_NOT_FOUND = exports.E_CUSTOMER_NOT_FOUND = exports.E_BUNDLE_PRODUCTS_NOT_FOUND = exports.E_BATCH_PROCESS_DEFINITION_NOT_FOUND = exports.E_AUTH_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;
3
+ 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 = 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_DROPDOWN_NOT_FOUND = exports.E_DROPDOWN_DATA_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_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_AND_MOBILE_PRODUCTS_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_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
4
  exports.E_ADDRESS_NOT_FOUND = 'E_ADDRESS_NOT_FOUND';
5
5
  exports.E_APARTMENT_NOT_FOUND = 'E_APARTMENT_NOT_FOUND';
6
6
  exports.E_APPROVAL_DATA_NOT_FOUND = 'E_APPROVAL_DATA_NOT_FOUND';
@@ -10,37 +10,39 @@ exports.E_AREA_ADDRESSES_NOT_FOUND = 'E_AREA_ADDRESSES_NOT_FOUND';
10
10
  exports.E_AUTH_NOT_FOUND = 'E_AUTH_NOT_FOUND';
11
11
  exports.E_BATCH_PROCESS_DEFINITION_NOT_FOUND = 'E_BATCH_PROCESS_DEFINITION_NOT_FOUND';
12
12
  exports.E_BUNDLE_PRODUCTS_NOT_FOUND = 'E_BUNDLE_PRODUCTS_NOT_FOUND';
13
- exports.E_CUSTOMER_NOT_FOUND = 'E_CUSTOMER_NOT_FOUND';
13
+ exports.E_BUNDLE_TYPE_CONFIGURATION_NOT_FOUND = 'E_BUNDLE_TYPE_CONFIGURATION_NOT_FOUND';
14
+ exports.E_BUNDLES_PRODUCTS_WITHOUT_VOIP_AND_MOBILE_PRODUCTS_NOT_FOUND = 'E_BUNDLES_PRODUCTS_WITHOUT_VOIP_AND_MOBILE_PRODUCTS_NOT_FOUND';
15
+ exports.E_CHANGE_OF_ADDRESS_CHARACTERISTIC_NOT_FOUND = 'E_CHANGE_OF_ADDRESS_CHARACTERISTIC_NOT_FOUND';
16
+ exports.E_CONFIGURATION_NOT_FOUND = 'E_CONFIGURATION_NOT_FOUND';
14
17
  exports.E_CUSTOMER_AGGRUPATION_NOT_FOUND = 'E_CUSTOMER_AGGRUPATION_NOT_FOUND';
18
+ exports.E_CUSTOMER_BILLING_DIRECT_DEBIT_MANDATE_NOT_FOUND = 'E_CUSTOMER_BILLING_DIRECT_DEBIT_MANDATE_NOT_FOUND';
19
+ exports.E_CUSTOMER_BILLING_DIRECT_DEBIT_PAYMENT_METHOD_NOT_FOUND = 'E_CUSTOMER_BILLING_DIRECT_DEBIT_PAYMENT_METHOD_NOT_FOUND';
20
+ exports.E_CUSTOMER_BILLING_PAYMENT_METHODS_NOT_FOUND = 'E_CUSTOMER_BILLING_PAYMENT_METHODS_NOT_FOUND';
21
+ exports.E_CUSTOMER_HANDOVER_FILE_NOT_FOUND = 'E_CUSTOMER_HANDOVER_FILE_NOT_FOUND';
22
+ exports.E_CUSTOMER_HANDOVER_NOT_FOUND = 'E_CUSTOMER_HANDOVER_NOT_FOUND';
15
23
  exports.E_CUSTOMER_NEW_EXTRAS_NOT_FOUND = 'E_CUSTOMER_NEW_EXTRAS_NOT_FOUND';
24
+ exports.E_CUSTOMER_NOT_FOUND = 'E_CUSTOMER_NOT_FOUND';
25
+ exports.E_CUSTOMER_PRODUCT_CHANGE_OF_ADDRESS_NOT_FOUND = 'E_CUSTOMER_PRODUCT_CHANGE_OF_ADDRESS_NOT_FOUND';
16
26
  exports.E_CUSTOMER_PRODUCT_DEACTIVATION_NOT_FOUND = 'E_CUSTOMER_PRODUCT_DEACTIVATION_NOT_FOUND';
27
+ exports.E_CUSTOMER_PRODUCT_FIBER_PRODUCT_NOT_FOUND = 'E_CUSTOMER_PRODUCT_FIBER_PRODUCT_NOT_FOUND';
17
28
  exports.E_CUSTOMER_PRODUCT_MODIFICATION_NOT_FOUND = 'E_CUSTOMER_PRODUCT_MODIFICATION_NOT_FOUND';
18
- exports.E_CUSTOMER_PRODUCT_TRANSITION_NOT_FOUND = 'E_CUSTOMER_PRODUCT_TRANSITION_NOT_FOUND';
19
29
  exports.E_CUSTOMER_PRODUCT_MULTIPLE_TRANSITION_NOT_FOUND = 'E_CUSTOMER_PRODUCT_MULTIPLE_TRANSITION_NOT_FOUND';
20
- exports.E_CUSTOMER_PRODUCT_CHANGE_OF_ADDRESS_NOT_FOUND = 'E_CUSTOMER_PRODUCT_CHANGE_OF_ADDRESS_NOT_FOUND';
21
- exports.E_CUSTOMER_PRODUCT_FIBER_PRODUCT_NOT_FOUND = 'E_CUSTOMER_PRODUCT_FIBER_PRODUCT_NOT_FOUND';
22
- exports.E_BUNDLES_PRODUCTS_WITHOUT_VOIP_AND_MOBILE_PRODUCTS_NOT_FOUND = 'E_BUNDLES_PRODUCTS_WITHOUT_VOIP_AND_MOBILE_PRODUCTS_NOT_FOUND';
23
- exports.E_CHANGE_OF_ADDRESS_CHARACTERISTIC_NOT_FOUND = 'E_CHANGE_OF_ADDRESS_CHARACTERISTIC_NOT_FOUND';
24
- exports.E_CONFIGURATION_NOT_FOUND = 'E_CONFIGURATION_NOT_FOUND';
30
+ exports.E_CUSTOMER_PRODUCT_TRANSITION_NOT_FOUND = 'E_CUSTOMER_PRODUCT_TRANSITION_NOT_FOUND';
31
+ exports.E_DROPDOWN_DATA_NOT_FOUND = 'E_DROPDOWN_DATA_NOT_FOUND';
32
+ exports.E_DROPDOWN_NOT_FOUND = 'E_DROPDOWN_NOT_FOUND';
25
33
  exports.E_LEAD_FILE_NOT_FOUND = 'E_LEAD_FILE_NOT_FOUND';
26
34
  exports.E_LEAD_NOT_FOUND = 'E_LEAD_NOT_FOUND';
27
- exports.E_SALE_PROCESS_NOT_FOUND = 'E_SALE_PROCESS_NOT_FOUND';
28
35
  exports.E_NOT_FOUND = 'E_NOT_FOUND';
29
- exports.E_SHOPPING_CART_NOT_FOUND = 'E_SHOPPING_CART_NOT_FOUND';
36
+ exports.E_NUMBER_FROM_POOL_NOT_FOUND = 'E_NUMBER_FROM_POOL_NOT_FOUND';
30
37
  exports.E_PRODUCT_CHARACTERISITC_EQUIVALENCE_NOT_FOUND = 'E_PRODUCT_CHARACTERISITC_EQUIVALENCE_NOT_FOUND';
31
38
  exports.E_PRODUCT_MOBILE_PROFILE_EQUIVALENCE_NOT_FOUND = 'E_PRODUCT_MOBILE_PROFILE_EQUIVALENCE_NOT_FOUND';
32
- exports.E_PRODUCT_TRANSITION_GROUP_NOT_FOUND = 'E_PRODUCT_TRANSITION_GROUP_NOT_FOUND';
33
39
  exports.E_PRODUCT_TRANSITION_CONFIGURATION_NOT_FOUND = 'E_PRODUCT_TRANSITION_CONFIGURATION_NOT_FOUND';
34
- exports.E_USER_NOT_FOUND = 'E_USER_NOT_FOUND';
35
- exports.E_WORKGROUP_NOT_FOUND = 'E_WORKGROUP_NOT_FOUND';
36
- exports.E_ZIP_ADDRESSES_NOT_FOUND = 'E_ZIP_ADDRESSES_NOT_FOUND';
37
- exports.E_CUSTOMER_HANDOVER_NOT_FOUND = 'E_CUSTOMER_HANDOVER_NOT_FOUND';
38
- exports.E_CUSTOMER_HANDOVER_FILE_NOT_FOUND = 'E_CUSTOMER_HANDOVER_FILE_NOT_FOUND';
39
- exports.E_NUMBER_FROM_POOL_NOT_FOUND = 'E_NUMBER_FROM_POOL_NOT_FOUND';
40
- exports.E_BUNDLE_TYPE_CONFIGURATION_NOT_FOUND = 'E_BUNDLE_TYPE_CONFIGURATION_NOT_FOUND';
41
- exports.E_CUSTOMER_BILLING_PAYMENT_METHODS_NOT_FOUND = 'E_CUSTOMER_BILLING_PAYMENT_METHODS_NOT_FOUND';
42
- exports.E_CUSTOMER_BILLING_DIRECT_DEBIT_PAYMENT_METHOD_NOT_FOUND = 'E_CUSTOMER_BILLING_DIRECT_DEBIT_PAYMENT_METHOD_NOT_FOUND';
43
- exports.E_CUSTOMER_BILLING_DIRECT_DEBIT_MANDATE_NOT_FOUND = 'E_CUSTOMER_BILLING_DIRECT_DEBIT_MANDATE_NOT_FOUND';
40
+ exports.E_PRODUCT_TRANSITION_GROUP_NOT_FOUND = 'E_PRODUCT_TRANSITION_GROUP_NOT_FOUND';
41
+ exports.E_SALE_PROCESS_NOT_FOUND = 'E_SALE_PROCESS_NOT_FOUND';
42
+ exports.E_SHOPPING_CART_NOT_FOUND = 'E_SHOPPING_CART_NOT_FOUND';
44
43
  exports.E_TASK_NOT_FOUND = 'E_TASK_NOT_FOUND';
45
44
  exports.E_TEMPLATE_NOT_FOUND = 'E_TEMPLATE_NOT_FOUND';
45
+ exports.E_USER_NOT_FOUND = 'E_USER_NOT_FOUND';
46
46
  exports.E_WORK_ORDER_NOT_FOUND = 'E_WORK_ORDER_NOT_FOUND';
47
+ exports.E_WORKGROUP_NOT_FOUND = 'E_WORKGROUP_NOT_FOUND';
48
+ exports.E_ZIP_ADDRESSES_NOT_FOUND = 'E_ZIP_ADDRESSES_NOT_FOUND';
@@ -1,10 +1,4 @@
1
- export declare enum DependencyActionType {
2
- INCLUDES = "Includes",
3
- REQUIRES = "Requires",
4
- EXCLUDES = "Excludes",
5
- OPTIONAL = "Optional"
6
- }
7
- export declare class DependencyDto {
1
+ export declare class DependencyEntity {
8
2
  id: number;
9
3
  feature: string;
10
4
  source: string;
@@ -12,7 +6,7 @@ export declare class DependencyDto {
12
6
  target: string;
13
7
  targetValue: string;
14
8
  selected: boolean;
15
- action: DependencyActionType;
9
+ action: string;
16
10
  active: boolean;
17
11
  createdAt: Date;
18
12
  updatedAt: Date;
@@ -9,66 +9,59 @@ 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.DependencyDto = exports.DependencyActionType = void 0;
12
+ exports.DependencyEntity = void 0;
13
13
  const openapi = require("@nestjs/swagger");
14
14
  const typeorm_1 = require("typeorm");
15
- var DependencyActionType;
16
- (function (DependencyActionType) {
17
- DependencyActionType["INCLUDES"] = "Includes";
18
- DependencyActionType["REQUIRES"] = "Requires";
19
- DependencyActionType["EXCLUDES"] = "Excludes";
20
- DependencyActionType["OPTIONAL"] = "Optional";
21
- })(DependencyActionType || (exports.DependencyActionType = DependencyActionType = {}));
22
- let DependencyDto = class DependencyDto {
15
+ let DependencyEntity = class DependencyEntity {
23
16
  static _OPENAPI_METADATA_FACTORY() {
24
- return { id: { required: true, type: () => Number }, feature: { required: true, type: () => String }, source: { required: true, type: () => String }, sourceValue: { required: true, type: () => String }, target: { required: true, type: () => String }, targetValue: { required: true, type: () => String }, selected: { required: true, type: () => Boolean }, action: { required: true, enum: require("./dependency.entity").DependencyActionType }, active: { required: true, type: () => Boolean }, createdAt: { required: true, type: () => Date }, updatedAt: { required: true, type: () => Date } };
17
+ return { id: { required: true, type: () => Number }, feature: { required: true, type: () => String }, source: { required: true, type: () => String }, sourceValue: { required: true, type: () => String }, target: { required: true, type: () => String }, targetValue: { required: true, type: () => String }, selected: { required: true, type: () => Boolean }, action: { required: true, type: () => String }, active: { required: true, type: () => Boolean }, createdAt: { required: true, type: () => Date }, updatedAt: { required: true, type: () => Date } };
25
18
  }
26
19
  };
27
- exports.DependencyDto = DependencyDto;
20
+ exports.DependencyEntity = DependencyEntity;
28
21
  __decorate([
29
22
  (0, typeorm_1.PrimaryGeneratedColumn)(),
30
23
  __metadata("design:type", Number)
31
- ], DependencyDto.prototype, "id", void 0);
24
+ ], DependencyEntity.prototype, "id", void 0);
32
25
  __decorate([
33
26
  (0, typeorm_1.Column)(),
34
27
  __metadata("design:type", String)
35
- ], DependencyDto.prototype, "feature", void 0);
28
+ ], DependencyEntity.prototype, "feature", void 0);
36
29
  __decorate([
37
30
  (0, typeorm_1.Column)(),
38
31
  __metadata("design:type", String)
39
- ], DependencyDto.prototype, "source", void 0);
32
+ ], DependencyEntity.prototype, "source", void 0);
40
33
  __decorate([
41
34
  (0, typeorm_1.Column)({ nullable: true }),
42
35
  __metadata("design:type", String)
43
- ], DependencyDto.prototype, "sourceValue", void 0);
36
+ ], DependencyEntity.prototype, "sourceValue", void 0);
44
37
  __decorate([
45
38
  (0, typeorm_1.Column)(),
46
39
  __metadata("design:type", String)
47
- ], DependencyDto.prototype, "target", void 0);
40
+ ], DependencyEntity.prototype, "target", void 0);
48
41
  __decorate([
49
42
  (0, typeorm_1.Column)({ nullable: true }),
50
43
  __metadata("design:type", String)
51
- ], DependencyDto.prototype, "targetValue", void 0);
44
+ ], DependencyEntity.prototype, "targetValue", void 0);
52
45
  __decorate([
53
46
  (0, typeorm_1.Column)({ type: 'boolean', default: true }),
54
47
  __metadata("design:type", Boolean)
55
- ], DependencyDto.prototype, "selected", void 0);
48
+ ], DependencyEntity.prototype, "selected", void 0);
56
49
  __decorate([
57
50
  (0, typeorm_1.Column)({ type: 'varchar' }),
58
51
  __metadata("design:type", String)
59
- ], DependencyDto.prototype, "action", void 0);
52
+ ], DependencyEntity.prototype, "action", void 0);
60
53
  __decorate([
61
54
  (0, typeorm_1.Column)({ type: 'boolean', default: true }),
62
55
  __metadata("design:type", Boolean)
63
- ], DependencyDto.prototype, "active", void 0);
56
+ ], DependencyEntity.prototype, "active", void 0);
64
57
  __decorate([
65
58
  (0, typeorm_1.Column)({ type: 'datetime' }),
66
59
  __metadata("design:type", Date)
67
- ], DependencyDto.prototype, "createdAt", void 0);
60
+ ], DependencyEntity.prototype, "createdAt", void 0);
68
61
  __decorate([
69
62
  (0, typeorm_1.Column)({ type: 'datetime' }),
70
63
  __metadata("design:type", Date)
71
- ], DependencyDto.prototype, "updatedAt", void 0);
72
- exports.DependencyDto = DependencyDto = __decorate([
64
+ ], DependencyEntity.prototype, "updatedAt", void 0);
65
+ exports.DependencyEntity = DependencyEntity = __decorate([
73
66
  (0, typeorm_1.Entity)({ name: 'dependencies' })
74
- ], DependencyDto);
67
+ ], DependencyEntity);
@@ -1,22 +1,27 @@
1
- export declare class DropdownDto {
2
- id?: number;
1
+ export declare class DropdownEntity {
2
+ id: number;
3
3
  name: string;
4
- description: string;
4
+ description?: string;
5
5
  active: boolean;
6
6
  createdAt: Date;
7
7
  createdBy?: string;
8
8
  updatedAt: Date;
9
9
  updatedBy?: string;
10
- data?: DropdownDataDto[];
10
+ data?: DropdownDataEntity[];
11
11
  }
12
- export declare class DropdownDataDto {
13
- id?: number;
14
- dropdown: DropdownDto;
12
+ export type CreateDropdownEntity = Pick<DropdownEntity, 'name' | 'description' | 'active' | 'createdBy'>;
13
+ export type UpdateDropdownEntity = Partial<Pick<DropdownEntity, 'description' | 'active' | 'updatedBy'>>;
14
+ export declare class DropdownDataEntity {
15
+ id: number;
16
+ dropdownId: number;
17
+ dropdown?: DropdownEntity;
15
18
  value: string;
16
19
  displayName: string;
17
- active?: boolean;
20
+ active: boolean;
18
21
  createdAt: Date;
19
22
  createdBy?: string;
20
23
  updatedAt: Date;
21
24
  updatedBy?: string;
22
25
  }
26
+ export type CreateDropdownDataEntity = Pick<DropdownDataEntity, 'dropdownId' | 'value' | 'displayName' | 'active' | 'createdBy'>;
27
+ export type UpdateDropdownDataEntity = Partial<Pick<DropdownDataEntity, 'value' | 'displayName' | 'active' | 'updatedBy'>>;
@@ -9,97 +9,100 @@ 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.DropdownDataDto = exports.DropdownDto = void 0;
12
+ exports.DropdownDataEntity = exports.DropdownEntity = void 0;
13
13
  const openapi = require("@nestjs/swagger");
14
14
  const typeorm_1 = require("typeorm");
15
- let DropdownDto = class DropdownDto {
15
+ let DropdownEntity = class DropdownEntity {
16
16
  static _OPENAPI_METADATA_FACTORY() {
17
- return { id: { required: false, type: () => Number }, name: { required: true, type: () => String }, description: { required: true, type: () => String }, active: { required: true, type: () => Boolean }, createdAt: { required: true, type: () => Date }, createdBy: { required: false, type: () => String }, updatedAt: { required: true, type: () => Date }, updatedBy: { required: false, type: () => String }, data: { required: false, type: () => [require("./dropdown.entity").DropdownDataDto] } };
17
+ return { id: { required: true, type: () => Number }, name: { required: true, type: () => String }, description: { required: false, type: () => String }, active: { required: true, type: () => Boolean }, createdAt: { required: true, type: () => Date }, createdBy: { required: false, type: () => String }, updatedAt: { required: true, type: () => Date }, updatedBy: { required: false, type: () => String }, data: { required: false, type: () => [require("./dropdown.entity").DropdownDataEntity] } };
18
18
  }
19
19
  };
20
- exports.DropdownDto = DropdownDto;
20
+ exports.DropdownEntity = DropdownEntity;
21
21
  __decorate([
22
22
  (0, typeorm_1.PrimaryGeneratedColumn)(),
23
23
  __metadata("design:type", Number)
24
- ], DropdownDto.prototype, "id", void 0);
24
+ ], DropdownEntity.prototype, "id", void 0);
25
25
  __decorate([
26
- (0, typeorm_1.Column)(),
26
+ (0, typeorm_1.Column)({ type: 'varchar', length: 255, unique: true, nullable: false }),
27
27
  __metadata("design:type", String)
28
- ], DropdownDto.prototype, "name", void 0);
28
+ ], DropdownEntity.prototype, "name", void 0);
29
29
  __decorate([
30
- (0, typeorm_1.Column)({ nullable: true }),
30
+ (0, typeorm_1.Column)({ type: 'varchar', length: 255, nullable: true }),
31
31
  __metadata("design:type", String)
32
- ], DropdownDto.prototype, "description", void 0);
32
+ ], DropdownEntity.prototype, "description", void 0);
33
33
  __decorate([
34
34
  (0, typeorm_1.Column)({ type: 'boolean', default: true }),
35
35
  __metadata("design:type", Boolean)
36
- ], DropdownDto.prototype, "active", void 0);
36
+ ], DropdownEntity.prototype, "active", void 0);
37
37
  __decorate([
38
- (0, typeorm_1.Column)({ type: 'datetime' }),
38
+ (0, typeorm_1.Column)({ type: 'datetime', nullable: false, default: 'CURRENT_TIMESTAMP' }),
39
39
  __metadata("design:type", Date)
40
- ], DropdownDto.prototype, "createdAt", void 0);
40
+ ], DropdownEntity.prototype, "createdAt", void 0);
41
41
  __decorate([
42
- (0, typeorm_1.Column)({ nullable: true }),
42
+ (0, typeorm_1.Column)({ type: 'varchar', length: 255, nullable: true }),
43
43
  __metadata("design:type", String)
44
- ], DropdownDto.prototype, "createdBy", void 0);
44
+ ], DropdownEntity.prototype, "createdBy", void 0);
45
45
  __decorate([
46
- (0, typeorm_1.Column)({ type: 'datetime' }),
46
+ (0, typeorm_1.Column)({ type: 'datetime', nullable: false, default: 'CURRENT_TIMESTAMP', onUpdate: 'CURRENT_TIMESTAMP' }),
47
47
  __metadata("design:type", Date)
48
- ], DropdownDto.prototype, "updatedAt", void 0);
48
+ ], DropdownEntity.prototype, "updatedAt", void 0);
49
49
  __decorate([
50
- (0, typeorm_1.Column)({ nullable: true }),
50
+ (0, typeorm_1.Column)({ type: 'varchar', length: 255, nullable: true }),
51
51
  __metadata("design:type", String)
52
- ], DropdownDto.prototype, "updatedBy", void 0);
52
+ ], DropdownEntity.prototype, "updatedBy", void 0);
53
53
  __decorate([
54
- (0, typeorm_1.OneToMany)(() => DropdownDataDto, (data) => data.dropdown),
54
+ (0, typeorm_1.OneToMany)(() => DropdownDataEntity, (data) => data.dropdown),
55
55
  __metadata("design:type", Array)
56
- ], DropdownDto.prototype, "data", void 0);
57
- exports.DropdownDto = DropdownDto = __decorate([
56
+ ], DropdownEntity.prototype, "data", void 0);
57
+ exports.DropdownEntity = DropdownEntity = __decorate([
58
58
  (0, typeorm_1.Entity)({ name: 'dropdown' })
59
- ], DropdownDto);
60
- let DropdownDataDto = class DropdownDataDto {
59
+ ], DropdownEntity);
60
+ let DropdownDataEntity = class DropdownDataEntity {
61
61
  static _OPENAPI_METADATA_FACTORY() {
62
- return { id: { required: false, type: () => Number }, dropdown: { required: true, type: () => require("./dropdown.entity").DropdownDto }, value: { required: true, type: () => String }, displayName: { required: true, type: () => String }, active: { required: false, type: () => Boolean }, createdAt: { required: true, type: () => Date }, createdBy: { required: false, type: () => String }, updatedAt: { required: true, type: () => Date }, updatedBy: { required: false, type: () => String } };
62
+ return { id: { required: true, type: () => Number }, dropdownId: { required: true, type: () => Number }, dropdown: { required: false, type: () => require("./dropdown.entity").DropdownEntity }, value: { required: true, type: () => String }, displayName: { required: true, type: () => String }, active: { required: true, type: () => Boolean }, createdAt: { required: true, type: () => Date }, createdBy: { required: false, type: () => String }, updatedAt: { required: true, type: () => Date }, updatedBy: { required: false, type: () => String } };
63
63
  }
64
64
  };
65
- exports.DropdownDataDto = DropdownDataDto;
65
+ exports.DropdownDataEntity = DropdownDataEntity;
66
66
  __decorate([
67
67
  (0, typeorm_1.PrimaryGeneratedColumn)(),
68
68
  __metadata("design:type", Number)
69
- ], DropdownDataDto.prototype, "id", void 0);
69
+ ], DropdownDataEntity.prototype, "id", void 0);
70
70
  __decorate([
71
- (0, typeorm_1.ManyToOne)(() => DropdownDto),
72
- (0, typeorm_1.JoinColumn)({ name: 'dropdown', referencedColumnName: 'id' }),
73
- __metadata("design:type", DropdownDto)
74
- ], DropdownDataDto.prototype, "dropdown", void 0);
71
+ (0, typeorm_1.Column)({ type: 'int', nullable: false }),
72
+ __metadata("design:type", Number)
73
+ ], DropdownDataEntity.prototype, "dropdownId", void 0);
74
+ __decorate([
75
+ (0, typeorm_1.ManyToOne)(() => DropdownEntity, (dropdown) => dropdown.data),
76
+ __metadata("design:type", DropdownEntity)
77
+ ], DropdownDataEntity.prototype, "dropdown", void 0);
75
78
  __decorate([
76
- (0, typeorm_1.Column)(),
79
+ (0, typeorm_1.Column)({ type: 'varchar', length: 255, nullable: false }),
77
80
  __metadata("design:type", String)
78
- ], DropdownDataDto.prototype, "value", void 0);
81
+ ], DropdownDataEntity.prototype, "value", void 0);
79
82
  __decorate([
80
- (0, typeorm_1.Column)({ nullable: true }),
83
+ (0, typeorm_1.Column)({ type: 'varchar', length: 255, nullable: true }),
81
84
  __metadata("design:type", String)
82
- ], DropdownDataDto.prototype, "displayName", void 0);
85
+ ], DropdownDataEntity.prototype, "displayName", void 0);
83
86
  __decorate([
84
87
  (0, typeorm_1.Column)({ type: 'boolean', default: true }),
85
88
  __metadata("design:type", Boolean)
86
- ], DropdownDataDto.prototype, "active", void 0);
89
+ ], DropdownDataEntity.prototype, "active", void 0);
87
90
  __decorate([
88
- (0, typeorm_1.Column)({ type: 'datetime' }),
91
+ (0, typeorm_1.Column)({ type: 'datetime', nullable: false, default: 'CURRENT_TIMESTAMP' }),
89
92
  __metadata("design:type", Date)
90
- ], DropdownDataDto.prototype, "createdAt", void 0);
93
+ ], DropdownDataEntity.prototype, "createdAt", void 0);
91
94
  __decorate([
92
- (0, typeorm_1.Column)({ nullable: true }),
95
+ (0, typeorm_1.Column)({ type: 'varchar', length: 255, nullable: true }),
93
96
  __metadata("design:type", String)
94
- ], DropdownDataDto.prototype, "createdBy", void 0);
97
+ ], DropdownDataEntity.prototype, "createdBy", void 0);
95
98
  __decorate([
96
- (0, typeorm_1.Column)({ type: 'datetime' }),
99
+ (0, typeorm_1.Column)({ type: 'datetime', nullable: false, default: 'CURRENT_TIMESTAMP', onUpdate: 'CURRENT_TIMESTAMP' }),
97
100
  __metadata("design:type", Date)
98
- ], DropdownDataDto.prototype, "updatedAt", void 0);
101
+ ], DropdownDataEntity.prototype, "updatedAt", void 0);
99
102
  __decorate([
100
- (0, typeorm_1.Column)({ nullable: true }),
103
+ (0, typeorm_1.Column)({ type: 'varchar', length: 255, nullable: true }),
101
104
  __metadata("design:type", String)
102
- ], DropdownDataDto.prototype, "updatedBy", void 0);
103
- exports.DropdownDataDto = DropdownDataDto = __decorate([
104
- (0, typeorm_1.Entity)({ name: 'dropdown_data' })
105
- ], DropdownDataDto);
105
+ ], DropdownDataEntity.prototype, "updatedBy", void 0);
106
+ exports.DropdownDataEntity = DropdownDataEntity = __decorate([
107
+ (0, typeorm_1.Entity)({ name: 'dropdown-data' })
108
+ ], DropdownDataEntity);
@@ -76,13 +76,13 @@ export declare class ApprovalDto {
76
76
  updated?: AuditFieldsDto;
77
77
  approved?: AuditFieldsWithValueDto;
78
78
  }
79
- declare const CreateApprovalDto_base: import("@nestjs/common").Type<Omit<ApprovalDto, "id" | "data" | "updated" | "approved">>;
79
+ declare const CreateApprovalDto_base: import("@nestjs/common").Type<Omit<ApprovalDto, "id" | "updated" | "data" | "approved">>;
80
80
  export declare class CreateApprovalDto extends CreateApprovalDto_base {
81
81
  }
82
82
  declare const PartialCreateApprovalDto_base: import("@nestjs/common").Type<Omit<CreateApprovalDto, "created">>;
83
83
  export declare class PartialCreateApprovalDto extends PartialCreateApprovalDto_base {
84
84
  }
85
- declare const UpdateApprovalCustomerDto_base: import("@nestjs/common").Type<Partial<Pick<ApprovalCustomerDto, "firstName" | "lastName" | "title" | "identification" | "phones">>>;
85
+ declare const UpdateApprovalCustomerDto_base: import("@nestjs/common").Type<Partial<Pick<ApprovalCustomerDto, "title" | "firstName" | "lastName" | "identification" | "phones">>>;
86
86
  export declare class UpdateApprovalCustomerDto extends UpdateApprovalCustomerDto_base {
87
87
  }
88
88
  declare const UpdateApprovalBillingDto_base: import("@nestjs/common").Type<Partial<ApprovalBillingDto>>;
@@ -128,13 +128,13 @@ export declare class ApprovalDataGroupDto {
128
128
  export declare class ApprovalWithGroupsDto extends ApprovalDto {
129
129
  groups: ApprovalDataGroupDto[];
130
130
  }
131
- declare const CreateApprovalDataDto_base: import("@nestjs/common").Type<Omit<ApprovalDataDto, "active" | "id" | "updated" | "approved">>;
131
+ declare const CreateApprovalDataDto_base: import("@nestjs/common").Type<Omit<ApprovalDataDto, "id" | "updated" | "active" | "approved">>;
132
132
  export declare class CreateApprovalDataDto extends CreateApprovalDataDto_base {
133
133
  }
134
134
  declare const PartialCreateApprovalDataDto_base: import("@nestjs/common").Type<Omit<CreateApprovalDataDto, "created" | "approvalId">>;
135
135
  export declare class PartialCreateApprovalDataDto extends PartialCreateApprovalDataDto_base {
136
136
  }
137
- declare const UpdateApprovalDataDto_base: import("@nestjs/common").Type<Omit<ApprovalDataDto, "active" | "id" | "created" | "approvalId" | "validation">>;
137
+ declare const UpdateApprovalDataDto_base: import("@nestjs/common").Type<Omit<ApprovalDataDto, "id" | "created" | "active" | "approvalId" | "validation">>;
138
138
  export declare class UpdateApprovalDataDto extends UpdateApprovalDataDto_base {
139
139
  validation?: SaleProcessApprovalValidation;
140
140
  active?: boolean;
@@ -28,7 +28,7 @@ export declare class BureauValidationDto {
28
28
  export declare class BureauValidationDtoBuilder extends Builder<BureauValidationDto> {
29
29
  setDefaults(): BureauValidationDto;
30
30
  }
31
- declare const CreateBureauValidationDto_base: import("@nestjs/common").Type<Pick<BureauValidationDto, "source" | "identification">>;
31
+ declare const CreateBureauValidationDto_base: import("@nestjs/common").Type<Pick<BureauValidationDto, "identification" | "source">>;
32
32
  export declare class CreateBureauValidationDto extends CreateBureauValidationDto_base {
33
33
  }
34
34
  export {};
@@ -8,6 +8,9 @@ export declare class AuditFieldsDto {
8
8
  by?: string;
9
9
  at?: Date;
10
10
  }
11
+ declare const CreateAuditFieldsDto_base: import("@nestjs/common").Type<Pick<AuditFieldsDto, "by">>;
12
+ export declare class CreateAuditFieldsDto extends CreateAuditFieldsDto_base {
13
+ }
11
14
  export declare class AuditFieldsDtoBuilder extends Builder<AuditFieldsDto> {
12
15
  setDefaults(): AuditFieldsDto;
13
16
  }
@@ -65,3 +68,4 @@ export declare class CreditBureauValidationProcessDto {
65
68
  errors?: any;
66
69
  created: ProcessAuditFieldsDto;
67
70
  }
71
+ export {};
@@ -9,18 +9,25 @@ 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.CustomerProcessStepRelatedProductDto = exports.CustomerProductActionProcessProductDto = exports.ProcessAuditFieldsDto = exports.AuditFieldsWithValueDto = exports.AuditFieldsDtoBuilder = exports.AuditFieldsDto = void 0;
12
+ exports.CreditBureauValidationProcessDto = exports.CreditBureauValidationCacheDto = exports.CreditBureauValidationIdentificationDto = exports.ArsDocumentDto = exports.GenericFileDto = exports.CustomerProductTransitionProcessTransitionDto = exports.CustomerProcessStepRelatedProductDto = exports.CustomerProductActionProcessProductDto = exports.ProcessAuditFieldsDto = exports.AuditFieldsWithValueDto = exports.AuditFieldsDtoBuilder = exports.CreateAuditFieldsDto = exports.AuditFieldsDto = 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");
16
16
  const class_validator_1 = require("class-validator");
17
17
  const constants_1 = require("../../bss/constants");
18
+ const swagger_1 = require("@nestjs/swagger");
18
19
  class AuditFieldsDto {
19
20
  static _OPENAPI_METADATA_FACTORY() {
20
21
  return { by: { required: false, type: () => String }, at: { required: false, type: () => Date } };
21
22
  }
22
23
  }
23
24
  exports.AuditFieldsDto = AuditFieldsDto;
25
+ class CreateAuditFieldsDto extends (0, swagger_1.PickType)(AuditFieldsDto, ['by']) {
26
+ static _OPENAPI_METADATA_FACTORY() {
27
+ return {};
28
+ }
29
+ }
30
+ exports.CreateAuditFieldsDto = CreateAuditFieldsDto;
24
31
  class AuditFieldsDtoBuilder extends helpers_1.Builder {
25
32
  setDefaults() {
26
33
  return {
@@ -4,7 +4,7 @@ export declare class CustomerAccountNoteDto {
4
4
  createdBy: string;
5
5
  createdAt: string;
6
6
  }
7
- declare const CreateCustomerAccountNoteDto_base: import("@nestjs/common").Type<Pick<CustomerAccountNoteDto, "createdBy" | "notes">>;
7
+ declare const CreateCustomerAccountNoteDto_base: import("@nestjs/common").Type<Pick<CustomerAccountNoteDto, "notes" | "createdBy">>;
8
8
  export declare class CreateCustomerAccountNoteDto extends CreateCustomerAccountNoteDto_base {
9
9
  }
10
10
  export {};
@@ -10,5 +10,6 @@ declare const CustomerAccountSummaryDto_base: import("@nestjs/common").Type<Omit
10
10
  export declare class CustomerAccountSummaryDto extends CustomerAccountSummaryDto_base {
11
11
  owner: CustomerAccountIndividualSummaryDto | CustomerAccountOrganizationSummaryDto;
12
12
  additionalContacts?: CustomerAccountIndividualSummaryDto[];
13
+ bssUrl?: string;
13
14
  }
14
15
  export {};
@@ -18,7 +18,7 @@ class CustomerAccountOrganizationSummaryDto extends (0, swagger_1.IntersectionTy
18
18
  exports.CustomerAccountOrganizationSummaryDto = CustomerAccountOrganizationSummaryDto;
19
19
  class CustomerAccountSummaryDto extends (0, swagger_1.OmitType)(customer_account_entitty_1.CustomerAccountDto, ['relatedParties']) {
20
20
  static _OPENAPI_METADATA_FACTORY() {
21
- return { owner: { required: true, type: () => Object }, additionalContacts: { required: false, type: () => [require("./customer-account-summary.entity").CustomerAccountIndividualSummaryDto] } };
21
+ return { owner: { required: true, type: () => Object }, additionalContacts: { required: false, type: () => [require("./customer-account-summary.entity").CustomerAccountIndividualSummaryDto] }, bssUrl: { required: false, type: () => String } };
22
22
  }
23
23
  }
24
24
  exports.CustomerAccountSummaryDto = CustomerAccountSummaryDto;
@@ -1,23 +1,11 @@
1
1
  import { BillDto } from '../../bss/billing';
2
- import { BpAccountStateType, BpCustomerAccountBusinessSegmentType, BpCustomerAccountPreferredContactTimeType, BpAccountPreferredLanguageType } from '../../bss/constants';
2
+ import { BpAccountStateType } from '../../bss/constants';
3
3
  import { OrderHierarchyItemDto } from '../../bss/order';
4
4
  import { TaskDto } from '../../bss/task';
5
5
  import { PaginationQueryDto } from '../../common/common.entity';
6
- import { BusinessCustomerType, CustomerType } from '../../common/constants';
7
- import { CustomerAccountIdentificationDto, CustomerAccountIndividualDto, CustomerAccountOrganizationDto } from './customer-account.entitty';
6
+ import { CustomerType } from '../../common/constants';
7
+ import { CustomerAccountIdentificationDto } from './customer-account.entitty';
8
8
  import { CustomerFinancialBalancesDto } from '../../bss/customer';
9
- export declare class CustomerDto {
10
- id: string;
11
- state: BpAccountStateType;
12
- type: CustomerType;
13
- party?: CustomerAccountIndividualDto | CustomerAccountOrganizationDto;
14
- preferredLanguage?: BpAccountPreferredLanguageType;
15
- businessType?: BusinessCustomerType;
16
- businessSegment?: BpCustomerAccountBusinessSegmentType;
17
- additionalContactPhone?: string;
18
- preferredContactTime?: BpCustomerAccountPreferredContactTimeType;
19
- parameters?: Record<string, string>;
20
- }
21
9
  export declare class CustomerBalancesAndDebtDto {
22
10
  balances: CustomerFinancialBalancesDto;
23
11
  debt: boolean;