@medusajs/draft-order 2.11.4-preview-20251124060135 → 2.11.4-preview-20251124090208
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 +312 -312
- package/.medusa/server/src/admin/index.mjs +312 -312
- package/package.json +16 -16
|
@@ -9755,6 +9755,74 @@ const BillingAddressForm = ({ order }) => {
|
|
|
9755
9755
|
) });
|
|
9756
9756
|
};
|
|
9757
9757
|
const schema$5 = addressSchema;
|
|
9758
|
+
const Email = () => {
|
|
9759
|
+
const { id } = useParams();
|
|
9760
|
+
const { order, isPending, isError, error } = useOrder(id, {
|
|
9761
|
+
fields: "+email"
|
|
9762
|
+
});
|
|
9763
|
+
if (isError) {
|
|
9764
|
+
throw error;
|
|
9765
|
+
}
|
|
9766
|
+
const isReady = !isPending && !!order;
|
|
9767
|
+
return /* @__PURE__ */ jsxs(RouteDrawer, { children: [
|
|
9768
|
+
/* @__PURE__ */ jsxs(RouteDrawer.Header, { children: [
|
|
9769
|
+
/* @__PURE__ */ jsx(RouteDrawer.Title, { asChild: true, children: /* @__PURE__ */ jsx(Heading, { children: "Edit Email" }) }),
|
|
9770
|
+
/* @__PURE__ */ jsx(RouteDrawer.Description, { asChild: true, children: /* @__PURE__ */ jsx("span", { className: "sr-only", children: "Edit the email for the draft order" }) })
|
|
9771
|
+
] }),
|
|
9772
|
+
isReady && /* @__PURE__ */ jsx(EmailForm, { order })
|
|
9773
|
+
] });
|
|
9774
|
+
};
|
|
9775
|
+
const EmailForm = ({ order }) => {
|
|
9776
|
+
const form = useForm({
|
|
9777
|
+
defaultValues: {
|
|
9778
|
+
email: order.email ?? ""
|
|
9779
|
+
},
|
|
9780
|
+
resolver: zodResolver(schema$4)
|
|
9781
|
+
});
|
|
9782
|
+
const { mutateAsync, isPending } = useUpdateDraftOrder(order.id);
|
|
9783
|
+
const { handleSuccess } = useRouteModal();
|
|
9784
|
+
const onSubmit = form.handleSubmit(async (data) => {
|
|
9785
|
+
await mutateAsync(
|
|
9786
|
+
{ email: data.email },
|
|
9787
|
+
{
|
|
9788
|
+
onSuccess: () => {
|
|
9789
|
+
handleSuccess();
|
|
9790
|
+
},
|
|
9791
|
+
onError: (error) => {
|
|
9792
|
+
toast.error(error.message);
|
|
9793
|
+
}
|
|
9794
|
+
}
|
|
9795
|
+
);
|
|
9796
|
+
});
|
|
9797
|
+
return /* @__PURE__ */ jsx(RouteDrawer.Form, { form, children: /* @__PURE__ */ jsxs(
|
|
9798
|
+
KeyboundForm,
|
|
9799
|
+
{
|
|
9800
|
+
className: "flex flex-1 flex-col overflow-hidden",
|
|
9801
|
+
onSubmit,
|
|
9802
|
+
children: [
|
|
9803
|
+
/* @__PURE__ */ jsx(RouteDrawer.Body, { className: "flex flex-col gap-y-6 overflow-y-auto", children: /* @__PURE__ */ jsx(
|
|
9804
|
+
Form$2.Field,
|
|
9805
|
+
{
|
|
9806
|
+
control: form.control,
|
|
9807
|
+
name: "email",
|
|
9808
|
+
render: ({ field }) => /* @__PURE__ */ jsxs(Form$2.Item, { children: [
|
|
9809
|
+
/* @__PURE__ */ jsx(Form$2.Label, { children: "Email" }),
|
|
9810
|
+
/* @__PURE__ */ jsx(Form$2.Control, { children: /* @__PURE__ */ jsx(Input, { ...field }) }),
|
|
9811
|
+
/* @__PURE__ */ jsx(Form$2.ErrorMessage, {})
|
|
9812
|
+
] })
|
|
9813
|
+
}
|
|
9814
|
+
) }),
|
|
9815
|
+
/* @__PURE__ */ jsx(RouteDrawer.Footer, { children: /* @__PURE__ */ jsxs("div", { className: "flex justify-end gap-2", children: [
|
|
9816
|
+
/* @__PURE__ */ jsx(RouteDrawer.Close, { asChild: true, children: /* @__PURE__ */ jsx(Button, { size: "small", variant: "secondary", children: "Cancel" }) }),
|
|
9817
|
+
/* @__PURE__ */ jsx(Button, { size: "small", type: "submit", isLoading: isPending, children: "Save" })
|
|
9818
|
+
] }) })
|
|
9819
|
+
]
|
|
9820
|
+
}
|
|
9821
|
+
) });
|
|
9822
|
+
};
|
|
9823
|
+
const schema$4 = objectType({
|
|
9824
|
+
email: stringType().email()
|
|
9825
|
+
});
|
|
9758
9826
|
const CustomItems = () => {
|
|
9759
9827
|
return /* @__PURE__ */ jsxs(RouteDrawer, { children: [
|
|
9760
9828
|
/* @__PURE__ */ jsx(RouteDrawer.Header, { children: /* @__PURE__ */ jsx(RouteDrawer.Title, { asChild: true, children: /* @__PURE__ */ jsx(Heading, { children: "Edit Custom Items" }) }) }),
|
|
@@ -9763,7 +9831,7 @@ const CustomItems = () => {
|
|
|
9763
9831
|
};
|
|
9764
9832
|
const CustomItemsForm = () => {
|
|
9765
9833
|
const form = useForm({
|
|
9766
|
-
resolver: zodResolver(schema$
|
|
9834
|
+
resolver: zodResolver(schema$3)
|
|
9767
9835
|
});
|
|
9768
9836
|
return /* @__PURE__ */ jsx(RouteDrawer.Form, { form, children: /* @__PURE__ */ jsxs(KeyboundForm, { className: "flex flex-1 flex-col", children: [
|
|
9769
9837
|
/* @__PURE__ */ jsx(RouteDrawer.Body, {}),
|
|
@@ -9773,7 +9841,7 @@ const CustomItemsForm = () => {
|
|
|
9773
9841
|
] }) })
|
|
9774
9842
|
] }) });
|
|
9775
9843
|
};
|
|
9776
|
-
const schema$
|
|
9844
|
+
const schema$3 = objectType({
|
|
9777
9845
|
email: stringType().email()
|
|
9778
9846
|
});
|
|
9779
9847
|
const NumberInput = forwardRef(
|
|
@@ -10750,74 +10818,6 @@ const customItemSchema = objectType({
|
|
|
10750
10818
|
quantity: numberType(),
|
|
10751
10819
|
unit_price: unionType([numberType(), stringType()])
|
|
10752
10820
|
});
|
|
10753
|
-
const Email = () => {
|
|
10754
|
-
const { id } = useParams();
|
|
10755
|
-
const { order, isPending, isError, error } = useOrder(id, {
|
|
10756
|
-
fields: "+email"
|
|
10757
|
-
});
|
|
10758
|
-
if (isError) {
|
|
10759
|
-
throw error;
|
|
10760
|
-
}
|
|
10761
|
-
const isReady = !isPending && !!order;
|
|
10762
|
-
return /* @__PURE__ */ jsxs(RouteDrawer, { children: [
|
|
10763
|
-
/* @__PURE__ */ jsxs(RouteDrawer.Header, { children: [
|
|
10764
|
-
/* @__PURE__ */ jsx(RouteDrawer.Title, { asChild: true, children: /* @__PURE__ */ jsx(Heading, { children: "Edit Email" }) }),
|
|
10765
|
-
/* @__PURE__ */ jsx(RouteDrawer.Description, { asChild: true, children: /* @__PURE__ */ jsx("span", { className: "sr-only", children: "Edit the email for the draft order" }) })
|
|
10766
|
-
] }),
|
|
10767
|
-
isReady && /* @__PURE__ */ jsx(EmailForm, { order })
|
|
10768
|
-
] });
|
|
10769
|
-
};
|
|
10770
|
-
const EmailForm = ({ order }) => {
|
|
10771
|
-
const form = useForm({
|
|
10772
|
-
defaultValues: {
|
|
10773
|
-
email: order.email ?? ""
|
|
10774
|
-
},
|
|
10775
|
-
resolver: zodResolver(schema$3)
|
|
10776
|
-
});
|
|
10777
|
-
const { mutateAsync, isPending } = useUpdateDraftOrder(order.id);
|
|
10778
|
-
const { handleSuccess } = useRouteModal();
|
|
10779
|
-
const onSubmit = form.handleSubmit(async (data) => {
|
|
10780
|
-
await mutateAsync(
|
|
10781
|
-
{ email: data.email },
|
|
10782
|
-
{
|
|
10783
|
-
onSuccess: () => {
|
|
10784
|
-
handleSuccess();
|
|
10785
|
-
},
|
|
10786
|
-
onError: (error) => {
|
|
10787
|
-
toast.error(error.message);
|
|
10788
|
-
}
|
|
10789
|
-
}
|
|
10790
|
-
);
|
|
10791
|
-
});
|
|
10792
|
-
return /* @__PURE__ */ jsx(RouteDrawer.Form, { form, children: /* @__PURE__ */ jsxs(
|
|
10793
|
-
KeyboundForm,
|
|
10794
|
-
{
|
|
10795
|
-
className: "flex flex-1 flex-col overflow-hidden",
|
|
10796
|
-
onSubmit,
|
|
10797
|
-
children: [
|
|
10798
|
-
/* @__PURE__ */ jsx(RouteDrawer.Body, { className: "flex flex-col gap-y-6 overflow-y-auto", children: /* @__PURE__ */ jsx(
|
|
10799
|
-
Form$2.Field,
|
|
10800
|
-
{
|
|
10801
|
-
control: form.control,
|
|
10802
|
-
name: "email",
|
|
10803
|
-
render: ({ field }) => /* @__PURE__ */ jsxs(Form$2.Item, { children: [
|
|
10804
|
-
/* @__PURE__ */ jsx(Form$2.Label, { children: "Email" }),
|
|
10805
|
-
/* @__PURE__ */ jsx(Form$2.Control, { children: /* @__PURE__ */ jsx(Input, { ...field }) }),
|
|
10806
|
-
/* @__PURE__ */ jsx(Form$2.ErrorMessage, {})
|
|
10807
|
-
] })
|
|
10808
|
-
}
|
|
10809
|
-
) }),
|
|
10810
|
-
/* @__PURE__ */ jsx(RouteDrawer.Footer, { children: /* @__PURE__ */ jsxs("div", { className: "flex justify-end gap-2", children: [
|
|
10811
|
-
/* @__PURE__ */ jsx(RouteDrawer.Close, { asChild: true, children: /* @__PURE__ */ jsx(Button, { size: "small", variant: "secondary", children: "Cancel" }) }),
|
|
10812
|
-
/* @__PURE__ */ jsx(Button, { size: "small", type: "submit", isLoading: isPending, children: "Save" })
|
|
10813
|
-
] }) })
|
|
10814
|
-
]
|
|
10815
|
-
}
|
|
10816
|
-
) });
|
|
10817
|
-
};
|
|
10818
|
-
const schema$3 = objectType({
|
|
10819
|
-
email: stringType().email()
|
|
10820
|
-
});
|
|
10821
10821
|
const InlineTip = forwardRef(
|
|
10822
10822
|
({ variant = "tip", label, className, children, ...props }, ref) => {
|
|
10823
10823
|
const labelValue = label || (variant === "warning" ? "Warning" : "Tip");
|
|
@@ -12358,60 +12358,44 @@ const CustomAmountField = ({
|
|
|
12358
12358
|
}
|
|
12359
12359
|
);
|
|
12360
12360
|
};
|
|
12361
|
-
const
|
|
12361
|
+
const TransferOwnership = () => {
|
|
12362
12362
|
const { id } = useParams();
|
|
12363
|
-
const {
|
|
12364
|
-
fields: "
|
|
12363
|
+
const { draft_order, isPending, isError, error } = useDraftOrder(id, {
|
|
12364
|
+
fields: "id,customer_id,customer.*"
|
|
12365
12365
|
});
|
|
12366
12366
|
if (isError) {
|
|
12367
12367
|
throw error;
|
|
12368
12368
|
}
|
|
12369
|
-
const isReady = !isPending && !!
|
|
12369
|
+
const isReady = !isPending && !!draft_order;
|
|
12370
12370
|
return /* @__PURE__ */ jsxs(RouteDrawer, { children: [
|
|
12371
12371
|
/* @__PURE__ */ jsxs(RouteDrawer.Header, { children: [
|
|
12372
|
-
/* @__PURE__ */ jsx(RouteDrawer.Title, { asChild: true, children: /* @__PURE__ */ jsx(Heading, { children: "
|
|
12373
|
-
/* @__PURE__ */ jsx(RouteDrawer.Description, { asChild: true, children: /* @__PURE__ */ jsx("span", { className: "sr-only", children: "
|
|
12372
|
+
/* @__PURE__ */ jsx(RouteDrawer.Title, { asChild: true, children: /* @__PURE__ */ jsx(Heading, { children: "Transfer Ownership" }) }),
|
|
12373
|
+
/* @__PURE__ */ jsx(RouteDrawer.Description, { asChild: true, children: /* @__PURE__ */ jsx("span", { className: "sr-only", children: "Transfer the ownership of this draft order to a new customer" }) })
|
|
12374
12374
|
] }),
|
|
12375
|
-
isReady && /* @__PURE__ */ jsx(
|
|
12375
|
+
isReady && /* @__PURE__ */ jsx(TransferOwnershipForm, { order: draft_order })
|
|
12376
12376
|
] });
|
|
12377
12377
|
};
|
|
12378
|
-
const
|
|
12379
|
-
var _a, _b
|
|
12378
|
+
const TransferOwnershipForm = ({ order }) => {
|
|
12379
|
+
var _a, _b;
|
|
12380
12380
|
const form = useForm({
|
|
12381
12381
|
defaultValues: {
|
|
12382
|
-
|
|
12383
|
-
last_name: ((_b = order.shipping_address) == null ? void 0 : _b.last_name) ?? "",
|
|
12384
|
-
company: ((_c = order.shipping_address) == null ? void 0 : _c.company) ?? "",
|
|
12385
|
-
address_1: ((_d = order.shipping_address) == null ? void 0 : _d.address_1) ?? "",
|
|
12386
|
-
address_2: ((_e = order.shipping_address) == null ? void 0 : _e.address_2) ?? "",
|
|
12387
|
-
city: ((_f = order.shipping_address) == null ? void 0 : _f.city) ?? "",
|
|
12388
|
-
province: ((_g = order.shipping_address) == null ? void 0 : _g.province) ?? "",
|
|
12389
|
-
country_code: ((_h = order.shipping_address) == null ? void 0 : _h.country_code) ?? "",
|
|
12390
|
-
postal_code: ((_i = order.shipping_address) == null ? void 0 : _i.postal_code) ?? "",
|
|
12391
|
-
phone: ((_j = order.shipping_address) == null ? void 0 : _j.phone) ?? ""
|
|
12382
|
+
customer_id: order.customer_id || ""
|
|
12392
12383
|
},
|
|
12393
12384
|
resolver: zodResolver(schema$1)
|
|
12394
12385
|
});
|
|
12395
12386
|
const { mutateAsync, isPending } = useUpdateDraftOrder(order.id);
|
|
12396
12387
|
const { handleSuccess } = useRouteModal();
|
|
12388
|
+
const name = [(_a = order.customer) == null ? void 0 : _a.first_name, (_b = order.customer) == null ? void 0 : _b.last_name].filter(Boolean).join(" ");
|
|
12389
|
+
const currentCustomer = order.customer ? {
|
|
12390
|
+
label: name ? `${name} (${order.customer.email})` : order.customer.email,
|
|
12391
|
+
value: order.customer.id
|
|
12392
|
+
} : null;
|
|
12397
12393
|
const onSubmit = form.handleSubmit(async (data) => {
|
|
12398
12394
|
await mutateAsync(
|
|
12399
|
-
{
|
|
12400
|
-
shipping_address: {
|
|
12401
|
-
first_name: data.first_name,
|
|
12402
|
-
last_name: data.last_name,
|
|
12403
|
-
company: data.company,
|
|
12404
|
-
address_1: data.address_1,
|
|
12405
|
-
address_2: data.address_2,
|
|
12406
|
-
city: data.city,
|
|
12407
|
-
province: data.province,
|
|
12408
|
-
country_code: data.country_code,
|
|
12409
|
-
postal_code: data.postal_code,
|
|
12410
|
-
phone: data.phone
|
|
12411
|
-
}
|
|
12412
|
-
},
|
|
12395
|
+
{ customer_id: data.customer_id },
|
|
12413
12396
|
{
|
|
12414
12397
|
onSuccess: () => {
|
|
12398
|
+
toast.success("Customer updated");
|
|
12415
12399
|
handleSuccess();
|
|
12416
12400
|
},
|
|
12417
12401
|
onError: (error) => {
|
|
@@ -12426,210 +12410,23 @@ const ShippingAddressForm = ({ order }) => {
|
|
|
12426
12410
|
className: "flex flex-1 flex-col overflow-hidden",
|
|
12427
12411
|
onSubmit,
|
|
12428
12412
|
children: [
|
|
12429
|
-
/* @__PURE__ */
|
|
12430
|
-
/* @__PURE__ */ jsx(
|
|
12431
|
-
|
|
12432
|
-
{
|
|
12433
|
-
|
|
12434
|
-
|
|
12435
|
-
|
|
12436
|
-
|
|
12437
|
-
|
|
12438
|
-
|
|
12439
|
-
|
|
12440
|
-
}
|
|
12441
|
-
),
|
|
12442
|
-
/* @__PURE__ */ jsxs("div", { className: "grid grid-cols-2 gap-4", children: [
|
|
12443
|
-
/* @__PURE__ */ jsx(
|
|
12444
|
-
Form$2.Field,
|
|
12445
|
-
{
|
|
12446
|
-
control: form.control,
|
|
12447
|
-
name: "first_name",
|
|
12448
|
-
render: ({ field }) => /* @__PURE__ */ jsxs(Form$2.Item, { children: [
|
|
12449
|
-
/* @__PURE__ */ jsx(Form$2.Label, { children: "First name" }),
|
|
12450
|
-
/* @__PURE__ */ jsx(Form$2.Control, { children: /* @__PURE__ */ jsx(Input, { ...field }) }),
|
|
12451
|
-
/* @__PURE__ */ jsx(Form$2.ErrorMessage, {})
|
|
12452
|
-
] })
|
|
12453
|
-
}
|
|
12454
|
-
),
|
|
12455
|
-
/* @__PURE__ */ jsx(
|
|
12456
|
-
Form$2.Field,
|
|
12457
|
-
{
|
|
12458
|
-
control: form.control,
|
|
12459
|
-
name: "last_name",
|
|
12460
|
-
render: ({ field }) => /* @__PURE__ */ jsxs(Form$2.Item, { children: [
|
|
12461
|
-
/* @__PURE__ */ jsx(Form$2.Label, { children: "Last name" }),
|
|
12462
|
-
/* @__PURE__ */ jsx(Form$2.Control, { children: /* @__PURE__ */ jsx(Input, { ...field }) }),
|
|
12463
|
-
/* @__PURE__ */ jsx(Form$2.ErrorMessage, {})
|
|
12464
|
-
] })
|
|
12465
|
-
}
|
|
12466
|
-
)
|
|
12413
|
+
/* @__PURE__ */ jsxs(RouteDrawer.Body, { className: "flex flex-col gap-y-6 overflow-y-auto", children: [
|
|
12414
|
+
/* @__PURE__ */ jsx("div", { className: "flex items-center justify-center bg-ui-bg-component rounded-md border", children: /* @__PURE__ */ jsx(Illustration, {}) }),
|
|
12415
|
+
currentCustomer && /* @__PURE__ */ jsxs("div", { className: "flex flex-col space-y-3", children: [
|
|
12416
|
+
/* @__PURE__ */ jsxs("div", { className: "flex flex-col", children: [
|
|
12417
|
+
/* @__PURE__ */ jsx(Label$1, { size: "small", weight: "plus", htmlFor: "current-customer", children: "Current owner" }),
|
|
12418
|
+
/* @__PURE__ */ jsx(Hint$1, { children: "The customer that is currently associated with this draft order." })
|
|
12419
|
+
] }),
|
|
12420
|
+
/* @__PURE__ */ jsxs(Select, { disabled: true, value: currentCustomer.value, children: [
|
|
12421
|
+
/* @__PURE__ */ jsx(Select.Trigger, { id: "current-customer", children: /* @__PURE__ */ jsx(Select.Value, {}) }),
|
|
12422
|
+
/* @__PURE__ */ jsx(Select.Content, { children: /* @__PURE__ */ jsx(Select.Item, { value: currentCustomer.value, children: currentCustomer.label }) })
|
|
12423
|
+
] })
|
|
12467
12424
|
] }),
|
|
12468
12425
|
/* @__PURE__ */ jsx(
|
|
12469
|
-
|
|
12426
|
+
CustomerField,
|
|
12470
12427
|
{
|
|
12471
12428
|
control: form.control,
|
|
12472
|
-
|
|
12473
|
-
render: ({ field }) => /* @__PURE__ */ jsxs(Form$2.Item, { children: [
|
|
12474
|
-
/* @__PURE__ */ jsx(Form$2.Label, { optional: true, children: "Company" }),
|
|
12475
|
-
/* @__PURE__ */ jsx(Form$2.Control, { children: /* @__PURE__ */ jsx(Input, { ...field }) }),
|
|
12476
|
-
/* @__PURE__ */ jsx(Form$2.ErrorMessage, {})
|
|
12477
|
-
] })
|
|
12478
|
-
}
|
|
12479
|
-
),
|
|
12480
|
-
/* @__PURE__ */ jsx(
|
|
12481
|
-
Form$2.Field,
|
|
12482
|
-
{
|
|
12483
|
-
control: form.control,
|
|
12484
|
-
name: "address_1",
|
|
12485
|
-
render: ({ field }) => /* @__PURE__ */ jsxs(Form$2.Item, { children: [
|
|
12486
|
-
/* @__PURE__ */ jsx(Form$2.Label, { children: "Address" }),
|
|
12487
|
-
/* @__PURE__ */ jsx(Form$2.Control, { children: /* @__PURE__ */ jsx(Input, { ...field }) }),
|
|
12488
|
-
/* @__PURE__ */ jsx(Form$2.ErrorMessage, {})
|
|
12489
|
-
] })
|
|
12490
|
-
}
|
|
12491
|
-
),
|
|
12492
|
-
/* @__PURE__ */ jsx(
|
|
12493
|
-
Form$2.Field,
|
|
12494
|
-
{
|
|
12495
|
-
control: form.control,
|
|
12496
|
-
name: "address_2",
|
|
12497
|
-
render: ({ field }) => /* @__PURE__ */ jsxs(Form$2.Item, { children: [
|
|
12498
|
-
/* @__PURE__ */ jsx(Form$2.Label, { optional: true, children: "Apartment, suite, etc." }),
|
|
12499
|
-
/* @__PURE__ */ jsx(Form$2.Control, { children: /* @__PURE__ */ jsx(Input, { ...field }) }),
|
|
12500
|
-
/* @__PURE__ */ jsx(Form$2.ErrorMessage, {})
|
|
12501
|
-
] })
|
|
12502
|
-
}
|
|
12503
|
-
),
|
|
12504
|
-
/* @__PURE__ */ jsxs("div", { className: "grid grid-cols-2 gap-4", children: [
|
|
12505
|
-
/* @__PURE__ */ jsx(
|
|
12506
|
-
Form$2.Field,
|
|
12507
|
-
{
|
|
12508
|
-
control: form.control,
|
|
12509
|
-
name: "postal_code",
|
|
12510
|
-
render: ({ field }) => /* @__PURE__ */ jsxs(Form$2.Item, { children: [
|
|
12511
|
-
/* @__PURE__ */ jsx(Form$2.Label, { children: "Postal code" }),
|
|
12512
|
-
/* @__PURE__ */ jsx(Form$2.Control, { children: /* @__PURE__ */ jsx(Input, { ...field }) }),
|
|
12513
|
-
/* @__PURE__ */ jsx(Form$2.ErrorMessage, {})
|
|
12514
|
-
] })
|
|
12515
|
-
}
|
|
12516
|
-
),
|
|
12517
|
-
/* @__PURE__ */ jsx(
|
|
12518
|
-
Form$2.Field,
|
|
12519
|
-
{
|
|
12520
|
-
control: form.control,
|
|
12521
|
-
name: "city",
|
|
12522
|
-
render: ({ field }) => /* @__PURE__ */ jsxs(Form$2.Item, { children: [
|
|
12523
|
-
/* @__PURE__ */ jsx(Form$2.Label, { children: "City" }),
|
|
12524
|
-
/* @__PURE__ */ jsx(Form$2.Control, { children: /* @__PURE__ */ jsx(Input, { ...field }) }),
|
|
12525
|
-
/* @__PURE__ */ jsx(Form$2.ErrorMessage, {})
|
|
12526
|
-
] })
|
|
12527
|
-
}
|
|
12528
|
-
)
|
|
12529
|
-
] }),
|
|
12530
|
-
/* @__PURE__ */ jsx(
|
|
12531
|
-
Form$2.Field,
|
|
12532
|
-
{
|
|
12533
|
-
control: form.control,
|
|
12534
|
-
name: "province",
|
|
12535
|
-
render: ({ field }) => /* @__PURE__ */ jsxs(Form$2.Item, { children: [
|
|
12536
|
-
/* @__PURE__ */ jsx(Form$2.Label, { optional: true, children: "Province / State" }),
|
|
12537
|
-
/* @__PURE__ */ jsx(Form$2.Control, { children: /* @__PURE__ */ jsx(Input, { ...field }) }),
|
|
12538
|
-
/* @__PURE__ */ jsx(Form$2.ErrorMessage, {})
|
|
12539
|
-
] })
|
|
12540
|
-
}
|
|
12541
|
-
),
|
|
12542
|
-
/* @__PURE__ */ jsx(
|
|
12543
|
-
Form$2.Field,
|
|
12544
|
-
{
|
|
12545
|
-
control: form.control,
|
|
12546
|
-
name: "phone",
|
|
12547
|
-
render: ({ field }) => /* @__PURE__ */ jsxs(Form$2.Item, { children: [
|
|
12548
|
-
/* @__PURE__ */ jsx(Form$2.Label, { optional: true, children: "Phone" }),
|
|
12549
|
-
/* @__PURE__ */ jsx(Form$2.Control, { children: /* @__PURE__ */ jsx(Input, { ...field }) }),
|
|
12550
|
-
/* @__PURE__ */ jsx(Form$2.ErrorMessage, {})
|
|
12551
|
-
] })
|
|
12552
|
-
}
|
|
12553
|
-
)
|
|
12554
|
-
] }) }),
|
|
12555
|
-
/* @__PURE__ */ jsx(RouteDrawer.Footer, { children: /* @__PURE__ */ jsxs("div", { className: "flex justify-end gap-2", children: [
|
|
12556
|
-
/* @__PURE__ */ jsx(RouteDrawer.Close, { asChild: true, children: /* @__PURE__ */ jsx(Button, { size: "small", variant: "secondary", children: "Cancel" }) }),
|
|
12557
|
-
/* @__PURE__ */ jsx(Button, { size: "small", type: "submit", isLoading: isPending, children: "Save" })
|
|
12558
|
-
] }) })
|
|
12559
|
-
]
|
|
12560
|
-
}
|
|
12561
|
-
) });
|
|
12562
|
-
};
|
|
12563
|
-
const schema$1 = addressSchema;
|
|
12564
|
-
const TransferOwnership = () => {
|
|
12565
|
-
const { id } = useParams();
|
|
12566
|
-
const { draft_order, isPending, isError, error } = useDraftOrder(id, {
|
|
12567
|
-
fields: "id,customer_id,customer.*"
|
|
12568
|
-
});
|
|
12569
|
-
if (isError) {
|
|
12570
|
-
throw error;
|
|
12571
|
-
}
|
|
12572
|
-
const isReady = !isPending && !!draft_order;
|
|
12573
|
-
return /* @__PURE__ */ jsxs(RouteDrawer, { children: [
|
|
12574
|
-
/* @__PURE__ */ jsxs(RouteDrawer.Header, { children: [
|
|
12575
|
-
/* @__PURE__ */ jsx(RouteDrawer.Title, { asChild: true, children: /* @__PURE__ */ jsx(Heading, { children: "Transfer Ownership" }) }),
|
|
12576
|
-
/* @__PURE__ */ jsx(RouteDrawer.Description, { asChild: true, children: /* @__PURE__ */ jsx("span", { className: "sr-only", children: "Transfer the ownership of this draft order to a new customer" }) })
|
|
12577
|
-
] }),
|
|
12578
|
-
isReady && /* @__PURE__ */ jsx(TransferOwnershipForm, { order: draft_order })
|
|
12579
|
-
] });
|
|
12580
|
-
};
|
|
12581
|
-
const TransferOwnershipForm = ({ order }) => {
|
|
12582
|
-
var _a, _b;
|
|
12583
|
-
const form = useForm({
|
|
12584
|
-
defaultValues: {
|
|
12585
|
-
customer_id: order.customer_id || ""
|
|
12586
|
-
},
|
|
12587
|
-
resolver: zodResolver(schema)
|
|
12588
|
-
});
|
|
12589
|
-
const { mutateAsync, isPending } = useUpdateDraftOrder(order.id);
|
|
12590
|
-
const { handleSuccess } = useRouteModal();
|
|
12591
|
-
const name = [(_a = order.customer) == null ? void 0 : _a.first_name, (_b = order.customer) == null ? void 0 : _b.last_name].filter(Boolean).join(" ");
|
|
12592
|
-
const currentCustomer = order.customer ? {
|
|
12593
|
-
label: name ? `${name} (${order.customer.email})` : order.customer.email,
|
|
12594
|
-
value: order.customer.id
|
|
12595
|
-
} : null;
|
|
12596
|
-
const onSubmit = form.handleSubmit(async (data) => {
|
|
12597
|
-
await mutateAsync(
|
|
12598
|
-
{ customer_id: data.customer_id },
|
|
12599
|
-
{
|
|
12600
|
-
onSuccess: () => {
|
|
12601
|
-
toast.success("Customer updated");
|
|
12602
|
-
handleSuccess();
|
|
12603
|
-
},
|
|
12604
|
-
onError: (error) => {
|
|
12605
|
-
toast.error(error.message);
|
|
12606
|
-
}
|
|
12607
|
-
}
|
|
12608
|
-
);
|
|
12609
|
-
});
|
|
12610
|
-
return /* @__PURE__ */ jsx(RouteDrawer.Form, { form, children: /* @__PURE__ */ jsxs(
|
|
12611
|
-
KeyboundForm,
|
|
12612
|
-
{
|
|
12613
|
-
className: "flex flex-1 flex-col overflow-hidden",
|
|
12614
|
-
onSubmit,
|
|
12615
|
-
children: [
|
|
12616
|
-
/* @__PURE__ */ jsxs(RouteDrawer.Body, { className: "flex flex-col gap-y-6 overflow-y-auto", children: [
|
|
12617
|
-
/* @__PURE__ */ jsx("div", { className: "flex items-center justify-center bg-ui-bg-component rounded-md border", children: /* @__PURE__ */ jsx(Illustration, {}) }),
|
|
12618
|
-
currentCustomer && /* @__PURE__ */ jsxs("div", { className: "flex flex-col space-y-3", children: [
|
|
12619
|
-
/* @__PURE__ */ jsxs("div", { className: "flex flex-col", children: [
|
|
12620
|
-
/* @__PURE__ */ jsx(Label$1, { size: "small", weight: "plus", htmlFor: "current-customer", children: "Current owner" }),
|
|
12621
|
-
/* @__PURE__ */ jsx(Hint$1, { children: "The customer that is currently associated with this draft order." })
|
|
12622
|
-
] }),
|
|
12623
|
-
/* @__PURE__ */ jsxs(Select, { disabled: true, value: currentCustomer.value, children: [
|
|
12624
|
-
/* @__PURE__ */ jsx(Select.Trigger, { id: "current-customer", children: /* @__PURE__ */ jsx(Select.Value, {}) }),
|
|
12625
|
-
/* @__PURE__ */ jsx(Select.Content, { children: /* @__PURE__ */ jsx(Select.Item, { value: currentCustomer.value, children: currentCustomer.label }) })
|
|
12626
|
-
] })
|
|
12627
|
-
] }),
|
|
12628
|
-
/* @__PURE__ */ jsx(
|
|
12629
|
-
CustomerField,
|
|
12630
|
-
{
|
|
12631
|
-
control: form.control,
|
|
12632
|
-
currentCustomerId: order.customer_id
|
|
12429
|
+
currentCustomerId: order.customer_id
|
|
12633
12430
|
}
|
|
12634
12431
|
)
|
|
12635
12432
|
] }),
|
|
@@ -13034,9 +12831,212 @@ const Illustration = () => {
|
|
|
13034
12831
|
}
|
|
13035
12832
|
);
|
|
13036
12833
|
};
|
|
13037
|
-
const schema = objectType({
|
|
12834
|
+
const schema$1 = objectType({
|
|
13038
12835
|
customer_id: stringType().min(1)
|
|
13039
12836
|
});
|
|
12837
|
+
const ShippingAddress = () => {
|
|
12838
|
+
const { id } = useParams();
|
|
12839
|
+
const { order, isPending, isError, error } = useOrder(id, {
|
|
12840
|
+
fields: "+shipping_address"
|
|
12841
|
+
});
|
|
12842
|
+
if (isError) {
|
|
12843
|
+
throw error;
|
|
12844
|
+
}
|
|
12845
|
+
const isReady = !isPending && !!order;
|
|
12846
|
+
return /* @__PURE__ */ jsxs(RouteDrawer, { children: [
|
|
12847
|
+
/* @__PURE__ */ jsxs(RouteDrawer.Header, { children: [
|
|
12848
|
+
/* @__PURE__ */ jsx(RouteDrawer.Title, { asChild: true, children: /* @__PURE__ */ jsx(Heading, { children: "Edit Shipping Address" }) }),
|
|
12849
|
+
/* @__PURE__ */ jsx(RouteDrawer.Description, { asChild: true, children: /* @__PURE__ */ jsx("span", { className: "sr-only", children: "Edit the shipping address for the draft order" }) })
|
|
12850
|
+
] }),
|
|
12851
|
+
isReady && /* @__PURE__ */ jsx(ShippingAddressForm, { order })
|
|
12852
|
+
] });
|
|
12853
|
+
};
|
|
12854
|
+
const ShippingAddressForm = ({ order }) => {
|
|
12855
|
+
var _a, _b, _c, _d, _e, _f, _g, _h, _i, _j;
|
|
12856
|
+
const form = useForm({
|
|
12857
|
+
defaultValues: {
|
|
12858
|
+
first_name: ((_a = order.shipping_address) == null ? void 0 : _a.first_name) ?? "",
|
|
12859
|
+
last_name: ((_b = order.shipping_address) == null ? void 0 : _b.last_name) ?? "",
|
|
12860
|
+
company: ((_c = order.shipping_address) == null ? void 0 : _c.company) ?? "",
|
|
12861
|
+
address_1: ((_d = order.shipping_address) == null ? void 0 : _d.address_1) ?? "",
|
|
12862
|
+
address_2: ((_e = order.shipping_address) == null ? void 0 : _e.address_2) ?? "",
|
|
12863
|
+
city: ((_f = order.shipping_address) == null ? void 0 : _f.city) ?? "",
|
|
12864
|
+
province: ((_g = order.shipping_address) == null ? void 0 : _g.province) ?? "",
|
|
12865
|
+
country_code: ((_h = order.shipping_address) == null ? void 0 : _h.country_code) ?? "",
|
|
12866
|
+
postal_code: ((_i = order.shipping_address) == null ? void 0 : _i.postal_code) ?? "",
|
|
12867
|
+
phone: ((_j = order.shipping_address) == null ? void 0 : _j.phone) ?? ""
|
|
12868
|
+
},
|
|
12869
|
+
resolver: zodResolver(schema)
|
|
12870
|
+
});
|
|
12871
|
+
const { mutateAsync, isPending } = useUpdateDraftOrder(order.id);
|
|
12872
|
+
const { handleSuccess } = useRouteModal();
|
|
12873
|
+
const onSubmit = form.handleSubmit(async (data) => {
|
|
12874
|
+
await mutateAsync(
|
|
12875
|
+
{
|
|
12876
|
+
shipping_address: {
|
|
12877
|
+
first_name: data.first_name,
|
|
12878
|
+
last_name: data.last_name,
|
|
12879
|
+
company: data.company,
|
|
12880
|
+
address_1: data.address_1,
|
|
12881
|
+
address_2: data.address_2,
|
|
12882
|
+
city: data.city,
|
|
12883
|
+
province: data.province,
|
|
12884
|
+
country_code: data.country_code,
|
|
12885
|
+
postal_code: data.postal_code,
|
|
12886
|
+
phone: data.phone
|
|
12887
|
+
}
|
|
12888
|
+
},
|
|
12889
|
+
{
|
|
12890
|
+
onSuccess: () => {
|
|
12891
|
+
handleSuccess();
|
|
12892
|
+
},
|
|
12893
|
+
onError: (error) => {
|
|
12894
|
+
toast.error(error.message);
|
|
12895
|
+
}
|
|
12896
|
+
}
|
|
12897
|
+
);
|
|
12898
|
+
});
|
|
12899
|
+
return /* @__PURE__ */ jsx(RouteDrawer.Form, { form, children: /* @__PURE__ */ jsxs(
|
|
12900
|
+
KeyboundForm,
|
|
12901
|
+
{
|
|
12902
|
+
className: "flex flex-1 flex-col overflow-hidden",
|
|
12903
|
+
onSubmit,
|
|
12904
|
+
children: [
|
|
12905
|
+
/* @__PURE__ */ jsx(RouteDrawer.Body, { className: "flex flex-col gap-y-6 overflow-y-auto", children: /* @__PURE__ */ jsxs("div", { className: "flex flex-col gap-y-4", children: [
|
|
12906
|
+
/* @__PURE__ */ jsx(
|
|
12907
|
+
Form$2.Field,
|
|
12908
|
+
{
|
|
12909
|
+
control: form.control,
|
|
12910
|
+
name: "country_code",
|
|
12911
|
+
render: ({ field }) => /* @__PURE__ */ jsxs(Form$2.Item, { children: [
|
|
12912
|
+
/* @__PURE__ */ jsx(Form$2.Label, { children: "Country" }),
|
|
12913
|
+
/* @__PURE__ */ jsx(Form$2.Control, { children: /* @__PURE__ */ jsx(CountrySelect, { ...field }) }),
|
|
12914
|
+
/* @__PURE__ */ jsx(Form$2.ErrorMessage, {})
|
|
12915
|
+
] })
|
|
12916
|
+
}
|
|
12917
|
+
),
|
|
12918
|
+
/* @__PURE__ */ jsxs("div", { className: "grid grid-cols-2 gap-4", children: [
|
|
12919
|
+
/* @__PURE__ */ jsx(
|
|
12920
|
+
Form$2.Field,
|
|
12921
|
+
{
|
|
12922
|
+
control: form.control,
|
|
12923
|
+
name: "first_name",
|
|
12924
|
+
render: ({ field }) => /* @__PURE__ */ jsxs(Form$2.Item, { children: [
|
|
12925
|
+
/* @__PURE__ */ jsx(Form$2.Label, { children: "First name" }),
|
|
12926
|
+
/* @__PURE__ */ jsx(Form$2.Control, { children: /* @__PURE__ */ jsx(Input, { ...field }) }),
|
|
12927
|
+
/* @__PURE__ */ jsx(Form$2.ErrorMessage, {})
|
|
12928
|
+
] })
|
|
12929
|
+
}
|
|
12930
|
+
),
|
|
12931
|
+
/* @__PURE__ */ jsx(
|
|
12932
|
+
Form$2.Field,
|
|
12933
|
+
{
|
|
12934
|
+
control: form.control,
|
|
12935
|
+
name: "last_name",
|
|
12936
|
+
render: ({ field }) => /* @__PURE__ */ jsxs(Form$2.Item, { children: [
|
|
12937
|
+
/* @__PURE__ */ jsx(Form$2.Label, { children: "Last name" }),
|
|
12938
|
+
/* @__PURE__ */ jsx(Form$2.Control, { children: /* @__PURE__ */ jsx(Input, { ...field }) }),
|
|
12939
|
+
/* @__PURE__ */ jsx(Form$2.ErrorMessage, {})
|
|
12940
|
+
] })
|
|
12941
|
+
}
|
|
12942
|
+
)
|
|
12943
|
+
] }),
|
|
12944
|
+
/* @__PURE__ */ jsx(
|
|
12945
|
+
Form$2.Field,
|
|
12946
|
+
{
|
|
12947
|
+
control: form.control,
|
|
12948
|
+
name: "company",
|
|
12949
|
+
render: ({ field }) => /* @__PURE__ */ jsxs(Form$2.Item, { children: [
|
|
12950
|
+
/* @__PURE__ */ jsx(Form$2.Label, { optional: true, children: "Company" }),
|
|
12951
|
+
/* @__PURE__ */ jsx(Form$2.Control, { children: /* @__PURE__ */ jsx(Input, { ...field }) }),
|
|
12952
|
+
/* @__PURE__ */ jsx(Form$2.ErrorMessage, {})
|
|
12953
|
+
] })
|
|
12954
|
+
}
|
|
12955
|
+
),
|
|
12956
|
+
/* @__PURE__ */ jsx(
|
|
12957
|
+
Form$2.Field,
|
|
12958
|
+
{
|
|
12959
|
+
control: form.control,
|
|
12960
|
+
name: "address_1",
|
|
12961
|
+
render: ({ field }) => /* @__PURE__ */ jsxs(Form$2.Item, { children: [
|
|
12962
|
+
/* @__PURE__ */ jsx(Form$2.Label, { children: "Address" }),
|
|
12963
|
+
/* @__PURE__ */ jsx(Form$2.Control, { children: /* @__PURE__ */ jsx(Input, { ...field }) }),
|
|
12964
|
+
/* @__PURE__ */ jsx(Form$2.ErrorMessage, {})
|
|
12965
|
+
] })
|
|
12966
|
+
}
|
|
12967
|
+
),
|
|
12968
|
+
/* @__PURE__ */ jsx(
|
|
12969
|
+
Form$2.Field,
|
|
12970
|
+
{
|
|
12971
|
+
control: form.control,
|
|
12972
|
+
name: "address_2",
|
|
12973
|
+
render: ({ field }) => /* @__PURE__ */ jsxs(Form$2.Item, { children: [
|
|
12974
|
+
/* @__PURE__ */ jsx(Form$2.Label, { optional: true, children: "Apartment, suite, etc." }),
|
|
12975
|
+
/* @__PURE__ */ jsx(Form$2.Control, { children: /* @__PURE__ */ jsx(Input, { ...field }) }),
|
|
12976
|
+
/* @__PURE__ */ jsx(Form$2.ErrorMessage, {})
|
|
12977
|
+
] })
|
|
12978
|
+
}
|
|
12979
|
+
),
|
|
12980
|
+
/* @__PURE__ */ jsxs("div", { className: "grid grid-cols-2 gap-4", children: [
|
|
12981
|
+
/* @__PURE__ */ jsx(
|
|
12982
|
+
Form$2.Field,
|
|
12983
|
+
{
|
|
12984
|
+
control: form.control,
|
|
12985
|
+
name: "postal_code",
|
|
12986
|
+
render: ({ field }) => /* @__PURE__ */ jsxs(Form$2.Item, { children: [
|
|
12987
|
+
/* @__PURE__ */ jsx(Form$2.Label, { children: "Postal code" }),
|
|
12988
|
+
/* @__PURE__ */ jsx(Form$2.Control, { children: /* @__PURE__ */ jsx(Input, { ...field }) }),
|
|
12989
|
+
/* @__PURE__ */ jsx(Form$2.ErrorMessage, {})
|
|
12990
|
+
] })
|
|
12991
|
+
}
|
|
12992
|
+
),
|
|
12993
|
+
/* @__PURE__ */ jsx(
|
|
12994
|
+
Form$2.Field,
|
|
12995
|
+
{
|
|
12996
|
+
control: form.control,
|
|
12997
|
+
name: "city",
|
|
12998
|
+
render: ({ field }) => /* @__PURE__ */ jsxs(Form$2.Item, { children: [
|
|
12999
|
+
/* @__PURE__ */ jsx(Form$2.Label, { children: "City" }),
|
|
13000
|
+
/* @__PURE__ */ jsx(Form$2.Control, { children: /* @__PURE__ */ jsx(Input, { ...field }) }),
|
|
13001
|
+
/* @__PURE__ */ jsx(Form$2.ErrorMessage, {})
|
|
13002
|
+
] })
|
|
13003
|
+
}
|
|
13004
|
+
)
|
|
13005
|
+
] }),
|
|
13006
|
+
/* @__PURE__ */ jsx(
|
|
13007
|
+
Form$2.Field,
|
|
13008
|
+
{
|
|
13009
|
+
control: form.control,
|
|
13010
|
+
name: "province",
|
|
13011
|
+
render: ({ field }) => /* @__PURE__ */ jsxs(Form$2.Item, { children: [
|
|
13012
|
+
/* @__PURE__ */ jsx(Form$2.Label, { optional: true, children: "Province / State" }),
|
|
13013
|
+
/* @__PURE__ */ jsx(Form$2.Control, { children: /* @__PURE__ */ jsx(Input, { ...field }) }),
|
|
13014
|
+
/* @__PURE__ */ jsx(Form$2.ErrorMessage, {})
|
|
13015
|
+
] })
|
|
13016
|
+
}
|
|
13017
|
+
),
|
|
13018
|
+
/* @__PURE__ */ jsx(
|
|
13019
|
+
Form$2.Field,
|
|
13020
|
+
{
|
|
13021
|
+
control: form.control,
|
|
13022
|
+
name: "phone",
|
|
13023
|
+
render: ({ field }) => /* @__PURE__ */ jsxs(Form$2.Item, { children: [
|
|
13024
|
+
/* @__PURE__ */ jsx(Form$2.Label, { optional: true, children: "Phone" }),
|
|
13025
|
+
/* @__PURE__ */ jsx(Form$2.Control, { children: /* @__PURE__ */ jsx(Input, { ...field }) }),
|
|
13026
|
+
/* @__PURE__ */ jsx(Form$2.ErrorMessage, {})
|
|
13027
|
+
] })
|
|
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 = addressSchema;
|
|
13040
13040
|
const widgetModule = { widgets: [] };
|
|
13041
13041
|
const routeModule = {
|
|
13042
13042
|
routes: [
|
|
@@ -13061,6 +13061,10 @@ const routeModule = {
|
|
|
13061
13061
|
Component: BillingAddress,
|
|
13062
13062
|
path: "/draft-orders/:id/billing-address"
|
|
13063
13063
|
},
|
|
13064
|
+
{
|
|
13065
|
+
Component: Email,
|
|
13066
|
+
path: "/draft-orders/:id/email"
|
|
13067
|
+
},
|
|
13064
13068
|
{
|
|
13065
13069
|
Component: CustomItems,
|
|
13066
13070
|
path: "/draft-orders/:id/custom-items"
|
|
@@ -13069,10 +13073,6 @@ const routeModule = {
|
|
|
13069
13073
|
Component: Items,
|
|
13070
13074
|
path: "/draft-orders/:id/items"
|
|
13071
13075
|
},
|
|
13072
|
-
{
|
|
13073
|
-
Component: Email,
|
|
13074
|
-
path: "/draft-orders/:id/email"
|
|
13075
|
-
},
|
|
13076
13076
|
{
|
|
13077
13077
|
Component: Metadata,
|
|
13078
13078
|
path: "/draft-orders/:id/metadata"
|
|
@@ -13089,13 +13089,13 @@ const routeModule = {
|
|
|
13089
13089
|
Component: Shipping,
|
|
13090
13090
|
path: "/draft-orders/:id/shipping"
|
|
13091
13091
|
},
|
|
13092
|
-
{
|
|
13093
|
-
Component: ShippingAddress,
|
|
13094
|
-
path: "/draft-orders/:id/shipping-address"
|
|
13095
|
-
},
|
|
13096
13092
|
{
|
|
13097
13093
|
Component: TransferOwnership,
|
|
13098
13094
|
path: "/draft-orders/:id/transfer-ownership"
|
|
13095
|
+
},
|
|
13096
|
+
{
|
|
13097
|
+
Component: ShippingAddress,
|
|
13098
|
+
path: "/draft-orders/:id/shipping-address"
|
|
13099
13099
|
}
|
|
13100
13100
|
]
|
|
13101
13101
|
}
|