@erp-galoper/main-package 1.0.107 → 1.0.108

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 +11 -3
  2. package/package.json +1 -1
package/openapi.ts CHANGED
@@ -468,7 +468,11 @@ export interface paths {
468
468
  "/api/v1/reports/balance_sheet/": {
469
469
  /**
470
470
  * Balance Sheet
471
- * @description
471
+ * @description endpoint to get balance sheet report
472
+ * possible responses:
473
+ * - 200: noMessage, noCode, justData
474
+ * - 400: currencyNotAllowed, branchNotFound, currencyNotFound
475
+ * - 403: permissonDenied
472
476
  */
473
477
  get: operations["reports_views_balance_sheet"];
474
478
  };
@@ -1725,7 +1729,7 @@ export interface components {
1725
1729
  /**
1726
1730
  * Id
1727
1731
  * Format: uuid
1728
- * @example 55a1db80-7841-44c0-a40a-63fadabc5185
1732
+ * @example 6a8f72de-952f-44df-9abb-0721f416f950
1729
1733
  */
1730
1734
  id: string;
1731
1735
  /**
@@ -3421,7 +3425,11 @@ export interface operations {
3421
3425
  };
3422
3426
  /**
3423
3427
  * Balance Sheet
3424
- * @description
3428
+ * @description endpoint to get balance sheet report
3429
+ * possible responses:
3430
+ * - 200: noMessage, noCode, justData
3431
+ * - 400: currencyNotAllowed, branchNotFound, currencyNotFound
3432
+ * - 403: permissonDenied
3425
3433
  */
3426
3434
  reports_views_balance_sheet: {
3427
3435
  parameters: {
package/package.json CHANGED
@@ -1,5 +1,5 @@
1
1
  {
2
2
  "name": "@erp-galoper/main-package",
3
- "version": "1.0.107",
3
+ "version": "1.0.108",
4
4
  "main": "openapi.ts"
5
5
  }