@erp-galoper/main-package 1.0.181 → 1.0.183
Sign up to get free protection for your applications and to get access to all the features.
- package/openapi.ts +15 -7
- package/package.json +1 -1
package/openapi.ts
CHANGED
@@ -1384,6 +1384,12 @@ export interface paths {
|
|
1384
1384
|
* - accountNumberConflict
|
1385
1385
|
* - companyCurrencyDoesNotExist
|
1386
1386
|
* - invalidTypeForSubsidiaryAccount
|
1387
|
+
* - invalidAccountNumber
|
1388
|
+
* - updateDescendantsError
|
1389
|
+
* - cantChangeAccountNumberForAnAccountThatIsParentOfBankThatHasChildren
|
1390
|
+
* - cantChangeAccountNumberForAnAccountThatIsParentOfCustomerThatHasChildren
|
1391
|
+
* - cantChangeAccountNumberForAnAccountThatIsParentOfSupplierThatHasChildren
|
1392
|
+
* - cantChangeAccountNumberForAnAccountHasTransactions
|
1387
1393
|
* - 403:
|
1388
1394
|
* - permissionDenied
|
1389
1395
|
* - 404:
|
@@ -3797,6 +3803,7 @@ export interface paths {
|
|
3797
3803
|
* Possible Responses:
|
3798
3804
|
* - 400:
|
3799
3805
|
* - noChangesDetected
|
3806
|
+
* - multicurrencyCannotBeDisabled
|
3800
3807
|
* - 200:
|
3801
3808
|
* - systemSettingUpdated
|
3802
3809
|
* - 403:
|
@@ -5434,6 +5441,7 @@ export interface paths {
|
|
5434
5441
|
* - defaultGeneralPaymentsAccountsDoesNotExist
|
5435
5442
|
* - 403:
|
5436
5443
|
* - permissionDenied
|
5444
|
+
* - multiCurrencyDisabled
|
5437
5445
|
* - 500:
|
5438
5446
|
* - internalServerError
|
5439
5447
|
*/
|
@@ -5493,6 +5501,7 @@ export interface paths {
|
|
5493
5501
|
* - cantChangePrimaryCurrency
|
5494
5502
|
* - 403:
|
5495
5503
|
* - permissionDenied
|
5504
|
+
* - multiCurrencyDisabled
|
5496
5505
|
* - 404:
|
5497
5506
|
* - currencyDoesNotExist
|
5498
5507
|
* - 500:
|
@@ -11645,8 +11654,6 @@ export interface components {
|
|
11645
11654
|
depth: number;
|
11646
11655
|
/** Balance */
|
11647
11656
|
balance: number;
|
11648
|
-
/** Hastransactions */
|
11649
|
-
hasTransactions: boolean;
|
11650
11657
|
/** Isactive */
|
11651
11658
|
isActive: boolean;
|
11652
11659
|
/** Issubaccount */
|
@@ -11658,6 +11665,8 @@ export interface components {
|
|
11658
11665
|
children: components["schemas"]["RetrieveChartOfAccountSchema"][] | null;
|
11659
11666
|
/** Cancreatechildren */
|
11660
11667
|
canCreateChildren: boolean;
|
11668
|
+
/** Hastransactions */
|
11669
|
+
hasTransactions: boolean;
|
11661
11670
|
};
|
11662
11671
|
/** UpdateAccount */
|
11663
11672
|
UpdateAccount: {
|
@@ -11674,7 +11683,7 @@ export interface components {
|
|
11674
11683
|
/** Accountnumber */
|
11675
11684
|
accountNumber?: string | null;
|
11676
11685
|
/** Currencyid */
|
11677
|
-
currencyId
|
11686
|
+
currencyId: number;
|
11678
11687
|
/** Status */
|
11679
11688
|
status?: boolean | null;
|
11680
11689
|
/** Branchid */
|
@@ -11722,8 +11731,6 @@ export interface components {
|
|
11722
11731
|
depth: number;
|
11723
11732
|
/** Balance */
|
11724
11733
|
balance: number;
|
11725
|
-
/** Hastransactions */
|
11726
|
-
hasTransactions: boolean;
|
11727
11734
|
/** Isactive */
|
11728
11735
|
isActive: boolean;
|
11729
11736
|
/** Issubaccount */
|
@@ -11735,6 +11742,8 @@ export interface components {
|
|
11735
11742
|
children: components["schemas"]["RetrieveChartOfAccountSchema"][] | null;
|
11736
11743
|
/** Cancreatechildren */
|
11737
11744
|
canCreateChildren: boolean;
|
11745
|
+
/** Hastransactions */
|
11746
|
+
hasTransactions: boolean;
|
11738
11747
|
parent: components["schemas"]["AccountSummaryInfo"] | null;
|
11739
11748
|
/** Companybalance */
|
11740
11749
|
companyBalance: number;
|
@@ -15847,7 +15856,7 @@ export interface components {
|
|
15847
15856
|
/**
|
15848
15857
|
* Id
|
15849
15858
|
* Format: uuid
|
15850
|
-
* @example
|
15859
|
+
* @example 25fe6853-0d94-400c-9432-019ee9890236
|
15851
15860
|
*/
|
15852
15861
|
id: string;
|
15853
15862
|
/**
|
@@ -21140,7 +21149,6 @@ export interface operations {
|
|
21140
21149
|
accounting_chartofaccount_views_available_account_numbers: {
|
21141
21150
|
parameters: {
|
21142
21151
|
query: {
|
21143
|
-
/** @example 345 */
|
21144
21152
|
parentId: number;
|
21145
21153
|
/** @example General */
|
21146
21154
|
accountLevel: "General" | "Detail";
|
package/package.json
CHANGED