@erp-galoper/main-package 1.0.182 → 1.0.184
Sign up to get free protection for your applications and to get access to all the features.
- package/openapi.ts +7 -4
- package/package.json +1 -1
package/openapi.ts
CHANGED
@@ -3803,6 +3803,7 @@ export interface paths {
|
|
3803
3803
|
* Possible Responses:
|
3804
3804
|
* - 400:
|
3805
3805
|
* - noChangesDetected
|
3806
|
+
* - multicurrencyCannotBeDisabled
|
3806
3807
|
* - 200:
|
3807
3808
|
* - systemSettingUpdated
|
3808
3809
|
* - 403:
|
@@ -5440,6 +5441,7 @@ export interface paths {
|
|
5440
5441
|
* - defaultGeneralPaymentsAccountsDoesNotExist
|
5441
5442
|
* - 403:
|
5442
5443
|
* - permissionDenied
|
5444
|
+
* - multiCurrencyDisabled
|
5443
5445
|
* - 500:
|
5444
5446
|
* - internalServerError
|
5445
5447
|
*/
|
@@ -5499,6 +5501,7 @@ export interface paths {
|
|
5499
5501
|
* - cantChangePrimaryCurrency
|
5500
5502
|
* - 403:
|
5501
5503
|
* - permissionDenied
|
5504
|
+
* - multiCurrencyDisabled
|
5502
5505
|
* - 404:
|
5503
5506
|
* - currencyDoesNotExist
|
5504
5507
|
* - 500:
|
@@ -15853,7 +15856,7 @@ export interface components {
|
|
15853
15856
|
/**
|
15854
15857
|
* Id
|
15855
15858
|
* Format: uuid
|
15856
|
-
* @example
|
15859
|
+
* @example 6ca5e2aa-2672-4341-997d-ecdcaddfbaad
|
15857
15860
|
*/
|
15858
15861
|
id: string;
|
15859
15862
|
/**
|
@@ -25633,7 +25636,7 @@ export interface operations {
|
|
25633
25636
|
};
|
25634
25637
|
requestBody: {
|
25635
25638
|
content: {
|
25636
|
-
"application/json": components["schemas"]["
|
25639
|
+
"application/json": components["schemas"]["CreateTagSchema"];
|
25637
25640
|
};
|
25638
25641
|
};
|
25639
25642
|
responses: {
|
@@ -26322,7 +26325,7 @@ export interface operations {
|
|
26322
26325
|
[name: string]: unknown;
|
26323
26326
|
};
|
26324
26327
|
content: {
|
26325
|
-
"application/json": components["schemas"]["
|
26328
|
+
"application/json": components["schemas"]["ErrorMessages"];
|
26326
26329
|
};
|
26327
26330
|
};
|
26328
26331
|
/** @description Forbidden */
|
@@ -26498,7 +26501,7 @@ export interface operations {
|
|
26498
26501
|
[name: string]: unknown;
|
26499
26502
|
};
|
26500
26503
|
content: {
|
26501
|
-
"application/json": components["schemas"]["
|
26504
|
+
"application/json": components["schemas"]["ErrorMessages"];
|
26502
26505
|
};
|
26503
26506
|
};
|
26504
26507
|
/** @description Forbidden */
|
package/package.json
CHANGED