@medusajs/draft-order 2.11.4-preview-20251110150136 → 2.11.4-preview-20251110210133

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.
@@ -9568,95 +9568,6 @@ const ID = () => {
9568
9568
  /* @__PURE__ */ jsxRuntime.jsx(reactRouterDom.Outlet, {})
9569
9569
  ] });
9570
9570
  };
9571
- const CustomItems = () => {
9572
- return /* @__PURE__ */ jsxRuntime.jsxs(RouteDrawer, { children: [
9573
- /* @__PURE__ */ jsxRuntime.jsx(RouteDrawer.Header, { children: /* @__PURE__ */ jsxRuntime.jsx(RouteDrawer.Title, { asChild: true, children: /* @__PURE__ */ jsxRuntime.jsx(ui.Heading, { children: "Edit Custom Items" }) }) }),
9574
- /* @__PURE__ */ jsxRuntime.jsx(CustomItemsForm, {})
9575
- ] });
9576
- };
9577
- const CustomItemsForm = () => {
9578
- const form = reactHookForm.useForm({
9579
- resolver: zod.zodResolver(schema$5)
9580
- });
9581
- return /* @__PURE__ */ jsxRuntime.jsx(RouteDrawer.Form, { form, children: /* @__PURE__ */ jsxRuntime.jsxs(KeyboundForm, { className: "flex flex-1 flex-col", children: [
9582
- /* @__PURE__ */ jsxRuntime.jsx(RouteDrawer.Body, {}),
9583
- /* @__PURE__ */ jsxRuntime.jsx(RouteDrawer.Footer, { children: /* @__PURE__ */ jsxRuntime.jsxs("div", { className: "flex justify-end gap-2", children: [
9584
- /* @__PURE__ */ jsxRuntime.jsx(RouteDrawer.Close, { asChild: true, children: /* @__PURE__ */ jsxRuntime.jsx(ui.Button, { size: "small", variant: "secondary", children: "Cancel" }) }),
9585
- /* @__PURE__ */ jsxRuntime.jsx(ui.Button, { size: "small", type: "submit", children: "Save" })
9586
- ] }) })
9587
- ] }) });
9588
- };
9589
- const schema$5 = objectType({
9590
- email: stringType().email()
9591
- });
9592
- const Email = () => {
9593
- const { id } = reactRouterDom.useParams();
9594
- const { order, isPending, isError, error } = useOrder(id, {
9595
- fields: "+email"
9596
- });
9597
- if (isError) {
9598
- throw error;
9599
- }
9600
- const isReady = !isPending && !!order;
9601
- return /* @__PURE__ */ jsxRuntime.jsxs(RouteDrawer, { children: [
9602
- /* @__PURE__ */ jsxRuntime.jsxs(RouteDrawer.Header, { children: [
9603
- /* @__PURE__ */ jsxRuntime.jsx(RouteDrawer.Title, { asChild: true, children: /* @__PURE__ */ jsxRuntime.jsx(ui.Heading, { children: "Edit Email" }) }),
9604
- /* @__PURE__ */ jsxRuntime.jsx(RouteDrawer.Description, { asChild: true, children: /* @__PURE__ */ jsxRuntime.jsx("span", { className: "sr-only", children: "Edit the email for the draft order" }) })
9605
- ] }),
9606
- isReady && /* @__PURE__ */ jsxRuntime.jsx(EmailForm, { order })
9607
- ] });
9608
- };
9609
- const EmailForm = ({ order }) => {
9610
- const form = reactHookForm.useForm({
9611
- defaultValues: {
9612
- email: order.email ?? ""
9613
- },
9614
- resolver: zod.zodResolver(schema$4)
9615
- });
9616
- const { mutateAsync, isPending } = useUpdateDraftOrder(order.id);
9617
- const { handleSuccess } = useRouteModal();
9618
- const onSubmit = form.handleSubmit(async (data) => {
9619
- await mutateAsync(
9620
- { email: data.email },
9621
- {
9622
- onSuccess: () => {
9623
- handleSuccess();
9624
- },
9625
- onError: (error) => {
9626
- ui.toast.error(error.message);
9627
- }
9628
- }
9629
- );
9630
- });
9631
- return /* @__PURE__ */ jsxRuntime.jsx(RouteDrawer.Form, { form, children: /* @__PURE__ */ jsxRuntime.jsxs(
9632
- KeyboundForm,
9633
- {
9634
- className: "flex flex-1 flex-col overflow-hidden",
9635
- onSubmit,
9636
- children: [
9637
- /* @__PURE__ */ jsxRuntime.jsx(RouteDrawer.Body, { className: "flex flex-col gap-y-6 overflow-y-auto", children: /* @__PURE__ */ jsxRuntime.jsx(
9638
- Form$2.Field,
9639
- {
9640
- control: form.control,
9641
- name: "email",
9642
- render: ({ field }) => /* @__PURE__ */ jsxRuntime.jsxs(Form$2.Item, { children: [
9643
- /* @__PURE__ */ jsxRuntime.jsx(Form$2.Label, { children: "Email" }),
9644
- /* @__PURE__ */ jsxRuntime.jsx(Form$2.Control, { children: /* @__PURE__ */ jsxRuntime.jsx(ui.Input, { ...field }) }),
9645
- /* @__PURE__ */ jsxRuntime.jsx(Form$2.ErrorMessage, {})
9646
- ] })
9647
- }
9648
- ) }),
9649
- /* @__PURE__ */ jsxRuntime.jsx(RouteDrawer.Footer, { children: /* @__PURE__ */ jsxRuntime.jsxs("div", { className: "flex justify-end gap-2", children: [
9650
- /* @__PURE__ */ jsxRuntime.jsx(RouteDrawer.Close, { asChild: true, children: /* @__PURE__ */ jsxRuntime.jsx(ui.Button, { size: "small", variant: "secondary", children: "Cancel" }) }),
9651
- /* @__PURE__ */ jsxRuntime.jsx(ui.Button, { size: "small", type: "submit", isLoading: isPending, children: "Save" })
9652
- ] }) })
9653
- ]
9654
- }
9655
- ) });
9656
- };
9657
- const schema$4 = objectType({
9658
- email: stringType().email()
9659
- });
9660
9571
  const BillingAddress = () => {
9661
9572
  const { id } = reactRouterDom.useParams();
9662
9573
  const { order, isPending, isError, error } = useOrder(id, {
@@ -9689,7 +9600,7 @@ const BillingAddressForm = ({ order }) => {
9689
9600
  postal_code: ((_i = order.billing_address) == null ? void 0 : _i.postal_code) ?? "",
9690
9601
  phone: ((_j = order.billing_address) == null ? void 0 : _j.phone) ?? ""
9691
9602
  },
9692
- resolver: zod.zodResolver(schema$3)
9603
+ resolver: zod.zodResolver(schema$5)
9693
9604
  });
9694
9605
  const { mutateAsync, isPending } = useUpdateDraftOrder(order.id);
9695
9606
  const { handleSuccess } = useRouteModal();
@@ -9846,7 +9757,96 @@ const BillingAddressForm = ({ order }) => {
9846
9757
  }
9847
9758
  ) });
