exnet-routing 1.2.42 → 1.2.44
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/_facture.d.ts +32 -0
- package/dist/models/_facture.js +13 -1
- package/dist/routes/ops.d.ts +11141 -2929
- package/dist/routes/ops.js +53 -8
- package/dist/routes/user.d.ts +1675 -0
- package/dist/routes/user.js +28 -0
- package/package.json +1 -1
package/dist/routes/user.js
CHANGED
|
@@ -346,12 +346,40 @@ const supportTicketRoutes = (0, _type_1.IApiType)({
|
|
|
346
346
|
response: (0, _type_1.response)(models_1.ChatSchema),
|
|
347
347
|
},
|
|
348
348
|
});
|
|
349
|
+
const factureRoutes = (0, _type_1.IApiType)({
|
|
350
|
+
ref: {
|
|
351
|
+
method: "GET",
|
|
352
|
+
url: `${baseurl}/facture/:userInterface/ref`,
|
|
353
|
+
params: zod_1.z.object({
|
|
354
|
+
userInterface: zod_1.z.enum(["paris", "medical", "service"]),
|
|
355
|
+
}),
|
|
356
|
+
response: (0, _type_1.response)(zod_1.z.object({ ref: zod_1.z.string() })),
|
|
357
|
+
},
|
|
358
|
+
activeReediter: {
|
|
359
|
+
method: "PUT",
|
|
360
|
+
url: `${baseurl}/facture/:userInterface/active-reediter/:id`,
|
|
361
|
+
params: zod_1.z.object({
|
|
362
|
+
userInterface: zod_1.z.enum(["paris", "medical", "service"]),
|
|
363
|
+
id: zod_1.z.string(),
|
|
364
|
+
}),
|
|
365
|
+
response: (0, _type_1.response)(models_1.FactureSchema),
|
|
366
|
+
},
|
|
367
|
+
listeRefReediter: {
|
|
368
|
+
method: "GET",
|
|
369
|
+
url: `${baseurl}/facture/:userInterface/liste-reediter`,
|
|
370
|
+
params: zod_1.z.object({
|
|
371
|
+
userInterface: zod_1.z.enum(["paris", "medical", "service"]),
|
|
372
|
+
}),
|
|
373
|
+
response: (0, _type_1.response)(zod_1.z.array(models_1.FactureRefReediterSchema)),
|
|
374
|
+
},
|
|
375
|
+
});
|
|
349
376
|
exports.userRoutes = (0, _type_1.IApiType)({
|
|
350
377
|
auth: authRoutes,
|
|
351
378
|
banniere: activeBanniereRoutes,
|
|
352
379
|
shipping: shippingRoutes,
|
|
353
380
|
contact: contactRoutes,
|
|
354
381
|
billingCenter: billingCenterRoutes,
|
|
382
|
+
facture: factureRoutes,
|
|
355
383
|
typeDiagnobag: typeDiagnobagRoutes,
|
|
356
384
|
typeEmballage: typeEmballageRoutes,
|
|
357
385
|
typeSonde: typeSondeRoutes,
|