@medusajs/draft-order 2.10.4-snapshot-20251014093346 → 2.11.0-preview-20251014105730
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/.medusa/server/src/admin/index.js +103 -103
- package/.medusa/server/src/admin/index.mjs +103 -103
- package/package.json +16 -16
|
@@ -9763,95 +9763,6 @@ const BillingAddressForm = ({ order }) => {
|
|
|
9763
9763
|
) });
|
|
9764
9764
|
};
|
|
9765
9765
|
const schema$5 = addressSchema;
|
|
9766
|
-
const CustomItems = () => {
|
|
9767
|
-
return /* @__PURE__ */ jsxRuntime.jsxs(RouteDrawer, { children: [
|
|
9768
|
-
/* @__PURE__ */ jsxRuntime.jsx(RouteDrawer.Header, { children: /* @__PURE__ */ jsxRuntime.jsx(RouteDrawer.Title, { asChild: true, children: /* @__PURE__ */ jsxRuntime.jsx(ui.Heading, { children: "Edit Custom Items" }) }) }),
|
|
9769
|
-
/* @__PURE__ */ jsxRuntime.jsx(CustomItemsForm, {})
|
|
9770
|
-
] });
|
|
9771
|
-
};
|
|
9772
|
-
const CustomItemsForm = () => {
|
|
9773
|
-
const form = reactHookForm.useForm({
|
|
9774
|
-
resolver: zod.zodResolver(schema$4)
|
|
9775
|
-
});
|
|
9776
|
-
return /* @__PURE__ */ jsxRuntime.jsx(RouteDrawer.Form, { form, children: /* @__PURE__ */ jsxRuntime.jsxs(KeyboundForm, { className: "flex flex-1 flex-col", children: [
|
|
9777
|
-
/* @__PURE__ */ jsxRuntime.jsx(RouteDrawer.Body, {}),
|
|
9778
|
-
/* @__PURE__ */ jsxRuntime.jsx(RouteDrawer.Footer, { children: /* @__PURE__ */ jsxRuntime.jsxs("div", { className: "flex justify-end gap-2", children: [
|
|
9779
|
-
/* @__PURE__ */ jsxRuntime.jsx(RouteDrawer.Close, { asChild: true, children: /* @__PURE__ */ jsxRuntime.jsx(ui.Button, { size: "small", variant: "secondary", children: "Cancel" }) }),
|
|
9780
|
-
/* @__PURE__ */ jsxRuntime.jsx(ui.Button, { size: "small", type: "submit", children: "Save" })
|
|
9781
|
-
] }) })
|
|
9782
|
-
] }) });
|
|
9783
|
-
};
|
|
9784
|
-
const schema$4 = objectType({
|
|
9785
|
-
email: stringType().email()
|
|
9786
|
-
});
|
|
9787
|
-
const Email = () => {
|
|
9788
|
-
const { id } = reactRouterDom.useParams();
|
|
9789
|
-
const { order, isPending, isError, error } = useOrder(id, {
|
|
9790
|
-
fields: "+email"
|
|
9791
|
-
});
|
|
9792
|
-
if (isError) {
|
|
9793
|
-
throw error;
|
|
9794
|
-
}
|
|
9795
|
-
const isReady = !isPending && !!order;
|
|
9796
|
-
return /* @__PURE__ */ jsxRuntime.jsxs(RouteDrawer, { children: [
|
|
9797
|
-
/* @__PURE__ */ jsxRuntime.jsxs(RouteDrawer.Header, { children: [
|
|
9798
|
-
/* @__PURE__ */ jsxRuntime.jsx(RouteDrawer.Title, { asChild: true, children: /* @__PURE__ */ jsxRuntime.jsx(ui.Heading, { children: "Edit Email" }) }),
|
|
9799
|
-
/* @__PURE__ */ jsxRuntime.jsx(RouteDrawer.Description, { asChild: true, children: /* @__PURE__ */ jsxRuntime.jsx("span", { className: "sr-only", children: "Edit the email for the draft order" }) })
|
|
9800
|
-
] }),
|
|
9801
|
-
isReady && /* @__PURE__ */ jsxRuntime.jsx(EmailForm, { order })
|
|
9802
|
-
] });
|
|
9803
|
-
};
|
|
9804
|
-
const EmailForm = ({ order }) => {
|
|
9805
|
-
const form = reactHookForm.useForm({
|
|
9806
|
-
defaultValues: {
|
|
9807
|
-
email: order.email ?? ""
|
|
9808
|
-
},
|
|
9809
|
-
resolver: zod.zodResolver(schema$3)
|
|
9810
|
-
});
|
|
9811
|
-
const { mutateAsync, isPending } = useUpdateDraftOrder(order.id);
|
|
9812
|
-
const { handleSuccess } = useRouteModal();
|
|
9813
|
-
const onSubmit = form.handleSubmit(async (data) => {
|
|
9814
|
-
await mutateAsync(
|
|
9815
|
-
{ email: data.email },
|
|
9816
|
-
{
|
|
9817
|
-
onSuccess: () => {
|
|
9818
|
-
handleSuccess();
|
|
9819
|
-
},
|
|
9820
|
-
onError: (error) => {
|
|
9821
|
-
ui.toast.error(error.message);
|
|
9822
|
-
}
|
|
9823
|
-
}
|
|
9824
|
-
);
|
|
9825
|
-
});
|
|
9826
|
-
return /* @__PURE__ */ jsxRuntime.jsx(RouteDrawer.Form, { form, children: /* @__PURE__ */ jsxRuntime.jsxs(
|
|
9827
|
-
KeyboundForm,
|
|
9828
|
-
{
|
|
9829
|
-
className: "flex flex-1 flex-col overflow-hidden",
|
|
9830
|
-
onSubmit,
|
|
9831
|
-
children: [
|
|
9832
|
-
/* @__PURE__ */ jsxRuntime.jsx(RouteDrawer.Body, { className: "flex flex-col gap-y-6 overflow-y-auto", children: /* @__PURE__ */ jsxRuntime.jsx(
|
|
9833
|
-
Form$2.Field,
|
|
9834
|
-
{
|
|
9835
|
-
control: form.control,
|
|
9836
|
-
name: "email",
|
|
9837
|
-
render: ({ field }) => /* @__PURE__ */ jsxRuntime.jsxs(Form$2.Item, { children: [
|
|
9838
|
-
/* @__PURE__ */ jsxRuntime.jsx(Form$2.Label, { children: "Email" }),
|
|
9839
|
-
/* @__PURE__ */ jsxRuntime.jsx(Form$2.Control, { children: /* @__PURE__ */ jsxRuntime.jsx(ui.Input, { ...field }) }),
|
|
9840
|
-
/* @__PURE__ */ jsxRuntime.jsx(Form$2.ErrorMessage, {})
|
|
9841
|
-
] })
|
|
9842
|
-
}
|
|
9843
|
-
) }),
|
|
9844
|
-
/* @__PURE__ */ jsxRuntime.jsx(RouteDrawer.Footer, { children: /* @__PURE__ */ jsxRuntime.jsxs("div", { className: "flex justify-end gap-2", children: [
|
|
9845
|
-
/* @__PURE__ */ jsxRuntime.jsx(RouteDrawer.Close, { asChild: true, children: /* @__PURE__ */ jsxRuntime.jsx(ui.Button, { size: "small", variant: "secondary", children: "Cancel" }) }),
|
|
9846
|
-
/* @__PURE__ */ jsxRuntime.jsx(ui.Button, { size: "small", type: "submit", isLoading: isPending, children: "Save" })
|
|
9847
|
-
] }) })
|
|
9848
|
-
]
|
|
9849
|
-
}
|
|
9850
|
-
) });
|
|
9851
|
-
};
|
|
9852
|
-
const schema$3 = objectType({
|
|
9853
|
-
email: stringType().email()
|
|
9854
|
-
});
|
|
9855
9766
|
const NumberInput = React.forwardRef(
|
|
9856
9767
|
({
|
|
9857
9768
|
value,
|
|
@@ -11481,7 +11392,7 @@ const SalesChannelForm = ({ order }) => {
|
|
|
11481
11392
|
defaultValues: {
|
|
11482
11393
|
sales_channel_id: order.sales_channel_id || ""
|
|
11483
11394
|
},
|
|
11484
|
-
resolver: zod.zodResolver(schema$
|
|
11395
|
+
resolver: zod.zodResolver(schema$4)
|
|
11485
11396
|
});
|
|
11486
11397
|
const { mutateAsync, isPending } = useUpdateDraftOrder(order.id);
|
|
11487
11398
|
const { handleSuccess } = useRouteModal();
|
|
@@ -11556,7 +11467,7 @@ const SalesChannelField = ({ control, order }) => {
|
|
|
11556
11467
|
}
|
|
11557
11468
|
);
|
|
11558
11469
|
};
|
|
11559
|
-
const schema$
|
|
11470
|
+
const schema$4 = objectType({
|
|
11560
11471
|
sales_channel_id: stringType().min(1)
|
|
11561
11472
|
});
|
|
11562
11473
|
const STACKED_FOCUS_MODAL_ID = "shipping-form";
|
|
@@ -12398,7 +12309,7 @@ const ShippingAddressForm = ({ order }) => {
|
|
|
12398
12309
|
postal_code: ((_i = order.shipping_address) == null ? void 0 : _i.postal_code) ?? "",
|
|
12399
12310
|
phone: ((_j = order.shipping_address) == null ? void 0 : _j.phone) ?? ""
|
|
12400
12311
|
},
|
|
12401
|
-
resolver: zod.zodResolver(schema$
|
|
12312
|
+
resolver: zod.zodResolver(schema$3)
|
|
12402
12313
|
});
|
|
12403
12314
|
const { mutateAsync, isPending } = useUpdateDraftOrder(order.id);
|
|
12404
12315
|
const { handleSuccess } = useRouteModal();
|
|
@@ -12568,7 +12479,7 @@ const ShippingAddressForm = ({ order }) => {
|
|
|
12568
12479
|
}
|
|
12569
12480
|
) });
|
|
12570
12481
|
};
|
|
12571
|
-
const schema$
|
|
12482
|
+
const schema$3 = addressSchema;
|
|
12572
12483
|
const TransferOwnership = () => {
|
|
12573
12484
|
const { id } = reactRouterDom.useParams();
|
|
12574
12485
|
const { draft_order, isPending, isError, error } = useDraftOrder(id, {
|
|
@@ -12592,7 +12503,7 @@ const TransferOwnershipForm = ({ order }) => {
|
|
|
12592
12503
|
defaultValues: {
|
|
12593
12504
|
customer_id: order.customer_id || ""
|
|
12594
12505
|
},
|
|
12595
|
-
resolver: zod.zodResolver(schema)
|
|
12506
|
+
resolver: zod.zodResolver(schema$2)
|
|
12596
12507
|
});
|
|
12597
12508
|
const { mutateAsync, isPending } = useUpdateDraftOrder(order.id);
|
|
12598
12509
|
const { handleSuccess } = useRouteModal();
|
|
@@ -13042,9 +12953,98 @@ const Illustration = () => {
|
|
|
13042
12953
|
}
|
|
13043
12954
|
);
|
|
13044
12955
|
};
|
|
13045
|
-
const schema = objectType({
|
|
12956
|
+
const schema$2 = objectType({
|
|
13046
12957
|
customer_id: stringType().min(1)
|
|
13047
12958
|
});
|
|
12959
|
+
const CustomItems = () => {
|
|
12960
|
+
return /* @__PURE__ */ jsxRuntime.jsxs(RouteDrawer, { children: [
|
|
12961
|
+
/* @__PURE__ */ jsxRuntime.jsx(RouteDrawer.Header, { children: /* @__PURE__ */ jsxRuntime.jsx(RouteDrawer.Title, { asChild: true, children: /* @__PURE__ */ jsxRuntime.jsx(ui.Heading, { children: "Edit Custom Items" }) }) }),
|
|
12962
|
+
/* @__PURE__ */ jsxRuntime.jsx(CustomItemsForm, {})
|
|
12963
|
+
] });
|
|
12964
|
+
};
|
|
12965
|
+
const CustomItemsForm = () => {
|
|
12966
|
+
const form = reactHookForm.useForm({
|
|
12967
|
+
resolver: zod.zodResolver(schema$1)
|
|
12968
|
+
});
|
|
12969
|
+
return /* @__PURE__ */ jsxRuntime.jsx(RouteDrawer.Form, { form, children: /* @__PURE__ */ jsxRuntime.jsxs(KeyboundForm, { className: "flex flex-1 flex-col", children: [
|
|
12970
|
+
/* @__PURE__ */ jsxRuntime.jsx(RouteDrawer.Body, {}),
|
|
12971
|
+
/* @__PURE__ */ jsxRuntime.jsx(RouteDrawer.Footer, { children: /* @__PURE__ */ jsxRuntime.jsxs("div", { className: "flex justify-end gap-2", children: [
|
|
12972
|
+
/* @__PURE__ */ jsxRuntime.jsx(RouteDrawer.Close, { asChild: true, children: /* @__PURE__ */ jsxRuntime.jsx(ui.Button, { size: "small", variant: "secondary", children: "Cancel" }) }),
|
|
12973
|
+
/* @__PURE__ */ jsxRuntime.jsx(ui.Button, { size: "small", type: "submit", children: "Save" })
|
|
12974
|
+
] }) })
|
|
12975
|
+
] }) });
|
|
12976
|
+
};
|
|
12977
|
+
const schema$1 = objectType({
|
|
12978
|
+
email: stringType().email()
|
|
12979
|
+
});
|
|
12980
|
+
const Email = () => {
|
|
12981
|
+
const { id } = reactRouterDom.useParams();
|
|
12982
|
+
const { order, isPending, isError, error } = useOrder(id, {
|
|
12983
|
+
fields: "+email"
|
|
12984
|
+
});
|
|
12985
|
+
if (isError) {
|
|
12986
|
+
throw error;
|
|
12987
|
+
}
|
|
12988
|
+
const isReady = !isPending && !!order;
|
|
12989
|
+
return /* @__PURE__ */ jsxRuntime.jsxs(RouteDrawer, { children: [
|
|
12990
|
+
/* @__PURE__ */ jsxRuntime.jsxs(RouteDrawer.Header, { children: [
|
|
12991
|
+
/* @__PURE__ */ jsxRuntime.jsx(RouteDrawer.Title, { asChild: true, children: /* @__PURE__ */ jsxRuntime.jsx(ui.Heading, { children: "Edit Email" }) }),
|
|
12992
|
+
/* @__PURE__ */ jsxRuntime.jsx(RouteDrawer.Description, { asChild: true, children: /* @__PURE__ */ jsxRuntime.jsx("span", { className: "sr-only", children: "Edit the email for the draft order" }) })
|
|
12993
|
+
] }),
|
|
12994
|
+
isReady && /* @__PURE__ */ jsxRuntime.jsx(EmailForm, { order })
|
|
12995
|
+
] });
|
|
12996
|
+
};
|
|
12997
|
+
const EmailForm = ({ order }) => {
|
|
12998
|
+
const form = reactHookForm.useForm({
|
|
12999
|
+
defaultValues: {
|
|
13000
|
+
email: order.email ?? ""
|
|
13001
|
+
},
|
|
13002
|
+
resolver: zod.zodResolver(schema)
|
|
13003
|
+
});
|
|
13004
|
+
const { mutateAsync, isPending } = useUpdateDraftOrder(order.id);
|
|
13005
|
+
const { handleSuccess } = useRouteModal();
|
|
13006
|
+
const onSubmit = form.handleSubmit(async (data) => {
|
|
13007
|
+
await mutateAsync(
|
|
13008
|
+
{ email: data.email },
|
|
13009
|
+
{
|
|
13010
|
+
onSuccess: () => {
|
|
13011
|
+
handleSuccess();
|
|
13012
|
+
},
|
|
13013
|
+
onError: (error) => {
|
|
13014
|
+
ui.toast.error(error.message);
|
|
13015
|
+
}
|
|
13016
|
+
}
|
|
13017
|
+
);
|
|
13018
|
+
});
|
|
13019
|
+
return /* @__PURE__ */ jsxRuntime.jsx(RouteDrawer.Form, { form, children: /* @__PURE__ */ jsxRuntime.jsxs(
|
|
13020
|
+
KeyboundForm,
|
|
13021
|
+
{
|
|
13022
|
+
className: "flex flex-1 flex-col overflow-hidden",
|
|
13023
|
+
onSubmit,
|
|
13024
|
+
children: [
|
|
13025
|
+
/* @__PURE__ */ jsxRuntime.jsx(RouteDrawer.Body, { className: "flex flex-col gap-y-6 overflow-y-auto", children: /* @__PURE__ */ jsxRuntime.jsx(
|
|
13026
|
+
Form$2.Field,
|
|
13027
|
+
{
|
|
13028
|
+
control: form.control,
|
|
13029
|
+
name: "email",
|
|
13030
|
+
render: ({ field }) => /* @__PURE__ */ jsxRuntime.jsxs(Form$2.Item, { children: [
|
|
13031
|
+
/* @__PURE__ */ jsxRuntime.jsx(Form$2.Label, { children: "Email" }),
|
|
13032
|
+
/* @__PURE__ */ jsxRuntime.jsx(Form$2.Control, { children: /* @__PURE__ */ jsxRuntime.jsx(ui.Input, { ...field }) }),
|
|
13033
|
+
/* @__PURE__ */ jsxRuntime.jsx(Form$2.ErrorMessage, {})
|
|
13034
|
+
] })
|
|
13035
|
+
}
|
|
13036
|
+
) }),
|
|
13037
|
+
/* @__PURE__ */ jsxRuntime.jsx(RouteDrawer.Footer, { children: /* @__PURE__ */ jsxRuntime.jsxs("div", { className: "flex justify-end gap-2", children: [
|
|
13038
|
+
/* @__PURE__ */ jsxRuntime.jsx(RouteDrawer.Close, { asChild: true, children: /* @__PURE__ */ jsxRuntime.jsx(ui.Button, { size: "small", variant: "secondary", children: "Cancel" }) }),
|
|
13039
|
+
/* @__PURE__ */ jsxRuntime.jsx(ui.Button, { size: "small", type: "submit", isLoading: isPending, children: "Save" })
|
|
13040
|
+
] }) })
|
|
13041
|
+
]
|
|
13042
|
+
}
|
|
13043
|
+
) });
|
|
13044
|
+
};
|
|
13045
|
+
const schema = objectType({
|
|
13046
|
+
email: stringType().email()
|
|
13047
|
+
});
|
|
13048
13048
|
const widgetModule = { widgets: [] };
|
|
13049
13049
|
const routeModule = {
|
|
13050
13050
|
routes: [
|
|
@@ -13069,14 +13069,6 @@ const routeModule = {
|
|
|
13069
13069
|
Component: BillingAddress,
|
|
13070
13070
|
path: "/draft-orders/:id/billing-address"
|
|
13071
13071
|
},
|
|
13072
|
-
{
|
|
13073
|
-
Component: CustomItems,
|
|
13074
|
-
path: "/draft-orders/:id/custom-items"
|
|
13075
|
-
},
|
|
13076
|
-
{
|
|
13077
|
-
Component: Email,
|
|
13078
|
-
path: "/draft-orders/:id/email"
|
|
13079
|
-
},
|
|
13080
13072
|
{
|
|
13081
13073
|
Component: Items,
|
|
13082
13074
|
path: "/draft-orders/:id/items"
|
|
@@ -13104,6 +13096,14 @@ const routeModule = {
|
|
|
13104
13096
|
{
|
|
13105
13097
|
Component: TransferOwnership,
|
|
13106
13098
|
path: "/draft-orders/:id/transfer-ownership"
|
|
13099
|
+
},
|
|
13100
|
+
{
|
|
13101
|
+
Component: CustomItems,
|
|
13102
|
+
path: "/draft-orders/:id/custom-items"
|
|
13103
|
+
},
|
|
13104
|
+
{
|
|
13105
|
+
Component: Email,
|
|
13106
|
+
path: "/draft-orders/:id/email"
|
|
13107
13107
|
}
|
|
13108
13108
|
]
|
|
13109
13109
|
}
|
|
@@ -9757,95 +9757,6 @@ const BillingAddressForm = ({ order }) => {
|
|
|
9757
9757
|
) });
|
|
9758
9758
|
};
|
|
9759
9759
|
const schema$5 = addressSchema;
|
|
9760
|
-
const CustomItems = () => {
|
|
9761
|
-
return /* @__PURE__ */ jsxs(RouteDrawer, { children: [
|
|
9762
|
-
/* @__PURE__ */ jsx(RouteDrawer.Header, { children: /* @__PURE__ */ jsx(RouteDrawer.Title, { asChild: true, children: /* @__PURE__ */ jsx(Heading, { children: "Edit Custom Items" }) }) }),
|
|
9763
|
-
/* @__PURE__ */ jsx(CustomItemsForm, {})
|
|
9764
|
-
] });
|
|
9765
|
-
};
|
|
9766
|
-
const CustomItemsForm = () => {
|
|
9767
|
-
const form = useForm({
|
|
9768
|
-
resolver: zodResolver(schema$4)
|
|
9769
|
-
});
|
|
9770
|
-
return /* @__PURE__ */ jsx(RouteDrawer.Form, { form, children: /* @__PURE__ */ jsxs(KeyboundForm, { className: "flex flex-1 flex-col", children: [
|
|
9771
|
-
/* @__PURE__ */ jsx(RouteDrawer.Body, {}),
|
|
9772
|
-
/* @__PURE__ */ jsx(RouteDrawer.Footer, { children: /* @__PURE__ */ jsxs("div", { className: "flex justify-end gap-2", children: [
|
|
9773
|
-
/* @__PURE__ */ jsx(RouteDrawer.Close, { asChild: true, children: /* @__PURE__ */ jsx(Button, { size: "small", variant: "secondary", children: "Cancel" }) }),
|
|
9774
|
-
/* @__PURE__ */ jsx(Button, { size: "small", type: "submit", children: "Save" })
|
|
9775
|
-
] }) })
|
|
9776
|
-
] }) });
|
|
9777
|
-
};
|
|
9778
|
-
const schema$4 = objectType({
|
|
9779
|
-
email: stringType().email()
|
|
9780
|
-
});
|
|
9781
|
-
const Email = () => {
|
|
9782
|
-
const { id } = useParams();
|
|
9783
|
-
const { order, isPending, isError, error } = useOrder(id, {
|
|
9784
|
-
fields: "+email"
|
|
9785
|
-
});
|
|
9786
|
-
if (isError) {
|
|
9787
|
-
throw error;
|
|
9788
|
-
}
|
|
9789
|
-
const isReady = !isPending && !!order;
|
|
9790
|
-
return /* @__PURE__ */ jsxs(RouteDrawer, { children: [
|
|
9791
|
-
/* @__PURE__ */ jsxs(RouteDrawer.Header, { children: [
|
|
9792
|
-
/* @__PURE__ */ jsx(RouteDrawer.Title, { asChild: true, children: /* @__PURE__ */ jsx(Heading, { children: "Edit Email" }) }),
|
|
9793
|
-
/* @__PURE__ */ jsx(RouteDrawer.Description, { asChild: true, children: /* @__PURE__ */ jsx("span", { className: "sr-only", children: "Edit the email for the draft order" }) })
|
|
9794
|
-
] }),
|
|
9795
|
-
isReady && /* @__PURE__ */ jsx(EmailForm, { order })
|
|
9796
|
-
] });
|
|
9797
|
-
};
|
|
9798
|
-
const EmailForm = ({ order }) => {
|
|
9799
|
-
const form = useForm({
|
|
9800
|
-
defaultValues: {
|
|
9801
|
-
email: order.email ?? ""
|
|
9802
|
-
},
|
|
9803
|
-
resolver: zodResolver(schema$3)
|
|
9804
|
-
});
|
|
9805
|
-
const { mutateAsync, isPending } = useUpdateDraftOrder(order.id);
|
|
9806
|
-
const { handleSuccess } = useRouteModal();
|
|
9807
|
-
const onSubmit = form.handleSubmit(async (data) => {
|
|
9808
|
-
await mutateAsync(
|
|
9809
|
-
{ email: data.email },
|
|
9810
|
-
{
|
|
9811
|
-
onSuccess: () => {
|
|
9812
|
-
handleSuccess();
|
|
9813
|
-
},
|
|
9814
|
-
onError: (error) => {
|
|
9815
|
-
toast.error(error.message);
|
|
9816
|
-
}
|
|
9817
|
-
}
|
|
9818
|
-
);
|
|
9819
|
-
});
|
|
9820
|
-
return /* @__PURE__ */ jsx(RouteDrawer.Form, { form, children: /* @__PURE__ */ jsxs(
|
|
9821
|
-
KeyboundForm,
|
|
9822
|
-
{
|
|
9823
|
-
className: "flex flex-1 flex-col overflow-hidden",
|
|
9824
|
-
onSubmit,
|
|
9825
|
-
children: [
|
|
9826
|
-
/* @__PURE__ */ jsx(RouteDrawer.Body, { className: "flex flex-col gap-y-6 overflow-y-auto", children: /* @__PURE__ */ jsx(
|
|
9827
|
-
Form$2.Field,
|
|
9828
|
-
{
|
|
9829
|
-
control: form.control,
|
|
9830
|
-
name: "email",
|
|
9831
|
-
render: ({ field }) => /* @__PURE__ */ jsxs(Form$2.Item, { children: [
|
|
9832
|
-
/* @__PURE__ */ jsx(Form$2.Label, { children: "Email" }),
|
|
9833
|
-
/* @__PURE__ */ jsx(Form$2.Control, { children: /* @__PURE__ */ jsx(Input, { ...field }) }),
|
|
9834
|
-
/* @__PURE__ */ jsx(Form$2.ErrorMessage, {})
|
|
9835
|
-
] })
|
|
9836
|
-
}
|
|
9837
|
-
) }),
|
|
9838
|
-
/* @__PURE__ */ jsx(RouteDrawer.Footer, { children: /* @__PURE__ */ jsxs("div", { className: "flex justify-end gap-2", children: [
|
|
9839
|
-
/* @__PURE__ */ jsx(RouteDrawer.Close, { asChild: true, children: /* @__PURE__ */ jsx(Button, { size: "small", variant: "secondary", children: "Cancel" }) }),
|
|
9840
|
-
/* @__PURE__ */ jsx(Button, { size: "small", type: "submit", isLoading: isPending, children: "Save" })
|
|
9841
|
-
] }) })
|
|
9842
|
-
]
|
|
9843
|
-
}
|
|
9844
|
-
) });
|
|
9845
|
-
};
|
|
9846
|
-
const schema$3 = objectType({
|
|
9847
|
-
email: stringType().email()
|
|
9848
|
-
});
|
|
9849
9760
|
const NumberInput = forwardRef(
|
|
9850
9761
|
({
|
|
9851
9762
|
value,
|
|
@@ -11475,7 +11386,7 @@ const SalesChannelForm = ({ order }) => {
|
|
|
11475
11386
|
defaultValues: {
|
|
11476
11387
|
sales_channel_id: order.sales_channel_id || ""
|
|
11477
11388
|
},
|
|
11478
|
-
resolver: zodResolver(schema$
|
|
11389
|
+
resolver: zodResolver(schema$4)
|
|
11479
11390
|
});
|
|
11480
11391
|
const { mutateAsync, isPending } = useUpdateDraftOrder(order.id);
|
|
11481
11392
|
const { handleSuccess } = useRouteModal();
|
|
@@ -11550,7 +11461,7 @@ const SalesChannelField = ({ control, order }) => {
|
|
|
11550
11461
|
}
|
|
11551
11462
|
);
|
|
11552
11463
|
};
|
|
11553
|
-
const schema$
|
|
11464
|
+
const schema$4 = objectType({
|
|
11554
11465
|
sales_channel_id: stringType().min(1)
|
|
11555
11466
|
});
|
|
11556
11467
|
const STACKED_FOCUS_MODAL_ID = "shipping-form";
|
|
@@ -12392,7 +12303,7 @@ const ShippingAddressForm = ({ order }) => {
|
|
|
12392
12303
|
postal_code: ((_i = order.shipping_address) == null ? void 0 : _i.postal_code) ?? "",
|
|
12393
12304
|
phone: ((_j = order.shipping_address) == null ? void 0 : _j.phone) ?? ""
|
|
12394
12305
|
},
|
|
12395
|
-
resolver: zodResolver(schema$
|
|
12306
|
+
resolver: zodResolver(schema$3)
|
|
12396
12307
|
});
|
|
12397
12308
|
const { mutateAsync, isPending } = useUpdateDraftOrder(order.id);
|
|
12398
12309
|
const { handleSuccess } = useRouteModal();
|
|
@@ -12562,7 +12473,7 @@ const ShippingAddressForm = ({ order }) => {
|
|
|
12562
12473
|
}
|
|
12563
12474
|
) });
|
|
12564
12475
|
};
|
|
12565
|
-
const schema$
|
|
12476
|
+
const schema$3 = addressSchema;
|
|
12566
12477
|
const TransferOwnership = () => {
|
|
12567
12478
|
const { id } = useParams();
|
|
12568
12479
|
const { draft_order, isPending, isError, error } = useDraftOrder(id, {
|
|
@@ -12586,7 +12497,7 @@ const TransferOwnershipForm = ({ order }) => {
|
|
|
12586
12497
|
defaultValues: {
|
|
12587
12498
|
customer_id: order.customer_id || ""
|
|
12588
12499
|
},
|
|
12589
|
-
resolver: zodResolver(schema)
|
|
12500
|
+
resolver: zodResolver(schema$2)
|
|
12590
12501
|
});
|
|
12591
12502
|
const { mutateAsync, isPending } = useUpdateDraftOrder(order.id);
|
|
12592
12503
|
const { handleSuccess } = useRouteModal();
|
|
@@ -13036,9 +12947,98 @@ const Illustration = () => {
|
|
|
13036
12947
|
}
|
|
13037
12948
|
);
|
|
13038
12949
|
};
|
|
13039
|
-
const schema = objectType({
|
|
12950
|
+
const schema$2 = objectType({
|
|
13040
12951
|
customer_id: stringType().min(1)
|
|
13041
12952
|
});
|
|
12953
|
+
const CustomItems = () => {
|
|
12954
|
+
return /* @__PURE__ */ jsxs(RouteDrawer, { children: [
|
|
12955
|
+
/* @__PURE__ */ jsx(RouteDrawer.Header, { children: /* @__PURE__ */ jsx(RouteDrawer.Title, { asChild: true, children: /* @__PURE__ */ jsx(Heading, { children: "Edit Custom Items" }) }) }),
|
|
12956
|
+
/* @__PURE__ */ jsx(CustomItemsForm, {})
|
|
12957
|
+
] });
|
|
12958
|
+
};
|
|
12959
|
+
const CustomItemsForm = () => {
|
|
12960
|
+
const form = useForm({
|
|
12961
|
+
resolver: zodResolver(schema$1)
|
|
12962
|
+
});
|
|
12963
|
+
return /* @__PURE__ */ jsx(RouteDrawer.Form, { form, children: /* @__PURE__ */ jsxs(KeyboundForm, { className: "flex flex-1 flex-col", children: [
|
|
12964
|
+
/* @__PURE__ */ jsx(RouteDrawer.Body, {}),
|
|
12965
|
+
/* @__PURE__ */ jsx(RouteDrawer.Footer, { children: /* @__PURE__ */ jsxs("div", { className: "flex justify-end gap-2", children: [
|
|
12966
|
+
/* @__PURE__ */ jsx(RouteDrawer.Close, { asChild: true, children: /* @__PURE__ */ jsx(Button, { size: "small", variant: "secondary", children: "Cancel" }) }),
|
|
12967
|
+
/* @__PURE__ */ jsx(Button, { size: "small", type: "submit", children: "Save" })
|
|
12968
|
+
] }) })
|
|
12969
|
+
] }) });
|
|
12970
|
+
};
|
|
12971
|
+
const schema$1 = objectType({
|
|
12972
|
+
email: stringType().email()
|
|
12973
|
+
});
|
|
12974
|
+
const Email = () => {
|
|
12975
|
+
const { id } = useParams();
|
|
12976
|
+
const { order, isPending, isError, error } = useOrder(id, {
|
|
12977
|
+
fields: "+email"
|
|
12978
|
+
});
|
|
12979
|
+
if (isError) {
|
|
12980
|
+
throw error;
|
|
12981
|
+
}
|
|
12982
|
+
const isReady = !isPending && !!order;
|
|
12983
|
+
return /* @__PURE__ */ jsxs(RouteDrawer, { children: [
|
|
12984
|
+
/* @__PURE__ */ jsxs(RouteDrawer.Header, { children: [
|
|
12985
|
+
/* @__PURE__ */ jsx(RouteDrawer.Title, { asChild: true, children: /* @__PURE__ */ jsx(Heading, { children: "Edit Email" }) }),
|
|
12986
|
+
/* @__PURE__ */ jsx(RouteDrawer.Description, { asChild: true, children: /* @__PURE__ */ jsx("span", { className: "sr-only", children: "Edit the email for the draft order" }) })
|
|
12987
|
+
] }),
|
|
12988
|
+
isReady && /* @__PURE__ */ jsx(EmailForm, { order })
|
|
12989
|
+
] });
|
|
12990
|
+
};
|
|
12991
|
+
const EmailForm = ({ order }) => {
|
|
12992
|
+
const form = useForm({
|
|
12993
|
+
defaultValues: {
|
|
12994
|
+
email: order.email ?? ""
|
|
12995
|
+
},
|
|
12996
|
+
resolver: zodResolver(schema)
|
|
12997
|
+
});
|
|
12998
|
+
const { mutateAsync, isPending } = useUpdateDraftOrder(order.id);
|
|
12999
|
+
const { handleSuccess } = useRouteModal();
|
|
13000
|
+
const onSubmit = form.handleSubmit(async (data) => {
|
|
13001
|
+
await mutateAsync(
|
|
13002
|
+
{ email: data.email },
|
|
13003
|
+
{
|
|
13004
|
+
onSuccess: () => {
|
|
13005
|
+
handleSuccess();
|
|
13006
|
+
},
|
|
13007
|
+
onError: (error) => {
|
|
13008
|
+
toast.error(error.message);
|
|
13009
|
+
}
|
|
13010
|
+
}
|
|
13011
|
+
);
|
|
13012
|
+
});
|
|
13013
|
+
return /* @__PURE__ */ jsx(RouteDrawer.Form, { form, children: /* @__PURE__ */ jsxs(
|
|
13014
|
+
KeyboundForm,
|
|
13015
|
+
{
|
|
13016
|
+
className: "flex flex-1 flex-col overflow-hidden",
|
|
13017
|
+
onSubmit,
|
|
13018
|
+
children: [
|
|
13019
|
+
/* @__PURE__ */ jsx(RouteDrawer.Body, { className: "flex flex-col gap-y-6 overflow-y-auto", children: /* @__PURE__ */ jsx(
|
|
13020
|
+
Form$2.Field,
|
|
13021
|
+
{
|
|
13022
|
+
control: form.control,
|
|
13023
|
+
name: "email",
|
|
13024
|
+
render: ({ field }) => /* @__PURE__ */ jsxs(Form$2.Item, { children: [
|
|
13025
|
+
/* @__PURE__ */ jsx(Form$2.Label, { children: "Email" }),
|
|
13026
|
+
/* @__PURE__ */ jsx(Form$2.Control, { children: /* @__PURE__ */ jsx(Input, { ...field }) }),
|
|
13027
|
+
/* @__PURE__ */ jsx(Form$2.ErrorMessage, {})
|
|
13028
|
+
] })
|
|
13029
|
+
}
|
|
13030
|
+
) }),
|
|
13031
|
+
/* @__PURE__ */ jsx(RouteDrawer.Footer, { children: /* @__PURE__ */ jsxs("div", { className: "flex justify-end gap-2", children: [
|
|
13032
|
+
/* @__PURE__ */ jsx(RouteDrawer.Close, { asChild: true, children: /* @__PURE__ */ jsx(Button, { size: "small", variant: "secondary", children: "Cancel" }) }),
|
|
13033
|
+
/* @__PURE__ */ jsx(Button, { size: "small", type: "submit", isLoading: isPending, children: "Save" })
|
|
13034
|
+
] }) })
|
|
13035
|
+
]
|
|
13036
|
+
}
|
|
13037
|
+
) });
|
|
13038
|
+
};
|
|
13039
|
+
const schema = objectType({
|
|
13040
|
+
email: stringType().email()
|
|
13041
|
+
});
|
|
13042
13042
|
const widgetModule = { widgets: [] };
|
|
13043
13043
|
const routeModule = {
|
|
13044
13044
|
routes: [
|
|
@@ -13063,14 +13063,6 @@ const routeModule = {
|
|
|
13063
13063
|
Component: BillingAddress,
|
|
13064
13064
|
path: "/draft-orders/:id/billing-address"
|
|
13065
13065
|
},
|
|
13066
|
-
{
|
|
13067
|
-
Component: CustomItems,
|
|
13068
|
-
path: "/draft-orders/:id/custom-items"
|
|
13069
|
-
},
|
|
13070
|
-
{
|
|
13071
|
-
Component: Email,
|
|
13072
|
-
path: "/draft-orders/:id/email"
|
|
13073
|
-
},
|
|
13074
13066
|
{
|
|
13075
13067
|
Component: Items,
|
|
13076
13068
|
path: "/draft-orders/:id/items"
|
|
@@ -13098,6 +13090,14 @@ const routeModule = {
|
|
|
13098
13090
|
{
|
|
13099
13091
|
Component: TransferOwnership,
|
|
13100
13092
|
path: "/draft-orders/:id/transfer-ownership"
|
|
13093
|
+
},
|
|
13094
|
+
{
|
|
13095
|
+
Component: CustomItems,
|
|
13096
|
+
path: "/draft-orders/:id/custom-items"
|
|
13097
|
+
},
|
|
13098
|
+
{
|
|
13099
|
+
Component: Email,
|
|
13100
|
+
path: "/draft-orders/:id/email"
|
|
13101
13101
|
}
|
|
13102
13102
|
]
|
|
13103
13103
|
}
|
package/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@medusajs/draft-order",
|
|
3
|
-
"version": "2.
|
|
3
|
+
"version": "2.11.0-preview-20251014105730",
|
|
4
4
|
"description": "A starter for Medusa plugins.",
|
|
5
5
|
"author": "Medusa (https://medusajs.com)",
|
|
6
6
|
"license": "MIT",
|
|
@@ -36,7 +36,7 @@
|
|
|
36
36
|
"dependencies": {
|
|
37
37
|
"@ariakit/react": "^0.4.15",
|
|
38
38
|
"@hookform/resolvers": "3.4.2",
|
|
39
|
-
"@medusajs/js-sdk": "2.
|
|
39
|
+
"@medusajs/js-sdk": "2.11.0-preview-20251014105730",
|
|
40
40
|
"@tanstack/react-query": "5.64.2",
|
|
41
41
|
"@uiw/react-json-view": "^2.0.0-alpha.17",
|
|
42
42
|
"date-fns": "^3.6.0",
|
|
@@ -45,14 +45,14 @@
|
|
|
45
45
|
"react-hook-form": "7.49.1"
|
|
46
46
|
},
|
|
47
47
|
"devDependencies": {
|
|
48
|
-
"@medusajs/admin-sdk": "2.
|
|
49
|
-
"@medusajs/cli": "2.
|
|
50
|
-
"@medusajs/framework": "2.
|
|
51
|
-
"@medusajs/icons": "2.
|
|
52
|
-
"@medusajs/test-utils": "2.
|
|
53
|
-
"@medusajs/types": "2.
|
|
54
|
-
"@medusajs/ui": "4.0.24-
|
|
55
|
-
"@medusajs/ui-preset": "2.
|
|
48
|
+
"@medusajs/admin-sdk": "2.11.0-preview-20251014105730",
|
|
49
|
+
"@medusajs/cli": "2.11.0-preview-20251014105730",
|
|
50
|
+
"@medusajs/framework": "2.11.0-preview-20251014105730",
|
|
51
|
+
"@medusajs/icons": "2.11.0-preview-20251014105730",
|
|
52
|
+
"@medusajs/test-utils": "2.11.0-preview-20251014105730",
|
|
53
|
+
"@medusajs/types": "2.11.0-preview-20251014105730",
|
|
54
|
+
"@medusajs/ui": "4.0.24-preview-20251014105730",
|
|
55
|
+
"@medusajs/ui-preset": "2.11.0-preview-20251014105730",
|
|
56
56
|
"@swc/core": "1.5.7",
|
|
57
57
|
"@types/lodash": "^4.17.15",
|
|
58
58
|
"@types/node": "^20.0.0",
|
|
@@ -69,12 +69,12 @@
|
|
|
69
69
|
"yalc": "^1.0.0-pre.53"
|
|
70
70
|
},
|
|
71
71
|
"peerDependencies": {
|
|
72
|
-
"@medusajs/admin-sdk": "2.
|
|
73
|
-
"@medusajs/cli": "2.
|
|
74
|
-
"@medusajs/framework": "2.
|
|
75
|
-
"@medusajs/icons": "2.
|
|
76
|
-
"@medusajs/test-utils": "2.
|
|
77
|
-
"@medusajs/ui": "4.0.24-
|
|
72
|
+
"@medusajs/admin-sdk": "2.11.0-preview-20251014105730",
|
|
73
|
+
"@medusajs/cli": "2.11.0-preview-20251014105730",
|
|
74
|
+
"@medusajs/framework": "2.11.0-preview-20251014105730",
|
|
75
|
+
"@medusajs/icons": "2.11.0-preview-20251014105730",
|
|
76
|
+
"@medusajs/test-utils": "2.11.0-preview-20251014105730",
|
|
77
|
+
"@medusajs/ui": "4.0.24-preview-20251014105730",
|
|
78
78
|
"lodash": "^4.17.21",
|
|
79
79
|
"react-router-dom": "6.20.1"
|
|
80
80
|
},
|