@erp-galoper/main-package 1.0.181 → 1.0.182
Sign up to get free protection for your applications and to get access to all the features.
- package/openapi.ts +12 -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:
|
@@ -11645,8 +11651,6 @@ export interface components {
|
|
11645
11651
|
depth: number;
|
11646
11652
|
/** Balance */
|
11647
11653
|
balance: number;
|
11648
|
-
/** Hastransactions */
|
11649
|
-
hasTransactions: boolean;
|
11650
11654
|
/** Isactive */
|
11651
11655
|
isActive: boolean;
|
11652
11656
|
/** Issubaccount */
|
@@ -11658,6 +11662,8 @@ export interface components {
|
|
11658
11662
|
children: components["schemas"]["RetrieveChartOfAccountSchema"][] | null;
|
11659
11663
|
/** Cancreatechildren */
|
11660
11664
|
canCreateChildren: boolean;
|
11665
|
+
/** Hastransactions */
|
11666
|
+
hasTransactions: boolean;
|
11661
11667
|
};
|
11662
11668
|
/** UpdateAccount */
|
11663
11669
|
UpdateAccount: {
|
@@ -11674,7 +11680,7 @@ export interface components {
|
|
11674
11680
|
/** Accountnumber */
|
11675
11681
|
accountNumber?: string | null;
|
11676
11682
|
/** Currencyid */
|
11677
|
-
currencyId
|
11683
|
+
currencyId: number;
|
11678
11684
|
/** Status */
|
11679
11685
|
status?: boolean | null;
|
11680
11686
|
/** Branchid */
|
@@ -11722,8 +11728,6 @@ export interface components {
|
|
11722
11728
|
depth: number;
|
11723
11729
|
/** Balance */
|
11724
11730
|
balance: number;
|
11725
|
-
/** Hastransactions */
|
11726
|
-
hasTransactions: boolean;
|
11727
11731
|
/** Isactive */
|
11728
11732
|
isActive: boolean;
|
11729
11733
|
/** Issubaccount */
|
@@ -11735,6 +11739,8 @@ export interface components {
|
|
11735
11739
|
children: components["schemas"]["RetrieveChartOfAccountSchema"][] | null;
|
11736
11740
|
/** Cancreatechildren */
|
11737
11741
|
canCreateChildren: boolean;
|
11742
|
+
/** Hastransactions */
|
11743
|
+
hasTransactions: boolean;
|
11738
11744
|
parent: components["schemas"]["AccountSummaryInfo"] | null;
|
11739
11745
|
/** Companybalance */
|
11740
11746
|
companyBalance: number;
|
@@ -15847,7 +15853,7 @@ export interface components {
|
|
15847
15853
|
/**
|
15848
15854
|
* Id
|
15849
15855
|
* Format: uuid
|
15850
|
-
* @example
|
15856
|
+
* @example 67fccfd7-1a5f-4b7a-bc43-9037b2bf86aa
|
15851
15857
|
*/
|
15852
15858
|
id: string;
|
15853
15859
|
/**
|
@@ -21140,7 +21146,6 @@ export interface operations {
|
|
21140
21146
|
accounting_chartofaccount_views_available_account_numbers: {
|
21141
21147
|
parameters: {
|
21142
21148
|
query: {
|
21143
|
-
/** @example 345 */
|
21144
21149
|
parentId: number;
|
21145
21150
|
/** @example General */
|
21146
21151
|
accountLevel: "General" | "Detail";
|
package/package.json
CHANGED