@@ -182,6 +182,7 @@ export type FungibleChainAccount = Node & {
182182 balance : Scalars [ 'Float' ] [ 'output' ] ;
183183 chainId : Scalars [ 'String' ] [ 'output' ] ;
184184 fungibleName : Scalars [ 'String' ] [ 'output' ] ;
185+ guard : Guard ;
185186 id : Scalars [ 'ID' ] [ 'output' ] ;
186187 transactions : FungibleChainAccountTransactionsConnection ;
187188 transfers : FungibleChainAccountTransfersConnection ;
@@ -250,6 +251,13 @@ export type GraphConfiguration = {
250251 minimumBlockHeight ?: Maybe < Scalars [ 'BigInt' ] [ 'output' ] > ;
251252} ;
252253
254+ export type Guard = {
255+ __typename ?: 'Guard' ;
256+ keys : Array < Scalars [ 'String' ] [ 'output' ] > ;
257+ predicate : Scalars [ 'String' ] [ 'output' ] ;
258+ raw : Scalars [ 'String' ] [ 'output' ] ;
259+ } ;
260+
253261/** Information about the network. */
254262export type NetworkInfo = {
255263 __typename ?: 'NetworkInfo' ;
@@ -922,7 +930,7 @@ export type ResolversUnionTypes<_RefType extends Record<string, unknown>> = {
922930
923931/** Mapping of interface types */
924932export type ResolversInterfaceTypes < _RefType extends Record < string , unknown > > = {
925- Node : ( Omit < Block , 'events' | 'minerAccount' | 'parent' | 'transactions' > & { events : _RefType [ 'BlockEventsConnection' ] , minerAccount : _RefType [ 'FungibleChainAccount' ] , parent ?: Maybe < _RefType [ 'Block' ] > , transactions : _RefType [ 'BlockTransactionsConnection' ] } ) | ( Omit < Event , 'block' | 'transaction' > & { block : _RefType [ 'Block' ] , transaction ?: Maybe < _RefType [ 'Transaction' ] > } ) | ( Omit < FungibleAccount , 'chainAccounts' | 'transactions' | 'transfers' > & { chainAccounts : Array < _RefType [ 'FungibleChainAccount' ] > , transactions : _RefType [ 'FungibleAccountTransactionsConnection' ] , transfers : _RefType [ 'FungibleAccountTransfersConnection' ] } ) | ( Omit < FungibleChainAccount , 'transactions' | 'transfers' > & { transactions : _RefType [ 'FungibleChainAccountTransactionsConnection' ] , transfers : _RefType [ 'FungibleChainAccountTransfersConnection' ] } ) | ( Omit < NonFungibleAccount , 'transactions' > & { transactions : _RefType [ 'NonFungibleAccountTransactionsConnection' ] } ) | ( Omit < NonFungibleChainAccount , 'transactions' > & { transactions : _RefType [ 'NonFungibleChainAccountTransactionsConnection' ] } ) | ( NonFungibleTokenBalance ) | ( Signer ) | ( Omit < Transaction , 'cmd' | 'orphanedTransactions' | 'result' > & { cmd : _RefType [ 'TransactionCommand' ] , orphanedTransactions ?: Maybe < Array < Maybe < _RefType [ 'Transaction' ] > > > , result : _RefType [ 'TransactionInfo' ] } ) | ( Omit < Transfer , 'block' | 'crossChainTransfer' | 'transaction' > & { block : _RefType [ 'Block' ] , crossChainTransfer ?: Maybe < _RefType [ 'Transfer' ] > , transaction ?: Maybe < _RefType [ 'Transaction' ] > } ) ;
933+ Node : ( Omit < Block , 'events' | 'minerAccount' | 'parent' | 'transactions' > & { events : _RefType [ 'BlockEventsConnection' ] , minerAccount : _RefType [ 'FungibleChainAccount' ] , parent ?: Maybe < _RefType [ 'Block' ] > , transactions : _RefType [ 'BlockTransactionsConnection' ] } ) | ( Omit < Event , 'block' | 'transaction' > & { block : _RefType [ 'Block' ] , transaction ?: Maybe < _RefType [ 'Transaction' ] > } ) | ( Omit < FungibleAccount , 'chainAccounts' | 'transactions' | 'transfers' > & { chainAccounts : Array < _RefType [ 'FungibleChainAccount' ] > , transactions : _RefType [ 'FungibleAccountTransactionsConnection' ] , transfers : _RefType [ 'FungibleAccountTransfersConnection' ] } ) | ( Omit < FungibleChainAccount , 'guard' | 'transactions' | 'transfers' > & { guard : _RefType [ 'Guard' ] , transactions : _RefType [ 'FungibleChainAccountTransactionsConnection' ] , transfers : _RefType [ 'FungibleChainAccountTransfersConnection' ] } ) | ( Omit < NonFungibleAccount , 'transactions' > & { transactions : _RefType [ 'NonFungibleAccountTransactionsConnection' ] } ) | ( Omit < NonFungibleChainAccount , 'transactions' > & { transactions : _RefType [ 'NonFungibleChainAccountTransactionsConnection' ] } ) | ( NonFungibleTokenBalance ) | ( Signer ) | ( Omit < Transaction , 'cmd' | 'orphanedTransactions' | 'result' > & { cmd : _RefType [ 'TransactionCommand' ] , orphanedTransactions ?: Maybe < Array < Maybe < _RefType [ 'Transaction' ] > > > , result : _RefType [ 'TransactionInfo' ] } ) | ( Omit < Transfer , 'block' | 'crossChainTransfer' | 'transaction' > & { block : _RefType [ 'Block' ] , crossChainTransfer ?: Maybe < _RefType [ 'Transfer' ] > , transaction ?: Maybe < _RefType [ 'Transaction' ] > } ) ;
926934} ;
927935
928936/** Mapping between all available schema types and the resolvers types */
@@ -946,14 +954,15 @@ export type ResolversTypes = {
946954 FungibleAccountTransactionsConnectionEdge : ResolverTypeWrapper < Omit < FungibleAccountTransactionsConnectionEdge , 'node' > & { node : ResolversTypes [ 'Transaction' ] } > ;
947955 FungibleAccountTransfersConnection : ResolverTypeWrapper < Omit < FungibleAccountTransfersConnection , 'edges' > & { edges : Array < ResolversTypes [ 'FungibleAccountTransfersConnectionEdge' ] > } > ;
948956 FungibleAccountTransfersConnectionEdge : ResolverTypeWrapper < Omit < FungibleAccountTransfersConnectionEdge , 'node' > & { node : ResolversTypes [ 'Transfer' ] } > ;
949- FungibleChainAccount : ResolverTypeWrapper < Omit < FungibleChainAccount , 'transactions' | 'transfers' > & { transactions : ResolversTypes [ 'FungibleChainAccountTransactionsConnection' ] , transfers : ResolversTypes [ 'FungibleChainAccountTransfersConnection' ] } > ;
957+ FungibleChainAccount : ResolverTypeWrapper < Omit < FungibleChainAccount , 'guard' | ' transactions' | 'transfers' > & { guard : ResolversTypes [ 'Guard' ] , transactions : ResolversTypes [ 'FungibleChainAccountTransactionsConnection' ] , transfers : ResolversTypes [ 'FungibleChainAccountTransfersConnection' ] } > ;
950958 FungibleChainAccountTransactionsConnection : ResolverTypeWrapper < Omit < FungibleChainAccountTransactionsConnection , 'edges' > & { edges : Array < ResolversTypes [ 'FungibleChainAccountTransactionsConnectionEdge' ] > } > ;
951959 FungibleChainAccountTransactionsConnectionEdge : ResolverTypeWrapper < Omit < FungibleChainAccountTransactionsConnectionEdge , 'node' > & { node : ResolversTypes [ 'Transaction' ] } > ;
952960 FungibleChainAccountTransfersConnection : ResolverTypeWrapper < Omit < FungibleChainAccountTransfersConnection , 'edges' > & { edges : Array < ResolversTypes [ 'FungibleChainAccountTransfersConnectionEdge' ] > } > ;
953961 FungibleChainAccountTransfersConnectionEdge : ResolverTypeWrapper < Omit < FungibleChainAccountTransfersConnectionEdge , 'node' > & { node : ResolversTypes [ 'Transfer' ] } > ;
954962 GasLimitEstimation : ResolverTypeWrapper < GasLimitEstimation > ;
955963 GenesisHeight : ResolverTypeWrapper < GenesisHeight > ;
956964 GraphConfiguration : ResolverTypeWrapper < GraphConfiguration > ;
965+ Guard : ResolverTypeWrapper < Guard > ;
957966 ID : ResolverTypeWrapper < Scalars [ 'ID' ] [ 'output' ] > ;
958967 Int : ResolverTypeWrapper < Scalars [ 'Int' ] [ 'output' ] > ;
959968 NetworkInfo : ResolverTypeWrapper < NetworkInfo > ;
@@ -1025,14 +1034,15 @@ export type ResolversParentTypes = {
10251034 FungibleAccountTransactionsConnectionEdge : Omit < FungibleAccountTransactionsConnectionEdge , 'node' > & { node : ResolversParentTypes [ 'Transaction' ] } ;
10261035 FungibleAccountTransfersConnection : Omit < FungibleAccountTransfersConnection , 'edges' > & { edges : Array < ResolversParentTypes [ 'FungibleAccountTransfersConnectionEdge' ] > } ;
10271036 FungibleAccountTransfersConnectionEdge : Omit < FungibleAccountTransfersConnectionEdge , 'node' > & { node : ResolversParentTypes [ 'Transfer' ] } ;
1028- FungibleChainAccount : Omit < FungibleChainAccount , 'transactions' | 'transfers' > & { transactions : ResolversParentTypes [ 'FungibleChainAccountTransactionsConnection' ] , transfers : ResolversParentTypes [ 'FungibleChainAccountTransfersConnection' ] } ;
1037+ FungibleChainAccount : Omit < FungibleChainAccount , 'guard' | ' transactions' | 'transfers' > & { guard : ResolversParentTypes [ 'Guard' ] , transactions : ResolversParentTypes [ 'FungibleChainAccountTransactionsConnection' ] , transfers : ResolversParentTypes [ 'FungibleChainAccountTransfersConnection' ] } ;
10291038 FungibleChainAccountTransactionsConnection : Omit < FungibleChainAccountTransactionsConnection , 'edges' > & { edges : Array < ResolversParentTypes [ 'FungibleChainAccountTransactionsConnectionEdge' ] > } ;
10301039 FungibleChainAccountTransactionsConnectionEdge : Omit < FungibleChainAccountTransactionsConnectionEdge , 'node' > & { node : ResolversParentTypes [ 'Transaction' ] } ;
10311040 FungibleChainAccountTransfersConnection : Omit < FungibleChainAccountTransfersConnection , 'edges' > & { edges : Array < ResolversParentTypes [ 'FungibleChainAccountTransfersConnectionEdge' ] > } ;
10321041 FungibleChainAccountTransfersConnectionEdge : Omit < FungibleChainAccountTransfersConnectionEdge , 'node' > & { node : ResolversParentTypes [ 'Transfer' ] } ;
10331042 GasLimitEstimation : GasLimitEstimation ;
10341043 GenesisHeight : GenesisHeight ;
10351044 GraphConfiguration : GraphConfiguration ;
1045+ Guard : Guard ;
10361046 ID : Scalars [ 'ID' ] [ 'output' ] ;
10371047 Int : Scalars [ 'Int' ] [ 'output' ] ;
10381048 NetworkInfo : NetworkInfo ;
@@ -1221,6 +1231,7 @@ export type FungibleChainAccountResolvers<ContextType = any, ParentType extends
12211231 balance ?: Resolver < ResolversTypes [ 'Float' ] , ParentType , ContextType > ;
12221232 chainId ?: Resolver < ResolversTypes [ 'String' ] , ParentType , ContextType > ;
12231233 fungibleName ?: Resolver < ResolversTypes [ 'String' ] , ParentType , ContextType > ;
1234+ guard ?: Resolver < ResolversTypes [ 'Guard' ] , ParentType , ContextType > ;
12241235 id ?: Resolver < ResolversTypes [ 'ID' ] , ParentType , ContextType > ;
12251236 transactions ?: Resolver < ResolversTypes [ 'FungibleChainAccountTransactionsConnection' ] , ParentType , ContextType , RequireFields < FungibleChainAccountTransactionsArgs , 'first' | 'last' > > ;
12261237 transfers ?: Resolver < ResolversTypes [ 'FungibleChainAccountTransfersConnection' ] , ParentType , ContextType , RequireFields < FungibleChainAccountTransfersArgs , 'first' | 'last' > > ;
@@ -1273,6 +1284,13 @@ export type GraphConfigurationResolvers<ContextType = any, ParentType extends Re
12731284 __isTypeOf ?: IsTypeOfResolverFn < ParentType , ContextType > ;
12741285} ;
12751286
1287+ export type GuardResolvers < ContextType = any , ParentType extends ResolversParentTypes [ 'Guard' ] = ResolversParentTypes [ 'Guard' ] > = {
1288+ keys ?: Resolver < Array < ResolversTypes [ 'String' ] > , ParentType , ContextType > ;
1289+ predicate ?: Resolver < ResolversTypes [ 'String' ] , ParentType , ContextType > ;
1290+ raw ?: Resolver < ResolversTypes [ 'String' ] , ParentType , ContextType > ;
1291+ __isTypeOf ?: IsTypeOfResolverFn < ParentType , ContextType > ;
1292+ } ;
1293+
12761294export type NetworkInfoResolvers < ContextType = any , ParentType extends ResolversParentTypes [ 'NetworkInfo' ] = ResolversParentTypes [ 'NetworkInfo' ] > = {
12771295 apiVersion ?: Resolver < ResolversTypes [ 'String' ] , ParentType , ContextType > ;
12781296 coinsInCirculation ?: Resolver < ResolversTypes [ 'Float' ] , ParentType , ContextType > ;
@@ -1639,6 +1657,7 @@ export type Resolvers<ContextType = any> = {
16391657 GasLimitEstimation ?: GasLimitEstimationResolvers < ContextType > ;
16401658 GenesisHeight ?: GenesisHeightResolvers < ContextType > ;
16411659 GraphConfiguration ?: GraphConfigurationResolvers < ContextType > ;
1660+ Guard ?: GuardResolvers < ContextType > ;
16421661 NetworkInfo ?: NetworkInfoResolvers < ContextType > ;
16431662 Node ?: NodeResolvers < ContextType > ;
16441663 NonFungibleAccount ?: NonFungibleAccountResolvers < ContextType > ;
0 commit comments