@tokemak/graph-cli 0.1.3 → 0.2.0

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.
@@ -25165,6 +25165,7 @@ export type UserActivity = {
25165
25165
  id: Scalars['String']['output'];
25166
25166
  /** Block timestamp */
25167
25167
  timestamp: Scalars['BigInt']['output'];
25168
+ transactionHash?: Maybe<Scalars['Bytes']['output']>;
25168
25169
  /** Activity type */
25169
25170
  type: UserActivityType;
25170
25171
  /** User address */
@@ -25237,6 +25238,16 @@ export type UserActivity_Filter = {
25237
25238
  timestamp_lte?: InputMaybe<Scalars['BigInt']['input']>;
25238
25239
  timestamp_not?: InputMaybe<Scalars['BigInt']['input']>;
25239
25240
  timestamp_not_in?: InputMaybe<Array<Scalars['BigInt']['input']>>;
25241
+ transactionHash?: InputMaybe<Scalars['Bytes']['input']>;
25242
+ transactionHash_contains?: InputMaybe<Scalars['Bytes']['input']>;
25243
+ transactionHash_gt?: InputMaybe<Scalars['Bytes']['input']>;
25244
+ transactionHash_gte?: InputMaybe<Scalars['Bytes']['input']>;
25245
+ transactionHash_in?: InputMaybe<Array<Scalars['Bytes']['input']>>;
25246
+ transactionHash_lt?: InputMaybe<Scalars['Bytes']['input']>;
25247
+ transactionHash_lte?: InputMaybe<Scalars['Bytes']['input']>;
25248
+ transactionHash_not?: InputMaybe<Scalars['Bytes']['input']>;
25249
+ transactionHash_not_contains?: InputMaybe<Scalars['Bytes']['input']>;
25250
+ transactionHash_not_in?: InputMaybe<Array<Scalars['Bytes']['input']>>;
25240
25251
  type?: InputMaybe<UserActivityType>;
25241
25252
  type_in?: InputMaybe<Array<UserActivityType>>;
25242
25253
  type_not?: InputMaybe<UserActivityType>;
@@ -25256,6 +25267,7 @@ export declare enum UserActivity_OrderBy {
25256
25267
  Data = "data",
25257
25268
  Id = "id",
25258
25269
  Timestamp = "timestamp",
25270
+ TransactionHash = "transactionHash",
25259
25271
  Type = "type",
25260
25272
  User = "user"
25261
25273
  }
@@ -30277,6 +30289,7 @@ export type GetUserActivityQuery = {
30277
30289
  timestamp: any;
30278
30290
  type: UserActivityType;
30279
30291
  data: string;
30292
+ transactionHash?: any | null;
30280
30293
  }>;
30281
30294
  };
30282
30295
  export type GetUserAutopoolBalanceChangeHistoryQueryVariables = Exact<{