@erp-galoper/types 1.0.873 → 1.0.875
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 +62 -8
- package/package.json +1 -1
package/openapi.ts
CHANGED
|
@@ -22695,23 +22695,50 @@ export interface components {
|
|
|
22695
22695
|
name: string;
|
|
22696
22696
|
/** Secondname */
|
|
22697
22697
|
secondName?: string | null;
|
|
22698
|
-
/**
|
|
22698
|
+
/**
|
|
22699
|
+
* Parentnumber
|
|
22700
|
+
* @description
|
|
22701
|
+
* - The parent number, which serves as a high-level category for accounts, (e.g., '530' in the account number '530-000001')
|
|
22702
|
+
* Note : this field should not be displayed in the accounts list.
|
|
22703
|
+
*
|
|
22704
|
+
*/
|
|
22699
22705
|
parentNumber: number | null;
|
|
22700
|
-
/**
|
|
22706
|
+
/**
|
|
22707
|
+
* Additionalnumber
|
|
22708
|
+
* @description
|
|
22709
|
+
* - An auto-incrementing (for subsidiary) or unique number (for general) assigned to a specific account, which provides a detailed breakdown within a parent group, (e.g., 000001 in the account number 2000-000001
|
|
22710
|
+
* Note : this field should not be displayed in the accounts list.
|
|
22711
|
+
*
|
|
22712
|
+
*/
|
|
22701
22713
|
additionalNumber: number;
|
|
22702
22714
|
/** Accountnumber */
|
|
22703
22715
|
accountNumber: string;
|
|
22704
22716
|
currency: components["schemas"]["CurrencySummaryInfo"];
|
|
22717
|
+
/** @description
|
|
22718
|
+
* - Indicates the level of this account. 'Subsidiary' accounts are for direct transactions, while 'General' accounts are affected by subsidiary accounts.
|
|
22719
|
+
* */
|
|
22705
22720
|
accountLevel: components["schemas"]["AccountLevel"];
|
|
22706
22721
|
/** Reportaccounttype */
|
|
22707
22722
|
reportAccountType: string;
|
|
22708
|
-
/**
|
|
22723
|
+
/**
|
|
22724
|
+
* Depth
|
|
22725
|
+
* @description
|
|
22726
|
+
* - The depth of the account in the chart of accounts hierarchy
|
|
22727
|
+
* Note : this field should not be displayed in the accounts list
|
|
22728
|
+
*
|
|
22729
|
+
*/
|
|
22709
22730
|
depth: number;
|
|
22710
22731
|
/** Balance */
|
|
22711
22732
|
balance: number;
|
|
22712
22733
|
/** Isactive */
|
|
22713
22734
|
isActive: boolean;
|
|
22714
|
-
/**
|
|
22735
|
+
/**
|
|
22736
|
+
* Issubaccount
|
|
22737
|
+
* @description
|
|
22738
|
+
* - If true, this account is a child account; if false, it is a root (top-level) account
|
|
22739
|
+
* Note : this field should not be displayed in the accounts list.
|
|
22740
|
+
*
|
|
22741
|
+
*/
|
|
22715
22742
|
isSubAccount: boolean;
|
|
22716
22743
|
/**
|
|
22717
22744
|
* Children
|
|
@@ -22783,23 +22810,50 @@ export interface components {
|
|
|
22783
22810
|
name: string;
|
|
22784
22811
|
/** Secondname */
|
|
22785
22812
|
secondName?: string | null;
|
|
22786
|
-
/**
|
|
22813
|
+
/**
|
|
22814
|
+
* Parentnumber
|
|
22815
|
+
* @description
|
|
22816
|
+
* - The parent number, which serves as a high-level category for accounts, (e.g., '530' in the account number '530-000001')
|
|
22817
|
+
* Note : this field should not be displayed in the accounts list.
|
|
22818
|
+
*
|
|
22819
|
+
*/
|
|
22787
22820
|
parentNumber: number | null;
|
|
22788
|
-
/**
|
|
22821
|
+
/**
|
|
22822
|
+
* Additionalnumber
|
|
22823
|
+
* @description
|
|
22824
|
+
* - An auto-incrementing (for subsidiary) or unique number (for general) assigned to a specific account, which provides a detailed breakdown within a parent group, (e.g., 000001 in the account number 2000-000001
|
|
22825
|
+
* Note : this field should not be displayed in the accounts list.
|
|
22826
|
+
*
|
|
22827
|
+
*/
|
|
22789
22828
|
additionalNumber: number;
|
|
22790
22829
|
/** Accountnumber */
|
|
22791
22830
|
accountNumber: string;
|
|
22792
22831
|
currency: components["schemas"]["CurrencySummaryInfo"];
|
|
22832
|
+
/** @description
|
|
22833
|
+
* - Indicates the level of this account. 'Subsidiary' accounts are for direct transactions, while 'General' accounts are affected by subsidiary accounts.
|
|
22834
|
+
* */
|
|
22793
22835
|
accountLevel: components["schemas"]["AccountLevel"];
|
|
22794
22836
|
/** Reportaccounttype */
|
|
22795
22837
|
reportAccountType: string;
|
|
22796
|
-
/**
|
|
22838
|
+
/**
|
|
22839
|
+
* Depth
|
|
22840
|
+
* @description
|
|
22841
|
+
* - The depth of the account in the chart of accounts hierarchy
|
|
22842
|
+
* Note : this field should not be displayed in the accounts list
|
|
22843
|
+
*
|
|
22844
|
+
*/
|
|
22797
22845
|
depth: number;
|
|
22798
22846
|
/** Balance */
|
|
22799
22847
|
balance: number;
|
|
22800
22848
|
/** Isactive */
|
|
22801
22849
|
isActive: boolean;
|
|
22802
|
-
/**
|
|
22850
|
+
/**
|
|
22851
|
+
* Issubaccount
|
|
22852
|
+
* @description
|
|
22853
|
+
* - If true, this account is a child account; if false, it is a root (top-level) account
|
|
22854
|
+
* Note : this field should not be displayed in the accounts list.
|
|
22855
|
+
*
|
|
22856
|
+
*/
|
|
22803
22857
|
isSubAccount: boolean;
|
|
22804
22858
|
/**
|
|
22805
22859
|
* Children
|