@erp-galoper/types 1.0.1026 → 1.0.1027

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 +6 -1
  2. package/package.json +1 -1
package/openapi.ts CHANGED
@@ -3971,6 +3971,7 @@ export interface paths {
3971
3971
  * - multicurrencyCannotBeDisabled
3972
3972
  * - secondaryCurrencyIsRequired
3973
3973
  * - useSecondaryCurrencyCannotBeDisabled
3974
+ * - secondaryCurrencyCannotBeSameAsPrimary
3974
3975
  * - 200:
3975
3976
  * - systemSettingUpdated
3976
3977
  * - 403:
@@ -25395,7 +25396,11 @@ export interface components {
25395
25396
  useSecondaryCurrency: boolean;
25396
25397
  /**
25397
25398
  * Secondarycurrency
25398
- * @description currency id, visible and required if useSecondaryCurrency is True
25399
+ * @description
25400
+ * - currency id
25401
+ * - visible and required if useSecondaryCurrency is True
25402
+ * - should not be same as primary currency
25403
+ *
25399
25404
  */
25400
25405
  secondaryCurrency?: number;
25401
25406
  dateFormat: components["schemas"]["DateFormatEnum"];
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@erp-galoper/types",
3
- "version": "1.0.1026",
3
+ "version": "1.0.1027",
4
4
  "main": "openapi.ts",
5
5
  "types": "openapi.ts",
6
6
  "files": ["openapi.ts"],