@erp-galoper/types 1.0.769 → 1.0.771

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 +8 -3
  2. package/package.json +1 -1
package/openapi.ts CHANGED
@@ -1488,6 +1488,7 @@ export interface paths {
1488
1488
  * - CurrencyShouldMatchCompanyCurrency
1489
1489
  * - currencyRequired
1490
1490
  * - accountShouldBeSubsidiaryAtLevel8
1491
+ * - accountCurrencyShouldBeCompanyOrSecondaryCurrency
1491
1492
  * - 500:
1492
1493
  * - internalServerError
1493
1494
  */
@@ -1568,6 +1569,7 @@ export interface paths {
1568
1569
  * - parentDoesNotExist
1569
1570
  * - accountShouldBeSubsidiaryAtLevel8
1570
1571
  * - parentCantBeSubsidiaryAccount
1572
+ * - accountCurrencyShouldBeCompanyOrSecondaryCurrency
1571
1573
  * - 403:
1572
1574
  * - permissionDenied
1573
1575
  * - 404:
@@ -20259,7 +20261,7 @@ export interface components {
20259
20261
  * BasePermissionsSchema_Supplier_SupplierEnum
20260
20262
  * @enum {string}
20261
20263
  */
20262
- BasePermissionsSchema_Supplier_SupplierEnum: "add" | "change" | "delete" | "view";
20264
+ BasePermissionsSchema_Supplier_SupplierEnum: "add" | "change" | "delete" | "import" | "view";
20263
20265
  /**
20264
20266
  * CountryCodes
20265
20267
  * @enum {string}
@@ -22591,7 +22593,7 @@ export interface components {
22591
22593
  secondName: string | null;
22592
22594
  /**
22593
22595
  * Currencyid
22594
- * @description required when multi currency is on
22596
+ * @description required when multi currency is on, if account is general accepted currency is company or secondary currency if applicable
22595
22597
  */
22596
22598
  currencyId?: number;
22597
22599
  reportAccountType: components["schemas"]["AccountTypes"];
@@ -22668,7 +22670,10 @@ export interface components {
22668
22670
  accountNumber?: string | null;
22669
22671
  /**
22670
22672
  * Currencyid
22671
- * @description visible and required when multi currency is on, you should call available account numbers when user make changes in this field
22673
+ * @description
22674
+ * visible and required when multi currency is on
22675
+ * if account is general accepted currency is company or secondary currency if applicable
22676
+ * you should call available account numbers when user make changes in this field
22672
22677
  */
22673
22678
  currencyId?: number;
22674
22679
  /** Status */
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@erp-galoper/types",
3
- "version": "1.0.769",
3
+ "version": "1.0.771",
4
4
  "main": "openapi.ts",
5
5
  "types": "openapi.ts",
6
6
  "files": ["openapi.ts"],