@erp-galoper/types 1.0.1013 → 1.0.1014
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 +4 -2
- package/package.json +1 -1
package/openapi.ts
CHANGED
|
@@ -60595,7 +60595,8 @@ export interface operations {
|
|
|
60595
60595
|
fromAccount: string;
|
|
60596
60596
|
/** @description Use the '/api/v1/common/posting_accounts/' endpoint with 'type=General' to retrieve valid accounts, and filter the accounts to include only those with an account_number greater than the one selected in from_account. you have to send the account number of the account you want to end with. */
|
|
60597
60597
|
toAccount: string;
|
|
60598
|
-
|
|
60598
|
+
/** @description default should be with "active" entries */
|
|
60599
|
+
transactionStatus?: ("withDraftEntries" | "withReversedEntries" | "withActiveEntries")[];
|
|
60599
60600
|
transactionTypes: ("journalVoucher" | "salesInvoice" | "downPayment" | "receiptVoucher" | "salesReturnInvoice" | "salesCreditNote" | "purchaseInvoice" | "advancePayment" | "paymentVoucher" | "purchaseReturnInvoice" | "purchaseCreditNote")[];
|
|
60600
60601
|
branches: number[];
|
|
60601
60602
|
showAccountsWithZeroBalance: boolean;
|
|
@@ -60663,7 +60664,8 @@ export interface operations {
|
|
|
60663
60664
|
fromDate: string;
|
|
60664
60665
|
/** @description To date */
|
|
60665
60666
|
toDate: string;
|
|
60666
|
-
|
|
60667
|
+
/** @description default should be with active entries */
|
|
60668
|
+
transactionStatus?: ("withDraftEntries" | "withReversedEntries" | "withActiveEntries")[];
|
|
60667
60669
|
/** @description Include opening balance */
|
|
60668
60670
|
withOpeningBalance: boolean;
|
|
60669
60671
|
branches: number[];
|