@erp-galoper/types 1.0.46 → 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.
Files changed (2) hide show
  1. package/openapi.ts +90 -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;
@@ -26142,7 +26173,7 @@ export interface components {
26142
26173
  /**
26143
26174
  * Id
26144
26175
  * Format: uuid
26145
- * @example c8242f08-8893-48a5-b50c-591c7bd4cd1b
26176
+ * @example 7b700afd-49ce-4e5f-81d9-86e1016b3514
26146
26177
  */
26147
26178
  id: string;
26148
26179
  /**
@@ -62011,6 +62042,64 @@ export interface operations {
62011
62042
  };
62012
62043
  };
62013
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
+ };
62014
62103
  purchase_request_for_quotation_views_list_request_for_quotations: {
62015
62104
  parameters: {
62016
62105
  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.47",
4
4
  "main": "openapi.ts",
5
5
  "types": "openapi.ts",
6
6
  "files": ["openapi.ts"],