@erp-galoper/types 1.0.45 → 1.0.46
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/openapi.ts +86 -1
- package/package.json +1 -1
package/openapi.ts
CHANGED
|
@@ -10266,6 +10266,33 @@ export interface paths {
|
|
|
10266
10266
|
patch?: never;
|
|
10267
10267
|
trace?: never;
|
|
10268
10268
|
};
|
|
10269
|
+
"/api/v1/purchase/orders/{id}/export-pdf/": {
|
|
10270
|
+
parameters: {
|
|
10271
|
+
query?: never;
|
|
10272
|
+
header?: never;
|
|
10273
|
+
path?: never;
|
|
10274
|
+
cookie?: never;
|
|
10275
|
+
};
|
|
10276
|
+
/**
|
|
10277
|
+
* Export Purchase Order Pdf
|
|
10278
|
+
* @description Endpoint for exporting a purchase order to PDF
|
|
10279
|
+
* Responses:
|
|
10280
|
+
* - 200: purchaseOrderExported
|
|
10281
|
+
* - 403: permissionDenied
|
|
10282
|
+
* - 404: purchaseOrderDoesNotExist
|
|
10283
|
+
* - 500: internalServerError
|
|
10284
|
+
* - Permission Key :
|
|
10285
|
+
* - purchaseorder : [export]
|
|
10286
|
+
*/
|
|
10287
|
+
get: operations["purchase_order_views_export_purchase_order_pdf"];
|
|
10288
|
+
put?: never;
|
|
10289
|
+
post?: never;
|
|
10290
|
+
delete?: never;
|
|
10291
|
+
options?: never;
|
|
10292
|
+
head?: never;
|
|
10293
|
+
patch?: never;
|
|
10294
|
+
trace?: never;
|
|
10295
|
+
};
|
|
10269
10296
|
"/api/v1/purchase/return-orders/": {
|
|
10270
10297
|
parameters: {
|
|
10271
10298
|
query?: never;
|
|
@@ -26115,7 +26142,7 @@ export interface components {
|
|
|
26115
26142
|
/**
|
|
26116
26143
|
* Id
|
|
26117
26144
|
* Format: uuid
|
|
26118
|
-
* @example
|
|
26145
|
+
* @example c8242f08-8893-48a5-b50c-591c7bd4cd1b
|
|
26119
26146
|
*/
|
|
26120
26147
|
id: string;
|
|
26121
26148
|
/**
|
|
@@ -64235,6 +64262,64 @@ export interface operations {
|
|
|
64235
64262
|
};
|
|
64236
64263
|
};
|
|
64237
64264
|
};
|
|
64265
|
+
purchase_order_views_export_purchase_order_pdf: {
|
|
64266
|
+
parameters: {
|
|
64267
|
+
query?: never;
|
|
64268
|
+
header?: never;
|
|
64269
|
+
path: {
|
|
64270
|
+
id: string;
|
|
64271
|
+
};
|
|
64272
|
+
cookie?: never;
|
|
64273
|
+
};
|
|
64274
|
+
requestBody?: never;
|
|
64275
|
+
responses: {
|
|
64276
|
+
/** @description OK */
|
|
64277
|
+
200: {
|
|
64278
|
+
headers: {
|
|
64279
|
+
[name: string]: unknown;
|
|
64280
|
+
};
|
|
64281
|
+
content: {
|
|
64282
|
+
"application/json": string;
|
|
64283
|
+
};
|
|
64284
|
+
};
|
|
64285
|
+
/** @description Bad Request */
|
|
64286
|
+
400: {
|
|
64287
|
+
headers: {
|
|
64288
|
+
[name: string]: unknown;
|
|
64289
|
+
};
|
|
64290
|
+
content: {
|
|
64291
|
+
"application/json": components["schemas"]["ErrorMessages"];
|
|
64292
|
+
};
|
|
64293
|
+
};
|
|
64294
|
+
/** @description Forbidden */
|
|
64295
|
+
403: {
|
|
64296
|
+
headers: {
|
|
64297
|
+
[name: string]: unknown;
|
|
64298
|
+
};
|
|
64299
|
+
content: {
|
|
64300
|
+
"application/json": components["schemas"]["MessageWithCode"];
|
|
64301
|
+
};
|
|
64302
|
+
};
|
|
64303
|
+
/** @description Not Found */
|
|
64304
|
+
404: {
|
|
64305
|
+
headers: {
|
|
64306
|
+
[name: string]: unknown;
|
|
64307
|
+
};
|
|
64308
|
+
content: {
|
|
64309
|
+
"application/json": components["schemas"]["MessageWithCode"];
|
|
64310
|
+
};
|
|
64311
|
+
};
|
|
64312
|
+
/** @description Internal Server Error */
|
|
64313
|
+
500: {
|
|
64314
|
+
headers: {
|
|
64315
|
+
[name: string]: unknown;
|
|
64316
|
+
};
|
|
64317
|
+
content: {
|
|
64318
|
+
"application/json": components["schemas"]["MessageWithCode"];
|
|
64319
|
+
};
|
|
64320
|
+
};
|
|
64321
|
+
};
|
|
64322
|
+
};
|
|
64238
64323
|
purchase_return_order_views_list_purchase_return_orders: {
|
|
64239
64324
|
parameters: {
|
|
64240
64325
|
query: {
|