exnet-routing 1.2.49 → 1.2.51
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 +4380 -0
- package/dist/routes/ops.js +15 -0
- package/package.json +1 -1
package/dist/routes/ops.js
CHANGED
|
@@ -611,6 +611,20 @@ const shippingTrackingRoutes = (0, _type_1.IApiType)({
|
|
|
611
611
|
searchParams: models_1.PaginationSeachParamsSchema,
|
|
612
612
|
response: (0, _type_1.response)((0, models_1.PaginationSchema)(models_1.ShippingTrackingSchema)),
|
|
613
613
|
},
|
|
614
|
+
templates: {
|
|
615
|
+
method: "GET",
|
|
616
|
+
url: `${baseurl}/shipping-tracking/templates`,
|
|
617
|
+
searchParams: models_1.PaginationSeachParamsSchema,
|
|
618
|
+
response: (0, _type_1.response)((0, models_1.PaginationSchema)(models_1.ShippingTrackingSchema)),
|
|
619
|
+
},
|
|
620
|
+
});
|
|
621
|
+
const userDriverRoutes = (0, _type_1.IApiType)({
|
|
622
|
+
liste: {
|
|
623
|
+
method: "GET",
|
|
624
|
+
url: `${baseurl}/user-driver/liste`,
|
|
625
|
+
searchParams: models_1.PaginationSeachParamsSchema,
|
|
626
|
+
response: (0, _type_1.response)((0, models_1.PaginationSchema)(models_1.UserSchema)),
|
|
627
|
+
},
|
|
614
628
|
});
|
|
615
629
|
const countryRoutes = (0, _type_1.IApiType)({
|
|
616
630
|
liste: {
|
|
@@ -746,6 +760,7 @@ exports.opsRoutes = (0, _type_1.IApiType)({
|
|
|
746
760
|
manifest: manifestRoutes,
|
|
747
761
|
shippingManifest: shippingManifestRoutes,
|
|
748
762
|
shippingTracking: shippingTrackingRoutes,
|
|
763
|
+
userDriver: userDriverRoutes,
|
|
749
764
|
country: countryRoutes,
|
|
750
765
|
contact: contactRoutes,
|
|
751
766
|
supportTicket: supportTicketRoutes,
|