Skip to content

Commit 78c8bc9

Browse files
dggrunzweigclaude
andauthored
Fix Dependabot security alerts (#60)
Co-authored-by: Claude Opus 4.5 <noreply@anthropic.com>
1 parent a0082be commit 78c8bc9

8 files changed

Lines changed: 224 additions & 29 deletions

File tree

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

Lines changed: 5 additions & 1 deletion
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: 5 additions & 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.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: 5 additions & 1 deletion
Some generated files are not rendered by default. Learn more about customizing how changed files appear on GitHub.

package.json

Lines changed: 6 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -26,9 +26,13 @@
2626
"dset": "3.1.4",
2727
"micromatch": "4.0.8",
2828
"ws": "8.17.1",
29-
"vite": "6.3.6",
29+
"vite": "6.4.1",
3030
"@babel/runtime": "7.27.1",
31-
"@babel/helpers": "7.27.1"
31+
"@babel/helpers": "7.27.1",
32+
"tar": "7.5.4",
33+
"qs": "6.14.1",
34+
"brace-expansion@^1.1.7": "1.1.12",
35+
"brace-expansion@^2.0.1": "2.0.2"
3236
},
3337
"dependencies": {
3438
"@graphql-codegen/cli": "^5.0.5",

tests/fixtures/generated-test-client.ts

Lines changed: 5 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1232,12 +1232,16 @@ export type LedgerAccountCondition = {
12321232
__typename?: 'LedgerAccountCondition';
12331233
/** A condition that the `ownBalance` field must satisfy. Note that this condition always applies to the latest balance, not to balances at a specific date or time. See [Read balances](https://fragment.dev/docs/read-balances) for more on the different types of Ledger Account balances. */
12341234
ownBalance?: Maybe<Int96Condition>;
1235+
/** A condition that the `totalBalance` field must satisfy. Note that this condition always applies to the latest balance, not to balances at a specific date or time. See [Read balances](https://fragment.dev/docs/read-balances) for more on the different types of Ledger Account balances. */
1236+
totalBalance?: Maybe<Int96Condition>;
12351237
};
12361238

12371239
/** A set of conditions that a Ledger Account must meet for an operation to succeed. */
12381240
export type LedgerAccountConditionInput = {
12391241
/** A condition that the ownBalance field must satisfy. Note that this condition always applies to the latest balance, not to balances at a specific date or time. See [Read balances](https://fragment.dev/read-balances) for more on the different types of Ledger Account balances. */
1240-
ownBalance: Int96ConditionInput;
1242+
ownBalance?: InputMaybe<Int96ConditionInput>;
1243+
/** A condition that the totalBalance field must satisfy. Note that this condition always applies to the latest balance, not to balances at a specific date or time. See [Read balances](https://fragment.dev/read-balances) for more on the different types of Ledger Account balances. */
1244+
totalBalance?: InputMaybe<Int96ConditionInput>;
12411245
};
12421246

12431247
/**

0 commit comments

Comments
 (0)