@erp-galoper/types 1.0.646 → 1.0.648

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 +1 -96
  2. package/package.json +1 -1
package/openapi.ts CHANGED
@@ -9981,39 +9981,6 @@ export interface paths {
9981
9981
  patch?: never;
9982
9982
  trace?: never;
9983
9983
  };
9984
- "/api/v1/purchase/quotations/{id}/submit/": {
9985
- parameters: {
9986
- query?: never;
9987
- header?: never;
9988
- path?: never;
9989
- cookie?: never;
9990
- };
9991
- get?: never;
9992
- put?: never;
9993
- /**
9994
- * Submit Purchase Quotation
9995
- * @description Endpoint for submitting a purchase quotation
9996
- * Responses:
9997
- * - 200: PurchaseQuotationSchema
9998
- * - 403: "permissionDenied"
9999
- * - "noModuleAccess"
10000
- * - statusAlreadySubmitted
10001
- * - cantMakeActionOnLockedDocument
10002
- * - noBranchAccess
10003
- * - noDepartmentAccess
10004
- * - purchaseQuotationIsCanceled
10005
- * - 404: "purchaseQuotationDoesNotExist"
10006
- * - 500: "serverError"
10007
- *
10008
- * Permission keys: purchasequotation: ["add"]
10009
- */
10010
- post: operations["purchase_quotation_views_submit_purchase_quotation"];
10011
- delete?: never;
10012
- options?: never;
10013
- head?: never;
10014
- patch?: never;
10015
- trace?: never;
10016
- };
10017
9984
  "/api/v1/purchase/quotations/{id}/cancel/": {
10018
9985
  parameters: {
10019
9986
  query?: never;
@@ -27665,7 +27632,7 @@ export interface components {
27665
27632
  /**
27666
27633
  * Id
27667
27634
  * Format: uuid
27668
- * @example c510e741-da8a-47f2-98ab-5413f125d8e1
27635
+ * @example 13b1828f-c9d1-4a4a-81a5-42c02a7c5ef8
27669
27636
  */
27670
27637
  id: string;
27671
27638
  /**
@@ -67830,68 +67797,6 @@ export interface operations {
67830
67797
  };
67831
67798
  };
67832
67799
  };
67833
- purchase_quotation_views_submit_purchase_quotation: {
67834
- parameters: {
67835
- query?: never;
67836
- header?: never;
67837
- path: {
67838
- id: string;
67839
- };
67840
- cookie?: never;
67841
- };
67842
- requestBody: {
67843
- content: {
67844
- "application/json": components["schemas"]["ActionsPayloadSchemas"];
67845
- };
67846
- };
67847
- responses: {
67848
- /** @description OK */
67849
- 200: {
67850
- headers: {
67851
- [name: string]: unknown;
67852
- };
67853
- content: {
67854
- "application/json": components["schemas"]["PurchaseQuotationSchema"];
67855
- };
67856
- };
67857
- /** @description Bad Request */
67858
- 400: {
67859
- headers: {
67860
- [name: string]: unknown;
67861
- };
67862
- content: {
67863
- "application/json": components["schemas"]["ErrorMessages"];
67864
- };
67865
- };
67866
- /** @description Forbidden */
67867
- 403: {
67868
- headers: {
67869
- [name: string]: unknown;
67870
- };
67871
- content: {
67872
- "application/json": components["schemas"]["MessageWithCode"];
67873
- };
67874
- };
67875
- /** @description Not Found */
67876
- 404: {
67877
- headers: {
67878
- [name: string]: unknown;
67879
- };
67880
- content: {
67881
- "application/json": components["schemas"]["MessageWithCode"];
67882
- };
67883
- };
67884
- /** @description Internal Server Error */
67885
- 500: {
67886
- headers: {
67887
- [name: string]: unknown;
67888
- };
67889
- content: {
67890
- "application/json": components["schemas"]["MessageWithCode"];
67891
- };
67892
- };
67893
- };
67894
- };
67895
67800
  purchase_quotation_views_cancel_purchase_quotation: {
67896
67801
  parameters: {
67897
67802
  query?: never;
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@erp-galoper/types",
3
- "version": "1.0.646",
3
+ "version": "1.0.648",
4
4
  "main": "openapi.ts",
5
5
  "types": "openapi.ts",
6
6
  "files": ["openapi.ts"],