@dascompany/product 4.5.4 → 4.5.6

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
@@ -3,7 +3,9 @@ import PersonalDataI from "./types/PersonalDataI";
3
3
  import CompanyDetailsI from "./types/CompanyDetailsI";
4
4
  import DeliveryDetailsI from "./types/DeliveryDetailsI";
5
5
  import DeliveryMethodI from "./types/DeliveryMethodI";
6
+ import DeliveryMenI from "./types/DeliveryMenI";
6
7
  import DeliveryMethodTypeE from "./types/DeliveryMethodTypeE";
8
+ import DeliveryMensE from "./types/DeliveryMensE";
7
9
  import DeliveryStatusTypeE from "./types/DeliveryStatusTypeE";
8
10
  import PaymentDetailsI from "./types/PaymentDetailsI";
9
11
  import PaymentMethodE from "./types/PaymentMethodE";
@@ -49,4 +51,4 @@ import ClientAccountI from "./types/ClientAccountI";
49
51
  import FileConnectionI from "./types/FileConnectionI";
50
52
  import ChoiceTypeE from './types/ChoiceTypeE';
51
53
  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 };
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 };
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
+ export default interface DeliveryMenI {
2
+ deliveryDetailsId: string;
3
+ deliveryMenId: string;
4
+ shipmentNumber: string;
5
+ }
@@ -0,0 +1 @@
1
+ export {};
@@ -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;
@@ -0,0 +1,5 @@
1
+ export default interface DeliveryDetailsMensRow {
2
+ delivery_details_id: string;
3
+ delivery_men_id: string;
4
+ shipment_number: string;
5
+ }
@@ -0,0 +1 @@
1
+ export {};
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@dascompany/product",
3
- "version": "4.5.4",
3
+ "version": "4.5.6",
4
4
  "main": "dist/index.js",
5
5
  "types": "dist/index.d.ts",
6
6