Skip to content

Commit a0082be

Browse files
authored
update npm tar to 7.5.2 (#57)
1 parent dbc40f4 commit a0082be

File tree

8 files changed

+122
-16
lines changed

8 files changed

+122
-16
lines changed

.github/workflows/updateSDKQueries.yml

Lines changed: 7 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -55,14 +55,18 @@ jobs:
5555
working-directory: ./node-client
5656
run: yarn build
5757

58+
- name: Update test schema
59+
working-directory: ./node-client
60+
run: yarn update-test-schema
61+
5862
- name: Create Pull Request
5963
uses: peter-evans/create-pull-request@153407881ec5c347639a548ade7d8ad1d6740e38 # vr
6064
with:
6165
path: ./node-client
6266
token: ${{ steps.generate-token.outputs.token }}
63-
commit-message: 'Update Node SDK queries'
64-
title: 'Update Node SDK queries'
65-
base: 'dev'
67+
commit-message: "Update Node SDK queries"
68+
title: "Update Node SDK queries"
69+
base: "dev"
6670
branch: update-sdk-queries/${{ github.run_id }}
6771
body: >
6872
This PR is auto-generated by github action.

dist/cjs/types/generated/generated.d.ts

Lines changed: 27 additions & 2 deletions
Some generated files are not rendered by default. Learn more about customizing how changed files appear on GitHub.

dist/cjs/types/generated/generated.d.ts.map

Lines changed: 1 addition & 1 deletion
Some generated files are not rendered by default. Learn more about customizing how changed files appear on GitHub.

dist/esm/types/generated/generated.d.ts

Lines changed: 27 additions & 2 deletions
Some generated files are not rendered by default. Learn more about customizing how changed files appear on GitHub.

dist/esm/types/generated/generated.d.ts.map

Lines changed: 1 addition & 1 deletion
Some generated files are not rendered by default. Learn more about customizing how changed files appear on GitHub.

generated/generated.ts

Lines changed: 28 additions & 2 deletions
Some generated files are not rendered by default. Learn more about customizing how changed files appear on GitHub.

tests/fixtures/generated-test-client.ts

Lines changed: 28 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -656,6 +656,8 @@ export type GroupBalanceAccountFilter = {
656656

657657
/** Filter for finding entries by group membership */
658658
export type GroupFilter = {
659+
/** Find entries that have ALL of the specified groups. Limited to 10 items maximum. */
660+
all?: InputMaybe<Array<GroupMatchInput>>;
659661
/** Find groups that exactly match this group */
660662
equalTo?: InputMaybe<GroupMatchInput>;
661663
/** Find groups that match any of these groups */
@@ -1014,6 +1016,14 @@ export type LedgerAccount = {
10141016
* this will be composed of the IKs of an account and its ancestors.
10151017
*/
10161018
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>;
10171027
type: LedgerAccountTypes;
10181028
/** 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. */
10191029
unreconciledTxs: TxsConnection;
@@ -1407,7 +1417,7 @@ export type LedgerAccountsFilterSet = {
14071417
* Filter by the earliest posted timestamp across all currencies for clearing accounts. This must be used alongside the clearingStatus filter.
14081418
* Only clearing accounts where the minimum posted timestamp (across all currencies) matches this filter will be included.
14091419
*/
1410-
earliestPostedTimestamp?: InputMaybe<DateTimeFilter>;
1420+
earliestPosted?: InputMaybe<DateTimeFilter>;
14111421
/** Use this to filter Ledger Accounts by their parent status */
14121422
hasParentLedgerAccount?: InputMaybe<Scalars['Boolean']['input']>;
14131423
/** Use this to filter Ledger Accounts by their linked status */
@@ -1416,7 +1426,7 @@ export type LedgerAccountsFilterSet = {
14161426
* Filter by the latest posted timestamp across all currencies for clearing accounts. This must be used alongside the clearingStatus filter.
14171427
* Only clearing accounts where the maximum posted timestamp (across all currencies) matches this filter will be included.
14181428
*/
1419-
latestPostedTimestamp?: InputMaybe<DateTimeFilter>;
1429+
latestPosted?: InputMaybe<DateTimeFilter>;
14201430
/** Use this to filter Ledger Accounts by their ID or path */
14211431
ledgerAccount?: InputMaybe<LedgerAccountFilter>;
14221432
/** Use this to filter Ledger Accounts by their external linked account ID */
@@ -2323,6 +2333,18 @@ export type PageInfo = {
23232333
startCursor?: Maybe<Scalars['String']['output']>;
23242334
};
23252335

2336+
/**
2337+
* The posted timestamp window for a clearing account, representing the earliest and latest
2338+
* posted timestamps across all currencies.
2339+
*/
2340+
export type PostedWindow = {
2341+
__typename?: 'PostedWindow';
2342+
/** The earliest posted timestamp across all currencies for this clearing account. */
2343+
earliest: Scalars['DateTime']['output'];
2344+
/** The latest posted timestamp across all currencies for this clearing account. */
2345+
latest: Scalars['DateTime']['output'];
2346+
};
2347+
23262348
/** View the API guide [here](https://fragment.dev/api-reference/api-queries) */
23272349
export type Query = {
23282350
__typename?: 'Query';
@@ -2554,6 +2576,8 @@ export type SchemaVersionsArgs = {
25542576
export type SchemaConditionInput = {
25552577
/** A condition on the `ownBalance` of the Ledger Account. */
25562578
ownBalance?: InputMaybe<SchemaInt96ConditionInput>;
2579+
/** A condition on the `totalBalance` of the Ledger Account. */
2580+
totalBalance?: InputMaybe<SchemaInt96ConditionInput>;
25572581
};
25582582

25592583
/** A paginated list of Schemas in a Workspace. */
@@ -2923,6 +2947,8 @@ export type SyncCustomTxsResult = {
29232947

29242948
/** Filters a result set based on the tags it contains. */
29252949
export type TagFilter = {
2950+
/** Matches entries that have ALL of the specified tags. The key and value are both matched exactly. Limited to 10 items maximum. */
2951+
all?: InputMaybe<Array<TagMatchInput>>;
29262952
/** Matches tag values based on the existence of the provided string within the tag value. The key is matched exactly. */
29272953
contains?: InputMaybe<TagMatchInput>;
29282954
/** Matches tags based on the exact value provided. The key and value are both matched exactly. */

yarn.lock

Lines changed: 3 additions & 3 deletions
Some generated files are not rendered by default. Learn more about customizing how changed files appear on GitHub.

0 commit comments

Comments
 (0)