@fragment-dev/cli 2026.3.26 → 2026.3.27-2
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/dist/{chunk-D2ZXKL25.js → chunk-CEGYJKNI.js} +1 -1
- package/dist/{chunk-ODU6I44Y.js → chunk-FMY4RHS4.js} +24 -22
- package/dist/{chunk-JHWQKNRZ.js → chunk-OIDOJA7X.js} +1 -1
- package/dist/{chunk-2AQAHBZD.js → chunk-SG6IICEJ.js} +1 -1
- package/dist/commands/gen-graphql.js +3 -3
- package/dist/commands.js +4 -4
- package/dist/graphql.js +2 -2
- package/dist/index.js +4 -4
- package/dist/queries/standard-queries.js +1 -1
- package/oclif.manifest.json +1 -1
- package/package.json +1 -1
|
@@ -705,6 +705,8 @@ query ListLedgerAccountBalances(
|
|
|
705
705
|
$balanceCurrency: CurrencyMatchInput
|
|
706
706
|
$balanceAt: LastMoment
|
|
707
707
|
$ownBalanceConsistencyMode: ReadBalanceConsistencyMode
|
|
708
|
+
$childBalanceConsistencyMode: ReadBalanceConsistencyMode
|
|
709
|
+
$balanceConsistencyMode: ReadBalanceConsistencyMode
|
|
708
710
|
) {
|
|
709
711
|
ledger(ledger: { ik: $ledgerIk }) {
|
|
710
712
|
id
|
|
@@ -723,8 +725,16 @@ query ListLedgerAccountBalances(
|
|
|
723
725
|
at: $balanceAt
|
|
724
726
|
consistencyMode: $ownBalanceConsistencyMode
|
|
725
727
|
)
|
|
726
|
-
childBalance(
|
|
727
|
-
|
|
728
|
+
childBalance(
|
|
729
|
+
currency: $balanceCurrency
|
|
730
|
+
at: $balanceAt
|
|
731
|
+
consistencyMode: $childBalanceConsistencyMode
|
|
732
|
+
)
|
|
733
|
+
balance(
|
|
734
|
+
currency: $balanceCurrency
|
|
735
|
+
at: $balanceAt
|
|
736
|
+
consistencyMode: $balanceConsistencyMode
|
|
737
|
+
)
|
|
728
738
|
}
|
|
729
739
|
pageInfo {
|
|
730
740
|
hasNextPage
|
|
@@ -743,6 +753,8 @@ query ListMultiCurrencyLedgerAccountBalances(
|
|
|
743
753
|
$before: String
|
|
744
754
|
$balanceAt: LastMoment
|
|
745
755
|
$ownBalancesConsistencyMode: ReadBalanceConsistencyMode
|
|
756
|
+
$childBalancesConsistencyMode: ReadBalanceConsistencyMode
|
|
757
|
+
$balancesConsistencyMode: ReadBalanceConsistencyMode
|
|
746
758
|
) {
|
|
747
759
|
ledger(ledger: { ik: $ledgerIk }) {
|
|
748
760
|
id
|
|
@@ -768,7 +780,10 @@ query ListMultiCurrencyLedgerAccountBalances(
|
|
|
768
780
|
amount
|
|
769
781
|
}
|
|
770
782
|
}
|
|
771
|
-
childBalances(
|
|
783
|
+
childBalances(
|
|
784
|
+
at: $balanceAt
|
|
785
|
+
consistencyMode: $childBalancesConsistencyMode
|
|
786
|
+
) {
|
|
772
787
|
nodes {
|
|
773
788
|
currency {
|
|
774
789
|
code
|
|
@@ -777,7 +792,10 @@ query ListMultiCurrencyLedgerAccountBalances(
|
|
|
777
792
|
amount
|
|
778
793
|
}
|
|
779
794
|
}
|
|
780
|
-
balances(
|
|
795
|
+
balances(
|
|
796
|
+
at: $balanceAt
|
|
797
|
+
consistencyMode: $balancesConsistencyMode
|
|
798
|
+
) {
|
|
781
799
|
nodes {
|
|
782
800
|
currency {
|
|
783
801
|
code
|
|
@@ -831,24 +849,7 @@ query GetLedgerAccountBalance(
|
|
|
831
849
|
$ledgerIk: SafeString!
|
|
832
850
|
$balanceCurrency: CurrencyMatchInput
|
|
833
851
|
$balanceAt: LastMoment
|
|
834
|
-
$
|
|
835
|
-
) {
|
|
836
|
-
ledgerAccount(ledgerAccount: { ledger: { ik: $ledgerIk }, path: $path }) {
|
|
837
|
-
id
|
|
838
|
-
path
|
|
839
|
-
ownBalance(
|
|
840
|
-
currency: $balanceCurrency
|
|
841
|
-
at: $balanceAt
|
|
842
|
-
consistencyMode: $ownBalanceConsistencyMode
|
|
843
|
-
)
|
|
844
|
-
}
|
|
845
|
-
}
|
|
846
|
-
|
|
847
|
-
query GetLedgerAccountBalanceWithChildRollup(
|
|
848
|
-
$path: String!
|
|
849
|
-
$ledgerIk: SafeString!
|
|
850
|
-
$balanceCurrency: CurrencyMatchInput
|
|
851
|
-
$balanceAt: LastMoment
|
|
852
|
+
$balanceConsistencyMode: ReadBalanceConsistencyMode
|
|
852
853
|
) {
|
|
853
854
|
ledgerAccount(ledgerAccount: { ledger: { ik: $ledgerIk }, path: $path }) {
|
|
854
855
|
id
|
|
@@ -856,6 +857,7 @@ query GetLedgerAccountBalanceWithChildRollup(
|
|
|
856
857
|
balance(
|
|
857
858
|
currency: $balanceCurrency
|
|
858
859
|
at: $balanceAt
|
|
860
|
+
consistencyMode: $balanceConsistencyMode
|
|
859
861
|
)
|
|
860
862
|
}
|
|
861
863
|
}
|
|
@@ -1,8 +1,8 @@
|
|
|
1
1
|
import {
|
|
2
2
|
GenGraphQL
|
|
3
|
-
} from "../chunk-
|
|
4
|
-
import "../chunk-
|
|
5
|
-
import "../chunk-
|
|
3
|
+
} from "../chunk-CEGYJKNI.js";
|
|
4
|
+
import "../chunk-SG6IICEJ.js";
|
|
5
|
+
import "../chunk-FMY4RHS4.js";
|
|
6
6
|
import "../chunk-73ZTML2E.js";
|
|
7
7
|
import "../chunk-G6SIJABO.js";
|
|
8
8
|
import "../chunk-HR673EON.js";
|
package/dist/commands.js
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
import {
|
|
2
2
|
COMMANDS
|
|
3
|
-
} from "./chunk-
|
|
3
|
+
} from "./chunk-OIDOJA7X.js";
|
|
4
4
|
import "./chunk-WPXGTOQF.js";
|
|
5
5
|
import "./chunk-B4BVB4BK.js";
|
|
6
6
|
import "./chunk-MOF7FUIJ.js";
|
|
@@ -28,9 +28,9 @@ import "./chunk-RBALPYPJ.js";
|
|
|
28
28
|
import "./chunk-LUHFWRCU.js";
|
|
29
29
|
import "./chunk-G2JISDKX.js";
|
|
30
30
|
import "./chunk-JSQLWL2J.js";
|
|
31
|
-
import "./chunk-
|
|
32
|
-
import "./chunk-
|
|
33
|
-
import "./chunk-
|
|
31
|
+
import "./chunk-CEGYJKNI.js";
|
|
32
|
+
import "./chunk-SG6IICEJ.js";
|
|
33
|
+
import "./chunk-FMY4RHS4.js";
|
|
34
34
|
import "./chunk-73ZTML2E.js";
|
|
35
35
|
import "./chunk-G6SIJABO.js";
|
|
36
36
|
import "./chunk-HR673EON.js";
|
package/dist/graphql.js
CHANGED
|
@@ -8,8 +8,8 @@ import {
|
|
|
8
8
|
isValidGraphQlName,
|
|
9
9
|
schemaToEntryDefinitions,
|
|
10
10
|
validateOutputName
|
|
11
|
-
} from "./chunk-
|
|
12
|
-
import "./chunk-
|
|
11
|
+
} from "./chunk-SG6IICEJ.js";
|
|
12
|
+
import "./chunk-FMY4RHS4.js";
|
|
13
13
|
import "./chunk-73ZTML2E.js";
|
|
14
14
|
import "./chunk-YPAAVBNS.js";
|
|
15
15
|
import "./chunk-LXVUAGMV.js";
|
package/dist/index.js
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
import {
|
|
2
2
|
COMMANDS
|
|
3
|
-
} from "./chunk-
|
|
3
|
+
} from "./chunk-OIDOJA7X.js";
|
|
4
4
|
import "./chunk-WPXGTOQF.js";
|
|
5
5
|
import "./chunk-B4BVB4BK.js";
|
|
6
6
|
import "./chunk-MOF7FUIJ.js";
|
|
@@ -28,9 +28,9 @@ import "./chunk-RBALPYPJ.js";
|
|
|
28
28
|
import "./chunk-LUHFWRCU.js";
|
|
29
29
|
import "./chunk-G2JISDKX.js";
|
|
30
30
|
import "./chunk-JSQLWL2J.js";
|
|
31
|
-
import "./chunk-
|
|
32
|
-
import "./chunk-
|
|
33
|
-
import "./chunk-
|
|
31
|
+
import "./chunk-CEGYJKNI.js";
|
|
32
|
+
import "./chunk-SG6IICEJ.js";
|
|
33
|
+
import "./chunk-FMY4RHS4.js";
|
|
34
34
|
import "./chunk-73ZTML2E.js";
|
|
35
35
|
import "./chunk-G6SIJABO.js";
|
|
36
36
|
import "./chunk-HR673EON.js";
|
package/oclif.manifest.json
CHANGED