@erp-galoper/types 1.0.45 → 1.0.47
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 +175 -1
- package/package.json +1 -1
package/openapi.ts
CHANGED
|
@@ -9076,6 +9076,37 @@ export interface paths {
|
|
|
9076
9076
|
patch?: never;
|
|
9077
9077
|
trace?: never;
|
|
9078
9078
|
};
|
|
9079
|
+
"/api/v1/purchase/request-for-quotations/{id}/export-pdf/": {
|
|
9080
|
+
parameters: {
|
|
9081
|
+
query?: never;
|
|
9082
|
+
header?: never;
|
|
9083
|
+
path?: never;
|
|
9084
|
+
cookie?: never;
|
|
9085
|
+
};
|
|
9086
|
+
/**
|
|
9087
|
+
* Export Request For Quotation Pdf
|
|
9088
|
+
* @description Endpoint for exporting a request for quotation to PDF
|
|
9089
|
+
* Responses:
|
|
9090
|
+
* - 200:
|
|
9091
|
+
* - requestForQuotationExported
|
|
9092
|
+
* - 403:
|
|
9093
|
+
* - permissionDenied
|
|
9094
|
+
* - 404:
|
|
9095
|
+
* - requestForQuotationDoesNotExist
|
|
9096
|
+
* - 500:
|
|
9097
|
+
* - internalServerError
|
|
9098
|
+
* - Permission Key :
|
|
9099
|
+
* - requestforquotation : [export]
|
|
9100
|
+
*/
|
|
9101
|
+
get: operations["purchase_request_for_quotation_views_export_request_for_quotation_pdf"];
|
|
9102
|
+
put?: never;
|
|
9103
|
+
post?: never;
|
|
9104
|
+
delete?: never;
|
|
9105
|
+
options?: never;
|
|
9106
|
+
head?: never;
|
|
9107
|
+
patch?: never;
|
|
9108
|
+
trace?: never;
|
|
9109
|
+
};
|
|
9079
9110
|
"/api/v1/purchase/request-for-quotations/": {
|
|
9080
9111
|
parameters: {
|
|
9081
9112
|
query?: never;
|
|
@@ -10266,6 +10297,33 @@ export interface paths {
|
|
|
10266
10297
|
patch?: never;
|
|
10267
10298
|
trace?: never;
|
|
10268
10299
|
};
|
|
10300
|
+
"/api/v1/purchase/orders/{id}/export-pdf/": {
|
|
10301
|
+
parameters: {
|
|
10302
|
+
query?: never;
|
|
10303
|
+
header?: never;
|
|
10304
|
+
path?: never;
|
|
10305
|
+
cookie?: never;
|
|
10306
|
+
};
|
|
10307
|
+
/**
|
|
10308
|
+
* Export Purchase Order Pdf
|
|
10309
|
+
* @description Endpoint for exporting a purchase order to PDF
|
|
10310
|
+
* Responses:
|
|
10311
|
+
* - 200: purchaseOrderExported
|
|
10312
|
+
* - 403: permissionDenied
|
|
10313
|
+
* - 404: purchaseOrderDoesNotExist
|
|
10314
|
+
* - 500: internalServerError
|
|
10315
|
+
* - Permission Key :
|
|
10316
|
+
* - purchaseorder : [export]
|
|
10317
|
+
*/
|
|
10318
|
+
get: operations["purchase_order_views_export_purchase_order_pdf"];
|
|
10319
|
+
put?: never;
|
|
10320
|
+
post?: never;
|
|
10321
|
+
delete?: never;
|
|
10322
|
+
options?: never;
|
|
10323
|
+
head?: never;
|
|
10324
|
+
patch?: never;
|
|
10325
|
+
trace?: never;
|
|
10326
|
+
};
|
|
10269
10327
|
"/api/v1/purchase/return-orders/": {
|
|
10270
10328
|
parameters: {
|
|
10271
10329
|
query?: never;
|
|
@@ -26115,7 +26173,7 @@ export interface components {
|
|
|
26115
26173
|
/**
|
|
26116
26174
|
* Id
|
|
26117
26175
|
* Format: uuid
|
|
26118
|
-
* @example
|
|
26176
|
+
* @example 7b700afd-49ce-4e5f-81d9-86e1016b3514
|
|
26119
26177
|
*/
|
|
26120
26178
|
id: string;
|
|
26121
26179
|
/**
|
|
@@ -61984,6 +62042,64 @@ export interface operations {
|
|
|
61984
62042
|
};
|
|
61985
62043
|
};
|
|
61986
62044
|
};
|
|
62045
|
+
purchase_request_for_quotation_views_export_request_for_quotation_pdf: {
|
|
62046
|
+
parameters: {
|
|
62047
|
+
query?: never;
|
|
62048
|
+
header?: never;
|
|
62049
|
+
path: {
|
|
62050
|
+
id: string;
|
|
62051
|
+
};
|
|
62052
|
+
cookie?: never;
|
|
62053
|
+
};
|
|
62054
|
+
requestBody?: never;
|
|
62055
|
+
responses: {
|
|
62056
|
+
/** @description OK */
|
|
62057
|
+
200: {
|
|
62058
|
+
headers: {
|
|
62059
|
+
[name: string]: unknown;
|
|
62060
|
+
};
|
|
62061
|
+
content: {
|
|
62062
|
+
"application/json": string;
|
|
62063
|
+
};
|
|
62064
|
+
};
|
|
62065
|
+
/** @description Bad Request */
|
|
62066
|
+
400: {
|
|
62067
|
+
headers: {
|
|
62068
|
+
[name: string]: unknown;
|
|
62069
|
+
};
|
|
62070
|
+
content: {
|
|
62071
|
+
"application/json": components["schemas"]["ErrorMessages"];
|
|
62072
|
+
};
|
|
62073
|
+
};
|
|
62074
|
+
/** @description Forbidden */
|
|
62075
|
+
403: {
|
|
62076
|
+
headers: {
|
|
62077
|
+
[name: string]: unknown;
|
|
62078
|
+
};
|
|
62079
|
+
content: {
|
|
62080
|
+
"application/json": components["schemas"]["MessageResponse"];
|
|
62081
|
+
};
|
|
62082
|
+
};
|
|
62083
|
+
/** @description Not Found */
|
|
62084
|
+
404: {
|
|
62085
|
+
headers: {
|
|
62086
|
+
[name: string]: unknown;
|
|
62087
|
+
};
|
|
62088
|
+
content: {
|
|
62089
|
+
"application/json": components["schemas"]["MessageResponse"];
|
|
62090
|
+
};
|
|
62091
|
+
};
|
|
62092
|
+
/** @description Internal Server Error */
|
|
62093
|
+
500: {
|
|
62094
|
+
headers: {
|
|
62095
|
+
[name: string]: unknown;
|
|
62096
|
+
};
|
|
62097
|
+
content: {
|
|
62098
|
+
"application/json": components["schemas"]["MessageResponse"];
|
|
62099
|
+
};
|
|
62100
|
+
};
|
|
62101
|
+
};
|
|
62102
|
+
};
|
|
61987
62103
|
purchase_request_for_quotation_views_list_request_for_quotations: {
|
|
61988
62104
|
parameters: {
|
|
61989
62105
|
query: {
|
|
@@ -64235,6 +64351,64 @@ export interface operations {
|
|
|
64235
64351
|
};
|
|
64236
64352
|
};
|
|
64237
64353
|
};
|
|
64354
|
+
purchase_order_views_export_purchase_order_pdf: {
|
|
64355
|
+
parameters: {
|
|
64356
|
+
query?: never;
|
|
64357
|
+
header?: never;
|
|
64358
|
+
path: {
|
|
64359
|
+
id: string;
|
|
64360
|
+
};
|
|
64361
|
+
cookie?: never;
|
|
64362
|
+
};
|
|
64363
|
+
requestBody?: never;
|
|
64364
|
+
responses: {
|
|
64365
|
+
/** @description OK */
|
|
64366
|
+
200: {
|
|
64367
|
+
headers: {
|
|
64368
|
+
[name: string]: unknown;
|
|
64369
|
+
};
|
|
64370
|
+
content: {
|
|
64371
|
+
"application/json": string;
|
|
64372
|
+
};
|
|
64373
|
+
};
|
|
64374
|
+
/** @description Bad Request */
|
|
64375
|
+
400: {
|
|
64376
|
+
headers: {
|
|
64377
|
+
[name: string]: unknown;
|
|
64378
|
+
};
|
|
64379
|
+
content: {
|
|
64380
|
+
"application/json": components["schemas"]["ErrorMessages"];
|
|
64381
|
+
};
|
|
64382
|
+
};
|
|
64383
|
+
/** @description Forbidden */
|
|
64384
|
+
403: {
|
|
64385
|
+
headers: {
|
|
64386
|
+
[name: string]: unknown;
|
|
64387
|
+
};
|
|
64388
|
+
content: {
|
|
64389
|
+
"application/json": components["schemas"]["MessageWithCode"];
|
|
64390
|
+
};
|
|
64391
|
+
};
|
|
64392
|
+
/** @description Not Found */
|
|
64393
|
+
404: {
|
|
64394
|
+
headers: {
|
|
64395
|
+
[name: string]: unknown;
|
|
64396
|
+
};
|
|
64397
|
+
content: {
|
|
64398
|
+
"application/json": components["schemas"]["MessageWithCode"];
|
|
64399
|
+
};
|
|
64400
|
+
};
|
|
64401
|
+
/** @description Internal Server Error */
|
|
64402
|
+
500: {
|
|
64403
|
+
headers: {
|
|
64404
|
+
[name: string]: unknown;
|
|
64405
|
+
};
|
|
64406
|
+
content: {
|
|
64407
|
+
"application/json": components["schemas"]["MessageWithCode"];
|
|
64408
|
+
};
|
|
64409
|
+
};
|
|
64410
|
+
};
|
|
64411
|
+
};
|
|
64238
64412
|
purchase_return_order_views_list_purchase_return_orders: {
|
|
64239
64413
|
parameters: {
|
|
64240
64414
|
query: {
|