@erp-galoper/types 1.0.46 → 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.
Files changed (2) hide show
  1. package/openapi.ts +175 -1
  2. 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;
@@ -9904,6 +9935,33 @@ export interface paths {
9904
9935
  patch?: never;
9905
9936
  trace?: never;
9906
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
+ };
9907
9965
  "/api/v1/purchase/orders/": {
9908
9966
  parameters: {
9909
9967
  query?: never;
@@ -26142,7 +26200,7 @@ export interface components {
26142
26200
  /**
26143
26201
  * Id
26144
26202
  * Format: uuid
26145
- * @example c8242f08-8893-48a5-b50c-591c7bd4cd1b
26203
+ * @example f47fff31-da53-4b5f-a4d1-fe12eb91b697
26146
26204
  */
26147
26205
  id: string;
26148
26206
  /**
@@ -62011,6 +62069,64 @@ export interface operations {
62011
62069
  };
62012
62070
  };
62013
62071
  };
62072
+ purchase_request_for_quotation_views_export_request_for_quotation_pdf: {
62073
+ parameters: {
62074
+ query?: never;
62075
+ header?: never;
62076
+ path: {
62077
+ id: string;
62078
+ };
62079
+ cookie?: never;
62080
+ };
62081
+ requestBody?: never;
62082
+ responses: {
62083
+ /** @description OK */
62084
+ 200: {
62085
+ headers: {
62086
+ [name: string]: unknown;
62087
+ };
62088
+ content: {
62089
+ "application/json": string;
62090
+ };
62091
+ };
62092
+ /** @description Bad Request */
62093
+ 400: {
62094
+ headers: {
62095
+ [name: string]: unknown;
62096
+ };
62097
+ content: {
62098
+ "application/json": components["schemas"]["ErrorMessages"];
62099
+ };
62100
+ };
62101
+ /** @description Forbidden */
62102
+ 403: {
62103
+ headers: {
62104
+ [name: string]: unknown;
62105
+ };
62106
+ content: {
62107
+ "application/json": components["schemas"]["MessageResponse"];
62108
+ };
62109
+ };
62110
+ /** @description Not Found */
62111
+ 404: {
62112
+ headers: {
62113
+ [name: string]: unknown;
62114
+ };
62115
+ content: {
62116
+ "application/json": components["schemas"]["MessageResponse"];
62117
+ };
62118
+ };
62119
+ /** @description Internal Server Error */
62120
+ 500: {
62121
+ headers: {
62122
+ [name: string]: unknown;
62123
+ };
62124
+ content: {
62125
+ "application/json": components["schemas"]["MessageResponse"];
62126
+ };
62127
+ };
62128
+ };
62129
+ };
62014
62130
  purchase_request_for_quotation_views_list_request_for_quotations: {
62015
62131
  parameters: {
62016
62132
  query: {
@@ -63574,6 +63690,64 @@ export interface operations {
63574
63690
  };
63575
63691
  };
63576
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
+ };
63577
63751
  purchase_order_views_list_purchase_orders: {
63578
63752
  parameters: {
63579
63753
  query: {
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@erp-galoper/types",
3
- "version": "1.0.46",
3
+ "version": "1.0.48",
4
4
  "main": "openapi.ts",
5
5
  "types": "openapi.ts",
6
6
  "files": ["openapi.ts"],