@erp-galoper/types 1.0.47 → 1.0.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/openapi.ts +86 -1
- package/package.json +1 -1
package/openapi.ts
CHANGED
|
@@ -9935,6 +9935,33 @@ export interface paths {
|
|
|
9935
9935
|
patch?: never;
|
|
9936
9936
|
trace?: never;
|
|
9937
9937
|
};
|
|
9938
|
+
"/api/v1/purchase/quotations/{id}/export-pdf/": {
|
|
9939
|
+
parameters: {
|
|
9940
|
+
query?: never;
|
|
9941
|
+
header?: never;
|
|
9942
|
+
path?: never;
|
|
9943
|
+
cookie?: never;
|
|
9944
|
+
};
|
|
9945
|
+
/**
|
|
9946
|
+
* Export Purchase Quotation Pdf
|
|
9947
|
+
* @description Endpoint for exporting a purchase quotation to PDF
|
|
9948
|
+
* Responses:
|
|
9949
|
+
* - 200: purchaseQuotationExported
|
|
9950
|
+
* - 403: permissionDenied
|
|
9951
|
+
* - 404: purchaseQuotationDoesNotExist
|
|
9952
|
+
* - 500: internalServerError
|
|
9953
|
+
* - Permission Key :
|
|
9954
|
+
* - purchasequotation : [export]
|
|
9955
|
+
*/
|
|
9956
|
+
get: operations["purchase_quotation_views_export_purchase_quotation_pdf"];
|
|
9957
|
+
put?: never;
|
|
9958
|
+
post?: never;
|
|
9959
|
+
delete?: never;
|
|
9960
|
+
options?: never;
|
|
9961
|
+
head?: never;
|
|
9962
|
+
patch?: never;
|
|
9963
|
+
trace?: never;
|
|
9964
|
+
};
|
|
9938
9965
|
"/api/v1/purchase/orders/": {
|
|
9939
9966
|
parameters: {
|
|
9940
9967
|
query?: never;
|
|
@@ -26173,7 +26200,7 @@ export interface components {
|
|
|
26173
26200
|
/**
|
|
26174
26201
|
* Id
|
|
26175
26202
|
* Format: uuid
|
|
26176
|
-
* @example
|
|
26203
|
+
* @example f47fff31-da53-4b5f-a4d1-fe12eb91b697
|
|
26177
26204
|
*/
|
|
26178
26205
|
id: string;
|
|
26179
26206
|
/**
|
|
@@ -63663,6 +63690,64 @@ export interface operations {
|
|
|
63663
63690
|
};
|
|
63664
63691
|
};
|
|
63665
63692
|
};
|
|
63693
|
+
purchase_quotation_views_export_purchase_quotation_pdf: {
|
|
63694
|
+
parameters: {
|
|
63695
|
+
query?: never;
|
|
63696
|
+
header?: never;
|
|
63697
|
+
path: {
|
|
63698
|
+
id: string;
|
|
63699
|
+
};
|
|
63700
|
+
cookie?: never;
|
|
63701
|
+
};
|
|
63702
|
+
requestBody?: never;
|
|
63703
|
+
responses: {
|
|
63704
|
+
/** @description OK */
|
|
63705
|
+
200: {
|
|
63706
|
+
headers: {
|
|
63707
|
+
[name: string]: unknown;
|
|
63708
|
+
};
|
|
63709
|
+
content: {
|
|
63710
|
+
"application/json": string;
|
|
63711
|
+
};
|
|
63712
|
+
};
|
|
63713
|
+
/** @description Bad Request */
|
|
63714
|
+
400: {
|
|
63715
|
+
headers: {
|
|
63716
|
+
[name: string]: unknown;
|
|
63717
|
+
};
|
|
63718
|
+
content: {
|
|
63719
|
+
"application/json": components["schemas"]["ErrorMessages"];
|
|
63720
|
+
};
|
|
63721
|
+
};
|
|
63722
|
+
/** @description Forbidden */
|
|
63723
|
+
403: {
|
|
63724
|
+
headers: {
|
|
63725
|
+
[name: string]: unknown;
|
|
63726
|
+
};
|
|
63727
|
+
content: {
|
|
63728
|
+
"application/json": components["schemas"]["MessageWithCode"];
|
|
63729
|
+
};
|
|
63730
|
+
};
|
|
63731
|
+
/** @description Not Found */
|
|
63732
|
+
404: {
|
|
63733
|
+
headers: {
|
|
63734
|
+
[name: string]: unknown;
|
|
63735
|
+
};
|
|
63736
|
+
content: {
|
|
63737
|
+
"application/json": components["schemas"]["MessageWithCode"];
|
|
63738
|
+
};
|
|
63739
|
+
};
|
|
63740
|
+
/** @description Internal Server Error */
|
|
63741
|
+
500: {
|
|
63742
|
+
headers: {
|
|
63743
|
+
[name: string]: unknown;
|
|
63744
|
+
};
|
|
63745
|
+
content: {
|
|
63746
|
+
"application/json": components["schemas"]["MessageWithCode"];
|
|
63747
|
+
};
|
|
63748
|
+
};
|
|
63749
|
+
};
|
|
63750
|
+
};
|
|
63666
63751
|
purchase_order_views_list_purchase_orders: {
|
|
63667
63752
|
parameters: {
|
|
63668
63753
|
query: {
|