@erp-galoper/main-package 1.0.134 → 1.0.135
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 +8 -2
- package/package.json +1 -1
package/openapi.ts
CHANGED
@@ -1579,6 +1579,12 @@ export interface components {
|
|
1579
1579
|
/** Id */
|
1580
1580
|
id: number;
|
1581
1581
|
|
1582
|
+
};
|
1583
|
+
/** ListCurrenciesInExport */
|
1584
|
+
ListCurrenciesInExport: {
|
1585
|
+
/** Name */
|
1586
|
+
name: string;
|
1587
|
+
|
1582
1588
|
};
|
1583
1589
|
/** ListCurrenciesInDopDown */
|
1584
1590
|
ListCurrenciesInDopDown: {
|
@@ -2061,7 +2067,7 @@ export interface components {
|
|
2061
2067
|
/**
|
2062
2068
|
* Id
|
2063
2069
|
* Format: uuid
|
2064
|
-
* @example
|
2070
|
+
* @example e582c5d7-d19f-4b2b-9f3c-c8bfe6a72e3d
|
2065
2071
|
*/
|
2066
2072
|
id: string;
|
2067
2073
|
/**
|
@@ -4232,7 +4238,7 @@ export interface operations {
|
|
4232
4238
|
/** @description OK */
|
4233
4239
|
200: {
|
4234
4240
|
content: {
|
4235
|
-
"application/json": components["schemas"]["
|
4241
|
+
"application/json": components["schemas"]["ListCurrenciesInExport"][];
|
4236
4242
|
};
|
4237
4243
|
};
|
4238
4244
|
/** @description Bad Request */
|
package/package.json
CHANGED