9848
9759
  };
9849
- const schema$3 = addressSchema;
9760
+ const schema$5 = addressSchema;
9761
+ const CustomItems = () => {
9762
+ return /* @__PURE__ */ jsxRuntime.jsxs(RouteDrawer, { children: [
9763
+ /* @__PURE__ */ jsxRuntime.jsx(RouteDrawer.Header, { children: /* @__PURE__ */ jsxRuntime.jsx(RouteDrawer.Title, { asChild: true, children: /* @__PURE__ */ jsxRuntime.jsx(ui.Heading, { children: "Edit Custom Items" }) }) }),
9764
+ /* @__PURE__ */ jsxRuntime.jsx(CustomItemsForm, {})
9765
+ ] });
9766
+ };
9767
+ const CustomItemsForm = () => {
9768
+ const form = reactHookForm.useForm({
9769
+ resolver: zod.zodResolver(schema$4)
9770
+ });
9771
+ return /* @__PURE__ */ jsxRuntime.jsx(RouteDrawer.Form, { form, children: /* @__PURE__ */ jsxRuntime.jsxs(KeyboundForm, { className: "flex flex-1 flex-col", children: [
9772
+ /* @__PURE__ */ jsxRuntime.jsx(RouteDrawer.Body, {}),
9773
+ /* @__PURE__ */ jsxRuntime.jsx(RouteDrawer.Footer, { children: /* @__PURE__ */ jsxRuntime.jsxs("div", { className: "flex justify-end gap-2", children: [
9774
+ /* @__PURE__ */ jsxRuntime.jsx(RouteDrawer.Close, { asChild: true, children: /* @__PURE__ */ jsxRuntime.jsx(ui.Button, { size: "small", variant: "secondary", children: "Cancel" }) }),
9775
+ /* @__PURE__ */ jsxRuntime.jsx(ui.Button, { size: "small", type: "submit", children: "Save" })
9776
+ ] }) })
9777
+ ] }) });
9778
+ };
9779
+ const schema$4 = objectType({
9780
+ email: stringType().email()
9781
+ });
9782
+ const Email = () => {
9783
+ const { id } = reactRouterDom.useParams();
9784
+ const { order, isPending, isError, error } = useOrder(id, {
9785
+ fields: "+email"
9786
+ });
9787
+ if (isError) {
9788
+ throw error;
9789
+ }
9790
+ const isReady = !isPending && !!order;
9791
+ return /* @__PURE__ */ jsxRuntime.jsxs(RouteDrawer, { children: [
9792
+ /* @__PURE__ */ jsxRuntime.jsxs(RouteDrawer.Header, { children: [
9793
+ /* @__PURE__ */ jsxRuntime.jsx(RouteDrawer.Title, { asChild: true, children: /* @__PURE__ */ jsxRuntime.jsx(ui.Heading, { children: "Edit Email" }) }),
9794
+ /* @__PURE__ */ jsxRuntime.jsx(RouteDrawer.Description, { asChild: true, children: /* @__PURE__ */ jsxRuntime.jsx("span", { className: "sr-only", children: "Edit the email for the draft order" }) })
9795
+ ] }),
9796
+ isReady && /* @__PURE__ */ jsxRuntime.jsx(EmailForm, { order })
9797
+ ] });
9798
+ };
9799
+ const EmailForm = ({ order }) => {
9800
+ const form = reactHookForm.useForm({
9801
+ defaultValues: {
9802
+ email: order.email ?? ""
9803
+ },
9804
+ resolver: zod.zodResolver(schema$3)
9805
+ });
9806
+ const { mutateAsync, isPending } = useUpdateDraftOrder(order.id);
9807
+ const { handleSuccess } = useRouteModal();
9808
+ const onSubmit = form.handleSubmit(async (data) => {
9809
+ await mutateAsync(
9810
+ { email: data.email },
9811
+ {
9812
+ onSuccess: () => {
9813
+ handleSuccess();
9814
+ },
9815
+ onError: (error) => {
9816
+ ui.toast.error(error.message);
9817
+ }
9818
+ }
9819
+ );
9820
+ });
9821
+ return /* @__PURE__ */ jsxRuntime.jsx(RouteDrawer.Form, { form, children: /* @__PURE__ */ jsxRuntime.jsxs(
9822
+ KeyboundForm,
9823
+ {
9824
+ className: "flex flex-1 flex-col overflow-hidden",
9825
+ onSubmit,
9826
+ children: [
9827
+ /* @__PURE__ */ jsxRuntime.jsx(RouteDrawer.Body, { className: "flex flex-col gap-y-6 overflow-y-auto", children: /* @__PURE__ */ jsxRuntime.jsx(
9828
+ Form$2.Field,
9829
+ {
9830
+ control: form.control,
9831
+ name: "email",
9832
+ render: ({ field }) => /* @__PURE__ */ jsxRuntime.jsxs(Form$2.Item, { children: [
9833
+ /* @__PURE__ */ jsxRuntime.jsx(Form$2.Label, { children: "Email" }),
9834
+ /* @__PURE__ */ jsxRuntime.jsx(Form$2.Control, { children: /* @__PURE__ */ jsxRuntime.jsx(ui.Input, { ...field }) }),
9835
+ /* @__PURE__ */ jsxRuntime.jsx(Form$2.ErrorMessage, {})
9836
+ ] })
9837
+ }
9838
+ ) }),
9839
+ /* @__PURE__ */ jsxRuntime.jsx(RouteDrawer.Footer, { children: /* @__PURE__ */ jsxRuntime.jsxs("div", { className: "flex justify-end gap-2", children: [
9840
+ /* @__PURE__ */ jsxRuntime.jsx(RouteDrawer.Close, { asChild: true, children: /* @__PURE__ */ jsxRuntime.jsx(ui.Button, { size: "small", variant: "secondary", children: "Cancel" }) }),
9841
+ /* @__PURE__ */ jsxRuntime.jsx(ui.Button, { size: "small", type: "submit", isLoading: isPending, children: "Save" })
9842
+ ] }) })
9843
+ ]
9844
+ }
9845
+ ) });
9846
+ };
9847
+ const schema$3 = objectType({
9848
+ email: stringType().email()
9849
+ });
9850
9850
  const NumberInput = React.forwardRef(
9851
9851
  ({
9852
9852
  value,
@@ -13060,6 +13060,10 @@ const routeModule = {
13060
13060
  handle,
13061
13061
  loader,
13062
13062
  children: [
13063
+ {
13064
+ Component: BillingAddress,
13065
+ path: "/draft-orders/:id/billing-address"
13066
+ },
13063
13067
  {
13064
13068
  Component: CustomItems,
13065
13069
  path: "/draft-orders/:id/custom-items"
@@ -13068,10 +13072,6 @@ const routeModule = {
13068
13072
  Component: Email,
13069
13073
  path: "/draft-orders/:id/email"
13070
13074
  },
13071
- {
13072
- Component: BillingAddress,
13073
- path: "/draft-orders/:id/billing-address"
13074
- },
13075
13075
  {
13076
13076
  Component: Items,
13077
13077
  path: "/draft-orders/:id/items"
@@ -9561,95 +9561,6 @@ const ID = () => {
9561
9561
  /* @__PURE__ */ jsx(Outlet, {})
9562
9562
  ] });
9563
9563
  };
9564
- const CustomItems = () => {
9565
- return /* @__PURE__ */ jsxs(RouteDrawer, { children: [
9566
- /* @__PURE__ */ jsx(RouteDrawer.Header, { children: /* @__PURE__ */ jsx(RouteDrawer.Title, { asChild: true, children: /* @__PURE__ */ jsx(Heading, { children: "Edit Custom Items" }) }) }),
9567
- /* @__PURE__ */ jsx(CustomItemsForm, {})
9568
- ] });
9569
- };
9570
- const CustomItemsForm = () => {
9571
- const form = useForm({
9572
- resolver: zodResolver(schema$5)
9573
- });
9574
- return /* @__PURE__ */ jsx(RouteDrawer.Form, { form, children: /* @__PURE__ */ jsxs(KeyboundForm, { className: "flex flex-1 flex-col", children: [
9575
- /* @__PURE__ */ jsx(RouteDrawer.Body, {}),
9576
- /* @__PURE__ */ jsx(RouteDrawer.Footer, { children: /* @__PURE__ */ jsxs("div", { className: "flex justify-end gap-2", children: [
9577
- /* @__PURE__ */ jsx(RouteDrawer.Close, { asChild: true, children: /* @__PURE__ */ jsx(Button, { size: "small", variant: "secondary", children: "Cancel" }) }),
9578
- /* @__PURE__ */ jsx(Button, { size: "small", type: "submit", children: "Save" })
9579
- ] }) })
9580
- ] }) });
9581
- };
9582
- const schema$5 = objectType({
9583
- email: stringType().email()
9584
- });
9585
- const Email = () => {
9586
- const { id } = useParams();
9587
- const { order, isPending, isError, error } = useOrder(id, {
9588
- fields: "+email"
9589
- });
9590
- if (isError) {
9591
- throw error;
9592
- }
9593
- const isReady = !isPending && !!order;
9594
- return /* @__PURE__ */ jsxs(RouteDrawer, { children: [
9595
- /* @__PURE__ */ jsxs(RouteDrawer.Header, { children: [
9596
- /* @__PURE__ */ jsx(RouteDrawer.Title, { asChild: true, children: /* @__PURE__ */ jsx(Heading, { children: "Edit Email" }) }),
9597
- /* @__PURE__ */ jsx(RouteDrawer.Description, { asChild: true, children: /* @__PURE__ */ jsx("span", { className: "sr-only", children: "Edit the email for the draft order" }) })
9598
- ] }),
9599
- isReady && /* @__PURE__ */ jsx(EmailForm, { order })
9600
- ] });
9601
- };
9602
- const EmailForm = ({ order }) => {
9603
- const form = useForm({
9604
- defaultValues: {
9605
- email: order.email ?? ""
9606
- },
9607
- resolver: zodResolver(schema$4)
9608
- });
9609
- const { mutateAsync, isPending } = useUpdateDraftOrder(order.id);
9610
- const { handleSuccess } = useRouteModal();
9611
- const onSubmit = form.handleSubmit(async (data) => {
9612
- await mutateAsync(
9613
- { email: data.email },
9614
- {
9615
- onSuccess: () => {
9616
- handleSuccess();
9617
- },
9618
- onError: (error) => {
9619
- toast.error(error.message);
9620
- }
9621
- }
9622
- );
9623
- });
9624
- return /* @__PURE__ */ jsx(RouteDrawer.Form, { form, children: /* @__PURE__ */ jsxs(
9625
- KeyboundForm,
9626
- {
9627
- className: "flex flex-1 flex-col overflow-hidden",
9628
- onSubmit,
9629
- children: [
9630
- /* @__PURE__ */ jsx(RouteDrawer.Body, { className: "flex flex-col gap-y-6 overflow-y-auto", children: /* @__PURE__ */ jsx(
9631
- Form$2.Field,
9632
- {
9633
- control: form.control,
9634
- name: "email",
9635
- render: ({ field }) => /* @__PURE__ */ jsxs(Form$2.Item, { children: [
9636
- /* @__PURE__ */ jsx(Form$2.Label, { children: "Email" }),
9637
- /* @__PURE__ */ jsx(Form$2.Control, { children: /* @__PURE__ */ jsx(Input, { ...field }) }),
9638
- /* @__PURE__ */ jsx(Form$2.ErrorMessage, {})
9639
- ] })
9640
- }
9641
- ) }),
9642
- /* @__PURE__ */ jsx(RouteDrawer.Footer, { children: /* @__PURE__ */ jsxs("div", { className: "flex justify-end gap-2", children: [
9643
- /* @__PURE__ */ jsx(RouteDrawer.Close, { asChild: true, children: /* @__PURE__ */ jsx(Button, { size: "small", variant: "secondary", children: "Cancel" }) }),
9644
- /* @__PURE__ */ jsx(Button, { size: "small", type: "submit", isLoading: isPending, children: "Save" })
9645
- ] }) })
9646
- ]
9647
- }
9648
- ) });
9649
- };
9650
- const schema$4 = objectType({
9651
- email: stringType().email()
9652
- });
9653
9564
  const BillingAddress = () => {
9654
9565
  const { id } = useParams();
9655
9566
  const { order, isPending, isError, error } = useOrder(id, {
@@ -9682,7 +9593,7 @@ const BillingAddressForm = ({ order }) => {
9682
9593
  postal_code: ((_i = order.billing_address) == null ? void 0 : _i.postal_code) ?? "",
9683
9594
  phone: ((_j = order.billing_address) == null ? void 0 : _j.phone) ?? ""
9684
9595
  },
9685
- resolver: zodResolver(schema$3)
9596
+ resolver: zodResolver(schema$5)
9686
9597
  });
9687
9598
  const { mutateAsync, isPending } = useUpdateDraftOrder(order.id);
9688
9599
  const { handleSuccess } = useRouteModal();
@@ -9839,7 +9750,96 @@ const BillingAddressForm = ({ order }) => {
9839
9750
  }
9840
9751
  ) });
9841
9752
  };
9842
- const schema$3 = addressSchema;
9753
+ const schema$5 = addressSchema;
9754
+ const CustomItems = () => {
9755
+ return /* @__PURE__ */ jsxs(RouteDrawer, { children: [
9756
+ /* @__PURE__ */ jsx(RouteDrawer.Header, { children: /* @__PURE__ */ jsx(RouteDrawer.Title, { asChild: true, children: /* @__PURE__ */ jsx(Heading, { children: "Edit Custom Items" }) }) }),
9757
+ /* @__PURE__ */ jsx(CustomItemsForm, {})
9758
+ ] });
9759
+ };
9760
+ const CustomItemsForm = () => {
9761
+ const form = useForm({
9762
+ resolver: zodResolver(schema$4)
9763
+ });
9764
+ return /* @__PURE__ */ jsx(RouteDrawer.Form, { form, children: /* @__PURE__ */ jsxs(KeyboundForm, { className: "flex flex-1 flex-col", children: [
9765
+ /* @__PURE__ */ jsx(RouteDrawer.Body, {}),
9766
+ /* @__PURE__ */ jsx(RouteDrawer.Footer, { children: /* @__PURE__ */ jsxs("div", { className: "flex justify-end gap-2", children: [
9767
+ /* @__PURE__ */ jsx(RouteDrawer.Close, { asChild: true, children: /* @__PURE__ */ jsx(Button, { size: "small", variant: "secondary", children: "Cancel" }) }),
9768
+ /* @__PURE__ */ jsx(Button, { size: "small", type: "submit", children: "Save" })
9769
+ ] }) })
9770
+ ] }) });
9771
+ };
9772
+ const schema$4 = objectType({
9773
+ email: stringType().email()
9774
+ });
9775
+ const Email = () => {
9776
+ const { id } = useParams();
9777
+ const { order, isPending, isError, error } = useOrder(id, {
9778
+ fields: "+email"
9779
+ });
9780
+ if (isError) {
9781
+ throw error;
9782
+ }
9783
+ const isReady = !isPending && !!order;
9784
+ return /* @__PURE__ */ jsxs(RouteDrawer, { children: [
9785
+ /* @__PURE__ */ jsxs(RouteDrawer.Header, { children: [
9786
+ /* @__PURE__ */ jsx(RouteDrawer.Title, { asChild: true, children: /* @__PURE__ */ jsx(Heading, { children: "Edit Email" }) }),
9787
+ /* @__PURE__ */ jsx(RouteDrawer.Description, { asChild: true, children: /* @__PURE__ */ jsx("span", { className: "sr-only", children: "Edit the email for the draft order" }) })
9788
+ ] }),
9789
+ isReady && /* @__PURE__ */ jsx(EmailForm, { order })
9790
+ ] });
9791
+ };
9792
+ const EmailForm = ({ order }) => {
9793
+ const form = useForm({
9794
+ defaultValues: {
9795
+ email: order.email ?? ""
9796
+ },
9797
+ resolver: zodResolver(schema$3)
9798
+ });
9799
+ const { mutateAsync, isPending } = useUpdateDraftOrder(order.id);
9800
+ const { handleSuccess } = useRouteModal();
9801
+ const onSubmit = form.handleSubmit(async (data) => {
9802
+ await mutateAsync(
9803
+ { email: data.email },
9804
+ {
9805
+ onSuccess: () => {
9806
+ handleSuccess();
9807
+ },
9808
+ onError: (error) => {
9809
+ toast.error(error.message);
9810
+ }
9811
+ }
9812
+ );
9813
+ });
9814
+ return /* @__PURE__ */ jsx(RouteDrawer.Form, { form, children: /* @__PURE__ */ jsxs(
9815
+ KeyboundForm,
9816
+ {
9817
+ className: "flex flex-1 flex-col overflow-hidden",
9818
+ onSubmit,
9819
+ children: [
9820
+ /* @__PURE__ */ jsx(RouteDrawer.Body, { className: "flex flex-col gap-y-6 overflow-y-auto", children: /* @__PURE__ */ jsx(
9821
+ Form$2.Field,
9822
+ {
9823
+ control: form.control,
9824
+ name: "email",
9825
+ render: ({ field }) => /* @__PURE__ */ jsxs(Form$2.Item, { children: [
9826
+ /* @__PURE__ */ jsx(Form$2.Label, { children: "Email" }),
9827
+ /* @__PURE__ */ jsx(Form$2.Control, { children: /* @__PURE__ */ jsx(Input, { ...field }) }),
9828
+ /* @__PURE__ */ jsx(Form$2.ErrorMessage, {})
9829
+ ] })
9830
+ }
9831
+ ) }),
9832
+ /* @__PURE__ */ jsx(RouteDrawer.Footer, { children: /* @__PURE__ */ jsxs("div", { className: "flex justify-end gap-2", children: [
9833
+ /* @__PURE__ */ jsx(RouteDrawer.Close, { asChild: true, children: /* @__PURE__ */ jsx(Button, { size: "small", variant: "secondary", children: "Cancel" }) }),
9834
+ /* @__PURE__ */ jsx(Button, { size: "small", type: "submit", isLoading: isPending, children: "Save" })
9835
+ ] }) })
9836
+ ]
9837
+ }
9838
+ ) });
9839
+ };
9840
+ const schema$3 = objectType({
9841
+ email: stringType().email()
9842
+ });
9843
9843
  const NumberInput = forwardRef(
9844
9844
  ({
9845
9845
  value,
@@ -13053,6 +13053,10 @@ const routeModule = {
13053
13053
  handle,
13054
13054
  loader,
13055
13055
  children: [
13056
+ {
13057
+ Component: BillingAddress,
13058
+ path: "/draft-orders/:id/billing-address"
13059
+ },
13056
13060
  {
13057
13061
  Component: CustomItems,
13058
13062
  path: "/draft-orders/:id/custom-items"
@@ -13061,10 +13065,6 @@ const routeModule = {
13061
13065
  Component: Email,
13062
13066
  path: "/draft-orders/:id/email"
13063
13067
  },
13064
- {
13065
- Component: BillingAddress,
13066
- path: "/draft-orders/:id/billing-address"
13067
- },
13068
13068
  {
13069
13069
  Component: Items,
13070
13070
  path: "/draft-orders/:id/items"
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@medusajs/draft-order",
3
- "version": "2.11.4-preview-20251110150136",
3
+ "version": "2.11.4-preview-20251110210133",
4
4
  "description": "A starter for Medusa plugins.",
5
5
  "author": "Medusa (https://medusajs.com)",
6
6
  "license": "MIT",
@@ -37,7 +37,7 @@
37
37
  "@ariakit/react": "^0.4.15",
38
38
  "@babel/runtime": "^7.26.10",
39
39
  "@hookform/resolvers": "3.4.2",
40
- "@medusajs/js-sdk": "2.11.4-preview-20251110150136",
40
+ "@medusajs/js-sdk": "2.11.4-preview-20251110210133",
41
41
  "@tanstack/react-query": "5.64.2",
42
42
  "@uiw/react-json-view": "^2.0.0-alpha.17",
43
43
  "date-fns": "^3.6.0",
@@ -48,22 +48,22 @@
48
48
  "react-hook-form": "7.49.1"
49
49
  },
50
50
  "devDependencies": {
51
- "@medusajs/admin-sdk": "2.11.4-preview-20251110150136",
52
- "@medusajs/cli": "2.11.4-preview-20251110150136",
53
- "@medusajs/framework": "2.11.4-preview-20251110150136",
54
- "@medusajs/icons": "2.11.4-preview-20251110150136",
55
- "@medusajs/test-utils": "2.11.4-preview-20251110150136",
56
- "@medusajs/types": "2.11.4-preview-20251110150136",
57
- "@medusajs/ui": "4.0.28-preview-20251110150136",
58
- "@medusajs/ui-preset": "2.11.4-preview-20251110150136"
51
+ "@medusajs/admin-sdk": "2.11.4-preview-20251110210133",
52
+ "@medusajs/cli": "2.11.4-preview-20251110210133",
53
+ "@medusajs/framework": "2.11.4-preview-20251110210133",
54
+ "@medusajs/icons": "2.11.4-preview-20251110210133",
55
+ "@medusajs/test-utils": "2.11.4-preview-20251110210133",
56
+ "@medusajs/types": "2.11.4-preview-20251110210133",
57
+ "@medusajs/ui": "4.0.28-preview-20251110210133",
58
+ "@medusajs/ui-preset": "2.11.4-preview-20251110210133"
59
59
  },
60
60
  "peerDependencies": {
61
- "@medusajs/admin-sdk": "2.11.4-preview-20251110150136",
62
- "@medusajs/cli": "2.11.4-preview-20251110150136",
63
- "@medusajs/framework": "2.11.4-preview-20251110150136",
64
- "@medusajs/icons": "2.11.4-preview-20251110150136",
65
- "@medusajs/test-utils": "2.11.4-preview-20251110150136",
66
- "@medusajs/ui": "4.0.28-preview-20251110150136",
61
+ "@medusajs/admin-sdk": "2.11.4-preview-20251110210133",
62
+ "@medusajs/cli": "2.11.4-preview-20251110210133",
63
+ "@medusajs/framework": "2.11.4-preview-20251110210133",
64
+ "@medusajs/icons": "2.11.4-preview-20251110210133",
65
+ "@medusajs/test-utils": "2.11.4-preview-20251110210133",
66
+ "@medusajs/ui": "4.0.28-preview-20251110210133",
67
67
  "react": "^18.3.1",
68
68
  "react-dom": "^18.3.1",
69
69
  "react-router-dom": "6.20.1"