@erp-galoper/main-package 1.0.214 → 1.0.215
Sign up to get free protection for your applications and to get access to all the features.
- package/openapi.ts +16 -6
- package/package.json +1 -1
package/openapi.ts
CHANGED
@@ -970,6 +970,7 @@ export interface paths {
|
|
970
970
|
* - codeConflict
|
971
971
|
* - cityIdDoesNotExist
|
972
972
|
* - cityMismatchWithCountry
|
973
|
+
* - branchDateShouldBeBetweenDateFoundedAndDateOfToday
|
973
974
|
* - userDoesNotExist
|
974
975
|
* - 403:
|
975
976
|
* - permissionDenied
|
@@ -1260,6 +1261,7 @@ export interface paths {
|
|
1260
1261
|
* - success
|
1261
1262
|
* - 400:
|
1262
1263
|
* - parentShouldBeGeneral
|
1264
|
+
* - currencyRequired
|
1263
1265
|
* - 404:
|
1264
1266
|
* - parentDoesNotExist
|
1265
1267
|
* - accountDoesNotExist
|
@@ -1270,7 +1272,7 @@ export interface paths {
|
|
1270
1272
|
* - currencyDoesNotExist
|
1271
1273
|
* - 500:
|
1272
1274
|
* - internalServerError
|
1273
|
-
* # currency is required if account level is detail
|
1275
|
+
* # currency is required if account level is detail and multi currency on
|
1274
1276
|
*/
|
1275
1277
|
get: operations["accounting_chartofaccount_views_available_account_numbers"];
|
1276
1278
|
put?: never;
|
@@ -1323,6 +1325,7 @@ export interface paths {
|
|
1323
1325
|
* - accountNumberShouldBeBetween0and9
|
1324
1326
|
* - accountLevelShouldBeGeneral
|
1325
1327
|
* - CurrencyShouldMatchCompanyCurrency
|
1328
|
+
* - currencyRequired
|
1326
1329
|
* - 500:
|
1327
1330
|
* - internalServerError
|
1328
1331
|
*/
|
@@ -1400,6 +1403,7 @@ export interface paths {
|
|
1400
1403
|
* - cantChangeAccountNumberForAnAccountThatIsParentOfCustomerThatHasChildren
|
1401
1404
|
* - cantChangeAccountNumberForAnAccountThatIsParentOfSupplierThatHasChildren
|
1402
1405
|
* - cantChangeAccountNumberForAnAccountHasTransactions
|
1406
|
+
* - parentDoesNotExist
|
1403
1407
|
* - 403:
|
1404
1408
|
* - permissionDenied
|
1405
1409
|
* - 404:
|
@@ -11666,8 +11670,11 @@ export interface components {
|
|
11666
11670
|
name: string;
|
11667
11671
|
/** Secondname */
|
11668
11672
|
secondName: string | null;
|
11669
|
-
/**
|
11670
|
-
|
11673
|
+
/**
|
11674
|
+
* Currencyid
|
11675
|
+
* @description required when multi currency is on
|
11676
|
+
*/
|
11677
|
+
currencyId?: number;
|
11671
11678
|
reportAccountType: components["schemas"]["AccountTypes"];
|
11672
11679
|
accountLevel: components["schemas"]["AccountLevel"];
|
11673
11680
|
/** Parentid */
|
@@ -11745,8 +11752,11 @@ export interface components {
|
|
11745
11752
|
additionalNumber?: number | null;
|
11746
11753
|
/** Accountnumber */
|
11747
11754
|
accountNumber?: string | null;
|
11748
|
-
/**
|
11749
|
-
|
11755
|
+
/**
|
11756
|
+
* Currencyid
|
11757
|
+
* @description required when multi currency is on
|
11758
|
+
*/
|
11759
|
+
currencyId?: number;
|
11750
11760
|
/** Status */
|
11751
11761
|
status?: boolean | null;
|
11752
11762
|
/** Branchid */
|
@@ -15918,7 +15928,7 @@ export interface components {
|
|
15918
15928
|
/**
|
15919
15929
|
* Id
|
15920
15930
|
* Format: uuid
|
15921
|
-
* @example
|
15931
|
+
* @example 192b18f9-1c1d-46bc-8edb-0dd9c9c169cc
|
15922
15932
|
*/
|
15923
15933
|
id: string;
|
15924
15934
|
/**
|
package/package.json
CHANGED