@dascompany/product 4.5.31 → 4.5.32
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/index.d.ts +2 -1
- package/dist/types/enums/ChoiceTypeE.d.ts +5 -1
- package/dist/types/enums/ChoiceTypeE.js +4 -0
- package/dist/types/interfaces/product/PromotionI.d.ts +8 -2
- package/dist/types/interfaces/product/PromotionalListProductsI.d.ts +4 -0
- package/dist/types/interfaces/product/PromotionalListProductsI.js +1 -0
- package/dist/types/rows/product/PromotionListProductsRow copy.d.ts +4 -0
- package/dist/types/rows/product/PromotionListProductsRow copy.js +1 -0
- package/package.json +1 -1
package/dist/index.d.ts
CHANGED
|
@@ -17,6 +17,7 @@ import OrderStatusTypeE from "./types/enums/OrderStatusTypeE";
|
|
|
17
17
|
import ProductI from './types/interfaces/product/ProductI';
|
|
18
18
|
import PromotionI from './types/interfaces/product/PromotionI';
|
|
19
19
|
import PromotionDiscountI from './types/interfaces/product/PromotionDiscountI';
|
|
20
|
+
import PromotionalListProductsI from './types/interfaces/product/PromotionalListProductsI';
|
|
20
21
|
import FileI from "./types/interfaces/FileI";
|
|
21
22
|
import FileConnectionTypeE from './types/enums/FileConnectionTypeE';
|
|
22
23
|
import CompanyDataI from "./types/interfaces/CompanyDataI";
|
|
@@ -61,4 +62,4 @@ import ClientAccountI from "./types/interfaces/ClientAccountI";
|
|
|
61
62
|
import FileConnectionI from "./types/interfaces/FileConnectionI";
|
|
62
63
|
import ChoiceTypeE from './types/enums/ChoiceTypeE';
|
|
63
64
|
import OrderConfirmationTypeE from './types/enums/OrderConfirmationTypeE';
|
|
64
|
-
export { AccountCartRow, AccountCompanyDetailsRow, AccountDeliveryDetailsRow, AddressRow, AdminRow, ClientAccountRow, CompanyDataRow, CompanyDetailsRow, DeliveryDetailsRow, DeliveryDetailsMensRow, DeliveryMethodRow, DeliveryStatusRow, FileConnectionRow, FileRow, MarketPlaceRow, OrderProductRow, OrderRow, PaymentDetailsRow, PaymentMethodRow, PaymentStatusRow, PersonalDataRow, ProductRow, PromotionAudienceRolesTypeRow, PromotionAudienceUsersTypeRow, PromotionCodesRow, PromotionDiscountRow, PromotionListProductsRow, PromotionRow, StatusRow, OrderHashRow, OrderPaymentDetailsRow, AdminI, AddressI, CompanyDetailsI, DeliveryDetailsI, DeliveryMenI, DeliveryMethodI, DeliveryMethodTypeE, DeliveryMensE, DeliveryStatusTypeE, PaymentDetailsI, PaymentMethodsE, PaymentMethodI, PersonalDataI, PaymentStatusE, OrderI, OrderHashI, OrderProductI, StatusI, OrderStatusTypeE, ProductI, PromotionI, PromotionDiscountI, FileI, FileConnectionTypeE, CompanyDataI, PriceI, MarketPlaceI, ClaimI, ClientAccountI, FileConnectionI, ChoiceTypeE, OrderConfirmationTypeE };
|
|
65
|
+
export { AccountCartRow, AccountCompanyDetailsRow, AccountDeliveryDetailsRow, AddressRow, AdminRow, ClientAccountRow, CompanyDataRow, CompanyDetailsRow, DeliveryDetailsRow, DeliveryDetailsMensRow, DeliveryMethodRow, DeliveryStatusRow, FileConnectionRow, FileRow, MarketPlaceRow, OrderProductRow, OrderRow, PaymentDetailsRow, PaymentMethodRow, PaymentStatusRow, PersonalDataRow, ProductRow, PromotionAudienceRolesTypeRow, PromotionAudienceUsersTypeRow, PromotionCodesRow, PromotionDiscountRow, PromotionListProductsRow, PromotionRow, StatusRow, OrderHashRow, OrderPaymentDetailsRow, AdminI, AddressI, CompanyDetailsI, DeliveryDetailsI, DeliveryMenI, DeliveryMethodI, DeliveryMethodTypeE, DeliveryMensE, DeliveryStatusTypeE, PaymentDetailsI, PaymentMethodsE, PaymentMethodI, PersonalDataI, PaymentStatusE, OrderI, OrderHashI, OrderProductI, StatusI, OrderStatusTypeE, ProductI, PromotionI, PromotionDiscountI, PromotionalListProductsI, FileI, FileConnectionTypeE, CompanyDataI, PriceI, MarketPlaceI, ClaimI, ClientAccountI, FileConnectionI, ChoiceTypeE, OrderConfirmationTypeE };
|
|
@@ -3,6 +3,10 @@ declare enum ChoiceTypeE {
|
|
|
3
3
|
TentCoverType = "tentCoverType",
|
|
4
4
|
TentCoverWindowsType = "tentCoverWindowsType",
|
|
5
5
|
Type = "type",
|
|
6
|
-
Color = "color"
|
|
6
|
+
Color = "color",
|
|
7
|
+
PromotionList = "promotionList",
|
|
8
|
+
PromotionAudienceType = "promotionAudienceType",
|
|
9
|
+
PromotionDiscountItemType = "promotionDiscountItemType",
|
|
10
|
+
PromotionDiscountType = "promotionDiscountType"
|
|
7
11
|
}
|
|
8
12
|
export default ChoiceTypeE;
|
|
@@ -5,5 +5,9 @@ var ChoiceTypeE;
|
|
|
5
5
|
ChoiceTypeE["TentCoverWindowsType"] = "tentCoverWindowsType";
|
|
6
6
|
ChoiceTypeE["Type"] = "type";
|
|
7
7
|
ChoiceTypeE["Color"] = "color";
|
|
8
|
+
ChoiceTypeE["PromotionList"] = "promotionList";
|
|
9
|
+
ChoiceTypeE["PromotionAudienceType"] = "promotionAudienceType";
|
|
10
|
+
ChoiceTypeE["PromotionDiscountItemType"] = "promotionDiscountItemType";
|
|
11
|
+
ChoiceTypeE["PromotionDiscountType"] = "promotionDiscountType";
|
|
8
12
|
})(ChoiceTypeE || (ChoiceTypeE = {}));
|
|
9
13
|
export default ChoiceTypeE;
|
|
@@ -11,11 +11,17 @@ export default interface PromotionI {
|
|
|
11
11
|
startDate: string;
|
|
12
12
|
endDate: string;
|
|
13
13
|
activated: boolean;
|
|
14
|
-
rulesOutList:
|
|
15
|
-
includedList:
|
|
14
|
+
rulesOutList: ListI;
|
|
15
|
+
includedList: ListI;
|
|
16
16
|
responsiblePerson: {
|
|
17
17
|
id: string;
|
|
18
18
|
email: string;
|
|
19
19
|
};
|
|
20
20
|
addingPerson: AdminI;
|
|
21
21
|
}
|
|
22
|
+
interface ListI {
|
|
23
|
+
id: string;
|
|
24
|
+
name: string;
|
|
25
|
+
productIds: string[];
|
|
26
|
+
}
|
|
27
|
+
export {};
|
|
@@ -0,0 +1 @@
|
|
|
1
|
+
export {};
|
|
@@ -0,0 +1 @@
|
|
|
1
|
+
export {};
|