@erp-galoper/main-package 1.0.266 → 1.0.267
Sign up to get free protection for your applications and to get access to all the features.
- package/openapi.ts +29 -1
- package/package.json +1 -1
package/openapi.ts
CHANGED
@@ -15141,6 +15141,7 @@ export interface components {
|
|
15141
15141
|
info: components["schemas"]["PageInfoSchema"];
|
15142
15142
|
/** Results */
|
15143
15143
|
results: components["schemas"]["GeneralLedgerSchema"][];
|
15144
|
+
totals: components["schemas"]["GeneralLedgerTotals"];
|
15144
15145
|
};
|
15145
15146
|
/** GeneralLedgerSchema */
|
15146
15147
|
GeneralLedgerSchema: {
|
@@ -15172,6 +15173,33 @@ export interface components {
|
|
15172
15173
|
/** Transactions */
|
15173
15174
|
transactions: components["schemas"]["TransactionsSchema"][];
|
15174
15175
|
};
|
15176
|
+
/** GeneralLedgerTotals */
|
15177
|
+
GeneralLedgerTotals: {
|
15178
|
+
/** Totaldebit */
|
15179
|
+
totalDebit: number;
|
15180
|
+
/** Totalcredit */
|
15181
|
+
totalCredit: number;
|
15182
|
+
/** Totalbalance */
|
15183
|
+
totalBalance: number;
|
15184
|
+
/** Totalcompanydebit */
|
15185
|
+
totalCompanyDebit: number;
|
15186
|
+
/** Totalcompanycredit */
|
15187
|
+
totalCompanyCredit: number;
|
15188
|
+
/** Totalcompanybalance */
|
15189
|
+
totalCompanyBalance: number;
|
15190
|
+
/** Totalusddebit */
|
15191
|
+
totalUsdDebit: number;
|
15192
|
+
/** Totalusdcredit */
|
15193
|
+
totalUsdCredit: number;
|
15194
|
+
/** Totalusdbalance */
|
15195
|
+
totalUsdBalance: number;
|
15196
|
+
/** Initialbalance */
|
15197
|
+
initialBalance: number;
|
15198
|
+
/** Initialbalancecompany */
|
15199
|
+
initialBalanceCompany: number;
|
15200
|
+
/** Initialbalanceusd */
|
15201
|
+
initialBalanceUsd: number;
|
15202
|
+
};
|
15175
15203
|
/** TransactionsSchema */
|
15176
15204
|
TransactionsSchema: {
|
15177
15205
|
/**
|
@@ -15930,7 +15958,7 @@ export interface components {
|
|
15930
15958
|
/**
|
15931
15959
|
* Id
|
15932
15960
|
* Format: uuid
|
15933
|
-
* @example
|
15961
|
+
* @example a2e8c03f-66b4-4234-83e4-974bfa67e743
|
15934
15962
|
*/
|
15935
15963
|
id: string;
|
15936
15964
|
/**
|
package/package.json
CHANGED