@berachain/graphql 0.5.0 → 0.5.1-beta.1

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.
@@ -515,6 +515,7 @@ type paths = {
515
515
  query?: {
516
516
  page?: string;
517
517
  perPage?: string;
518
+ type?: "MINT" | "REDEEM";
518
519
  };
519
520
  header?: never;
520
521
  path?: never;
@@ -784,6 +785,45 @@ type paths = {
784
785
  patch?: never;
785
786
  trace?: never;
786
787
  };
788
+ "/v0/stats/bera": {
789
+ parameters: {
790
+ query?: never;
791
+ header?: never;
792
+ path?: never;
793
+ cookie?: never;
794
+ };
795
+ get: {
796
+ parameters: {
797
+ query?: never;
798
+ header?: never;
799
+ path?: never;
800
+ cookie?: never;
801
+ };
802
+ requestBody?: never;
803
+ responses: {
804
+ 200: {
805
+ headers: {
806
+ [name: string]: unknown;
807
+ };
808
+ content: {
809
+ "application/json": {
810
+ /** @description Total BERA supply: genesis allocation plus PoL emissions minus BGT still outstanding. */
811
+ totalSupply: components["schemas"]["DecimalStr"];
812
+ /** @description Circulating BERA: Total BERA supply minus the amount of BERA that is locked up in the genesis vesting schedule. */
813
+ circulatingSupply: components["schemas"]["DecimalStr"];
814
+ };
815
+ };
816
+ };
817
+ };
818
+ };
819
+ put?: never;
820
+ post?: never;
821
+ delete?: never;
822
+ options?: never;
823
+ head?: never;
824
+ patch?: never;
825
+ trace?: never;
826
+ };
787
827
  "/v0/reward-vaults": {
788
828
  parameters: {
789
829
  query?: never;
@@ -1012,9 +1052,10 @@ type EarnEarningResponse = paths["/v0/earn/{vault}/earnings/{owner}"]["get"]["re
1012
1052
  type EarnTotalAssetsByDayResponse = paths["/v0/earn/{vault}/total-assets-by-day"]["get"]["responses"][200]["content"]["application/json"];
1013
1053
  type EarnStatsByDayResponse = paths["/v0/earn/{vault}/stats-by-day"]["get"]["responses"][200]["content"]["application/json"];
1014
1054
  type EarnDailyAssetResponse = paths["/v0/earn/{vault}/daily-assets/{owner}"]["get"]["responses"][200]["content"]["application/json"];
1055
+ type StatsBeraResponse = paths["/v0/stats/bera"]["get"]["responses"][200]["content"]["application/json"];
1015
1056
  type RewardVaultsResponse = paths["/v0/reward-vaults"]["get"]["responses"][200]["content"]["application/json"];
1016
1057
  type RewardVaultDistributionsResponse = paths["/v0/reward-vaults/{vault}/distributions"]["get"]["responses"][200]["content"]["application/json"];
1017
1058
  type RewardVaultsGlobalInfoResponse = paths["/v0/reward-vaults/global-info"]["get"]["responses"][200]["content"]["application/json"];
1018
1059
  type RewardVaultsUserVaultStakesResponse = paths["/v0/reward-vaults/user-vault-stakes"]["get"]["responses"][200]["content"]["application/json"];
1019
1060
 
1020
- export type { $defs, ApiGetResponse, ApiSchema, BigIntStr, BigUintStr, BlocksBlockStatsResponse, DecimalStr, EarnDailyAssetResponse, EarnEarningResponse, EarnStatsByDayResponse, EarnTotalAssetsByDayResponse, EvmAddress, HoneySnapshotResponse, HoneyTransactionsLatestResponse, RewardVaultDistributionsResponse, RewardVaultsGlobalInfoResponse, RewardVaultsResponse, RewardVaultsUserVaultStakesResponse, StakeDailyAssetResponse, StakeDailyYieldResponse, StakeEarningResponse, StakeRewardsReceivedResponse, StakeStatsByDayResponse, ValidatorBlockStatsResponse, ValidatorIncentivesResponse, ValidatorsResponse, components, operations, paths, webhooks };
1061
+ export type { $defs, ApiGetResponse, ApiSchema, BigIntStr, BigUintStr, BlocksBlockStatsResponse, DecimalStr, EarnDailyAssetResponse, EarnEarningResponse, EarnStatsByDayResponse, EarnTotalAssetsByDayResponse, EvmAddress, HoneySnapshotResponse, HoneyTransactionsLatestResponse, RewardVaultDistributionsResponse, RewardVaultsGlobalInfoResponse, RewardVaultsResponse, RewardVaultsUserVaultStakesResponse, StakeDailyAssetResponse, StakeDailyYieldResponse, StakeEarningResponse, StakeRewardsReceivedResponse, StakeStatsByDayResponse, StatsBeraResponse, ValidatorBlockStatsResponse, ValidatorIncentivesResponse, ValidatorsResponse, components, operations, paths, webhooks };
@@ -514,6 +514,22 @@ declare enum HoneyTxn_OrderBy {
514
514
  To = "to",
515
515
  Type = "type"
516
516
  }
517
+ /**
518
+ * The severity level of a log entry.
519
+ * Log levels are ordered from most to least severe: CRITICAL > ERROR > WARNING > INFO > DEBUG
520
+ */
521
+ declare enum LogLevel {
522
+ /** Critical errors that require immediate attention */
523
+ Critical = "CRITICAL",
524
+ /** Detailed diagnostic information for debugging */
525
+ Debug = "DEBUG",
526
+ /** Error conditions that indicate a failure */
527
+ Error = "ERROR",
528
+ /** Informational messages about normal operations */
529
+ Info = "INFO",
530
+ /** Warning conditions that may require attention */
531
+ Warning = "WARNING"
532
+ }
517
533
  /** Defines the order direction, either ascending or descending */
518
534
  declare enum OrderDirection {
519
535
  Asc = "asc",
@@ -521,6 +537,8 @@ declare enum OrderDirection {
521
537
  }
522
538
  type Query = {
523
539
  __typename?: 'Query';
540
+ /** Query execution logs emitted by the subgraph during indexing. Results are sorted by timestamp in descending order (newest first). */
541
+ _logs: Array<_Log_>;
524
542
  /** Access to subgraph metadata */
525
543
  _meta?: Maybe<_Meta_>;
526
544
  chainTransaction?: Maybe<ChainTransaction>;
@@ -536,6 +554,15 @@ type Query = {
536
554
  honeyTxnTimeseries_collection: Array<HoneyTxnTimeseries>;
537
555
  honeyTxns: Array<HoneyTxn>;
538
556
  };
557
+ type Query_LogsArgs = {
558
+ first?: InputMaybe<Scalars['Int']['input']>;
559
+ from?: InputMaybe<Scalars['String']['input']>;
560
+ level?: InputMaybe<LogLevel>;
561
+ orderDirection?: InputMaybe<OrderDirection>;
562
+ search?: InputMaybe<Scalars['String']['input']>;
563
+ skip?: InputMaybe<Scalars['Int']['input']>;
564
+ to?: InputMaybe<Scalars['String']['input']>;
565
+ };
539
566
  type Query_MetaArgs = {
540
567
  block?: InputMaybe<Block_Height>;
541
568
  };
@@ -635,6 +662,51 @@ type _Block_ = {
635
662
  /** Integer representation of the timestamp stored in blocks for the chain */
636
663
  timestamp?: Maybe<Scalars['Int']['output']>;
637
664
  };
665
+ /**
666
+ * A key-value pair of additional data associated with a log entry.
667
+ * These correspond to arguments passed to the log function in the subgraph code.
668
+ */
669
+ type _LogArgument_ = {
670
+ __typename?: '_LogArgument_';
671
+ /** The parameter name */
672
+ key: Scalars['String']['output'];
673
+ /** The parameter value, serialized as a string */
674
+ value: Scalars['String']['output'];
675
+ };
676
+ /**
677
+ * Source code location metadata for a log entry.
678
+ * Indicates where in the subgraph's AssemblyScript code the log statement was executed.
679
+ */
680
+ type _LogMeta_ = {
681
+ __typename?: '_LogMeta_';
682
+ /** The column number in the source file */
683
+ column: Scalars['Int']['output'];
684
+ /** The line number in the source file */
685
+ line: Scalars['Int']['output'];
686
+ /** The module or file path where the log was emitted */
687
+ module: Scalars['String']['output'];
688
+ };
689
+ /**
690
+ * A log entry emitted by a subgraph during indexing.
691
+ * Logs can be generated by the subgraph's AssemblyScript code using the `log.*` functions.
692
+ */
693
+ type _Log_ = {
694
+ __typename?: '_Log_';
695
+ /** Additional structured data passed to the log function as key-value pairs */
696
+ arguments: Array<_LogArgument_>;
697
+ /** Unique identifier for this log entry */
698
+ id: Scalars['String']['output'];
699
+ /** The severity level of the log entry */
700
+ level: LogLevel;
701
+ /** Metadata about the source location in the subgraph code where the log was emitted */
702
+ meta: _LogMeta_;
703
+ /** The deployment hash of the subgraph that emitted this log */
704
+ subgraphId: Scalars['String']['output'];
705
+ /** The log message text */
706
+ text: Scalars['String']['output'];
707
+ /** The timestamp when the log was emitted, in RFC3339 format (e.g., '2024-01-15T10:30:00Z') */
708
+ timestamp: Scalars['String']['output'];
709
+ };
638
710
  /** The type for the top-level _meta field */
639
711
  type _Meta_ = {
640
712
  __typename?: '_Meta_';
@@ -732,4 +804,4 @@ interface PossibleTypesResultData {
732
804
  }
733
805
  declare const result: PossibleTypesResultData;
734
806
 
735
- export { Aggregation_Current, Aggregation_Interval, type BlockChangedFilter, type Block_Height, type ChainTransaction, type ChainTransactionHoneyTxnArgs, type ChainTransaction_Filter, ChainTransaction_OrderBy, type Exact, GetHoneyTxn, type GetHoneyTxnQuery, type GetHoneyTxnQueryVariables, GetSnapshots, type GetSnapshotsQuery, type GetSnapshotsQueryVariables, type HoneyCollateral, type HoneyCollateral_Filter, HoneyCollateral_OrderBy, type HoneySnapshot, HoneySnapshotData, type HoneySnapshotDataFragment, type HoneySnapshot_Filter, HoneySnapshot_OrderBy, type HoneySupplyDayData, type HoneySupplyDayData_Filter, HoneySupplyDayData_OrderBy, type HoneyTxn, type HoneyTxnCollateralArgs, HoneyTxnData, type HoneyTxnDataFragment, type HoneyTxnTimeseries, type HoneyTxnTimeseries_Filter, HoneyTxnTimeseries_OrderBy, type HoneyTxn_Filter, HoneyTxn_OrderBy, type Incremental, type InputMaybe, type MakeEmpty, type MakeMaybe, type MakeOptional, type Maybe, OrderDirection, type PossibleTypesResultData, type Query, type QueryChainTransactionArgs, type QueryChainTransactionsArgs, type QueryHoneyCollateralArgs, type QueryHoneyCollateralsArgs, type QueryHoneySnapshotsArgs, type QueryHoneySupplyDayDataArgs, type QueryHoneySupplyDayDatasArgs, type QueryHoneyTxnArgs, type QueryHoneyTxnTimeseriesArgs, type QueryHoneyTxnTimeseries_CollectionArgs, type QueryHoneyTxnsArgs, type Query_MetaArgs, type Scalars, TxnType, type _Block_, type _Meta_, _SubgraphErrorPolicy_, result as default };
807
+ export { Aggregation_Current, Aggregation_Interval, type BlockChangedFilter, type Block_Height, type ChainTransaction, type ChainTransactionHoneyTxnArgs, type ChainTransaction_Filter, ChainTransaction_OrderBy, type Exact, GetHoneyTxn, type GetHoneyTxnQuery, type GetHoneyTxnQueryVariables, GetSnapshots, type GetSnapshotsQuery, type GetSnapshotsQueryVariables, type HoneyCollateral, type HoneyCollateral_Filter, HoneyCollateral_OrderBy, type HoneySnapshot, HoneySnapshotData, type HoneySnapshotDataFragment, type HoneySnapshot_Filter, HoneySnapshot_OrderBy, type HoneySupplyDayData, type HoneySupplyDayData_Filter, HoneySupplyDayData_OrderBy, type HoneyTxn, type HoneyTxnCollateralArgs, HoneyTxnData, type HoneyTxnDataFragment, type HoneyTxnTimeseries, type HoneyTxnTimeseries_Filter, HoneyTxnTimeseries_OrderBy, type HoneyTxn_Filter, HoneyTxn_OrderBy, type Incremental, type InputMaybe, LogLevel, type MakeEmpty, type MakeMaybe, type MakeOptional, type Maybe, OrderDirection, type PossibleTypesResultData, type Query, type QueryChainTransactionArgs, type QueryChainTransactionsArgs, type QueryHoneyCollateralArgs, type QueryHoneyCollateralsArgs, type QueryHoneySnapshotsArgs, type QueryHoneySupplyDayDataArgs, type QueryHoneySupplyDayDatasArgs, type QueryHoneyTxnArgs, type QueryHoneyTxnTimeseriesArgs, type QueryHoneyTxnTimeseries_CollectionArgs, type QueryHoneyTxnsArgs, type Query_LogsArgs, type Query_MetaArgs, type Scalars, TxnType, type _Block_, type _LogArgument_, type _LogMeta_, type _Log_, type _Meta_, _SubgraphErrorPolicy_, result as default };
@@ -76,6 +76,14 @@ var HoneyTxn_OrderBy = /* @__PURE__ */ ((HoneyTxn_OrderBy2) => {
76
76
  HoneyTxn_OrderBy2["Type"] = "type";
77
77
  return HoneyTxn_OrderBy2;
78
78
  })(HoneyTxn_OrderBy || {});
79
+ var LogLevel = /* @__PURE__ */ ((LogLevel2) => {
80
+ LogLevel2["Critical"] = "CRITICAL";
81
+ LogLevel2["Debug"] = "DEBUG";
82
+ LogLevel2["Error"] = "ERROR";
83
+ LogLevel2["Info"] = "INFO";
84
+ LogLevel2["Warning"] = "WARNING";
85
+ return LogLevel2;
86
+ })(LogLevel || {});
79
87
  var OrderDirection = /* @__PURE__ */ ((OrderDirection2) => {
80
88
  OrderDirection2["Asc"] = "asc";
81
89
  OrderDirection2["Desc"] = "desc";
@@ -153,6 +161,7 @@ export {
153
161
  HoneyTxnData,
154
162
  HoneyTxnTimeseries_OrderBy,
155
163
  HoneyTxn_OrderBy,
164
+ LogLevel,
156
165
  OrderDirection,
157
166
  TxnType,
158
167
  _SubgraphErrorPolicy_,
@@ -1446,6 +1446,22 @@ declare enum IncentiveTokensByValidator_OrderBy {
1446
1446
  ValidatorUsersQueuedBoostCount = "validator__usersQueuedBoostCount",
1447
1447
  ValidatorUsersQueuedDropBoostCount = "validator__usersQueuedDropBoostCount"
1448
1448
  }
1449
+ /**
1450
+ * The severity level of a log entry.
1451
+ * Log levels are ordered from most to least severe: CRITICAL > ERROR > WARNING > INFO > DEBUG
1452
+ */
1453
+ declare enum LogLevel {
1454
+ /** Critical errors that require immediate attention */
1455
+ Critical = "CRITICAL",
1456
+ /** Detailed diagnostic information for debugging */
1457
+ Debug = "DEBUG",
1458
+ /** Error conditions that indicate a failure */
1459
+ Error = "ERROR",
1460
+ /** Informational messages about normal operations */
1461
+ Info = "INFO",
1462
+ /** Warning conditions that may require attention */
1463
+ Warning = "WARNING"
1464
+ }
1449
1465
  /** Defines the order direction, either ascending or descending */
1450
1466
  declare enum OrderDirection {
1451
1467
  Asc = "asc",
@@ -1453,6 +1469,8 @@ declare enum OrderDirection {
1453
1469
  }
1454
1470
  type Query = {
1455
1471
  __typename?: 'Query';
1472
+ /** Query execution logs emitted by the subgraph during indexing. Results are sorted by timestamp in descending order (newest first). */
1473
+ _logs: Array<_Log_>;
1456
1474
  /** Access to subgraph metadata */
1457
1475
  _meta?: Maybe<_Meta_>;
1458
1476
  activeIncentive?: Maybe<ActiveIncentive>;
@@ -1522,6 +1540,15 @@ type Query = {
1522
1540
  whitelistedToken?: Maybe<WhitelistedToken>;
1523
1541
  whitelistedTokens: Array<WhitelistedToken>;
1524
1542
  };
1543
+ type Query_LogsArgs = {
1544
+ first?: InputMaybe<Scalars['Int']['input']>;
1545
+ from?: InputMaybe<Scalars['String']['input']>;
1546
+ level?: InputMaybe<LogLevel>;
1547
+ orderDirection?: InputMaybe<OrderDirection>;
1548
+ search?: InputMaybe<Scalars['String']['input']>;
1549
+ skip?: InputMaybe<Scalars['Int']['input']>;
1550
+ to?: InputMaybe<Scalars['String']['input']>;
1551
+ };
1525
1552
  type Query_MetaArgs = {
1526
1553
  block?: InputMaybe<Block_Height>;
1527
1554
  };
@@ -3962,6 +3989,51 @@ type _Block_ = {
3962
3989
  /** Integer representation of the timestamp stored in blocks for the chain */
3963
3990
  timestamp?: Maybe<Scalars['Int']['output']>;
3964
3991
  };
3992
+ /**
3993
+ * A key-value pair of additional data associated with a log entry.
3994
+ * These correspond to arguments passed to the log function in the subgraph code.
3995
+ */
3996
+ type _LogArgument_ = {
3997
+ __typename?: '_LogArgument_';
3998
+ /** The parameter name */
3999
+ key: Scalars['String']['output'];
4000
+ /** The parameter value, serialized as a string */
4001
+ value: Scalars['String']['output'];
4002
+ };
4003
+ /**
4004
+ * Source code location metadata for a log entry.
4005
+ * Indicates where in the subgraph's AssemblyScript code the log statement was executed.
4006
+ */
4007
+ type _LogMeta_ = {
4008
+ __typename?: '_LogMeta_';
4009
+ /** The column number in the source file */
4010
+ column: Scalars['Int']['output'];
4011
+ /** The line number in the source file */
4012
+ line: Scalars['Int']['output'];
4013
+ /** The module or file path where the log was emitted */
4014
+ module: Scalars['String']['output'];
4015
+ };
4016
+ /**
4017
+ * A log entry emitted by a subgraph during indexing.
4018
+ * Logs can be generated by the subgraph's AssemblyScript code using the `log.*` functions.
4019
+ */
4020
+ type _Log_ = {
4021
+ __typename?: '_Log_';
4022
+ /** Additional structured data passed to the log function as key-value pairs */
4023
+ arguments: Array<_LogArgument_>;
4024
+ /** Unique identifier for this log entry */
4025
+ id: Scalars['String']['output'];
4026
+ /** The severity level of the log entry */
4027
+ level: LogLevel;
4028
+ /** Metadata about the source location in the subgraph code where the log was emitted */
4029
+ meta: _LogMeta_;
4030
+ /** The deployment hash of the subgraph that emitted this log */
4031
+ subgraphId: Scalars['String']['output'];
4032
+ /** The log message text */
4033
+ text: Scalars['String']['output'];
4034
+ /** The timestamp when the log was emitted, in RFC3339 format (e.g., '2024-01-15T10:30:00Z') */
4035
+ timestamp: Scalars['String']['output'];
4036
+ };
3965
4037
  /** The type for the top-level _meta field */
3966
4038
  type _Meta_ = {
3967
4039
  __typename?: '_Meta_';
@@ -4138,4 +4210,4 @@ interface PossibleTypesResultData {
4138
4210
  }
4139
4211
  declare const result: PossibleTypesResultData;
4140
4212
 
4141
- export { type ActiveIncentive, type ActiveIncentive_Filter, ActiveIncentive_OrderBy, Aggregation_Current, Aggregation_Interval, type BlockChangedFilter, type BlockReward, type BlockRewardStats, BlockRewardStatsByValidator, type BlockRewardStatsByValidatorFragment, type BlockRewardStatsByValidator_Filter, BlockRewardStatsByValidator_OrderBy, type BlockRewardStats_Filter, BlockRewardStats_OrderBy, type BlockReward_Filter, BlockReward_OrderBy, type BlockStats, type BlockStatsByValidator, type BlockStatsByValidator_Filter, BlockStatsByValidator_OrderBy, type BlockStats_Filter, BlockStats_OrderBy, type Block_Height, type Boost, BoostByValidator, type BoostByValidatorFragment, type BoostByValidator_Filter, BoostByValidator_OrderBy, type Boost_Filter, Boost_OrderBy, type Exact, GetIncentiveFeeClaimStats, type GetIncentiveFeeClaimStatsQuery, type GetIncentiveFeeClaimStatsQueryVariables, GetValidatorAnalytics, type GetValidatorAnalyticsQuery, type GetValidatorAnalyticsQueryVariables, GetValidatorBlockStats, type GetValidatorBlockStatsQuery, type GetValidatorBlockStatsQueryVariables, GetValidatorIncentiveDistribution, type GetValidatorIncentiveDistributionQuery, type GetValidatorIncentiveDistributionQueryVariables, type GlobalInfo, type GlobalInfo_Filter, GlobalInfo_OrderBy, type GlobalRewardDistribution, type GlobalRewardDistribution_Filter, GlobalRewardDistribution_OrderBy, type IncentiveDistribution, type IncentiveDistributionByValidator, type IncentiveDistributionByValidator_Filter, IncentiveDistributionByValidator_OrderBy, type IncentiveDistributionByVault, type IncentiveDistributionByVault_Filter, IncentiveDistributionByVault_OrderBy, type IncentiveDistribution_Filter, IncentiveDistribution_OrderBy, type IncentiveFeeClaim, type IncentiveFeeClaimStats, type IncentiveFeeClaimStats_Filter, IncentiveFeeClaimStats_OrderBy, type IncentiveFeeClaim_Filter, IncentiveFeeClaim_OrderBy, type IncentiveFeePayoutAmountHistory, type IncentiveFeePayoutAmountHistory_Filter, IncentiveFeePayoutAmountHistory_OrderBy, type IncentiveTokensByValidator, type IncentiveTokensByValidator_Filter, IncentiveTokensByValidator_OrderBy, type Incremental, type InputMaybe, type MakeEmpty, type MakeMaybe, type MakeOptional, type Maybe, OrderDirection, type PossibleTypesResultData, type Query, type QueryActiveIncentiveArgs, type QueryActiveIncentivesArgs, type QueryBlockRewardArgs, type QueryBlockRewardStatsByValidatorsArgs, type QueryBlockRewardStats_CollectionArgs, type QueryBlockRewardsArgs, type QueryBlockStatsByValidatorsArgs, type QueryBlockStats_CollectionArgs, type QueryBoostArgs, type QueryBoostByValidatorsArgs, type QueryBoostsArgs, type QueryGlobalInfoArgs, type QueryGlobalInfosArgs, type QueryGlobalRewardDistributionsArgs, type QueryIncentiveDistributionArgs, type QueryIncentiveDistributionByValidatorsArgs, type QueryIncentiveDistributionByVaultsArgs, type QueryIncentiveDistributionsArgs, type QueryIncentiveFeeClaimArgs, type QueryIncentiveFeeClaimStats_CollectionArgs, type QueryIncentiveFeeClaimsArgs, type QueryIncentiveFeePayoutAmountHistoriesArgs, type QueryIncentiveFeePayoutAmountHistoryArgs, type QueryIncentiveTokensByValidatorArgs, type QueryIncentiveTokensByValidatorsArgs, type QueryRewardAllocationActivationArgs, type QueryRewardAllocationActivationsArgs, type QueryRewardAllocationArgs, type QueryRewardAllocationMaxWeightHistoriesArgs, type QueryRewardAllocationMaxWeightHistoryArgs, type QueryRewardAllocationQueueArgs, type QueryRewardAllocationQueuesArgs, type QueryRewardAllocationWeightArgs, type QueryRewardAllocationWeightsArgs, type QueryRewardAllocationsArgs, type QueryRewardDistributionArgs, type QueryRewardDistributionByVaultsArgs, type QueryRewardDistributionsArgs, type QueryRewardsDistributionByValidatorsArgs, type QueryTokenInformationArgs, type QueryTokenInformationsArgs, type QueryUserBoostArgs, type QueryUserBoostsArgs, type QueryUserFeeHistoriesArgs, type QueryUserFeeHistoryArgs, type QueryUserVaultStakeArgs, type QueryUserVaultStakesArgs, type QueryValidatorArgs, type QueryValidatorCommissionHistoriesArgs, type QueryValidatorCommissionHistoryArgs, type QueryValidatorsArgs, type QueryVaultArgs, type QueryVaultsArgs, type QueryWhitelistedTokenArgs, type QueryWhitelistedTokensArgs, type Query_MetaArgs, type RewardAllocation, type RewardAllocationActivation, type RewardAllocationActivation_Filter, RewardAllocationActivation_OrderBy, type RewardAllocationActivationsArgs, type RewardAllocationMaxWeightHistory, type RewardAllocationMaxWeightHistory_Filter, RewardAllocationMaxWeightHistory_OrderBy, type RewardAllocationQueue, type RewardAllocationQueue_Filter, RewardAllocationQueue_OrderBy, type RewardAllocationQueuesArgs, type RewardAllocationWeight, type RewardAllocationWeight_Filter, RewardAllocationWeight_OrderBy, type RewardAllocationWeightsArgs, type RewardAllocation_Filter, RewardAllocation_OrderBy, type RewardDistribution, type RewardDistributionByVault, type RewardDistributionByVault_Filter, RewardDistributionByVault_OrderBy, type RewardDistribution_Filter, RewardDistribution_OrderBy, type RewardsDistributionByValidator, type RewardsDistributionByValidator_Filter, RewardsDistributionByValidator_OrderBy, type Scalars, StakingToken, type StakingTokenFragment, type TokenInformation, type TokenInformationActiveIncentivesArgs, type TokenInformationDistributedIncentivesArgs, type TokenInformationDistributedIncentivesByVaultArgs, type TokenInformationReceivedValidatorsArgs, type TokenInformationStakedVaultsArgs, type TokenInformationWhitelistedVaultsArgs, type TokenInformation_Filter, TokenInformation_OrderBy, type UserBoost, type UserBoost_Filter, UserBoost_OrderBy, type UserFeeHistory, type UserFeeHistory_Filter, UserFeeHistory_OrderBy, type UserVaultStake, type UserVaultStake_Filter, UserVaultStake_OrderBy, type Validator, type ValidatorBlockRewardsArgs, type ValidatorBoostHistoryArgs, type ValidatorBoostStatsArgs, type ValidatorCommissionHistory, type ValidatorCommissionHistory_Filter, ValidatorCommissionHistory_OrderBy, type ValidatorDistributedIncentivesArgs, ValidatorMinimal, type ValidatorMinimalFragment, type ValidatorReceivedIncentiveTokensArgs, type ValidatorRewardAllocationActivationHistoryArgs, type ValidatorRewardAllocationQueueHistoryArgs, type ValidatorUserBoostsArgs, type Validator_Filter, Validator_OrderBy, type Vault, type VaultActiveIncentivesArgs, type VaultDistributedIncentivesArgs, type VaultRewardAllocationWeightsArgs, type VaultStakedUsersArgs, type VaultWhitelistedTokensArgs, type Vault_Filter, Vault_OrderBy, type WhitelistedToken, type WhitelistedToken_Filter, WhitelistedToken_OrderBy, type _Block_, type _Meta_, _SubgraphErrorPolicy_, result as default };
4213
+ export { type ActiveIncentive, type ActiveIncentive_Filter, ActiveIncentive_OrderBy, Aggregation_Current, Aggregation_Interval, type BlockChangedFilter, type BlockReward, type BlockRewardStats, BlockRewardStatsByValidator, type BlockRewardStatsByValidatorFragment, type BlockRewardStatsByValidator_Filter, BlockRewardStatsByValidator_OrderBy, type BlockRewardStats_Filter, BlockRewardStats_OrderBy, type BlockReward_Filter, BlockReward_OrderBy, type BlockStats, type BlockStatsByValidator, type BlockStatsByValidator_Filter, BlockStatsByValidator_OrderBy, type BlockStats_Filter, BlockStats_OrderBy, type Block_Height, type Boost, BoostByValidator, type BoostByValidatorFragment, type BoostByValidator_Filter, BoostByValidator_OrderBy, type Boost_Filter, Boost_OrderBy, type Exact, GetIncentiveFeeClaimStats, type GetIncentiveFeeClaimStatsQuery, type GetIncentiveFeeClaimStatsQueryVariables, GetValidatorAnalytics, type GetValidatorAnalyticsQuery, type GetValidatorAnalyticsQueryVariables, GetValidatorBlockStats, type GetValidatorBlockStatsQuery, type GetValidatorBlockStatsQueryVariables, GetValidatorIncentiveDistribution, type GetValidatorIncentiveDistributionQuery, type GetValidatorIncentiveDistributionQueryVariables, type GlobalInfo, type GlobalInfo_Filter, GlobalInfo_OrderBy, type GlobalRewardDistribution, type GlobalRewardDistribution_Filter, GlobalRewardDistribution_OrderBy, type IncentiveDistribution, type IncentiveDistributionByValidator, type IncentiveDistributionByValidator_Filter, IncentiveDistributionByValidator_OrderBy, type IncentiveDistributionByVault, type IncentiveDistributionByVault_Filter, IncentiveDistributionByVault_OrderBy, type IncentiveDistribution_Filter, IncentiveDistribution_OrderBy, type IncentiveFeeClaim, type IncentiveFeeClaimStats, type IncentiveFeeClaimStats_Filter, IncentiveFeeClaimStats_OrderBy, type IncentiveFeeClaim_Filter, IncentiveFeeClaim_OrderBy, type IncentiveFeePayoutAmountHistory, type IncentiveFeePayoutAmountHistory_Filter, IncentiveFeePayoutAmountHistory_OrderBy, type IncentiveTokensByValidator, type IncentiveTokensByValidator_Filter, IncentiveTokensByValidator_OrderBy, type Incremental, type InputMaybe, LogLevel, type MakeEmpty, type MakeMaybe, type MakeOptional, type Maybe, OrderDirection, type PossibleTypesResultData, type Query, type QueryActiveIncentiveArgs, type QueryActiveIncentivesArgs, type QueryBlockRewardArgs, type QueryBlockRewardStatsByValidatorsArgs, type QueryBlockRewardStats_CollectionArgs, type QueryBlockRewardsArgs, type QueryBlockStatsByValidatorsArgs, type QueryBlockStats_CollectionArgs, type QueryBoostArgs, type QueryBoostByValidatorsArgs, type QueryBoostsArgs, type QueryGlobalInfoArgs, type QueryGlobalInfosArgs, type QueryGlobalRewardDistributionsArgs, type QueryIncentiveDistributionArgs, type QueryIncentiveDistributionByValidatorsArgs, type QueryIncentiveDistributionByVaultsArgs, type QueryIncentiveDistributionsArgs, type QueryIncentiveFeeClaimArgs, type QueryIncentiveFeeClaimStats_CollectionArgs, type QueryIncentiveFeeClaimsArgs, type QueryIncentiveFeePayoutAmountHistoriesArgs, type QueryIncentiveFeePayoutAmountHistoryArgs, type QueryIncentiveTokensByValidatorArgs, type QueryIncentiveTokensByValidatorsArgs, type QueryRewardAllocationActivationArgs, type QueryRewardAllocationActivationsArgs, type QueryRewardAllocationArgs, type QueryRewardAllocationMaxWeightHistoriesArgs, type QueryRewardAllocationMaxWeightHistoryArgs, type QueryRewardAllocationQueueArgs, type QueryRewardAllocationQueuesArgs, type QueryRewardAllocationWeightArgs, type QueryRewardAllocationWeightsArgs, type QueryRewardAllocationsArgs, type QueryRewardDistributionArgs, type QueryRewardDistributionByVaultsArgs, type QueryRewardDistributionsArgs, type QueryRewardsDistributionByValidatorsArgs, type QueryTokenInformationArgs, type QueryTokenInformationsArgs, type QueryUserBoostArgs, type QueryUserBoostsArgs, type QueryUserFeeHistoriesArgs, type QueryUserFeeHistoryArgs, type QueryUserVaultStakeArgs, type QueryUserVaultStakesArgs, type QueryValidatorArgs, type QueryValidatorCommissionHistoriesArgs, type QueryValidatorCommissionHistoryArgs, type QueryValidatorsArgs, type QueryVaultArgs, type QueryVaultsArgs, type QueryWhitelistedTokenArgs, type QueryWhitelistedTokensArgs, type Query_LogsArgs, type Query_MetaArgs, type RewardAllocation, type RewardAllocationActivation, type RewardAllocationActivation_Filter, RewardAllocationActivation_OrderBy, type RewardAllocationActivationsArgs, type RewardAllocationMaxWeightHistory, type RewardAllocationMaxWeightHistory_Filter, RewardAllocationMaxWeightHistory_OrderBy, type RewardAllocationQueue, type RewardAllocationQueue_Filter, RewardAllocationQueue_OrderBy, type RewardAllocationQueuesArgs, type RewardAllocationWeight, type RewardAllocationWeight_Filter, RewardAllocationWeight_OrderBy, type RewardAllocationWeightsArgs, type RewardAllocation_Filter, RewardAllocation_OrderBy, type RewardDistribution, type RewardDistributionByVault, type RewardDistributionByVault_Filter, RewardDistributionByVault_OrderBy, type RewardDistribution_Filter, RewardDistribution_OrderBy, type RewardsDistributionByValidator, type RewardsDistributionByValidator_Filter, RewardsDistributionByValidator_OrderBy, type Scalars, StakingToken, type StakingTokenFragment, type TokenInformation, type TokenInformationActiveIncentivesArgs, type TokenInformationDistributedIncentivesArgs, type TokenInformationDistributedIncentivesByVaultArgs, type TokenInformationReceivedValidatorsArgs, type TokenInformationStakedVaultsArgs, type TokenInformationWhitelistedVaultsArgs, type TokenInformation_Filter, TokenInformation_OrderBy, type UserBoost, type UserBoost_Filter, UserBoost_OrderBy, type UserFeeHistory, type UserFeeHistory_Filter, UserFeeHistory_OrderBy, type UserVaultStake, type UserVaultStake_Filter, UserVaultStake_OrderBy, type Validator, type ValidatorBlockRewardsArgs, type ValidatorBoostHistoryArgs, type ValidatorBoostStatsArgs, type ValidatorCommissionHistory, type ValidatorCommissionHistory_Filter, ValidatorCommissionHistory_OrderBy, type ValidatorDistributedIncentivesArgs, ValidatorMinimal, type ValidatorMinimalFragment, type ValidatorReceivedIncentiveTokensArgs, type ValidatorRewardAllocationActivationHistoryArgs, type ValidatorRewardAllocationQueueHistoryArgs, type ValidatorUserBoostsArgs, type Validator_Filter, Validator_OrderBy, type Vault, type VaultActiveIncentivesArgs, type VaultDistributedIncentivesArgs, type VaultRewardAllocationWeightsArgs, type VaultStakedUsersArgs, type VaultWhitelistedTokensArgs, type Vault_Filter, Vault_OrderBy, type WhitelistedToken, type WhitelistedToken_Filter, WhitelistedToken_OrderBy, type _Block_, type _LogArgument_, type _LogMeta_, type _Log_, type _Meta_, _SubgraphErrorPolicy_, result as default };
@@ -349,6 +349,14 @@ var IncentiveTokensByValidator_OrderBy = /* @__PURE__ */ ((IncentiveTokensByVali
349
349
  IncentiveTokensByValidator_OrderBy2["ValidatorUsersQueuedDropBoostCount"] = "validator__usersQueuedDropBoostCount";
350
350
  return IncentiveTokensByValidator_OrderBy2;
351
351
  })(IncentiveTokensByValidator_OrderBy || {});
352
+ var LogLevel = /* @__PURE__ */ ((LogLevel2) => {
353
+ LogLevel2["Critical"] = "CRITICAL";
354
+ LogLevel2["Debug"] = "DEBUG";
355
+ LogLevel2["Error"] = "ERROR";
356
+ LogLevel2["Info"] = "INFO";
357
+ LogLevel2["Warning"] = "WARNING";
358
+ return LogLevel2;
359
+ })(LogLevel || {});
352
360
  var OrderDirection = /* @__PURE__ */ ((OrderDirection2) => {
353
361
  OrderDirection2["Asc"] = "asc";
354
362
  OrderDirection2["Desc"] = "desc";
@@ -834,6 +842,7 @@ export {
834
842
  IncentiveFeeClaim_OrderBy,
835
843
  IncentiveFeePayoutAmountHistory_OrderBy,
836
844
  IncentiveTokensByValidator_OrderBy,
845
+ LogLevel,
837
846
  OrderDirection,
838
847
  RewardAllocationActivation_OrderBy,
839
848
  RewardAllocationMaxWeightHistory_OrderBy,
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@berachain/graphql",
3
- "version": "0.5.0",
3
+ "version": "0.5.1-beta.1",
4
4
  "type": "module",
5
5
  "files": [
6
6
  "dist"
@@ -31,7 +31,7 @@
31
31
  "openapi-typescript": "7.13.0",
32
32
  "tsup": "8.5.1",
33
33
  "typescript": "5.5.4",
34
- "@berachain/config": "^0.1.17"
34
+ "@berachain/config": "^0.1.18-beta.1"
35
35
  },
36
36
  "exports": {
37
37
  "./governance": {