@dascompany/product 4.5.6 → 4.5.8

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
@@ -29,6 +29,7 @@ import ClientAccountRow from "./types/rows/ClientAccountRow";
29
29
  import CompanyDataRow from "./types/rows/CompanyDataRow";
30
30
  import CompanyDetailsRow from "./types/rows/CompanyDetailsRow";
31
31
  import DeliveryDetailsRow from "./types/rows/DeliveryDetailsRow";
32
+ import DeliveryDetailsMensRow from './types/rows/DeliveryDetailsMensRow';
32
33
  import DeliveryMethodRow from "./types/rows/DeliveryMethodRow";
33
34
  import DeliveryStatusRow from "./types/rows/DeliveryStatusRow";
34
35
  import FileConnectionRow from "./types/rows/FileConnectionRow";
@@ -51,4 +52,4 @@ import ClientAccountI from "./types/ClientAccountI";
51
52
  import FileConnectionI from "./types/FileConnectionI";
52
53
  import ChoiceTypeE from './types/ChoiceTypeE';
53
54
  import OrderConfirmationTypeE from './types/OrderConfirmationTypeE';
54
- 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, DeliveryMenI, 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 };
55
+ export { AccountCartRow, AccountCompanyDetailsRow, AccountDeliveryDetailsRow, AddressRow, AdminRow, ClientAccountRow, CompanyDataRow, CompanyDetailsRow, DeliveryDetailsRow, DeliveryDetailsMensRow, DeliveryMethodRow, DeliveryStatusRow, FileConnectionRow, FileRow, MarketPlaceRow, OrderProductRow, OrderRow, PaymentDetailsRow, PaymentMethodRow, PaymentStatusRow, PersonalDataRow, ProductRow, StatusRow, OrderHashRow, AdminI, AddressI, CompanyDetailsI, DeliveryDetailsI, DeliveryMenI, 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 };
@@ -1,4 +1,5 @@
1
1
  import AddressI from "./AddressI";
2
+ import DeliveryMenI from "./DeliveryMenI";
2
3
  import DeliveryMethodI from "./DeliveryMethodI";
3
4
  import PersonalDataI from "./PersonalDataI";
4
5
  export default interface DeliveryDetailsI {
@@ -6,4 +7,5 @@ export default interface DeliveryDetailsI {
6
7
  personalData: PersonalDataI | null;
7
8
  address: AddressI | null;
8
9
  deliveryMethod: DeliveryMethodI | null;
10
+ deliveryDetailsMens: DeliveryMenI | null;
9
11
  }
@@ -1,5 +1,5 @@
1
1
  declare enum DeliveryMensE {
2
- raben = 1,
3
- ups = 2
2
+ raben = "Raben",
3
+ ups = "UPS"
4
4
  }
5
5
  export default DeliveryMensE;
@@ -1,6 +1,6 @@
1
1
  var DeliveryMensE;
2
2
  (function (DeliveryMensE) {
3
- DeliveryMensE[DeliveryMensE["raben"] = 1] = "raben";
4
- DeliveryMensE[DeliveryMensE["ups"] = 2] = "ups";
3
+ DeliveryMensE["raben"] = "Raben";
4
+ DeliveryMensE["ups"] = "UPS";
5
5
  })(DeliveryMensE || (DeliveryMensE = {}));
6
6
  export default DeliveryMensE;
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@dascompany/product",
3
- "version": "4.5.6",
3
+ "version": "4.5.8",
4
4
  "main": "dist/index.js",
5
5
  "types": "dist/index.d.ts",
6
6