exnet-routing 1.2.48 → 1.2.49
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/routes/ops.d.ts +2693 -0
- package/dist/routes/ops.js +10 -0
- package/package.json +1 -1
package/dist/routes/ops.js
CHANGED
|
@@ -603,6 +603,15 @@ const shippingManifestRoutes = (0, _type_1.IApiType)({
|
|
|
603
603
|
response: (0, _type_1.response)(models_1.ShippingManifestSchema),
|
|
604
604
|
},
|
|
605
605
|
});
|
|
606
|
+
const shippingTrackingRoutes = (0, _type_1.IApiType)({
|
|
607
|
+
byShipping: {
|
|
608
|
+
method: "GET",
|
|
609
|
+
url: `${baseurl}/shipping-tracking/by-shipping/:shippingId`,
|
|
610
|
+
params: zod_1.z.object({ shippingId: zod_1.z.string() }),
|
|
611
|
+
searchParams: models_1.PaginationSeachParamsSchema,
|
|
612
|
+
response: (0, _type_1.response)((0, models_1.PaginationSchema)(models_1.ShippingTrackingSchema)),
|
|
613
|
+
},
|
|
614
|
+
});
|
|
606
615
|
const countryRoutes = (0, _type_1.IApiType)({
|
|
607
616
|
liste: {
|
|
608
617
|
method: "GET",
|
|
@@ -736,6 +745,7 @@ exports.opsRoutes = (0, _type_1.IApiType)({
|
|
|
736
745
|
fuel: fuelRoutes,
|
|
737
746
|
manifest: manifestRoutes,
|
|
738
747
|
shippingManifest: shippingManifestRoutes,
|
|
748
|
+
shippingTracking: shippingTrackingRoutes,
|
|
739
749
|
country: countryRoutes,
|
|
740
750
|
contact: contactRoutes,
|
|
741
751
|
supportTicket: supportTicketRoutes,
|