adamo-types 1.1.165 → 1.1.166
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/product/internal/internal.entity.d.ts +1 -0
- package/dist/common/edge-bss/product/res/other.entity.d.ts +2 -0
- package/dist/common/edge-bss/product/res/other.entity.js +2 -2
- package/dist/digitel/pdf.entity.d.ts +6 -0
- package/dist/digitel/pdf.entity.js +1 -1
- package/dist/tsconfig.build.tsbuildinfo +1 -1
- package/package.json +1 -1
|
@@ -21,6 +21,7 @@ export interface DefaultSummaryProduct {
|
|
|
21
21
|
displayName: string;
|
|
22
22
|
displayDescription: string;
|
|
23
23
|
type: ShoppingCartConfigurationProductType;
|
|
24
|
+
configurationAttributes: ConfigurationAttributeDto[];
|
|
24
25
|
promotions: DefaultSummaryCharacteristic[];
|
|
25
26
|
characteristics: DefaultSummaryCharacteristic[];
|
|
26
27
|
servicesCharacteristics: ShoppingCartInfoServiceCharacteristicDto[];
|
|
@@ -16,6 +16,7 @@ export declare class ProductSummaryResDto {
|
|
|
16
16
|
promotions: ProductSummaryCharacteristicResDto[];
|
|
17
17
|
installationCosts?: ProductSummaryCharacteristicResDto[];
|
|
18
18
|
contract: ProductSummaryContractResDto;
|
|
19
|
+
configurationAttributes?: ShoppingCartConfigurationAttributeDto[];
|
|
19
20
|
products: ProductSummaryProductResDto[];
|
|
20
21
|
prices: ProductSummaryPriceResDto[];
|
|
21
22
|
}
|
|
@@ -30,6 +31,7 @@ export declare class ProductSummaryProductResDto {
|
|
|
30
31
|
displayName: string;
|
|
31
32
|
displayDescription: string;
|
|
32
33
|
type: ShoppingCartConfigurationProductType;
|
|
34
|
+
configurationAttributes?: ShoppingCartConfigurationAttributeDto[];
|
|
33
35
|
promotions: ProductSummaryCharacteristicResDto[];
|
|
34
36
|
characteristics: ProductSummaryCharacteristicResDto[];
|
|
35
37
|
servicesCharacteristics: ShoppingCartInfoServiceCharacteristicDto[];
|
|
@@ -16,7 +16,7 @@ class DefaultBundlesSummaryResDto {
|
|
|
16
16
|
exports.DefaultBundlesSummaryResDto = DefaultBundlesSummaryResDto;
|
|
17
17
|
class ProductSummaryResDto {
|
|
18
18
|
static _OPENAPI_METADATA_FACTORY() {
|
|
19
|
-
return { name: { required: true, type: () => String }, displayName: { required: true, type: () => String }, displayDescription: { required: true, type: () => String }, promotions: { required: true, type: () => [require("./other.entity").ProductSummaryCharacteristicResDto] }, installationCosts: { required: false, type: () => [require("./other.entity").ProductSummaryCharacteristicResDto] }, contract: { required: true, type: () => require("./other.entity").ProductSummaryContractResDto }, products: { required: true, type: () => [require("./other.entity").ProductSummaryProductResDto] }, prices: { required: true, type: () => [require("./other.entity").ProductSummaryPriceResDto] } };
|
|
19
|
+
return { name: { required: true, type: () => String }, displayName: { required: true, type: () => String }, displayDescription: { required: true, type: () => String }, promotions: { required: true, type: () => [require("./other.entity").ProductSummaryCharacteristicResDto] }, installationCosts: { required: false, type: () => [require("./other.entity").ProductSummaryCharacteristicResDto] }, contract: { required: true, type: () => require("./other.entity").ProductSummaryContractResDto }, configurationAttributes: { required: false, type: () => [require("../../shopping-cart/res/other.entity").ShoppingCartConfigurationAttributeDto] }, products: { required: true, type: () => [require("./other.entity").ProductSummaryProductResDto] }, prices: { required: true, type: () => [require("./other.entity").ProductSummaryPriceResDto] } };
|
|
20
20
|
}
|
|
21
21
|
}
|
|
22
22
|
exports.ProductSummaryResDto = ProductSummaryResDto;
|
|
@@ -28,7 +28,7 @@ class BundlesSummaryResDto {
|
|
|
28
28
|
exports.BundlesSummaryResDto = BundlesSummaryResDto;
|
|
29
29
|
class ProductSummaryProductResDto {
|
|
30
30
|
static _OPENAPI_METADATA_FACTORY() {
|
|
31
|
-
return { name: { required: true, type: () => String }, index: { required: true, type: () => Number }, displayName: { required: true, type: () => String }, displayDescription: { required: true, type: () => String }, type: { required: true, enum: require("../../../constants/common.constants").ShoppingCartConfigurationProductType }, promotions: { required: true, type: () => [require("./other.entity").ProductSummaryCharacteristicResDto] }, characteristics: { required: true, type: () => [require("./other.entity").ProductSummaryCharacteristicResDto] }, servicesCharacteristics: { required: true, type: () => [require("../../shopping-cart/res/other.entity").ShoppingCartInfoServiceCharacteristicDto] }, total: { required: true, type: () => Number } };
|
|
31
|
+
return { name: { required: true, type: () => String }, index: { required: true, type: () => Number }, displayName: { required: true, type: () => String }, displayDescription: { required: true, type: () => String }, type: { required: true, enum: require("../../../constants/common.constants").ShoppingCartConfigurationProductType }, configurationAttributes: { required: false, type: () => [require("../../shopping-cart/res/other.entity").ShoppingCartConfigurationAttributeDto] }, promotions: { required: true, type: () => [require("./other.entity").ProductSummaryCharacteristicResDto] }, characteristics: { required: true, type: () => [require("./other.entity").ProductSummaryCharacteristicResDto] }, servicesCharacteristics: { required: true, type: () => [require("../../shopping-cart/res/other.entity").ShoppingCartInfoServiceCharacteristicDto] }, total: { required: true, type: () => Number } };
|
|
32
32
|
}
|
|
33
33
|
}
|
|
34
34
|
exports.ProductSummaryProductResDto = ProductSummaryProductResDto;
|
|
@@ -14,6 +14,7 @@ export declare class PortInOperator {
|
|
|
14
14
|
}
|
|
15
15
|
export declare class TVBundle {
|
|
16
16
|
displayName: string;
|
|
17
|
+
displayNameB2B: string;
|
|
17
18
|
}
|
|
18
19
|
export declare class ContractPrice {
|
|
19
20
|
promoFirstMonth: number;
|
|
@@ -68,3 +69,8 @@ export interface AdditionalMobileBundle {
|
|
|
68
69
|
donorOperator: string;
|
|
69
70
|
};
|
|
70
71
|
}
|
|
72
|
+
export declare class VoipProduct {
|
|
73
|
+
displayName: string;
|
|
74
|
+
displayValue: string;
|
|
75
|
+
rentingValue: string;
|
|
76
|
+
}
|
|
@@ -10,7 +10,7 @@ class PortInOperator {
|
|
|
10
10
|
exports.PortInOperator = PortInOperator;
|
|
11
11
|
class TVBundle {
|
|
12
12
|
static _OPENAPI_METADATA_FACTORY() {
|
|
13
|
-
return { displayName: { required: true, type: () => String } };
|
|
13
|
+
return { displayName: { required: true, type: () => String }, displayNameB2B: { required: true, type: () => String } };
|
|
14
14
|
}
|
|
15
15
|
}
|
|
16
16
|
exports.TVBundle = TVBundle;
|