@erp-galoper/types 1.0.256 → 1.0.258
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 +13 -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;
|
|
@@ -23953,7 +23955,7 @@ export interface components {
|
|
|
23953
23955
|
* Secondarycurrency
|
|
23954
23956
|
* @description currency id, visible and required if useSecondaryCurrency is True
|
|
23955
23957
|
*/
|
|
23956
|
-
secondaryCurrency
|
|
23958
|
+
secondaryCurrency?: number;
|
|
23957
23959
|
dateFormat: components["schemas"]["DateFormatEnum"];
|
|
23958
23960
|
};
|
|
23959
23961
|
/** RegionSchema */
|
|
@@ -26636,7 +26638,7 @@ export interface components {
|
|
|
26636
26638
|
/**
|
|
26637
26639
|
* Id
|
|
26638
26640
|
* Format: uuid
|
|
26639
|
-
* @example
|
|
26641
|
+
* @example 38e9f0d9-195b-4e2e-b5f7-9e47e25e97bd
|
|
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: {
|