@dascompany/product 4.5.14 → 4.5.16

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
@@ -44,6 +44,7 @@ import PersonalDataRow from "./types/rows/PersonalDataRow";
44
44
  import ProductRow from "./types/rows/ProductRow";
45
45
  import StatusRow from "./types/rows/StatusRow";
46
46
  import OrderHashRow from './types/rows/OrderHashRow';
47
+ import OrderPaymentDetailsRow from './types/rows/OrderPaymentDetailsRow';
47
48
  import AdminI from "./types/AdminI";
48
49
  import OrderI from "./types/OrderI";
49
50
  import OrderHashI from './types/OrderConfirmationTypeE';
@@ -52,4 +53,4 @@ import ClientAccountI from "./types/ClientAccountI";
52
53
  import FileConnectionI from "./types/FileConnectionI";
53
54
  import ChoiceTypeE from './types/ChoiceTypeE';
54
55
  import OrderConfirmationTypeE from './types/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 };
56
+ 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, OrderPaymentDetailsRow, 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 };
@@ -8,7 +8,6 @@ export default interface OrderI {
8
8
  clientId: string;
9
9
  deliveryDetailsId: string;
10
10
  companyDetailsId: string;
11
- paymentDetailsId: string;
12
11
  invoice: boolean;
13
12
  zsiId: string;
14
13
  status: StatusI;
@@ -0,0 +1,4 @@
1
+ export default interface OrderPaymentDetailsRow {
2
+ payment_details_id: string;
3
+ order_id: string;
4
+ }
@@ -0,0 +1 @@
1
+ export {};
@@ -7,7 +7,7 @@ export default interface OrderRow {
7
7
  client_id: string;
8
8
  delivery_details_id: string;
9
9
  company_details_id: string;
10
- payment_details_id: string;
10
+ additional_information: string;
11
11
  invoice: boolean;
12
12
  zsi_id: string;
13
13
  status_id: string;
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@dascompany/product",
3
- "version": "4.5.14",
3
+ "version": "4.5.16",
4
4
  "main": "dist/index.js",
5
5
  "types": "dist/index.d.ts",
6
6