@erp-galoper/types 1.0.1806 → 1.0.1807
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 +11 -1
- package/package.json +1 -1
package/openapi.ts
CHANGED
|
@@ -34493,9 +34493,19 @@ export interface components {
|
|
|
34493
34493
|
usdRate: number | null;
|
|
34494
34494
|
account: components["schemas"]["AccountReportInfo"];
|
|
34495
34495
|
};
|
|
34496
|
+
/** TrialBalanceAccountSummaryInfo */
|
|
34497
|
+
TrialBalanceAccountSummaryInfo: {
|
|
34498
|
+
/** Id */
|
|
34499
|
+
id: number | string;
|
|
34500
|
+
/** Name */
|
|
34501
|
+
name: string;
|
|
34502
|
+
/** Accountnumber */
|
|
34503
|
+
accountNumber: string;
|
|
34504
|
+
accountType: components["schemas"]["AccountModelType"];
|
|
34505
|
+
};
|
|
34496
34506
|
/** TrialBalanceEntry */
|
|
34497
34507
|
TrialBalanceEntry: {
|
|
34498
|
-
account: components["schemas"]["
|
|
34508
|
+
account: components["schemas"]["TrialBalanceAccountSummaryInfo"];
|
|
34499
34509
|
currency: components["schemas"]["CurrencySummaryInfo"];
|
|
34500
34510
|
/** Debit */
|
|
34501
34511
|
debit: number;
|