@erp-galoper/main-package 1.0.265 → 1.0.267
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 +30 -2
- package/package.json +1 -1
package/openapi.ts
CHANGED
@@ -11907,7 +11907,7 @@ export interface components {
|
|
11907
11907
|
* ApprovalChoices
|
11908
11908
|
* @enum {string}
|
11909
11909
|
*/
|
11910
|
-
ApprovalChoices: "draft" | "pending" | "approved" | "rejected" | "notRequired";
|
11910
|
+
ApprovalChoices: "draft" | "pending" | "approved" | "rejected" | "notRequired" | "noResponse";
|
11911
11911
|
/** JournalVoucherResponse */
|
11912
11912
|
JournalVoucherResponse: {
|
11913
11913
|
/** Message */
|
@@ -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