@dascompany/product 4.2.19 → 4.3.0
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 +23 -1
- package/dist/reader/OrderStatusReader.js +1 -1
- package/package.json +1 -1
package/dist/index.d.ts
CHANGED
|
@@ -78,4 +78,26 @@ import PriceI from "./types/PriceI";
|
|
|
78
78
|
import createQueryOptionsForId from "./utils/createQueryOptionsForId";
|
|
79
79
|
import CilentAccountExistWithThisEmail from "./lib/errors/CilentAccountExistWithThisEmail";
|
|
80
80
|
import MarketPlaceI from "./types/MarketPlaceI";
|
|
81
|
-
|
|
81
|
+
import AccountCartRow from "./types/rows/AccountCartRow";
|
|
82
|
+
import AccountCompanyDetailsRow from "./types/rows/AccountCompanyDetailsRow";
|
|
83
|
+
import AccountDeliveryDetailsRow from "./types/rows/AccountDeliveryDetailsRow";
|
|
84
|
+
import AddressRow from "./types/rows/AddressRow";
|
|
85
|
+
import AdminRow from "./types/rows/AdminRow";
|
|
86
|
+
import ClientAccountRow from "./types/rows/ClientAccountRow";
|
|
87
|
+
import CompanyDataRow from "./types/rows/CompanyDataRow";
|
|
88
|
+
import CompanyDetailsRow from "./types/rows/CompanyDetailsRow";
|
|
89
|
+
import DeliveryDetailsRow from "./types/rows/DeliveryDetailsRow";
|
|
90
|
+
import DeliveryMethodRow from "./types/rows/DeliveryMethodRow";
|
|
91
|
+
import DeliveryStatusRow from "./types/rows/DeliveryStatusRow";
|
|
92
|
+
import FileConnectionRow from "./types/rows/FileConnectionRow";
|
|
93
|
+
import FileRow from "./types/rows/FileRow";
|
|
94
|
+
import MarketPlaceRow from "./types/rows/MarketPlaceRow";
|
|
95
|
+
import OrderProductRow from "./types/rows/OrderProductRow";
|
|
96
|
+
import OrderRow from "./types/rows/OrderRow";
|
|
97
|
+
import PaymentDetailsRow from "./types/rows/PaymentDetailsRow";
|
|
98
|
+
import PaymentMethodRow from "./types/rows/PaymentMethodRow";
|
|
99
|
+
import PaymentStatusRow from "./types/rows/PaymentStatusRow";
|
|
100
|
+
import PersonalDataRow from "./types/rows/PersonalDataRow";
|
|
101
|
+
import ProductRow from "./types/rows/ProductRow";
|
|
102
|
+
import StatusRow from "./types/rows/StatusRow";
|
|
103
|
+
export { AccountCartRow, AccountCompanyDetailsRow, AccountDeliveryDetailsRow, AddressRow, AdminRow, ClientAccountRow, CompanyDataRow, CompanyDetailsRow, DeliveryDetailsRow, DeliveryMethodRow, DeliveryStatusRow, FileConnectionRow, FileRow, MarketPlaceRow, OrderProductRow, OrderRow, PaymentDetailsRow, PaymentMethodRow, PaymentStatusRow, PersonalDataRow, ProductRow, StatusRow, Client, ClientAccountRepo, ClientAccountReader, AccountDeliveryDetailsReader, AccountCompanyDetailsReader, AccountCart, AccountCartReader, Admin, AdminRepo, AdminReader, Address, AddressI, AddressesRepo, AddressesReader, PersonalData, PersonalDataRepo, PersonalDataReader, PersonalDataI, CompanyDetails, CompanyDetailsRepo, CompanyDetailsReader, CompanyDetailsI, DeliveryDetails, DeliveryDetailsRepo, DeliveryDetailsReader, DeliveryDetailsI, DeliveryMethods, DeliveryMethodRepo, DeliveryMethodReader, DeliveryMethodI, DeliveryMethodTypeE, DeliveryStatus, DeliveryStatusReader, DeliveryStatusTypeE, PaymentDetails, PaymentDetailsRepo, PaymentDetailsReader, PaymentDetailsI, PaymentMethods, PaymentMethodRepo, PaymentMethodReader, PaymentMethodE, PaymentMethodI, PaymentStatus, PaymentStatusesReader, PaymentStatusE, Order, OrderRepo, OrderReader, OrderProduct, OrderProductsRepo, OrderProductsReader, OrderProductI, Status, OrderStatusReader, StatusI, OrderStatusTypeE, StatusTypesReader, ProductI, Product, ProductRepo, ProductReader, File, FilesRepo, FilesReader, FileI, FileConnection, FileConnectionsRepo, FileConnectionsReader, FileConnectionTypeE, CompanyData, CompanyDataRepo, CompanyDataReader, CompanyDataI, MarketPlacesReader, PriceConverter, PriceI, createQueryOptionsForId, CilentAccountExistWithThisEmail, MarketPlaceI };
|