fragment-dev 1.1.5 → 1.1.6
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.
- checksums.yaml +4 -4
- data/lib/fragment_client/version.rb +1 -1
- data/lib/queries.graphql +56 -46
- metadata +4 -4
checksums.yaml
CHANGED
@@ -1,7 +1,7 @@
|
|
1
1
|
---
|
2
2
|
SHA256:
|
3
|
-
metadata.gz:
|
4
|
-
data.tar.gz:
|
3
|
+
metadata.gz: 7792c9e2713834c3670f63d2078e085121279d75e88228dc6d14c0bea9f53326
|
4
|
+
data.tar.gz: e163f59d66ea52fb638a2af301c24980e4c9892515e972abdb03b592d8992be4
|
5
5
|
SHA512:
|
6
|
-
metadata.gz:
|
7
|
-
data.tar.gz:
|
6
|
+
metadata.gz: 7367faa0017b5526f70a29188350f840174429d3498f2207860a3dbf6e9162a5e4e18d322f76f48907fb06e9b62c1764fffe53b960411377ad97d1e706665e5c
|
7
|
+
data.tar.gz: b701ae02ced592e2d813d3ab5efd9178003749ebe1136c6d36c8e21e95051ec43640bbf190e96b7b7c3c62a3ac01b6bcfeba9e828ac8bceb6d03678d6b0504a9
|
data/lib/queries.graphql
CHANGED
@@ -14,6 +14,7 @@ mutation StoreSchema($schema: SchemaInput!) {
|
|
14
14
|
... on Error {
|
15
15
|
code
|
16
16
|
message
|
17
|
+
retryable
|
17
18
|
}
|
18
19
|
}
|
19
20
|
}
|
@@ -40,6 +41,7 @@ mutation CreateLedger(
|
|
40
41
|
... on Error {
|
41
42
|
code
|
42
43
|
message
|
44
|
+
retryable
|
43
45
|
}
|
44
46
|
}
|
45
47
|
}
|
@@ -85,6 +87,7 @@ mutation AddLedgerEntry(
|
|
85
87
|
... on Error {
|
86
88
|
code
|
87
89
|
message
|
90
|
+
retryable
|
88
91
|
}
|
89
92
|
}
|
90
93
|
}
|
@@ -130,6 +133,7 @@ mutation AddLedgerEntryRuntime(
|
|
130
133
|
... on Error {
|
131
134
|
code
|
132
135
|
message
|
136
|
+
retryable
|
133
137
|
}
|
134
138
|
}
|
135
139
|
}
|
@@ -172,6 +176,7 @@ mutation ReconcileTx(
|
|
172
176
|
... on Error {
|
173
177
|
code
|
174
178
|
message
|
179
|
+
retryable
|
175
180
|
}
|
176
181
|
}
|
177
182
|
}
|
@@ -214,6 +219,7 @@ mutation ReconcileTxRuntime(
|
|
214
219
|
... on Error {
|
215
220
|
code
|
216
221
|
message
|
222
|
+
retryable
|
217
223
|
}
|
218
224
|
}
|
219
225
|
}
|
@@ -274,6 +280,7 @@ mutation UpdateLedger($ledgerIk: SafeString!, $update: UpdateLedgerInput!) {
|
|
274
280
|
... on Error {
|
275
281
|
code
|
276
282
|
message
|
283
|
+
retryable
|
277
284
|
}
|
278
285
|
}
|
279
286
|
}
|
@@ -291,6 +298,7 @@ mutation CreateCustomLink($name: String!, $ik: SafeString!) {
|
|
291
298
|
... on Error {
|
292
299
|
code
|
293
300
|
message
|
301
|
+
retryable
|
294
302
|
}
|
295
303
|
}
|
296
304
|
}
|
@@ -312,6 +320,7 @@ mutation SyncCustomAccounts($linkId: ID!, $accounts: [CustomAccountInput!]!) {
|
|
312
320
|
... on Error {
|
313
321
|
code
|
314
322
|
message
|
323
|
+
retryable
|
315
324
|
}
|
316
325
|
}
|
317
326
|
}
|
@@ -334,6 +343,7 @@ mutation SyncCustomTxs($linkId: ID!, $txs: [CustomTxInput!]!) {
|
|
334
343
|
... on Error {
|
335
344
|
code
|
336
345
|
message
|
346
|
+
retryable
|
337
347
|
}
|
338
348
|
}
|
339
349
|
}
|
@@ -543,52 +553,6 @@ query GetLedgerAccountBalance(
|
|
543
553
|
}
|
544
554
|
}
|
545
555
|
|
546
|
-
query ListLedgerEntryGroupBalances(
|
547
|
-
$ledgerIk: SafeString!
|
548
|
-
$groupKey: SafeString!
|
549
|
-
$groupValue: SafeString!
|
550
|
-
$consistencyMode: ReadBalanceConsistencyMode = use_account
|
551
|
-
$after: String
|
552
|
-
$before: String
|
553
|
-
$first: Int
|
554
|
-
$last: Int
|
555
|
-
$filter: LedgerEntryGroupBalanceFilterSet
|
556
|
-
) {
|
557
|
-
ledgerEntryGroup(ledgerEntryGroup: {
|
558
|
-
ledger: { ik: $ledgerIk },
|
559
|
-
key: $groupKey,
|
560
|
-
value: $groupValue,
|
561
|
-
}) {
|
562
|
-
key
|
563
|
-
value
|
564
|
-
created
|
565
|
-
balances(
|
566
|
-
after: $after,
|
567
|
-
before: $before,
|
568
|
-
first: $first,
|
569
|
-
last: $last,
|
570
|
-
filter: $filter,
|
571
|
-
){
|
572
|
-
nodes {
|
573
|
-
account {
|
574
|
-
path
|
575
|
-
}
|
576
|
-
currency {
|
577
|
-
code
|
578
|
-
customCurrencyId
|
579
|
-
}
|
580
|
-
ownBalance(consistencyMode: $consistencyMode)
|
581
|
-
}
|
582
|
-
pageInfo {
|
583
|
-
hasNextPage
|
584
|
-
endCursor
|
585
|
-
hasPreviousPage
|
586
|
-
startCursor
|
587
|
-
}
|
588
|
-
}
|
589
|
-
}
|
590
|
-
}
|
591
|
-
|
592
556
|
query GetSchema($key: SafeString!, $version: Int) {
|
593
557
|
schema(schema: { key: $key, version: $version }) {
|
594
558
|
key
|
@@ -644,3 +608,49 @@ query GetWorkspace {
|
|
644
608
|
name
|
645
609
|
}
|
646
610
|
}
|
611
|
+
|
612
|
+
query ListLedgerEntryGroupBalances(
|
613
|
+
$ledgerIk: SafeString!
|
614
|
+
$groupKey: SafeString!
|
615
|
+
$groupValue: SafeString!
|
616
|
+
$consistencyMode: ReadBalanceConsistencyMode = use_account
|
617
|
+
$after: String
|
618
|
+
$before: String
|
619
|
+
$first: Int
|
620
|
+
$last: Int
|
621
|
+
$filter: LedgerEntryGroupBalanceFilterSet
|
622
|
+
) {
|
623
|
+
ledgerEntryGroup(ledgerEntryGroup: {
|
624
|
+
ledger: { ik: $ledgerIk },
|
625
|
+
key: $groupKey,
|
626
|
+
value: $groupValue,
|
627
|
+
}) {
|
628
|
+
key
|
629
|
+
value
|
630
|
+
created
|
631
|
+
balances(
|
632
|
+
after: $after,
|
633
|
+
before: $before,
|
634
|
+
first: $first,
|
635
|
+
last: $last,
|
636
|
+
filter: $filter,
|
637
|
+
){
|
638
|
+
nodes {
|
639
|
+
account {
|
640
|
+
path
|
641
|
+
}
|
642
|
+
currency {
|
643
|
+
code
|
644
|
+
customCurrencyId
|
645
|
+
}
|
646
|
+
ownBalance(consistencyMode: $consistencyMode)
|
647
|
+
}
|
648
|
+
pageInfo {
|
649
|
+
hasNextPage
|
650
|
+
endCursor
|
651
|
+
hasPreviousPage
|
652
|
+
startCursor
|
653
|
+
}
|
654
|
+
}
|
655
|
+
}
|
656
|
+
}
|
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.1.
|
4
|
+
version: 1.1.6
|
5
5
|
platform: ruby
|
6
6
|
authors:
|
7
7
|
- fragment
|
8
8
|
autorequire:
|
9
9
|
bindir: bin
|
10
10
|
cert_chain: []
|
11
|
-
date:
|
11
|
+
date: 2024-11-15 00:00:00.000000000 Z
|
12
12
|
dependencies:
|
13
13
|
- !ruby/object:Gem::Dependency
|
14
14
|
name: graphql
|
@@ -36,14 +36,14 @@ dependencies:
|
|
36
36
|
requirements:
|
37
37
|
- - "~>"
|
38
38
|
- !ruby/object:Gem::Version
|
39
|
-
version:
|
39
|
+
version: 0.23.0
|
40
40
|
type: :runtime
|
41
41
|
prerelease: false
|
42
42
|
version_requirements: !ruby/object:Gem::Requirement
|
43
43
|
requirements:
|
44
44
|
- - "~>"
|
45
45
|
- !ruby/object:Gem::Version
|
46
|
-
version:
|
46
|
+
version: 0.23.0
|
47
47
|
- !ruby/object:Gem::Dependency
|
48
48
|
name: sorbet-runtime
|
49
49
|
requirement: !ruby/object:Gem::Requirement
|