@dascompany/product 4.5.4 → 4.5.5

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 CHANGED
@@ -4,6 +4,7 @@ import CompanyDetailsI from "./types/CompanyDetailsI";
4
4
  import DeliveryDetailsI from "./types/DeliveryDetailsI";
5
5
  import DeliveryMethodI from "./types/DeliveryMethodI";
6
6
  import DeliveryMethodTypeE from "./types/DeliveryMethodTypeE";
7
+ import DeliveryMensE from "./types/DeliveryMensE";
7
8
  import DeliveryStatusTypeE from "./types/DeliveryStatusTypeE";
8
9
  import PaymentDetailsI from "./types/PaymentDetailsI";
9
10
  import PaymentMethodE from "./types/PaymentMethodE";
@@ -49,4 +50,4 @@ import ClientAccountI from "./types/ClientAccountI";
49
50
  import FileConnectionI from "./types/FileConnectionI";
50
51
  import ChoiceTypeE from './types/ChoiceTypeE';
51
52
  import OrderConfirmationTypeE from './types/OrderConfirmationTypeE';
52
- export { AccountCartRow, AccountCompanyDetailsRow, AccountDeliveryDetailsRow, AddressRow, AdminRow, ClientAccountRow, CompanyDataRow, CompanyDetailsRow, DeliveryDetailsRow, DeliveryMethodRow, DeliveryStatusRow, FileConnectionRow, FileRow, MarketPlaceRow, OrderProductRow, OrderRow, PaymentDetailsRow, PaymentMethodRow, PaymentStatusRow, PersonalDataRow, ProductRow, StatusRow, OrderHashRow, AdminI, AddressI, CompanyDetailsI, DeliveryDetailsI, DeliveryMethodI, DeliveryMethodTypeE, DeliveryStatusTypeE, PaymentDetailsI, PaymentMethodE, PaymentMethodI, PersonalDataI, PaymentStatusE, OrderI, OrderHashI, OrderProductI, StatusI, OrderStatusTypeE, ProductI, FileI, FileConnectionTypeE, CompanyDataI, PriceI, MarketPlaceI, ClaimI, ClientAccountI, FileConnectionI, ChoiceTypeE, OrderConfirmationTypeE };
53
+ export { AccountCartRow, AccountCompanyDetailsRow, AccountDeliveryDetailsRow, AddressRow, AdminRow, ClientAccountRow, CompanyDataRow, CompanyDetailsRow, DeliveryDetailsRow, DeliveryMethodRow, DeliveryStatusRow, FileConnectionRow, FileRow, MarketPlaceRow, OrderProductRow, OrderRow, PaymentDetailsRow, PaymentMethodRow, PaymentStatusRow, PersonalDataRow, ProductRow, StatusRow, OrderHashRow, AdminI, AddressI, CompanyDetailsI, DeliveryDetailsI, DeliveryMethodI, DeliveryMethodTypeE, DeliveryMensE, DeliveryStatusTypeE, PaymentDetailsI, PaymentMethodE, PaymentMethodI, PersonalDataI, PaymentStatusE, OrderI, OrderHashI, OrderProductI, StatusI, OrderStatusTypeE, ProductI, FileI, FileConnectionTypeE, CompanyDataI, PriceI, MarketPlaceI, ClaimI, ClientAccountI, FileConnectionI, ChoiceTypeE, OrderConfirmationTypeE };
package/dist/index.js CHANGED
@@ -1,4 +1,5 @@
1
1
  import DeliveryMethodTypeE from "./types/DeliveryMethodTypeE";
2
+ import DeliveryMensE from "./types/DeliveryMensE";
2
3
  import DeliveryStatusTypeE from "./types/DeliveryStatusTypeE";
3
4
  import PaymentMethodE from "./types/PaymentMethodE";
4
5
  import PaymentStatusE from './types/PaymentStatusE';
@@ -7,4 +8,4 @@ import FileConnectionTypeE from './types/FileConnectionTypeE';
7
8
  import OrderHashI from './types/OrderConfirmationTypeE';
8
9
  import ChoiceTypeE from './types/ChoiceTypeE';
9
10
  import OrderConfirmationTypeE from './types/OrderConfirmationTypeE';
10
- export { DeliveryMethodTypeE, DeliveryStatusTypeE, PaymentMethodE, PaymentStatusE, OrderHashI, OrderStatusTypeE, FileConnectionTypeE, ChoiceTypeE, OrderConfirmationTypeE };
11
+ export { DeliveryMethodTypeE, DeliveryMensE, DeliveryStatusTypeE, PaymentMethodE, PaymentStatusE, OrderHashI, OrderStatusTypeE, FileConnectionTypeE, ChoiceTypeE, OrderConfirmationTypeE };
@@ -0,0 +1,5 @@
1
+ declare enum DeliveryMensE {
2
+ raben = 1,
3
+ ups = 2
4
+ }
5
+ export default DeliveryMensE;
@@ -0,0 +1,6 @@
1
+ var DeliveryMensE;
2
+ (function (DeliveryMensE) {
3
+ DeliveryMensE[DeliveryMensE["raben"] = 1] = "raben";
4
+ DeliveryMensE[DeliveryMensE["ups"] = 2] = "ups";
5
+ })(DeliveryMensE || (DeliveryMensE = {}));
6
+ export default DeliveryMensE;
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@dascompany/product",
3
- "version": "4.5.4",
3
+ "version": "4.5.5",
4
4
  "main": "dist/index.js",
5
5
  "types": "dist/index.d.ts",
6
6