@erp-galoper/main-package 1.0.180 → 1.0.182
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.
- package/openapi.ts +13 -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:
|
@@ -6263,6 +6269,7 @@ export interface paths {
|
|
6263
6269
|
* - 403: permissionDenied
|
6264
6270
|
* - 404: approvalConfigDoesNotExist
|
6265
6271
|
* - documentDoesNotExist
|
6272
|
+
* - approvalLevelsMustBeSetFirst
|
6266
6273
|
* - 500: serverError
|
6267
6274
|
*/
|
6268
6275
|
patch: operations["erp_settings_approval_settings_views_update_approval_config"];
|
@@ -11644,8 +11651,6 @@ export interface components {
|
|
11644
11651
|
depth: number;
|
11645
11652
|
/** Balance */
|
11646
11653
|
balance: number;
|
11647
|
-
/** Hastransactions */
|
11648
|
-
hasTransactions: boolean;
|
11649
11654
|
/** Isactive */
|
11650
11655
|
isActive: boolean;
|
11651
11656
|
/** Issubaccount */
|
@@ -11657,6 +11662,8 @@ export interface components {
|
|
11657
11662
|
children: components["schemas"]["RetrieveChartOfAccountSchema"][] | null;
|
11658
11663
|
/** Cancreatechildren */
|
11659
11664
|
canCreateChildren: boolean;
|
11665
|
+
/** Hastransactions */
|
11666
|
+
hasTransactions: boolean;
|
11660
11667
|
};
|
11661
11668
|
/** UpdateAccount */
|
11662
11669
|
UpdateAccount: {
|
@@ -11673,7 +11680,7 @@ export interface components {
|
|
11673
11680
|
/** Accountnumber */
|
11674
11681
|
accountNumber?: string | null;
|
11675
11682
|
/** Currencyid */
|
11676
|
-
currencyId
|
11683
|
+
currencyId: number;
|
11677
11684
|
/** Status */
|
11678
11685
|
status?: boolean | null;
|
11679
11686
|
/** Branchid */
|
@@ -11721,8 +11728,6 @@ export interface components {
|
|
11721
11728
|
depth: number;
|
11722
11729
|
/** Balance */
|
11723
11730
|
balance: number;
|
11724
|
-
/** Hastransactions */
|
11725
|
-
hasTransactions: boolean;
|
11726
11731
|
/** Isactive */
|
11727
11732
|
isActive: boolean;
|
11728
11733
|
/** Issubaccount */
|
@@ -11734,6 +11739,8 @@ export interface components {
|
|
11734
11739
|
children: components["schemas"]["RetrieveChartOfAccountSchema"][] | null;
|
11735
11740
|
/** Cancreatechildren */
|
11736
11741
|
canCreateChildren: boolean;
|
11742
|
+
/** Hastransactions */
|
11743
|
+
hasTransactions: boolean;
|
11737
11744
|
parent: components["schemas"]["AccountSummaryInfo"] | null;
|
11738
11745
|
/** Companybalance */
|
11739
11746
|
companyBalance: number;
|
@@ -15846,7 +15853,7 @@ export interface components {
|
|
15846
15853
|
/**
|
15847
15854
|
* Id
|
15848
15855
|
* Format: uuid
|
15849
|
-
* @example
|
15856
|
+
* @example 67fccfd7-1a5f-4b7a-bc43-9037b2bf86aa
|
15850
15857
|
*/
|
15851
15858
|
id: string;
|
15852
15859
|
/**
|
@@ -21139,7 +21146,6 @@ export interface operations {
|
|
21139
21146
|
accounting_chartofaccount_views_available_account_numbers: {
|
21140
21147
|
parameters: {
|
21141
21148
|
query: {
|
21142
|
-
/** @example 345 */
|
21143
21149
|
parentId: number;
|
21144
21150
|
/** @example General */
|
21145
21151
|
accountLevel: "General" | "Detail";
|
package/package.json
CHANGED