@erp-galoper/types 1.0.255 → 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.
- package/openapi.ts +12 -1
- 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
|
|
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: {
|