@superfluid-finance/sdk-core 0.4.4-dev.ce099c3.0 → 0.4.5-dev.19b1d22.0
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/CHANGELOG.md
CHANGED
|
@@ -5,6 +5,11 @@ This project adheres to [Semantic Versioning](https://semver.org/spec/v2.0.0.htm
|
|
|
5
5
|
|
|
6
6
|
## [Unreleased]
|
|
7
7
|
|
|
8
|
+
## [0.4.4] - 2022-06-30
|
|
9
|
+
|
|
10
|
+
## Added
|
|
11
|
+
- Support for new event properties for Subgraph v1.4.1
|
|
12
|
+
|
|
8
13
|
### Breaking
|
|
9
14
|
- Subgraph Query: `rewardAccount` renamed to `rewardAmountReceiver` on `AgreementLiquidatedV2Event` entity
|
|
10
15
|
- `chainId` is a required property for framework initialization
|
|
@@ -15,6 +20,9 @@ This project adheres to [Semantic Versioning](https://semver.org/spec/v2.0.0.htm
|
|
|
15
20
|
### Added
|
|
16
21
|
- BNB Chain support added
|
|
17
22
|
|
|
23
|
+
### Changed
|
|
24
|
+
- `maybeCriticalAtTimestamp` is a nullable property now
|
|
25
|
+
|
|
18
26
|
## [0.4.2] - 2022-05-17
|
|
19
27
|
|
|
20
28
|
### Added
|
|
@@ -144,7 +152,8 @@ This project adheres to [Semantic Versioning](https://semver.org/spec/v2.0.0.htm
|
|
|
144
152
|
- New `SuperToken` class with `SuperToken` CRUD functionality and an underlying `Token` class with basic `ERC20` functionality
|
|
145
153
|
- New `BatchCall` class for creating and executing batch calls with supported `Operation's`
|
|
146
154
|
|
|
147
|
-
[Unreleased]: https://github.com/superfluid-finance/protocol-monorepo/compare/sdk-core%40v0.4.
|
|
155
|
+
[Unreleased]: https://github.com/superfluid-finance/protocol-monorepo/compare/sdk-core%40v0.4.4...HEAD
|
|
156
|
+
[0.4.4]: https://github.com/superfluid-finance/protocol-monorepo/compare/sdk-core%40v0.4.3...sdk-core%40v0.4.4
|
|
148
157
|
[0.4.3]: https://github.com/superfluid-finance/protocol-monorepo/compare/sdk-core%40v0.4.2...sdk-core%40v0.4.3
|
|
149
158
|
[0.4.2]: https://github.com/superfluid-finance/protocol-monorepo/compare/sdk-core%40v0.4.1...sdk-core%40v0.4.2
|
|
150
159
|
[0.4.1]: https://github.com/superfluid-finance/protocol-monorepo/compare/sdk-core%40v0.4.0...sdk-core%40v0.4.1
|
|
@@ -26,6 +26,7 @@ export interface AccountTokenSnapshotLog_Filter {
|
|
|
26
26
|
_change_block?: InputMaybe<BlockChangedFilter>;
|
|
27
27
|
account?: InputMaybe<Scalars['String']>;
|
|
28
28
|
accountTokenSnapshot?: InputMaybe<Scalars['String']>;
|
|
29
|
+
accountTokenSnapshot_?: InputMaybe<AccountTokenSnapshot_Filter>;
|
|
29
30
|
accountTokenSnapshot_contains?: InputMaybe<Scalars['String']>;
|
|
30
31
|
accountTokenSnapshot_contains_nocase?: InputMaybe<Scalars['String']>;
|
|
31
32
|
accountTokenSnapshot_ends_with?: InputMaybe<Scalars['String']>;
|
|
@@ -45,6 +46,7 @@ export interface AccountTokenSnapshotLog_Filter {
|
|
|
45
46
|
accountTokenSnapshot_not_starts_with_nocase?: InputMaybe<Scalars['String']>;
|
|
46
47
|
accountTokenSnapshot_starts_with?: InputMaybe<Scalars['String']>;
|
|
47
48
|
accountTokenSnapshot_starts_with_nocase?: InputMaybe<Scalars['String']>;
|
|
49
|
+
account_?: InputMaybe<Account_Filter>;
|
|
48
50
|
account_contains?: InputMaybe<Scalars['String']>;
|
|
49
51
|
account_contains_nocase?: InputMaybe<Scalars['String']>;
|
|
50
52
|
account_ends_with?: InputMaybe<Scalars['String']>;
|
|
@@ -121,6 +123,7 @@ export interface AccountTokenSnapshotLog_Filter {
|
|
|
121
123
|
timestamp_not?: InputMaybe<Scalars['BigInt']>;
|
|
122
124
|
timestamp_not_in?: InputMaybe<Array<Scalars['BigInt']>>;
|
|
123
125
|
token?: InputMaybe<Scalars['String']>;
|
|
126
|
+
token_?: InputMaybe<Token_Filter>;
|
|
124
127
|
token_contains?: InputMaybe<Scalars['String']>;
|
|
125
128
|
token_contains_nocase?: InputMaybe<Scalars['String']>;
|
|
126
129
|
token_ends_with?: InputMaybe<Scalars['String']>;
|
|
@@ -267,6 +270,8 @@ export declare type AccountTokenSnapshotLog_OrderBy = 'account' | 'accountTokenS
|
|
|
267
270
|
export interface AccountTokenSnapshot_Filter {
|
|
268
271
|
_change_block?: InputMaybe<BlockChangedFilter>;
|
|
269
272
|
account?: InputMaybe<Scalars['String']>;
|
|
273
|
+
accountTokenSnapshotLogs_?: InputMaybe<AccountTokenSnapshotLog_Filter>;
|
|
274
|
+
account_?: InputMaybe<Account_Filter>;
|
|
270
275
|
account_contains?: InputMaybe<Scalars['String']>;
|
|
271
276
|
account_contains_nocase?: InputMaybe<Scalars['String']>;
|
|
272
277
|
account_ends_with?: InputMaybe<Scalars['String']>;
|
|
@@ -294,6 +299,7 @@ export interface AccountTokenSnapshot_Filter {
|
|
|
294
299
|
balanceUntilUpdatedAt_lte?: InputMaybe<Scalars['BigInt']>;
|
|
295
300
|
balanceUntilUpdatedAt_not?: InputMaybe<Scalars['BigInt']>;
|
|
296
301
|
balanceUntilUpdatedAt_not_in?: InputMaybe<Array<Scalars['BigInt']>>;
|
|
302
|
+
flowOperators_?: InputMaybe<FlowOperator_Filter>;
|
|
297
303
|
id?: InputMaybe<Scalars['ID']>;
|
|
298
304
|
id_gt?: InputMaybe<Scalars['ID']>;
|
|
299
305
|
id_gte?: InputMaybe<Scalars['ID']>;
|
|
@@ -315,6 +321,7 @@ export interface AccountTokenSnapshot_Filter {
|
|
|
315
321
|
maybeCriticalAtTimestamp_not?: InputMaybe<Scalars['BigInt']>;
|
|
316
322
|
maybeCriticalAtTimestamp_not_in?: InputMaybe<Array<Scalars['BigInt']>>;
|
|
317
323
|
token?: InputMaybe<Scalars['String']>;
|
|
324
|
+
token_?: InputMaybe<Token_Filter>;
|
|
318
325
|
token_contains?: InputMaybe<Scalars['String']>;
|
|
319
326
|
token_contains_nocase?: InputMaybe<Scalars['String']>;
|
|
320
327
|
token_ends_with?: InputMaybe<Scalars['String']>;
|
|
@@ -450,6 +457,7 @@ export interface AccountTokenSnapshot_Filter {
|
|
|
450
457
|
export declare type AccountTokenSnapshot_OrderBy = 'account' | 'accountTokenSnapshotLogs' | 'balanceUntilUpdatedAt' | 'flowOperators' | 'id' | 'isLiquidationEstimateOptimistic' | 'maybeCriticalAtTimestamp' | 'token' | 'totalAmountStreamedInUntilUpdatedAt' | 'totalAmountStreamedOutUntilUpdatedAt' | 'totalAmountStreamedUntilUpdatedAt' | 'totalAmountTransferredUntilUpdatedAt' | 'totalApprovedSubscriptions' | 'totalDeposit' | 'totalInflowRate' | 'totalNetFlowRate' | 'totalNumberOfActiveStreams' | 'totalNumberOfClosedStreams' | 'totalOutflowRate' | 'totalSubscriptionsWithUnits' | 'updatedAtBlockNumber' | 'updatedAtTimestamp';
|
|
451
458
|
export interface Account_Filter {
|
|
452
459
|
_change_block?: InputMaybe<BlockChangedFilter>;
|
|
460
|
+
accountTokenSnapshots_?: InputMaybe<AccountTokenSnapshot_Filter>;
|
|
453
461
|
createdAtBlockNumber?: InputMaybe<Scalars['BigInt']>;
|
|
454
462
|
createdAtBlockNumber_gt?: InputMaybe<Scalars['BigInt']>;
|
|
455
463
|
createdAtBlockNumber_gte?: InputMaybe<Scalars['BigInt']>;
|
|
@@ -474,10 +482,18 @@ export interface Account_Filter {
|
|
|
474
482
|
id_lte?: InputMaybe<Scalars['ID']>;
|
|
475
483
|
id_not?: InputMaybe<Scalars['ID']>;
|
|
476
484
|
id_not_in?: InputMaybe<Array<Scalars['ID']>>;
|
|
485
|
+
inflows_?: InputMaybe<Stream_Filter>;
|
|
477
486
|
isSuperApp?: InputMaybe<Scalars['Boolean']>;
|
|
478
487
|
isSuperApp_in?: InputMaybe<Array<Scalars['Boolean']>>;
|
|
479
488
|
isSuperApp_not?: InputMaybe<Scalars['Boolean']>;
|
|
480
489
|
isSuperApp_not_in?: InputMaybe<Array<Scalars['Boolean']>>;
|
|
490
|
+
outflows_?: InputMaybe<Stream_Filter>;
|
|
491
|
+
publishedIndexes_?: InputMaybe<Index_Filter>;
|
|
492
|
+
receivedTransferEvents_?: InputMaybe<TransferEvent_Filter>;
|
|
493
|
+
sentTransferEvents_?: InputMaybe<TransferEvent_Filter>;
|
|
494
|
+
subscriptions_?: InputMaybe<IndexSubscription_Filter>;
|
|
495
|
+
tokenDowngradedEvents_?: InputMaybe<TokenDowngradedEvent_Filter>;
|
|
496
|
+
tokenUpgradedEvents_?: InputMaybe<TokenUpgradedEvent_Filter>;
|
|
481
497
|
updatedAtBlockNumber?: InputMaybe<Scalars['BigInt']>;
|
|
482
498
|
updatedAtBlockNumber_gt?: InputMaybe<Scalars['BigInt']>;
|
|
483
499
|
updatedAtBlockNumber_gte?: InputMaybe<Scalars['BigInt']>;
|
|
@@ -1627,6 +1643,7 @@ export interface FlowOperatorUpdatedEvent_Filter {
|
|
|
1627
1643
|
blockNumber_not?: InputMaybe<Scalars['BigInt']>;
|
|
1628
1644
|
blockNumber_not_in?: InputMaybe<Array<Scalars['BigInt']>>;
|
|
1629
1645
|
flowOperator?: InputMaybe<Scalars['String']>;
|
|
1646
|
+
flowOperator_?: InputMaybe<FlowOperator_Filter>;
|
|
1630
1647
|
flowOperator_contains?: InputMaybe<Scalars['String']>;
|
|
1631
1648
|
flowOperator_contains_nocase?: InputMaybe<Scalars['String']>;
|
|
1632
1649
|
flowOperator_ends_with?: InputMaybe<Scalars['String']>;
|
|
@@ -1745,6 +1762,7 @@ export declare type FlowOperatorUpdatedEvent_OrderBy = 'addresses' | 'blockNumbe
|
|
|
1745
1762
|
export interface FlowOperator_Filter {
|
|
1746
1763
|
_change_block?: InputMaybe<BlockChangedFilter>;
|
|
1747
1764
|
accountTokenSnapshot?: InputMaybe<Scalars['String']>;
|
|
1765
|
+
accountTokenSnapshot_?: InputMaybe<AccountTokenSnapshot_Filter>;
|
|
1748
1766
|
accountTokenSnapshot_contains?: InputMaybe<Scalars['String']>;
|
|
1749
1767
|
accountTokenSnapshot_contains_nocase?: InputMaybe<Scalars['String']>;
|
|
1750
1768
|
accountTokenSnapshot_ends_with?: InputMaybe<Scalars['String']>;
|
|
@@ -1781,6 +1799,7 @@ export interface FlowOperator_Filter {
|
|
|
1781
1799
|
createdAtTimestamp_not?: InputMaybe<Scalars['BigInt']>;
|
|
1782
1800
|
createdAtTimestamp_not_in?: InputMaybe<Array<Scalars['BigInt']>>;
|
|
1783
1801
|
flowOperator?: InputMaybe<Scalars['Bytes']>;
|
|
1802
|
+
flowOperatorUpdatedEvents_?: InputMaybe<FlowOperatorUpdatedEvent_Filter>;
|
|
1784
1803
|
flowOperator_contains?: InputMaybe<Scalars['Bytes']>;
|
|
1785
1804
|
flowOperator_in?: InputMaybe<Array<Scalars['Bytes']>>;
|
|
1786
1805
|
flowOperator_not?: InputMaybe<Scalars['Bytes']>;
|
|
@@ -1819,6 +1838,7 @@ export interface FlowOperator_Filter {
|
|
|
1819
1838
|
permissions_not?: InputMaybe<Scalars['Int']>;
|
|
1820
1839
|
permissions_not_in?: InputMaybe<Array<Scalars['Int']>>;
|
|
1821
1840
|
sender?: InputMaybe<Scalars['String']>;
|
|
1841
|
+
sender_?: InputMaybe<Account_Filter>;
|
|
1822
1842
|
sender_contains?: InputMaybe<Scalars['String']>;
|
|
1823
1843
|
sender_contains_nocase?: InputMaybe<Scalars['String']>;
|
|
1824
1844
|
sender_ends_with?: InputMaybe<Scalars['String']>;
|
|
@@ -1839,6 +1859,7 @@ export interface FlowOperator_Filter {
|
|
|
1839
1859
|
sender_starts_with?: InputMaybe<Scalars['String']>;
|
|
1840
1860
|
sender_starts_with_nocase?: InputMaybe<Scalars['String']>;
|
|
1841
1861
|
token?: InputMaybe<Scalars['String']>;
|
|
1862
|
+
token_?: InputMaybe<Token_Filter>;
|
|
1842
1863
|
token_contains?: InputMaybe<Scalars['String']>;
|
|
1843
1864
|
token_contains_nocase?: InputMaybe<Scalars['String']>;
|
|
1844
1865
|
token_ends_with?: InputMaybe<Scalars['String']>;
|
|
@@ -1987,6 +2008,7 @@ export interface FlowUpdatedEvent_Filter {
|
|
|
1987
2008
|
sender_not_contains?: InputMaybe<Scalars['Bytes']>;
|
|
1988
2009
|
sender_not_in?: InputMaybe<Array<Scalars['Bytes']>>;
|
|
1989
2010
|
stream?: InputMaybe<Scalars['String']>;
|
|
2011
|
+
stream_?: InputMaybe<Stream_Filter>;
|
|
1990
2012
|
stream_contains?: InputMaybe<Scalars['String']>;
|
|
1991
2013
|
stream_contains_nocase?: InputMaybe<Scalars['String']>;
|
|
1992
2014
|
stream_ends_with?: InputMaybe<Scalars['String']>;
|
|
@@ -2203,6 +2225,7 @@ export interface IndexCreatedEvent_Filter {
|
|
|
2203
2225
|
indexId_lte?: InputMaybe<Scalars['BigInt']>;
|
|
2204
2226
|
indexId_not?: InputMaybe<Scalars['BigInt']>;
|
|
2205
2227
|
indexId_not_in?: InputMaybe<Array<Scalars['BigInt']>>;
|
|
2228
|
+
index_?: InputMaybe<Index_Filter>;
|
|
2206
2229
|
index_contains?: InputMaybe<Scalars['String']>;
|
|
2207
2230
|
index_contains_nocase?: InputMaybe<Scalars['String']>;
|
|
2208
2231
|
index_ends_with?: InputMaybe<Scalars['String']>;
|
|
@@ -2341,6 +2364,7 @@ export interface IndexDistributionClaimedEvent_Filter {
|
|
|
2341
2364
|
indexId_lte?: InputMaybe<Scalars['BigInt']>;
|
|
2342
2365
|
indexId_not?: InputMaybe<Scalars['BigInt']>;
|
|
2343
2366
|
indexId_not_in?: InputMaybe<Array<Scalars['BigInt']>>;
|
|
2367
|
+
index_?: InputMaybe<Index_Filter>;
|
|
2344
2368
|
index_contains?: InputMaybe<Scalars['String']>;
|
|
2345
2369
|
index_contains_nocase?: InputMaybe<Scalars['String']>;
|
|
2346
2370
|
index_ends_with?: InputMaybe<Scalars['String']>;
|
|
@@ -2471,6 +2495,7 @@ export interface IndexSubscribedEvent_Filter {
|
|
|
2471
2495
|
indexId_lte?: InputMaybe<Scalars['BigInt']>;
|
|
2472
2496
|
indexId_not?: InputMaybe<Scalars['BigInt']>;
|
|
2473
2497
|
indexId_not_in?: InputMaybe<Array<Scalars['BigInt']>>;
|
|
2498
|
+
index_?: InputMaybe<Index_Filter>;
|
|
2474
2499
|
index_contains?: InputMaybe<Scalars['String']>;
|
|
2475
2500
|
index_contains_nocase?: InputMaybe<Scalars['String']>;
|
|
2476
2501
|
index_ends_with?: InputMaybe<Scalars['String']>;
|
|
@@ -2605,6 +2630,7 @@ export interface IndexSubscription_Filter {
|
|
|
2605
2630
|
indexValueUntilUpdatedAt_lte?: InputMaybe<Scalars['BigInt']>;
|
|
2606
2631
|
indexValueUntilUpdatedAt_not?: InputMaybe<Scalars['BigInt']>;
|
|
2607
2632
|
indexValueUntilUpdatedAt_not_in?: InputMaybe<Array<Scalars['BigInt']>>;
|
|
2633
|
+
index_?: InputMaybe<Index_Filter>;
|
|
2608
2634
|
index_contains?: InputMaybe<Scalars['String']>;
|
|
2609
2635
|
index_contains_nocase?: InputMaybe<Scalars['String']>;
|
|
2610
2636
|
index_ends_with?: InputMaybe<Scalars['String']>;
|
|
@@ -2625,6 +2651,7 @@ export interface IndexSubscription_Filter {
|
|
|
2625
2651
|
index_starts_with?: InputMaybe<Scalars['String']>;
|
|
2626
2652
|
index_starts_with_nocase?: InputMaybe<Scalars['String']>;
|
|
2627
2653
|
subscriber?: InputMaybe<Scalars['String']>;
|
|
2654
|
+
subscriber_?: InputMaybe<Account_Filter>;
|
|
2628
2655
|
subscriber_contains?: InputMaybe<Scalars['String']>;
|
|
2629
2656
|
subscriber_contains_nocase?: InputMaybe<Scalars['String']>;
|
|
2630
2657
|
subscriber_ends_with?: InputMaybe<Scalars['String']>;
|
|
@@ -2644,6 +2671,10 @@ export interface IndexSubscription_Filter {
|
|
|
2644
2671
|
subscriber_not_starts_with_nocase?: InputMaybe<Scalars['String']>;
|
|
2645
2672
|
subscriber_starts_with?: InputMaybe<Scalars['String']>;
|
|
2646
2673
|
subscriber_starts_with_nocase?: InputMaybe<Scalars['String']>;
|
|
2674
|
+
subscriptionApprovedEvents_?: InputMaybe<SubscriptionApprovedEvent_Filter>;
|
|
2675
|
+
subscriptionDistributionClaimedEvents_?: InputMaybe<SubscriptionDistributionClaimedEvent_Filter>;
|
|
2676
|
+
subscriptionRevokedEvents_?: InputMaybe<SubscriptionRevokedEvent_Filter>;
|
|
2677
|
+
subscriptionUnitsUpdatedEvents_?: InputMaybe<SubscriptionUnitsUpdatedEvent_Filter>;
|
|
2647
2678
|
totalAmountReceivedUntilUpdatedAt?: InputMaybe<Scalars['BigInt']>;
|
|
2648
2679
|
totalAmountReceivedUntilUpdatedAt_gt?: InputMaybe<Scalars['BigInt']>;
|
|
2649
2680
|
totalAmountReceivedUntilUpdatedAt_gte?: InputMaybe<Scalars['BigInt']>;
|
|
@@ -2719,6 +2750,7 @@ export interface IndexUnitsUpdatedEvent_Filter {
|
|
|
2719
2750
|
indexId_lte?: InputMaybe<Scalars['BigInt']>;
|
|
2720
2751
|
indexId_not?: InputMaybe<Scalars['BigInt']>;
|
|
2721
2752
|
indexId_not_in?: InputMaybe<Array<Scalars['BigInt']>>;
|
|
2753
|
+
index_?: InputMaybe<Index_Filter>;
|
|
2722
2754
|
index_contains?: InputMaybe<Scalars['String']>;
|
|
2723
2755
|
index_contains_nocase?: InputMaybe<Scalars['String']>;
|
|
2724
2756
|
index_ends_with?: InputMaybe<Scalars['String']>;
|
|
@@ -2871,6 +2903,7 @@ export interface IndexUnsubscribedEvent_Filter {
|
|
|
2871
2903
|
indexId_lte?: InputMaybe<Scalars['BigInt']>;
|
|
2872
2904
|
indexId_not?: InputMaybe<Scalars['BigInt']>;
|
|
2873
2905
|
indexId_not_in?: InputMaybe<Array<Scalars['BigInt']>>;
|
|
2906
|
+
index_?: InputMaybe<Index_Filter>;
|
|
2874
2907
|
index_contains?: InputMaybe<Scalars['String']>;
|
|
2875
2908
|
index_contains_nocase?: InputMaybe<Scalars['String']>;
|
|
2876
2909
|
index_ends_with?: InputMaybe<Scalars['String']>;
|
|
@@ -3007,6 +3040,7 @@ export interface IndexUpdatedEvent_Filter {
|
|
|
3007
3040
|
indexId_lte?: InputMaybe<Scalars['BigInt']>;
|
|
3008
3041
|
indexId_not?: InputMaybe<Scalars['BigInt']>;
|
|
3009
3042
|
indexId_not_in?: InputMaybe<Array<Scalars['BigInt']>>;
|
|
3043
|
+
index_?: InputMaybe<Index_Filter>;
|
|
3010
3044
|
index_contains?: InputMaybe<Scalars['String']>;
|
|
3011
3045
|
index_contains_nocase?: InputMaybe<Scalars['String']>;
|
|
3012
3046
|
index_ends_with?: InputMaybe<Scalars['String']>;
|
|
@@ -3155,6 +3189,7 @@ export interface Index_Filter {
|
|
|
3155
3189
|
id_not?: InputMaybe<Scalars['ID']>;
|
|
3156
3190
|
id_not_in?: InputMaybe<Array<Scalars['ID']>>;
|
|
3157
3191
|
indexCreatedEvent?: InputMaybe<Scalars['String']>;
|
|
3192
|
+
indexCreatedEvent_?: InputMaybe<IndexCreatedEvent_Filter>;
|
|
3158
3193
|
indexCreatedEvent_contains?: InputMaybe<Scalars['String']>;
|
|
3159
3194
|
indexCreatedEvent_contains_nocase?: InputMaybe<Scalars['String']>;
|
|
3160
3195
|
indexCreatedEvent_ends_with?: InputMaybe<Scalars['String']>;
|
|
@@ -3174,6 +3209,7 @@ export interface Index_Filter {
|
|
|
3174
3209
|
indexCreatedEvent_not_starts_with_nocase?: InputMaybe<Scalars['String']>;
|
|
3175
3210
|
indexCreatedEvent_starts_with?: InputMaybe<Scalars['String']>;
|
|
3176
3211
|
indexCreatedEvent_starts_with_nocase?: InputMaybe<Scalars['String']>;
|
|
3212
|
+
indexDistributionClaimedEvents_?: InputMaybe<IndexDistributionClaimedEvent_Filter>;
|
|
3177
3213
|
indexId?: InputMaybe<Scalars['BigInt']>;
|
|
3178
3214
|
indexId_gt?: InputMaybe<Scalars['BigInt']>;
|
|
3179
3215
|
indexId_gte?: InputMaybe<Scalars['BigInt']>;
|
|
@@ -3182,6 +3218,10 @@ export interface Index_Filter {
|
|
|
3182
3218
|
indexId_lte?: InputMaybe<Scalars['BigInt']>;
|
|
3183
3219
|
indexId_not?: InputMaybe<Scalars['BigInt']>;
|
|
3184
3220
|
indexId_not_in?: InputMaybe<Array<Scalars['BigInt']>>;
|
|
3221
|
+
indexSubscribedEvents_?: InputMaybe<IndexSubscribedEvent_Filter>;
|
|
3222
|
+
indexUnitsUpdatedEvents_?: InputMaybe<IndexUnitsUpdatedEvent_Filter>;
|
|
3223
|
+
indexUnsubscribedEvents_?: InputMaybe<IndexUnsubscribedEvent_Filter>;
|
|
3224
|
+
indexUpdatedEvents_?: InputMaybe<IndexUpdatedEvent_Filter>;
|
|
3185
3225
|
indexValue?: InputMaybe<Scalars['BigInt']>;
|
|
3186
3226
|
indexValue_gt?: InputMaybe<Scalars['BigInt']>;
|
|
3187
3227
|
indexValue_gte?: InputMaybe<Scalars['BigInt']>;
|
|
@@ -3191,6 +3231,7 @@ export interface Index_Filter {
|
|
|
3191
3231
|
indexValue_not?: InputMaybe<Scalars['BigInt']>;
|
|
3192
3232
|
indexValue_not_in?: InputMaybe<Array<Scalars['BigInt']>>;
|
|
3193
3233
|
publisher?: InputMaybe<Scalars['String']>;
|
|
3234
|
+
publisher_?: InputMaybe<Account_Filter>;
|
|
3194
3235
|
publisher_contains?: InputMaybe<Scalars['String']>;
|
|
3195
3236
|
publisher_contains_nocase?: InputMaybe<Scalars['String']>;
|
|
3196
3237
|
publisher_ends_with?: InputMaybe<Scalars['String']>;
|
|
@@ -3210,7 +3251,9 @@ export interface Index_Filter {
|
|
|
3210
3251
|
publisher_not_starts_with_nocase?: InputMaybe<Scalars['String']>;
|
|
3211
3252
|
publisher_starts_with?: InputMaybe<Scalars['String']>;
|
|
3212
3253
|
publisher_starts_with_nocase?: InputMaybe<Scalars['String']>;
|
|
3254
|
+
subscriptions_?: InputMaybe<IndexSubscription_Filter>;
|
|
3213
3255
|
token?: InputMaybe<Scalars['String']>;
|
|
3256
|
+
token_?: InputMaybe<Token_Filter>;
|
|
3214
3257
|
token_contains?: InputMaybe<Scalars['String']>;
|
|
3215
3258
|
token_contains_nocase?: InputMaybe<Scalars['String']>;
|
|
3216
3259
|
token_ends_with?: InputMaybe<Scalars['String']>;
|
|
@@ -4272,6 +4315,7 @@ export interface StreamPeriod_Filter {
|
|
|
4272
4315
|
id_not?: InputMaybe<Scalars['ID']>;
|
|
4273
4316
|
id_not_in?: InputMaybe<Array<Scalars['ID']>>;
|
|
4274
4317
|
receiver?: InputMaybe<Scalars['String']>;
|
|
4318
|
+
receiver_?: InputMaybe<Account_Filter>;
|
|
4275
4319
|
receiver_contains?: InputMaybe<Scalars['String']>;
|
|
4276
4320
|
receiver_contains_nocase?: InputMaybe<Scalars['String']>;
|
|
4277
4321
|
receiver_ends_with?: InputMaybe<Scalars['String']>;
|
|
@@ -4292,6 +4336,7 @@ export interface StreamPeriod_Filter {
|
|
|
4292
4336
|
receiver_starts_with?: InputMaybe<Scalars['String']>;
|
|
4293
4337
|
receiver_starts_with_nocase?: InputMaybe<Scalars['String']>;
|
|
4294
4338
|
sender?: InputMaybe<Scalars['String']>;
|
|
4339
|
+
sender_?: InputMaybe<Account_Filter>;
|
|
4295
4340
|
sender_contains?: InputMaybe<Scalars['String']>;
|
|
4296
4341
|
sender_contains_nocase?: InputMaybe<Scalars['String']>;
|
|
4297
4342
|
sender_ends_with?: InputMaybe<Scalars['String']>;
|
|
@@ -4320,6 +4365,7 @@ export interface StreamPeriod_Filter {
|
|
|
4320
4365
|
startedAtBlockNumber_not?: InputMaybe<Scalars['BigInt']>;
|
|
4321
4366
|
startedAtBlockNumber_not_in?: InputMaybe<Array<Scalars['BigInt']>>;
|
|
4322
4367
|
startedAtEvent?: InputMaybe<Scalars['String']>;
|
|
4368
|
+
startedAtEvent_?: InputMaybe<FlowUpdatedEvent_Filter>;
|
|
4323
4369
|
startedAtEvent_contains?: InputMaybe<Scalars['String']>;
|
|
4324
4370
|
startedAtEvent_contains_nocase?: InputMaybe<Scalars['String']>;
|
|
4325
4371
|
startedAtEvent_ends_with?: InputMaybe<Scalars['String']>;
|
|
@@ -4356,6 +4402,7 @@ export interface StreamPeriod_Filter {
|
|
|
4356
4402
|
stoppedAtBlockNumber_not?: InputMaybe<Scalars['BigInt']>;
|
|
4357
4403
|
stoppedAtBlockNumber_not_in?: InputMaybe<Array<Scalars['BigInt']>>;
|
|
4358
4404
|
stoppedAtEvent?: InputMaybe<Scalars['String']>;
|
|
4405
|
+
stoppedAtEvent_?: InputMaybe<FlowUpdatedEvent_Filter>;
|
|
4359
4406
|
stoppedAtEvent_contains?: InputMaybe<Scalars['String']>;
|
|
4360
4407
|
stoppedAtEvent_contains_nocase?: InputMaybe<Scalars['String']>;
|
|
4361
4408
|
stoppedAtEvent_ends_with?: InputMaybe<Scalars['String']>;
|
|
@@ -4384,6 +4431,7 @@ export interface StreamPeriod_Filter {
|
|
|
4384
4431
|
stoppedAtTimestamp_not?: InputMaybe<Scalars['BigInt']>;
|
|
4385
4432
|
stoppedAtTimestamp_not_in?: InputMaybe<Array<Scalars['BigInt']>>;
|
|
4386
4433
|
stream?: InputMaybe<Scalars['String']>;
|
|
4434
|
+
stream_?: InputMaybe<Stream_Filter>;
|
|
4387
4435
|
stream_contains?: InputMaybe<Scalars['String']>;
|
|
4388
4436
|
stream_contains_nocase?: InputMaybe<Scalars['String']>;
|
|
4389
4437
|
stream_ends_with?: InputMaybe<Scalars['String']>;
|
|
@@ -4404,6 +4452,7 @@ export interface StreamPeriod_Filter {
|
|
|
4404
4452
|
stream_starts_with?: InputMaybe<Scalars['String']>;
|
|
4405
4453
|
stream_starts_with_nocase?: InputMaybe<Scalars['String']>;
|
|
4406
4454
|
token?: InputMaybe<Scalars['String']>;
|
|
4455
|
+
token_?: InputMaybe<Token_Filter>;
|
|
4407
4456
|
token_contains?: InputMaybe<Scalars['String']>;
|
|
4408
4457
|
token_contains_nocase?: InputMaybe<Scalars['String']>;
|
|
4409
4458
|
token_ends_with?: InputMaybe<Scalars['String']>;
|
|
@@ -4495,6 +4544,7 @@ export interface Stream_Filter {
|
|
|
4495
4544
|
deposit_lte?: InputMaybe<Scalars['BigInt']>;
|
|
4496
4545
|
deposit_not?: InputMaybe<Scalars['BigInt']>;
|
|
4497
4546
|
deposit_not_in?: InputMaybe<Array<Scalars['BigInt']>>;
|
|
4547
|
+
flowUpdatedEvents_?: InputMaybe<FlowUpdatedEvent_Filter>;
|
|
4498
4548
|
id?: InputMaybe<Scalars['ID']>;
|
|
4499
4549
|
id_gt?: InputMaybe<Scalars['ID']>;
|
|
4500
4550
|
id_gte?: InputMaybe<Scalars['ID']>;
|
|
@@ -4504,6 +4554,7 @@ export interface Stream_Filter {
|
|
|
4504
4554
|
id_not?: InputMaybe<Scalars['ID']>;
|
|
4505
4555
|
id_not_in?: InputMaybe<Array<Scalars['ID']>>;
|
|
4506
4556
|
receiver?: InputMaybe<Scalars['String']>;
|
|
4557
|
+
receiver_?: InputMaybe<Account_Filter>;
|
|
4507
4558
|
receiver_contains?: InputMaybe<Scalars['String']>;
|
|
4508
4559
|
receiver_contains_nocase?: InputMaybe<Scalars['String']>;
|
|
4509
4560
|
receiver_ends_with?: InputMaybe<Scalars['String']>;
|
|
@@ -4524,6 +4575,7 @@ export interface Stream_Filter {
|
|
|
4524
4575
|
receiver_starts_with?: InputMaybe<Scalars['String']>;
|
|
4525
4576
|
receiver_starts_with_nocase?: InputMaybe<Scalars['String']>;
|
|
4526
4577
|
sender?: InputMaybe<Scalars['String']>;
|
|
4578
|
+
sender_?: InputMaybe<Account_Filter>;
|
|
4527
4579
|
sender_contains?: InputMaybe<Scalars['String']>;
|
|
4528
4580
|
sender_contains_nocase?: InputMaybe<Scalars['String']>;
|
|
4529
4581
|
sender_ends_with?: InputMaybe<Scalars['String']>;
|
|
@@ -4543,6 +4595,7 @@ export interface Stream_Filter {
|
|
|
4543
4595
|
sender_not_starts_with_nocase?: InputMaybe<Scalars['String']>;
|
|
4544
4596
|
sender_starts_with?: InputMaybe<Scalars['String']>;
|
|
4545
4597
|
sender_starts_with_nocase?: InputMaybe<Scalars['String']>;
|
|
4598
|
+
streamPeriods_?: InputMaybe<StreamPeriod_Filter>;
|
|
4546
4599
|
streamedUntilUpdatedAt?: InputMaybe<Scalars['BigInt']>;
|
|
4547
4600
|
streamedUntilUpdatedAt_gt?: InputMaybe<Scalars['BigInt']>;
|
|
4548
4601
|
streamedUntilUpdatedAt_gte?: InputMaybe<Scalars['BigInt']>;
|
|
@@ -4552,6 +4605,7 @@ export interface Stream_Filter {
|
|
|
4552
4605
|
streamedUntilUpdatedAt_not?: InputMaybe<Scalars['BigInt']>;
|
|
4553
4606
|
streamedUntilUpdatedAt_not_in?: InputMaybe<Array<Scalars['BigInt']>>;
|
|
4554
4607
|
token?: InputMaybe<Scalars['String']>;
|
|
4608
|
+
token_?: InputMaybe<Token_Filter>;
|
|
4555
4609
|
token_contains?: InputMaybe<Scalars['String']>;
|
|
4556
4610
|
token_contains_nocase?: InputMaybe<Scalars['String']>;
|
|
4557
4611
|
token_ends_with?: InputMaybe<Scalars['String']>;
|
|
@@ -4678,6 +4732,7 @@ export interface SubscriptionApprovedEvent_Filter {
|
|
|
4678
4732
|
subscriber_not_contains?: InputMaybe<Scalars['Bytes']>;
|
|
4679
4733
|
subscriber_not_in?: InputMaybe<Array<Scalars['Bytes']>>;
|
|
4680
4734
|
subscription?: InputMaybe<Scalars['String']>;
|
|
4735
|
+
subscription_?: InputMaybe<IndexSubscription_Filter>;
|
|
4681
4736
|
subscription_contains?: InputMaybe<Scalars['String']>;
|
|
4682
4737
|
subscription_contains_nocase?: InputMaybe<Scalars['String']>;
|
|
4683
4738
|
subscription_ends_with?: InputMaybe<Scalars['String']>;
|
|
@@ -4822,6 +4877,7 @@ export interface SubscriptionDistributionClaimedEvent_Filter {
|
|
|
4822
4877
|
subscriber_not_contains?: InputMaybe<Scalars['Bytes']>;
|
|
4823
4878
|
subscriber_not_in?: InputMaybe<Array<Scalars['Bytes']>>;
|
|
4824
4879
|
subscription?: InputMaybe<Scalars['String']>;
|
|
4880
|
+
subscription_?: InputMaybe<IndexSubscription_Filter>;
|
|
4825
4881
|
subscription_contains?: InputMaybe<Scalars['String']>;
|
|
4826
4882
|
subscription_contains_nocase?: InputMaybe<Scalars['String']>;
|
|
4827
4883
|
subscription_ends_with?: InputMaybe<Scalars['String']>;
|
|
@@ -4952,6 +5008,7 @@ export interface SubscriptionRevokedEvent_Filter {
|
|
|
4952
5008
|
subscriber_not_contains?: InputMaybe<Scalars['Bytes']>;
|
|
4953
5009
|
subscriber_not_in?: InputMaybe<Array<Scalars['Bytes']>>;
|
|
4954
5010
|
subscription?: InputMaybe<Scalars['String']>;
|
|
5011
|
+
subscription_?: InputMaybe<IndexSubscription_Filter>;
|
|
4955
5012
|
subscription_contains?: InputMaybe<Scalars['String']>;
|
|
4956
5013
|
subscription_contains_nocase?: InputMaybe<Scalars['String']>;
|
|
4957
5014
|
subscription_ends_with?: InputMaybe<Scalars['String']>;
|
|
@@ -5096,6 +5153,7 @@ export interface SubscriptionUnitsUpdatedEvent_Filter {
|
|
|
5096
5153
|
subscriber_not_contains?: InputMaybe<Scalars['Bytes']>;
|
|
5097
5154
|
subscriber_not_in?: InputMaybe<Array<Scalars['Bytes']>>;
|
|
5098
5155
|
subscription?: InputMaybe<Scalars['String']>;
|
|
5156
|
+
subscription_?: InputMaybe<IndexSubscription_Filter>;
|
|
5099
5157
|
subscription_contains?: InputMaybe<Scalars['String']>;
|
|
5100
5158
|
subscription_contains_nocase?: InputMaybe<Scalars['String']>;
|
|
5101
5159
|
subscription_ends_with?: InputMaybe<Scalars['String']>;
|
|
@@ -5520,6 +5578,7 @@ export declare type SuperTokenLogicUpdatedEvent_OrderBy = 'addresses' | 'blockNu
|
|
|
5520
5578
|
export interface TokenDowngradedEvent_Filter {
|
|
5521
5579
|
_change_block?: InputMaybe<BlockChangedFilter>;
|
|
5522
5580
|
account?: InputMaybe<Scalars['String']>;
|
|
5581
|
+
account_?: InputMaybe<Account_Filter>;
|
|
5523
5582
|
account_contains?: InputMaybe<Scalars['String']>;
|
|
5524
5583
|
account_contains_nocase?: InputMaybe<Scalars['String']>;
|
|
5525
5584
|
account_ends_with?: InputMaybe<Scalars['String']>;
|
|
@@ -5679,6 +5738,7 @@ export interface TokenStatisticLog_Filter {
|
|
|
5679
5738
|
timestamp_not_in?: InputMaybe<Array<Scalars['BigInt']>>;
|
|
5680
5739
|
token?: InputMaybe<Scalars['String']>;
|
|
5681
5740
|
tokenStatistic?: InputMaybe<Scalars['String']>;
|
|
5741
|
+
tokenStatistic_?: InputMaybe<TokenStatistic_Filter>;
|
|
5682
5742
|
tokenStatistic_contains?: InputMaybe<Scalars['String']>;
|
|
5683
5743
|
tokenStatistic_contains_nocase?: InputMaybe<Scalars['String']>;
|
|
5684
5744
|
tokenStatistic_ends_with?: InputMaybe<Scalars['String']>;
|
|
@@ -5698,6 +5758,7 @@ export interface TokenStatisticLog_Filter {
|
|
|
5698
5758
|
tokenStatistic_not_starts_with_nocase?: InputMaybe<Scalars['String']>;
|
|
5699
5759
|
tokenStatistic_starts_with?: InputMaybe<Scalars['String']>;
|
|
5700
5760
|
tokenStatistic_starts_with_nocase?: InputMaybe<Scalars['String']>;
|
|
5761
|
+
token_?: InputMaybe<Token_Filter>;
|
|
5701
5762
|
token_contains?: InputMaybe<Scalars['String']>;
|
|
5702
5763
|
token_contains_nocase?: InputMaybe<Scalars['String']>;
|
|
5703
5764
|
token_ends_with?: InputMaybe<Scalars['String']>;
|
|
@@ -5852,6 +5913,8 @@ export interface TokenStatistic_Filter {
|
|
|
5852
5913
|
id_not?: InputMaybe<Scalars['ID']>;
|
|
5853
5914
|
id_not_in?: InputMaybe<Array<Scalars['ID']>>;
|
|
5854
5915
|
token?: InputMaybe<Scalars['String']>;
|
|
5916
|
+
tokenStatisticLogs_?: InputMaybe<TokenStatisticLog_Filter>;
|
|
5917
|
+
token_?: InputMaybe<Token_Filter>;
|
|
5855
5918
|
token_contains?: InputMaybe<Scalars['String']>;
|
|
5856
5919
|
token_contains_nocase?: InputMaybe<Scalars['String']>;
|
|
5857
5920
|
token_ends_with?: InputMaybe<Scalars['String']>;
|
|
@@ -5988,6 +6051,7 @@ export declare type TokenStatistic_OrderBy = 'id' | 'token' | 'tokenStatisticLog
|
|
|
5988
6051
|
export interface TokenUpgradedEvent_Filter {
|
|
5989
6052
|
_change_block?: InputMaybe<BlockChangedFilter>;
|
|
5990
6053
|
account?: InputMaybe<Scalars['String']>;
|
|
6054
|
+
account_?: InputMaybe<Account_Filter>;
|
|
5991
6055
|
account_contains?: InputMaybe<Scalars['String']>;
|
|
5992
6056
|
account_contains_nocase?: InputMaybe<Scalars['String']>;
|
|
5993
6057
|
account_ends_with?: InputMaybe<Scalars['String']>;
|
|
@@ -6192,6 +6256,7 @@ export interface Token_Filter {
|
|
|
6192
6256
|
underlyingAddress_not_contains?: InputMaybe<Scalars['Bytes']>;
|
|
6193
6257
|
underlyingAddress_not_in?: InputMaybe<Array<Scalars['Bytes']>>;
|
|
6194
6258
|
underlyingToken?: InputMaybe<Scalars['String']>;
|
|
6259
|
+
underlyingToken_?: InputMaybe<Token_Filter>;
|
|
6195
6260
|
underlyingToken_contains?: InputMaybe<Scalars['String']>;
|
|
6196
6261
|
underlyingToken_contains_nocase?: InputMaybe<Scalars['String']>;
|
|
6197
6262
|
underlyingToken_ends_with?: InputMaybe<Scalars['String']>;
|
|
@@ -6230,6 +6295,7 @@ export interface TransferEvent_Filter {
|
|
|
6230
6295
|
blockNumber_not?: InputMaybe<Scalars['BigInt']>;
|
|
6231
6296
|
blockNumber_not_in?: InputMaybe<Array<Scalars['BigInt']>>;
|
|
6232
6297
|
from?: InputMaybe<Scalars['String']>;
|
|
6298
|
+
from_?: InputMaybe<Account_Filter>;
|
|
6233
6299
|
from_contains?: InputMaybe<Scalars['String']>;
|
|
6234
6300
|
from_contains_nocase?: InputMaybe<Scalars['String']>;
|
|
6235
6301
|
from_ends_with?: InputMaybe<Scalars['String']>;
|
|
@@ -6310,6 +6376,7 @@ export interface TransferEvent_Filter {
|
|
|
6310
6376
|
timestamp_not?: InputMaybe<Scalars['BigInt']>;
|
|
6311
6377
|
timestamp_not_in?: InputMaybe<Array<Scalars['BigInt']>>;
|
|
6312
6378
|
to?: InputMaybe<Scalars['String']>;
|
|
6379
|
+
to_?: InputMaybe<Account_Filter>;
|
|
6313
6380
|
to_contains?: InputMaybe<Scalars['String']>;
|
|
6314
6381
|
to_contains_nocase?: InputMaybe<Scalars['String']>;
|
|
6315
6382
|
to_ends_with?: InputMaybe<Scalars['String']>;
|