@erp-galoper/types 1.0.603 → 1.0.604
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 +88 -1
- package/package.json +1 -1
package/openapi.ts
CHANGED
|
@@ -9786,6 +9786,35 @@ export interface paths {
|
|
|
9786
9786
|
patch?: never;
|
|
9787
9787
|
trace?: never;
|
|
9788
9788
|
};
|
|
9789
|
+
"/api/v1/purchase/advance-payments/{id}/export-pdf/": {
|
|
9790
|
+
parameters: {
|
|
9791
|
+
query?: never;
|
|
9792
|
+
header?: never;
|
|
9793
|
+
path?: never;
|
|
9794
|
+
cookie?: never;
|
|
9795
|
+
};
|
|
9796
|
+
/**
|
|
9797
|
+
* Export Advance Payment Pdf
|
|
9798
|
+
* @description Endpoint for exporting a advance payment to PDF
|
|
9799
|
+
* Responses:
|
|
9800
|
+
* - 200:
|
|
9801
|
+
* - advancePaymentExportedLink
|
|
9802
|
+
* - 403:
|
|
9803
|
+
* - permissionDenied
|
|
9804
|
+
* - 404:
|
|
9805
|
+
* - advancePaymentDoesNotExist
|
|
9806
|
+
* - 500:
|
|
9807
|
+
* internalServerError
|
|
9808
|
+
*/
|
|
9809
|
+
get: operations["purchase_advance_payment_views_export_advance_payment_pdf"];
|
|
9810
|
+
put?: never;
|
|
9811
|
+
post?: never;
|
|
9812
|
+
delete?: never;
|
|
9813
|
+
options?: never;
|
|
9814
|
+
head?: never;
|
|
9815
|
+
patch?: never;
|
|
9816
|
+
trace?: never;
|
|
9817
|
+
};
|
|
9789
9818
|
"/api/v1/purchase/quotations/": {
|
|
9790
9819
|
parameters: {
|
|
9791
9820
|
query?: never;
|
|
@@ -27522,7 +27551,7 @@ export interface components {
|
|
|
27522
27551
|
/**
|
|
27523
27552
|
* Id
|
|
27524
27553
|
* Format: uuid
|
|
27525
|
-
* @example
|
|
27554
|
+
* @example b14a6fec-cf11-4f4b-933e-b644acb8ec54
|
|
27526
27555
|
*/
|
|
27527
27556
|
id: string;
|
|
27528
27557
|
/**
|
|
@@ -67340,6 +67369,64 @@ export interface operations {
|
|
|
67340
67369
|
};
|
|
67341
67370
|
};
|
|
67342
67371
|
};
|
|
67372
|
+
purchase_advance_payment_views_export_advance_payment_pdf: {
|
|
67373
|
+
parameters: {
|
|
67374
|
+
query?: never;
|
|
67375
|
+
header?: never;
|
|
67376
|
+
path: {
|
|
67377
|
+
id: string;
|
|
67378
|
+
};
|
|
67379
|
+
cookie?: never;
|
|
67380
|
+
};
|
|
67381
|
+
requestBody?: never;
|
|
67382
|
+
responses: {
|
|
67383
|
+
/** @description OK */
|
|
67384
|
+
200: {
|
|
67385
|
+
headers: {
|
|
67386
|
+
[name: string]: unknown;
|
|
67387
|
+
};
|
|
67388
|
+
content: {
|
|
67389
|
+
"application/json": string;
|
|
67390
|
+
};
|
|
67391
|
+
};
|
|
67392
|
+
/** @description Bad Request */
|
|
67393
|
+
400: {
|
|
67394
|
+
headers: {
|
|
67395
|
+
[name: string]: unknown;
|
|
67396
|
+
};
|
|
67397
|
+
content: {
|
|
67398
|
+
"application/json": components["schemas"]["ErrorMessages"];
|
|
67399
|
+
};
|
|
67400
|
+
};
|
|
67401
|
+
/** @description Forbidden */
|
|
67402
|
+
403: {
|
|
67403
|
+
headers: {
|
|
67404
|
+
[name: string]: unknown;
|
|
67405
|
+
};
|
|
67406
|
+
content: {
|
|
67407
|
+
"application/json": components["schemas"]["MessageResponse"];
|
|
67408
|
+
};
|
|
67409
|
+
};
|
|
67410
|
+
/** @description Not Found */
|
|
67411
|
+
404: {
|
|
67412
|
+
headers: {
|
|
67413
|
+
[name: string]: unknown;
|
|
67414
|
+
};
|
|
67415
|
+
content: {
|
|
67416
|
+
"application/json": components["schemas"]["MessageResponse"];
|
|
67417
|
+
};
|
|
67418
|
+
};
|
|
67419
|
+
/** @description Internal Server Error */
|
|
67420
|
+
500: {
|
|
67421
|
+
headers: {
|
|
67422
|
+
[name: string]: unknown;
|
|
67423
|
+
};
|
|
67424
|
+
content: {
|
|
67425
|
+
"application/json": components["schemas"]["MessageResponse"];
|
|
67426
|
+
};
|
|
67427
|
+
};
|
|
67428
|
+
};
|
|
67429
|
+
};
|
|
67343
67430
|
purchase_quotation_views_list_purchase_quotations: {
|
|
67344
67431
|
parameters: {
|
|
67345
67432
|
query: {
|