@erp-galoper/types 1.0.47 → 1.0.49

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.
Files changed (2) hide show
  1. package/openapi.ts +171 -1
  2. 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;
@@ -10899,6 +10926,33 @@ export interface paths {
10899
10926
  patch?: never;
10900
10927
  trace?: never;
10901
10928
  };
10929
+ "/api/v1/purchase/invoices/{id}/export-pdf/": {
10930
+ parameters: {
10931
+ query?: never;
10932
+ header?: never;
10933
+ path?: never;
10934
+ cookie?: never;
10935
+ };
10936
+ /**
10937
+ * Export Purchase Invoice Pdf
10938
+ * @description Endpoint for exporting a purchase invoice to PDF
10939
+ * Responses:
10940
+ * - 200: purchaseInvoiceExported
10941
+ * - 403: permissionDenied
10942
+ * - 404: purchaseInvoiceDoesNotExist
10943
+ * - 500: internalServerError
10944
+ * - Permission Key :
10945
+ * - purchaseinvoice : [export]
10946
+ */
10947
+ get: operations["purchase_purchase_invoice_views_export_purchase_invoice_pdf"];
10948
+ put?: never;
10949
+ post?: never;
10950
+ delete?: never;
10951
+ options?: never;
10952
+ head?: never;
10953
+ patch?: never;
10954
+ trace?: never;
10955
+ };
10902
10956
  "/api/v1/purchase/payment-vouchers/calculate-equivalents/": {
10903
10957
  parameters: {
10904
10958
  query?: never;
@@ -26173,7 +26227,7 @@ export interface components {
26173
26227
  /**
26174
26228
  * Id
26175
26229
  * Format: uuid
26176
- * @example 7b700afd-49ce-4e5f-81d9-86e1016b3514
26230
+ * @example de521f4f-e5f6-440d-8931-95d22cecac66
26177
26231
  */
26178
26232
  id: string;
26179
26233
  /**
@@ -63663,6 +63717,64 @@ export interface operations {
63663
63717
  };
63664
63718
  };
63665
63719
  };
63720
+ purchase_quotation_views_export_purchase_quotation_pdf: {
63721
+ parameters: {
63722
+ query?: never;
63723
+ header?: never;
63724
+ path: {
63725
+ id: string;
63726
+ };
63727
+ cookie?: never;
63728
+ };
63729
+ requestBody?: never;
63730
+ responses: {
63731
+ /** @description OK */
63732
+ 200: {
63733
+ headers: {
63734
+ [name: string]: unknown;
63735
+ };
63736
+ content: {
63737
+ "application/json": string;
63738
+ };
63739
+ };
63740
+ /** @description Bad Request */
63741
+ 400: {
63742
+ headers: {
63743
+ [name: string]: unknown;
63744
+ };
63745
+ content: {
63746
+ "application/json": components["schemas"]["ErrorMessages"];
63747
+ };
63748
+ };
63749
+ /** @description Forbidden */
63750
+ 403: {
63751
+ headers: {
63752
+ [name: string]: unknown;
63753
+ };
63754
+ content: {
63755
+ "application/json": components["schemas"]["MessageWithCode"];
63756
+ };
63757
+ };
63758
+ /** @description Not Found */
63759
+ 404: {
63760
+ headers: {
63761
+ [name: string]: unknown;
63762
+ };
63763
+ content: {
63764
+ "application/json": components["schemas"]["MessageWithCode"];
63765
+ };
63766
+ };
63767
+ /** @description Internal Server Error */
63768
+ 500: {
63769
+ headers: {
63770
+ [name: string]: unknown;
63771
+ };
63772
+ content: {
63773
+ "application/json": components["schemas"]["MessageWithCode"];
63774
+ };
63775
+ };
63776
+ };
63777
+ };
63666
63778
  purchase_order_views_list_purchase_orders: {
63667
63779
  parameters: {
63668
63780
  query: {
@@ -65616,6 +65728,64 @@ export interface operations {
65616
65728
  };
65617
65729
  };
65618
65730
  };
65731
+ purchase_purchase_invoice_views_export_purchase_invoice_pdf: {
65732
+ parameters: {
65733
+ query?: never;
65734
+ header?: never;
65735
+ path: {
65736
+ id: string;
65737
+ };
65738
+ cookie?: never;
65739
+ };
65740
+ requestBody?: never;
65741
+ responses: {
65742
+ /** @description OK */
65743
+ 200: {
65744
+ headers: {
65745
+ [name: string]: unknown;
65746
+ };
65747
+ content: {
65748
+ "application/json": string;
65749
+ };
65750
+ };
65751
+ /** @description Bad Request */
65752
+ 400: {
65753
+ headers: {
65754
+ [name: string]: unknown;
65755
+ };
65756
+ content: {
65757
+ "application/json": components["schemas"]["ErrorMessages"];
65758
+ };
65759
+ };
65760
+ /** @description Forbidden */
65761
+ 403: {
65762
+ headers: {
65763
+ [name: string]: unknown;
65764
+ };
65765
+ content: {
65766
+ "application/json": components["schemas"]["MessageWithCode"];
65767
+ };
65768
+ };
65769
+ /** @description Not Found */
65770
+ 404: {
65771
+ headers: {
65772
+ [name: string]: unknown;
65773
+ };
65774
+ content: {
65775
+ "application/json": components["schemas"]["MessageWithCode"];
65776
+ };
65777
+ };
65778
+ /** @description Internal Server Error */
65779
+ 500: {
65780
+ headers: {
65781
+ [name: string]: unknown;
65782
+ };
65783
+ content: {
65784
+ "application/json": components["schemas"]["MessageWithCode"];
65785
+ };
65786
+ };
65787
+ };
65788
+ };
65619
65789
  purchase_payment_voucher_views_calculate_equivalents: {
65620
65790
  parameters: {
65621
65791
  query?: never;
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@erp-galoper/types",
3
- "version": "1.0.47",
3
+ "version": "1.0.49",
4
4
  "main": "openapi.ts",
5
5
  "types": "openapi.ts",
6
6
  "files": ["openapi.ts"],