exnet-routing 1.2.49 → 1.2.50
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 +1697 -0
- package/dist/routes/ops.js +9 -0
- package/package.json +1 -1
package/dist/routes/ops.js
CHANGED
|
@@ -612,6 +612,14 @@ const shippingTrackingRoutes = (0, _type_1.IApiType)({
|
|
|
612
612
|
response: (0, _type_1.response)((0, models_1.PaginationSchema)(models_1.ShippingTrackingSchema)),
|
|
613
613
|
},
|
|
614
614
|
});
|
|
615
|
+
const userDriverRoutes = (0, _type_1.IApiType)({
|
|
616
|
+
liste: {
|
|
617
|
+
method: "GET",
|
|
618
|
+
url: `${baseurl}/user-driver/liste`,
|
|
619
|
+
searchParams: models_1.PaginationSeachParamsSchema,
|
|
620
|
+
response: (0, _type_1.response)((0, models_1.PaginationSchema)(models_1.UserSchema)),
|
|
621
|
+
},
|
|
622
|
+
});
|
|
615
623
|
const countryRoutes = (0, _type_1.IApiType)({
|
|
616
624
|
liste: {
|
|
617
625
|
method: "GET",
|
|
@@ -746,6 +754,7 @@ exports.opsRoutes = (0, _type_1.IApiType)({
|
|
|
746
754
|
manifest: manifestRoutes,
|
|
747
755
|
shippingManifest: shippingManifestRoutes,
|
|
748
756
|
shippingTracking: shippingTrackingRoutes,
|
|
757
|
+
userDriver: userDriverRoutes,
|
|
749
758
|
country: countryRoutes,
|
|
750
759
|
contact: contactRoutes,
|
|
751
760
|
supportTicket: supportTicketRoutes,
|