@burdenoff/microfe-store 2026.831.1 → 2026.912.1
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/generated/global-operations.d.ts +7 -0
- package/dist/generated/global-operations.js +6 -0
- package/dist/generated/global-operations.js.map +1 -1
- package/dist/hooks/useOrders.d.ts +16 -0
- package/dist/hooks/useOrders.js.map +1 -1
- package/dist/pages/OrdersPage.js +213 -201
- package/dist/pages/OrdersPage.js.map +1 -1
- package/dist/providers/StoreProvider.js +35 -35
- package/dist/providers/StoreProvider.js.map +1 -1
- package/package.json +1 -1
|
@@ -1035,6 +1035,13 @@ export type GetMyOrdersQuery = {
|
|
|
1035
1035
|
lineItems: Record<string, unknown>;
|
|
1036
1036
|
createdAt: string;
|
|
1037
1037
|
updatedAt: string;
|
|
1038
|
+
transaction?: {
|
|
1039
|
+
__typename?: 'Transaction';
|
|
1040
|
+
id: string;
|
|
1041
|
+
currency: string;
|
|
1042
|
+
amount: number;
|
|
1043
|
+
metadata?: Record<string, unknown> | null;
|
|
1044
|
+
} | null;
|
|
1038
1045
|
fulfillment?: {
|
|
1039
1046
|
__typename?: 'OrderFulfillment';
|
|
1040
1047
|
status: Types.FulfillmentStatus;
|