adamo-types 2.0.40-sit → 2.0.41-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/constants/bp.constants.d.ts +2 -1
- package/dist/bss/constants/bp.constants.js +1 -0
- package/dist/sys03/customer-product-multiple-transition-process/customer-product-multiple-transition-process.constants.d.ts +2 -1
- package/dist/sys03/customer-product-multiple-transition-process/customer-product-multiple-transition-process.constants.js +1 -0
- package/dist/sys03/customer-product-multiple-transition-process/customer-product-multiple-transition-process.entity.d.ts +1 -0
- package/dist/sys03/customer-product-multiple-transition-process/customer-product-multiple-transition-process.entity.js +1 -1
- package/dist/tsconfig.build.tsbuildinfo +1 -1
- package/package.json +1 -1
|
@@ -123,6 +123,7 @@ var ProductOrderType;
|
|
|
123
123
|
ProductOrderType["NEW"] = "NEW";
|
|
124
124
|
ProductOrderType["TERMINATE"] = "TERMINATE";
|
|
125
125
|
ProductOrderType["UPGRADE"] = "UPGRADE";
|
|
126
|
+
ProductOrderType["UNBUNDLE"] = "UNBUNDLE";
|
|
126
127
|
})(ProductOrderType || (exports.ProductOrderType = ProductOrderType = {}));
|
|
127
128
|
var ServiceSpecificationType;
|
|
128
129
|
(function (ServiceSpecificationType) {
|
|
@@ -8,7 +8,8 @@ export declare enum CustomerProductMultipleTransitionProcessStatus {
|
|
|
8
8
|
UNBUNDLE_STEP = "unbundle-step",
|
|
9
9
|
DELETE_STEP = "delete-step",
|
|
10
10
|
BUNDLE_STEP = "bundle-step",
|
|
11
|
-
COMPLETED = "completed"
|
|
11
|
+
COMPLETED = "completed",
|
|
12
|
+
BROKEN = "broken"
|
|
12
13
|
}
|
|
13
14
|
export declare enum CustomerProductMultipleTransitionProcessAdditionalProductType {
|
|
14
15
|
ONLY_MOBILES = "only-mobiles",
|
|
@@ -13,6 +13,7 @@ var CustomerProductMultipleTransitionProcessStatus;
|
|
|
13
13
|
CustomerProductMultipleTransitionProcessStatus["DELETE_STEP"] = "delete-step";
|
|
14
14
|
CustomerProductMultipleTransitionProcessStatus["BUNDLE_STEP"] = "bundle-step";
|
|
15
15
|
CustomerProductMultipleTransitionProcessStatus["COMPLETED"] = "completed";
|
|
16
|
+
CustomerProductMultipleTransitionProcessStatus["BROKEN"] = "broken";
|
|
16
17
|
})(CustomerProductMultipleTransitionProcessStatus || (exports.CustomerProductMultipleTransitionProcessStatus = CustomerProductMultipleTransitionProcessStatus = {}));
|
|
17
18
|
var CustomerProductMultipleTransitionProcessAdditionalProductType;
|
|
18
19
|
(function (CustomerProductMultipleTransitionProcessAdditionalProductType) {
|
|
@@ -63,5 +63,6 @@ export declare class CustomerProductMultipleTransitionProcessStepCacheDto {
|
|
|
63
63
|
}
|
|
64
64
|
export declare class CustomerProductMultipleTransitionProcessStepCompletedProductDto {
|
|
65
65
|
step: CustomerProductTransitionStep;
|
|
66
|
+
cancelled: boolean;
|
|
66
67
|
relatedProduct?: CustomerProductProcessRelatedProductDto;
|
|
67
68
|
}
|
|
@@ -156,7 +156,7 @@ class CustomerProductMultipleTransitionProcessStepCacheDto {
|
|
|
156
156
|
exports.CustomerProductMultipleTransitionProcessStepCacheDto = CustomerProductMultipleTransitionProcessStepCacheDto;
|
|
157
157
|
class CustomerProductMultipleTransitionProcessStepCompletedProductDto {
|
|
158
158
|
static _OPENAPI_METADATA_FACTORY() {
|
|
159
|
-
return { step: { required: true, enum: require("./customer-product-multiple-transition-process.constants").CustomerProductTransitionStep }, relatedProduct: { required: false, type: () => require("../common/common.entity").CustomerProductProcessRelatedProductDto } };
|
|
159
|
+
return { step: { required: true, enum: require("./customer-product-multiple-transition-process.constants").CustomerProductTransitionStep }, cancelled: { required: true, type: () => Boolean }, relatedProduct: { required: false, type: () => require("../common/common.entity").CustomerProductProcessRelatedProductDto } };
|
|
160
160
|
}
|
|
161
161
|
}
|
|
162
162
|
exports.CustomerProductMultipleTransitionProcessStepCompletedProductDto = CustomerProductMultipleTransitionProcessStepCompletedProductDto;
|