You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
Copy file name to clipboardExpand all lines: tests/fixtures/generated-test-client.ts
+28-2Lines changed: 28 additions & 2 deletions
Original file line number
Diff line number
Diff line change
@@ -656,6 +656,8 @@ export type GroupBalanceAccountFilter = {
656
656
657
657
/** Filter for finding entries by group membership */
658
658
exporttypeGroupFilter={
659
+
/** Find entries that have ALL of the specified groups. Limited to 10 items maximum. */
660
+
all?: InputMaybe<Array<GroupMatchInput>>;
659
661
/** Find groups that exactly match this group */
660
662
equalTo?: InputMaybe<GroupMatchInput>;
661
663
/** Find groups that match any of these groups */
@@ -1014,6 +1016,14 @@ export type LedgerAccount = {
1014
1016
* this will be composed of the IKs of an account and its ancestors.
1015
1017
*/
1016
1018
path: Scalars['String']['output'];
1019
+
/**
1020
+
* The posted timestamp window for this clearing account, representing the earliest and latest
1021
+
* posted timestamps across all currencies.
1022
+
*
1023
+
* This field is null when the Ledger Account is not configured to be a Clearing account
1024
+
* or when no entries have been posted to this account.
1025
+
*/
1026
+
postedWindow?: Maybe<PostedWindow>;
1017
1027
type: LedgerAccountTypes;
1018
1028
/** A list of external account transactions that haven't been reconciled to this ledger account yet. Only populated for linked ledger accounts. Transactions are sorted in reverse chronological order by posted date. */
1019
1029
unreconciledTxs: TxsConnection;
@@ -1407,7 +1417,7 @@ export type LedgerAccountsFilterSet = {
1407
1417
* Filter by the earliest posted timestamp across all currencies for clearing accounts. This must be used alongside the clearingStatus filter.
1408
1418
* Only clearing accounts where the minimum posted timestamp (across all currencies) matches this filter will be included.
0 commit comments