diff --git a/modules/subgraphs/beets-bar-subgraph/generated/beets-bar-subgraph-types.ts b/modules/subgraphs/beets-bar-subgraph/generated/beets-bar-subgraph-types.ts index 23b17b91..426f3ac9 100644 --- a/modules/subgraphs/beets-bar-subgraph/generated/beets-bar-subgraph-types.ts +++ b/modules/subgraphs/beets-bar-subgraph/generated/beets-bar-subgraph-types.ts @@ -17,8 +17,14 @@ export type Scalars = { BigInt: string; Bytes: string; Int8: any; + Timestamp: any; }; +export enum Aggregation_Interval { + Day = 'day', + Hour = 'hour', +} + export type Bar = { __typename?: 'Bar'; address: Scalars['Bytes']; @@ -459,6 +465,8 @@ export type _Block_ = { hash?: Maybe; /** The block number */ number: Scalars['Int']; + /** The hash of the parent block */ + parentHash?: Maybe; /** Integer representation of the timestamp stored in blocks for the chain */ timestamp?: Maybe; };