@vini-wine/admin-core-models 1.1.45 → 1.1.46
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.mts +3 -0
- package/dist/index.d.ts +3 -0
- package/package.json +1 -1
package/dist/index.d.mts
CHANGED
|
@@ -512,6 +512,9 @@ interface OrderItemModel extends UUID {
|
|
|
512
512
|
invoiceReceived: boolean;
|
|
513
513
|
goodsShipped: boolean;
|
|
514
514
|
invoiceSent: boolean;
|
|
515
|
+
invoiceReceivedAt: Date | null;
|
|
516
|
+
goodsShippedAt: Date | null;
|
|
517
|
+
invoiceSentAt: Date | null;
|
|
515
518
|
amountFC: PriceModel;
|
|
516
519
|
order?: OrderModel;
|
|
517
520
|
vintageProducts?: VintageProductModel[];
|
package/dist/index.d.ts
CHANGED
|
@@ -512,6 +512,9 @@ interface OrderItemModel extends UUID {
|
|
|
512
512
|
invoiceReceived: boolean;
|
|
513
513
|
goodsShipped: boolean;
|
|
514
514
|
invoiceSent: boolean;
|
|
515
|
+
invoiceReceivedAt: Date | null;
|
|
516
|
+
goodsShippedAt: Date | null;
|
|
517
|
+
invoiceSentAt: Date | null;
|
|
515
518
|
amountFC: PriceModel;
|
|
516
519
|
order?: OrderModel;
|
|
517
520
|
vintageProducts?: VintageProductModel[];
|