@erp-galoper/types 1.0.256 → 1.0.257

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 +12 -1
  2. package/package.json +1 -1
package/openapi.ts CHANGED
@@ -1132,6 +1132,8 @@ export interface paths {
1132
1132
  * - success
1133
1133
  * -403:
1134
1134
  * - permissionDenied
1135
+ * -400:
1136
+ * - galoperSettingsDoesNotExist
1135
1137
  */
1136
1138
  get: operations["company_views_company_setup_steps"];
1137
1139
  put?: never;
@@ -26636,7 +26638,7 @@ export interface components {
26636
26638
  /**
26637
26639
  * Id
26638
26640
  * Format: uuid
26639
- * @example 016c590e-d8ac-4587-bbd9-63fb99dfb6f8
26641
+ * @example 61d81f36-2480-4bc2-92d0-71d91ef0b945
26640
26642
  */
26641
26643
  id: string;
26642
26644
  /**
@@ -46466,6 +46468,15 @@ export interface operations {
46466
46468
  "application/json": Record<string, never>;
46467
46469
  };
46468
46470
  };
46471
+ /** @description Bad Request */
46472
+ 400: {
46473
+ headers: {
46474
+ [name: string]: unknown;
46475
+ };
46476
+ content: {
46477
+ "application/json": components["schemas"]["ErrorMessages"];
46478
+ };
46479
+ };
46469
46480
  /** @description Forbidden */
46470
46481
  403: {
46471
46482
  headers: {
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@erp-galoper/types",
3
- "version": "1.0.256",
3
+ "version": "1.0.257",
4
4
  "main": "openapi.ts",
5
5
  "types": "openapi.ts",
6
6
  "files": ["openapi.ts"],