fragment-dev 1.4.0 → 1.4.1

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.
@@ -1,5 +1,5 @@
1
1
  # frozen_string_literal: true
2
2
 
3
3
  module FragmentSDK
4
- VERSION = '1.4.0'
4
+ VERSION = '1.4.1'
5
5
  end
data/lib/queries.graphql CHANGED
@@ -155,6 +155,7 @@ mutation ReverseLedgerEntry(
155
155
  $id: ID!
156
156
  ) {
157
157
  reverseLedgerEntry(id: $id) {
158
+ __typename
158
159
  ... on ReverseLedgerEntryResult {
159
160
  reversingLedgerEntry {
160
161
  ik
@@ -215,6 +216,7 @@ mutation MigrateLedgerEntry(
215
216
  id: $id
216
217
  newLedgerEntry: $newLedgerEntry
217
218
  }) {
219
+ __typename
218
220
  ... on MigrateLedgerEntryResult {
219
221
  reversingLedgerEntry {
220
222
  ik
@@ -826,6 +828,23 @@ query GetLedgerAccountBalance(
826
828
  }
827
829
  }
828
830
 
831
+ query GetLedgerAccountBalanceWithChildRollup(
832
+ $path: String!
833
+ $ledgerIk: SafeString!
834
+ $balanceCurrency: CurrencyMatchInput
835
+ $balanceAt: LastMoment
836
+ ) {
837
+ ledgerAccount(ledgerAccount: { ledger: { ik: $ledgerIk }, path: $path }) {
838
+ id
839
+ path
840
+ balance(
841
+ currency: $balanceCurrency
842
+ at: $balanceAt
843
+ )
844
+ }
845
+ }
846
+
847
+
829
848
  query GetSchema($key: SafeString!, $version: Int) {
830
849
  schema(schema: { key: $key, version: $version }) {
831
850
  key
metadata CHANGED
@@ -1,14 +1,14 @@
1
1
  --- !ruby/object:Gem::Specification
2
2
  name: fragment-dev
3
3
  version: !ruby/object:Gem::Version
4
- version: 1.4.0
4
+ version: 1.4.1
5
5
  platform: ruby
6
6
  authors:
7
7
  - fragment
8
8
  autorequire:
9
9
  bindir: bin
10
10
  cert_chain: []
11
- date: 2025-07-02 00:00:00.000000000 Z
11
+ date: 2025-08-19 00:00:00.000000000 Z
12
12
  dependencies:
13
13
  - !ruby/object:Gem::Dependency
14
14
  name: graphql