exnet-routing 1.2.47 → 1.2.48
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/models/_shipping_manifest.d.ts +29 -0
- package/dist/models/_shipping_manifest.js +12 -1
- package/dist/routes/ops.d.ts +1397 -0
- package/dist/routes/ops.js +16 -0
- package/package.json +1 -1
package/dist/routes/ops.js
CHANGED
|
@@ -588,6 +588,21 @@ const manifestRoutes = (0, _type_1.IApiType)({
|
|
|
588
588
|
response: (0, _type_1.response)(models_1.ManifestSchema),
|
|
589
589
|
},
|
|
590
590
|
});
|
|
591
|
+
const shippingManifestRoutes = (0, _type_1.IApiType)({
|
|
592
|
+
create: {
|
|
593
|
+
method: "POST",
|
|
594
|
+
url: `${baseurl}/shipping-manifest/create`,
|
|
595
|
+
body: models_1.ShippingManifestCreateSchema,
|
|
596
|
+
response: (0, _type_1.response)(models_1.ShippingManifestSchema),
|
|
597
|
+
},
|
|
598
|
+
update: {
|
|
599
|
+
method: "PUT",
|
|
600
|
+
url: `${baseurl}/shipping-manifest/update/:id`,
|
|
601
|
+
params: zod_1.z.object({ id: zod_1.z.string() }),
|
|
602
|
+
body: models_1.ShippingManifestUpdateSchema,
|
|
603
|
+
response: (0, _type_1.response)(models_1.ShippingManifestSchema),
|
|
604
|
+
},
|
|
605
|
+
});
|
|
591
606
|
const countryRoutes = (0, _type_1.IApiType)({
|
|
592
607
|
liste: {
|
|
593
608
|
method: "GET",
|
|
@@ -720,6 +735,7 @@ exports.opsRoutes = (0, _type_1.IApiType)({
|
|
|
720
735
|
emballage: emballageRoutes,
|
|
721
736
|
fuel: fuelRoutes,
|
|
722
737
|
manifest: manifestRoutes,
|
|
738
|
+
shippingManifest: shippingManifestRoutes,
|
|
723
739
|
country: countryRoutes,
|
|
724
740
|
contact: contactRoutes,
|
|
725
741
|
supportTicket: supportTicketRoutes,
|