gondi 0.26.0 → 0.26.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/index.mjs +144 -291
- package/dist/index.mjs.map +3 -3
- package/dist/src/clients/api/sdk.d.ts +1 -0
- package/dist/src/generated/graphql/index.d.ts +165 -654
- package/dist/src/model.d.ts +1 -0
- package/dist/tsconfig.tsbuildinfo +1 -1
- package/package.json +1 -1
|
@@ -45,6 +45,53 @@ export type Activity = {
|
|
|
45
45
|
timestamp: Scalars['DateTime'];
|
|
46
46
|
txHash: Scalars['Hash'];
|
|
47
47
|
};
|
|
48
|
+
/** An artist or creator linked to NFTs or collections. */
|
|
49
|
+
export type Artist = Node & {
|
|
50
|
+
__typename?: 'Artist';
|
|
51
|
+
artistType: Scalars['String'];
|
|
52
|
+
artworksCount: Scalars['Int'];
|
|
53
|
+
bio?: Maybe<Scalars['String']>;
|
|
54
|
+
collectionsCount: Scalars['Int'];
|
|
55
|
+
ethMintAddresses: Array<Scalars['String']>;
|
|
56
|
+
id: Scalars['String'];
|
|
57
|
+
image?: Maybe<Asset>;
|
|
58
|
+
lastMint?: Maybe<Nft>;
|
|
59
|
+
name: Scalars['String'];
|
|
60
|
+
sales1d: Scalars['Int'];
|
|
61
|
+
socials: Array<Scalars['String']>;
|
|
62
|
+
totalVolume: Scalars['Float'];
|
|
63
|
+
uniqueCollectors: Scalars['Int'];
|
|
64
|
+
volume1d: Scalars['Float'];
|
|
65
|
+
websites: Array<Scalars['String']>;
|
|
66
|
+
};
|
|
67
|
+
export type ArtistConnection = {
|
|
68
|
+
__typename?: 'ArtistConnection';
|
|
69
|
+
edges: Array<ArtistEdge>;
|
|
70
|
+
pageInfo: PageInfo;
|
|
71
|
+
totalCount: Scalars['Int'];
|
|
72
|
+
};
|
|
73
|
+
export type ArtistEdge = {
|
|
74
|
+
__typename?: 'ArtistEdge';
|
|
75
|
+
cursor: Scalars['String'];
|
|
76
|
+
node: Artist;
|
|
77
|
+
};
|
|
78
|
+
export declare enum ArtistSortField {
|
|
79
|
+
ArtworksCount = "ARTWORKS_COUNT",
|
|
80
|
+
CollectionsCount = "COLLECTIONS_COUNT",
|
|
81
|
+
Name = "NAME",
|
|
82
|
+
Sales_1D = "SALES_1D",
|
|
83
|
+
TotalVolume = "TOTAL_VOLUME",
|
|
84
|
+
UniqueCollectors = "UNIQUE_COLLECTORS",
|
|
85
|
+
Volume_1D = "VOLUME_1D"
|
|
86
|
+
}
|
|
87
|
+
export type ArtistSortInput = {
|
|
88
|
+
field: ArtistSortField;
|
|
89
|
+
order: Ordering;
|
|
90
|
+
};
|
|
91
|
+
export declare enum ArtistType {
|
|
92
|
+
Artist = "ARTIST",
|
|
93
|
+
Creator = "CREATOR"
|
|
94
|
+
}
|
|
48
95
|
export type Asset = Node & {
|
|
49
96
|
__typename?: 'Asset';
|
|
50
97
|
accessTypeName: Scalars['String'];
|
|
@@ -231,6 +278,11 @@ export type BuyNowPayLaterOrder = Event & Node & Order & {
|
|
|
231
278
|
updatedDate: Scalars['DateTime'];
|
|
232
279
|
};
|
|
233
280
|
export type BuyNowPayLaterOrderSignatureRequestExtraSeaportData = BuyNowPayLaterOrder | ExtraSeaportData | SignatureRequest;
|
|
281
|
+
export type CancelAllOrdersCalldata = {
|
|
282
|
+
__typename?: 'CancelAllOrdersCalldata';
|
|
283
|
+
calldata: Scalars['Hex'];
|
|
284
|
+
marketPlaceAddress: Scalars['Address'];
|
|
285
|
+
};
|
|
234
286
|
/** An NFT collection. */
|
|
235
287
|
export type Collection = Node & {
|
|
236
288
|
__typename?: 'Collection';
|
|
@@ -240,17 +292,21 @@ export type Collection = Node & {
|
|
|
240
292
|
description?: Maybe<Scalars['String']>;
|
|
241
293
|
discordUrl?: Maybe<Scalars['String']>;
|
|
242
294
|
externalUrl?: Maybe<Scalars['String']>;
|
|
295
|
+
hasTransferValidator: Scalars['Boolean'];
|
|
243
296
|
id: Scalars['String'];
|
|
244
297
|
image?: Maybe<Asset>;
|
|
245
298
|
imageId?: Maybe<Scalars['String']>;
|
|
246
299
|
maxNetPrincipalOffer?: Maybe<CollectionOffer>;
|
|
247
300
|
name?: Maybe<Scalars['String']>;
|
|
248
301
|
nftsCount?: Maybe<Scalars['Int']>;
|
|
302
|
+
/** The first 10 NFTs of the collection, sorted ASC by token ID. */
|
|
303
|
+
previewNfts: Array<Nft>;
|
|
249
304
|
royalties: Array<Royalty>;
|
|
250
305
|
slug: Scalars['String'];
|
|
251
306
|
statistics: CollectionStatistics;
|
|
252
307
|
supply?: Maybe<Scalars['BigInt']>;
|
|
253
308
|
twitterUsername?: Maybe<Scalars['String']>;
|
|
309
|
+
uniqueCollectors: Scalars['Int'];
|
|
254
310
|
verified: Scalars['Boolean'];
|
|
255
311
|
wrappedCollection?: Maybe<Collection>;
|
|
256
312
|
wrappedCollectionId?: Maybe<Scalars['Int']>;
|
|
@@ -425,10 +481,12 @@ export type CollectionSignedOfferInput = {
|
|
|
425
481
|
signerAddress?: InputMaybe<Scalars['Address']>;
|
|
426
482
|
};
|
|
427
483
|
export declare enum CollectionSortField {
|
|
484
|
+
ContractCreatedDate = "CONTRACT_CREATED_DATE",
|
|
428
485
|
FloorPrice = "FLOOR_PRICE",
|
|
429
486
|
FloorPrice_1DChange = "FLOOR_PRICE_1D_CHANGE",
|
|
430
487
|
FloorPrice_7DChange = "FLOOR_PRICE_7D_CHANGE",
|
|
431
488
|
FloorPrice_30DChange = "FLOOR_PRICE_30D_CHANGE",
|
|
489
|
+
HighestBid = "HIGHEST_BID",
|
|
432
490
|
LendersOutstandingPrincipal = "LENDERS_OUTSTANDING_PRINCIPAL",
|
|
433
491
|
ListingCount = "LISTING_COUNT",
|
|
434
492
|
LoanCount = "LOAN_COUNT",
|
|
@@ -726,33 +784,6 @@ export type DelegationEdge = {
|
|
|
726
784
|
cursor: Scalars['String'];
|
|
727
785
|
node: Delegation;
|
|
728
786
|
};
|
|
729
|
-
export type Erc4626Deposit = Node & PoolActivity & {
|
|
730
|
-
__typename?: 'ERC4626Deposit';
|
|
731
|
-
assets: Scalars['BigInt'];
|
|
732
|
-
caller: Scalars['Address'];
|
|
733
|
-
id: Scalars['String'];
|
|
734
|
-
indexInBlock: Scalars['Int'];
|
|
735
|
-
owner: Scalars['Address'];
|
|
736
|
-
pool: Pool;
|
|
737
|
-
poolAddress: Scalars['Address'];
|
|
738
|
-
shares: Scalars['BigInt'];
|
|
739
|
-
timestamp: Scalars['DateTime'];
|
|
740
|
-
txHash: Scalars['Hash'];
|
|
741
|
-
};
|
|
742
|
-
export type Erc4626Withdraw = Node & PoolActivity & {
|
|
743
|
-
__typename?: 'ERC4626Withdraw';
|
|
744
|
-
assets: Scalars['BigInt'];
|
|
745
|
-
caller: Scalars['Address'];
|
|
746
|
-
id: Scalars['String'];
|
|
747
|
-
indexInBlock: Scalars['Int'];
|
|
748
|
-
owner: Scalars['Address'];
|
|
749
|
-
pool: Pool;
|
|
750
|
-
poolAddress: Scalars['Address'];
|
|
751
|
-
receiver: Scalars['Address'];
|
|
752
|
-
shares: Scalars['BigInt'];
|
|
753
|
-
timestamp: Scalars['DateTime'];
|
|
754
|
-
txHash: Scalars['Hash'];
|
|
755
|
-
};
|
|
756
787
|
export type Event = {
|
|
757
788
|
id: Scalars['String'];
|
|
758
789
|
timestamp: Scalars['DateTime'];
|
|
@@ -1408,6 +1439,8 @@ export type Mutation = {
|
|
|
1408
1439
|
publishOrderForNft: SingleNftOrderSignatureRequest;
|
|
1409
1440
|
/** Creates a sell and repay loan order. Sell and repay orders are orders to sell an NFT and use that money to repay a loan leaving the rest for the borrower. This method could return a SignatureRequest in __typename in which case you have to use this method again with the same input but you have to sign the 'typedData' response attribute and store it in the 'key' response attribute. You will have to do this process two times since multiple signatures are required. You should receive an SellAndRepayOrder if everything went well. Refer to gondi-js examples for more details Platform fees are added to the fees array if not present.on how to sign it and pay the order. */
|
|
1410
1441
|
publishSellAndRepayOrder: SellAndRepayOrderSignatureRequestExtraSeaportData;
|
|
1442
|
+
/** Refreshes NFT metadata and image */
|
|
1443
|
+
refreshNftMetadata: Nft;
|
|
1411
1444
|
/** Removes a loan listing from a user. */
|
|
1412
1445
|
removeListing: Listing;
|
|
1413
1446
|
/** Removes all the loan listings from a user. Can be filtered. */
|
|
@@ -1507,6 +1540,9 @@ export type MutationPublishOrderForNftArgs = {
|
|
|
1507
1540
|
export type MutationPublishSellAndRepayOrderArgs = {
|
|
1508
1541
|
orderInput: NftOrderInput;
|
|
1509
1542
|
};
|
|
1543
|
+
export type MutationRefreshNftMetadataArgs = {
|
|
1544
|
+
nftId: Scalars['Int'];
|
|
1545
|
+
};
|
|
1510
1546
|
export type MutationRemoveListingArgs = {
|
|
1511
1547
|
nftId: Scalars['Int'];
|
|
1512
1548
|
};
|
|
@@ -1993,6 +2029,11 @@ export type OrderForNft = {
|
|
|
1993
2029
|
collectionId: Scalars['Int'];
|
|
1994
2030
|
nftId: Scalars['Int'];
|
|
1995
2031
|
};
|
|
2032
|
+
export declare enum OrderKind {
|
|
2033
|
+
All = "ALL",
|
|
2034
|
+
Private = "PRIVATE",
|
|
2035
|
+
Public = "PUBLIC"
|
|
2036
|
+
}
|
|
1996
2037
|
export declare enum OrderModel {
|
|
1997
2038
|
Deal = "DEAL",
|
|
1998
2039
|
Order = "ORDER"
|
|
@@ -2099,144 +2140,14 @@ export type PointActivityEdge = {
|
|
|
2099
2140
|
cursor: Scalars['String'];
|
|
2100
2141
|
node: PointActivity;
|
|
2101
2142
|
};
|
|
2102
|
-
export type Pool = Node & {
|
|
2103
|
-
__typename?: 'Pool';
|
|
2104
|
-
address: Scalars['Address'];
|
|
2105
|
-
asset: Currency;
|
|
2106
|
-
baseRateAllocator: PoolBaseRateAllocator;
|
|
2107
|
-
collectionFactors: Array<PoolCollectionFactors>;
|
|
2108
|
-
currency: Currency;
|
|
2109
|
-
description: Scalars['String'];
|
|
2110
|
-
id: Scalars['String'];
|
|
2111
|
-
poolActivities: Array<PoolActivity>;
|
|
2112
|
-
statistics: PoolStatistics;
|
|
2113
|
-
};
|
|
2114
|
-
export type PoolActivity = {
|
|
2115
|
-
id: Scalars['String'];
|
|
2116
|
-
indexInBlock: Scalars['Int'];
|
|
2117
|
-
pool: Pool;
|
|
2118
|
-
poolAddress: Scalars['Address'];
|
|
2119
|
-
timestamp: Scalars['DateTime'];
|
|
2120
|
-
txHash: Scalars['Hash'];
|
|
2121
|
-
};
|
|
2122
|
-
export type PoolActivityConnection = {
|
|
2123
|
-
__typename?: 'PoolActivityConnection';
|
|
2124
|
-
edges: Array<PoolActivityEdge>;
|
|
2125
|
-
pageInfo: PageInfo;
|
|
2126
|
-
totalCount: Scalars['Int'];
|
|
2127
|
-
};
|
|
2128
|
-
export type PoolActivityEdge = {
|
|
2129
|
-
__typename?: 'PoolActivityEdge';
|
|
2130
|
-
cursor: Scalars['String'];
|
|
2131
|
-
node: PoolActivity;
|
|
2132
|
-
};
|
|
2133
|
-
export declare enum PoolActivityType {
|
|
2134
|
-
Erc4626Deposit = "ERC4626_DEPOSIT",
|
|
2135
|
-
Erc4626Withdraw = "ERC4626_WITHDRAW",
|
|
2136
|
-
PoolAprFactorSet = "POOL_APR_FACTOR_SET",
|
|
2137
|
-
PoolAprPremiumSet = "POOL_APR_PREMIUM_SET",
|
|
2138
|
-
PoolBaseInterestAllocatorSet = "POOL_BASE_INTEREST_ALLOCATOR_SET",
|
|
2139
|
-
PoolCollectionFactorsSet = "POOL_COLLECTION_FACTORS_SET",
|
|
2140
|
-
PoolReallocated = "POOL_REALLOCATED",
|
|
2141
|
-
QueueDeployed = "QUEUE_DEPLOYED",
|
|
2142
|
-
WithdrawalPositionLocked = "WITHDRAWAL_POSITION_LOCKED",
|
|
2143
|
-
WithdrawalPositionMinted = "WITHDRAWAL_POSITION_MINTED",
|
|
2144
|
-
WithdrawnFromQueue = "WITHDRAWN_FROM_QUEUE"
|
|
2145
|
-
}
|
|
2146
|
-
export type PoolAprFactorSet = Node & PoolActivity & {
|
|
2147
|
-
__typename?: 'PoolAprFactorSet';
|
|
2148
|
-
id: Scalars['String'];
|
|
2149
|
-
indexInBlock: Scalars['Int'];
|
|
2150
|
-
pool: Pool;
|
|
2151
|
-
poolAddress: Scalars['Address'];
|
|
2152
|
-
timestamp: Scalars['DateTime'];
|
|
2153
|
-
txHash: Scalars['Hash'];
|
|
2154
|
-
};
|
|
2155
|
-
export type PoolAprPremiumSet = Node & PoolActivity & {
|
|
2156
|
-
__typename?: 'PoolAprPremiumSet';
|
|
2157
|
-
aprPremium: Scalars['BigInt'];
|
|
2158
|
-
id: Scalars['String'];
|
|
2159
|
-
indexInBlock: Scalars['Int'];
|
|
2160
|
-
pool: Pool;
|
|
2161
|
-
poolAddress: Scalars['Address'];
|
|
2162
|
-
timestamp: Scalars['DateTime'];
|
|
2163
|
-
txHash: Scalars['Hash'];
|
|
2164
|
-
};
|
|
2165
|
-
export type PoolBaseInterestAllocatorSet = Node & PoolActivity & {
|
|
2166
|
-
__typename?: 'PoolBaseInterestAllocatorSet';
|
|
2167
|
-
id: Scalars['String'];
|
|
2168
|
-
indexInBlock: Scalars['Int'];
|
|
2169
|
-
pool: Pool;
|
|
2170
|
-
poolAddress: Scalars['Address'];
|
|
2171
|
-
timestamp: Scalars['DateTime'];
|
|
2172
|
-
txHash: Scalars['Hash'];
|
|
2173
|
-
};
|
|
2174
|
-
export type PoolBaseRateAllocator = Node & {
|
|
2175
|
-
__typename?: 'PoolBaseRateAllocator';
|
|
2176
|
-
address: Scalars['Address'];
|
|
2177
|
-
currency: Currency;
|
|
2178
|
-
description: Scalars['String'];
|
|
2179
|
-
id: Scalars['String'];
|
|
2180
|
-
stakeCurrency: Currency;
|
|
2181
|
-
};
|
|
2182
|
-
export type PoolCollectionFactors = Node & {
|
|
2183
|
-
__typename?: 'PoolCollectionFactors';
|
|
2184
|
-
collection: Collection;
|
|
2185
|
-
collectionId: Scalars['Int'];
|
|
2186
|
-
duration: Scalars['BigInt'];
|
|
2187
|
-
id: Scalars['String'];
|
|
2188
|
-
offerId: Scalars['String'];
|
|
2189
|
-
pool: Pool;
|
|
2190
|
-
poolAddress: Scalars['String'];
|
|
2191
|
-
principalCurrentFactor: Scalars['BigInt'];
|
|
2192
|
-
principalHistoricalFactor: Scalars['BigInt'];
|
|
2193
|
-
};
|
|
2194
|
-
export type PoolCollectionFactorsSet = Node & PoolActivity & {
|
|
2195
|
-
__typename?: 'PoolCollectionFactorsSet';
|
|
2196
|
-
id: Scalars['String'];
|
|
2197
|
-
indexInBlock: Scalars['Int'];
|
|
2198
|
-
pool: Pool;
|
|
2199
|
-
poolAddress: Scalars['Address'];
|
|
2200
|
-
timestamp: Scalars['DateTime'];
|
|
2201
|
-
txHash: Scalars['Hash'];
|
|
2202
|
-
};
|
|
2203
|
-
export type PoolConnection = {
|
|
2204
|
-
__typename?: 'PoolConnection';
|
|
2205
|
-
edges: Array<PoolEdge>;
|
|
2206
|
-
pageInfo: PageInfo;
|
|
2207
|
-
totalCount: Scalars['Int'];
|
|
2208
|
-
};
|
|
2209
|
-
export type PoolEdge = {
|
|
2210
|
-
__typename?: 'PoolEdge';
|
|
2211
|
-
cursor: Scalars['String'];
|
|
2212
|
-
node: Pool;
|
|
2213
|
-
};
|
|
2214
|
-
export type PoolReallocated = Node & PoolActivity & {
|
|
2215
|
-
__typename?: 'PoolReallocated';
|
|
2216
|
-
id: Scalars['String'];
|
|
2217
|
-
indexInBlock: Scalars['Int'];
|
|
2218
|
-
pool: Pool;
|
|
2219
|
-
poolAddress: Scalars['Address'];
|
|
2220
|
-
timestamp: Scalars['DateTime'];
|
|
2221
|
-
txHash: Scalars['Hash'];
|
|
2222
|
-
};
|
|
2223
|
-
export type PoolStatistics = {
|
|
2224
|
-
__typename?: 'PoolStatistics';
|
|
2225
|
-
activeLoansCount: Scalars['Int'];
|
|
2226
|
-
activeOffersCount: Scalars['Int'];
|
|
2227
|
-
balanceAllocatedBaseRate: Scalars['BigInt'];
|
|
2228
|
-
liquid: Scalars['BigInt'];
|
|
2229
|
-
outstandingApr: Scalars['Float'];
|
|
2230
|
-
outstandingPrincipal: Scalars['BigInt'];
|
|
2231
|
-
realizedApr: Scalars['Float'];
|
|
2232
|
-
totalDeposits: Scalars['BigInt'];
|
|
2233
|
-
totalLoanVolume: Scalars['BigInt'];
|
|
2234
|
-
};
|
|
2235
2143
|
/** Query for the lending module */
|
|
2236
2144
|
export type Query = {
|
|
2237
2145
|
__typename?: 'Query';
|
|
2146
|
+
/** Get an artist by ID. */
|
|
2147
|
+
getArtist?: Maybe<Artist>;
|
|
2238
2148
|
/** Get the borrowing power for a list of borrowers.Borrowing power is the sum of the best offer per NFT the borrower has.The best offer is the offer with the highest net principal.Returns the normalized sum in ETH equivalent (float). */
|
|
2239
2149
|
getBorrowingPower: Scalars['Float'];
|
|
2150
|
+
getCancelAllNftOrdersCalldata: Array<CancelAllOrdersCalldata>;
|
|
2240
2151
|
/** Get some general loan stats about the activities for a collection. */
|
|
2241
2152
|
getCollectionActivitiesCount: CollectionEventsCountByDayAndCurrency;
|
|
2242
2153
|
/** Get a collection by its slug. Slugs are unique identifiers for collections. */
|
|
@@ -2258,13 +2169,14 @@ export type Query = {
|
|
|
2258
2169
|
getOutstandingDebt: Scalars['BigInt'];
|
|
2259
2170
|
getOutstandingLoanStatistics: OutstandingLoanStatistics;
|
|
2260
2171
|
getPointsFromReferrals: Scalars['Int'];
|
|
2261
|
-
getPoolByShareSymbol?: Maybe<Pool>;
|
|
2262
2172
|
getReferredWallets: Scalars['Int'];
|
|
2263
2173
|
getSourcesStatistics: SourcesStatistics;
|
|
2264
2174
|
getSourcesStatisticsByCollection: Array<SourceStatisticsFromCollection>;
|
|
2265
2175
|
getUserPointActivities: PointActivityConnection;
|
|
2266
2176
|
getUserPoints: Scalars['Int'];
|
|
2267
2177
|
globalSearch: Array<GlobalSearchResult>;
|
|
2178
|
+
/** List artists/creators, optionally filtered by type. */
|
|
2179
|
+
listArtists: ArtistConnection;
|
|
2268
2180
|
listAuctions: AuctionConnection;
|
|
2269
2181
|
listBids: BidConnection;
|
|
2270
2182
|
/** List collections for feed. */
|
|
@@ -2312,21 +2224,29 @@ export type Query = {
|
|
|
2312
2224
|
listOrders: OrderConnection;
|
|
2313
2225
|
listOrdersV2: OrderConnection;
|
|
2314
2226
|
listPlatformFees: Array<PlatformFee>;
|
|
2315
|
-
listPoolActivities: PoolActivityConnection;
|
|
2316
|
-
listPools: PoolConnection;
|
|
2317
2227
|
listRenegotiations: RenegotiationConnection;
|
|
2318
2228
|
listSales: SaleConnection;
|
|
2319
2229
|
/** List all sources. Sources are the lender/s of a loan. Lost sources on the other hand are the lender/s that have lost a loan because of renegotiation or refinance. When a renegotiation or refinance happens, the sources compromised turn into lost sources and new sources appear. */
|
|
2320
2230
|
listSources: SourceLostSourceConnection;
|
|
2321
|
-
listWithdrawalPositions: WithdrawalPositionConnection;
|
|
2322
|
-
listWithdrawalQueues: WithdrawalQueueConnection;
|
|
2323
2231
|
me?: Maybe<User>;
|
|
2324
2232
|
};
|
|
2325
2233
|
/** Query for the lending module */
|
|
2234
|
+
export type QueryGetArtistArgs = {
|
|
2235
|
+
artistId: Scalars['Int'];
|
|
2236
|
+
};
|
|
2237
|
+
/** Query for the lending module */
|
|
2326
2238
|
export type QueryGetBorrowingPowerArgs = {
|
|
2327
2239
|
borrowers: Array<Scalars['Address']>;
|
|
2328
2240
|
};
|
|
2329
2241
|
/** Query for the lending module */
|
|
2242
|
+
export type QueryGetCancelAllNftOrdersCalldataArgs = {
|
|
2243
|
+
isAsk?: InputMaybe<Scalars['Boolean']>;
|
|
2244
|
+
kind: OrderKind;
|
|
2245
|
+
nftId: Scalars['Int'];
|
|
2246
|
+
statuses?: InputMaybe<Array<OrderStatusType>>;
|
|
2247
|
+
walletAddress: Scalars['Address'];
|
|
2248
|
+
};
|
|
2249
|
+
/** Query for the lending module */
|
|
2330
2250
|
export type QueryGetCollectionActivitiesCountArgs = {
|
|
2331
2251
|
collectionId?: InputMaybe<Scalars['Int']>;
|
|
2332
2252
|
currencyAddress?: InputMaybe<Scalars['Address']>;
|
|
@@ -2397,10 +2317,6 @@ export type QueryGetOutstandingDebtArgs = {
|
|
|
2397
2317
|
currencyAddresses?: InputMaybe<Array<Scalars['Address']>>;
|
|
2398
2318
|
};
|
|
2399
2319
|
/** Query for the lending module */
|
|
2400
|
-
export type QueryGetPoolByShareSymbolArgs = {
|
|
2401
|
-
symbol: Scalars['String'];
|
|
2402
|
-
};
|
|
2403
|
-
/** Query for the lending module */
|
|
2404
2320
|
export type QueryGetSourcesStatisticsArgs = {
|
|
2405
2321
|
currencyAddress: Scalars['Address'];
|
|
2406
2322
|
lenders: Array<Scalars['Address']>;
|
|
@@ -2422,6 +2338,13 @@ export type QueryGlobalSearchArgs = {
|
|
|
2422
2338
|
searchTerm: Scalars['String'];
|
|
2423
2339
|
};
|
|
2424
2340
|
/** Query for the lending module */
|
|
2341
|
+
export type QueryListArtistsArgs = {
|
|
2342
|
+
after?: InputMaybe<Scalars['String']>;
|
|
2343
|
+
artistType?: InputMaybe<ArtistType>;
|
|
2344
|
+
first?: Scalars['Int'];
|
|
2345
|
+
sortBy?: InputMaybe<Array<ArtistSortInput>>;
|
|
2346
|
+
};
|
|
2347
|
+
/** Query for the lending module */
|
|
2425
2348
|
export type QueryListAuctionsArgs = {
|
|
2426
2349
|
after?: InputMaybe<Scalars['String']>;
|
|
2427
2350
|
currencyAddress?: InputMaybe<Scalars['Address']>;
|
|
@@ -2467,6 +2390,7 @@ export type QueryListCollectionTraitValuesArgs = {
|
|
|
2467
2390
|
/** Query for the lending module */
|
|
2468
2391
|
export type QueryListCollectionsArgs = {
|
|
2469
2392
|
after?: InputMaybe<Scalars['String']>;
|
|
2393
|
+
artists?: InputMaybe<Array<Scalars['Int']>>;
|
|
2470
2394
|
collections?: InputMaybe<Array<Scalars['Int']>>;
|
|
2471
2395
|
excludeCollections?: InputMaybe<Array<Scalars['Int']>>;
|
|
2472
2396
|
excludeGondiUserVault?: InputMaybe<Scalars['Boolean']>;
|
|
@@ -2531,6 +2455,7 @@ export type QueryListListingsArgs = {
|
|
|
2531
2455
|
currencyAddresses?: InputMaybe<Array<Scalars['Address']>>;
|
|
2532
2456
|
excludeSlugs?: InputMaybe<Array<Scalars['String']>>;
|
|
2533
2457
|
first?: InputMaybe<Scalars['Int']>;
|
|
2458
|
+
includeVaultsForCollections?: InputMaybe<VaultsFilter>;
|
|
2534
2459
|
marketplaceNames?: InputMaybe<Array<MarketplaceEnum>>;
|
|
2535
2460
|
searchTerm?: InputMaybe<Scalars['String']>;
|
|
2536
2461
|
slugs?: InputMaybe<Array<Scalars['String']>>;
|
|
@@ -2587,6 +2512,7 @@ export type QueryListLoansArgs = {
|
|
|
2587
2512
|
first?: Scalars['Int'];
|
|
2588
2513
|
hideEndLocked?: InputMaybe<Scalars['Boolean']>;
|
|
2589
2514
|
hideLocked?: InputMaybe<Scalars['Boolean']>;
|
|
2515
|
+
includeVaultsForCollections?: InputMaybe<VaultsFilter>;
|
|
2590
2516
|
nfts?: InputMaybe<Array<Scalars['Int']>>;
|
|
2591
2517
|
orderByStatuses?: InputMaybe<Scalars['Boolean']>;
|
|
2592
2518
|
requestStatuses?: InputMaybe<Array<LoanRequestType>>;
|
|
@@ -2638,8 +2564,10 @@ export type QueryListNftStrategyDeploymentsArgs = {
|
|
|
2638
2564
|
export type QueryListNftsArgs = {
|
|
2639
2565
|
after?: InputMaybe<Scalars['String']>;
|
|
2640
2566
|
blockchains?: InputMaybe<Array<BlockchainEnum>>;
|
|
2567
|
+
burned?: InputMaybe<Scalars['Boolean']>;
|
|
2641
2568
|
excludeSlugs?: InputMaybe<Array<Scalars['String']>>;
|
|
2642
2569
|
first?: InputMaybe<Scalars['Int']>;
|
|
2570
|
+
includeVaultsForCollections?: InputMaybe<VaultsFilter>;
|
|
2643
2571
|
loansFilter?: InputMaybe<NftLoansFilterInput>;
|
|
2644
2572
|
nftIds?: InputMaybe<Array<Scalars['Int']>>;
|
|
2645
2573
|
ownersFilter?: InputMaybe<NftOwnersFilterInput>;
|
|
@@ -2652,6 +2580,7 @@ export type QueryListNftsArgs = {
|
|
|
2652
2580
|
withAsksConfig?: InputMaybe<NftWithAsksConfigInput>;
|
|
2653
2581
|
withListed?: InputMaybe<Scalars['Boolean']>;
|
|
2654
2582
|
withWraps?: InputMaybe<Scalars['Boolean']>;
|
|
2583
|
+
withoutEmptyWraps?: InputMaybe<Scalars['Boolean']>;
|
|
2655
2584
|
};
|
|
2656
2585
|
/** Query for the lending module */
|
|
2657
2586
|
export type QueryListNftsFromCollectionsArgs = {
|
|
@@ -2735,6 +2664,7 @@ export type QueryListOrdersV2Args = {
|
|
|
2735
2664
|
collectionIds?: InputMaybe<Array<Scalars['Int']>>;
|
|
2736
2665
|
currencyAddresses?: InputMaybe<Array<Scalars['Address']>>;
|
|
2737
2666
|
excludeMaker?: InputMaybe<Array<Scalars['Address']>>;
|
|
2667
|
+
excludeTaker?: InputMaybe<Array<Scalars['Address']>>;
|
|
2738
2668
|
exclusiveListings?: InputMaybe<Scalars['Boolean']>;
|
|
2739
2669
|
exclusiveListingsTypes?: InputMaybe<Array<ExclusiveListingType>>;
|
|
2740
2670
|
first?: InputMaybe<Scalars['Int']>;
|
|
@@ -2760,20 +2690,6 @@ export type QueryListPlatformFeesArgs = {
|
|
|
2760
2690
|
operation: PlatformFeeOperationType;
|
|
2761
2691
|
};
|
|
2762
2692
|
/** Query for the lending module */
|
|
2763
|
-
export type QueryListPoolActivitiesArgs = {
|
|
2764
|
-
after?: InputMaybe<Scalars['String']>;
|
|
2765
|
-
first?: Scalars['Int'];
|
|
2766
|
-
ownerAddresses?: InputMaybe<Array<Scalars['Address']>>;
|
|
2767
|
-
poolAddresses?: InputMaybe<Array<Scalars['Address']>>;
|
|
2768
|
-
types?: InputMaybe<Array<PoolActivityType>>;
|
|
2769
|
-
};
|
|
2770
|
-
/** Query for the lending module */
|
|
2771
|
-
export type QueryListPoolsArgs = {
|
|
2772
|
-
addresses?: InputMaybe<Array<Scalars['String']>>;
|
|
2773
|
-
after?: InputMaybe<Scalars['String']>;
|
|
2774
|
-
first?: Scalars['Int'];
|
|
2775
|
-
};
|
|
2776
|
-
/** Query for the lending module */
|
|
2777
2693
|
export type QueryListRenegotiationsArgs = {
|
|
2778
2694
|
after?: InputMaybe<Scalars['String']>;
|
|
2779
2695
|
blockchains?: InputMaybe<Array<BlockchainEnum>>;
|
|
@@ -2820,30 +2736,6 @@ export type QueryListSourcesArgs = {
|
|
|
2820
2736
|
terms?: InputMaybe<TermsFilter>;
|
|
2821
2737
|
withdrawalQueues?: InputMaybe<Array<Scalars['Int']>>;
|
|
2822
2738
|
};
|
|
2823
|
-
/** Query for the lending module */
|
|
2824
|
-
export type QueryListWithdrawalPositionsArgs = {
|
|
2825
|
-
after?: InputMaybe<Scalars['String']>;
|
|
2826
|
-
first?: Scalars['Int'];
|
|
2827
|
-
owner?: InputMaybe<Scalars['Address']>;
|
|
2828
|
-
poolAddresses?: InputMaybe<Array<Scalars['Address']>>;
|
|
2829
|
-
};
|
|
2830
|
-
/** Query for the lending module */
|
|
2831
|
-
export type QueryListWithdrawalQueuesArgs = {
|
|
2832
|
-
after?: InputMaybe<Scalars['String']>;
|
|
2833
|
-
first?: Scalars['Int'];
|
|
2834
|
-
poolAddresses?: InputMaybe<Array<Scalars['Address']>>;
|
|
2835
|
-
};
|
|
2836
|
-
export type QueueDeployed = Node & PoolActivity & {
|
|
2837
|
-
__typename?: 'QueueDeployed';
|
|
2838
|
-
id: Scalars['String'];
|
|
2839
|
-
index: Scalars['Int'];
|
|
2840
|
-
indexInBlock: Scalars['Int'];
|
|
2841
|
-
pool: Pool;
|
|
2842
|
-
poolAddress: Scalars['Address'];
|
|
2843
|
-
queueAddress: Scalars['Address'];
|
|
2844
|
-
timestamp: Scalars['DateTime'];
|
|
2845
|
-
txHash: Scalars['Hash'];
|
|
2846
|
-
};
|
|
2847
2739
|
export type RangeInput = {
|
|
2848
2740
|
max: Scalars['Int'];
|
|
2849
2741
|
min: Scalars['Int'];
|
|
@@ -3637,98 +3529,15 @@ export type UserStatisticsWavgRepaidAprByCollectionArgs = {
|
|
|
3637
3529
|
currencyAddress: Scalars['Address'];
|
|
3638
3530
|
walletsAddresses: Array<Scalars['Address']>;
|
|
3639
3531
|
};
|
|
3532
|
+
export declare enum VaultsFilter {
|
|
3533
|
+
Exclude = "EXCLUDE",
|
|
3534
|
+
Include = "INCLUDE",
|
|
3535
|
+
IncludeSingleCollection = "INCLUDE_SINGLE_COLLECTION"
|
|
3536
|
+
}
|
|
3640
3537
|
export type WithAsksInput = {
|
|
3641
3538
|
enabled?: InputMaybe<Scalars['Boolean']>;
|
|
3642
3539
|
marketplaces?: InputMaybe<Array<MarketPlaceType>>;
|
|
3643
3540
|
};
|
|
3644
|
-
export type WithdrawalPosition = Node & {
|
|
3645
|
-
__typename?: 'WithdrawalPosition';
|
|
3646
|
-
available: Scalars['BigInt'];
|
|
3647
|
-
id: Scalars['String'];
|
|
3648
|
-
nft: Nft;
|
|
3649
|
-
nftId: Scalars['Int'];
|
|
3650
|
-
pending: Scalars['BigInt'];
|
|
3651
|
-
requested: Scalars['BigInt'];
|
|
3652
|
-
shares: Scalars['BigInt'];
|
|
3653
|
-
unlockTime?: Maybe<Scalars['DateTime']>;
|
|
3654
|
-
withdrawalQueue: WithdrawalQueue;
|
|
3655
|
-
withdrawalQueueId: Scalars['Int'];
|
|
3656
|
-
withdrawn: Scalars['BigInt'];
|
|
3657
|
-
};
|
|
3658
|
-
export type WithdrawalPositionConnection = {
|
|
3659
|
-
__typename?: 'WithdrawalPositionConnection';
|
|
3660
|
-
edges: Array<WithdrawalPositionEdge>;
|
|
3661
|
-
pageInfo: PageInfo;
|
|
3662
|
-
totalCount: Scalars['Int'];
|
|
3663
|
-
};
|
|
3664
|
-
export type WithdrawalPositionEdge = {
|
|
3665
|
-
__typename?: 'WithdrawalPositionEdge';
|
|
3666
|
-
cursor: Scalars['String'];
|
|
3667
|
-
node: WithdrawalPosition;
|
|
3668
|
-
};
|
|
3669
|
-
export type WithdrawalPositionLocked = Node & PoolActivity & {
|
|
3670
|
-
__typename?: 'WithdrawalPositionLocked';
|
|
3671
|
-
contract: Scalars['Address'];
|
|
3672
|
-
id: Scalars['String'];
|
|
3673
|
-
indexInBlock: Scalars['Int'];
|
|
3674
|
-
pool: Pool;
|
|
3675
|
-
poolAddress: Scalars['Address'];
|
|
3676
|
-
timestamp: Scalars['DateTime'];
|
|
3677
|
-
txHash: Scalars['Hash'];
|
|
3678
|
-
unlockTime: Scalars['DateTime'];
|
|
3679
|
-
};
|
|
3680
|
-
export type WithdrawalPositionMinted = Node & PoolActivity & {
|
|
3681
|
-
__typename?: 'WithdrawalPositionMinted';
|
|
3682
|
-
contract: Scalars['Address'];
|
|
3683
|
-
id: Scalars['String'];
|
|
3684
|
-
indexInBlock: Scalars['Int'];
|
|
3685
|
-
pool: Pool;
|
|
3686
|
-
poolAddress: Scalars['Address'];
|
|
3687
|
-
receiver: Scalars['Address'];
|
|
3688
|
-
shares: Scalars['BigInt'];
|
|
3689
|
-
timestamp: Scalars['DateTime'];
|
|
3690
|
-
txHash: Scalars['Hash'];
|
|
3691
|
-
};
|
|
3692
|
-
export type WithdrawalQueue = Node & {
|
|
3693
|
-
__typename?: 'WithdrawalQueue';
|
|
3694
|
-
balance: Scalars['BigInt'];
|
|
3695
|
-
collection: Collection;
|
|
3696
|
-
collectionId: Scalars['Int'];
|
|
3697
|
-
id: Scalars['String'];
|
|
3698
|
-
index: Scalars['Int'];
|
|
3699
|
-
pending: Scalars['BigInt'];
|
|
3700
|
-
pool: Pool;
|
|
3701
|
-
poolAddress: Scalars['Address'];
|
|
3702
|
-
requested: Scalars['BigInt'];
|
|
3703
|
-
requesters: Scalars['Int'];
|
|
3704
|
-
startTime: Scalars['DateTime'];
|
|
3705
|
-
status: Scalars['String'];
|
|
3706
|
-
totalShares: Scalars['BigInt'];
|
|
3707
|
-
totalWithdrawn: Scalars['BigInt'];
|
|
3708
|
-
};
|
|
3709
|
-
export type WithdrawalQueueConnection = {
|
|
3710
|
-
__typename?: 'WithdrawalQueueConnection';
|
|
3711
|
-
edges: Array<WithdrawalQueueEdge>;
|
|
3712
|
-
pageInfo: PageInfo;
|
|
3713
|
-
totalCount: Scalars['Int'];
|
|
3714
|
-
};
|
|
3715
|
-
export type WithdrawalQueueEdge = {
|
|
3716
|
-
__typename?: 'WithdrawalQueueEdge';
|
|
3717
|
-
cursor: Scalars['String'];
|
|
3718
|
-
node: WithdrawalQueue;
|
|
3719
|
-
};
|
|
3720
|
-
export type WithdrawnFromQueue = Node & PoolActivity & {
|
|
3721
|
-
__typename?: 'WithdrawnFromQueue';
|
|
3722
|
-
available: Scalars['BigInt'];
|
|
3723
|
-
contract: Scalars['Address'];
|
|
3724
|
-
id: Scalars['String'];
|
|
3725
|
-
indexInBlock: Scalars['Int'];
|
|
3726
|
-
pool: Pool;
|
|
3727
|
-
poolAddress: Scalars['Address'];
|
|
3728
|
-
receiver: Scalars['Address'];
|
|
3729
|
-
timestamp: Scalars['DateTime'];
|
|
3730
|
-
txHash: Scalars['Hash'];
|
|
3731
|
-
};
|
|
3732
3541
|
export type CurrencyAmountInfoFragment = {
|
|
3733
3542
|
__typename?: 'CurrencyAmount';
|
|
3734
3543
|
amount: number;
|
|
@@ -4554,6 +4363,7 @@ export type ListOffersQueryVariables = Exact<{
|
|
|
4554
4363
|
sortBy: OffersSortInput;
|
|
4555
4364
|
terms?: InputMaybe<TermsFilter>;
|
|
4556
4365
|
statuses?: InputMaybe<Array<OfferStatus> | OfferStatus>;
|
|
4366
|
+
contractAddresses?: InputMaybe<Array<Scalars['Address']> | Scalars['Address']>;
|
|
4557
4367
|
nfts?: InputMaybe<Array<Scalars['Int']> | Scalars['Int']>;
|
|
4558
4368
|
collections?: InputMaybe<Array<Scalars['Int']> | Scalars['Int']>;
|
|
4559
4369
|
onlySingleNftOffers?: InputMaybe<Scalars['Boolean']>;
|
|
@@ -4692,6 +4502,35 @@ export type ActivityFieldPolicy = {
|
|
|
4692
4502
|
timestamp?: FieldPolicy<any> | FieldReadFunction<any>;
|
|
4693
4503
|
txHash?: FieldPolicy<any> | FieldReadFunction<any>;
|
|
4694
4504
|
};
|
|
4505
|
+
export type ArtistKeySpecifier = ('artistType' | 'artworksCount' | 'bio' | 'collectionsCount' | 'ethMintAddresses' | 'id' | 'image' | 'lastMint' | 'name' | 'sales1d' | 'socials' | 'totalVolume' | 'uniqueCollectors' | 'volume1d' | 'websites' | ArtistKeySpecifier)[];
|
|
4506
|
+
export type ArtistFieldPolicy = {
|
|
4507
|
+
artistType?: FieldPolicy<any> | FieldReadFunction<any>;
|
|
4508
|
+
artworksCount?: FieldPolicy<any> | FieldReadFunction<any>;
|
|
4509
|
+
bio?: FieldPolicy<any> | FieldReadFunction<any>;
|
|
4510
|
+
collectionsCount?: FieldPolicy<any> | FieldReadFunction<any>;
|
|
4511
|
+
ethMintAddresses?: FieldPolicy<any> | FieldReadFunction<any>;
|
|
4512
|
+
id?: FieldPolicy<any> | FieldReadFunction<any>;
|
|
4513
|
+
image?: FieldPolicy<any> | FieldReadFunction<any>;
|
|
4514
|
+
lastMint?: FieldPolicy<any> | FieldReadFunction<any>;
|
|
4515
|
+
name?: FieldPolicy<any> | FieldReadFunction<any>;
|
|
4516
|
+
sales1d?: FieldPolicy<any> | FieldReadFunction<any>;
|
|
4517
|
+
socials?: FieldPolicy<any> | FieldReadFunction<any>;
|
|
4518
|
+
totalVolume?: FieldPolicy<any> | FieldReadFunction<any>;
|
|
4519
|
+
uniqueCollectors?: FieldPolicy<any> | FieldReadFunction<any>;
|
|
4520
|
+
volume1d?: FieldPolicy<any> | FieldReadFunction<any>;
|
|
4521
|
+
websites?: FieldPolicy<any> | FieldReadFunction<any>;
|
|
4522
|
+
};
|
|
4523
|
+
export type ArtistConnectionKeySpecifier = ('edges' | 'pageInfo' | 'totalCount' | ArtistConnectionKeySpecifier)[];
|
|
4524
|
+
export type ArtistConnectionFieldPolicy = {
|
|
4525
|
+
edges?: FieldPolicy<any> | FieldReadFunction<any>;
|
|
4526
|
+
pageInfo?: FieldPolicy<any> | FieldReadFunction<any>;
|
|
4527
|
+
totalCount?: FieldPolicy<any> | FieldReadFunction<any>;
|
|
4528
|
+
};
|
|
4529
|
+
export type ArtistEdgeKeySpecifier = ('cursor' | 'node' | ArtistEdgeKeySpecifier)[];
|
|
4530
|
+
export type ArtistEdgeFieldPolicy = {
|
|
4531
|
+
cursor?: FieldPolicy<any> | FieldReadFunction<any>;
|
|
4532
|
+
node?: FieldPolicy<any> | FieldReadFunction<any>;
|
|
4533
|
+
};
|
|
4695
4534
|
export type AssetKeySpecifier = ('accessTypeName' | 'cacheUrl' | 'contentTypeMime' | 'data' | 'id' | AssetKeySpecifier)[];
|
|
4696
4535
|
export type AssetFieldPolicy = {
|
|
4697
4536
|
accessTypeName?: FieldPolicy<any> | FieldReadFunction<any>;
|
|
@@ -4838,7 +4677,12 @@ export type BuyNowPayLaterOrderFieldPolicy = {
|
|
|
4838
4677
|
timestamp?: FieldPolicy<any> | FieldReadFunction<any>;
|
|
4839
4678
|
updatedDate?: FieldPolicy<any> | FieldReadFunction<any>;
|
|
4840
4679
|
};
|
|
4841
|
-
export type
|
|
4680
|
+
export type CancelAllOrdersCalldataKeySpecifier = ('calldata' | 'marketPlaceAddress' | CancelAllOrdersCalldataKeySpecifier)[];
|
|
4681
|
+
export type CancelAllOrdersCalldataFieldPolicy = {
|
|
4682
|
+
calldata?: FieldPolicy<any> | FieldReadFunction<any>;
|
|
4683
|
+
marketPlaceAddress?: FieldPolicy<any> | FieldReadFunction<any>;
|
|
4684
|
+
};
|
|
4685
|
+
export type CollectionKeySpecifier = ('bannerImage' | 'collectionUrl' | 'contractData' | 'description' | 'discordUrl' | 'externalUrl' | 'hasTransferValidator' | 'id' | 'image' | 'imageId' | 'maxNetPrincipalOffer' | 'name' | 'nftsCount' | 'previewNfts' | 'royalties' | 'slug' | 'statistics' | 'supply' | 'twitterUsername' | 'uniqueCollectors' | 'verified' | 'wrappedCollection' | 'wrappedCollectionId' | 'wrapperCollections' | CollectionKeySpecifier)[];
|
|
4842
4686
|
export type CollectionFieldPolicy = {
|
|
4843
4687
|
bannerImage?: FieldPolicy<any> | FieldReadFunction<any>;
|
|
4844
4688
|
collectionUrl?: FieldPolicy<any> | FieldReadFunction<any>;
|
|
@@ -4846,17 +4690,20 @@ export type CollectionFieldPolicy = {
|
|
|
4846
4690
|
description?: FieldPolicy<any> | FieldReadFunction<any>;
|
|
4847
4691
|
discordUrl?: FieldPolicy<any> | FieldReadFunction<any>;
|
|
4848
4692
|
externalUrl?: FieldPolicy<any> | FieldReadFunction<any>;
|
|
4693
|
+
hasTransferValidator?: FieldPolicy<any> | FieldReadFunction<any>;
|
|
4849
4694
|
id?: FieldPolicy<any> | FieldReadFunction<any>;
|
|
4850
4695
|
image?: FieldPolicy<any> | FieldReadFunction<any>;
|
|
4851
4696
|
imageId?: FieldPolicy<any> | FieldReadFunction<any>;
|
|
4852
4697
|
maxNetPrincipalOffer?: FieldPolicy<any> | FieldReadFunction<any>;
|
|
4853
4698
|
name?: FieldPolicy<any> | FieldReadFunction<any>;
|
|
4854
4699
|
nftsCount?: FieldPolicy<any> | FieldReadFunction<any>;
|
|
4700
|
+
previewNfts?: FieldPolicy<any> | FieldReadFunction<any>;
|
|
4855
4701
|
royalties?: FieldPolicy<any> | FieldReadFunction<any>;
|
|
4856
4702
|
slug?: FieldPolicy<any> | FieldReadFunction<any>;
|
|
4857
4703
|
statistics?: FieldPolicy<any> | FieldReadFunction<any>;
|
|
4858
4704
|
supply?: FieldPolicy<any> | FieldReadFunction<any>;
|
|
4859
4705
|
twitterUsername?: FieldPolicy<any> | FieldReadFunction<any>;
|
|
4706
|
+
uniqueCollectors?: FieldPolicy<any> | FieldReadFunction<any>;
|
|
4860
4707
|
verified?: FieldPolicy<any> | FieldReadFunction<any>;
|
|
4861
4708
|
wrappedCollection?: FieldPolicy<any> | FieldReadFunction<any>;
|
|
4862
4709
|
wrappedCollectionId?: FieldPolicy<any> | FieldReadFunction<any>;
|
|
@@ -5128,33 +4975,6 @@ export type DelegationEdgeFieldPolicy = {
|
|
|
5128
4975
|
cursor?: FieldPolicy<any> | FieldReadFunction<any>;
|
|
5129
4976
|
node?: FieldPolicy<any> | FieldReadFunction<any>;
|
|
5130
4977
|
};
|
|
5131
|
-
export type ERC4626DepositKeySpecifier = ('assets' | 'caller' | 'id' | 'indexInBlock' | 'owner' | 'pool' | 'poolAddress' | 'shares' | 'timestamp' | 'txHash' | ERC4626DepositKeySpecifier)[];
|
|
5132
|
-
export type ERC4626DepositFieldPolicy = {
|
|
5133
|
-
assets?: FieldPolicy<any> | FieldReadFunction<any>;
|
|
5134
|
-
caller?: FieldPolicy<any> | FieldReadFunction<any>;
|
|
5135
|
-
id?: FieldPolicy<any> | FieldReadFunction<any>;
|
|
5136
|
-
indexInBlock?: FieldPolicy<any> | FieldReadFunction<any>;
|
|
5137
|
-
owner?: FieldPolicy<any> | FieldReadFunction<any>;
|
|
5138
|
-
pool?: FieldPolicy<any> | FieldReadFunction<any>;
|
|
5139
|
-
poolAddress?: FieldPolicy<any> | FieldReadFunction<any>;
|
|
5140
|
-
shares?: FieldPolicy<any> | FieldReadFunction<any>;
|
|
5141
|
-
timestamp?: FieldPolicy<any> | FieldReadFunction<any>;
|
|
5142
|
-
txHash?: FieldPolicy<any> | FieldReadFunction<any>;
|
|
5143
|
-
};
|
|
5144
|
-
export type ERC4626WithdrawKeySpecifier = ('assets' | 'caller' | 'id' | 'indexInBlock' | 'owner' | 'pool' | 'poolAddress' | 'receiver' | 'shares' | 'timestamp' | 'txHash' | ERC4626WithdrawKeySpecifier)[];
|
|
5145
|
-
export type ERC4626WithdrawFieldPolicy = {
|
|
5146
|
-
assets?: FieldPolicy<any> | FieldReadFunction<any>;
|
|
5147
|
-
caller?: FieldPolicy<any> | FieldReadFunction<any>;
|
|
5148
|
-
id?: FieldPolicy<any> | FieldReadFunction<any>;
|
|
5149
|
-
indexInBlock?: FieldPolicy<any> | FieldReadFunction<any>;
|
|
5150
|
-
owner?: FieldPolicy<any> | FieldReadFunction<any>;
|
|
5151
|
-
pool?: FieldPolicy<any> | FieldReadFunction<any>;
|
|
5152
|
-
poolAddress?: FieldPolicy<any> | FieldReadFunction<any>;
|
|
5153
|
-
receiver?: FieldPolicy<any> | FieldReadFunction<any>;
|
|
5154
|
-
shares?: FieldPolicy<any> | FieldReadFunction<any>;
|
|
5155
|
-
timestamp?: FieldPolicy<any> | FieldReadFunction<any>;
|
|
5156
|
-
txHash?: FieldPolicy<any> | FieldReadFunction<any>;
|
|
5157
|
-
};
|
|
5158
4978
|
export type EventKeySpecifier = ('id' | 'timestamp' | EventKeySpecifier)[];
|
|
5159
4979
|
export type EventFieldPolicy = {
|
|
5160
4980
|
id?: FieldPolicy<any> | FieldReadFunction<any>;
|
|
@@ -5633,7 +5453,7 @@ export type MultiSourceLoanHistoryFieldPolicy = {
|
|
|
5633
5453
|
sources?: FieldPolicy<any> | FieldReadFunction<any>;
|
|
5634
5454
|
startTime?: FieldPolicy<any> | FieldReadFunction<any>;
|
|
5635
5455
|
};
|
|
5636
|
-
export type MutationKeySpecifier = ('addListingsOfNftsFromUser' | 'addOrUpdateListing' | 'addOrUpdateRenegotiationRequest' | 'addOrUpdateTopUpRequest' | 'followCollection' | 'followCollections' | 'generateCollectionOfferToBeSigned' | 'generateRenegotiationOfferToBeSigned' | 'generateSingleNftOfferToBeSigned' | 'hideAllOffers' | 'hideOffer' | 'hideOrder' | 'hideRenegotiation' | 'markNotificationIdsAsRead' | 'markNotificationsAsRead' | 'publishBuyNowPayLaterOrder' | 'publishDealOrder' | 'publishOrderForCollection' | 'publishOrderForNft' | 'publishSellAndRepayOrder' | 'removeListing' | 'removeListingsOfNftsFromUser' | 'removeRenegotiationRequest' | 'removeTopUpRequest' | 'saveRenegotiationSignedOffer' | 'saveSignedCollectionOffer' | 'saveSignedSingleNftOffer' | 'setReferral' | 'showOffer' | 'showOrder' | 'showRenegotiation' | 'unfollowCollection' | MutationKeySpecifier)[];
|
|
5456
|
+
export type MutationKeySpecifier = ('addListingsOfNftsFromUser' | 'addOrUpdateListing' | 'addOrUpdateRenegotiationRequest' | 'addOrUpdateTopUpRequest' | 'followCollection' | 'followCollections' | 'generateCollectionOfferToBeSigned' | 'generateRenegotiationOfferToBeSigned' | 'generateSingleNftOfferToBeSigned' | 'hideAllOffers' | 'hideOffer' | 'hideOrder' | 'hideRenegotiation' | 'markNotificationIdsAsRead' | 'markNotificationsAsRead' | 'publishBuyNowPayLaterOrder' | 'publishDealOrder' | 'publishOrderForCollection' | 'publishOrderForNft' | 'publishSellAndRepayOrder' | 'refreshNftMetadata' | 'removeListing' | 'removeListingsOfNftsFromUser' | 'removeRenegotiationRequest' | 'removeTopUpRequest' | 'saveRenegotiationSignedOffer' | 'saveSignedCollectionOffer' | 'saveSignedSingleNftOffer' | 'setReferral' | 'showOffer' | 'showOrder' | 'showRenegotiation' | 'unfollowCollection' | MutationKeySpecifier)[];
|
|
5637
5457
|
export type MutationFieldPolicy = {
|
|
5638
5458
|
addListingsOfNftsFromUser?: FieldPolicy<any> | FieldReadFunction<any>;
|
|
5639
5459
|
addOrUpdateListing?: FieldPolicy<any> | FieldReadFunction<any>;
|
|
@@ -5655,6 +5475,7 @@ export type MutationFieldPolicy = {
|
|
|
5655
5475
|
publishOrderForCollection?: FieldPolicy<any> | FieldReadFunction<any>;
|
|
5656
5476
|
publishOrderForNft?: FieldPolicy<any> | FieldReadFunction<any>;
|
|
5657
5477
|
publishSellAndRepayOrder?: FieldPolicy<any> | FieldReadFunction<any>;
|
|
5478
|
+
refreshNftMetadata?: FieldPolicy<any> | FieldReadFunction<any>;
|
|
5658
5479
|
removeListing?: FieldPolicy<any> | FieldReadFunction<any>;
|
|
5659
5480
|
removeListingsOfNftsFromUser?: FieldPolicy<any> | FieldReadFunction<any>;
|
|
5660
5481
|
removeRenegotiationRequest?: FieldPolicy<any> | FieldReadFunction<any>;
|
|
@@ -5979,130 +5800,11 @@ export type PointActivityEdgeFieldPolicy = {
|
|
|
5979
5800
|
cursor?: FieldPolicy<any> | FieldReadFunction<any>;
|
|
5980
5801
|
node?: FieldPolicy<any> | FieldReadFunction<any>;
|
|
5981
5802
|
};
|
|
5982
|
-
export type
|
|
5983
|
-
export type PoolFieldPolicy = {
|
|
5984
|
-
address?: FieldPolicy<any> | FieldReadFunction<any>;
|
|
5985
|
-
asset?: FieldPolicy<any> | FieldReadFunction<any>;
|
|
5986
|
-
baseRateAllocator?: FieldPolicy<any> | FieldReadFunction<any>;
|
|
5987
|
-
collectionFactors?: FieldPolicy<any> | FieldReadFunction<any>;
|
|
5988
|
-
currency?: FieldPolicy<any> | FieldReadFunction<any>;
|
|
5989
|
-
description?: FieldPolicy<any> | FieldReadFunction<any>;
|
|
5990
|
-
id?: FieldPolicy<any> | FieldReadFunction<any>;
|
|
5991
|
-
poolActivities?: FieldPolicy<any> | FieldReadFunction<any>;
|
|
5992
|
-
statistics?: FieldPolicy<any> | FieldReadFunction<any>;
|
|
5993
|
-
};
|
|
5994
|
-
export type PoolActivityKeySpecifier = ('id' | 'indexInBlock' | 'pool' | 'poolAddress' | 'timestamp' | 'txHash' | PoolActivityKeySpecifier)[];
|
|
5995
|
-
export type PoolActivityFieldPolicy = {
|
|
5996
|
-
id?: FieldPolicy<any> | FieldReadFunction<any>;
|
|
5997
|
-
indexInBlock?: FieldPolicy<any> | FieldReadFunction<any>;
|
|
5998
|
-
pool?: FieldPolicy<any> | FieldReadFunction<any>;
|
|
5999
|
-
poolAddress?: FieldPolicy<any> | FieldReadFunction<any>;
|
|
6000
|
-
timestamp?: FieldPolicy<any> | FieldReadFunction<any>;
|
|
6001
|
-
txHash?: FieldPolicy<any> | FieldReadFunction<any>;
|
|
6002
|
-
};
|
|
6003
|
-
export type PoolActivityConnectionKeySpecifier = ('edges' | 'pageInfo' | 'totalCount' | PoolActivityConnectionKeySpecifier)[];
|
|
6004
|
-
export type PoolActivityConnectionFieldPolicy = {
|
|
6005
|
-
edges?: FieldPolicy<any> | FieldReadFunction<any>;
|
|
6006
|
-
pageInfo?: FieldPolicy<any> | FieldReadFunction<any>;
|
|
6007
|
-
totalCount?: FieldPolicy<any> | FieldReadFunction<any>;
|
|
6008
|
-
};
|
|
6009
|
-
export type PoolActivityEdgeKeySpecifier = ('cursor' | 'node' | PoolActivityEdgeKeySpecifier)[];
|
|
6010
|
-
export type PoolActivityEdgeFieldPolicy = {
|
|
6011
|
-
cursor?: FieldPolicy<any> | FieldReadFunction<any>;
|
|
6012
|
-
node?: FieldPolicy<any> | FieldReadFunction<any>;
|
|
6013
|
-
};
|
|
6014
|
-
export type PoolAprFactorSetKeySpecifier = ('id' | 'indexInBlock' | 'pool' | 'poolAddress' | 'timestamp' | 'txHash' | PoolAprFactorSetKeySpecifier)[];
|
|
6015
|
-
export type PoolAprFactorSetFieldPolicy = {
|
|
6016
|
-
id?: FieldPolicy<any> | FieldReadFunction<any>;
|
|
6017
|
-
indexInBlock?: FieldPolicy<any> | FieldReadFunction<any>;
|
|
6018
|
-
pool?: FieldPolicy<any> | FieldReadFunction<any>;
|
|
6019
|
-
poolAddress?: FieldPolicy<any> | FieldReadFunction<any>;
|
|
6020
|
-
timestamp?: FieldPolicy<any> | FieldReadFunction<any>;
|
|
6021
|
-
txHash?: FieldPolicy<any> | FieldReadFunction<any>;
|
|
6022
|
-
};
|
|
6023
|
-
export type PoolAprPremiumSetKeySpecifier = ('aprPremium' | 'id' | 'indexInBlock' | 'pool' | 'poolAddress' | 'timestamp' | 'txHash' | PoolAprPremiumSetKeySpecifier)[];
|
|
6024
|
-
export type PoolAprPremiumSetFieldPolicy = {
|
|
6025
|
-
aprPremium?: FieldPolicy<any> | FieldReadFunction<any>;
|
|
6026
|
-
id?: FieldPolicy<any> | FieldReadFunction<any>;
|
|
6027
|
-
indexInBlock?: FieldPolicy<any> | FieldReadFunction<any>;
|
|
6028
|
-
pool?: FieldPolicy<any> | FieldReadFunction<any>;
|
|
6029
|
-
poolAddress?: FieldPolicy<any> | FieldReadFunction<any>;
|
|
6030
|
-
timestamp?: FieldPolicy<any> | FieldReadFunction<any>;
|
|
6031
|
-
txHash?: FieldPolicy<any> | FieldReadFunction<any>;
|
|
6032
|
-
};
|
|
6033
|
-
export type PoolBaseInterestAllocatorSetKeySpecifier = ('id' | 'indexInBlock' | 'pool' | 'poolAddress' | 'timestamp' | 'txHash' | PoolBaseInterestAllocatorSetKeySpecifier)[];
|
|
6034
|
-
export type PoolBaseInterestAllocatorSetFieldPolicy = {
|
|
6035
|
-
id?: FieldPolicy<any> | FieldReadFunction<any>;
|
|
6036
|
-
indexInBlock?: FieldPolicy<any> | FieldReadFunction<any>;
|
|
6037
|
-
pool?: FieldPolicy<any> | FieldReadFunction<any>;
|
|
6038
|
-
poolAddress?: FieldPolicy<any> | FieldReadFunction<any>;
|
|
6039
|
-
timestamp?: FieldPolicy<any> | FieldReadFunction<any>;
|
|
6040
|
-
txHash?: FieldPolicy<any> | FieldReadFunction<any>;
|
|
6041
|
-
};
|
|
6042
|
-
export type PoolBaseRateAllocatorKeySpecifier = ('address' | 'currency' | 'description' | 'id' | 'stakeCurrency' | PoolBaseRateAllocatorKeySpecifier)[];
|
|
6043
|
-
export type PoolBaseRateAllocatorFieldPolicy = {
|
|
6044
|
-
address?: FieldPolicy<any> | FieldReadFunction<any>;
|
|
6045
|
-
currency?: FieldPolicy<any> | FieldReadFunction<any>;
|
|
6046
|
-
description?: FieldPolicy<any> | FieldReadFunction<any>;
|
|
6047
|
-
id?: FieldPolicy<any> | FieldReadFunction<any>;
|
|
6048
|
-
stakeCurrency?: FieldPolicy<any> | FieldReadFunction<any>;
|
|
6049
|
-
};
|
|
6050
|
-
export type PoolCollectionFactorsKeySpecifier = ('collection' | 'collectionId' | 'duration' | 'id' | 'offerId' | 'pool' | 'poolAddress' | 'principalCurrentFactor' | 'principalHistoricalFactor' | PoolCollectionFactorsKeySpecifier)[];
|
|
6051
|
-
export type PoolCollectionFactorsFieldPolicy = {
|
|
6052
|
-
collection?: FieldPolicy<any> | FieldReadFunction<any>;
|
|
6053
|
-
collectionId?: FieldPolicy<any> | FieldReadFunction<any>;
|
|
6054
|
-
duration?: FieldPolicy<any> | FieldReadFunction<any>;
|
|
6055
|
-
id?: FieldPolicy<any> | FieldReadFunction<any>;
|
|
6056
|
-
offerId?: FieldPolicy<any> | FieldReadFunction<any>;
|
|
6057
|
-
pool?: FieldPolicy<any> | FieldReadFunction<any>;
|
|
6058
|
-
poolAddress?: FieldPolicy<any> | FieldReadFunction<any>;
|
|
6059
|
-
principalCurrentFactor?: FieldPolicy<any> | FieldReadFunction<any>;
|
|
6060
|
-
principalHistoricalFactor?: FieldPolicy<any> | FieldReadFunction<any>;
|
|
6061
|
-
};
|
|
6062
|
-
export type PoolCollectionFactorsSetKeySpecifier = ('id' | 'indexInBlock' | 'pool' | 'poolAddress' | 'timestamp' | 'txHash' | PoolCollectionFactorsSetKeySpecifier)[];
|
|
6063
|
-
export type PoolCollectionFactorsSetFieldPolicy = {
|
|
6064
|
-
id?: FieldPolicy<any> | FieldReadFunction<any>;
|
|
6065
|
-
indexInBlock?: FieldPolicy<any> | FieldReadFunction<any>;
|
|
6066
|
-
pool?: FieldPolicy<any> | FieldReadFunction<any>;
|
|
6067
|
-
poolAddress?: FieldPolicy<any> | FieldReadFunction<any>;
|
|
6068
|
-
timestamp?: FieldPolicy<any> | FieldReadFunction<any>;
|
|
6069
|
-
txHash?: FieldPolicy<any> | FieldReadFunction<any>;
|
|
6070
|
-
};
|
|
6071
|
-
export type PoolConnectionKeySpecifier = ('edges' | 'pageInfo' | 'totalCount' | PoolConnectionKeySpecifier)[];
|
|
6072
|
-
export type PoolConnectionFieldPolicy = {
|
|
6073
|
-
edges?: FieldPolicy<any> | FieldReadFunction<any>;
|
|
6074
|
-
pageInfo?: FieldPolicy<any> | FieldReadFunction<any>;
|
|
6075
|
-
totalCount?: FieldPolicy<any> | FieldReadFunction<any>;
|
|
6076
|
-
};
|
|
6077
|
-
export type PoolEdgeKeySpecifier = ('cursor' | 'node' | PoolEdgeKeySpecifier)[];
|
|
6078
|
-
export type PoolEdgeFieldPolicy = {
|
|
6079
|
-
cursor?: FieldPolicy<any> | FieldReadFunction<any>;
|
|
6080
|
-
node?: FieldPolicy<any> | FieldReadFunction<any>;
|
|
6081
|
-
};
|
|
6082
|
-
export type PoolReallocatedKeySpecifier = ('id' | 'indexInBlock' | 'pool' | 'poolAddress' | 'timestamp' | 'txHash' | PoolReallocatedKeySpecifier)[];
|
|
6083
|
-
export type PoolReallocatedFieldPolicy = {
|
|
6084
|
-
id?: FieldPolicy<any> | FieldReadFunction<any>;
|
|
6085
|
-
indexInBlock?: FieldPolicy<any> | FieldReadFunction<any>;
|
|
6086
|
-
pool?: FieldPolicy<any> | FieldReadFunction<any>;
|
|
6087
|
-
poolAddress?: FieldPolicy<any> | FieldReadFunction<any>;
|
|
6088
|
-
timestamp?: FieldPolicy<any> | FieldReadFunction<any>;
|
|
6089
|
-
txHash?: FieldPolicy<any> | FieldReadFunction<any>;
|
|
6090
|
-
};
|
|
6091
|
-
export type PoolStatisticsKeySpecifier = ('activeLoansCount' | 'activeOffersCount' | 'balanceAllocatedBaseRate' | 'liquid' | 'outstandingApr' | 'outstandingPrincipal' | 'realizedApr' | 'totalDeposits' | 'totalLoanVolume' | PoolStatisticsKeySpecifier)[];
|
|
6092
|
-
export type PoolStatisticsFieldPolicy = {
|
|
6093
|
-
activeLoansCount?: FieldPolicy<any> | FieldReadFunction<any>;
|
|
6094
|
-
activeOffersCount?: FieldPolicy<any> | FieldReadFunction<any>;
|
|
6095
|
-
balanceAllocatedBaseRate?: FieldPolicy<any> | FieldReadFunction<any>;
|
|
6096
|
-
liquid?: FieldPolicy<any> | FieldReadFunction<any>;
|
|
6097
|
-
outstandingApr?: FieldPolicy<any> | FieldReadFunction<any>;
|
|
6098
|
-
outstandingPrincipal?: FieldPolicy<any> | FieldReadFunction<any>;
|
|
6099
|
-
realizedApr?: FieldPolicy<any> | FieldReadFunction<any>;
|
|
6100
|
-
totalDeposits?: FieldPolicy<any> | FieldReadFunction<any>;
|
|
6101
|
-
totalLoanVolume?: FieldPolicy<any> | FieldReadFunction<any>;
|
|
6102
|
-
};
|
|
6103
|
-
export type QueryKeySpecifier = ('getBorrowingPower' | 'getCollectionActivitiesCount' | 'getCollectionBySlug' | 'getCollectionLoansData' | 'getCollectionOfferSteps' | 'getCollectionsByContractAddress' | 'getCurrency' | 'getFeedId' | 'getListingById' | 'getLoanActivitiesStatisticsByMonth' | 'getLoanById' | 'getNftByContractAddressAndTokenId' | 'getNftBySlugAndTokenId' | 'getOrderCancelCalldata' | 'getOrderSaleCalldata' | 'getOutstandingDebt' | 'getOutstandingLoanStatistics' | 'getPointsFromReferrals' | 'getPoolByShareSymbol' | 'getReferredWallets' | 'getSourcesStatistics' | 'getSourcesStatisticsByCollection' | 'getUserPointActivities' | 'getUserPoints' | 'globalSearch' | 'listAuctions' | 'listBids' | 'listCollectionFollows' | 'listCollectionTraitTypes' | 'listCollectionTraitValues' | 'listCollections' | 'listCollectionsWithListings' | 'listCollectionsWithLoans' | 'listCurrencies' | 'listDeals' | 'listEvents' | 'listListings' | 'listListingsForSale' | 'listLoanActivities' | 'listLoanEvents' | 'listLoans' | 'listNames' | 'listNftDelegations' | 'listNftOffersAndRenegotiations' | 'listNftStrategyDeployments' | 'listNfts' | 'listNftsFromCollections' | 'listNftsFromUser' | 'listNotifications' | 'listOffers' | 'listOrders' | 'listOrdersV2' | 'listPlatformFees' | 'listPoolActivities' | 'listPools' | 'listRenegotiations' | 'listSales' | 'listSources' | 'listWithdrawalPositions' | 'listWithdrawalQueues' | 'me' | QueryKeySpecifier)[];
|
|
5803
|
+
export type QueryKeySpecifier = ('getArtist' | 'getBorrowingPower' | 'getCancelAllNftOrdersCalldata' | 'getCollectionActivitiesCount' | 'getCollectionBySlug' | 'getCollectionLoansData' | 'getCollectionOfferSteps' | 'getCollectionsByContractAddress' | 'getCurrency' | 'getFeedId' | 'getListingById' | 'getLoanActivitiesStatisticsByMonth' | 'getLoanById' | 'getNftByContractAddressAndTokenId' | 'getNftBySlugAndTokenId' | 'getOrderCancelCalldata' | 'getOrderSaleCalldata' | 'getOutstandingDebt' | 'getOutstandingLoanStatistics' | 'getPointsFromReferrals' | 'getReferredWallets' | 'getSourcesStatistics' | 'getSourcesStatisticsByCollection' | 'getUserPointActivities' | 'getUserPoints' | 'globalSearch' | 'listArtists' | 'listAuctions' | 'listBids' | 'listCollectionFollows' | 'listCollectionTraitTypes' | 'listCollectionTraitValues' | 'listCollections' | 'listCollectionsWithListings' | 'listCollectionsWithLoans' | 'listCurrencies' | 'listDeals' | 'listEvents' | 'listListings' | 'listListingsForSale' | 'listLoanActivities' | 'listLoanEvents' | 'listLoans' | 'listNames' | 'listNftDelegations' | 'listNftOffersAndRenegotiations' | 'listNftStrategyDeployments' | 'listNfts' | 'listNftsFromCollections' | 'listNftsFromUser' | 'listNotifications' | 'listOffers' | 'listOrders' | 'listOrdersV2' | 'listPlatformFees' | 'listRenegotiations' | 'listSales' | 'listSources' | 'me' | QueryKeySpecifier)[];
|
|
6104
5804
|
export type QueryFieldPolicy = {
|
|
5805
|
+
getArtist?: FieldPolicy<any> | FieldReadFunction<any>;
|
|
6105
5806
|
getBorrowingPower?: FieldPolicy<any> | FieldReadFunction<any>;
|
|
5807
|
+
getCancelAllNftOrdersCalldata?: FieldPolicy<any> | FieldReadFunction<any>;
|
|
6106
5808
|
getCollectionActivitiesCount?: FieldPolicy<any> | FieldReadFunction<any>;
|
|
6107
5809
|
getCollectionBySlug?: FieldPolicy<any> | FieldReadFunction<any>;
|
|
6108
5810
|
getCollectionLoansData?: FieldPolicy<any> | FieldReadFunction<any>;
|
|
@@ -6120,13 +5822,13 @@ export type QueryFieldPolicy = {
|
|
|
6120
5822
|
getOutstandingDebt?: FieldPolicy<any> | FieldReadFunction<any>;
|
|
6121
5823
|
getOutstandingLoanStatistics?: FieldPolicy<any> | FieldReadFunction<any>;
|
|
6122
5824
|
getPointsFromReferrals?: FieldPolicy<any> | FieldReadFunction<any>;
|
|
6123
|
-
getPoolByShareSymbol?: FieldPolicy<any> | FieldReadFunction<any>;
|
|
6124
5825
|
getReferredWallets?: FieldPolicy<any> | FieldReadFunction<any>;
|
|
6125
5826
|
getSourcesStatistics?: FieldPolicy<any> | FieldReadFunction<any>;
|
|
6126
5827
|
getSourcesStatisticsByCollection?: FieldPolicy<any> | FieldReadFunction<any>;
|
|
6127
5828
|
getUserPointActivities?: FieldPolicy<any> | FieldReadFunction<any>;
|
|
6128
5829
|
getUserPoints?: FieldPolicy<any> | FieldReadFunction<any>;
|
|
6129
5830
|
globalSearch?: FieldPolicy<any> | FieldReadFunction<any>;
|
|
5831
|
+
listArtists?: FieldPolicy<any> | FieldReadFunction<any>;
|
|
6130
5832
|
listAuctions?: FieldPolicy<any> | FieldReadFunction<any>;
|
|
6131
5833
|
listBids?: FieldPolicy<any> | FieldReadFunction<any>;
|
|
6132
5834
|
listCollectionFollows?: FieldPolicy<any> | FieldReadFunction<any>;
|
|
@@ -6155,26 +5857,11 @@ export type QueryFieldPolicy = {
|
|
|
6155
5857
|
listOrders?: FieldPolicy<any> | FieldReadFunction<any>;
|
|
6156
5858
|
listOrdersV2?: FieldPolicy<any> | FieldReadFunction<any>;
|
|
6157
5859
|
listPlatformFees?: FieldPolicy<any> | FieldReadFunction<any>;
|
|
6158
|
-
listPoolActivities?: FieldPolicy<any> | FieldReadFunction<any>;
|
|
6159
|
-
listPools?: FieldPolicy<any> | FieldReadFunction<any>;
|
|
6160
5860
|
listRenegotiations?: FieldPolicy<any> | FieldReadFunction<any>;
|
|
6161
5861
|
listSales?: FieldPolicy<any> | FieldReadFunction<any>;
|
|
6162
5862
|
listSources?: FieldPolicy<any> | FieldReadFunction<any>;
|
|
6163
|
-
listWithdrawalPositions?: FieldPolicy<any> | FieldReadFunction<any>;
|
|
6164
|
-
listWithdrawalQueues?: FieldPolicy<any> | FieldReadFunction<any>;
|
|
6165
5863
|
me?: FieldPolicy<any> | FieldReadFunction<any>;
|
|
6166
5864
|
};
|
|
6167
|
-
export type QueueDeployedKeySpecifier = ('id' | 'index' | 'indexInBlock' | 'pool' | 'poolAddress' | 'queueAddress' | 'timestamp' | 'txHash' | QueueDeployedKeySpecifier)[];
|
|
6168
|
-
export type QueueDeployedFieldPolicy = {
|
|
6169
|
-
id?: FieldPolicy<any> | FieldReadFunction<any>;
|
|
6170
|
-
index?: FieldPolicy<any> | FieldReadFunction<any>;
|
|
6171
|
-
indexInBlock?: FieldPolicy<any> | FieldReadFunction<any>;
|
|
6172
|
-
pool?: FieldPolicy<any> | FieldReadFunction<any>;
|
|
6173
|
-
poolAddress?: FieldPolicy<any> | FieldReadFunction<any>;
|
|
6174
|
-
queueAddress?: FieldPolicy<any> | FieldReadFunction<any>;
|
|
6175
|
-
timestamp?: FieldPolicy<any> | FieldReadFunction<any>;
|
|
6176
|
-
txHash?: FieldPolicy<any> | FieldReadFunction<any>;
|
|
6177
|
-
};
|
|
6178
5865
|
export type RenegotiationKeySpecifier = ('aprBps' | 'availablePrincipalAmount' | 'createdDate' | 'duration' | 'expirationTime' | 'fallbackOfferId' | 'feeAmount' | 'hidden' | 'id' | 'isAddNewTranche' | 'lenderAddress' | 'loan' | 'loanAddress' | 'loanId' | 'loanReferenceId' | 'nft' | 'offerHash' | 'principalAmount' | 'renegotiationId' | 'repayment' | 'requiresLiquidation' | 'signature' | 'signerAddress' | 'status' | 'strictImprovement' | 'timestamp' | RenegotiationKeySpecifier)[];
|
|
6179
5866
|
export type RenegotiationFieldPolicy = {
|
|
6180
5867
|
aprBps?: FieldPolicy<any> | FieldReadFunction<any>;
|
|
@@ -6652,94 +6339,6 @@ export type UserStatisticsFieldPolicy = {
|
|
|
6652
6339
|
wavgRepaidApr?: FieldPolicy<any> | FieldReadFunction<any>;
|
|
6653
6340
|
wavgRepaidAprByCollection?: FieldPolicy<any> | FieldReadFunction<any>;
|
|
6654
6341
|
};
|
|
6655
|
-
export type WithdrawalPositionKeySpecifier = ('available' | 'id' | 'nft' | 'nftId' | 'pending' | 'requested' | 'shares' | 'unlockTime' | 'withdrawalQueue' | 'withdrawalQueueId' | 'withdrawn' | WithdrawalPositionKeySpecifier)[];
|
|
6656
|
-
export type WithdrawalPositionFieldPolicy = {
|
|
6657
|
-
available?: FieldPolicy<any> | FieldReadFunction<any>;
|
|
6658
|
-
id?: FieldPolicy<any> | FieldReadFunction<any>;
|
|
6659
|
-
nft?: FieldPolicy<any> | FieldReadFunction<any>;
|
|
6660
|
-
nftId?: FieldPolicy<any> | FieldReadFunction<any>;
|
|
6661
|
-
pending?: FieldPolicy<any> | FieldReadFunction<any>;
|
|
6662
|
-
requested?: FieldPolicy<any> | FieldReadFunction<any>;
|
|
6663
|
-
shares?: FieldPolicy<any> | FieldReadFunction<any>;
|
|
6664
|
-
unlockTime?: FieldPolicy<any> | FieldReadFunction<any>;
|
|
6665
|
-
withdrawalQueue?: FieldPolicy<any> | FieldReadFunction<any>;
|
|
6666
|
-
withdrawalQueueId?: FieldPolicy<any> | FieldReadFunction<any>;
|
|
6667
|
-
withdrawn?: FieldPolicy<any> | FieldReadFunction<any>;
|
|
6668
|
-
};
|
|
6669
|
-
export type WithdrawalPositionConnectionKeySpecifier = ('edges' | 'pageInfo' | 'totalCount' | WithdrawalPositionConnectionKeySpecifier)[];
|
|
6670
|
-
export type WithdrawalPositionConnectionFieldPolicy = {
|
|
6671
|
-
edges?: FieldPolicy<any> | FieldReadFunction<any>;
|
|
6672
|
-
pageInfo?: FieldPolicy<any> | FieldReadFunction<any>;
|
|
6673
|
-
totalCount?: FieldPolicy<any> | FieldReadFunction<any>;
|
|
6674
|
-
};
|
|
6675
|
-
export type WithdrawalPositionEdgeKeySpecifier = ('cursor' | 'node' | WithdrawalPositionEdgeKeySpecifier)[];
|
|
6676
|
-
export type WithdrawalPositionEdgeFieldPolicy = {
|
|
6677
|
-
cursor?: FieldPolicy<any> | FieldReadFunction<any>;
|
|
6678
|
-
node?: FieldPolicy<any> | FieldReadFunction<any>;
|
|
6679
|
-
};
|
|
6680
|
-
export type WithdrawalPositionLockedKeySpecifier = ('contract' | 'id' | 'indexInBlock' | 'pool' | 'poolAddress' | 'timestamp' | 'txHash' | 'unlockTime' | WithdrawalPositionLockedKeySpecifier)[];
|
|
6681
|
-
export type WithdrawalPositionLockedFieldPolicy = {
|
|
6682
|
-
contract?: FieldPolicy<any> | FieldReadFunction<any>;
|
|
6683
|
-
id?: FieldPolicy<any> | FieldReadFunction<any>;
|
|
6684
|
-
indexInBlock?: FieldPolicy<any> | FieldReadFunction<any>;
|
|
6685
|
-
pool?: FieldPolicy<any> | FieldReadFunction<any>;
|
|
6686
|
-
poolAddress?: FieldPolicy<any> | FieldReadFunction<any>;
|
|
6687
|
-
timestamp?: FieldPolicy<any> | FieldReadFunction<any>;
|
|
6688
|
-
txHash?: FieldPolicy<any> | FieldReadFunction<any>;
|
|
6689
|
-
unlockTime?: FieldPolicy<any> | FieldReadFunction<any>;
|
|
6690
|
-
};
|
|
6691
|
-
export type WithdrawalPositionMintedKeySpecifier = ('contract' | 'id' | 'indexInBlock' | 'pool' | 'poolAddress' | 'receiver' | 'shares' | 'timestamp' | 'txHash' | WithdrawalPositionMintedKeySpecifier)[];
|
|
6692
|
-
export type WithdrawalPositionMintedFieldPolicy = {
|
|
6693
|
-
contract?: FieldPolicy<any> | FieldReadFunction<any>;
|
|
6694
|
-
id?: FieldPolicy<any> | FieldReadFunction<any>;
|
|
6695
|
-
indexInBlock?: FieldPolicy<any> | FieldReadFunction<any>;
|
|
6696
|
-
pool?: FieldPolicy<any> | FieldReadFunction<any>;
|
|
6697
|
-
poolAddress?: FieldPolicy<any> | FieldReadFunction<any>;
|
|
6698
|
-
receiver?: FieldPolicy<any> | FieldReadFunction<any>;
|
|
6699
|
-
shares?: FieldPolicy<any> | FieldReadFunction<any>;
|
|
6700
|
-
timestamp?: FieldPolicy<any> | FieldReadFunction<any>;
|
|
6701
|
-
txHash?: FieldPolicy<any> | FieldReadFunction<any>;
|
|
6702
|
-
};
|
|
6703
|
-
export type WithdrawalQueueKeySpecifier = ('balance' | 'collection' | 'collectionId' | 'id' | 'index' | 'pending' | 'pool' | 'poolAddress' | 'requested' | 'requesters' | 'startTime' | 'status' | 'totalShares' | 'totalWithdrawn' | WithdrawalQueueKeySpecifier)[];
|
|
6704
|
-
export type WithdrawalQueueFieldPolicy = {
|
|
6705
|
-
balance?: FieldPolicy<any> | FieldReadFunction<any>;
|
|
6706
|
-
collection?: FieldPolicy<any> | FieldReadFunction<any>;
|
|
6707
|
-
collectionId?: FieldPolicy<any> | FieldReadFunction<any>;
|
|
6708
|
-
id?: FieldPolicy<any> | FieldReadFunction<any>;
|
|
6709
|
-
index?: FieldPolicy<any> | FieldReadFunction<any>;
|
|
6710
|
-
pending?: FieldPolicy<any> | FieldReadFunction<any>;
|
|
6711
|
-
pool?: FieldPolicy<any> | FieldReadFunction<any>;
|
|
6712
|
-
poolAddress?: FieldPolicy<any> | FieldReadFunction<any>;
|
|
6713
|
-
requested?: FieldPolicy<any> | FieldReadFunction<any>;
|
|
6714
|
-
requesters?: FieldPolicy<any> | FieldReadFunction<any>;
|
|
6715
|
-
startTime?: FieldPolicy<any> | FieldReadFunction<any>;
|
|
6716
|
-
status?: FieldPolicy<any> | FieldReadFunction<any>;
|
|
6717
|
-
totalShares?: FieldPolicy<any> | FieldReadFunction<any>;
|
|
6718
|
-
totalWithdrawn?: FieldPolicy<any> | FieldReadFunction<any>;
|
|
6719
|
-
};
|
|
6720
|
-
export type WithdrawalQueueConnectionKeySpecifier = ('edges' | 'pageInfo' | 'totalCount' | WithdrawalQueueConnectionKeySpecifier)[];
|
|
6721
|
-
export type WithdrawalQueueConnectionFieldPolicy = {
|
|
6722
|
-
edges?: FieldPolicy<any> | FieldReadFunction<any>;
|
|
6723
|
-
pageInfo?: FieldPolicy<any> | FieldReadFunction<any>;
|
|
6724
|
-
totalCount?: FieldPolicy<any> | FieldReadFunction<any>;
|
|
6725
|
-
};
|
|
6726
|
-
export type WithdrawalQueueEdgeKeySpecifier = ('cursor' | 'node' | WithdrawalQueueEdgeKeySpecifier)[];
|
|
6727
|
-
export type WithdrawalQueueEdgeFieldPolicy = {
|
|
6728
|
-
cursor?: FieldPolicy<any> | FieldReadFunction<any>;
|
|
6729
|
-
node?: FieldPolicy<any> | FieldReadFunction<any>;
|
|
6730
|
-
};
|
|
6731
|
-
export type WithdrawnFromQueueKeySpecifier = ('available' | 'contract' | 'id' | 'indexInBlock' | 'pool' | 'poolAddress' | 'receiver' | 'timestamp' | 'txHash' | WithdrawnFromQueueKeySpecifier)[];
|
|
6732
|
-
export type WithdrawnFromQueueFieldPolicy = {
|
|
6733
|
-
available?: FieldPolicy<any> | FieldReadFunction<any>;
|
|
6734
|
-
contract?: FieldPolicy<any> | FieldReadFunction<any>;
|
|
6735
|
-
id?: FieldPolicy<any> | FieldReadFunction<any>;
|
|
6736
|
-
indexInBlock?: FieldPolicy<any> | FieldReadFunction<any>;
|
|
6737
|
-
pool?: FieldPolicy<any> | FieldReadFunction<any>;
|
|
6738
|
-
poolAddress?: FieldPolicy<any> | FieldReadFunction<any>;
|
|
6739
|
-
receiver?: FieldPolicy<any> | FieldReadFunction<any>;
|
|
6740
|
-
timestamp?: FieldPolicy<any> | FieldReadFunction<any>;
|
|
6741
|
-
txHash?: FieldPolicy<any> | FieldReadFunction<any>;
|
|
6742
|
-
};
|
|
6743
6342
|
export type StrictTypedTypePolicies = {
|
|
6744
6343
|
ActiveOfferNotification?: Omit<TypePolicy, "fields" | "keyFields"> & {
|
|
6745
6344
|
keyFields?: false | ActiveOfferNotificationKeySpecifier | (() => undefined | ActiveOfferNotificationKeySpecifier);
|
|
@@ -6749,6 +6348,18 @@ export type StrictTypedTypePolicies = {
|
|
|
6749
6348
|
keyFields?: false | ActivityKeySpecifier | (() => undefined | ActivityKeySpecifier);
|
|
6750
6349
|
fields?: ActivityFieldPolicy;
|
|
6751
6350
|
};
|
|
6351
|
+
Artist?: Omit<TypePolicy, "fields" | "keyFields"> & {
|
|
6352
|
+
keyFields?: false | ArtistKeySpecifier | (() => undefined | ArtistKeySpecifier);
|
|
6353
|
+
fields?: ArtistFieldPolicy;
|
|
6354
|
+
};
|
|
6355
|
+
ArtistConnection?: Omit<TypePolicy, "fields" | "keyFields"> & {
|
|
6356
|
+
keyFields?: false | ArtistConnectionKeySpecifier | (() => undefined | ArtistConnectionKeySpecifier);
|
|
6357
|
+
fields?: ArtistConnectionFieldPolicy;
|
|
6358
|
+
};
|
|
6359
|
+
ArtistEdge?: Omit<TypePolicy, "fields" | "keyFields"> & {
|
|
6360
|
+
keyFields?: false | ArtistEdgeKeySpecifier | (() => undefined | ArtistEdgeKeySpecifier);
|
|
6361
|
+
fields?: ArtistEdgeFieldPolicy;
|
|
6362
|
+
};
|
|
6752
6363
|
Asset?: Omit<TypePolicy, "fields" | "keyFields"> & {
|
|
6753
6364
|
keyFields?: false | AssetKeySpecifier | (() => undefined | AssetKeySpecifier);
|
|
6754
6365
|
fields?: AssetFieldPolicy;
|
|
@@ -6805,6 +6416,10 @@ export type StrictTypedTypePolicies = {
|
|
|
6805
6416
|
keyFields?: false | BuyNowPayLaterOrderKeySpecifier | (() => undefined | BuyNowPayLaterOrderKeySpecifier);
|
|
6806
6417
|
fields?: BuyNowPayLaterOrderFieldPolicy;
|
|
6807
6418
|
};
|
|
6419
|
+
CancelAllOrdersCalldata?: Omit<TypePolicy, "fields" | "keyFields"> & {
|
|
6420
|
+
keyFields?: false | CancelAllOrdersCalldataKeySpecifier | (() => undefined | CancelAllOrdersCalldataKeySpecifier);
|
|
6421
|
+
fields?: CancelAllOrdersCalldataFieldPolicy;
|
|
6422
|
+
};
|
|
6808
6423
|
Collection?: Omit<TypePolicy, "fields" | "keyFields"> & {
|
|
6809
6424
|
keyFields?: false | CollectionKeySpecifier | (() => undefined | CollectionKeySpecifier);
|
|
6810
6425
|
fields?: CollectionFieldPolicy;
|
|
@@ -6893,14 +6508,6 @@ export type StrictTypedTypePolicies = {
|
|
|
6893
6508
|
keyFields?: false | DelegationEdgeKeySpecifier | (() => undefined | DelegationEdgeKeySpecifier);
|
|
6894
6509
|
fields?: DelegationEdgeFieldPolicy;
|
|
6895
6510
|
};
|
|
6896
|
-
ERC4626Deposit?: Omit<TypePolicy, "fields" | "keyFields"> & {
|
|
6897
|
-
keyFields?: false | ERC4626DepositKeySpecifier | (() => undefined | ERC4626DepositKeySpecifier);
|
|
6898
|
-
fields?: ERC4626DepositFieldPolicy;
|
|
6899
|
-
};
|
|
6900
|
-
ERC4626Withdraw?: Omit<TypePolicy, "fields" | "keyFields"> & {
|
|
6901
|
-
keyFields?: false | ERC4626WithdrawKeySpecifier | (() => undefined | ERC4626WithdrawKeySpecifier);
|
|
6902
|
-
fields?: ERC4626WithdrawFieldPolicy;
|
|
6903
|
-
};
|
|
6904
6511
|
Event?: Omit<TypePolicy, "fields" | "keyFields"> & {
|
|
6905
6512
|
keyFields?: false | EventKeySpecifier | (() => undefined | EventKeySpecifier);
|
|
6906
6513
|
fields?: EventFieldPolicy;
|
|
@@ -7213,70 +6820,10 @@ export type StrictTypedTypePolicies = {
|
|
|
7213
6820
|
keyFields?: false | PointActivityEdgeKeySpecifier | (() => undefined | PointActivityEdgeKeySpecifier);
|
|
7214
6821
|
fields?: PointActivityEdgeFieldPolicy;
|
|
7215
6822
|
};
|
|
7216
|
-
Pool?: Omit<TypePolicy, "fields" | "keyFields"> & {
|
|
7217
|
-
keyFields?: false | PoolKeySpecifier | (() => undefined | PoolKeySpecifier);
|
|
7218
|
-
fields?: PoolFieldPolicy;
|
|
7219
|
-
};
|
|
7220
|
-
PoolActivity?: Omit<TypePolicy, "fields" | "keyFields"> & {
|
|
7221
|
-
keyFields?: false | PoolActivityKeySpecifier | (() => undefined | PoolActivityKeySpecifier);
|
|
7222
|
-
fields?: PoolActivityFieldPolicy;
|
|
7223
|
-
};
|
|
7224
|
-
PoolActivityConnection?: Omit<TypePolicy, "fields" | "keyFields"> & {
|
|
7225
|
-
keyFields?: false | PoolActivityConnectionKeySpecifier | (() => undefined | PoolActivityConnectionKeySpecifier);
|
|
7226
|
-
fields?: PoolActivityConnectionFieldPolicy;
|
|
7227
|
-
};
|
|
7228
|
-
PoolActivityEdge?: Omit<TypePolicy, "fields" | "keyFields"> & {
|
|
7229
|
-
keyFields?: false | PoolActivityEdgeKeySpecifier | (() => undefined | PoolActivityEdgeKeySpecifier);
|
|
7230
|
-
fields?: PoolActivityEdgeFieldPolicy;
|
|
7231
|
-
};
|
|
7232
|
-
PoolAprFactorSet?: Omit<TypePolicy, "fields" | "keyFields"> & {
|
|
7233
|
-
keyFields?: false | PoolAprFactorSetKeySpecifier | (() => undefined | PoolAprFactorSetKeySpecifier);
|
|
7234
|
-
fields?: PoolAprFactorSetFieldPolicy;
|
|
7235
|
-
};
|
|
7236
|
-
PoolAprPremiumSet?: Omit<TypePolicy, "fields" | "keyFields"> & {
|
|
7237
|
-
keyFields?: false | PoolAprPremiumSetKeySpecifier | (() => undefined | PoolAprPremiumSetKeySpecifier);
|
|
7238
|
-
fields?: PoolAprPremiumSetFieldPolicy;
|
|
7239
|
-
};
|
|
7240
|
-
PoolBaseInterestAllocatorSet?: Omit<TypePolicy, "fields" | "keyFields"> & {
|
|
7241
|
-
keyFields?: false | PoolBaseInterestAllocatorSetKeySpecifier | (() => undefined | PoolBaseInterestAllocatorSetKeySpecifier);
|
|
7242
|
-
fields?: PoolBaseInterestAllocatorSetFieldPolicy;
|
|
7243
|
-
};
|
|
7244
|
-
PoolBaseRateAllocator?: Omit<TypePolicy, "fields" | "keyFields"> & {
|
|
7245
|
-
keyFields?: false | PoolBaseRateAllocatorKeySpecifier | (() => undefined | PoolBaseRateAllocatorKeySpecifier);
|
|
7246
|
-
fields?: PoolBaseRateAllocatorFieldPolicy;
|
|
7247
|
-
};
|
|
7248
|
-
PoolCollectionFactors?: Omit<TypePolicy, "fields" | "keyFields"> & {
|
|
7249
|
-
keyFields?: false | PoolCollectionFactorsKeySpecifier | (() => undefined | PoolCollectionFactorsKeySpecifier);
|
|
7250
|
-
fields?: PoolCollectionFactorsFieldPolicy;
|
|
7251
|
-
};
|
|
7252
|
-
PoolCollectionFactorsSet?: Omit<TypePolicy, "fields" | "keyFields"> & {
|
|
7253
|
-
keyFields?: false | PoolCollectionFactorsSetKeySpecifier | (() => undefined | PoolCollectionFactorsSetKeySpecifier);
|
|
7254
|
-
fields?: PoolCollectionFactorsSetFieldPolicy;
|
|
7255
|
-
};
|
|
7256
|
-
PoolConnection?: Omit<TypePolicy, "fields" | "keyFields"> & {
|
|
7257
|
-
keyFields?: false | PoolConnectionKeySpecifier | (() => undefined | PoolConnectionKeySpecifier);
|
|
7258
|
-
fields?: PoolConnectionFieldPolicy;
|
|
7259
|
-
};
|
|
7260
|
-
PoolEdge?: Omit<TypePolicy, "fields" | "keyFields"> & {
|
|
7261
|
-
keyFields?: false | PoolEdgeKeySpecifier | (() => undefined | PoolEdgeKeySpecifier);
|
|
7262
|
-
fields?: PoolEdgeFieldPolicy;
|
|
7263
|
-
};
|
|
7264
|
-
PoolReallocated?: Omit<TypePolicy, "fields" | "keyFields"> & {
|
|
7265
|
-
keyFields?: false | PoolReallocatedKeySpecifier | (() => undefined | PoolReallocatedKeySpecifier);
|
|
7266
|
-
fields?: PoolReallocatedFieldPolicy;
|
|
7267
|
-
};
|
|
7268
|
-
PoolStatistics?: Omit<TypePolicy, "fields" | "keyFields"> & {
|
|
7269
|
-
keyFields?: false | PoolStatisticsKeySpecifier | (() => undefined | PoolStatisticsKeySpecifier);
|
|
7270
|
-
fields?: PoolStatisticsFieldPolicy;
|
|
7271
|
-
};
|
|
7272
6823
|
Query?: Omit<TypePolicy, "fields" | "keyFields"> & {
|
|
7273
6824
|
keyFields?: false | QueryKeySpecifier | (() => undefined | QueryKeySpecifier);
|
|
7274
6825
|
fields?: QueryFieldPolicy;
|
|
7275
6826
|
};
|
|
7276
|
-
QueueDeployed?: Omit<TypePolicy, "fields" | "keyFields"> & {
|
|
7277
|
-
keyFields?: false | QueueDeployedKeySpecifier | (() => undefined | QueueDeployedKeySpecifier);
|
|
7278
|
-
fields?: QueueDeployedFieldPolicy;
|
|
7279
|
-
};
|
|
7280
6827
|
Renegotiation?: Omit<TypePolicy, "fields" | "keyFields"> & {
|
|
7281
6828
|
keyFields?: false | RenegotiationKeySpecifier | (() => undefined | RenegotiationKeySpecifier);
|
|
7282
6829
|
fields?: RenegotiationFieldPolicy;
|
|
@@ -7429,42 +6976,6 @@ export type StrictTypedTypePolicies = {
|
|
|
7429
6976
|
keyFields?: false | UserStatisticsKeySpecifier | (() => undefined | UserStatisticsKeySpecifier);
|
|
7430
6977
|
fields?: UserStatisticsFieldPolicy;
|
|
7431
6978
|
};
|
|
7432
|
-
WithdrawalPosition?: Omit<TypePolicy, "fields" | "keyFields"> & {
|
|
7433
|
-
keyFields?: false | WithdrawalPositionKeySpecifier | (() => undefined | WithdrawalPositionKeySpecifier);
|
|
7434
|
-
fields?: WithdrawalPositionFieldPolicy;
|
|
7435
|
-
};
|
|
7436
|
-
WithdrawalPositionConnection?: Omit<TypePolicy, "fields" | "keyFields"> & {
|
|
7437
|
-
keyFields?: false | WithdrawalPositionConnectionKeySpecifier | (() => undefined | WithdrawalPositionConnectionKeySpecifier);
|
|
7438
|
-
fields?: WithdrawalPositionConnectionFieldPolicy;
|
|
7439
|
-
};
|
|
7440
|
-
WithdrawalPositionEdge?: Omit<TypePolicy, "fields" | "keyFields"> & {
|
|
7441
|
-
keyFields?: false | WithdrawalPositionEdgeKeySpecifier | (() => undefined | WithdrawalPositionEdgeKeySpecifier);
|
|
7442
|
-
fields?: WithdrawalPositionEdgeFieldPolicy;
|
|
7443
|
-
};
|
|
7444
|
-
WithdrawalPositionLocked?: Omit<TypePolicy, "fields" | "keyFields"> & {
|
|
7445
|
-
keyFields?: false | WithdrawalPositionLockedKeySpecifier | (() => undefined | WithdrawalPositionLockedKeySpecifier);
|
|
7446
|
-
fields?: WithdrawalPositionLockedFieldPolicy;
|
|
7447
|
-
};
|
|
7448
|
-
WithdrawalPositionMinted?: Omit<TypePolicy, "fields" | "keyFields"> & {
|
|
7449
|
-
keyFields?: false | WithdrawalPositionMintedKeySpecifier | (() => undefined | WithdrawalPositionMintedKeySpecifier);
|
|
7450
|
-
fields?: WithdrawalPositionMintedFieldPolicy;
|
|
7451
|
-
};
|
|
7452
|
-
WithdrawalQueue?: Omit<TypePolicy, "fields" | "keyFields"> & {
|
|
7453
|
-
keyFields?: false | WithdrawalQueueKeySpecifier | (() => undefined | WithdrawalQueueKeySpecifier);
|
|
7454
|
-
fields?: WithdrawalQueueFieldPolicy;
|
|
7455
|
-
};
|
|
7456
|
-
WithdrawalQueueConnection?: Omit<TypePolicy, "fields" | "keyFields"> & {
|
|
7457
|
-
keyFields?: false | WithdrawalQueueConnectionKeySpecifier | (() => undefined | WithdrawalQueueConnectionKeySpecifier);
|
|
7458
|
-
fields?: WithdrawalQueueConnectionFieldPolicy;
|
|
7459
|
-
};
|
|
7460
|
-
WithdrawalQueueEdge?: Omit<TypePolicy, "fields" | "keyFields"> & {
|
|
7461
|
-
keyFields?: false | WithdrawalQueueEdgeKeySpecifier | (() => undefined | WithdrawalQueueEdgeKeySpecifier);
|
|
7462
|
-
fields?: WithdrawalQueueEdgeFieldPolicy;
|
|
7463
|
-
};
|
|
7464
|
-
WithdrawnFromQueue?: Omit<TypePolicy, "fields" | "keyFields"> & {
|
|
7465
|
-
keyFields?: false | WithdrawnFromQueueKeySpecifier | (() => undefined | WithdrawnFromQueueKeySpecifier);
|
|
7466
|
-
fields?: WithdrawnFromQueueFieldPolicy;
|
|
7467
|
-
};
|
|
7468
6979
|
};
|
|
7469
6980
|
export type TypedTypePolicies = StrictTypedTypePolicies & TypePolicies;
|
|
7470
6981
|
export declare const CurrencyInfoFragmentDoc: DocumentNode;
|