@@ -1103,15 +1103,18 @@ export type SubscriptionEventsArgs = {
11031103 minimumDepth ?: InputMaybe < Scalars [ 'Int' ] [ 'input' ] > ;
11041104 parametersFilter ?: InputMaybe < Scalars [ 'String' ] [ 'input' ] > ;
11051105 qualifiedEventName : Scalars [ 'String' ] [ 'input' ] ;
1106+ quantity ?: InputMaybe < Scalars [ 'Int' ] [ 'input' ] > ;
11061107} ;
11071108
11081109export type SubscriptionNewBlocksArgs = {
11091110 chainIds ?: InputMaybe < Array < Scalars [ 'String' ] [ 'input' ] > > ;
1111+ quantity ?: InputMaybe < Scalars [ 'Int' ] [ 'input' ] > ;
11101112} ;
11111113
11121114export type SubscriptionNewBlocksFromDepthArgs = {
11131115 chainIds ?: InputMaybe < Array < Scalars [ 'String' ] [ 'input' ] > > ;
11141116 minimumDepth : Scalars [ 'Int' ] [ 'input' ] ;
1117+ quantity ?: InputMaybe < Scalars [ 'Int' ] [ 'input' ] > ;
11151118} ;
11161119
11171120export type SubscriptionTransactionArgs = {
@@ -3101,21 +3104,21 @@ export type SubscriptionResolvers<
31013104 'events' ,
31023105 ParentType ,
31033106 ContextType ,
3104- RequireFields < SubscriptionEventsArgs , 'qualifiedEventName' >
3107+ RequireFields < SubscriptionEventsArgs , 'qualifiedEventName' | 'quantity' >
31053108 > ;
31063109 newBlocks ?: SubscriptionResolver <
31073110 Maybe < Array < ResolversTypes [ 'Block' ] > > ,
31083111 'newBlocks' ,
31093112 ParentType ,
31103113 ContextType ,
3111- Partial < SubscriptionNewBlocksArgs >
3114+ RequireFields < SubscriptionNewBlocksArgs , 'quantity' >
31123115 > ;
31133116 newBlocksFromDepth ?: SubscriptionResolver <
31143117 Maybe < Array < ResolversTypes [ 'Block' ] > > ,
31153118 'newBlocksFromDepth' ,
31163119 ParentType ,
31173120 ContextType ,
3118- RequireFields < SubscriptionNewBlocksFromDepthArgs , 'minimumDepth' >
3121+ RequireFields < SubscriptionNewBlocksFromDepthArgs , 'minimumDepth' | 'quantity' >
31193122 > ;
31203123 transaction ?: SubscriptionResolver <
31213124 Maybe < ResolversTypes [ 'Transaction' ] > ,
0 commit comments