@@ -679,6 +679,14 @@ export type ActivityWhereInput = {
679679 updatedAtNotIn ?: InputMaybe < Array < Scalars [ 'Time' ] > > ;
680680} ;
681681
682+ export enum AdminBudgetReason {
683+ Advance = 'ADVANCE' ,
684+ Correction = 'CORRECTION' ,
685+ Promotion = 'PROMOTION' ,
686+ Refund = 'REFUND' ,
687+ Settlement = 'SETTLEMENT'
688+ }
689+
682690export type AssetEdge = {
683691 __typename ?: 'AssetEdge' ;
684692 amount : Scalars [ 'Float' ] ;
@@ -1096,7 +1104,6 @@ export type CreateLayerswapDepositInput = {
10961104 layerswapFees ?: InputMaybe < Scalars [ 'BigInt' ] > ;
10971105 marginPercent ?: InputMaybe < Scalars [ 'Int' ] > ;
10981106 sourceNetwork : LayerswapSourceNetwork ;
1099- username : Scalars [ 'String' ] ;
11001107} ;
11011108
11021109export type CreateLayerswapPaymentInput = {
@@ -1107,7 +1114,6 @@ export type CreateLayerswapPaymentInput = {
11071114 sourceNetwork : LayerswapSourceNetwork ;
11081115 starterpackId ?: InputMaybe < Scalars [ 'ID' ] > ;
11091116 teamId ?: InputMaybe < Scalars [ 'ID' ] > ;
1110- username : Scalars [ 'String' ] ;
11111117} ;
11121118
11131119/**
@@ -2706,8 +2712,10 @@ export type MutationCreateTeamArgs = {
27062712
27072713
27082714export type MutationDecreaseBudgetArgs = {
2715+ admin ?: InputMaybe < Scalars [ 'Boolean' ] > ;
27092716 amount : Scalars [ 'Int' ] ;
27102717 paymasterName : Scalars [ 'ID' ] ;
2718+ reason ?: InputMaybe < AdminBudgetReason > ;
27112719 unit : FeeUnit ;
27122720} ;
27132721
@@ -2756,8 +2764,10 @@ export type MutationFinalizeRegistrationArgs = {
27562764
27572765
27582766export type MutationIncreaseBudgetArgs = {
2767+ admin ?: InputMaybe < Scalars [ 'Boolean' ] > ;
27592768 amount : Scalars [ 'Int' ] ;
27602769 paymasterName : Scalars [ 'ID' ] ;
2770+ reason ?: InputMaybe < AdminBudgetReason > ;
27612771 unit : FeeUnit ;
27622772} ;
27632773
0 commit comments