From 463da881635f4b3137d413d4446e36de00dacc2d Mon Sep 17 00:00:00 2001 From: Sorizen Date: Mon, 2 Dec 2024 13:24:42 +0200 Subject: [PATCH] graph ql implementation --- .eslintrc.js | 1 + codegen.ts | 22 + .../pool/get-total-staked-per-day.graphql | 10 + .../get-referrers-total-claimed.graphql | 10 + ...et-deposited-amount-user-referrers.graphql | 11 + .../user/get-specific-user-referrers.graphql | 23 + .../core/user/get-user-yield-per-day.graphql | 61 + package.json | 7 +- src/types/graphql/index.ts | 2781 ++++++++++++++++ yarn.lock | 2792 ++++++++++++++++- 10 files changed, 5596 insertions(+), 122 deletions(-) create mode 100644 codegen.ts create mode 100644 graphql/core/pool/get-total-staked-per-day.graphql create mode 100644 graphql/core/ref-data/get-referrers-total-claimed.graphql create mode 100644 graphql/core/user/get-deposited-amount-user-referrers.graphql create mode 100644 graphql/core/user/get-specific-user-referrers.graphql create mode 100644 graphql/core/user/get-user-yield-per-day.graphql create mode 100644 src/types/graphql/index.ts diff --git a/.eslintrc.js b/.eslintrc.js index 6eb4fc32..24e9865e 100644 --- a/.eslintrc.js +++ b/.eslintrc.js @@ -155,4 +155,5 @@ module.exports = { 'promise/prefer-await-to-then': 'warn', '@typescript-eslint/no-non-null-assertion': 'off', }, + ignorePatterns: ['src/types/contracts/**/*', 'src/types/graphql/**/*'], } diff --git a/codegen.ts b/codegen.ts new file mode 100644 index 00000000..7e89c049 --- /dev/null +++ b/codegen.ts @@ -0,0 +1,22 @@ +import type { CodegenConfig } from '@graphql-codegen/cli' +import * as path from 'path' + +const config: CodegenConfig = { + overwrite: true, + schema: ['https://api.studio.thegraph.com/query/73688/kkk/version/latest'], + documents: [ + path.resolve(__dirname, './graphql/**/*.graphql'), + path.resolve(__dirname, './graphql/**/**/*.graphql'), + ], + generates: { + ['src/types/graphql/index.ts']: { + plugins: [ + 'typescript', + 'typescript-operations', + 'typescript-document-nodes', + ], + }, + }, +} + +export default config diff --git a/graphql/core/pool/get-total-staked-per-day.graphql b/graphql/core/pool/get-total-staked-per-day.graphql new file mode 100644 index 00000000..0167e07b --- /dev/null +++ b/graphql/core/pool/get-total-staked-per-day.graphql @@ -0,0 +1,10 @@ +query GetTotalStakedPerDay($date: String!, $timestamp: BigInt!) { + poolInteractions( + first: 1 + orderDirection: desc + where: { timestamp_lte: $timestamp, pool: $date } + orderBy: timestamp + ) { + totalStaked + } +} diff --git a/graphql/core/ref-data/get-referrers-total-claimed.graphql b/graphql/core/ref-data/get-referrers-total-claimed.graphql new file mode 100644 index 00000000..dd68f9a2 --- /dev/null +++ b/graphql/core/ref-data/get-referrers-total-claimed.graphql @@ -0,0 +1,10 @@ +query GetReferrersTotalClaimed($poolId: BigInt!, $user: Bytes!) { + referrers( + where: { + user: $user, + poolId: $poolId + } + ) { + totalClaimed + } +} diff --git a/graphql/core/user/get-deposited-amount-user-referrers.graphql b/graphql/core/user/get-deposited-amount-user-referrers.graphql new file mode 100644 index 00000000..ba5380e5 --- /dev/null +++ b/graphql/core/user/get-deposited-amount-user-referrers.graphql @@ -0,0 +1,11 @@ +query GetDepositedAmountUserReferrers($poolId: BigInt!, $referrer: Bytes!) { + userReferrers( + where: { + poolId: $poolId, + referrer: $referrer, + amount_gt: "0" + } + ) { + amount + } +} diff --git a/graphql/core/user/get-specific-user-referrers.graphql b/graphql/core/user/get-specific-user-referrers.graphql new file mode 100644 index 00000000..4686624c --- /dev/null +++ b/graphql/core/user/get-specific-user-referrers.graphql @@ -0,0 +1,23 @@ +query GetSpecificUserReferrers( + $poolId: BigInt! + $referrer: Bytes! + $first: Int! + $skip: Int! + $orderDirection: OrderDirection +) { + userReferrers( + where: { + poolId: $poolId, + referrer: $referrer, + amount_gt: "0" + }, + first: $first, + skip: $skip, + orderDirection: $orderDirection + ) { + amount + id + poolId + user + } +} diff --git a/graphql/core/user/get-user-yield-per-day.graphql b/graphql/core/user/get-user-yield-per-day.graphql new file mode 100644 index 00000000..b360f1e2 --- /dev/null +++ b/graphql/core/user/get-user-yield-per-day.graphql @@ -0,0 +1,61 @@ +extend type Query { + toBytes(value: BigInt!): Bytes! +} + +query GetUserYieldPerDay( + $poolId: BigInt!, + $poolIdBytes: Bytes!, + $user: Bytes!, + $fromTimestamp: BigInt!, + $toTimestamp: BigInt! +) { + initialUserInteractions: userInteractions ( + orderBy: timestamp + orderDirection: desc + where: { + user: $user, + poolId: $poolId, + timestamp_lt: $fromTimestamp + } + first: 1 + ) { + timestamp + rate + deposited + claimedRewards + pendingRewards + } + + userInteractions ( + orderBy: timestamp + orderDirection: asc + where: { + user: $user, + poolId: $poolId, + timestamp_gt: $fromTimestamp, + timestamp_lt: $toTimestamp + } + ) { + timestamp + rate + deposited + claimedRewards + pendingRewards + } + + poolInteractions ( + orderBy: timestamp + orderDirection: desc + where: { + rate_gt: 0, + timestamp_lt: $toTimestamp, + pool_: { + id: $poolIdBytes + } + } + first: 1 + ) { + timestamp + rate + } +} diff --git a/package.json b/package.json index d42e7ef7..5ab9fe5a 100644 --- a/package.json +++ b/package.json @@ -16,7 +16,8 @@ "lint:scripts": "eslint \"{src,config}/**/*.{vue,js,ts}\" --cache --fix --max-warnings=0", "preview": "vite preview", "rsc": "node scripts/release-sanity-check.mjs", - "generate-ether-types": "typechain --target=ethers-v5 'src/abi/**/*.json' --out-dir src/types/contracts" + "generate-ether-types": "typechain --target=ethers-v5 'src/abi/**/*.json' --out-dir src/types/contracts", + "generate-graphql-types": "graphql-codegen --config codegen.ts" }, "dependencies": { "@apollo/client": "^3.9.10", @@ -24,6 +25,10 @@ "@distributedlab/tools": "^1.0.0-rc.13", "@ethersproject/abi": "^5.7.0", "@ethersproject/providers": "^5.7.2", + "@graphql-codegen/cli": "^5.0.3", + "@graphql-codegen/typescript": "^4.1.2", + "@graphql-codegen/typescript-document-nodes": "^4.0.12", + "@graphql-codegen/typescript-operations": "^4.4.0", "@uniswap/sdk-core": "^5.8.0", "@uniswap/smart-order-router": "^4.6.0", "@uniswap/v2-core": "^1.0.1", diff --git a/src/types/graphql/index.ts b/src/types/graphql/index.ts new file mode 100644 index 00000000..8bfa9f3d --- /dev/null +++ b/src/types/graphql/index.ts @@ -0,0 +1,2781 @@ +import gql from 'graphql-tag' +export type Maybe = T | null +export type InputMaybe = Maybe +export type Exact = { + [K in keyof T]: T[K] +} +export type MakeOptional = Omit & { + [SubKey in K]?: Maybe +} +export type MakeMaybe = Omit & { + [SubKey in K]: Maybe +} +export type MakeEmpty< + T extends { [key: string]: unknown }, + K extends keyof T, +> = { [_ in K]?: never } +export type Incremental = + | T + | { + [P in keyof T]?: P extends ' $fragmentName' | '__typename' ? T[P] : never + } +/** All built-in and custom scalars, mapped to their actual values */ +export type Scalars = { + ID: { input: string; output: string } + String: { input: string; output: string } + Boolean: { input: boolean; output: boolean } + Int: { input: number; output: number } + Float: { input: number; output: number } + BigDecimal: { input: any; output: any } + BigInt: { input: any; output: any } + Bytes: { input: any; output: any } + Int8: { input: any; output: any } + Timestamp: { input: any; output: any } +} + +export type AdminChanged = { + __typename?: 'AdminChanged' + blockNumber: Scalars['BigInt']['output'] + blockTimestamp: Scalars['BigInt']['output'] + id: Scalars['Bytes']['output'] + newAdmin: Scalars['Bytes']['output'] + previousAdmin: Scalars['Bytes']['output'] + transactionHash: Scalars['Bytes']['output'] +} + +export type AdminChanged_Filter = { + /** Filter for the block changed event. */ + _change_block?: InputMaybe + and?: InputMaybe>> + blockNumber?: InputMaybe + blockNumber_gt?: InputMaybe + blockNumber_gte?: InputMaybe + blockNumber_in?: InputMaybe> + blockNumber_lt?: InputMaybe + blockNumber_lte?: InputMaybe + blockNumber_not?: InputMaybe + blockNumber_not_in?: InputMaybe> + blockTimestamp?: InputMaybe + blockTimestamp_gt?: InputMaybe + blockTimestamp_gte?: InputMaybe + blockTimestamp_in?: InputMaybe> + blockTimestamp_lt?: InputMaybe + blockTimestamp_lte?: InputMaybe + blockTimestamp_not?: InputMaybe + blockTimestamp_not_in?: InputMaybe> + id?: InputMaybe + id_contains?: InputMaybe + id_gt?: InputMaybe + id_gte?: InputMaybe + id_in?: InputMaybe> + id_lt?: InputMaybe + id_lte?: InputMaybe + id_not?: InputMaybe + id_not_contains?: InputMaybe + id_not_in?: InputMaybe> + newAdmin?: InputMaybe + newAdmin_contains?: InputMaybe + newAdmin_gt?: InputMaybe + newAdmin_gte?: InputMaybe + newAdmin_in?: InputMaybe> + newAdmin_lt?: InputMaybe + newAdmin_lte?: InputMaybe + newAdmin_not?: InputMaybe + newAdmin_not_contains?: InputMaybe + newAdmin_not_in?: InputMaybe> + or?: InputMaybe>> + previousAdmin?: InputMaybe + previousAdmin_contains?: InputMaybe + previousAdmin_gt?: InputMaybe + previousAdmin_gte?: InputMaybe + previousAdmin_in?: InputMaybe> + previousAdmin_lt?: InputMaybe + previousAdmin_lte?: InputMaybe + previousAdmin_not?: InputMaybe + previousAdmin_not_contains?: InputMaybe + previousAdmin_not_in?: InputMaybe> + transactionHash?: InputMaybe + transactionHash_contains?: InputMaybe + transactionHash_gt?: InputMaybe + transactionHash_gte?: InputMaybe + transactionHash_in?: InputMaybe> + transactionHash_lt?: InputMaybe + transactionHash_lte?: InputMaybe + transactionHash_not?: InputMaybe + transactionHash_not_contains?: InputMaybe + transactionHash_not_in?: InputMaybe> +} + +export enum AdminChanged_OrderBy { + BlockNumber = 'blockNumber', + BlockTimestamp = 'blockTimestamp', + Id = 'id', + NewAdmin = 'newAdmin', + PreviousAdmin = 'previousAdmin', + TransactionHash = 'transactionHash', +} + +export enum Aggregation_Interval { + Day = 'day', + Hour = 'hour', +} + +export type BeaconUpgraded = { + __typename?: 'BeaconUpgraded' + beacon: Scalars['Bytes']['output'] + blockNumber: Scalars['BigInt']['output'] + blockTimestamp: Scalars['BigInt']['output'] + id: Scalars['Bytes']['output'] + transactionHash: Scalars['Bytes']['output'] +} + +export type BeaconUpgraded_Filter = { + /** Filter for the block changed event. */ + _change_block?: InputMaybe + and?: InputMaybe>> + beacon?: InputMaybe + beacon_contains?: InputMaybe + beacon_gt?: InputMaybe + beacon_gte?: InputMaybe + beacon_in?: InputMaybe> + beacon_lt?: InputMaybe + beacon_lte?: InputMaybe + beacon_not?: InputMaybe + beacon_not_contains?: InputMaybe + beacon_not_in?: InputMaybe> + blockNumber?: InputMaybe + blockNumber_gt?: InputMaybe + blockNumber_gte?: InputMaybe + blockNumber_in?: InputMaybe> + blockNumber_lt?: InputMaybe + blockNumber_lte?: InputMaybe + blockNumber_not?: InputMaybe + blockNumber_not_in?: InputMaybe> + blockTimestamp?: InputMaybe + blockTimestamp_gt?: InputMaybe + blockTimestamp_gte?: InputMaybe + blockTimestamp_in?: InputMaybe> + blockTimestamp_lt?: InputMaybe + blockTimestamp_lte?: InputMaybe + blockTimestamp_not?: InputMaybe + blockTimestamp_not_in?: InputMaybe> + id?: InputMaybe + id_contains?: InputMaybe + id_gt?: InputMaybe + id_gte?: InputMaybe + id_in?: InputMaybe> + id_lt?: InputMaybe + id_lte?: InputMaybe + id_not?: InputMaybe + id_not_contains?: InputMaybe + id_not_in?: InputMaybe> + or?: InputMaybe>> + transactionHash?: InputMaybe + transactionHash_contains?: InputMaybe + transactionHash_gt?: InputMaybe + transactionHash_gte?: InputMaybe + transactionHash_in?: InputMaybe> + transactionHash_lt?: InputMaybe + transactionHash_lte?: InputMaybe + transactionHash_not?: InputMaybe + transactionHash_not_contains?: InputMaybe + transactionHash_not_in?: InputMaybe> +} + +export enum BeaconUpgraded_OrderBy { + Beacon = 'beacon', + BlockNumber = 'blockNumber', + BlockTimestamp = 'blockTimestamp', + Id = 'id', + TransactionHash = 'transactionHash', +} + +export type BlockChangedFilter = { + number_gte: Scalars['Int']['input'] +} + +export type Block_Height = { + hash?: InputMaybe + number?: InputMaybe + number_gte?: InputMaybe +} + +export type Initialized = { + __typename?: 'Initialized' + blockNumber: Scalars['BigInt']['output'] + blockTimestamp: Scalars['BigInt']['output'] + id: Scalars['Bytes']['output'] + transactionHash: Scalars['Bytes']['output'] + version: Scalars['Int']['output'] +} + +export type Initialized_Filter = { + /** Filter for the block changed event. */ + _change_block?: InputMaybe + and?: InputMaybe>> + blockNumber?: InputMaybe + blockNumber_gt?: InputMaybe + blockNumber_gte?: InputMaybe + blockNumber_in?: InputMaybe> + blockNumber_lt?: InputMaybe + blockNumber_lte?: InputMaybe + blockNumber_not?: InputMaybe + blockNumber_not_in?: InputMaybe> + blockTimestamp?: InputMaybe + blockTimestamp_gt?: InputMaybe + blockTimestamp_gte?: InputMaybe + blockTimestamp_in?: InputMaybe> + blockTimestamp_lt?: InputMaybe + blockTimestamp_lte?: InputMaybe + blockTimestamp_not?: InputMaybe + blockTimestamp_not_in?: InputMaybe> + id?: InputMaybe + id_contains?: InputMaybe + id_gt?: InputMaybe + id_gte?: InputMaybe + id_in?: InputMaybe> + id_lt?: InputMaybe + id_lte?: InputMaybe + id_not?: InputMaybe + id_not_contains?: InputMaybe + id_not_in?: InputMaybe> + or?: InputMaybe>> + transactionHash?: InputMaybe + transactionHash_contains?: InputMaybe + transactionHash_gt?: InputMaybe + transactionHash_gte?: InputMaybe + transactionHash_in?: InputMaybe> + transactionHash_lt?: InputMaybe + transactionHash_lte?: InputMaybe + transactionHash_not?: InputMaybe + transactionHash_not_contains?: InputMaybe + transactionHash_not_in?: InputMaybe> + version?: InputMaybe + version_gt?: InputMaybe + version_gte?: InputMaybe + version_in?: InputMaybe> + version_lt?: InputMaybe + version_lte?: InputMaybe + version_not?: InputMaybe + version_not_in?: InputMaybe> +} + +export enum Initialized_OrderBy { + BlockNumber = 'blockNumber', + BlockTimestamp = 'blockTimestamp', + Id = 'id', + TransactionHash = 'transactionHash', + Version = 'version', +} + +/** + * The entity counts interactions in single tx + * + */ +export type InteractionCount = { + __typename?: 'InteractionCount' + /** The counter of interactions in single tx */ + count: Scalars['BigInt']['output'] + /** The tx hash */ + id: Scalars['Bytes']['output'] +} + +export type InteractionCount_Filter = { + /** Filter for the block changed event. */ + _change_block?: InputMaybe + and?: InputMaybe>> + count?: InputMaybe + count_gt?: InputMaybe + count_gte?: InputMaybe + count_in?: InputMaybe> + count_lt?: InputMaybe + count_lte?: InputMaybe + count_not?: InputMaybe + count_not_in?: InputMaybe> + id?: InputMaybe + id_contains?: InputMaybe + id_gt?: InputMaybe + id_gte?: InputMaybe + id_in?: InputMaybe> + id_lt?: InputMaybe + id_lte?: InputMaybe + id_not?: InputMaybe + id_not_contains?: InputMaybe + id_not_in?: InputMaybe> + or?: InputMaybe>> +} + +export enum InteractionCount_OrderBy { + Count = 'count', + Id = 'id', +} + +/** Defines the order direction, either ascending or descending */ +export enum OrderDirection { + Asc = 'asc', + Desc = 'desc', +} + +export type OverplusBridged = { + __typename?: 'OverplusBridged' + amount: Scalars['BigInt']['output'] + blockNumber: Scalars['BigInt']['output'] + blockTimestamp: Scalars['BigInt']['output'] + id: Scalars['Bytes']['output'] + transactionHash: Scalars['Bytes']['output'] + uniqueId: Scalars['Bytes']['output'] +} + +export type OverplusBridged_Filter = { + /** Filter for the block changed event. */ + _change_block?: InputMaybe + amount?: InputMaybe + amount_gt?: InputMaybe + amount_gte?: InputMaybe + amount_in?: InputMaybe> + amount_lt?: InputMaybe + amount_lte?: InputMaybe + amount_not?: InputMaybe + amount_not_in?: InputMaybe> + and?: InputMaybe>> + blockNumber?: InputMaybe + blockNumber_gt?: InputMaybe + blockNumber_gte?: InputMaybe + blockNumber_in?: InputMaybe> + blockNumber_lt?: InputMaybe + blockNumber_lte?: InputMaybe + blockNumber_not?: InputMaybe + blockNumber_not_in?: InputMaybe> + blockTimestamp?: InputMaybe + blockTimestamp_gt?: InputMaybe + blockTimestamp_gte?: InputMaybe + blockTimestamp_in?: InputMaybe> + blockTimestamp_lt?: InputMaybe + blockTimestamp_lte?: InputMaybe + blockTimestamp_not?: InputMaybe + blockTimestamp_not_in?: InputMaybe> + id?: InputMaybe + id_contains?: InputMaybe + id_gt?: InputMaybe + id_gte?: InputMaybe + id_in?: InputMaybe> + id_lt?: InputMaybe + id_lte?: InputMaybe + id_not?: InputMaybe + id_not_contains?: InputMaybe + id_not_in?: InputMaybe> + or?: InputMaybe>> + transactionHash?: InputMaybe + transactionHash_contains?: InputMaybe + transactionHash_gt?: InputMaybe + transactionHash_gte?: InputMaybe + transactionHash_in?: InputMaybe> + transactionHash_lt?: InputMaybe + transactionHash_lte?: InputMaybe + transactionHash_not?: InputMaybe + transactionHash_not_contains?: InputMaybe + transactionHash_not_in?: InputMaybe> + uniqueId?: InputMaybe + uniqueId_contains?: InputMaybe + uniqueId_gt?: InputMaybe + uniqueId_gte?: InputMaybe + uniqueId_in?: InputMaybe> + uniqueId_lt?: InputMaybe + uniqueId_lte?: InputMaybe + uniqueId_not?: InputMaybe + uniqueId_not_contains?: InputMaybe + uniqueId_not_in?: InputMaybe> +} + +export enum OverplusBridged_OrderBy { + Amount = 'amount', + BlockNumber = 'blockNumber', + BlockTimestamp = 'blockTimestamp', + Id = 'id', + TransactionHash = 'transactionHash', + UniqueId = 'uniqueId', +} + +export type OwnershipTransferred = { + __typename?: 'OwnershipTransferred' + blockNumber: Scalars['BigInt']['output'] + blockTimestamp: Scalars['BigInt']['output'] + id: Scalars['Bytes']['output'] + newOwner: Scalars['Bytes']['output'] + previousOwner: Scalars['Bytes']['output'] + transactionHash: Scalars['Bytes']['output'] +} + +export type OwnershipTransferred_Filter = { + /** Filter for the block changed event. */ + _change_block?: InputMaybe + and?: InputMaybe>> + blockNumber?: InputMaybe + blockNumber_gt?: InputMaybe + blockNumber_gte?: InputMaybe + blockNumber_in?: InputMaybe> + blockNumber_lt?: InputMaybe + blockNumber_lte?: InputMaybe + blockNumber_not?: InputMaybe + blockNumber_not_in?: InputMaybe> + blockTimestamp?: InputMaybe + blockTimestamp_gt?: InputMaybe + blockTimestamp_gte?: InputMaybe + blockTimestamp_in?: InputMaybe> + blockTimestamp_lt?: InputMaybe + blockTimestamp_lte?: InputMaybe + blockTimestamp_not?: InputMaybe + blockTimestamp_not_in?: InputMaybe> + id?: InputMaybe + id_contains?: InputMaybe + id_gt?: InputMaybe + id_gte?: InputMaybe + id_in?: InputMaybe> + id_lt?: InputMaybe + id_lte?: InputMaybe + id_not?: InputMaybe + id_not_contains?: InputMaybe + id_not_in?: InputMaybe> + newOwner?: InputMaybe + newOwner_contains?: InputMaybe + newOwner_gt?: InputMaybe + newOwner_gte?: InputMaybe + newOwner_in?: InputMaybe> + newOwner_lt?: InputMaybe + newOwner_lte?: InputMaybe + newOwner_not?: InputMaybe + newOwner_not_contains?: InputMaybe + newOwner_not_in?: InputMaybe> + or?: InputMaybe>> + previousOwner?: InputMaybe + previousOwner_contains?: InputMaybe + previousOwner_gt?: InputMaybe + previousOwner_gte?: InputMaybe + previousOwner_in?: InputMaybe> + previousOwner_lt?: InputMaybe + previousOwner_lte?: InputMaybe + previousOwner_not?: InputMaybe + previousOwner_not_contains?: InputMaybe + previousOwner_not_in?: InputMaybe> + transactionHash?: InputMaybe + transactionHash_contains?: InputMaybe + transactionHash_gt?: InputMaybe + transactionHash_gte?: InputMaybe + transactionHash_in?: InputMaybe> + transactionHash_lt?: InputMaybe + transactionHash_lte?: InputMaybe + transactionHash_not?: InputMaybe + transactionHash_not_contains?: InputMaybe + transactionHash_not_in?: InputMaybe> +} + +export enum OwnershipTransferred_OrderBy { + BlockNumber = 'blockNumber', + BlockTimestamp = 'blockTimestamp', + Id = 'id', + NewOwner = 'newOwner', + PreviousOwner = 'previousOwner', + TransactionHash = 'transactionHash', +} + +export type Pool = { + __typename?: 'Pool' + claimLockPeriod: Scalars['BigInt']['output'] + decreaseInterval: Scalars['BigInt']['output'] + id: Scalars['Bytes']['output'] + initialReward: Scalars['BigInt']['output'] + interactions: Array + isPublic: Scalars['Boolean']['output'] + minimalStake: Scalars['BigInt']['output'] + payoutStart: Scalars['BigInt']['output'] + rewardDecrease: Scalars['BigInt']['output'] + totalStaked: Scalars['BigInt']['output'] + totalUsers: Scalars['BigInt']['output'] + withdrawLockPeriod: Scalars['BigInt']['output'] + withdrawLockPeriodAfterStake: Scalars['BigInt']['output'] +} + +export type PoolInteractionsArgs = { + first?: InputMaybe + orderBy?: InputMaybe + orderDirection?: InputMaybe + skip?: InputMaybe + where?: InputMaybe +} + +export type PoolCreated = { + __typename?: 'PoolCreated' + blockNumber: Scalars['BigInt']['output'] + blockTimestamp: Scalars['BigInt']['output'] + id: Scalars['Bytes']['output'] + poolId: Scalars['BigInt']['output'] + pool_claimLockPeriod: Scalars['BigInt']['output'] + pool_decreaseInterval: Scalars['BigInt']['output'] + pool_initialReward: Scalars['BigInt']['output'] + pool_isPublic: Scalars['Boolean']['output'] + pool_minimalStake: Scalars['BigInt']['output'] + pool_payoutStart: Scalars['BigInt']['output'] + pool_rewardDecrease: Scalars['BigInt']['output'] + pool_withdrawLockPeriod: Scalars['BigInt']['output'] + pool_withdrawLockPeriodAfterStake: Scalars['BigInt']['output'] + transactionHash: Scalars['Bytes']['output'] +} + +export type PoolCreated_Filter = { + /** Filter for the block changed event. */ + _change_block?: InputMaybe + and?: InputMaybe>> + blockNumber?: InputMaybe + blockNumber_gt?: InputMaybe + blockNumber_gte?: InputMaybe + blockNumber_in?: InputMaybe> + blockNumber_lt?: InputMaybe + blockNumber_lte?: InputMaybe + blockNumber_not?: InputMaybe + blockNumber_not_in?: InputMaybe> + blockTimestamp?: InputMaybe + blockTimestamp_gt?: InputMaybe + blockTimestamp_gte?: InputMaybe + blockTimestamp_in?: InputMaybe> + blockTimestamp_lt?: InputMaybe + blockTimestamp_lte?: InputMaybe + blockTimestamp_not?: InputMaybe + blockTimestamp_not_in?: InputMaybe> + id?: InputMaybe + id_contains?: InputMaybe + id_gt?: InputMaybe + id_gte?: InputMaybe + id_in?: InputMaybe> + id_lt?: InputMaybe + id_lte?: InputMaybe + id_not?: InputMaybe + id_not_contains?: InputMaybe + id_not_in?: InputMaybe> + or?: InputMaybe>> + poolId?: InputMaybe + poolId_gt?: InputMaybe + poolId_gte?: InputMaybe + poolId_in?: InputMaybe> + poolId_lt?: InputMaybe + poolId_lte?: InputMaybe + poolId_not?: InputMaybe + poolId_not_in?: InputMaybe> + pool_claimLockPeriod?: InputMaybe + pool_claimLockPeriod_gt?: InputMaybe + pool_claimLockPeriod_gte?: InputMaybe + pool_claimLockPeriod_in?: InputMaybe> + pool_claimLockPeriod_lt?: InputMaybe + pool_claimLockPeriod_lte?: InputMaybe + pool_claimLockPeriod_not?: InputMaybe + pool_claimLockPeriod_not_in?: InputMaybe> + pool_decreaseInterval?: InputMaybe + pool_decreaseInterval_gt?: InputMaybe + pool_decreaseInterval_gte?: InputMaybe + pool_decreaseInterval_in?: InputMaybe> + pool_decreaseInterval_lt?: InputMaybe + pool_decreaseInterval_lte?: InputMaybe + pool_decreaseInterval_not?: InputMaybe + pool_decreaseInterval_not_in?: InputMaybe> + pool_initialReward?: InputMaybe + pool_initialReward_gt?: InputMaybe + pool_initialReward_gte?: InputMaybe + pool_initialReward_in?: InputMaybe> + pool_initialReward_lt?: InputMaybe + pool_initialReward_lte?: InputMaybe + pool_initialReward_not?: InputMaybe + pool_initialReward_not_in?: InputMaybe> + pool_isPublic?: InputMaybe + pool_isPublic_in?: InputMaybe> + pool_isPublic_not?: InputMaybe + pool_isPublic_not_in?: InputMaybe> + pool_minimalStake?: InputMaybe + pool_minimalStake_gt?: InputMaybe + pool_minimalStake_gte?: InputMaybe + pool_minimalStake_in?: InputMaybe> + pool_minimalStake_lt?: InputMaybe + pool_minimalStake_lte?: InputMaybe + pool_minimalStake_not?: InputMaybe + pool_minimalStake_not_in?: InputMaybe> + pool_payoutStart?: InputMaybe + pool_payoutStart_gt?: InputMaybe + pool_payoutStart_gte?: InputMaybe + pool_payoutStart_in?: InputMaybe> + pool_payoutStart_lt?: InputMaybe + pool_payoutStart_lte?: InputMaybe + pool_payoutStart_not?: InputMaybe + pool_payoutStart_not_in?: InputMaybe> + pool_rewardDecrease?: InputMaybe + pool_rewardDecrease_gt?: InputMaybe + pool_rewardDecrease_gte?: InputMaybe + pool_rewardDecrease_in?: InputMaybe> + pool_rewardDecrease_lt?: InputMaybe + pool_rewardDecrease_lte?: InputMaybe + pool_rewardDecrease_not?: InputMaybe + pool_rewardDecrease_not_in?: InputMaybe> + pool_withdrawLockPeriod?: InputMaybe + pool_withdrawLockPeriodAfterStake?: InputMaybe + pool_withdrawLockPeriodAfterStake_gt?: InputMaybe + pool_withdrawLockPeriodAfterStake_gte?: InputMaybe + pool_withdrawLockPeriodAfterStake_in?: InputMaybe< + Array + > + pool_withdrawLockPeriodAfterStake_lt?: InputMaybe + pool_withdrawLockPeriodAfterStake_lte?: InputMaybe + pool_withdrawLockPeriodAfterStake_not?: InputMaybe + pool_withdrawLockPeriodAfterStake_not_in?: InputMaybe< + Array + > + pool_withdrawLockPeriod_gt?: InputMaybe + pool_withdrawLockPeriod_gte?: InputMaybe + pool_withdrawLockPeriod_in?: InputMaybe> + pool_withdrawLockPeriod_lt?: InputMaybe + pool_withdrawLockPeriod_lte?: InputMaybe + pool_withdrawLockPeriod_not?: InputMaybe + pool_withdrawLockPeriod_not_in?: InputMaybe> + transactionHash?: InputMaybe + transactionHash_contains?: InputMaybe + transactionHash_gt?: InputMaybe + transactionHash_gte?: InputMaybe + transactionHash_in?: InputMaybe> + transactionHash_lt?: InputMaybe + transactionHash_lte?: InputMaybe + transactionHash_not?: InputMaybe + transactionHash_not_contains?: InputMaybe + transactionHash_not_in?: InputMaybe> +} + +export enum PoolCreated_OrderBy { + BlockNumber = 'blockNumber', + BlockTimestamp = 'blockTimestamp', + Id = 'id', + PoolId = 'poolId', + PoolClaimLockPeriod = 'pool_claimLockPeriod', + PoolDecreaseInterval = 'pool_decreaseInterval', + PoolInitialReward = 'pool_initialReward', + PoolIsPublic = 'pool_isPublic', + PoolMinimalStake = 'pool_minimalStake', + PoolPayoutStart = 'pool_payoutStart', + PoolRewardDecrease = 'pool_rewardDecrease', + PoolWithdrawLockPeriod = 'pool_withdrawLockPeriod', + PoolWithdrawLockPeriodAfterStake = 'pool_withdrawLockPeriodAfterStake', + TransactionHash = 'transactionHash', +} + +export type PoolEdited = { + __typename?: 'PoolEdited' + blockNumber: Scalars['BigInt']['output'] + blockTimestamp: Scalars['BigInt']['output'] + id: Scalars['Bytes']['output'] + poolId: Scalars['BigInt']['output'] + pool_claimLockPeriod: Scalars['BigInt']['output'] + pool_decreaseInterval: Scalars['BigInt']['output'] + pool_initialReward: Scalars['BigInt']['output'] + pool_isPublic: Scalars['Boolean']['output'] + pool_minimalStake: Scalars['BigInt']['output'] + pool_payoutStart: Scalars['BigInt']['output'] + pool_rewardDecrease: Scalars['BigInt']['output'] + pool_withdrawLockPeriod: Scalars['BigInt']['output'] + pool_withdrawLockPeriodAfterStake: Scalars['BigInt']['output'] + transactionHash: Scalars['Bytes']['output'] +} + +export type PoolEdited_Filter = { + /** Filter for the block changed event. */ + _change_block?: InputMaybe + and?: InputMaybe>> + blockNumber?: InputMaybe + blockNumber_gt?: InputMaybe + blockNumber_gte?: InputMaybe + blockNumber_in?: InputMaybe> + blockNumber_lt?: InputMaybe + blockNumber_lte?: InputMaybe + blockNumber_not?: InputMaybe + blockNumber_not_in?: InputMaybe> + blockTimestamp?: InputMaybe + blockTimestamp_gt?: InputMaybe + blockTimestamp_gte?: InputMaybe + blockTimestamp_in?: InputMaybe> + blockTimestamp_lt?: InputMaybe + blockTimestamp_lte?: InputMaybe + blockTimestamp_not?: InputMaybe + blockTimestamp_not_in?: InputMaybe> + id?: InputMaybe + id_contains?: InputMaybe + id_gt?: InputMaybe + id_gte?: InputMaybe + id_in?: InputMaybe> + id_lt?: InputMaybe + id_lte?: InputMaybe + id_not?: InputMaybe + id_not_contains?: InputMaybe + id_not_in?: InputMaybe> + or?: InputMaybe>> + poolId?: InputMaybe + poolId_gt?: InputMaybe + poolId_gte?: InputMaybe + poolId_in?: InputMaybe> + poolId_lt?: InputMaybe + poolId_lte?: InputMaybe + poolId_not?: InputMaybe + poolId_not_in?: InputMaybe> + pool_claimLockPeriod?: InputMaybe + pool_claimLockPeriod_gt?: InputMaybe + pool_claimLockPeriod_gte?: InputMaybe + pool_claimLockPeriod_in?: InputMaybe> + pool_claimLockPeriod_lt?: InputMaybe + pool_claimLockPeriod_lte?: InputMaybe + pool_claimLockPeriod_not?: InputMaybe + pool_claimLockPeriod_not_in?: InputMaybe> + pool_decreaseInterval?: InputMaybe + pool_decreaseInterval_gt?: InputMaybe + pool_decreaseInterval_gte?: InputMaybe + pool_decreaseInterval_in?: InputMaybe> + pool_decreaseInterval_lt?: InputMaybe + pool_decreaseInterval_lte?: InputMaybe + pool_decreaseInterval_not?: InputMaybe + pool_decreaseInterval_not_in?: InputMaybe> + pool_initialReward?: InputMaybe + pool_initialReward_gt?: InputMaybe + pool_initialReward_gte?: InputMaybe + pool_initialReward_in?: InputMaybe> + pool_initialReward_lt?: InputMaybe + pool_initialReward_lte?: InputMaybe + pool_initialReward_not?: InputMaybe + pool_initialReward_not_in?: InputMaybe> + pool_isPublic?: InputMaybe + pool_isPublic_in?: InputMaybe> + pool_isPublic_not?: InputMaybe + pool_isPublic_not_in?: InputMaybe> + pool_minimalStake?: InputMaybe + pool_minimalStake_gt?: InputMaybe + pool_minimalStake_gte?: InputMaybe + pool_minimalStake_in?: InputMaybe> + pool_minimalStake_lt?: InputMaybe + pool_minimalStake_lte?: InputMaybe + pool_minimalStake_not?: InputMaybe + pool_minimalStake_not_in?: InputMaybe> + pool_payoutStart?: InputMaybe + pool_payoutStart_gt?: InputMaybe + pool_payoutStart_gte?: InputMaybe + pool_payoutStart_in?: InputMaybe> + pool_payoutStart_lt?: InputMaybe + pool_payoutStart_lte?: InputMaybe + pool_payoutStart_not?: InputMaybe + pool_payoutStart_not_in?: InputMaybe> + pool_rewardDecrease?: InputMaybe + pool_rewardDecrease_gt?: InputMaybe + pool_rewardDecrease_gte?: InputMaybe + pool_rewardDecrease_in?: InputMaybe> + pool_rewardDecrease_lt?: InputMaybe + pool_rewardDecrease_lte?: InputMaybe + pool_rewardDecrease_not?: InputMaybe + pool_rewardDecrease_not_in?: InputMaybe> + pool_withdrawLockPeriod?: InputMaybe + pool_withdrawLockPeriodAfterStake?: InputMaybe + pool_withdrawLockPeriodAfterStake_gt?: InputMaybe + pool_withdrawLockPeriodAfterStake_gte?: InputMaybe + pool_withdrawLockPeriodAfterStake_in?: InputMaybe< + Array + > + pool_withdrawLockPeriodAfterStake_lt?: InputMaybe + pool_withdrawLockPeriodAfterStake_lte?: InputMaybe + pool_withdrawLockPeriodAfterStake_not?: InputMaybe + pool_withdrawLockPeriodAfterStake_not_in?: InputMaybe< + Array + > + pool_withdrawLockPeriod_gt?: InputMaybe + pool_withdrawLockPeriod_gte?: InputMaybe + pool_withdrawLockPeriod_in?: InputMaybe> + pool_withdrawLockPeriod_lt?: InputMaybe + pool_withdrawLockPeriod_lte?: InputMaybe + pool_withdrawLockPeriod_not?: InputMaybe + pool_withdrawLockPeriod_not_in?: InputMaybe> + transactionHash?: InputMaybe + transactionHash_contains?: InputMaybe + transactionHash_gt?: InputMaybe + transactionHash_gte?: InputMaybe + transactionHash_in?: InputMaybe> + transactionHash_lt?: InputMaybe + transactionHash_lte?: InputMaybe + transactionHash_not?: InputMaybe + transactionHash_not_contains?: InputMaybe + transactionHash_not_in?: InputMaybe> +} + +export enum PoolEdited_OrderBy { + BlockNumber = 'blockNumber', + BlockTimestamp = 'blockTimestamp', + Id = 'id', + PoolId = 'poolId', + PoolClaimLockPeriod = 'pool_claimLockPeriod', + PoolDecreaseInterval = 'pool_decreaseInterval', + PoolInitialReward = 'pool_initialReward', + PoolIsPublic = 'pool_isPublic', + PoolMinimalStake = 'pool_minimalStake', + PoolPayoutStart = 'pool_payoutStart', + PoolRewardDecrease = 'pool_rewardDecrease', + PoolWithdrawLockPeriod = 'pool_withdrawLockPeriod', + PoolWithdrawLockPeriodAfterStake = 'pool_withdrawLockPeriodAfterStake', + TransactionHash = 'transactionHash', +} + +export type PoolInteraction = { + __typename?: 'PoolInteraction' + /** The amount of staked or withdrawn tokens */ + amount: Scalars['BigInt']['output'] + /** The tx hash */ + hash: Scalars['Bytes']['output'] + /** id forms from tx hash + counter */ + id: Scalars['Bytes']['output'] + /** True if the user staked, false if the user withdrawn */ + isStake: Scalars['Boolean']['output'] + /** The pool which was interacted */ + pool: Pool + /** The current pool rate */ + rate: Scalars['BigInt']['output'] + /** The timestamp of tx */ + timestamp: Scalars['BigInt']['output'] + /** The total staked amount after interaction */ + totalStaked: Scalars['BigInt']['output'] + /** The user who interacted with the pool */ + userInPool: UserInPool +} + +export type PoolInteraction_Filter = { + /** Filter for the block changed event. */ + _change_block?: InputMaybe + amount?: InputMaybe + amount_gt?: InputMaybe + amount_gte?: InputMaybe + amount_in?: InputMaybe> + amount_lt?: InputMaybe + amount_lte?: InputMaybe + amount_not?: InputMaybe + amount_not_in?: InputMaybe> + and?: InputMaybe>> + hash?: InputMaybe + hash_contains?: InputMaybe + hash_gt?: InputMaybe + hash_gte?: InputMaybe + hash_in?: InputMaybe> + hash_lt?: InputMaybe + hash_lte?: InputMaybe + hash_not?: InputMaybe + hash_not_contains?: InputMaybe + hash_not_in?: InputMaybe> + id?: InputMaybe + id_contains?: InputMaybe + id_gt?: InputMaybe + id_gte?: InputMaybe + id_in?: InputMaybe> + id_lt?: InputMaybe + id_lte?: InputMaybe + id_not?: InputMaybe + id_not_contains?: InputMaybe + id_not_in?: InputMaybe> + isStake?: InputMaybe + isStake_in?: InputMaybe> + isStake_not?: InputMaybe + isStake_not_in?: InputMaybe> + or?: InputMaybe>> + pool?: InputMaybe + pool_?: InputMaybe + pool_contains?: InputMaybe + pool_contains_nocase?: InputMaybe + pool_ends_with?: InputMaybe + pool_ends_with_nocase?: InputMaybe + pool_gt?: InputMaybe + pool_gte?: InputMaybe + pool_in?: InputMaybe> + pool_lt?: InputMaybe + pool_lte?: InputMaybe + pool_not?: InputMaybe + pool_not_contains?: InputMaybe + pool_not_contains_nocase?: InputMaybe + pool_not_ends_with?: InputMaybe + pool_not_ends_with_nocase?: InputMaybe + pool_not_in?: InputMaybe> + pool_not_starts_with?: InputMaybe + pool_not_starts_with_nocase?: InputMaybe + pool_starts_with?: InputMaybe + pool_starts_with_nocase?: InputMaybe + rate?: InputMaybe + rate_gt?: InputMaybe + rate_gte?: InputMaybe + rate_in?: InputMaybe> + rate_lt?: InputMaybe + rate_lte?: InputMaybe + rate_not?: InputMaybe + rate_not_in?: InputMaybe> + timestamp?: InputMaybe + timestamp_gt?: InputMaybe + timestamp_gte?: InputMaybe + timestamp_in?: InputMaybe> + timestamp_lt?: InputMaybe + timestamp_lte?: InputMaybe + timestamp_not?: InputMaybe + timestamp_not_in?: InputMaybe> + totalStaked?: InputMaybe + totalStaked_gt?: InputMaybe + totalStaked_gte?: InputMaybe + totalStaked_in?: InputMaybe> + totalStaked_lt?: InputMaybe + totalStaked_lte?: InputMaybe + totalStaked_not?: InputMaybe + totalStaked_not_in?: InputMaybe> + userInPool?: InputMaybe + userInPool_?: InputMaybe + userInPool_contains?: InputMaybe + userInPool_contains_nocase?: InputMaybe + userInPool_ends_with?: InputMaybe + userInPool_ends_with_nocase?: InputMaybe + userInPool_gt?: InputMaybe + userInPool_gte?: InputMaybe + userInPool_in?: InputMaybe> + userInPool_lt?: InputMaybe + userInPool_lte?: InputMaybe + userInPool_not?: InputMaybe + userInPool_not_contains?: InputMaybe + userInPool_not_contains_nocase?: InputMaybe + userInPool_not_ends_with?: InputMaybe + userInPool_not_ends_with_nocase?: InputMaybe + userInPool_not_in?: InputMaybe> + userInPool_not_starts_with?: InputMaybe + userInPool_not_starts_with_nocase?: InputMaybe + userInPool_starts_with?: InputMaybe + userInPool_starts_with_nocase?: InputMaybe +} + +export enum PoolInteraction_OrderBy { + Amount = 'amount', + Hash = 'hash', + Id = 'id', + IsStake = 'isStake', + Pool = 'pool', + PoolClaimLockPeriod = 'pool__claimLockPeriod', + PoolDecreaseInterval = 'pool__decreaseInterval', + PoolId = 'pool__id', + PoolInitialReward = 'pool__initialReward', + PoolIsPublic = 'pool__isPublic', + PoolMinimalStake = 'pool__minimalStake', + PoolPayoutStart = 'pool__payoutStart', + PoolRewardDecrease = 'pool__rewardDecrease', + PoolTotalStaked = 'pool__totalStaked', + PoolTotalUsers = 'pool__totalUsers', + PoolWithdrawLockPeriod = 'pool__withdrawLockPeriod', + PoolWithdrawLockPeriodAfterStake = 'pool__withdrawLockPeriodAfterStake', + Rate = 'rate', + Timestamp = 'timestamp', + TotalStaked = 'totalStaked', + UserInPool = 'userInPool', + UserInPoolClaimed = 'userInPool__claimed', + UserInPoolId = 'userInPool__id', + UserInPoolStaked = 'userInPool__staked', + UserInPoolUser = 'userInPool__user', +} + +export type Pool_Filter = { + /** Filter for the block changed event. */ + _change_block?: InputMaybe + and?: InputMaybe>> + claimLockPeriod?: InputMaybe + claimLockPeriod_gt?: InputMaybe + claimLockPeriod_gte?: InputMaybe + claimLockPeriod_in?: InputMaybe> + claimLockPeriod_lt?: InputMaybe + claimLockPeriod_lte?: InputMaybe + claimLockPeriod_not?: InputMaybe + claimLockPeriod_not_in?: InputMaybe> + decreaseInterval?: InputMaybe + decreaseInterval_gt?: InputMaybe + decreaseInterval_gte?: InputMaybe + decreaseInterval_in?: InputMaybe> + decreaseInterval_lt?: InputMaybe + decreaseInterval_lte?: InputMaybe + decreaseInterval_not?: InputMaybe + decreaseInterval_not_in?: InputMaybe> + id?: InputMaybe + id_contains?: InputMaybe + id_gt?: InputMaybe + id_gte?: InputMaybe + id_in?: InputMaybe> + id_lt?: InputMaybe + id_lte?: InputMaybe + id_not?: InputMaybe + id_not_contains?: InputMaybe + id_not_in?: InputMaybe> + initialReward?: InputMaybe + initialReward_gt?: InputMaybe + initialReward_gte?: InputMaybe + initialReward_in?: InputMaybe> + initialReward_lt?: InputMaybe + initialReward_lte?: InputMaybe + initialReward_not?: InputMaybe + initialReward_not_in?: InputMaybe> + interactions_?: InputMaybe + isPublic?: InputMaybe + isPublic_in?: InputMaybe> + isPublic_not?: InputMaybe + isPublic_not_in?: InputMaybe> + minimalStake?: InputMaybe + minimalStake_gt?: InputMaybe + minimalStake_gte?: InputMaybe + minimalStake_in?: InputMaybe> + minimalStake_lt?: InputMaybe + minimalStake_lte?: InputMaybe + minimalStake_not?: InputMaybe + minimalStake_not_in?: InputMaybe> + or?: InputMaybe>> + payoutStart?: InputMaybe + payoutStart_gt?: InputMaybe + payoutStart_gte?: InputMaybe + payoutStart_in?: InputMaybe> + payoutStart_lt?: InputMaybe + payoutStart_lte?: InputMaybe + payoutStart_not?: InputMaybe + payoutStart_not_in?: InputMaybe> + rewardDecrease?: InputMaybe + rewardDecrease_gt?: InputMaybe + rewardDecrease_gte?: InputMaybe + rewardDecrease_in?: InputMaybe> + rewardDecrease_lt?: InputMaybe + rewardDecrease_lte?: InputMaybe + rewardDecrease_not?: InputMaybe + rewardDecrease_not_in?: InputMaybe> + totalStaked?: InputMaybe + totalStaked_gt?: InputMaybe + totalStaked_gte?: InputMaybe + totalStaked_in?: InputMaybe> + totalStaked_lt?: InputMaybe + totalStaked_lte?: InputMaybe + totalStaked_not?: InputMaybe + totalStaked_not_in?: InputMaybe> + totalUsers?: InputMaybe + totalUsers_gt?: InputMaybe + totalUsers_gte?: InputMaybe + totalUsers_in?: InputMaybe> + totalUsers_lt?: InputMaybe + totalUsers_lte?: InputMaybe + totalUsers_not?: InputMaybe + totalUsers_not_in?: InputMaybe> + withdrawLockPeriod?: InputMaybe + withdrawLockPeriodAfterStake?: InputMaybe + withdrawLockPeriodAfterStake_gt?: InputMaybe + withdrawLockPeriodAfterStake_gte?: InputMaybe + withdrawLockPeriodAfterStake_in?: InputMaybe< + Array + > + withdrawLockPeriodAfterStake_lt?: InputMaybe + withdrawLockPeriodAfterStake_lte?: InputMaybe + withdrawLockPeriodAfterStake_not?: InputMaybe + withdrawLockPeriodAfterStake_not_in?: InputMaybe< + Array + > + withdrawLockPeriod_gt?: InputMaybe + withdrawLockPeriod_gte?: InputMaybe + withdrawLockPeriod_in?: InputMaybe> + withdrawLockPeriod_lt?: InputMaybe + withdrawLockPeriod_lte?: InputMaybe + withdrawLockPeriod_not?: InputMaybe + withdrawLockPeriod_not_in?: InputMaybe> +} + +export enum Pool_OrderBy { + ClaimLockPeriod = 'claimLockPeriod', + DecreaseInterval = 'decreaseInterval', + Id = 'id', + InitialReward = 'initialReward', + Interactions = 'interactions', + IsPublic = 'isPublic', + MinimalStake = 'minimalStake', + PayoutStart = 'payoutStart', + RewardDecrease = 'rewardDecrease', + TotalStaked = 'totalStaked', + TotalUsers = 'totalUsers', + WithdrawLockPeriod = 'withdrawLockPeriod', + WithdrawLockPeriodAfterStake = 'withdrawLockPeriodAfterStake', +} + +export type Query = { + __typename?: 'Query' + /** Access to subgraph metadata */ + _meta?: Maybe<_Meta_> + adminChanged?: Maybe + adminChangeds: Array + beaconUpgraded?: Maybe + beaconUpgradeds: Array + initialized?: Maybe + initializeds: Array + interactionCount?: Maybe + interactionCounts: Array + overplusBridged?: Maybe + overplusBridgeds: Array + ownershipTransferred?: Maybe + ownershipTransferreds: Array + pool?: Maybe + poolCreated?: Maybe + poolCreateds: Array + poolEdited?: Maybe + poolEditeds: Array + poolInteraction?: Maybe + poolInteractions: Array + pools: Array + referrer?: Maybe + referrers: Array + upgraded?: Maybe + upgradeds: Array + user?: Maybe + userClaimed?: Maybe + userClaimeds: Array + userInPool?: Maybe + userInPools: Array + userInteraction?: Maybe + userInteractions: Array + userReferrer?: Maybe + userReferrers: Array + userStaked?: Maybe + userStakeds: Array + userWithdrawn?: Maybe + userWithdrawns: Array + users: Array +} + +export type Query_MetaArgs = { + block?: InputMaybe +} + +export type QueryAdminChangedArgs = { + block?: InputMaybe + id: Scalars['ID']['input'] + subgraphError?: _SubgraphErrorPolicy_ +} + +export type QueryAdminChangedsArgs = { + block?: InputMaybe + first?: InputMaybe + orderBy?: InputMaybe + orderDirection?: InputMaybe + skip?: InputMaybe + subgraphError?: _SubgraphErrorPolicy_ + where?: InputMaybe +} + +export type QueryBeaconUpgradedArgs = { + block?: InputMaybe + id: Scalars['ID']['input'] + subgraphError?: _SubgraphErrorPolicy_ +} + +export type QueryBeaconUpgradedsArgs = { + block?: InputMaybe + first?: InputMaybe + orderBy?: InputMaybe + orderDirection?: InputMaybe + skip?: InputMaybe + subgraphError?: _SubgraphErrorPolicy_ + where?: InputMaybe +} + +export type QueryInitializedArgs = { + block?: InputMaybe + id: Scalars['ID']['input'] + subgraphError?: _SubgraphErrorPolicy_ +} + +export type QueryInitializedsArgs = { + block?: InputMaybe + first?: InputMaybe + orderBy?: InputMaybe + orderDirection?: InputMaybe + skip?: InputMaybe + subgraphError?: _SubgraphErrorPolicy_ + where?: InputMaybe +} + +export type QueryInteractionCountArgs = { + block?: InputMaybe + id: Scalars['ID']['input'] + subgraphError?: _SubgraphErrorPolicy_ +} + +export type QueryInteractionCountsArgs = { + block?: InputMaybe + first?: InputMaybe + orderBy?: InputMaybe + orderDirection?: InputMaybe + skip?: InputMaybe + subgraphError?: _SubgraphErrorPolicy_ + where?: InputMaybe +} + +export type QueryOverplusBridgedArgs = { + block?: InputMaybe + id: Scalars['ID']['input'] + subgraphError?: _SubgraphErrorPolicy_ +} + +export type QueryOverplusBridgedsArgs = { + block?: InputMaybe + first?: InputMaybe + orderBy?: InputMaybe + orderDirection?: InputMaybe + skip?: InputMaybe + subgraphError?: _SubgraphErrorPolicy_ + where?: InputMaybe +} + +export type QueryOwnershipTransferredArgs = { + block?: InputMaybe + id: Scalars['ID']['input'] + subgraphError?: _SubgraphErrorPolicy_ +} + +export type QueryOwnershipTransferredsArgs = { + block?: InputMaybe + first?: InputMaybe + orderBy?: InputMaybe + orderDirection?: InputMaybe + skip?: InputMaybe + subgraphError?: _SubgraphErrorPolicy_ + where?: InputMaybe +} + +export type QueryPoolArgs = { + block?: InputMaybe + id: Scalars['ID']['input'] + subgraphError?: _SubgraphErrorPolicy_ +} + +export type QueryPoolCreatedArgs = { + block?: InputMaybe + id: Scalars['ID']['input'] + subgraphError?: _SubgraphErrorPolicy_ +} + +export type QueryPoolCreatedsArgs = { + block?: InputMaybe + first?: InputMaybe + orderBy?: InputMaybe + orderDirection?: InputMaybe + skip?: InputMaybe + subgraphError?: _SubgraphErrorPolicy_ + where?: InputMaybe +} + +export type QueryPoolEditedArgs = { + block?: InputMaybe + id: Scalars['ID']['input'] + subgraphError?: _SubgraphErrorPolicy_ +} + +export type QueryPoolEditedsArgs = { + block?: InputMaybe + first?: InputMaybe + orderBy?: InputMaybe + orderDirection?: InputMaybe + skip?: InputMaybe + subgraphError?: _SubgraphErrorPolicy_ + where?: InputMaybe +} + +export type QueryPoolInteractionArgs = { + block?: InputMaybe + id: Scalars['ID']['input'] + subgraphError?: _SubgraphErrorPolicy_ +} + +export type QueryPoolInteractionsArgs = { + block?: InputMaybe + first?: InputMaybe + orderBy?: InputMaybe + orderDirection?: InputMaybe + skip?: InputMaybe + subgraphError?: _SubgraphErrorPolicy_ + where?: InputMaybe +} + +export type QueryPoolsArgs = { + block?: InputMaybe + first?: InputMaybe + orderBy?: InputMaybe + orderDirection?: InputMaybe + skip?: InputMaybe + subgraphError?: _SubgraphErrorPolicy_ + where?: InputMaybe +} + +export type QueryReferrerArgs = { + block?: InputMaybe + id: Scalars['ID']['input'] + subgraphError?: _SubgraphErrorPolicy_ +} + +export type QueryReferrersArgs = { + block?: InputMaybe + first?: InputMaybe + orderBy?: InputMaybe + orderDirection?: InputMaybe + skip?: InputMaybe + subgraphError?: _SubgraphErrorPolicy_ + where?: InputMaybe +} + +export type QueryUpgradedArgs = { + block?: InputMaybe + id: Scalars['ID']['input'] + subgraphError?: _SubgraphErrorPolicy_ +} + +export type QueryUpgradedsArgs = { + block?: InputMaybe + first?: InputMaybe + orderBy?: InputMaybe + orderDirection?: InputMaybe + skip?: InputMaybe + subgraphError?: _SubgraphErrorPolicy_ + where?: InputMaybe +} + +export type QueryUserArgs = { + block?: InputMaybe + id: Scalars['ID']['input'] + subgraphError?: _SubgraphErrorPolicy_ +} + +export type QueryUserClaimedArgs = { + block?: InputMaybe + id: Scalars['ID']['input'] + subgraphError?: _SubgraphErrorPolicy_ +} + +export type QueryUserClaimedsArgs = { + block?: InputMaybe + first?: InputMaybe + orderBy?: InputMaybe + orderDirection?: InputMaybe + skip?: InputMaybe + subgraphError?: _SubgraphErrorPolicy_ + where?: InputMaybe +} + +export type QueryUserInPoolArgs = { + block?: InputMaybe + id: Scalars['ID']['input'] + subgraphError?: _SubgraphErrorPolicy_ +} + +export type QueryUserInPoolsArgs = { + block?: InputMaybe + first?: InputMaybe + orderBy?: InputMaybe + orderDirection?: InputMaybe + skip?: InputMaybe + subgraphError?: _SubgraphErrorPolicy_ + where?: InputMaybe +} + +export type QueryUserInteractionArgs = { + block?: InputMaybe + id: Scalars['ID']['input'] + subgraphError?: _SubgraphErrorPolicy_ +} + +export type QueryUserInteractionsArgs = { + block?: InputMaybe + first?: InputMaybe + orderBy?: InputMaybe + orderDirection?: InputMaybe + skip?: InputMaybe + subgraphError?: _SubgraphErrorPolicy_ + where?: InputMaybe +} + +export type QueryUserReferrerArgs = { + block?: InputMaybe + id: Scalars['ID']['input'] + subgraphError?: _SubgraphErrorPolicy_ +} + +export type QueryUserReferrersArgs = { + block?: InputMaybe + first?: InputMaybe + orderBy?: InputMaybe + orderDirection?: InputMaybe + skip?: InputMaybe + subgraphError?: _SubgraphErrorPolicy_ + where?: InputMaybe +} + +export type QueryUserStakedArgs = { + block?: InputMaybe + id: Scalars['ID']['input'] + subgraphError?: _SubgraphErrorPolicy_ +} + +export type QueryUserStakedsArgs = { + block?: InputMaybe + first?: InputMaybe + orderBy?: InputMaybe + orderDirection?: InputMaybe + skip?: InputMaybe + subgraphError?: _SubgraphErrorPolicy_ + where?: InputMaybe +} + +export type QueryUserWithdrawnArgs = { + block?: InputMaybe + id: Scalars['ID']['input'] + subgraphError?: _SubgraphErrorPolicy_ +} + +export type QueryUserWithdrawnsArgs = { + block?: InputMaybe + first?: InputMaybe + orderBy?: InputMaybe + orderDirection?: InputMaybe + skip?: InputMaybe + subgraphError?: _SubgraphErrorPolicy_ + where?: InputMaybe +} + +export type QueryUsersArgs = { + block?: InputMaybe + first?: InputMaybe + orderBy?: InputMaybe + orderDirection?: InputMaybe + skip?: InputMaybe + subgraphError?: _SubgraphErrorPolicy_ + where?: InputMaybe +} + +export type Referrer = { + __typename?: 'Referrer' + /** id forms from user address + pool id */ + id: Scalars['Bytes']['output'] + /** The pool ID */ + poolId: Scalars['BigInt']['output'] + /** The referrer total claimed */ + totalClaimed: Scalars['BigInt']['output'] + /** The referrer address */ + user: Scalars['Bytes']['output'] +} + +export type Referrer_Filter = { + /** Filter for the block changed event. */ + _change_block?: InputMaybe + and?: InputMaybe>> + id?: InputMaybe + id_contains?: InputMaybe + id_gt?: InputMaybe + id_gte?: InputMaybe + id_in?: InputMaybe> + id_lt?: InputMaybe + id_lte?: InputMaybe + id_not?: InputMaybe + id_not_contains?: InputMaybe + id_not_in?: InputMaybe> + or?: InputMaybe>> + poolId?: InputMaybe + poolId_gt?: InputMaybe + poolId_gte?: InputMaybe + poolId_in?: InputMaybe> + poolId_lt?: InputMaybe + poolId_lte?: InputMaybe + poolId_not?: InputMaybe + poolId_not_in?: InputMaybe> + totalClaimed?: InputMaybe + totalClaimed_gt?: InputMaybe + totalClaimed_gte?: InputMaybe + totalClaimed_in?: InputMaybe> + totalClaimed_lt?: InputMaybe + totalClaimed_lte?: InputMaybe + totalClaimed_not?: InputMaybe + totalClaimed_not_in?: InputMaybe> + user?: InputMaybe + user_contains?: InputMaybe + user_gt?: InputMaybe + user_gte?: InputMaybe + user_in?: InputMaybe> + user_lt?: InputMaybe + user_lte?: InputMaybe + user_not?: InputMaybe + user_not_contains?: InputMaybe + user_not_in?: InputMaybe> +} + +export enum Referrer_OrderBy { + Id = 'id', + PoolId = 'poolId', + TotalClaimed = 'totalClaimed', + User = 'user', +} + +export type Subscription = { + __typename?: 'Subscription' + /** Access to subgraph metadata */ + _meta?: Maybe<_Meta_> + adminChanged?: Maybe + adminChangeds: Array + beaconUpgraded?: Maybe + beaconUpgradeds: Array + initialized?: Maybe + initializeds: Array + interactionCount?: Maybe + interactionCounts: Array + overplusBridged?: Maybe + overplusBridgeds: Array + ownershipTransferred?: Maybe + ownershipTransferreds: Array + pool?: Maybe + poolCreated?: Maybe + poolCreateds: Array + poolEdited?: Maybe + poolEditeds: Array + poolInteraction?: Maybe + poolInteractions: Array + pools: Array + referrer?: Maybe + referrers: Array + upgraded?: Maybe + upgradeds: Array + user?: Maybe + userClaimed?: Maybe + userClaimeds: Array + userInPool?: Maybe + userInPools: Array + userInteraction?: Maybe + userInteractions: Array + userReferrer?: Maybe + userReferrers: Array + userStaked?: Maybe + userStakeds: Array + userWithdrawn?: Maybe + userWithdrawns: Array + users: Array +} + +export type Subscription_MetaArgs = { + block?: InputMaybe +} + +export type SubscriptionAdminChangedArgs = { + block?: InputMaybe + id: Scalars['ID']['input'] + subgraphError?: _SubgraphErrorPolicy_ +} + +export type SubscriptionAdminChangedsArgs = { + block?: InputMaybe + first?: InputMaybe + orderBy?: InputMaybe + orderDirection?: InputMaybe + skip?: InputMaybe + subgraphError?: _SubgraphErrorPolicy_ + where?: InputMaybe +} + +export type SubscriptionBeaconUpgradedArgs = { + block?: InputMaybe + id: Scalars['ID']['input'] + subgraphError?: _SubgraphErrorPolicy_ +} + +export type SubscriptionBeaconUpgradedsArgs = { + block?: InputMaybe + first?: InputMaybe + orderBy?: InputMaybe + orderDirection?: InputMaybe + skip?: InputMaybe + subgraphError?: _SubgraphErrorPolicy_ + where?: InputMaybe +} + +export type SubscriptionInitializedArgs = { + block?: InputMaybe + id: Scalars['ID']['input'] + subgraphError?: _SubgraphErrorPolicy_ +} + +export type SubscriptionInitializedsArgs = { + block?: InputMaybe + first?: InputMaybe + orderBy?: InputMaybe + orderDirection?: InputMaybe + skip?: InputMaybe + subgraphError?: _SubgraphErrorPolicy_ + where?: InputMaybe +} + +export type SubscriptionInteractionCountArgs = { + block?: InputMaybe + id: Scalars['ID']['input'] + subgraphError?: _SubgraphErrorPolicy_ +} + +export type SubscriptionInteractionCountsArgs = { + block?: InputMaybe + first?: InputMaybe + orderBy?: InputMaybe + orderDirection?: InputMaybe + skip?: InputMaybe + subgraphError?: _SubgraphErrorPolicy_ + where?: InputMaybe +} + +export type SubscriptionOverplusBridgedArgs = { + block?: InputMaybe + id: Scalars['ID']['input'] + subgraphError?: _SubgraphErrorPolicy_ +} + +export type SubscriptionOverplusBridgedsArgs = { + block?: InputMaybe + first?: InputMaybe + orderBy?: InputMaybe + orderDirection?: InputMaybe + skip?: InputMaybe + subgraphError?: _SubgraphErrorPolicy_ + where?: InputMaybe +} + +export type SubscriptionOwnershipTransferredArgs = { + block?: InputMaybe + id: Scalars['ID']['input'] + subgraphError?: _SubgraphErrorPolicy_ +} + +export type SubscriptionOwnershipTransferredsArgs = { + block?: InputMaybe + first?: InputMaybe + orderBy?: InputMaybe + orderDirection?: InputMaybe + skip?: InputMaybe + subgraphError?: _SubgraphErrorPolicy_ + where?: InputMaybe +} + +export type SubscriptionPoolArgs = { + block?: InputMaybe + id: Scalars['ID']['input'] + subgraphError?: _SubgraphErrorPolicy_ +} + +export type SubscriptionPoolCreatedArgs = { + block?: InputMaybe + id: Scalars['ID']['input'] + subgraphError?: _SubgraphErrorPolicy_ +} + +export type SubscriptionPoolCreatedsArgs = { + block?: InputMaybe + first?: InputMaybe + orderBy?: InputMaybe + orderDirection?: InputMaybe + skip?: InputMaybe + subgraphError?: _SubgraphErrorPolicy_ + where?: InputMaybe +} + +export type SubscriptionPoolEditedArgs = { + block?: InputMaybe + id: Scalars['ID']['input'] + subgraphError?: _SubgraphErrorPolicy_ +} + +export type SubscriptionPoolEditedsArgs = { + block?: InputMaybe + first?: InputMaybe + orderBy?: InputMaybe + orderDirection?: InputMaybe + skip?: InputMaybe + subgraphError?: _SubgraphErrorPolicy_ + where?: InputMaybe +} + +export type SubscriptionPoolInteractionArgs = { + block?: InputMaybe + id: Scalars['ID']['input'] + subgraphError?: _SubgraphErrorPolicy_ +} + +export type SubscriptionPoolInteractionsArgs = { + block?: InputMaybe + first?: InputMaybe + orderBy?: InputMaybe + orderDirection?: InputMaybe + skip?: InputMaybe + subgraphError?: _SubgraphErrorPolicy_ + where?: InputMaybe +} + +export type SubscriptionPoolsArgs = { + block?: InputMaybe + first?: InputMaybe + orderBy?: InputMaybe + orderDirection?: InputMaybe + skip?: InputMaybe + subgraphError?: _SubgraphErrorPolicy_ + where?: InputMaybe +} + +export type SubscriptionReferrerArgs = { + block?: InputMaybe + id: Scalars['ID']['input'] + subgraphError?: _SubgraphErrorPolicy_ +} + +export type SubscriptionReferrersArgs = { + block?: InputMaybe + first?: InputMaybe + orderBy?: InputMaybe + orderDirection?: InputMaybe + skip?: InputMaybe + subgraphError?: _SubgraphErrorPolicy_ + where?: InputMaybe +} + +export type SubscriptionUpgradedArgs = { + block?: InputMaybe + id: Scalars['ID']['input'] + subgraphError?: _SubgraphErrorPolicy_ +} + +export type SubscriptionUpgradedsArgs = { + block?: InputMaybe + first?: InputMaybe + orderBy?: InputMaybe + orderDirection?: InputMaybe + skip?: InputMaybe + subgraphError?: _SubgraphErrorPolicy_ + where?: InputMaybe +} + +export type SubscriptionUserArgs = { + block?: InputMaybe + id: Scalars['ID']['input'] + subgraphError?: _SubgraphErrorPolicy_ +} + +export type SubscriptionUserClaimedArgs = { + block?: InputMaybe + id: Scalars['ID']['input'] + subgraphError?: _SubgraphErrorPolicy_ +} + +export type SubscriptionUserClaimedsArgs = { + block?: InputMaybe + first?: InputMaybe + orderBy?: InputMaybe + orderDirection?: InputMaybe + skip?: InputMaybe + subgraphError?: _SubgraphErrorPolicy_ + where?: InputMaybe +} + +export type SubscriptionUserInPoolArgs = { + block?: InputMaybe + id: Scalars['ID']['input'] + subgraphError?: _SubgraphErrorPolicy_ +} + +export type SubscriptionUserInPoolsArgs = { + block?: InputMaybe + first?: InputMaybe + orderBy?: InputMaybe + orderDirection?: InputMaybe + skip?: InputMaybe + subgraphError?: _SubgraphErrorPolicy_ + where?: InputMaybe +} + +export type SubscriptionUserInteractionArgs = { + block?: InputMaybe + id: Scalars['ID']['input'] + subgraphError?: _SubgraphErrorPolicy_ +} + +export type SubscriptionUserInteractionsArgs = { + block?: InputMaybe + first?: InputMaybe + orderBy?: InputMaybe + orderDirection?: InputMaybe + skip?: InputMaybe + subgraphError?: _SubgraphErrorPolicy_ + where?: InputMaybe +} + +export type SubscriptionUserReferrerArgs = { + block?: InputMaybe + id: Scalars['ID']['input'] + subgraphError?: _SubgraphErrorPolicy_ +} + +export type SubscriptionUserReferrersArgs = { + block?: InputMaybe + first?: InputMaybe + orderBy?: InputMaybe + orderDirection?: InputMaybe + skip?: InputMaybe + subgraphError?: _SubgraphErrorPolicy_ + where?: InputMaybe +} + +export type SubscriptionUserStakedArgs = { + block?: InputMaybe + id: Scalars['ID']['input'] + subgraphError?: _SubgraphErrorPolicy_ +} + +export type SubscriptionUserStakedsArgs = { + block?: InputMaybe + first?: InputMaybe + orderBy?: InputMaybe + orderDirection?: InputMaybe + skip?: InputMaybe + subgraphError?: _SubgraphErrorPolicy_ + where?: InputMaybe +} + +export type SubscriptionUserWithdrawnArgs = { + block?: InputMaybe + id: Scalars['ID']['input'] + subgraphError?: _SubgraphErrorPolicy_ +} + +export type SubscriptionUserWithdrawnsArgs = { + block?: InputMaybe + first?: InputMaybe + orderBy?: InputMaybe + orderDirection?: InputMaybe + skip?: InputMaybe + subgraphError?: _SubgraphErrorPolicy_ + where?: InputMaybe +} + +export type SubscriptionUsersArgs = { + block?: InputMaybe + first?: InputMaybe + orderBy?: InputMaybe + orderDirection?: InputMaybe + skip?: InputMaybe + subgraphError?: _SubgraphErrorPolicy_ + where?: InputMaybe +} + +export type Upgraded = { + __typename?: 'Upgraded' + blockNumber: Scalars['BigInt']['output'] + blockTimestamp: Scalars['BigInt']['output'] + id: Scalars['Bytes']['output'] + implementation: Scalars['Bytes']['output'] + transactionHash: Scalars['Bytes']['output'] +} + +export type Upgraded_Filter = { + /** Filter for the block changed event. */ + _change_block?: InputMaybe + and?: InputMaybe>> + blockNumber?: InputMaybe + blockNumber_gt?: InputMaybe + blockNumber_gte?: InputMaybe + blockNumber_in?: InputMaybe> + blockNumber_lt?: InputMaybe + blockNumber_lte?: InputMaybe + blockNumber_not?: InputMaybe + blockNumber_not_in?: InputMaybe> + blockTimestamp?: InputMaybe + blockTimestamp_gt?: InputMaybe + blockTimestamp_gte?: InputMaybe + blockTimestamp_in?: InputMaybe> + blockTimestamp_lt?: InputMaybe + blockTimestamp_lte?: InputMaybe + blockTimestamp_not?: InputMaybe + blockTimestamp_not_in?: InputMaybe> + id?: InputMaybe + id_contains?: InputMaybe + id_gt?: InputMaybe + id_gte?: InputMaybe + id_in?: InputMaybe> + id_lt?: InputMaybe + id_lte?: InputMaybe + id_not?: InputMaybe + id_not_contains?: InputMaybe + id_not_in?: InputMaybe> + implementation?: InputMaybe + implementation_contains?: InputMaybe + implementation_gt?: InputMaybe + implementation_gte?: InputMaybe + implementation_in?: InputMaybe> + implementation_lt?: InputMaybe + implementation_lte?: InputMaybe + implementation_not?: InputMaybe + implementation_not_contains?: InputMaybe + implementation_not_in?: InputMaybe> + or?: InputMaybe>> + transactionHash?: InputMaybe + transactionHash_contains?: InputMaybe + transactionHash_gt?: InputMaybe + transactionHash_gte?: InputMaybe + transactionHash_in?: InputMaybe> + transactionHash_lt?: InputMaybe + transactionHash_lte?: InputMaybe + transactionHash_not?: InputMaybe + transactionHash_not_contains?: InputMaybe + transactionHash_not_in?: InputMaybe> +} + +export enum Upgraded_OrderBy { + BlockNumber = 'blockNumber', + BlockTimestamp = 'blockTimestamp', + Id = 'id', + Implementation = 'implementation', + TransactionHash = 'transactionHash', +} + +export type User = { + __typename?: 'User' + /** id forms from user address */ + id: Scalars['Bytes']['output'] + totalClaimed: Scalars['BigInt']['output'] +} + +export type UserClaimed = { + __typename?: 'UserClaimed' + amount: Scalars['BigInt']['output'] + blockNumber: Scalars['BigInt']['output'] + blockTimestamp: Scalars['BigInt']['output'] + id: Scalars['Bytes']['output'] + poolId: Scalars['BigInt']['output'] + receiver: Scalars['Bytes']['output'] + transactionHash: Scalars['Bytes']['output'] + user: Scalars['Bytes']['output'] +} + +export type UserClaimed_Filter = { + /** Filter for the block changed event. */ + _change_block?: InputMaybe + amount?: InputMaybe + amount_gt?: InputMaybe + amount_gte?: InputMaybe + amount_in?: InputMaybe> + amount_lt?: InputMaybe + amount_lte?: InputMaybe + amount_not?: InputMaybe + amount_not_in?: InputMaybe> + and?: InputMaybe>> + blockNumber?: InputMaybe + blockNumber_gt?: InputMaybe + blockNumber_gte?: InputMaybe + blockNumber_in?: InputMaybe> + blockNumber_lt?: InputMaybe + blockNumber_lte?: InputMaybe + blockNumber_not?: InputMaybe + blockNumber_not_in?: InputMaybe> + blockTimestamp?: InputMaybe + blockTimestamp_gt?: InputMaybe + blockTimestamp_gte?: InputMaybe + blockTimestamp_in?: InputMaybe> + blockTimestamp_lt?: InputMaybe + blockTimestamp_lte?: InputMaybe + blockTimestamp_not?: InputMaybe + blockTimestamp_not_in?: InputMaybe> + id?: InputMaybe + id_contains?: InputMaybe + id_gt?: InputMaybe + id_gte?: InputMaybe + id_in?: InputMaybe> + id_lt?: InputMaybe + id_lte?: InputMaybe + id_not?: InputMaybe + id_not_contains?: InputMaybe + id_not_in?: InputMaybe> + or?: InputMaybe>> + poolId?: InputMaybe + poolId_gt?: InputMaybe + poolId_gte?: InputMaybe + poolId_in?: InputMaybe> + poolId_lt?: InputMaybe + poolId_lte?: InputMaybe + poolId_not?: InputMaybe + poolId_not_in?: InputMaybe> + receiver?: InputMaybe + receiver_contains?: InputMaybe + receiver_gt?: InputMaybe + receiver_gte?: InputMaybe + receiver_in?: InputMaybe> + receiver_lt?: InputMaybe + receiver_lte?: InputMaybe + receiver_not?: InputMaybe + receiver_not_contains?: InputMaybe + receiver_not_in?: InputMaybe> + transactionHash?: InputMaybe + transactionHash_contains?: InputMaybe + transactionHash_gt?: InputMaybe + transactionHash_gte?: InputMaybe + transactionHash_in?: InputMaybe> + transactionHash_lt?: InputMaybe + transactionHash_lte?: InputMaybe + transactionHash_not?: InputMaybe + transactionHash_not_contains?: InputMaybe + transactionHash_not_in?: InputMaybe> + user?: InputMaybe + user_contains?: InputMaybe + user_gt?: InputMaybe + user_gte?: InputMaybe + user_in?: InputMaybe> + user_lt?: InputMaybe + user_lte?: InputMaybe + user_not?: InputMaybe + user_not_contains?: InputMaybe + user_not_in?: InputMaybe> +} + +export enum UserClaimed_OrderBy { + Amount = 'amount', + BlockNumber = 'blockNumber', + BlockTimestamp = 'blockTimestamp', + Id = 'id', + PoolId = 'poolId', + Receiver = 'receiver', + TransactionHash = 'transactionHash', + User = 'user', +} + +/** + * The entity holds information about user's interaction with the pool + * + */ +export type UserInPool = { + __typename?: 'UserInPool' + /** The amount of claimed tokens */ + claimed: Scalars['BigInt']['output'] + /** id forms from user address + pool id */ + id: Scalars['Bytes']['output'] + /** The array of interactions with the pool */ + interactions: Array + /** The pool which was interacted */ + pool: Pool + /** The amount of staked tokens */ + staked: Scalars['BigInt']['output'] + /** The user who interacted with the pool */ + user: Scalars['Bytes']['output'] +} + +/** + * The entity holds information about user's interaction with the pool + * + */ +export type UserInPoolInteractionsArgs = { + first?: InputMaybe + orderBy?: InputMaybe + orderDirection?: InputMaybe + skip?: InputMaybe + where?: InputMaybe +} + +export type UserInPool_Filter = { + /** Filter for the block changed event. */ + _change_block?: InputMaybe + and?: InputMaybe>> + claimed?: InputMaybe + claimed_gt?: InputMaybe + claimed_gte?: InputMaybe + claimed_in?: InputMaybe> + claimed_lt?: InputMaybe + claimed_lte?: InputMaybe + claimed_not?: InputMaybe + claimed_not_in?: InputMaybe> + id?: InputMaybe + id_contains?: InputMaybe + id_gt?: InputMaybe + id_gte?: InputMaybe + id_in?: InputMaybe> + id_lt?: InputMaybe + id_lte?: InputMaybe + id_not?: InputMaybe + id_not_contains?: InputMaybe + id_not_in?: InputMaybe> + interactions_?: InputMaybe + or?: InputMaybe>> + pool?: InputMaybe + pool_?: InputMaybe + pool_contains?: InputMaybe + pool_contains_nocase?: InputMaybe + pool_ends_with?: InputMaybe + pool_ends_with_nocase?: InputMaybe + pool_gt?: InputMaybe + pool_gte?: InputMaybe + pool_in?: InputMaybe> + pool_lt?: InputMaybe + pool_lte?: InputMaybe + pool_not?: InputMaybe + pool_not_contains?: InputMaybe + pool_not_contains_nocase?: InputMaybe + pool_not_ends_with?: InputMaybe + pool_not_ends_with_nocase?: InputMaybe + pool_not_in?: InputMaybe> + pool_not_starts_with?: InputMaybe + pool_not_starts_with_nocase?: InputMaybe + pool_starts_with?: InputMaybe + pool_starts_with_nocase?: InputMaybe + staked?: InputMaybe + staked_gt?: InputMaybe + staked_gte?: InputMaybe + staked_in?: InputMaybe> + staked_lt?: InputMaybe + staked_lte?: InputMaybe + staked_not?: InputMaybe + staked_not_in?: InputMaybe> + user?: InputMaybe + user_contains?: InputMaybe + user_gt?: InputMaybe + user_gte?: InputMaybe + user_in?: InputMaybe> + user_lt?: InputMaybe + user_lte?: InputMaybe + user_not?: InputMaybe + user_not_contains?: InputMaybe + user_not_in?: InputMaybe> +} + +export enum UserInPool_OrderBy { + Claimed = 'claimed', + Id = 'id', + Interactions = 'interactions', + Pool = 'pool', + PoolClaimLockPeriod = 'pool__claimLockPeriod', + PoolDecreaseInterval = 'pool__decreaseInterval', + PoolId = 'pool__id', + PoolInitialReward = 'pool__initialReward', + PoolIsPublic = 'pool__isPublic', + PoolMinimalStake = 'pool__minimalStake', + PoolPayoutStart = 'pool__payoutStart', + PoolRewardDecrease = 'pool__rewardDecrease', + PoolTotalStaked = 'pool__totalStaked', + PoolTotalUsers = 'pool__totalUsers', + PoolWithdrawLockPeriod = 'pool__withdrawLockPeriod', + PoolWithdrawLockPeriodAfterStake = 'pool__withdrawLockPeriodAfterStake', + Staked = 'staked', + User = 'user', +} + +export type UserInteraction = { + __typename?: 'UserInteraction' + /** The user claimed rewards */ + claimedRewards: Scalars['BigInt']['output'] + /** The user deposited amount with multiplier */ + deposited: Scalars['BigInt']['output'] + /** The tx hash */ + id: Scalars['Bytes']['output'] + /** The user pending rewards */ + pendingRewards: Scalars['BigInt']['output'] + /** The pool ID */ + poolId: Scalars['BigInt']['output'] + /** The user rate */ + rate: Scalars['BigInt']['output'] + /** The timestamp of tx */ + timestamp: Scalars['BigInt']['output'] + /** The caller address */ + user: Scalars['Bytes']['output'] +} + +export type UserInteraction_Filter = { + /** Filter for the block changed event. */ + _change_block?: InputMaybe + and?: InputMaybe>> + claimedRewards?: InputMaybe + claimedRewards_gt?: InputMaybe + claimedRewards_gte?: InputMaybe + claimedRewards_in?: InputMaybe> + claimedRewards_lt?: InputMaybe + claimedRewards_lte?: InputMaybe + claimedRewards_not?: InputMaybe + claimedRewards_not_in?: InputMaybe> + deposited?: InputMaybe + deposited_gt?: InputMaybe + deposited_gte?: InputMaybe + deposited_in?: InputMaybe> + deposited_lt?: InputMaybe + deposited_lte?: InputMaybe + deposited_not?: InputMaybe + deposited_not_in?: InputMaybe> + id?: InputMaybe + id_contains?: InputMaybe + id_gt?: InputMaybe + id_gte?: InputMaybe + id_in?: InputMaybe> + id_lt?: InputMaybe + id_lte?: InputMaybe + id_not?: InputMaybe + id_not_contains?: InputMaybe + id_not_in?: InputMaybe> + or?: InputMaybe>> + pendingRewards?: InputMaybe + pendingRewards_gt?: InputMaybe + pendingRewards_gte?: InputMaybe + pendingRewards_in?: InputMaybe> + pendingRewards_lt?: InputMaybe + pendingRewards_lte?: InputMaybe + pendingRewards_not?: InputMaybe + pendingRewards_not_in?: InputMaybe> + poolId?: InputMaybe + poolId_gt?: InputMaybe + poolId_gte?: InputMaybe + poolId_in?: InputMaybe> + poolId_lt?: InputMaybe + poolId_lte?: InputMaybe + poolId_not?: InputMaybe + poolId_not_in?: InputMaybe> + rate?: InputMaybe + rate_gt?: InputMaybe + rate_gte?: InputMaybe + rate_in?: InputMaybe> + rate_lt?: InputMaybe + rate_lte?: InputMaybe + rate_not?: InputMaybe + rate_not_in?: InputMaybe> + timestamp?: InputMaybe + timestamp_gt?: InputMaybe + timestamp_gte?: InputMaybe + timestamp_in?: InputMaybe> + timestamp_lt?: InputMaybe + timestamp_lte?: InputMaybe + timestamp_not?: InputMaybe + timestamp_not_in?: InputMaybe> + user?: InputMaybe + user_contains?: InputMaybe + user_gt?: InputMaybe + user_gte?: InputMaybe + user_in?: InputMaybe> + user_lt?: InputMaybe + user_lte?: InputMaybe + user_not?: InputMaybe + user_not_contains?: InputMaybe + user_not_in?: InputMaybe> +} + +export enum UserInteraction_OrderBy { + ClaimedRewards = 'claimedRewards', + Deposited = 'deposited', + Id = 'id', + PendingRewards = 'pendingRewards', + PoolId = 'poolId', + Rate = 'rate', + Timestamp = 'timestamp', + User = 'user', +} + +export type UserReferrer = { + __typename?: 'UserReferrer' + /** The amount of referred tokens */ + amount: Scalars['BigInt']['output'] + /** id forms from user address + referrer address + pool id */ + id: Scalars['Bytes']['output'] + /** The pool ID */ + poolId: Scalars['BigInt']['output'] + /** The referrer address */ + referrer: Scalars['Bytes']['output'] + /** The timestamp of tx */ + timestamp: Scalars['BigInt']['output'] + /** The user address */ + user: Scalars['Bytes']['output'] +} + +export type UserReferrer_Filter = { + /** Filter for the block changed event. */ + _change_block?: InputMaybe + amount?: InputMaybe + amount_gt?: InputMaybe + amount_gte?: InputMaybe + amount_in?: InputMaybe> + amount_lt?: InputMaybe + amount_lte?: InputMaybe + amount_not?: InputMaybe + amount_not_in?: InputMaybe> + and?: InputMaybe>> + id?: InputMaybe + id_contains?: InputMaybe + id_gt?: InputMaybe + id_gte?: InputMaybe + id_in?: InputMaybe> + id_lt?: InputMaybe + id_lte?: InputMaybe + id_not?: InputMaybe + id_not_contains?: InputMaybe + id_not_in?: InputMaybe> + or?: InputMaybe>> + poolId?: InputMaybe + poolId_gt?: InputMaybe + poolId_gte?: InputMaybe + poolId_in?: InputMaybe> + poolId_lt?: InputMaybe + poolId_lte?: InputMaybe + poolId_not?: InputMaybe + poolId_not_in?: InputMaybe> + referrer?: InputMaybe + referrer_contains?: InputMaybe + referrer_gt?: InputMaybe + referrer_gte?: InputMaybe + referrer_in?: InputMaybe> + referrer_lt?: InputMaybe + referrer_lte?: InputMaybe + referrer_not?: InputMaybe + referrer_not_contains?: InputMaybe + referrer_not_in?: InputMaybe> + timestamp?: InputMaybe + timestamp_gt?: InputMaybe + timestamp_gte?: InputMaybe + timestamp_in?: InputMaybe> + timestamp_lt?: InputMaybe + timestamp_lte?: InputMaybe + timestamp_not?: InputMaybe + timestamp_not_in?: InputMaybe> + user?: InputMaybe + user_contains?: InputMaybe + user_gt?: InputMaybe + user_gte?: InputMaybe + user_in?: InputMaybe> + user_lt?: InputMaybe + user_lte?: InputMaybe + user_not?: InputMaybe + user_not_contains?: InputMaybe + user_not_in?: InputMaybe> +} + +export enum UserReferrer_OrderBy { + Amount = 'amount', + Id = 'id', + PoolId = 'poolId', + Referrer = 'referrer', + Timestamp = 'timestamp', + User = 'user', +} + +export type UserStaked = { + __typename?: 'UserStaked' + amount: Scalars['BigInt']['output'] + blockNumber: Scalars['BigInt']['output'] + blockTimestamp: Scalars['BigInt']['output'] + id: Scalars['Bytes']['output'] + poolId: Scalars['BigInt']['output'] + transactionHash: Scalars['Bytes']['output'] + user: Scalars['Bytes']['output'] +} + +export type UserStaked_Filter = { + /** Filter for the block changed event. */ + _change_block?: InputMaybe + amount?: InputMaybe + amount_gt?: InputMaybe + amount_gte?: InputMaybe + amount_in?: InputMaybe> + amount_lt?: InputMaybe + amount_lte?: InputMaybe + amount_not?: InputMaybe + amount_not_in?: InputMaybe> + and?: InputMaybe>> + blockNumber?: InputMaybe + blockNumber_gt?: InputMaybe + blockNumber_gte?: InputMaybe + blockNumber_in?: InputMaybe> + blockNumber_lt?: InputMaybe + blockNumber_lte?: InputMaybe + blockNumber_not?: InputMaybe + blockNumber_not_in?: InputMaybe> + blockTimestamp?: InputMaybe + blockTimestamp_gt?: InputMaybe + blockTimestamp_gte?: InputMaybe + blockTimestamp_in?: InputMaybe> + blockTimestamp_lt?: InputMaybe + blockTimestamp_lte?: InputMaybe + blockTimestamp_not?: InputMaybe + blockTimestamp_not_in?: InputMaybe> + id?: InputMaybe + id_contains?: InputMaybe + id_gt?: InputMaybe + id_gte?: InputMaybe + id_in?: InputMaybe> + id_lt?: InputMaybe + id_lte?: InputMaybe + id_not?: InputMaybe + id_not_contains?: InputMaybe + id_not_in?: InputMaybe> + or?: InputMaybe>> + poolId?: InputMaybe + poolId_gt?: InputMaybe + poolId_gte?: InputMaybe + poolId_in?: InputMaybe> + poolId_lt?: InputMaybe + poolId_lte?: InputMaybe + poolId_not?: InputMaybe + poolId_not_in?: InputMaybe> + transactionHash?: InputMaybe + transactionHash_contains?: InputMaybe + transactionHash_gt?: InputMaybe + transactionHash_gte?: InputMaybe + transactionHash_in?: InputMaybe> + transactionHash_lt?: InputMaybe + transactionHash_lte?: InputMaybe + transactionHash_not?: InputMaybe + transactionHash_not_contains?: InputMaybe + transactionHash_not_in?: InputMaybe> + user?: InputMaybe + user_contains?: InputMaybe + user_gt?: InputMaybe + user_gte?: InputMaybe + user_in?: InputMaybe> + user_lt?: InputMaybe + user_lte?: InputMaybe + user_not?: InputMaybe + user_not_contains?: InputMaybe + user_not_in?: InputMaybe> +} + +export enum UserStaked_OrderBy { + Amount = 'amount', + BlockNumber = 'blockNumber', + BlockTimestamp = 'blockTimestamp', + Id = 'id', + PoolId = 'poolId', + TransactionHash = 'transactionHash', + User = 'user', +} + +export type UserWithdrawn = { + __typename?: 'UserWithdrawn' + amount: Scalars['BigInt']['output'] + blockNumber: Scalars['BigInt']['output'] + blockTimestamp: Scalars['BigInt']['output'] + id: Scalars['Bytes']['output'] + poolId: Scalars['BigInt']['output'] + transactionHash: Scalars['Bytes']['output'] + user: Scalars['Bytes']['output'] +} + +export type UserWithdrawn_Filter = { + /** Filter for the block changed event. */ + _change_block?: InputMaybe + amount?: InputMaybe + amount_gt?: InputMaybe + amount_gte?: InputMaybe + amount_in?: InputMaybe> + amount_lt?: InputMaybe + amount_lte?: InputMaybe + amount_not?: InputMaybe + amount_not_in?: InputMaybe> + and?: InputMaybe>> + blockNumber?: InputMaybe + blockNumber_gt?: InputMaybe + blockNumber_gte?: InputMaybe + blockNumber_in?: InputMaybe> + blockNumber_lt?: InputMaybe + blockNumber_lte?: InputMaybe + blockNumber_not?: InputMaybe + blockNumber_not_in?: InputMaybe> + blockTimestamp?: InputMaybe + blockTimestamp_gt?: InputMaybe + blockTimestamp_gte?: InputMaybe + blockTimestamp_in?: InputMaybe> + blockTimestamp_lt?: InputMaybe + blockTimestamp_lte?: InputMaybe + blockTimestamp_not?: InputMaybe + blockTimestamp_not_in?: InputMaybe> + id?: InputMaybe + id_contains?: InputMaybe + id_gt?: InputMaybe + id_gte?: InputMaybe + id_in?: InputMaybe> + id_lt?: InputMaybe + id_lte?: InputMaybe + id_not?: InputMaybe + id_not_contains?: InputMaybe + id_not_in?: InputMaybe> + or?: InputMaybe>> + poolId?: InputMaybe + poolId_gt?: InputMaybe + poolId_gte?: InputMaybe + poolId_in?: InputMaybe> + poolId_lt?: InputMaybe + poolId_lte?: InputMaybe + poolId_not?: InputMaybe + poolId_not_in?: InputMaybe> + transactionHash?: InputMaybe + transactionHash_contains?: InputMaybe + transactionHash_gt?: InputMaybe + transactionHash_gte?: InputMaybe + transactionHash_in?: InputMaybe> + transactionHash_lt?: InputMaybe + transactionHash_lte?: InputMaybe + transactionHash_not?: InputMaybe + transactionHash_not_contains?: InputMaybe + transactionHash_not_in?: InputMaybe> + user?: InputMaybe + user_contains?: InputMaybe + user_gt?: InputMaybe + user_gte?: InputMaybe + user_in?: InputMaybe> + user_lt?: InputMaybe + user_lte?: InputMaybe + user_not?: InputMaybe + user_not_contains?: InputMaybe + user_not_in?: InputMaybe> +} + +export enum UserWithdrawn_OrderBy { + Amount = 'amount', + BlockNumber = 'blockNumber', + BlockTimestamp = 'blockTimestamp', + Id = 'id', + PoolId = 'poolId', + TransactionHash = 'transactionHash', + User = 'user', +} + +export type User_Filter = { + /** Filter for the block changed event. */ + _change_block?: InputMaybe + and?: InputMaybe>> + id?: InputMaybe + id_contains?: InputMaybe + id_gt?: InputMaybe + id_gte?: InputMaybe + id_in?: InputMaybe> + id_lt?: InputMaybe + id_lte?: InputMaybe + id_not?: InputMaybe + id_not_contains?: InputMaybe + id_not_in?: InputMaybe> + or?: InputMaybe>> + totalClaimed?: InputMaybe + totalClaimed_gt?: InputMaybe + totalClaimed_gte?: InputMaybe + totalClaimed_in?: InputMaybe> + totalClaimed_lt?: InputMaybe + totalClaimed_lte?: InputMaybe + totalClaimed_not?: InputMaybe + totalClaimed_not_in?: InputMaybe> +} + +export enum User_OrderBy { + Id = 'id', + TotalClaimed = 'totalClaimed', +} + +export type _Block_ = { + __typename?: '_Block_' + /** The hash of the block */ + hash?: Maybe + /** The block number */ + number: Scalars['Int']['output'] + /** The hash of the parent block */ + parentHash?: Maybe + /** Integer representation of the timestamp stored in blocks for the chain */ + timestamp?: Maybe +} + +/** The type for the top-level _meta field */ +export type _Meta_ = { + __typename?: '_Meta_' + /** + * Information about a specific subgraph block. The hash of the block + * will be null if the _meta field has a block constraint that asks for + * a block number. It will be filled if the _meta field has no block constraint + * and therefore asks for the latest block + * + */ + block: _Block_ + /** The deployment ID */ + deployment: Scalars['String']['output'] + /** If `true`, the subgraph encountered indexing errors at some past block */ + hasIndexingErrors: Scalars['Boolean']['output'] +} + +export enum _SubgraphErrorPolicy_ { + /** Data will be returned even if the subgraph has indexing errors */ + Allow = 'allow', + /** If the subgraph has indexing errors, data will be omitted. The default. */ + Deny = 'deny', +} + +export type GetTotalStakedPerDayQueryVariables = Exact<{ + date: Scalars['String']['input'] + timestamp: Scalars['BigInt']['input'] +}> + +export type GetTotalStakedPerDayQuery = { + __typename?: 'Query' + poolInteractions: Array<{ __typename?: 'PoolInteraction'; totalStaked: any }> +} + +export type GetReferrersTotalClaimedQueryVariables = Exact<{ + poolId: Scalars['BigInt']['input'] + user: Scalars['Bytes']['input'] +}> + +export type GetReferrersTotalClaimedQuery = { + __typename?: 'Query' + referrers: Array<{ __typename?: 'Referrer'; totalClaimed: any }> +} + +export type GetDepositedAmountUserReferrersQueryVariables = Exact<{ + poolId: Scalars['BigInt']['input'] + referrer: Scalars['Bytes']['input'] +}> + +export type GetDepositedAmountUserReferrersQuery = { + __typename?: 'Query' + userReferrers: Array<{ __typename?: 'UserReferrer'; amount: any }> +} + +export type GetSpecificUserReferrersQueryVariables = Exact<{ + poolId: Scalars['BigInt']['input'] + referrer: Scalars['Bytes']['input'] + first: Scalars['Int']['input'] + skip: Scalars['Int']['input'] + orderDirection?: InputMaybe +}> + +export type GetSpecificUserReferrersQuery = { + __typename?: 'Query' + userReferrers: Array<{ + __typename?: 'UserReferrer' + amount: any + id: any + poolId: any + user: any + }> +} + +export type GetUserYieldPerDayQueryVariables = Exact<{ + poolId: Scalars['BigInt']['input'] + poolIdBytes: Scalars['Bytes']['input'] + user: Scalars['Bytes']['input'] + fromTimestamp: Scalars['BigInt']['input'] + toTimestamp: Scalars['BigInt']['input'] +}> + +export type GetUserYieldPerDayQuery = { + __typename?: 'Query' + initialUserInteractions: Array<{ + __typename?: 'UserInteraction' + timestamp: any + rate: any + deposited: any + claimedRewards: any + pendingRewards: any + }> + userInteractions: Array<{ + __typename?: 'UserInteraction' + timestamp: any + rate: any + deposited: any + claimedRewards: any + pendingRewards: any + }> + poolInteractions: Array<{ + __typename?: 'PoolInteraction' + timestamp: any + rate: any + }> +} + +export const GetTotalStakedPerDay = gql` + query GetTotalStakedPerDay($date: String!, $timestamp: BigInt!) { + poolInteractions( + first: 1 + orderDirection: desc + where: { timestamp_lte: $timestamp, pool: $date } + orderBy: timestamp + ) { + totalStaked + } + } +` +export const GetReferrersTotalClaimed = gql` + query GetReferrersTotalClaimed($poolId: BigInt!, $user: Bytes!) { + referrers(where: { user: $user, poolId: $poolId }) { + totalClaimed + } + } +` +export const GetDepositedAmountUserReferrers = gql` + query GetDepositedAmountUserReferrers($poolId: BigInt!, $referrer: Bytes!) { + userReferrers( + where: { poolId: $poolId, referrer: $referrer, amount_gt: "0" } + ) { + amount + } + } +` +export const GetSpecificUserReferrers = gql` + query GetSpecificUserReferrers( + $poolId: BigInt! + $referrer: Bytes! + $first: Int! + $skip: Int! + $orderDirection: OrderDirection + ) { + userReferrers( + where: { poolId: $poolId, referrer: $referrer, amount_gt: "0" } + first: $first + skip: $skip + orderDirection: $orderDirection + ) { + amount + id + poolId + user + } + } +` +export const GetUserYieldPerDay = gql` + query GetUserYieldPerDay( + $poolId: BigInt! + $poolIdBytes: Bytes! + $user: Bytes! + $fromTimestamp: BigInt! + $toTimestamp: BigInt! + ) { + initialUserInteractions: userInteractions( + orderBy: timestamp + orderDirection: desc + where: { user: $user, poolId: $poolId, timestamp_lt: $fromTimestamp } + first: 1 + ) { + timestamp + rate + deposited + claimedRewards + pendingRewards + } + userInteractions( + orderBy: timestamp + orderDirection: asc + where: { + user: $user + poolId: $poolId + timestamp_gt: $fromTimestamp + timestamp_lt: $toTimestamp + } + ) { + timestamp + rate + deposited + claimedRewards + pendingRewards + } + poolInteractions( + orderBy: timestamp + orderDirection: desc + where: { + rate_gt: 0 + timestamp_lt: $toTimestamp + pool_: { id: $poolIdBytes } + } + first: 1 + ) { + timestamp + rate + } + } +` diff --git a/yarn.lock b/yarn.lock index 59259375..e6065b4d 100644 --- a/yarn.lock +++ b/yarn.lock @@ -5,6 +5,16 @@ __metadata: version: 6 cacheKey: 8 +"@ampproject/remapping@npm:^2.2.0": + version: 2.3.0 + resolution: "@ampproject/remapping@npm:2.3.0" + dependencies: + "@jridgewell/gen-mapping": ^0.3.5 + "@jridgewell/trace-mapping": ^0.3.24 + checksum: d3ad7b89d973df059c4e8e6d7c972cbeb1bb2f18f002a3bd04ae0707da214cb06cc06929b65aa2313b9347463df2914772298bae8b1d7973f246bb3f2ab3e8f0 + languageName: node + linkType: hard + "@apollo/client@npm:^3.9.10": version: 3.11.8 resolution: "@apollo/client@npm:3.11.8" @@ -42,6 +52,44 @@ __metadata: languageName: node linkType: hard +"@ardatan/relay-compiler@npm:12.0.0": + version: 12.0.0 + resolution: "@ardatan/relay-compiler@npm:12.0.0" + dependencies: + "@babel/core": ^7.14.0 + "@babel/generator": ^7.14.0 + "@babel/parser": ^7.14.0 + "@babel/runtime": ^7.0.0 + "@babel/traverse": ^7.14.0 + "@babel/types": ^7.0.0 + babel-preset-fbjs: ^3.4.0 + chalk: ^4.0.0 + fb-watchman: ^2.0.0 + fbjs: ^3.0.0 + glob: ^7.1.1 + immutable: ~3.7.6 + invariant: ^2.2.4 + nullthrows: ^1.1.1 + relay-runtime: 12.0.0 + signedsource: ^1.0.0 + yargs: ^15.3.1 + peerDependencies: + graphql: "*" + bin: + relay-compiler: bin/relay-compiler + checksum: f0cec120d02961ee8652e0dde72d9e425bc97cad5d0f767d8764cfd30952294eb2838432f33e4da8bb6999d0c13dcd1df128280666bfea373294d98aa8033ae7 + languageName: node + linkType: hard + +"@ardatan/sync-fetch@npm:^0.0.1": + version: 0.0.1 + resolution: "@ardatan/sync-fetch@npm:0.0.1" + dependencies: + node-fetch: ^2.6.1 + checksum: af39bdfb4c2b35bd2c6acc540a5e302730dae17e73d3a18cd1a4aa50c1c741cb1869dffdef1379c491da5ad2e3cfa2bf3a8064e6046c12b46c6a97f54f100a8d + languageName: node + linkType: hard + "@babel/code-frame@npm:^7.0.0, @babel/code-frame@npm:^7.12.13": version: 7.25.7 resolution: "@babel/code-frame@npm:7.25.7" @@ -52,6 +100,181 @@ __metadata: languageName: node linkType: hard +"@babel/code-frame@npm:^7.25.9, @babel/code-frame@npm:^7.26.0": + version: 7.26.2 + resolution: "@babel/code-frame@npm:7.26.2" + dependencies: + "@babel/helper-validator-identifier": ^7.25.9 + js-tokens: ^4.0.0 + picocolors: ^1.0.0 + checksum: db13f5c42d54b76c1480916485e6900748bbcb0014a8aca87f50a091f70ff4e0d0a6db63cade75eb41fcc3d2b6ba0a7f89e343def4f96f00269b41b8ab8dd7b8 + languageName: node + linkType: hard + +"@babel/compat-data@npm:^7.20.5, @babel/compat-data@npm:^7.25.9": + version: 7.26.2 + resolution: "@babel/compat-data@npm:7.26.2" + checksum: d52fae9b0dc59b409d6005ae6b172e89329f46d68136130065ebe923a156fc633e0f1c8600b3e319b9e0f99fd948f64991a5419e2e9431d00d9d235d5f7a7618 + languageName: node + linkType: hard + +"@babel/core@npm:^7.14.0, @babel/core@npm:^7.22.9": + version: 7.26.0 + resolution: "@babel/core@npm:7.26.0" + dependencies: + "@ampproject/remapping": ^2.2.0 + "@babel/code-frame": ^7.26.0 + "@babel/generator": ^7.26.0 + "@babel/helper-compilation-targets": ^7.25.9 + "@babel/helper-module-transforms": ^7.26.0 + "@babel/helpers": ^7.26.0 + "@babel/parser": ^7.26.0 + "@babel/template": ^7.25.9 + "@babel/traverse": ^7.25.9 + "@babel/types": ^7.26.0 + convert-source-map: ^2.0.0 + debug: ^4.1.0 + gensync: ^1.0.0-beta.2 + json5: ^2.2.3 + semver: ^6.3.1 + checksum: b296084cfd818bed8079526af93b5dfa0ba70282532d2132caf71d4060ab190ba26d3184832a45accd82c3c54016985a4109ab9118674347a7e5e9bc464894e6 + languageName: node + linkType: hard + +"@babel/generator@npm:^7.14.0, @babel/generator@npm:^7.18.13, @babel/generator@npm:^7.25.9, @babel/generator@npm:^7.26.0": + version: 7.26.2 + resolution: "@babel/generator@npm:7.26.2" + dependencies: + "@babel/parser": ^7.26.2 + "@babel/types": ^7.26.0 + "@jridgewell/gen-mapping": ^0.3.5 + "@jridgewell/trace-mapping": ^0.3.25 + jsesc: ^3.0.2 + checksum: 6ff850b7d6082619f8c2f518d993cf7254cfbaa20b026282cbef5c9b2197686d076a432b18e36c4d1a42721c016df4f77a8f62c67600775d9683621d534b91b4 + languageName: node + linkType: hard + +"@babel/helper-annotate-as-pure@npm:^7.25.9": + version: 7.25.9 + resolution: "@babel/helper-annotate-as-pure@npm:7.25.9" + dependencies: + "@babel/types": ^7.25.9 + checksum: 41edda10df1ae106a9b4fe617bf7c6df77db992992afd46192534f5cff29f9e49a303231733782dd65c5f9409714a529f215325569f14282046e9d3b7a1ffb6c + languageName: node + linkType: hard + +"@babel/helper-compilation-targets@npm:^7.20.7, @babel/helper-compilation-targets@npm:^7.25.9": + version: 7.25.9 + resolution: "@babel/helper-compilation-targets@npm:7.25.9" + dependencies: + "@babel/compat-data": ^7.25.9 + "@babel/helper-validator-option": ^7.25.9 + browserslist: ^4.24.0 + lru-cache: ^5.1.1 + semver: ^6.3.1 + checksum: 3af536e2db358b38f968abdf7d512d425d1018fef2f485d6f131a57a7bcaed32c606b4e148bb230e1508fa42b5b2ac281855a68eb78270f54698c48a83201b9b + languageName: node + linkType: hard + +"@babel/helper-create-class-features-plugin@npm:^7.18.6": + version: 7.25.9 + resolution: "@babel/helper-create-class-features-plugin@npm:7.25.9" + dependencies: + "@babel/helper-annotate-as-pure": ^7.25.9 + "@babel/helper-member-expression-to-functions": ^7.25.9 + "@babel/helper-optimise-call-expression": ^7.25.9 + "@babel/helper-replace-supers": ^7.25.9 + "@babel/helper-skip-transparent-expression-wrappers": ^7.25.9 + "@babel/traverse": ^7.25.9 + semver: ^6.3.1 + peerDependencies: + "@babel/core": ^7.0.0 + checksum: 91dd5f203ed04568c70b052e2f26dfaac7c146447196c00b8ecbb6d3d2f3b517abadb985d3321a19d143adaed6fe17f7f79f8f50e0c20e9d8ad83e1027b42424 + languageName: node + linkType: hard + +"@babel/helper-member-expression-to-functions@npm:^7.25.9": + version: 7.25.9 + resolution: "@babel/helper-member-expression-to-functions@npm:7.25.9" + dependencies: + "@babel/traverse": ^7.25.9 + "@babel/types": ^7.25.9 + checksum: 8e2f1979b6d596ac2a8cbf17f2cf709180fefc274ac3331408b48203fe19134ed87800774ef18838d0275c3965130bae22980d90caed756b7493631d4b2cf961 + languageName: node + linkType: hard + +"@babel/helper-module-imports@npm:^7.25.9": + version: 7.25.9 + resolution: "@babel/helper-module-imports@npm:7.25.9" + dependencies: + "@babel/traverse": ^7.25.9 + "@babel/types": ^7.25.9 + checksum: 1b411ce4ca825422ef7065dffae7d8acef52023e51ad096351e3e2c05837e9bf9fca2af9ca7f28dc26d596a588863d0fedd40711a88e350b736c619a80e704e6 + languageName: node + linkType: hard + +"@babel/helper-module-transforms@npm:^7.25.9, @babel/helper-module-transforms@npm:^7.26.0": + version: 7.26.0 + resolution: "@babel/helper-module-transforms@npm:7.26.0" + dependencies: + "@babel/helper-module-imports": ^7.25.9 + "@babel/helper-validator-identifier": ^7.25.9 + "@babel/traverse": ^7.25.9 + peerDependencies: + "@babel/core": ^7.0.0 + checksum: 942eee3adf2b387443c247a2c190c17c4fd45ba92a23087abab4c804f40541790d51ad5277e4b5b1ed8d5ba5b62de73857446b7742f835c18ebd350384e63917 + languageName: node + linkType: hard + +"@babel/helper-optimise-call-expression@npm:^7.25.9": + version: 7.25.9 + resolution: "@babel/helper-optimise-call-expression@npm:7.25.9" + dependencies: + "@babel/types": ^7.25.9 + checksum: f09d0ad60c0715b9a60c31841b3246b47d67650c512ce85bbe24a3124f1a4d66377df793af393273bc6e1015b0a9c799626c48e53747581c1582b99167cc65dc + languageName: node + linkType: hard + +"@babel/helper-plugin-utils@npm:^7.12.13, @babel/helper-plugin-utils@npm:^7.18.6, @babel/helper-plugin-utils@npm:^7.20.2, @babel/helper-plugin-utils@npm:^7.25.9, @babel/helper-plugin-utils@npm:^7.8.0": + version: 7.25.9 + resolution: "@babel/helper-plugin-utils@npm:7.25.9" + checksum: e19ec8acf0b696756e6d84531f532c5fe508dce57aa68c75572a77798bd04587a844a9a6c8ea7d62d673e21fdc174d091c9097fb29aea1c1b49f9c6eaa80f022 + languageName: node + linkType: hard + +"@babel/helper-replace-supers@npm:^7.25.9": + version: 7.25.9 + resolution: "@babel/helper-replace-supers@npm:7.25.9" + dependencies: + "@babel/helper-member-expression-to-functions": ^7.25.9 + "@babel/helper-optimise-call-expression": ^7.25.9 + "@babel/traverse": ^7.25.9 + peerDependencies: + "@babel/core": ^7.0.0 + checksum: 84f40e12520b7023e52d289bf9d569a06284879fe23bbbacad86bec5d978b2669769f11b073fcfeb1567d8c547168323005fda88607a4681ecaeb4a5cdd48bb9 + languageName: node + linkType: hard + +"@babel/helper-simple-access@npm:^7.25.9": + version: 7.25.9 + resolution: "@babel/helper-simple-access@npm:7.25.9" + dependencies: + "@babel/traverse": ^7.25.9 + "@babel/types": ^7.25.9 + checksum: 6d96c94b88e8288d15e5352c1221486bd4f62de8c7dc7c7b9f5b107ce2c79f67fec5ed71a0476e146f1fefbbbf1d69abe35dc821d80ce01fc7f472286c342421 + languageName: node + linkType: hard + +"@babel/helper-skip-transparent-expression-wrappers@npm:^7.25.9": + version: 7.25.9 + resolution: "@babel/helper-skip-transparent-expression-wrappers@npm:7.25.9" + dependencies: + "@babel/traverse": ^7.25.9 + "@babel/types": ^7.25.9 + checksum: fdbb5248932198bc26daa6abf0d2ac42cab9c2dbb75b7e9f40d425c8f28f09620b886d40e7f9e4e08ffc7aaa2cefe6fc2c44be7c20e81f7526634702fb615bdc + languageName: node + linkType: hard + "@babel/helper-string-parser@npm:^7.25.7": version: 7.25.7 resolution: "@babel/helper-string-parser@npm:7.25.7" @@ -59,6 +282,13 @@ __metadata: languageName: node linkType: hard +"@babel/helper-string-parser@npm:^7.25.9": + version: 7.25.9 + resolution: "@babel/helper-string-parser@npm:7.25.9" + checksum: 6435ee0849e101681c1849868278b5aee82686ba2c1e27280e5e8aca6233af6810d39f8e4e693d2f2a44a3728a6ccfd66f72d71826a94105b86b731697cdfa99 + languageName: node + linkType: hard + "@babel/helper-validator-identifier@npm:^7.25.7": version: 7.25.7 resolution: "@babel/helper-validator-identifier@npm:7.25.7" @@ -66,6 +296,30 @@ __metadata: languageName: node linkType: hard +"@babel/helper-validator-identifier@npm:^7.25.9": + version: 7.25.9 + resolution: "@babel/helper-validator-identifier@npm:7.25.9" + checksum: 5b85918cb1a92a7f3f508ea02699e8d2422fe17ea8e82acd445006c0ef7520fbf48e3dbcdaf7b0a1d571fc3a2715a29719e5226636cb6042e15fe6ed2a590944 + languageName: node + linkType: hard + +"@babel/helper-validator-option@npm:^7.25.9": + version: 7.25.9 + resolution: "@babel/helper-validator-option@npm:7.25.9" + checksum: 9491b2755948ebbdd68f87da907283698e663b5af2d2b1b02a2765761974b1120d5d8d49e9175b167f16f72748ffceec8c9cf62acfbee73f4904507b246e2b3d + languageName: node + linkType: hard + +"@babel/helpers@npm:^7.26.0": + version: 7.26.0 + resolution: "@babel/helpers@npm:7.26.0" + dependencies: + "@babel/template": ^7.25.9 + "@babel/types": ^7.26.0 + checksum: d77fe8d45033d6007eadfa440355c1355eed57902d5a302f450827ad3d530343430a21210584d32eef2f216ae463d4591184c6fc60cf205bbf3a884561469200 + languageName: node + linkType: hard + "@babel/highlight@npm:^7.25.7": version: 7.25.7 resolution: "@babel/highlight@npm:7.25.7" @@ -78,6 +332,17 @@ __metadata: languageName: node linkType: hard +"@babel/parser@npm:^7.14.0, @babel/parser@npm:^7.16.8, @babel/parser@npm:^7.25.9, @babel/parser@npm:^7.26.0, @babel/parser@npm:^7.26.2": + version: 7.26.2 + resolution: "@babel/parser@npm:7.26.2" + dependencies: + "@babel/types": ^7.26.0 + bin: + parser: ./bin/babel-parser.js + checksum: c88b5ea0adf357ef909cdc2c31e284a154943edc59f63f6e8a4c20bf773a1b2f3d8c2205e59c09ca7cdad91e7466300114548876529277a80651b6436a48d5d9 + languageName: node + linkType: hard + "@babel/parser@npm:^7.23.5, @babel/parser@npm:^7.25.3": version: 7.25.8 resolution: "@babel/parser@npm:7.25.8" @@ -89,6 +354,371 @@ __metadata: languageName: node linkType: hard +"@babel/plugin-proposal-class-properties@npm:^7.0.0": + version: 7.18.6 + resolution: "@babel/plugin-proposal-class-properties@npm:7.18.6" + dependencies: + "@babel/helper-create-class-features-plugin": ^7.18.6 + "@babel/helper-plugin-utils": ^7.18.6 + peerDependencies: + "@babel/core": ^7.0.0-0 + checksum: 49a78a2773ec0db56e915d9797e44fd079ab8a9b2e1716e0df07c92532f2c65d76aeda9543883916b8e0ff13606afeffa67c5b93d05b607bc87653ad18a91422 + languageName: node + linkType: hard + +"@babel/plugin-proposal-object-rest-spread@npm:^7.0.0": + version: 7.20.7 + resolution: "@babel/plugin-proposal-object-rest-spread@npm:7.20.7" + dependencies: + "@babel/compat-data": ^7.20.5 + "@babel/helper-compilation-targets": ^7.20.7 + "@babel/helper-plugin-utils": ^7.20.2 + "@babel/plugin-syntax-object-rest-spread": ^7.8.3 + "@babel/plugin-transform-parameters": ^7.20.7 + peerDependencies: + "@babel/core": ^7.0.0-0 + checksum: 1329db17009964bc644484c660eab717cb3ca63ac0ab0f67c651a028d1bc2ead51dc4064caea283e46994f1b7221670a35cbc0b4beb6273f55e915494b5aa0b2 + languageName: node + linkType: hard + +"@babel/plugin-syntax-class-properties@npm:^7.0.0": + version: 7.12.13 + resolution: "@babel/plugin-syntax-class-properties@npm:7.12.13" + dependencies: + "@babel/helper-plugin-utils": ^7.12.13 + peerDependencies: + "@babel/core": ^7.0.0-0 + checksum: 24f34b196d6342f28d4bad303612d7ff566ab0a013ce89e775d98d6f832969462e7235f3e7eaf17678a533d4be0ba45d3ae34ab4e5a9dcbda5d98d49e5efa2fc + languageName: node + linkType: hard + +"@babel/plugin-syntax-flow@npm:^7.0.0, @babel/plugin-syntax-flow@npm:^7.25.9": + version: 7.26.0 + resolution: "@babel/plugin-syntax-flow@npm:7.26.0" + dependencies: + "@babel/helper-plugin-utils": ^7.25.9 + peerDependencies: + "@babel/core": ^7.0.0-0 + checksum: fdc0d0a7b512e00d933e12cf93c785ea4645a193f4b539230b7601cfaa8c704410199318ce9ea14e5fca7d13e9027822f7d81a7871d3e854df26b6af04cc3c6c + languageName: node + linkType: hard + +"@babel/plugin-syntax-import-assertions@npm:^7.20.0": + version: 7.26.0 + resolution: "@babel/plugin-syntax-import-assertions@npm:7.26.0" + dependencies: + "@babel/helper-plugin-utils": ^7.25.9 + peerDependencies: + "@babel/core": ^7.0.0-0 + checksum: b58f2306df4a690ca90b763d832ec05202c50af787158ff8b50cdf3354359710bce2e1eb2b5135fcabf284756ac8eadf09ca74764aa7e76d12a5cac5f6b21e67 + languageName: node + linkType: hard + +"@babel/plugin-syntax-jsx@npm:^7.0.0, @babel/plugin-syntax-jsx@npm:^7.25.9": + version: 7.25.9 + resolution: "@babel/plugin-syntax-jsx@npm:7.25.9" + dependencies: + "@babel/helper-plugin-utils": ^7.25.9 + peerDependencies: + "@babel/core": ^7.0.0-0 + checksum: bb609d1ffb50b58f0c1bac8810d0e46a4f6c922aa171c458f3a19d66ee545d36e782d3bffbbc1fed0dc65a558bdce1caf5279316583c0fff5a2c1658982a8563 + languageName: node + linkType: hard + +"@babel/plugin-syntax-object-rest-spread@npm:^7.0.0, @babel/plugin-syntax-object-rest-spread@npm:^7.8.3": + version: 7.8.3 + resolution: "@babel/plugin-syntax-object-rest-spread@npm:7.8.3" + dependencies: + "@babel/helper-plugin-utils": ^7.8.0 + peerDependencies: + "@babel/core": ^7.0.0-0 + checksum: fddcf581a57f77e80eb6b981b10658421bc321ba5f0a5b754118c6a92a5448f12a0c336f77b8abf734841e102e5126d69110a306eadb03ca3e1547cab31f5cbf + languageName: node + linkType: hard + +"@babel/plugin-transform-arrow-functions@npm:^7.0.0": + version: 7.25.9 + resolution: "@babel/plugin-transform-arrow-functions@npm:7.25.9" + dependencies: + "@babel/helper-plugin-utils": ^7.25.9 + peerDependencies: + "@babel/core": ^7.0.0-0 + checksum: c29f081224859483accf55fb4d091db2aac0dcd0d7954bac5ca889030cc498d3f771aa20eb2e9cd8310084ec394d85fa084b97faf09298b6bc9541182b3eb5bb + languageName: node + linkType: hard + +"@babel/plugin-transform-block-scoped-functions@npm:^7.0.0": + version: 7.25.9 + resolution: "@babel/plugin-transform-block-scoped-functions@npm:7.25.9" + dependencies: + "@babel/helper-plugin-utils": ^7.25.9 + peerDependencies: + "@babel/core": ^7.0.0-0 + checksum: bf31896556b33a80f017af3d445ceb532ec0f5ca9d69bc211a963ac92514d172d5c24c5ac319f384d9dfa7f1a4d8dc23032c2fe3e74f98a59467ecd86f7033ae + languageName: node + linkType: hard + +"@babel/plugin-transform-block-scoping@npm:^7.0.0": + version: 7.25.9 + resolution: "@babel/plugin-transform-block-scoping@npm:7.25.9" + dependencies: + "@babel/helper-plugin-utils": ^7.25.9 + peerDependencies: + "@babel/core": ^7.0.0-0 + checksum: e869500cfb1995e06e64c9608543b56468639809febfcdd6fcf683bc0bf1be2431cacf2981a168a1a14f4766393e37bc9f7c96d25bc5b5f39a64a8a8ad0bf8e0 + languageName: node + linkType: hard + +"@babel/plugin-transform-classes@npm:^7.0.0": + version: 7.25.9 + resolution: "@babel/plugin-transform-classes@npm:7.25.9" + dependencies: + "@babel/helper-annotate-as-pure": ^7.25.9 + "@babel/helper-compilation-targets": ^7.25.9 + "@babel/helper-plugin-utils": ^7.25.9 + "@babel/helper-replace-supers": ^7.25.9 + "@babel/traverse": ^7.25.9 + globals: ^11.1.0 + peerDependencies: + "@babel/core": ^7.0.0-0 + checksum: d12584f72125314cc0fa8c77586ece2888d677788ac75f7393f5da574dfe4e45a556f7e3488fab29c8777ab3e5856d7a2d79f6df02834083aaa9d766440e3c68 + languageName: node + linkType: hard + +"@babel/plugin-transform-computed-properties@npm:^7.0.0": + version: 7.25.9 + resolution: "@babel/plugin-transform-computed-properties@npm:7.25.9" + dependencies: + "@babel/helper-plugin-utils": ^7.25.9 + "@babel/template": ^7.25.9 + peerDependencies: + "@babel/core": ^7.0.0-0 + checksum: f77fa4bc0c1e0031068172df28852388db6b0f91c268d037905f459607cf1e8ebab00015f9f179f4ad96e11c5f381b635cd5dc4e147a48c7ac79d195ae7542de + languageName: node + linkType: hard + +"@babel/plugin-transform-destructuring@npm:^7.0.0": + version: 7.25.9 + resolution: "@babel/plugin-transform-destructuring@npm:7.25.9" + dependencies: + "@babel/helper-plugin-utils": ^7.25.9 + peerDependencies: + "@babel/core": ^7.0.0-0 + checksum: 965f63077a904828f4adee91393f83644098533442b8217d5a135c23a759a4c252c714074c965676a60d2c33f610f579a4eeb59ffd783724393af61c0ca45fef + languageName: node + linkType: hard + +"@babel/plugin-transform-flow-strip-types@npm:^7.0.0": + version: 7.25.9 + resolution: "@babel/plugin-transform-flow-strip-types@npm:7.25.9" + dependencies: + "@babel/helper-plugin-utils": ^7.25.9 + "@babel/plugin-syntax-flow": ^7.25.9 + peerDependencies: + "@babel/core": ^7.0.0-0 + checksum: 7f51cd5cc0c3a5ce2fe31c689458706ed40284a1c59b017167c3cbef953550a843450c5cfe6896b154fb645f141a930a4fd925f46b2215d0fcc66e7758202c38 + languageName: node + linkType: hard + +"@babel/plugin-transform-for-of@npm:^7.0.0": + version: 7.25.9 + resolution: "@babel/plugin-transform-for-of@npm:7.25.9" + dependencies: + "@babel/helper-plugin-utils": ^7.25.9 + "@babel/helper-skip-transparent-expression-wrappers": ^7.25.9 + peerDependencies: + "@babel/core": ^7.0.0-0 + checksum: 41b56e70256a29fc26ed7fb95ece062d7ec2f3b6ea8f0686349ffd004cd4816132085ee21165b89c502ee7161cb7cfb12510961638851357945dc7bc546475b7 + languageName: node + linkType: hard + +"@babel/plugin-transform-function-name@npm:^7.0.0": + version: 7.25.9 + resolution: "@babel/plugin-transform-function-name@npm:7.25.9" + dependencies: + "@babel/helper-compilation-targets": ^7.25.9 + "@babel/helper-plugin-utils": ^7.25.9 + "@babel/traverse": ^7.25.9 + peerDependencies: + "@babel/core": ^7.0.0-0 + checksum: a8d7c8d019a6eb57eab5ca1be3e3236f175557d55b1f3b11f8ad7999e3fbb1cf37905fd8cb3a349bffb4163a558e9f33b63f631597fdc97c858757deac1b2fd7 + languageName: node + linkType: hard + +"@babel/plugin-transform-literals@npm:^7.0.0": + version: 7.25.9 + resolution: "@babel/plugin-transform-literals@npm:7.25.9" + dependencies: + "@babel/helper-plugin-utils": ^7.25.9 + peerDependencies: + "@babel/core": ^7.0.0-0 + checksum: 3cca75823a38aab599bc151b0fa4d816b5e1b62d6e49c156aa90436deb6e13649f5505973151a10418b64f3f9d1c3da53e38a186402e0ed7ad98e482e70c0c14 + languageName: node + linkType: hard + +"@babel/plugin-transform-member-expression-literals@npm:^7.0.0": + version: 7.25.9 + resolution: "@babel/plugin-transform-member-expression-literals@npm:7.25.9" + dependencies: + "@babel/helper-plugin-utils": ^7.25.9 + peerDependencies: + "@babel/core": ^7.0.0-0 + checksum: db92041ae87b8f59f98b50359e0bb172480f6ba22e5e76b13bdfe07122cbf0daa9cd8ad2e78dcb47939938fed88ad57ab5989346f64b3a16953fc73dea3a9b1f + languageName: node + linkType: hard + +"@babel/plugin-transform-modules-commonjs@npm:^7.0.0": + version: 7.25.9 + resolution: "@babel/plugin-transform-modules-commonjs@npm:7.25.9" + dependencies: + "@babel/helper-module-transforms": ^7.25.9 + "@babel/helper-plugin-utils": ^7.25.9 + "@babel/helper-simple-access": ^7.25.9 + peerDependencies: + "@babel/core": ^7.0.0-0 + checksum: 4f101f0ea4a57d1d27a7976d668c63a7d0bbb0d9c1909d8ac43c785fd1496c31e6552ffd9673730c088873df1bc64f1cc4aad7c3c90413ac5e80b33e336d80e4 + languageName: node + linkType: hard + +"@babel/plugin-transform-object-super@npm:^7.0.0": + version: 7.25.9 + resolution: "@babel/plugin-transform-object-super@npm:7.25.9" + dependencies: + "@babel/helper-plugin-utils": ^7.25.9 + "@babel/helper-replace-supers": ^7.25.9 + peerDependencies: + "@babel/core": ^7.0.0-0 + checksum: 1817b5d8b80e451ae1ad9080cca884f4f16df75880a158947df76a2ed8ab404d567a7dce71dd8051ef95f90fbe3513154086a32aba55cc76027f6cbabfbd7f98 + languageName: node + linkType: hard + +"@babel/plugin-transform-parameters@npm:^7.0.0, @babel/plugin-transform-parameters@npm:^7.20.7": + version: 7.25.9 + resolution: "@babel/plugin-transform-parameters@npm:7.25.9" + dependencies: + "@babel/helper-plugin-utils": ^7.25.9 + peerDependencies: + "@babel/core": ^7.0.0-0 + checksum: d7ba2a7d05edbc85aed741289b0ff3d6289a1c25d82ac4be32c565f88a66391f46631aad59ceeed40824037f7eeaa7a0de1998db491f50e65a565cd964f78786 + languageName: node + linkType: hard + +"@babel/plugin-transform-property-literals@npm:^7.0.0": + version: 7.25.9 + resolution: "@babel/plugin-transform-property-literals@npm:7.25.9" + dependencies: + "@babel/helper-plugin-utils": ^7.25.9 + peerDependencies: + "@babel/core": ^7.0.0-0 + checksum: 436046ab07d54a9b44a384eeffec701d4e959a37a7547dda72e069e751ca7ff753d1782a8339e354b97c78a868b49ea97bf41bf5a44c6d7a3c0a05ad40eeb49c + languageName: node + linkType: hard + +"@babel/plugin-transform-react-display-name@npm:^7.0.0": + version: 7.25.9 + resolution: "@babel/plugin-transform-react-display-name@npm:7.25.9" + dependencies: + "@babel/helper-plugin-utils": ^7.25.9 + peerDependencies: + "@babel/core": ^7.0.0-0 + checksum: cd7020494e6f31c287834e8929e6a718d5b0ace21232fa30feb48622c2312045504c34b347dcff9e88145c349882b296a7d6b6cc3d3447d8c85502f16471747c + languageName: node + linkType: hard + +"@babel/plugin-transform-react-jsx@npm:^7.0.0": + version: 7.25.9 + resolution: "@babel/plugin-transform-react-jsx@npm:7.25.9" + dependencies: + "@babel/helper-annotate-as-pure": ^7.25.9 + "@babel/helper-module-imports": ^7.25.9 + "@babel/helper-plugin-utils": ^7.25.9 + "@babel/plugin-syntax-jsx": ^7.25.9 + "@babel/types": ^7.25.9 + peerDependencies: + "@babel/core": ^7.0.0-0 + checksum: 5c6523c3963e3c6cf4c3cc2768a3766318af05b8f6c17aff52a4010e2c170e87b2fcdc94e9c9223ae12158664df4852ce81b9c8d042c15ea8fd83d6375f9f30f + languageName: node + linkType: hard + +"@babel/plugin-transform-shorthand-properties@npm:^7.0.0": + version: 7.25.9 + resolution: "@babel/plugin-transform-shorthand-properties@npm:7.25.9" + dependencies: + "@babel/helper-plugin-utils": ^7.25.9 + peerDependencies: + "@babel/core": ^7.0.0-0 + checksum: f774995d58d4e3a992b732cf3a9b8823552d471040e280264dd15e0735433d51b468fef04d75853d061309389c66bda10ce1b298297ce83999220eb0ad62741d + languageName: node + linkType: hard + +"@babel/plugin-transform-spread@npm:^7.0.0": + version: 7.25.9 + resolution: "@babel/plugin-transform-spread@npm:7.25.9" + dependencies: + "@babel/helper-plugin-utils": ^7.25.9 + "@babel/helper-skip-transparent-expression-wrappers": ^7.25.9 + peerDependencies: + "@babel/core": ^7.0.0-0 + checksum: 2403a5d49171b7714d5e5ecb1f598c61575a4dbe5e33e5a5f08c0ea990b75e693ca1ea983b6a96b2e3e5e7da48c8238333f525e47498c53b577c5d094d964c06 + languageName: node + linkType: hard + +"@babel/plugin-transform-template-literals@npm:^7.0.0": + version: 7.25.9 + resolution: "@babel/plugin-transform-template-literals@npm:7.25.9" + dependencies: + "@babel/helper-plugin-utils": ^7.25.9 + peerDependencies: + "@babel/core": ^7.0.0-0 + checksum: 92eb1d6e2d95bd24abbb74fa7640d02b66ff6214e0bb616d7fda298a7821ce15132a4265d576a3502a347a3c9e94b6c69ed265bb0784664592fa076785a3d16a + languageName: node + linkType: hard + +"@babel/runtime@npm:^7.0.0": + version: 7.26.0 + resolution: "@babel/runtime@npm:7.26.0" + dependencies: + regenerator-runtime: ^0.14.0 + checksum: c8e2c0504ab271b3467a261a8f119bf2603eb857a0d71e37791f4e3fae00f681365073cc79f141ddaa90c6077c60ba56448004ad5429d07ac73532be9f7cf28a + languageName: node + linkType: hard + +"@babel/template@npm:^7.18.10, @babel/template@npm:^7.20.7, @babel/template@npm:^7.25.9": + version: 7.25.9 + resolution: "@babel/template@npm:7.25.9" + dependencies: + "@babel/code-frame": ^7.25.9 + "@babel/parser": ^7.25.9 + "@babel/types": ^7.25.9 + checksum: 103641fea19c7f4e82dc913aa6b6ac157112a96d7c724d513288f538b84bae04fb87b1f1e495ac1736367b1bc30e10f058b30208fb25f66038e1f1eb4e426472 + languageName: node + linkType: hard + +"@babel/traverse@npm:^7.14.0, @babel/traverse@npm:^7.16.8, @babel/traverse@npm:^7.25.9": + version: 7.25.9 + resolution: "@babel/traverse@npm:7.25.9" + dependencies: + "@babel/code-frame": ^7.25.9 + "@babel/generator": ^7.25.9 + "@babel/parser": ^7.25.9 + "@babel/template": ^7.25.9 + "@babel/types": ^7.25.9 + debug: ^4.3.1 + globals: ^11.1.0 + checksum: 901d325662ff1dd9bc51de00862e01055fa6bc374f5297d7e3731f2f0e268bbb1d2141f53fa82860aa308ee44afdcf186a948f16c83153927925804b95a9594d + languageName: node + linkType: hard + +"@babel/types@npm:^7.0.0, @babel/types@npm:^7.16.8, @babel/types@npm:^7.18.13, @babel/types@npm:^7.25.9, @babel/types@npm:^7.26.0": + version: 7.26.0 + resolution: "@babel/types@npm:7.26.0" + dependencies: + "@babel/helper-string-parser": ^7.25.9 + "@babel/helper-validator-identifier": ^7.25.9 + checksum: a3dd37dabac693018872da96edb8c1843a605c1bfacde6c3f504fba79b972426a6f24df70aa646356c0c1b19bdd2c722c623c684a996c002381071680602280d + languageName: node + linkType: hard + "@babel/types@npm:^7.25.8": version: 7.25.8 resolution: "@babel/types@npm:7.25.8" @@ -829,120 +1459,715 @@ __metadata: languageName: node linkType: hard -"@ethersproject/strings@npm:5.7.0, @ethersproject/strings@npm:^5.7.0": - version: 5.7.0 - resolution: "@ethersproject/strings@npm:5.7.0" +"@ethersproject/strings@npm:5.7.0, @ethersproject/strings@npm:^5.7.0": + version: 5.7.0 + resolution: "@ethersproject/strings@npm:5.7.0" + dependencies: + "@ethersproject/bytes": ^5.7.0 + "@ethersproject/constants": ^5.7.0 + "@ethersproject/logger": ^5.7.0 + checksum: 5ff78693ae3fdf3cf23e1f6dc047a61e44c8197d2408c42719fef8cb7b7b3613a4eec88ac0ed1f9f5558c74fe0de7ae3195a29ca91a239c74b9f444d8e8b50df + languageName: node + linkType: hard + +"@ethersproject/transactions@npm:5.7.0, @ethersproject/transactions@npm:^5.7.0": + version: 5.7.0 + resolution: "@ethersproject/transactions@npm:5.7.0" + dependencies: + "@ethersproject/address": ^5.7.0 + "@ethersproject/bignumber": ^5.7.0 + "@ethersproject/bytes": ^5.7.0 + "@ethersproject/constants": ^5.7.0 + "@ethersproject/keccak256": ^5.7.0 + "@ethersproject/logger": ^5.7.0 + "@ethersproject/properties": ^5.7.0 + "@ethersproject/rlp": ^5.7.0 + "@ethersproject/signing-key": ^5.7.0 + checksum: a31b71996d2b283f68486241bff0d3ea3f1ba0e8f1322a8fffc239ccc4f4a7eb2ea9994b8fd2f093283fd75f87bae68171e01b6265261f821369aca319884a79 + languageName: node + linkType: hard + +"@ethersproject/units@npm:5.7.0": + version: 5.7.0 + resolution: "@ethersproject/units@npm:5.7.0" + dependencies: + "@ethersproject/bignumber": ^5.7.0 + "@ethersproject/constants": ^5.7.0 + "@ethersproject/logger": ^5.7.0 + checksum: 304714f848cd32e57df31bf545f7ad35c2a72adae957198b28cbc62166daa929322a07bff6e9c9ac4577ab6aa0de0546b065ed1b2d20b19e25748b7d475cb0fc + languageName: node + linkType: hard + +"@ethersproject/wallet@npm:5.7.0": + version: 5.7.0 + resolution: "@ethersproject/wallet@npm:5.7.0" + dependencies: + "@ethersproject/abstract-provider": ^5.7.0 + "@ethersproject/abstract-signer": ^5.7.0 + "@ethersproject/address": ^5.7.0 + "@ethersproject/bignumber": ^5.7.0 + "@ethersproject/bytes": ^5.7.0 + "@ethersproject/hash": ^5.7.0 + "@ethersproject/hdnode": ^5.7.0 + "@ethersproject/json-wallets": ^5.7.0 + "@ethersproject/keccak256": ^5.7.0 + "@ethersproject/logger": ^5.7.0 + "@ethersproject/properties": ^5.7.0 + "@ethersproject/random": ^5.7.0 + "@ethersproject/signing-key": ^5.7.0 + "@ethersproject/transactions": ^5.7.0 + "@ethersproject/wordlists": ^5.7.0 + checksum: a4009bf7331eddab38e3015b5e9101ef92de7f705b00a6196b997db0e5635b6d83561674d46c90c6f77b87c0500fe4a6b0183ba13749efc22db59c99deb82fbd + languageName: node + linkType: hard + +"@ethersproject/web@npm:5.7.1, @ethersproject/web@npm:^5.7.0, @ethersproject/web@npm:^5.7.1": + version: 5.7.1 + resolution: "@ethersproject/web@npm:5.7.1" + dependencies: + "@ethersproject/base64": ^5.7.0 + "@ethersproject/bytes": ^5.7.0 + "@ethersproject/logger": ^5.7.0 + "@ethersproject/properties": ^5.7.0 + "@ethersproject/strings": ^5.7.0 + checksum: 7028c47103f82fd2e2c197ce0eecfacaa9180ffeec7de7845b1f4f9b19d84081b7a48227aaddde05a4aaa526af574a9a0ce01cc0fc75e3e371f84b38b5b16b2b + languageName: node + linkType: hard + +"@ethersproject/wordlists@npm:5.7.0, @ethersproject/wordlists@npm:^5.7.0": + version: 5.7.0 + resolution: "@ethersproject/wordlists@npm:5.7.0" + dependencies: + "@ethersproject/bytes": ^5.7.0 + "@ethersproject/hash": ^5.7.0 + "@ethersproject/logger": ^5.7.0 + "@ethersproject/properties": ^5.7.0 + "@ethersproject/strings": ^5.7.0 + checksum: 30eb6eb0731f9ef5faa44bf9c0c6e950bcaaef61e4d2d9ce0ae6d341f4e2d6d1f4ab4f8880bfce03b7aac4b862fb740e1421170cfbf8e2aafc359277d49e6e97 + languageName: node + linkType: hard + +"@floating-ui/core@npm:^1.1.0": + version: 1.6.8 + resolution: "@floating-ui/core@npm:1.6.8" + dependencies: + "@floating-ui/utils": ^0.2.8 + checksum: 82faa6ea9d57e466779324e51308d6d49c098fb9d184a08d9bb7f4fad83f08cc070fc491f8d56f0cad44a16215fb43f9f829524288413e6c33afcb17303698de + languageName: node + linkType: hard + +"@floating-ui/dom@npm:~1.1.1": + version: 1.1.1 + resolution: "@floating-ui/dom@npm:1.1.1" + dependencies: + "@floating-ui/core": ^1.1.0 + checksum: 8b7f3b98ed7ec0b634e4a0b735253b0442358c5cea8302935fc185b2bd882202a053622abe9248c76d0908645dd35f93adeaed2d64371b2ab76b36725ce3f7d3 + languageName: node + linkType: hard + +"@floating-ui/utils@npm:^0.2.8": + version: 0.2.8 + resolution: "@floating-ui/utils@npm:0.2.8" + checksum: deb98bba017c4e073c7ad5740d4dec33a4d3e0942d412e677ac0504f3dade15a68fc6fd164d43c93c0bb0bcc5dc5015c1f4080dfb1a6161140fe660624f7c875 + languageName: node + linkType: hard + +"@graphql-codegen/add@npm:^5.0.3": + version: 5.0.3 + resolution: "@graphql-codegen/add@npm:5.0.3" + dependencies: + "@graphql-codegen/plugin-helpers": ^5.0.3 + tslib: ~2.6.0 + peerDependencies: + graphql: ^0.8.0 || ^0.9.0 || ^0.10.0 || ^0.11.0 || ^0.12.0 || ^0.13.0 || ^14.0.0 || ^15.0.0 || ^16.0.0 + checksum: 5196b6c64907f03dc1adc0ac4f98ed5fe69abe0eb87027a55dfc14b178cc1fee2bc47f68c8f5a68ce7aa4bc5a4f970f983d1d85b6d7a20489e50657baccd2ad0 + languageName: node + linkType: hard + +"@graphql-codegen/cli@npm:^5.0.3": + version: 5.0.3 + resolution: "@graphql-codegen/cli@npm:5.0.3" + dependencies: + "@babel/generator": ^7.18.13 + "@babel/template": ^7.18.10 + "@babel/types": ^7.18.13 + "@graphql-codegen/client-preset": ^4.4.0 + "@graphql-codegen/core": ^4.0.2 + "@graphql-codegen/plugin-helpers": ^5.0.3 + "@graphql-tools/apollo-engine-loader": ^8.0.0 + "@graphql-tools/code-file-loader": ^8.0.0 + "@graphql-tools/git-loader": ^8.0.0 + "@graphql-tools/github-loader": ^8.0.0 + "@graphql-tools/graphql-file-loader": ^8.0.0 + "@graphql-tools/json-file-loader": ^8.0.0 + "@graphql-tools/load": ^8.0.0 + "@graphql-tools/prisma-loader": ^8.0.0 + "@graphql-tools/url-loader": ^8.0.0 + "@graphql-tools/utils": ^10.0.0 + "@whatwg-node/fetch": ^0.9.20 + chalk: ^4.1.0 + cosmiconfig: ^8.1.3 + debounce: ^1.2.0 + detect-indent: ^6.0.0 + graphql-config: ^5.1.1 + inquirer: ^8.0.0 + is-glob: ^4.0.1 + jiti: ^1.17.1 + json-to-pretty-yaml: ^1.2.2 + listr2: ^4.0.5 + log-symbols: ^4.0.0 + micromatch: ^4.0.5 + shell-quote: ^1.7.3 + string-env-interpolation: ^1.0.1 + ts-log: ^2.2.3 + tslib: ^2.4.0 + yaml: ^2.3.1 + yargs: ^17.0.0 + peerDependencies: + "@parcel/watcher": ^2.1.0 + graphql: ^0.8.0 || ^0.9.0 || ^0.10.0 || ^0.11.0 || ^0.12.0 || ^0.13.0 || ^14.0.0 || ^15.0.0 || ^16.0.0 + peerDependenciesMeta: + "@parcel/watcher": + optional: true + bin: + gql-gen: cjs/bin.js + graphql-code-generator: cjs/bin.js + graphql-codegen: cjs/bin.js + graphql-codegen-esm: esm/bin.js + checksum: 8a28419b25e73b4edf5006a93243a24ecdcc030b80d19dbf9153326c45382b2654b9275fa5b29035864652e3698196883e93ba593339cba43221c46cc20da697 + languageName: node + linkType: hard + +"@graphql-codegen/client-preset@npm:^4.4.0": + version: 4.5.1 + resolution: "@graphql-codegen/client-preset@npm:4.5.1" + dependencies: + "@babel/helper-plugin-utils": ^7.20.2 + "@babel/template": ^7.20.7 + "@graphql-codegen/add": ^5.0.3 + "@graphql-codegen/gql-tag-operations": 4.0.12 + "@graphql-codegen/plugin-helpers": ^5.1.0 + "@graphql-codegen/typed-document-node": ^5.0.12 + "@graphql-codegen/typescript": ^4.1.2 + "@graphql-codegen/typescript-operations": ^4.4.0 + "@graphql-codegen/visitor-plugin-common": ^5.6.0 + "@graphql-tools/documents": ^1.0.0 + "@graphql-tools/utils": ^10.0.0 + "@graphql-typed-document-node/core": 3.2.0 + tslib: ~2.6.0 + peerDependencies: + graphql: ^0.8.0 || ^0.9.0 || ^0.10.0 || ^0.11.0 || ^0.12.0 || ^0.13.0 || ^14.0.0 || ^15.0.0 || ^16.0.0 + checksum: 221eae43764ade306bca0179b8a6f714b8fe8727e515d969d706f73dc1216992fe718cda89c88a6c5d0fff1eb63e846a7addd62624a8942195c6a2bde23cda25 + languageName: node + linkType: hard + +"@graphql-codegen/core@npm:^4.0.2": + version: 4.0.2 + resolution: "@graphql-codegen/core@npm:4.0.2" + dependencies: + "@graphql-codegen/plugin-helpers": ^5.0.3 + "@graphql-tools/schema": ^10.0.0 + "@graphql-tools/utils": ^10.0.0 + tslib: ~2.6.0 + peerDependencies: + graphql: ^0.8.0 || ^0.9.0 || ^0.10.0 || ^0.11.0 || ^0.12.0 || ^0.13.0 || ^14.0.0 || ^15.0.0 || ^16.0.0 + checksum: 5fda4e843174aacd4a481b73b4d259fa2df7ffe4200bd06e95ecd4b3f43aa5969deeaeb51f6cf15a542e99ee5756c3e02a29d9d2ff9891af40e234a8f68ead4d + languageName: node + linkType: hard + +"@graphql-codegen/gql-tag-operations@npm:4.0.12": + version: 4.0.12 + resolution: "@graphql-codegen/gql-tag-operations@npm:4.0.12" + dependencies: + "@graphql-codegen/plugin-helpers": ^5.1.0 + "@graphql-codegen/visitor-plugin-common": 5.6.0 + "@graphql-tools/utils": ^10.0.0 + auto-bind: ~4.0.0 + tslib: ~2.6.0 + peerDependencies: + graphql: ^0.8.0 || ^0.9.0 || ^0.10.0 || ^0.11.0 || ^0.12.0 || ^0.13.0 || ^14.0.0 || ^15.0.0 || ^16.0.0 + checksum: c79ba794aeb1fcc460ff39fd4d6e6146b963cc6292cf5cc5694821ec91318770a63b6071ee06c14289d14cae1794dabe4234f4dbee4de3e2f550e48f2b4fdbda + languageName: node + linkType: hard + +"@graphql-codegen/plugin-helpers@npm:^5.0.3, @graphql-codegen/plugin-helpers@npm:^5.1.0": + version: 5.1.0 + resolution: "@graphql-codegen/plugin-helpers@npm:5.1.0" + dependencies: + "@graphql-tools/utils": ^10.0.0 + change-case-all: 1.0.15 + common-tags: 1.8.2 + import-from: 4.0.0 + lodash: ~4.17.0 + tslib: ~2.6.0 + peerDependencies: + graphql: ^0.8.0 || ^0.9.0 || ^0.10.0 || ^0.11.0 || ^0.12.0 || ^0.13.0 || ^14.0.0 || ^15.0.0 || ^16.0.0 + checksum: 235762e2e7a55898e71fb1d52ef3093c26787c16e7eb5a3df6e06a7b2003da641b9a9c96833091e9fb11f9cf72da9e7c5f19ce124074d5d7d33a419117d050a9 + languageName: node + linkType: hard + +"@graphql-codegen/schema-ast@npm:^4.0.2": + version: 4.1.0 + resolution: "@graphql-codegen/schema-ast@npm:4.1.0" + dependencies: + "@graphql-codegen/plugin-helpers": ^5.0.3 + "@graphql-tools/utils": ^10.0.0 + tslib: ~2.6.0 + peerDependencies: + graphql: ^0.8.0 || ^0.9.0 || ^0.10.0 || ^0.11.0 || ^0.12.0 || ^0.13.0 || ^14.0.0 || ^15.0.0 || ^16.0.0 + checksum: cddec7723d708990ac8e33eb8935e72545b60ed7b772452ba45b60e577af950d23503de83f0919d1730f7d52dcb970900d3587d9a54202032164ba3c246d4c10 + languageName: node + linkType: hard + +"@graphql-codegen/typed-document-node@npm:^5.0.12": + version: 5.0.12 + resolution: "@graphql-codegen/typed-document-node@npm:5.0.12" + dependencies: + "@graphql-codegen/plugin-helpers": ^5.1.0 + "@graphql-codegen/visitor-plugin-common": 5.6.0 + auto-bind: ~4.0.0 + change-case-all: 1.0.15 + tslib: ~2.6.0 + peerDependencies: + graphql: ^0.8.0 || ^0.9.0 || ^0.10.0 || ^0.11.0 || ^0.12.0 || ^0.13.0 || ^14.0.0 || ^15.0.0 || ^16.0.0 + checksum: 79ba865edec0ac0b937a9726428c1df13281cdff5586afe4674b9000e655a5a61e544f2e259120de776b9d729b972866c79d3534e40f811880d7417e50f33e80 + languageName: node + linkType: hard + +"@graphql-codegen/typescript-document-nodes@npm:^4.0.12": + version: 4.0.12 + resolution: "@graphql-codegen/typescript-document-nodes@npm:4.0.12" + dependencies: + "@graphql-codegen/plugin-helpers": ^5.1.0 + "@graphql-codegen/visitor-plugin-common": 5.6.0 + auto-bind: ~4.0.0 + tslib: ~2.6.0 + peerDependencies: + graphql: ^0.8.0 || ^0.9.0 || ^0.10.0 || ^0.11.0 || ^0.12.0 || ^0.13.0 || ^14.0.0 || ^15.0.0 || ^16.0.0 + checksum: e176b57ff3e1435c24363d51baba349a35c3b19cfd6b489df86a7c3e765010f07a510596b002810c5798bcbede604458d4283850b9e28c69be424e7ec5f378f3 + languageName: node + linkType: hard + +"@graphql-codegen/typescript-operations@npm:^4.4.0": + version: 4.4.0 + resolution: "@graphql-codegen/typescript-operations@npm:4.4.0" + dependencies: + "@graphql-codegen/plugin-helpers": ^5.1.0 + "@graphql-codegen/typescript": ^4.1.2 + "@graphql-codegen/visitor-plugin-common": 5.6.0 + auto-bind: ~4.0.0 + tslib: ~2.6.0 + peerDependencies: + graphql: ^0.8.0 || ^0.9.0 || ^0.10.0 || ^0.11.0 || ^0.12.0 || ^0.13.0 || ^14.0.0 || ^15.0.0 || ^16.0.0 + checksum: c161d10f2137d98590701a85287db901e38f9cd03b8de18f32b5a7ad35fe40d7d985eb5c8453e7d665c958f3fb2749201b5a86d86ae032d423ddbbdaab6d818d + languageName: node + linkType: hard + +"@graphql-codegen/typescript@npm:^4.1.2": + version: 4.1.2 + resolution: "@graphql-codegen/typescript@npm:4.1.2" + dependencies: + "@graphql-codegen/plugin-helpers": ^5.1.0 + "@graphql-codegen/schema-ast": ^4.0.2 + "@graphql-codegen/visitor-plugin-common": 5.6.0 + auto-bind: ~4.0.0 + tslib: ~2.6.0 + peerDependencies: + graphql: ^0.12.0 || ^0.13.0 || ^14.0.0 || ^15.0.0 || ^16.0.0 + checksum: b14726af34bd533d775099c46cf9e405011da5921214cbf909764bf09bec3b5147f4b55b514b71dfd01fb4377daa4af4bcad9a25a06cd88d3e87f32e91f31524 + languageName: node + linkType: hard + +"@graphql-codegen/visitor-plugin-common@npm:5.6.0, @graphql-codegen/visitor-plugin-common@npm:^5.6.0": + version: 5.6.0 + resolution: "@graphql-codegen/visitor-plugin-common@npm:5.6.0" + dependencies: + "@graphql-codegen/plugin-helpers": ^5.1.0 + "@graphql-tools/optimize": ^2.0.0 + "@graphql-tools/relay-operation-optimizer": ^7.0.0 + "@graphql-tools/utils": ^10.0.0 + auto-bind: ~4.0.0 + change-case-all: 1.0.15 + dependency-graph: ^0.11.0 + graphql-tag: ^2.11.0 + parse-filepath: ^1.0.2 + tslib: ~2.6.0 + peerDependencies: + graphql: ^0.8.0 || ^0.9.0 || ^0.10.0 || ^0.11.0 || ^0.12.0 || ^0.13.0 || ^14.0.0 || ^15.0.0 || ^16.0.0 + checksum: 9c842651d4e01875bbec1a5fd487302b35c4130e609387f5dd33d27fc89461b3b25bfafd992b9859ef6f6c2cf443b9206bb282210bdac1b4239ba6e908cc9712 + languageName: node + linkType: hard + +"@graphql-tools/apollo-engine-loader@npm:^8.0.0": + version: 8.0.5 + resolution: "@graphql-tools/apollo-engine-loader@npm:8.0.5" + dependencies: + "@ardatan/sync-fetch": ^0.0.1 + "@graphql-tools/utils": ^10.6.0 + "@whatwg-node/fetch": ^0.10.0 + tslib: ^2.4.0 + peerDependencies: + graphql: ^14.0.0 || ^15.0.0 || ^16.0.0 || ^17.0.0 + checksum: 7f5af47233085b989b621a35736396791d99570de89248e9ab42c7f55dfc3dfe3afddb76ad9552353969fae6dda363dbf0940bee7b6aea252595a7f78af69646 + languageName: node + linkType: hard + +"@graphql-tools/batch-execute@npm:^9.0.6": + version: 9.0.6 + resolution: "@graphql-tools/batch-execute@npm:9.0.6" + dependencies: + "@graphql-tools/utils": ^10.5.6 + dataloader: ^2.2.2 + tslib: ^2.4.0 + value-or-promise: ^1.0.12 + peerDependencies: + graphql: ^14.0.0 || ^15.0.0 || ^16.0.0 || ^17.0.0 + checksum: b4551a8b9a4bbc48e726e3417d149f27383c473211960b792f2199e4f4ee8965e392a40a6f3353c6732c552310d4ec7fec12d7fc2e1d09dd92cfcd3bef652ad6 + languageName: node + linkType: hard + +"@graphql-tools/code-file-loader@npm:^8.0.0": + version: 8.1.6 + resolution: "@graphql-tools/code-file-loader@npm:8.1.6" + dependencies: + "@graphql-tools/graphql-tag-pluck": 8.3.5 + "@graphql-tools/utils": ^10.6.0 + globby: ^11.0.3 + tslib: ^2.4.0 + unixify: ^1.0.0 + peerDependencies: + graphql: ^14.0.0 || ^15.0.0 || ^16.0.0 || ^17.0.0 + checksum: 4ff52e24cfa5db6faa4a163fb38cb3d2f5b9bb45ce139c7fdbeabd3391268bafc8bdca96a5bea480de229093fdbe558d8ed284b8f0199580625d6619a080ac1b + languageName: node + linkType: hard + +"@graphql-tools/delegate@npm:^10.2.0": + version: 10.2.0 + resolution: "@graphql-tools/delegate@npm:10.2.0" + dependencies: + "@graphql-tools/batch-execute": ^9.0.6 + "@graphql-tools/executor": ^1.3.3 + "@graphql-tools/schema": ^10.0.8 + "@graphql-tools/utils": ^10.5.6 + "@repeaterjs/repeater": ^3.0.6 + dataloader: ^2.2.2 + dset: ^3.1.2 + tslib: ^2.5.0 + peerDependencies: + graphql: ^14.0.0 || ^15.0.0 || ^16.0.0 || ^17.0.0 + checksum: 73843005c2c60f6d1dbcbfe0fea034f99eab0724700bfbd00962655d12d0bc851833741bdda5b2911238b132d4aa1323419ec6d50191278747db0c21c099323e + languageName: node + linkType: hard + +"@graphql-tools/documents@npm:^1.0.0": + version: 1.0.1 + resolution: "@graphql-tools/documents@npm:1.0.1" + dependencies: + lodash.sortby: ^4.7.0 + tslib: ^2.4.0 + peerDependencies: + graphql: ^14.0.0 || ^15.0.0 || ^16.0.0 || ^17.0.0 + checksum: c6ff859d2673dbf884f19d6319735afacc6bff2df6f8ea3dbf56839d01568f61210f256f0905156f123428cc24962ada26b37903263699fc8cd7efb8849a6508 + languageName: node + linkType: hard + +"@graphql-tools/executor-graphql-ws@npm:^1.3.2": + version: 1.3.2 + resolution: "@graphql-tools/executor-graphql-ws@npm:1.3.2" + dependencies: + "@graphql-tools/utils": ^10.5.6 + "@types/ws": ^8.0.0 + graphql-ws: ^5.14.0 + isomorphic-ws: ^5.0.0 + tslib: ^2.4.0 + ws: ^8.17.1 + peerDependencies: + graphql: ^14.0.0 || ^15.0.0 || ^16.0.0 || ^17.0.0 + checksum: 6193b3d6c68898da11eab004103c6deac1ce0c2eec7204afdf025586e95ad6798a5477cac48682e32699a03b6f663940810a37f0f1fed5c1875ec67f3dcf15b1 + languageName: node + linkType: hard + +"@graphql-tools/executor-http@npm:^1.1.9": + version: 1.1.9 + resolution: "@graphql-tools/executor-http@npm:1.1.9" + dependencies: + "@graphql-tools/utils": ^10.5.6 + "@repeaterjs/repeater": ^3.0.4 + "@whatwg-node/fetch": ^0.10.0 + extract-files: ^11.0.0 + meros: ^1.2.1 + tslib: ^2.4.0 + value-or-promise: ^1.0.12 + peerDependencies: + graphql: ^14.0.0 || ^15.0.0 || ^16.0.0 || ^17.0.0 + checksum: dd79e67e95d1256be31797f68bdfc767ba876384deaa31c6f87334abd303eb317a7bf4b8f37e4a055cfb0260951426815d454d84778d536e61887fdf54522bcb + languageName: node + linkType: hard + +"@graphql-tools/executor-legacy-ws@npm:^1.1.3": + version: 1.1.3 + resolution: "@graphql-tools/executor-legacy-ws@npm:1.1.3" + dependencies: + "@graphql-tools/utils": ^10.6.0 + "@types/ws": ^8.0.0 + isomorphic-ws: ^5.0.0 + tslib: ^2.4.0 + ws: ^8.17.1 + peerDependencies: + graphql: ^14.0.0 || ^15.0.0 || ^16.0.0 || ^17.0.0 + checksum: b1f516265837213e740b27eb955f7065eef4be65d52832291bc8181e7d0c4a3dc9e4f70fd16fd6e8bf839d4aaa5676b1036dbdaa1b5831dd735105553752bc3c + languageName: node + linkType: hard + +"@graphql-tools/executor@npm:^1.3.3": + version: 1.3.4 + resolution: "@graphql-tools/executor@npm:1.3.4" + dependencies: + "@graphql-tools/utils": ^10.6.0 + "@graphql-typed-document-node/core": 3.2.0 + "@repeaterjs/repeater": ^3.0.4 + tslib: ^2.4.0 + value-or-promise: ^1.0.12 + peerDependencies: + graphql: ^14.0.0 || ^15.0.0 || ^16.0.0 || ^17.0.0 + checksum: 899165cd40abcc4f7347b66fa8730abb0bc594f84e0d73246a30337e734dfbb3e375c479f1634190fb44e47f71e11c1985269837eb267e38cf6b57c8cfc7a03d + languageName: node + linkType: hard + +"@graphql-tools/git-loader@npm:^8.0.0": + version: 8.0.10 + resolution: "@graphql-tools/git-loader@npm:8.0.10" + dependencies: + "@graphql-tools/graphql-tag-pluck": 8.3.5 + "@graphql-tools/utils": ^10.6.0 + is-glob: 4.0.3 + micromatch: ^4.0.8 + tslib: ^2.4.0 + unixify: ^1.0.0 + peerDependencies: + graphql: ^14.0.0 || ^15.0.0 || ^16.0.0 || ^17.0.0 + checksum: 211d05e22a9ef9ee206106e4c76feb1cea04047d6b33f4fd8c8521a6128279d6b47f72e54f6f48cffeb0ce7c5623b66eb7152634aa8de6a7dbbaf7ea0b307aa7 + languageName: node + linkType: hard + +"@graphql-tools/github-loader@npm:^8.0.0": + version: 8.0.5 + resolution: "@graphql-tools/github-loader@npm:8.0.5" + dependencies: + "@ardatan/sync-fetch": ^0.0.1 + "@graphql-tools/executor-http": ^1.1.9 + "@graphql-tools/graphql-tag-pluck": ^8.3.5 + "@graphql-tools/utils": ^10.6.0 + "@whatwg-node/fetch": ^0.10.0 + tslib: ^2.4.0 + value-or-promise: ^1.0.12 + peerDependencies: + graphql: ^14.0.0 || ^15.0.0 || ^16.0.0 || ^17.0.0 + checksum: 31f29575b4f41809da0c51a42e4785ff85d1bc49dc66411c40df2f94ac1eed4f41e3e21acb2d26d9c5bcd6fe0764b5baf6932e458ae0c47980acb8724a266845 + languageName: node + linkType: hard + +"@graphql-tools/graphql-file-loader@npm:^8.0.0": + version: 8.0.4 + resolution: "@graphql-tools/graphql-file-loader@npm:8.0.4" + dependencies: + "@graphql-tools/import": 7.0.4 + "@graphql-tools/utils": ^10.6.0 + globby: ^11.0.3 + tslib: ^2.4.0 + unixify: ^1.0.0 + peerDependencies: + graphql: ^14.0.0 || ^15.0.0 || ^16.0.0 || ^17.0.0 + checksum: 1c8b1320e4e5d16cf8ad6a530b5e6b206066a3047baa828a5a80c1ffe4227db6eacefbacf117a374d83b6227b4f312a99532eb978c5fefba49413c0407f39293 + languageName: node + linkType: hard + +"@graphql-tools/graphql-tag-pluck@npm:8.3.5, @graphql-tools/graphql-tag-pluck@npm:^8.3.5": + version: 8.3.5 + resolution: "@graphql-tools/graphql-tag-pluck@npm:8.3.5" + dependencies: + "@babel/core": ^7.22.9 + "@babel/parser": ^7.16.8 + "@babel/plugin-syntax-import-assertions": ^7.20.0 + "@babel/traverse": ^7.16.8 + "@babel/types": ^7.16.8 + "@graphql-tools/utils": ^10.6.0 + tslib: ^2.4.0 + peerDependencies: + graphql: ^14.0.0 || ^15.0.0 || ^16.0.0 || ^17.0.0 + checksum: 9360f0e274de988854510bd6a22776a6a66fb773127e223cebc61684a2324cb1f110322e6c8ec5e5d1eda89dfd89ee2b756348a104098bff7b315fed59f4b271 + languageName: node + linkType: hard + +"@graphql-tools/import@npm:7.0.4": + version: 7.0.4 + resolution: "@graphql-tools/import@npm:7.0.4" + dependencies: + "@graphql-tools/utils": ^10.6.0 + resolve-from: 5.0.0 + tslib: ^2.4.0 + peerDependencies: + graphql: ^14.0.0 || ^15.0.0 || ^16.0.0 || ^17.0.0 + checksum: a2421ab3b34fa8d09dc4df26c7201e599c0f54eae8ceeebc6ec8d5980a37b50153875b56e35e084328c56330dcbd06fbad4c100334006671b1576a733a9d5567 + languageName: node + linkType: hard + +"@graphql-tools/json-file-loader@npm:^8.0.0": + version: 8.0.4 + resolution: "@graphql-tools/json-file-loader@npm:8.0.4" dependencies: - "@ethersproject/bytes": ^5.7.0 - "@ethersproject/constants": ^5.7.0 - "@ethersproject/logger": ^5.7.0 - checksum: 5ff78693ae3fdf3cf23e1f6dc047a61e44c8197d2408c42719fef8cb7b7b3613a4eec88ac0ed1f9f5558c74fe0de7ae3195a29ca91a239c74b9f444d8e8b50df + "@graphql-tools/utils": ^10.6.0 + globby: ^11.0.3 + tslib: ^2.4.0 + unixify: ^1.0.0 + peerDependencies: + graphql: ^14.0.0 || ^15.0.0 || ^16.0.0 || ^17.0.0 + checksum: dd00d8f518d89b7d4e171a98babd3c316c1e83ea2fdc5839b99e037c668f0bf3f85741536e9b1817fb06d772f3a40456fdd729817804f1bf20a723c765a71e01 languageName: node linkType: hard -"@ethersproject/transactions@npm:5.7.0, @ethersproject/transactions@npm:^5.7.0": - version: 5.7.0 - resolution: "@ethersproject/transactions@npm:5.7.0" +"@graphql-tools/load@npm:^8.0.0": + version: 8.0.5 + resolution: "@graphql-tools/load@npm:8.0.5" dependencies: - "@ethersproject/address": ^5.7.0 - "@ethersproject/bignumber": ^5.7.0 - "@ethersproject/bytes": ^5.7.0 - "@ethersproject/constants": ^5.7.0 - "@ethersproject/keccak256": ^5.7.0 - "@ethersproject/logger": ^5.7.0 - "@ethersproject/properties": ^5.7.0 - "@ethersproject/rlp": ^5.7.0 - "@ethersproject/signing-key": ^5.7.0 - checksum: a31b71996d2b283f68486241bff0d3ea3f1ba0e8f1322a8fffc239ccc4f4a7eb2ea9994b8fd2f093283fd75f87bae68171e01b6265261f821369aca319884a79 + "@graphql-tools/schema": ^10.0.9 + "@graphql-tools/utils": ^10.6.0 + p-limit: 3.1.0 + tslib: ^2.4.0 + peerDependencies: + graphql: ^14.0.0 || ^15.0.0 || ^16.0.0 || ^17.0.0 + checksum: 060d4db0f6917258907a57f74f1b83b1e011dd13eb6546eb5c2fec1fb8fa7d8caa75c56d763d26e29524c4029102d84f62a6fce1647ac50a8314fc17cca060c2 languageName: node linkType: hard -"@ethersproject/units@npm:5.7.0": - version: 5.7.0 - resolution: "@ethersproject/units@npm:5.7.0" +"@graphql-tools/merge@npm:^9.0.0, @graphql-tools/merge@npm:^9.0.10": + version: 9.0.10 + resolution: "@graphql-tools/merge@npm:9.0.10" dependencies: - "@ethersproject/bignumber": ^5.7.0 - "@ethersproject/constants": ^5.7.0 - "@ethersproject/logger": ^5.7.0 - checksum: 304714f848cd32e57df31bf545f7ad35c2a72adae957198b28cbc62166daa929322a07bff6e9c9ac4577ab6aa0de0546b065ed1b2d20b19e25748b7d475cb0fc + "@graphql-tools/utils": ^10.6.0 + tslib: ^2.4.0 + peerDependencies: + graphql: ^14.0.0 || ^15.0.0 || ^16.0.0 || ^17.0.0 + checksum: 7a8e10bec79394a04944280609bf82af23374344e2e08074b9bdad57df817e622efee3593498de972a6645758922d9577e6de69945ece91c365eb394960de6c8 languageName: node linkType: hard -"@ethersproject/wallet@npm:5.7.0": - version: 5.7.0 - resolution: "@ethersproject/wallet@npm:5.7.0" +"@graphql-tools/optimize@npm:^2.0.0": + version: 2.0.0 + resolution: "@graphql-tools/optimize@npm:2.0.0" dependencies: - "@ethersproject/abstract-provider": ^5.7.0 - "@ethersproject/abstract-signer": ^5.7.0 - "@ethersproject/address": ^5.7.0 - "@ethersproject/bignumber": ^5.7.0 - "@ethersproject/bytes": ^5.7.0 - "@ethersproject/hash": ^5.7.0 - "@ethersproject/hdnode": ^5.7.0 - "@ethersproject/json-wallets": ^5.7.0 - "@ethersproject/keccak256": ^5.7.0 - "@ethersproject/logger": ^5.7.0 - "@ethersproject/properties": ^5.7.0 - "@ethersproject/random": ^5.7.0 - "@ethersproject/signing-key": ^5.7.0 - "@ethersproject/transactions": ^5.7.0 - "@ethersproject/wordlists": ^5.7.0 - checksum: a4009bf7331eddab38e3015b5e9101ef92de7f705b00a6196b997db0e5635b6d83561674d46c90c6f77b87c0500fe4a6b0183ba13749efc22db59c99deb82fbd + tslib: ^2.4.0 + peerDependencies: + graphql: ^14.0.0 || ^15.0.0 || ^16.0.0 || ^17.0.0 + checksum: 7f79c0e1852abc571308e887d27d613da5b797256c8c6eb6c5fe7ca77f09e61524778ae281cebc0b698c51d4fe1074e2b8e0d0627b8e2dcf505aa6ed09b49a2f languageName: node linkType: hard -"@ethersproject/web@npm:5.7.1, @ethersproject/web@npm:^5.7.0, @ethersproject/web@npm:^5.7.1": - version: 5.7.1 - resolution: "@ethersproject/web@npm:5.7.1" +"@graphql-tools/prisma-loader@npm:^8.0.0": + version: 8.0.17 + resolution: "@graphql-tools/prisma-loader@npm:8.0.17" dependencies: - "@ethersproject/base64": ^5.7.0 - "@ethersproject/bytes": ^5.7.0 - "@ethersproject/logger": ^5.7.0 - "@ethersproject/properties": ^5.7.0 - "@ethersproject/strings": ^5.7.0 - checksum: 7028c47103f82fd2e2c197ce0eecfacaa9180ffeec7de7845b1f4f9b19d84081b7a48227aaddde05a4aaa526af574a9a0ce01cc0fc75e3e371f84b38b5b16b2b + "@graphql-tools/url-loader": ^8.0.15 + "@graphql-tools/utils": ^10.5.6 + "@types/js-yaml": ^4.0.0 + "@whatwg-node/fetch": ^0.10.0 + chalk: ^4.1.0 + debug: ^4.3.1 + dotenv: ^16.0.0 + graphql-request: ^6.0.0 + http-proxy-agent: ^7.0.0 + https-proxy-agent: ^7.0.0 + jose: ^5.0.0 + js-yaml: ^4.0.0 + lodash: ^4.17.20 + scuid: ^1.1.0 + tslib: ^2.4.0 + yaml-ast-parser: ^0.0.43 + peerDependencies: + graphql: ^14.0.0 || ^15.0.0 || ^16.0.0 || ^17.0.0 + checksum: e05be13e5dd152cb5f88acba90ab23982bdea3ed623647956d399196dd6c73a75e47a5c594f9d5a2ef1fc19db178a5a956c9d9cecf75ab0f77609b07808e0b35 languageName: node linkType: hard -"@ethersproject/wordlists@npm:5.7.0, @ethersproject/wordlists@npm:^5.7.0": - version: 5.7.0 - resolution: "@ethersproject/wordlists@npm:5.7.0" +"@graphql-tools/relay-operation-optimizer@npm:^7.0.0": + version: 7.0.4 + resolution: "@graphql-tools/relay-operation-optimizer@npm:7.0.4" dependencies: - "@ethersproject/bytes": ^5.7.0 - "@ethersproject/hash": ^5.7.0 - "@ethersproject/logger": ^5.7.0 - "@ethersproject/properties": ^5.7.0 - "@ethersproject/strings": ^5.7.0 - checksum: 30eb6eb0731f9ef5faa44bf9c0c6e950bcaaef61e4d2d9ce0ae6d341f4e2d6d1f4ab4f8880bfce03b7aac4b862fb740e1421170cfbf8e2aafc359277d49e6e97 + "@ardatan/relay-compiler": 12.0.0 + "@graphql-tools/utils": ^10.6.0 + tslib: ^2.4.0 + peerDependencies: + graphql: ^14.0.0 || ^15.0.0 || ^16.0.0 || ^17.0.0 + checksum: ff4507727514dccb5d43a5a00a0864653e080cf07a8b46540d3b199881bcad0fa1cbe4bbe3a6e3481f4294506dd07e420387358e5c6a1f16dacc637d46429c68 languageName: node linkType: hard -"@floating-ui/core@npm:^1.1.0": - version: 1.6.8 - resolution: "@floating-ui/core@npm:1.6.8" +"@graphql-tools/schema@npm:^10.0.0, @graphql-tools/schema@npm:^10.0.7, @graphql-tools/schema@npm:^10.0.8, @graphql-tools/schema@npm:^10.0.9": + version: 10.0.9 + resolution: "@graphql-tools/schema@npm:10.0.9" dependencies: - "@floating-ui/utils": ^0.2.8 - checksum: 82faa6ea9d57e466779324e51308d6d49c098fb9d184a08d9bb7f4fad83f08cc070fc491f8d56f0cad44a16215fb43f9f829524288413e6c33afcb17303698de + "@graphql-tools/merge": ^9.0.10 + "@graphql-tools/utils": ^10.6.0 + tslib: ^2.4.0 + value-or-promise: ^1.0.12 + peerDependencies: + graphql: ^14.0.0 || ^15.0.0 || ^16.0.0 || ^17.0.0 + checksum: 72adf7780f046b509a6ddda3bc932fa59fed0f8a41e94f454467229d97af68dee2f715213e30593f1e24f7ec66642017e334146a907e5141885c38e8905fe09d + languageName: node + linkType: hard + +"@graphql-tools/url-loader@npm:^8.0.0, @graphql-tools/url-loader@npm:^8.0.15": + version: 8.0.16 + resolution: "@graphql-tools/url-loader@npm:8.0.16" + dependencies: + "@ardatan/sync-fetch": ^0.0.1 + "@graphql-tools/executor-graphql-ws": ^1.3.2 + "@graphql-tools/executor-http": ^1.1.9 + "@graphql-tools/executor-legacy-ws": ^1.1.3 + "@graphql-tools/utils": ^10.6.0 + "@graphql-tools/wrap": ^10.0.16 + "@types/ws": ^8.0.0 + "@whatwg-node/fetch": ^0.10.0 + isomorphic-ws: ^5.0.0 + tslib: ^2.4.0 + value-or-promise: ^1.0.11 + ws: ^8.17.1 + peerDependencies: + graphql: ^14.0.0 || ^15.0.0 || ^16.0.0 || ^17.0.0 + checksum: 428f46034476f4204791749515840008765414459378f6bba48fc9cdcef7c37fe8fe91bc93a7ef08578936a210657c5e79cc9b464fca7023d042c8f5166c5dff languageName: node linkType: hard -"@floating-ui/dom@npm:~1.1.1": - version: 1.1.1 - resolution: "@floating-ui/dom@npm:1.1.1" +"@graphql-tools/utils@npm:^10.0.0, @graphql-tools/utils@npm:^10.5.6, @graphql-tools/utils@npm:^10.6.0": + version: 10.6.0 + resolution: "@graphql-tools/utils@npm:10.6.0" dependencies: - "@floating-ui/core": ^1.1.0 - checksum: 8b7f3b98ed7ec0b634e4a0b735253b0442358c5cea8302935fc185b2bd882202a053622abe9248c76d0908645dd35f93adeaed2d64371b2ab76b36725ce3f7d3 + "@graphql-typed-document-node/core": ^3.1.1 + cross-inspect: 1.0.1 + dset: ^3.1.2 + tslib: ^2.4.0 + peerDependencies: + graphql: ^14.0.0 || ^15.0.0 || ^16.0.0 || ^17.0.0 + checksum: a93cfa70c667a9482fcc727401d86a9bd69ba72a41bccd159b5c3dad06692e14e06a3993aa40178938caaaf05dd87906fd93560837e334f386f42abc9b4850c2 languageName: node linkType: hard -"@floating-ui/utils@npm:^0.2.8": - version: 0.2.8 - resolution: "@floating-ui/utils@npm:0.2.8" - checksum: deb98bba017c4e073c7ad5740d4dec33a4d3e0942d412e677ac0504f3dade15a68fc6fd164d43c93c0bb0bcc5dc5015c1f4080dfb1a6161140fe660624f7c875 +"@graphql-tools/wrap@npm:^10.0.16": + version: 10.0.18 + resolution: "@graphql-tools/wrap@npm:10.0.18" + dependencies: + "@graphql-tools/delegate": ^10.2.0 + "@graphql-tools/schema": ^10.0.7 + "@graphql-tools/utils": ^10.5.6 + tslib: ^2.4.0 + value-or-promise: ^1.0.12 + peerDependencies: + graphql: ^14.0.0 || ^15.0.0 || ^16.0.0 || ^17.0.0 + checksum: c5678d843fcf063345b9cfb23bf4828c10fef3c02133777325b202d1d33cebcd4a629c7b12083d57b25edff646f0f4ec75f7f6feea5c2f2da8193aae0ec1b43d languageName: node linkType: hard -"@graphql-typed-document-node/core@npm:^3.1.1": +"@graphql-typed-document-node/core@npm:3.2.0, @graphql-typed-document-node/core@npm:^3.1.1, @graphql-typed-document-node/core@npm:^3.2.0": version: 3.2.0 resolution: "@graphql-typed-document-node/core@npm:3.2.0" peerDependencies: @@ -1017,13 +2242,48 @@ __metadata: languageName: node linkType: hard -"@jridgewell/sourcemap-codec@npm:^1.5.0": +"@jridgewell/gen-mapping@npm:^0.3.5": + version: 0.3.5 + resolution: "@jridgewell/gen-mapping@npm:0.3.5" + dependencies: + "@jridgewell/set-array": ^1.2.1 + "@jridgewell/sourcemap-codec": ^1.4.10 + "@jridgewell/trace-mapping": ^0.3.24 + checksum: ff7a1764ebd76a5e129c8890aa3e2f46045109dabde62b0b6c6a250152227647178ff2069ea234753a690d8f3c4ac8b5e7b267bbee272bffb7f3b0a370ab6e52 + languageName: node + linkType: hard + +"@jridgewell/resolve-uri@npm:^3.1.0": + version: 3.1.2 + resolution: "@jridgewell/resolve-uri@npm:3.1.2" + checksum: 83b85f72c59d1c080b4cbec0fef84528963a1b5db34e4370fa4bd1e3ff64a0d80e0cee7369d11d73c704e0286fb2865b530acac7a871088fbe92b5edf1000870 + languageName: node + linkType: hard + +"@jridgewell/set-array@npm:^1.2.1": + version: 1.2.1 + resolution: "@jridgewell/set-array@npm:1.2.1" + checksum: 832e513a85a588f8ed4f27d1279420d8547743cc37fcad5a5a76fc74bb895b013dfe614d0eed9cb860048e6546b798f8f2652020b4b2ba0561b05caa8c654b10 + languageName: node + linkType: hard + +"@jridgewell/sourcemap-codec@npm:^1.4.10, @jridgewell/sourcemap-codec@npm:^1.4.14, @jridgewell/sourcemap-codec@npm:^1.5.0": version: 1.5.0 resolution: "@jridgewell/sourcemap-codec@npm:1.5.0" checksum: 05df4f2538b3b0f998ea4c1cd34574d0feba216fa5d4ccaef0187d12abf82eafe6021cec8b49f9bb4d90f2ba4582ccc581e72986a5fcf4176ae0cfeb04cf52ec languageName: node linkType: hard +"@jridgewell/trace-mapping@npm:^0.3.24, @jridgewell/trace-mapping@npm:^0.3.25": + version: 0.3.25 + resolution: "@jridgewell/trace-mapping@npm:0.3.25" + dependencies: + "@jridgewell/resolve-uri": ^3.1.0 + "@jridgewell/sourcemap-codec": ^1.4.14 + checksum: 9d3c40d225e139987b50c48988f8717a54a8c994d8a948ee42e1412e08988761d0754d7d10b803061cc3aebf35f92a5dbbab493bd0e1a9ef9e89a2130e83ba34 + languageName: node + linkType: hard + "@jsonjoy.com/base64@npm:^1.1.1": version: 1.1.2 resolution: "@jsonjoy.com/base64@npm:1.1.2" @@ -1056,6 +2316,13 @@ __metadata: languageName: node linkType: hard +"@kamilkisiela/fast-url-parser@npm:^1.1.4": + version: 1.1.4 + resolution: "@kamilkisiela/fast-url-parser@npm:1.1.4" + checksum: 921d305eff1fce5c7c669aee5cfe39e50109968addb496c23f0a42253d030e3cd5865eb01b13245915923bee452db75ba8a8254e69b0d0575d3c168efce7091e + languageName: node + linkType: hard + "@kurkle/color@npm:^0.3.0": version: 0.3.2 resolution: "@kurkle/color@npm:0.3.2" @@ -1534,6 +2801,13 @@ __metadata: languageName: node linkType: hard +"@repeaterjs/repeater@npm:^3.0.4, @repeaterjs/repeater@npm:^3.0.6": + version: 3.0.6 + resolution: "@repeaterjs/repeater@npm:3.0.6" + checksum: aae878b953162bec77c94b45f2236ddfc01a65308267c7cb30220fa2f8511654a302c0d32aad228c58241d685607d7bb35b6d528b2879355e6636ff08fddb266 + languageName: node + linkType: hard + "@rollup/plugin-inject@npm:^5.0.3": version: 5.0.5 resolution: "@rollup/plugin-inject@npm:5.0.5" @@ -1819,6 +3093,13 @@ __metadata: languageName: node linkType: hard +"@types/js-yaml@npm:^4.0.0": + version: 4.0.9 + resolution: "@types/js-yaml@npm:4.0.9" + checksum: e5e5e49b5789a29fdb1f7d204f82de11cb9e8f6cb24ab064c616da5d6e1b3ccfbf95aa5d1498a9fbd3b9e745564e69b4a20b6c530b5a8bbb2d4eb830cda9bc69 + languageName: node + linkType: hard + "@types/json-schema@npm:^7.0.9": version: 7.0.15 resolution: "@types/json-schema@npm:7.0.15" @@ -1925,6 +3206,15 @@ __metadata: languageName: node linkType: hard +"@types/ws@npm:^8.0.0": + version: 8.5.13 + resolution: "@types/ws@npm:8.5.13" + dependencies: + "@types/node": "*" + checksum: f17023ce7b89c6124249c90211803a4aaa02886e12bc2d0d2cd47fa665eeb058db4d871ce4397d8e423f6beea97dd56835dd3fdbb921030fe4d887601e37d609 + languageName: node + linkType: hard + "@typescript-eslint/eslint-plugin@npm:^5.47.1, @typescript-eslint/eslint-plugin@npm:^5.59.1": version: 5.62.0 resolution: "@typescript-eslint/eslint-plugin@npm:5.62.0" @@ -3028,6 +4318,60 @@ __metadata: languageName: node linkType: hard +"@whatwg-node/disposablestack@npm:^0.0.5": + version: 0.0.5 + resolution: "@whatwg-node/disposablestack@npm:0.0.5" + dependencies: + tslib: ^2.6.3 + checksum: d2df8ba46c567c3cc07767821fcedc8f4c9247f1f5488c7dadc42f86ca6429bace4451e48506ac2de15afe8e5baa1cd0951a7aa6419f091d48c671844e399931 + languageName: node + linkType: hard + +"@whatwg-node/fetch@npm:^0.10.0": + version: 0.10.1 + resolution: "@whatwg-node/fetch@npm:0.10.1" + dependencies: + "@whatwg-node/node-fetch": ^0.7.1 + urlpattern-polyfill: ^10.0.0 + checksum: 7b0c64476d1a8f7c3cd6d946dfda3f39c204049c903d6338a07f1579a1b2771f89e742f71057b7b7beef3ccf8bf8ecc2b019c072719f1fd64509386d7ca102ae + languageName: node + linkType: hard + +"@whatwg-node/fetch@npm:^0.9.20": + version: 0.9.23 + resolution: "@whatwg-node/fetch@npm:0.9.23" + dependencies: + "@whatwg-node/node-fetch": ^0.6.0 + urlpattern-polyfill: ^10.0.0 + checksum: 16c99adecce7eac17220b24c9385f34a30b9c546a790ab8f03f602747746c34ebbd24cf22faa7c921b92463f2e1f6b1ce754da636b4eda1b920720b31f9c41b8 + languageName: node + linkType: hard + +"@whatwg-node/node-fetch@npm:^0.6.0": + version: 0.6.0 + resolution: "@whatwg-node/node-fetch@npm:0.6.0" + dependencies: + "@kamilkisiela/fast-url-parser": ^1.1.4 + busboy: ^1.6.0 + fast-querystring: ^1.1.1 + tslib: ^2.6.3 + checksum: 78a80a3c0ada94ba5256a7d94be5d27a5527b4cdc071ed2c328ff0f434d8446ee1e0464019af79be06c2d032520065f47abb7e492b774a084ac4b13bd4a86c41 + languageName: node + linkType: hard + +"@whatwg-node/node-fetch@npm:^0.7.1": + version: 0.7.4 + resolution: "@whatwg-node/node-fetch@npm:0.7.4" + dependencies: + "@kamilkisiela/fast-url-parser": ^1.1.4 + "@whatwg-node/disposablestack": ^0.0.5 + busboy: ^1.6.0 + fast-querystring: ^1.1.1 + tslib: ^2.6.3 + checksum: 7e59e06be3efd3b5f4061ebb4b433914c7548400feed4d2d1d04129073acceb47281f687bbd7c5787c04870d4e2ea160c8d4ba57d80f2a98ae7a6851d4daa3cd + languageName: node + linkType: hard + "@wry/caches@npm:^1.0.0": version: 1.0.1 resolution: "@wry/caches@npm:1.0.1" @@ -3157,7 +4501,7 @@ __metadata: languageName: node linkType: hard -"ansi-escapes@npm:^4.3.0": +"ansi-escapes@npm:^4.2.1, ansi-escapes@npm:^4.3.0": version: 4.3.2 resolution: "ansi-escapes@npm:4.3.2" dependencies: @@ -3318,6 +4662,13 @@ __metadata: languageName: node linkType: hard +"asap@npm:~2.0.3": + version: 2.0.6 + resolution: "asap@npm:2.0.6" + checksum: b296c92c4b969e973260e47523207cd5769abd27c245a68c26dc7a0fe8053c55bb04360237cb51cab1df52be939da77150ace99ad331fb7fb13b3423ed73ff3d + languageName: node + linkType: hard + "asn1.js@npm:^4.10.1": version: 4.10.1 resolution: "asn1.js@npm:4.10.1" @@ -3404,6 +4755,13 @@ __metadata: languageName: node linkType: hard +"auto-bind@npm:~4.0.0": + version: 4.0.0 + resolution: "auto-bind@npm:4.0.0" + checksum: 00cad71cce5742faccb7dd65c1b55ebc4f45add4b0c9a1547b10b05bab22813230133b0c892c67ba3eb969a4524710c5e43cc45c72898ec84e56f3a596e7a04f + languageName: node + linkType: hard + "available-typed-arrays@npm:^1.0.7": version: 1.0.7 resolution: "available-typed-arrays@npm:1.0.7" @@ -3429,6 +4787,50 @@ __metadata: languageName: node linkType: hard +"babel-plugin-syntax-trailing-function-commas@npm:^7.0.0-beta.0": + version: 7.0.0-beta.0 + resolution: "babel-plugin-syntax-trailing-function-commas@npm:7.0.0-beta.0" + checksum: e37509156ca945dd9e4b82c66dd74f2d842ad917bd280cb5aa67960942300cd065eeac476d2514bdcdedec071277a358f6d517c31d9f9244d9bbc3619a8ecf8a + languageName: node + linkType: hard + +"babel-preset-fbjs@npm:^3.4.0": + version: 3.4.0 + resolution: "babel-preset-fbjs@npm:3.4.0" + dependencies: + "@babel/plugin-proposal-class-properties": ^7.0.0 + "@babel/plugin-proposal-object-rest-spread": ^7.0.0 + "@babel/plugin-syntax-class-properties": ^7.0.0 + "@babel/plugin-syntax-flow": ^7.0.0 + "@babel/plugin-syntax-jsx": ^7.0.0 + "@babel/plugin-syntax-object-rest-spread": ^7.0.0 + "@babel/plugin-transform-arrow-functions": ^7.0.0 + "@babel/plugin-transform-block-scoped-functions": ^7.0.0 + "@babel/plugin-transform-block-scoping": ^7.0.0 + "@babel/plugin-transform-classes": ^7.0.0 + "@babel/plugin-transform-computed-properties": ^7.0.0 + "@babel/plugin-transform-destructuring": ^7.0.0 + "@babel/plugin-transform-flow-strip-types": ^7.0.0 + "@babel/plugin-transform-for-of": ^7.0.0 + "@babel/plugin-transform-function-name": ^7.0.0 + "@babel/plugin-transform-literals": ^7.0.0 + "@babel/plugin-transform-member-expression-literals": ^7.0.0 + "@babel/plugin-transform-modules-commonjs": ^7.0.0 + "@babel/plugin-transform-object-super": ^7.0.0 + "@babel/plugin-transform-parameters": ^7.0.0 + "@babel/plugin-transform-property-literals": ^7.0.0 + "@babel/plugin-transform-react-display-name": ^7.0.0 + "@babel/plugin-transform-react-jsx": ^7.0.0 + "@babel/plugin-transform-shorthand-properties": ^7.0.0 + "@babel/plugin-transform-spread": ^7.0.0 + "@babel/plugin-transform-template-literals": ^7.0.0 + babel-plugin-syntax-trailing-function-commas: ^7.0.0-beta.0 + peerDependencies: + "@babel/core": ^7.0.0 + checksum: b3352cf690729125997f254bc31b9c4db347f8646f1571958ced1c45f0da89439e183e1c88e35397eb0361b9e1fbb1dd8142d3f4647814deb427e53c54f44d5f + languageName: node + linkType: hard + "balanced-match@npm:^1.0.0": version: 1.0.2 resolution: "balanced-match@npm:1.0.2" @@ -3500,6 +4902,17 @@ __metadata: languageName: node linkType: hard +"bl@npm:^4.1.0": + version: 4.1.0 + resolution: "bl@npm:4.1.0" + dependencies: + buffer: ^5.5.0 + inherits: ^2.0.4 + readable-stream: ^3.4.0 + checksum: 9e8521fa7e83aa9427c6f8ccdcba6e8167ef30cc9a22df26effcc5ab682ef91d2cbc23a239f945d099289e4bbcfae7a192e9c28c84c6202e710a0dfec3722662 + languageName: node + linkType: hard + "bluebird@npm:^3.5.0": version: 3.7.2 resolution: "bluebird@npm:3.7.2" @@ -3681,6 +5094,29 @@ __metadata: languageName: node linkType: hard +"browserslist@npm:^4.24.0": + version: 4.24.2 + resolution: "browserslist@npm:4.24.2" + dependencies: + caniuse-lite: ^1.0.30001669 + electron-to-chromium: ^1.5.41 + node-releases: ^2.0.18 + update-browserslist-db: ^1.1.1 + bin: + browserslist: cli.js + checksum: cf64085f12132d38638f38937a255edb82c7551b164a98577b055dd79719187a816112f7b97b9739e400c4954cd66479c0d7a843cb816e346f4795dc24fd5d97 + languageName: node + linkType: hard + +"bser@npm:2.1.1": + version: 2.1.1 + resolution: "bser@npm:2.1.1" + dependencies: + node-int64: ^0.4.0 + checksum: 9ba4dc58ce86300c862bffc3ae91f00b2a03b01ee07f3564beeeaf82aa243b8b03ba53f123b0b842c190d4399b94697970c8e7cf7b1ea44b61aa28c3526a4449 + languageName: node + linkType: hard + "buffer-reverse@npm:^1.0.1": version: 1.0.1 resolution: "buffer-reverse@npm:1.0.1" @@ -3705,7 +5141,7 @@ __metadata: languageName: node linkType: hard -"buffer@npm:^5.7.1": +"buffer@npm:^5.5.0, buffer@npm:^5.7.1": version: 5.7.1 resolution: "buffer@npm:5.7.1" dependencies: @@ -3763,6 +5199,15 @@ __metadata: languageName: node linkType: hard +"busboy@npm:^1.6.0": + version: 1.6.0 + resolution: "busboy@npm:1.6.0" + dependencies: + streamsearch: ^1.1.0 + checksum: 32801e2c0164e12106bf236291a00795c3c4e4b709ae02132883fe8478ba2ae23743b11c5735a0aae8afe65ac4b6ca4568b91f0d9fed1fdbc32ede824a73746e + languageName: node + linkType: hard + "cacache@npm:^18.0.0": version: 18.0.4 resolution: "cacache@npm:18.0.4" @@ -3820,6 +5265,16 @@ __metadata: languageName: node linkType: hard +"camel-case@npm:^4.1.2": + version: 4.1.2 + resolution: "camel-case@npm:4.1.2" + dependencies: + pascal-case: ^3.1.2 + tslib: ^2.0.3 + checksum: bcbd25cd253b3cbc69be3f535750137dbf2beb70f093bdc575f73f800acc8443d34fd52ab8f0a2413c34f1e8203139ffc88428d8863e4dfe530cfb257a379ad6 + languageName: node + linkType: hard + "camelcase-keys@npm:^7.0.0": version: 7.0.2 resolution: "camelcase-keys@npm:7.0.2" @@ -3846,6 +5301,24 @@ __metadata: languageName: node linkType: hard +"caniuse-lite@npm:^1.0.30001669": + version: 1.0.30001684 + resolution: "caniuse-lite@npm:1.0.30001684" + checksum: 5ee7aca9c29067d2e4c88cd05cbc062599d86389cd99e26e4d4bf84de8fad3f9ed2be9d3d909dfb65f50e77a17192175cb132eca7f0988ab0f3e8c4aa0dccd38 + languageName: node + linkType: hard + +"capital-case@npm:^1.0.4": + version: 1.0.4 + resolution: "capital-case@npm:1.0.4" + dependencies: + no-case: ^3.0.4 + tslib: ^2.0.3 + upper-case-first: ^2.0.2 + checksum: 41fa8fa87f6d24d0835a2b4a9341a3eaecb64ac29cd7c5391f35d6175a0fa98ab044e7f2602e1ec3afc886231462ed71b5b80c590b8b41af903ec2c15e5c5931 + languageName: node + linkType: hard + "chai@npm:^4.3.10, chai@npm:^4.3.4": version: 4.5.0 resolution: "chai@npm:4.5.0" @@ -3902,6 +5375,51 @@ __metadata: languageName: node linkType: hard +"change-case-all@npm:1.0.15": + version: 1.0.15 + resolution: "change-case-all@npm:1.0.15" + dependencies: + change-case: ^4.1.2 + is-lower-case: ^2.0.2 + is-upper-case: ^2.0.2 + lower-case: ^2.0.2 + lower-case-first: ^2.0.2 + sponge-case: ^1.0.1 + swap-case: ^2.0.2 + title-case: ^3.0.3 + upper-case: ^2.0.2 + upper-case-first: ^2.0.2 + checksum: e1dabdcd8447a3690f3faf15f92979dfbc113109b50916976e1d5e518e6cfdebee4f05f54d0ca24fb79a4bf835185b59ae25e967bb3dc10bd236a775b19ecc52 + languageName: node + linkType: hard + +"change-case@npm:^4.1.2": + version: 4.1.2 + resolution: "change-case@npm:4.1.2" + dependencies: + camel-case: ^4.1.2 + capital-case: ^1.0.4 + constant-case: ^3.0.4 + dot-case: ^3.0.4 + header-case: ^2.0.4 + no-case: ^3.0.4 + param-case: ^3.0.4 + pascal-case: ^3.1.2 + path-case: ^3.0.4 + sentence-case: ^3.0.4 + snake-case: ^3.0.4 + tslib: ^2.0.3 + checksum: e4bc4a093a1f7cce8b33896665cf9e456e3bc3cc0def2ad7691b1994cfca99b3188d0a513b16855b01a6bd20692fcde12a7d4d87a5615c4c515bbbf0e651f116 + languageName: node + linkType: hard + +"chardet@npm:^0.7.0": + version: 0.7.0 + resolution: "chardet@npm:0.7.0" + checksum: 6fd5da1f5d18ff5712c1e0aed41da200d7c51c28f11b36ee3c7b483f3696dabc08927fc6b227735eb8f0e1215c9a8abd8154637f3eff8cada5959df7f58b024d + languageName: node + linkType: hard + "chart.js@npm:^4.4.2": version: 4.4.4 resolution: "chart.js@npm:4.4.4" @@ -3991,6 +5509,39 @@ __metadata: languageName: node linkType: hard +"cli-cursor@npm:^3.1.0": + version: 3.1.0 + resolution: "cli-cursor@npm:3.1.0" + dependencies: + restore-cursor: ^3.1.0 + checksum: 2692784c6cd2fd85cfdbd11f53aea73a463a6d64a77c3e098b2b4697a20443f430c220629e1ca3b195ea5ac4a97a74c2ee411f3807abf6df2b66211fec0c0a29 + languageName: node + linkType: hard + +"cli-spinners@npm:^2.5.0": + version: 2.9.2 + resolution: "cli-spinners@npm:2.9.2" + checksum: 1bd588289b28432e4676cb5d40505cfe3e53f2e4e10fbe05c8a710a154d6fe0ce7836844b00d6858f740f2ffe67cdc36e0fce9c7b6a8430e80e6388d5aa4956c + languageName: node + linkType: hard + +"cli-truncate@npm:^2.1.0": + version: 2.1.0 + resolution: "cli-truncate@npm:2.1.0" + dependencies: + slice-ansi: ^3.0.0 + string-width: ^4.2.0 + checksum: bf1e4e6195392dc718bf9cd71f317b6300dc4a9191d052f31046b8773230ece4fa09458813bf0e3455a5e68c0690d2ea2c197d14a8b85a7b5e01c97f4b5feb5d + languageName: node + linkType: hard + +"cli-width@npm:^3.0.0": + version: 3.0.0 + resolution: "cli-width@npm:3.0.0" + checksum: 4c94af3769367a70e11ed69aa6095f1c600c0ff510f3921ab4045af961820d57c0233acfa8b6396037391f31b4c397e1f614d234294f979ff61430a6c166c3f6 + languageName: node + linkType: hard + "clipboardy@npm:^4.0.0": version: 4.0.0 resolution: "clipboardy@npm:4.0.0" @@ -4121,6 +5672,13 @@ __metadata: languageName: node linkType: hard +"colorette@npm:^2.0.16": + version: 2.0.20 + resolution: "colorette@npm:2.0.20" + checksum: 0c016fea2b91b733eb9f4bcdb580018f52c0bc0979443dad930e5037a968237ac53d9beb98e218d2e9235834f8eebce7f8e080422d6194e957454255bde71d3d + languageName: node + linkType: hard + "combined-stream@npm:^1.0.8": version: 1.0.8 resolution: "combined-stream@npm:1.0.8" @@ -4168,6 +5726,13 @@ __metadata: languageName: node linkType: hard +"common-tags@npm:1.8.2": + version: 1.8.2 + resolution: "common-tags@npm:1.8.2" + checksum: 767a6255a84bbc47df49a60ab583053bb29a7d9687066a18500a516188a062c4e4cd52de341f22de0b07062e699b1b8fe3cfa1cb55b241cb9301aeb4f45b4dff + languageName: node + linkType: hard + "component-emitter@npm:^1.2.1": version: 1.3.1 resolution: "component-emitter@npm:1.3.1" @@ -4203,6 +5768,17 @@ __metadata: languageName: node linkType: hard +"constant-case@npm:^3.0.4": + version: 3.0.4 + resolution: "constant-case@npm:3.0.4" + dependencies: + no-case: ^3.0.4 + tslib: ^2.0.3 + upper-case: ^2.0.2 + checksum: 6c3346d51afc28d9fae922e966c68eb77a19d94858dba230dd92d7b918b37d36db50f0311e9ecf6847e43e934b1c01406a0936973376ab17ec2c471fbcfb2cf3 + languageName: node + linkType: hard + "constants-browserify@npm:^1.0.0": version: 1.0.0 resolution: "constants-browserify@npm:1.0.0" @@ -4210,6 +5786,13 @@ __metadata: languageName: node linkType: hard +"convert-source-map@npm:^2.0.0": + version: 2.0.0 + resolution: "convert-source-map@npm:2.0.0" + checksum: 63ae9933be5a2b8d4509daca5124e20c14d023c820258e484e32dc324d34c2754e71297c94a05784064ad27615037ef677e3f0c00469fb55f409d2bb21261035 + languageName: node + linkType: hard + "cookie-es@npm:^1.2.2": version: 1.2.2 resolution: "cookie-es@npm:1.2.2" @@ -4241,7 +5824,7 @@ __metadata: languageName: node linkType: hard -"cosmiconfig@npm:^8.2.0": +"cosmiconfig@npm:^8.1.0, cosmiconfig@npm:^8.1.3, cosmiconfig@npm:^8.2.0": version: 8.3.6 resolution: "cosmiconfig@npm:8.3.6" dependencies: @@ -4323,7 +5906,7 @@ __metadata: languageName: node linkType: hard -"cross-fetch@npm:^3.0.6, cross-fetch@npm:^3.1.4": +"cross-fetch@npm:^3.0.6, cross-fetch@npm:^3.1.4, cross-fetch@npm:^3.1.5": version: 3.1.8 resolution: "cross-fetch@npm:3.1.8" dependencies: @@ -4332,6 +5915,15 @@ __metadata: languageName: node linkType: hard +"cross-inspect@npm:1.0.1": + version: 1.0.1 + resolution: "cross-inspect@npm:1.0.1" + dependencies: + tslib: ^2.4.0 + checksum: 7c1e02e0a9670b62416a3ea1df7ae880fdad3aa0a857de8932c4e5f8acd71298c7e3db9da8e9da603f5692cd1879938f5e72e34a9f5d1345987bef656d117fc1 + languageName: node + linkType: hard + "cross-spawn@npm:^5.0.1": version: 5.1.0 resolution: "cross-spawn@npm:5.1.0" @@ -4494,6 +6086,13 @@ __metadata: languageName: node linkType: hard +"dataloader@npm:^2.2.2": + version: 2.2.2 + resolution: "dataloader@npm:2.2.2" + checksum: 4dabd247089c29f194e94d5434d504f99156c5c214a03463c20f3f17f40398d7e179edee69a27c16e315519ac8739042a810090087ae26449a0e685156a02c65 + languageName: node + linkType: hard + "dayjs@npm:1.11.10": version: 1.11.10 resolution: "dayjs@npm:1.11.10" @@ -4508,7 +6107,14 @@ __metadata: languageName: node linkType: hard -"debug@npm:4, debug@npm:^4.1.1, debug@npm:^4.3.1, debug@npm:^4.3.2, debug@npm:^4.3.3, debug@npm:^4.3.4": +"debounce@npm:^1.2.0": + version: 1.2.1 + resolution: "debounce@npm:1.2.1" + checksum: 682a89506d9e54fb109526f4da255c5546102fbb8e3ae75eef3b04effaf5d4853756aee97475cd4650641869794e44f410eeb20ace2b18ea592287ab2038519e + languageName: node + linkType: hard + +"debug@npm:4, debug@npm:^4.1.0, debug@npm:^4.1.1, debug@npm:^4.3.1, debug@npm:^4.3.2, debug@npm:^4.3.3, debug@npm:^4.3.4": version: 4.3.7 resolution: "debug@npm:4.3.7" dependencies: @@ -4590,6 +6196,15 @@ __metadata: languageName: node linkType: hard +"defaults@npm:^1.0.3": + version: 1.0.4 + resolution: "defaults@npm:1.0.4" + dependencies: + clone: ^1.0.2 + checksum: 3a88b7a587fc076b84e60affad8b85245c01f60f38fc1d259e7ac1d89eb9ce6abb19e27215de46b98568dd5bc48471730b327637e6f20b0f1bc85cf00440c80a + languageName: node + linkType: hard + "define-data-property@npm:^1.0.1, define-data-property@npm:^1.1.4": version: 1.1.4 resolution: "define-data-property@npm:1.1.4" @@ -4661,6 +6276,13 @@ __metadata: languageName: node linkType: hard +"dependency-graph@npm:^0.11.0": + version: 0.11.0 + resolution: "dependency-graph@npm:0.11.0" + checksum: 477204beaa9be69e642bc31ffe7a8c383d0cf48fa27acbc91c5df01431ab913e65c154213d2ef83d034c98d77280743ec85e5da018a97a18dd43d3c0b78b28cd + languageName: node + linkType: hard + "des.js@npm:^1.0.0": version: 1.1.0 resolution: "des.js@npm:1.1.0" @@ -4685,6 +6307,13 @@ __metadata: languageName: node linkType: hard +"detect-indent@npm:^6.0.0": + version: 6.1.0 + resolution: "detect-indent@npm:6.1.0" + checksum: ab953a73c72dbd4e8fc68e4ed4bfd92c97eb6c43734af3900add963fd3a9316f3bc0578b018b24198d4c31a358571eff5f0656e81a1f3b9ad5c547d58b2d093d + languageName: node + linkType: hard + "detect-libc@npm:^1.0.3": version: 1.0.3 resolution: "detect-libc@npm:1.0.3" @@ -4849,6 +6478,16 @@ __metadata: languageName: node linkType: hard +"dot-case@npm:^3.0.4": + version: 3.0.4 + resolution: "dot-case@npm:3.0.4" + dependencies: + no-case: ^3.0.4 + tslib: ^2.0.3 + checksum: a65e3519414856df0228b9f645332f974f2bf5433370f544a681122eab59e66038fc3349b4be1cdc47152779dac71a5864f1ccda2f745e767c46e9c6543b1169 + languageName: node + linkType: hard + "dotenv-cli@npm:^7.2.1": version: 7.4.2 resolution: "dotenv-cli@npm:7.4.2" @@ -4877,13 +6516,20 @@ __metadata: languageName: node linkType: hard -"dotenv@npm:^16.0.3, dotenv@npm:^16.3.0": +"dotenv@npm:^16.0.0, dotenv@npm:^16.0.3, dotenv@npm:^16.3.0": version: 16.4.5 resolution: "dotenv@npm:16.4.5" checksum: 301a12c3d44fd49888b74eb9ccf9f07a1f5df43f489e7fcb89647a2edcd84c42d6bc349dc8df099cd18f07c35c7b04685c1a4f3e6a6a9e6b30f8d48c15b7f49c languageName: node linkType: hard +"dset@npm:^3.1.2": + version: 3.1.4 + resolution: "dset@npm:3.1.4" + checksum: 9a7677e9ffd3c13ad850f7cf367aa94b39984006510e84c3c09b7b88bba0a5b3b7196d85a99d0c4cae4e47d67bdeca43dc1834a41d80f31bcdc86dd26121ecec + languageName: node + linkType: hard + "dtrace-provider@npm:~0.8": version: 0.8.8 resolution: "dtrace-provider@npm:0.8.8" @@ -4913,6 +6559,13 @@ __metadata: languageName: node linkType: hard +"electron-to-chromium@npm:^1.5.41": + version: 1.5.65 + resolution: "electron-to-chromium@npm:1.5.65" + checksum: 4a112a038771c415f77e88fb3e3d929ceac4600b4612c55eb5d955a37c24842725f00c14f0f6838fd46edd832351c702b24c592c544d2e1e630d084f9df9f275 + languageName: node + linkType: hard + "elliptic@npm:6.5.4": version: 6.5.4 resolution: "elliptic@npm:6.5.4" @@ -5425,7 +7078,7 @@ __metadata: languageName: node linkType: hard -"escalade@npm:^3.1.1": +"escalade@npm:^3.1.1, escalade@npm:^3.2.0": version: 3.2.0 resolution: "escalade@npm:3.2.0" checksum: 47b029c83de01b0d17ad99ed766347b974b0d628e848de404018f3abee728e987da0d2d370ad4574aa3d5b5bfc368754fd085d69a30f8e75903486ec4b5b709e @@ -5910,6 +7563,17 @@ __metadata: languageName: node linkType: hard +"external-editor@npm:^3.0.3": + version: 3.1.0 + resolution: "external-editor@npm:3.1.0" + dependencies: + chardet: ^0.7.0 + iconv-lite: ^0.4.24 + tmp: ^0.0.33 + checksum: 1c2a616a73f1b3435ce04030261bed0e22d4737e14b090bb48e58865da92529c9f2b05b893de650738d55e692d071819b45e1669259b2b354bc3154d27a698c7 + languageName: node + linkType: hard + "extglob@npm:^2.0.2": version: 2.0.4 resolution: "extglob@npm:2.0.4" @@ -5926,6 +7590,13 @@ __metadata: languageName: node linkType: hard +"extract-files@npm:^11.0.0": + version: 11.0.0 + resolution: "extract-files@npm:11.0.0" + checksum: 39ebd92772e9a1e30d1e3112fb7db85d353c8243640635668b615ac1d605ceb79fbb13d17829dd308993ef37bb189ad99817f79ab164ae95c9bb3df9f440bd16 + languageName: node + linkType: hard + "extract-files@npm:^9.0.0": version: 9.0.0 resolution: "extract-files@npm:9.0.0" @@ -5933,6 +7604,13 @@ __metadata: languageName: node linkType: hard +"fast-decode-uri-component@npm:^1.0.1": + version: 1.0.1 + resolution: "fast-decode-uri-component@npm:1.0.1" + checksum: 427a48fe0907e76f0e9a2c228e253b4d8a8ab21d130ee9e4bb8339c5ba4086235cf9576831f7b20955a752eae4b525a177ff9d5825dd8d416e7726939194fbee + languageName: node + linkType: hard + "fast-deep-equal@npm:^3.1.1, fast-deep-equal@npm:^3.1.3": version: 3.1.3 resolution: "fast-deep-equal@npm:3.1.3" @@ -5974,6 +7652,15 @@ __metadata: languageName: node linkType: hard +"fast-querystring@npm:^1.1.1": + version: 1.1.2 + resolution: "fast-querystring@npm:1.1.2" + dependencies: + fast-decode-uri-component: ^1.0.1 + checksum: 7149f82ee9ac39a9c08c7ffe435b9f6deade76ae5e3675fe1835720513e8c4bc541e666b4b7b1c0c07e08f369dcf4828d00f2bee39889a90a168e1439cf27b0b + languageName: node + linkType: hard + "fast-redact@npm:^3.0.0": version: 3.5.0 resolution: "fast-redact@npm:3.5.0" @@ -6011,6 +7698,46 @@ __metadata: languageName: node linkType: hard +"fb-watchman@npm:^2.0.0": + version: 2.0.2 + resolution: "fb-watchman@npm:2.0.2" + dependencies: + bser: 2.1.1 + checksum: b15a124cef28916fe07b400eb87cbc73ca082c142abf7ca8e8de6af43eca79ca7bd13eb4d4d48240b3bd3136eaac40d16e42d6edf87a8e5d1dd8070626860c78 + languageName: node + linkType: hard + +"fbjs-css-vars@npm:^1.0.0": + version: 1.0.2 + resolution: "fbjs-css-vars@npm:1.0.2" + checksum: 72baf6d22c45b75109118b4daecb6c8016d4c83c8c0f23f683f22e9d7c21f32fff6201d288df46eb561e3c7d4bb4489b8ad140b7f56444c453ba407e8bd28511 + languageName: node + linkType: hard + +"fbjs@npm:^3.0.0": + version: 3.0.5 + resolution: "fbjs@npm:3.0.5" + dependencies: + cross-fetch: ^3.1.5 + fbjs-css-vars: ^1.0.0 + loose-envify: ^1.0.0 + object-assign: ^4.1.0 + promise: ^7.1.1 + setimmediate: ^1.0.5 + ua-parser-js: ^1.0.35 + checksum: e609b5b64686bc96495a5c67728ed9b2710b9b3d695c5759c5f5e47c9483d1c323543ac777a86459e3694efc5712c6ce7212e944feb19752867d699568bb0e54 + languageName: node + linkType: hard + +"figures@npm:^3.0.0": + version: 3.2.0 + resolution: "figures@npm:3.2.0" + dependencies: + escape-string-regexp: ^1.0.5 + checksum: 85a6ad29e9aca80b49b817e7c89ecc4716ff14e3779d9835af554db91bac41c0f289c418923519392a1e582b4d10482ad282021330cd045bb7b80c84152f2a2b + languageName: node + linkType: hard + "file-entry-cache@npm:^6.0.1": version: 6.0.1 resolution: "file-entry-cache@npm:6.0.1" @@ -6304,6 +8031,13 @@ __metadata: languageName: node linkType: hard +"gensync@npm:^1.0.0-beta.2": + version: 1.0.0-beta.2 + resolution: "gensync@npm:1.0.0-beta.2" + checksum: a7437e58c6be12aa6c90f7730eac7fa9833dc78872b4ad2963d2031b00a3367a93f98aec75f9aaac7220848e4026d67a8655e870b24f20a543d103c0d65952ec + languageName: node + linkType: hard + "get-caller-file@npm:^2.0.1, get-caller-file@npm:^2.0.5": version: 2.0.5 resolution: "get-caller-file@npm:2.0.5" @@ -6431,7 +8165,7 @@ __metadata: languageName: node linkType: hard -"glob@npm:^7.1.3": +"glob@npm:^7.1.1, glob@npm:^7.1.3": version: 7.2.3 resolution: "glob@npm:7.2.3" dependencies: @@ -6465,6 +8199,13 @@ __metadata: languageName: node linkType: hard +"globals@npm:^11.1.0": + version: 11.12.0 + resolution: "globals@npm:11.12.0" + checksum: 67051a45eca3db904aee189dfc7cd53c20c7d881679c93f6146ddd4c9f4ab2268e68a919df740d39c71f4445d2b38ee360fc234428baea1dbdfe68bbcb46979e + languageName: node + linkType: hard + "globals@npm:^13.19.0, globals@npm:^13.24.0": version: 13.24.0 resolution: "globals@npm:13.24.0" @@ -6484,7 +8225,7 @@ __metadata: languageName: node linkType: hard -"globby@npm:^11.1.0": +"globby@npm:^11.0.3, globby@npm:^11.1.0": version: 11.1.0 resolution: "globby@npm:11.1.0" dependencies: @@ -6535,6 +8276,31 @@ __metadata: languageName: node linkType: hard +"graphql-config@npm:^5.1.1": + version: 5.1.3 + resolution: "graphql-config@npm:5.1.3" + dependencies: + "@graphql-tools/graphql-file-loader": ^8.0.0 + "@graphql-tools/json-file-loader": ^8.0.0 + "@graphql-tools/load": ^8.0.0 + "@graphql-tools/merge": ^9.0.0 + "@graphql-tools/url-loader": ^8.0.0 + "@graphql-tools/utils": ^10.0.0 + cosmiconfig: ^8.1.0 + jiti: ^2.0.0 + minimatch: ^9.0.5 + string-env-interpolation: ^1.0.1 + tslib: ^2.4.0 + peerDependencies: + cosmiconfig-toml-loader: ^1.0.0 + graphql: ^0.11.0 || ^0.12.0 || ^0.13.0 || ^14.0.0 || ^15.0.0 || ^16.0.0 + peerDependenciesMeta: + cosmiconfig-toml-loader: + optional: true + checksum: fde8aee849def42a5eaf02fbe3e404c91be94a53782c22ff58b29bfcfed7e9be2fba114fa94b4a97e12ea1e5970267ebaa119ba6915b2d4d9bb8f5ae9c5485c2 + languageName: node + linkType: hard + "graphql-request@npm:^3.4.0": version: 3.7.0 resolution: "graphql-request@npm:3.7.0" @@ -6548,7 +8314,19 @@ __metadata: languageName: node linkType: hard -"graphql-tag@npm:^2.12.6": +"graphql-request@npm:^6.0.0": + version: 6.1.0 + resolution: "graphql-request@npm:6.1.0" + dependencies: + "@graphql-typed-document-node/core": ^3.2.0 + cross-fetch: ^3.1.5 + peerDependencies: + graphql: 14 - 16 + checksum: 6d62630a0169574442320651c1f7626c0c602025c3c46b19e09417c9579bb209306ee63de9793a03be2e1701bb7f13971f8545d99bc6573e340f823af0ad35b2 + languageName: node + linkType: hard + +"graphql-tag@npm:^2.11.0, graphql-tag@npm:^2.12.6": version: 2.12.6 resolution: "graphql-tag@npm:2.12.6" dependencies: @@ -6559,6 +8337,15 @@ __metadata: languageName: node linkType: hard +"graphql-ws@npm:^5.14.0": + version: 5.16.0 + resolution: "graphql-ws@npm:5.16.0" + peerDependencies: + graphql: ">=0.11 <=16" + checksum: e3e077ec187a92be3fd5dfae49e23af11a82711d3537064384f6861c2b5ceb339f60dc1871d0026b47ff05e4ed3c941404812a8086347e454688e0e6ef0e69f3 + languageName: node + linkType: hard + "graphql@npm:^15.5.0": version: 15.9.0 resolution: "graphql@npm:15.9.0" @@ -6766,6 +8553,16 @@ __metadata: languageName: node linkType: hard +"header-case@npm:^2.0.4": + version: 2.0.4 + resolution: "header-case@npm:2.0.4" + dependencies: + capital-case: ^1.0.4 + tslib: ^2.0.3 + checksum: 571c83eeb25e8130d172218712f807c0b96d62b020981400bccc1503a7cf14b09b8b10498a962d2739eccf231d950e3848ba7d420b58a6acd2f9283439546cd9 + languageName: node + linkType: hard + "hey-listen@npm:^1.0.8": version: 1.0.8 resolution: "hey-listen@npm:1.0.8" @@ -6866,7 +8663,7 @@ __metadata: languageName: node linkType: hard -"https-proxy-agent@npm:^7.0.1": +"https-proxy-agent@npm:^7.0.0, https-proxy-agent@npm:^7.0.1": version: 7.0.5 resolution: "https-proxy-agent@npm:7.0.5" dependencies: @@ -6890,6 +8687,15 @@ __metadata: languageName: node linkType: hard +"iconv-lite@npm:^0.4.24": + version: 0.4.24 + resolution: "iconv-lite@npm:0.4.24" + dependencies: + safer-buffer: ">= 2.1.2 < 3" + checksum: bd9f120f5a5b306f0bc0b9ae1edeb1577161503f5f8252a20f1a9e56ef8775c9959fd01c55f2d3a39d9a8abaf3e30c1abeb1895f367dcbbe0a8fd1c9ca01c4f6 + languageName: node + linkType: hard + "iconv-lite@npm:^0.6.2": version: 0.6.3 resolution: "iconv-lite@npm:0.6.3" @@ -6936,6 +8742,13 @@ __metadata: languageName: node linkType: hard +"immutable@npm:~3.7.6": + version: 3.7.6 + resolution: "immutable@npm:3.7.6" + checksum: 8cccfb22d3ecf14fe0c474612e96d6bb5d117493e7639fe6642fb81e78c9ac4b698dd8a322c105001a709ad873ffc90e30bad7db5d9a3ef0b54a6e1db0258e8e + languageName: node + linkType: hard + "import-fresh@npm:^3.2.1, import-fresh@npm:^3.3.0": version: 3.3.0 resolution: "import-fresh@npm:3.3.0" @@ -6946,6 +8759,13 @@ __metadata: languageName: node linkType: hard +"import-from@npm:4.0.0": + version: 4.0.0 + resolution: "import-from@npm:4.0.0" + checksum: 1fa29c05b048da18914e91d9a529e5d9b91774bebbfab10e53f59bcc1667917672b971cf102fee857f142e5e433ce69fa1f0a596e1c7d82f9947a5ec352694b9 + languageName: node + linkType: hard + "import-lazy@npm:^4.0.0": version: 4.0.0 resolution: "import-lazy@npm:4.0.0" @@ -6998,6 +8818,29 @@ __metadata: languageName: node linkType: hard +"inquirer@npm:^8.0.0": + version: 8.2.6 + resolution: "inquirer@npm:8.2.6" + dependencies: + ansi-escapes: ^4.2.1 + chalk: ^4.1.1 + cli-cursor: ^3.1.0 + cli-width: ^3.0.0 + external-editor: ^3.0.3 + figures: ^3.0.0 + lodash: ^4.17.21 + mute-stream: 0.0.8 + ora: ^5.4.1 + run-async: ^2.4.0 + rxjs: ^7.5.5 + string-width: ^4.1.0 + strip-ansi: ^6.0.0 + through: ^2.3.6 + wrap-ansi: ^6.0.1 + checksum: 387ffb0a513559cc7414eb42c57556a60e302f820d6960e89d376d092e257a919961cd485a1b4de693dbb5c0de8bc58320bfd6247dfd827a873aa82a4215a240 + languageName: node + linkType: hard + "internal-slot@npm:^1.0.7": version: 1.0.7 resolution: "internal-slot@npm:1.0.7" @@ -7009,6 +8852,15 @@ __metadata: languageName: node linkType: hard +"invariant@npm:^2.2.4": + version: 2.2.4 + resolution: "invariant@npm:2.2.4" + dependencies: + loose-envify: ^1.0.0 + checksum: cc3182d793aad82a8d1f0af697b462939cb46066ec48bbf1707c150ad5fad6406137e91a262022c269702e01621f35ef60269f6c0d7fd178487959809acdfb14 + languageName: node + linkType: hard + "ip-address@npm:^9.0.5": version: 9.0.5 resolution: "ip-address@npm:9.0.5" @@ -7026,6 +8878,16 @@ __metadata: languageName: node linkType: hard +"is-absolute@npm:^1.0.0": + version: 1.0.0 + resolution: "is-absolute@npm:1.0.0" + dependencies: + is-relative: ^1.0.0 + is-windows: ^1.0.1 + checksum: 9d16b2605eda3f3ce755410f1d423e327ad3a898bcb86c9354cf63970ed3f91ba85e9828aa56f5d6a952b9fae43d0477770f78d37409ae8ecc31e59ebc279b27 + languageName: node + linkType: hard + "is-accessor-descriptor@npm:^1.0.1": version: 1.0.1 resolution: "is-accessor-descriptor@npm:1.0.1" @@ -7235,7 +9097,7 @@ __metadata: languageName: node linkType: hard -"is-glob@npm:^4.0.0, is-glob@npm:^4.0.1, is-glob@npm:^4.0.3, is-glob@npm:~4.0.1": +"is-glob@npm:4.0.3, is-glob@npm:^4.0.0, is-glob@npm:^4.0.1, is-glob@npm:^4.0.3, is-glob@npm:~4.0.1": version: 4.0.3 resolution: "is-glob@npm:4.0.3" dependencies: @@ -7262,6 +9124,13 @@ __metadata: languageName: node linkType: hard +"is-interactive@npm:^1.0.0": + version: 1.0.0 + resolution: "is-interactive@npm:1.0.0" + checksum: 824808776e2d468b2916cdd6c16acacebce060d844c35ca6d82267da692e92c3a16fdba624c50b54a63f38bdc4016055b6f443ce57d7147240de4f8cdabaf6f9 + languageName: node + linkType: hard + "is-lambda@npm:^1.0.1": version: 1.0.1 resolution: "is-lambda@npm:1.0.1" @@ -7269,6 +9138,15 @@ __metadata: languageName: node linkType: hard +"is-lower-case@npm:^2.0.2": + version: 2.0.2 + resolution: "is-lower-case@npm:2.0.2" + dependencies: + tslib: ^2.0.3 + checksum: ba57dd1201e15fd9b590654736afccf1b3b68e919f40c23ef13b00ebcc639b1d9c2f81fe86415bff3e8eccffec459786c9ac9dc8f3a19cfa4484206c411c1d7d + languageName: node + linkType: hard + "is-nan@npm:^1.3.2": version: 1.3.2 resolution: "is-nan@npm:1.3.2" @@ -7351,6 +9229,15 @@ __metadata: languageName: node linkType: hard +"is-relative@npm:^1.0.0": + version: 1.0.0 + resolution: "is-relative@npm:1.0.0" + dependencies: + is-unc-path: ^1.0.0 + checksum: 3271a0df109302ef5e14a29dcd5d23d9788e15ade91a40b942b035827ffbb59f7ce9ff82d036ea798541a52913cbf9d2d0b66456340887b51f3542d57b5a4c05 + languageName: node + linkType: hard + "is-shared-array-buffer@npm:^1.0.2, is-shared-array-buffer@npm:^1.0.3": version: 1.0.3 resolution: "is-shared-array-buffer@npm:1.0.3" @@ -7401,6 +9288,31 @@ __metadata: languageName: node linkType: hard +"is-unc-path@npm:^1.0.0": + version: 1.0.0 + resolution: "is-unc-path@npm:1.0.0" + dependencies: + unc-path-regex: ^0.1.2 + checksum: e8abfde203f7409f5b03a5f1f8636e3a41e78b983702ef49d9343eb608cdfe691429398e8815157519b987b739bcfbc73ae7cf4c8582b0ab66add5171088eab6 + languageName: node + linkType: hard + +"is-unicode-supported@npm:^0.1.0": + version: 0.1.0 + resolution: "is-unicode-supported@npm:0.1.0" + checksum: a2aab86ee7712f5c2f999180daaba5f361bdad1efadc9610ff5b8ab5495b86e4f627839d085c6530363c6d6d4ecbde340fb8e54bdb83da4ba8e0865ed5513c52 + languageName: node + linkType: hard + +"is-upper-case@npm:^2.0.2": + version: 2.0.2 + resolution: "is-upper-case@npm:2.0.2" + dependencies: + tslib: ^2.0.3 + checksum: cf4fd43c00c2e72cd5cff911923070b89f0933b464941bd782e2315385f80b5a5acd772db3b796542e5e3cfed735f4dffd88c54d62db1ebfc5c3daa7b1af2bc6 + languageName: node + linkType: hard + "is-weakref@npm:^1.0.2": version: 1.0.2 resolution: "is-weakref@npm:1.0.2" @@ -7410,7 +9322,7 @@ __metadata: languageName: node linkType: hard -"is-windows@npm:^1.0.2": +"is-windows@npm:^1.0.1, is-windows@npm:^1.0.2": version: 1.0.2 resolution: "is-windows@npm:1.0.2" checksum: 438b7e52656fe3b9b293b180defb4e448088e7023a523ec21a91a80b9ff8cdb3377ddb5b6e60f7c7de4fa8b63ab56e121b6705fe081b3cf1b828b0a380009ad7 @@ -7512,6 +9424,15 @@ __metadata: languageName: node linkType: hard +"isomorphic-ws@npm:^5.0.0": + version: 5.0.0 + resolution: "isomorphic-ws@npm:5.0.0" + peerDependencies: + ws: "*" + checksum: e20eb2aee09ba96247465fda40c6d22c1153394c0144fa34fe6609f341af4c8c564f60ea3ba762335a7a9c306809349f9b863c8beedf2beea09b299834ad5398 + languageName: node + linkType: hard + "jackspeak@npm:^3.1.2": version: 3.4.3 resolution: "jackspeak@npm:3.4.3" @@ -7536,6 +9457,24 @@ __metadata: languageName: node linkType: hard +"jiti@npm:^1.17.1": + version: 1.21.6 + resolution: "jiti@npm:1.21.6" + bin: + jiti: bin/jiti.js + checksum: 9ea4a70a7bb950794824683ed1c632e2ede26949fbd348e2ba5ec8dc5efa54dc42022d85ae229cadaa60d4b95012e80ea07d625797199b688cc22ab0e8891d32 + languageName: node + linkType: hard + +"jiti@npm:^2.0.0": + version: 2.4.0 + resolution: "jiti@npm:2.4.0" + bin: + jiti: lib/jiti-cli.mjs + checksum: b7d8c441214e48f6c1be2952a83f40e2b1eb6e94fe81b1fd89370d11a7e322c61eb3fbd9a8d47029e14338414091ebbb575e1a92c645ab30fea6240c5c4957c7 + languageName: node + linkType: hard + "jiti@npm:^2.1.2": version: 2.3.3 resolution: "jiti@npm:2.3.3" @@ -7545,6 +9484,13 @@ __metadata: languageName: node linkType: hard +"jose@npm:^5.0.0": + version: 5.9.6 + resolution: "jose@npm:5.9.6" + checksum: 4b536da0201858ed4c4582e8bb479081f11e0c63dd0f5e473adde16fc539785e1f2f0409bc1fc7cbbb5b68026776c960b4952da3a06f6fdfff0b9764c9127ae0 + languageName: node + linkType: hard + "js-base64@npm:^2.1.9": version: 2.6.4 resolution: "js-base64@npm:2.6.4" @@ -7573,7 +9519,7 @@ __metadata: languageName: node linkType: hard -"js-yaml@npm:^4.1.0": +"js-yaml@npm:^4.0.0, js-yaml@npm:^4.1.0": version: 4.1.0 resolution: "js-yaml@npm:4.1.0" dependencies: @@ -7598,6 +9544,15 @@ __metadata: languageName: node linkType: hard +"jsesc@npm:^3.0.2": + version: 3.0.2 + resolution: "jsesc@npm:3.0.2" + bin: + jsesc: bin/jsesc + checksum: a36d3ca40574a974d9c2063bf68c2b6141c20da8f2a36bd3279fc802563f35f0527a6c828801295bdfb2803952cf2cf387786c2c90ed564f88d5782475abfe3c + languageName: node + linkType: hard + "json-buffer@npm:3.0.1": version: 3.0.1 resolution: "json-buffer@npm:3.0.1" @@ -7660,6 +9615,16 @@ __metadata: languageName: node linkType: hard +"json-to-pretty-yaml@npm:^1.2.2": + version: 1.2.2 + resolution: "json-to-pretty-yaml@npm:1.2.2" + dependencies: + remedial: ^1.0.7 + remove-trailing-spaces: ^1.0.6 + checksum: 4b78480f426e176e5fdac073e05877683bb026f1175deb52d0941b992f9c91a58a812c020f00aa67ba1fc7cadb220539a264146f222e48a48c8bb2a0931cac9b + languageName: node + linkType: hard + "json5@npm:^1.0.1": version: 1.0.2 resolution: "json5@npm:1.0.2" @@ -7671,6 +9636,15 @@ __metadata: languageName: node linkType: hard +"json5@npm:^2.2.3": + version: 2.2.3 + resolution: "json5@npm:2.2.3" + bin: + json5: lib/cli.js + checksum: 2a7436a93393830bce797d4626275152e37e877b265e94ca69c99e3d20c2b9dab021279146a39cdb700e71b2dd32a4cebd1514cd57cee102b1af906ce5040349 + languageName: node + linkType: hard + "jsondiffpatch@npm:^0.3.11": version: 0.3.11 resolution: "jsondiffpatch@npm:0.3.11" @@ -7821,6 +9795,27 @@ __metadata: languageName: node linkType: hard +"listr2@npm:^4.0.5": + version: 4.0.5 + resolution: "listr2@npm:4.0.5" + dependencies: + cli-truncate: ^2.1.0 + colorette: ^2.0.16 + log-update: ^4.0.0 + p-map: ^4.0.0 + rfdc: ^1.3.0 + rxjs: ^7.5.5 + through: ^2.3.8 + wrap-ansi: ^7.0.0 + peerDependencies: + enquirer: ">= 2.3.0 < 3" + peerDependenciesMeta: + enquirer: + optional: true + checksum: 7af31851abe25969ef0581c6db808117e36af15b131401795182427769d9824f451ba9e8aff6ccd25b6a4f6c8796f816292caf08e5f1f9b1775e8e9c313dc6c5 + languageName: node + linkType: hard + "lit-element@npm:^3.3.0": version: 3.3.3 resolution: "lit-element@npm:3.3.3" @@ -7933,6 +9928,13 @@ __metadata: languageName: node linkType: hard +"lodash.sortby@npm:^4.7.0": + version: 4.7.0 + resolution: "lodash.sortby@npm:4.7.0" + checksum: db170c9396d29d11fe9a9f25668c4993e0c1331bcb941ddbd48fb76f492e732add7f2a47cfdf8e9d740fa59ac41bbfaf931d268bc72aab3ab49e9f89354d718c + languageName: node + linkType: hard + "lodash.truncate@npm:^4.4.2": version: 4.4.2 resolution: "lodash.truncate@npm:4.4.2" @@ -7940,13 +9942,35 @@ __metadata: languageName: node linkType: hard -"lodash@npm:^4.17.11, lodash@npm:^4.17.15, lodash@npm:^4.17.21": +"lodash@npm:^4.17.11, lodash@npm:^4.17.15, lodash@npm:^4.17.20, lodash@npm:^4.17.21, lodash@npm:~4.17.0": version: 4.17.21 resolution: "lodash@npm:4.17.21" checksum: eb835a2e51d381e561e508ce932ea50a8e5a68f4ebdd771ea240d3048244a8d13658acbd502cd4829768c56f2e16bdd4340b9ea141297d472517b83868e677f7 languageName: node linkType: hard +"log-symbols@npm:^4.0.0, log-symbols@npm:^4.1.0": + version: 4.1.0 + resolution: "log-symbols@npm:4.1.0" + dependencies: + chalk: ^4.1.0 + is-unicode-supported: ^0.1.0 + checksum: fce1497b3135a0198803f9f07464165e9eb83ed02ceb2273930a6f8a508951178d8cf4f0378e9d28300a2ed2bc49050995d2bd5f53ab716bb15ac84d58c6ef74 + languageName: node + linkType: hard + +"log-update@npm:^4.0.0": + version: 4.0.0 + resolution: "log-update@npm:4.0.0" + dependencies: + ansi-escapes: ^4.3.0 + cli-cursor: ^3.1.0 + slice-ansi: ^4.0.0 + wrap-ansi: ^6.2.0 + checksum: ae2f85bbabc1906034154fb7d4c4477c79b3e703d22d78adee8b3862fa913942772e7fa11713e3d96fb46de4e3cabefbf5d0a544344f03b58d3c4bff52aa9eb2 + languageName: node + linkType: hard + "loglevel@npm:^1.8.1": version: 1.9.2 resolution: "loglevel@npm:1.9.2" @@ -7954,7 +9978,7 @@ __metadata: languageName: node linkType: hard -"loose-envify@npm:^1.1.0, loose-envify@npm:^1.4.0": +"loose-envify@npm:^1.0.0, loose-envify@npm:^1.1.0, loose-envify@npm:^1.4.0": version: 1.4.0 resolution: "loose-envify@npm:1.4.0" dependencies: @@ -7974,6 +9998,24 @@ __metadata: languageName: node linkType: hard +"lower-case-first@npm:^2.0.2": + version: 2.0.2 + resolution: "lower-case-first@npm:2.0.2" + dependencies: + tslib: ^2.0.3 + checksum: 33e3da1098ddda219ce125d4ab7a78a944972c0ee8872e95b6ccc35df8ad405284ab233b0ba4d72315ad1a06fe2f0d418ee4cba9ec1ef1c386dea78899fc8958 + languageName: node + linkType: hard + +"lower-case@npm:^2.0.2": + version: 2.0.2 + resolution: "lower-case@npm:2.0.2" + dependencies: + tslib: ^2.0.3 + checksum: 83a0a5f159ad7614bee8bf976b96275f3954335a84fad2696927f609ddae902802c4f3312d86668722e668bef41400254807e1d3a7f2e8c3eede79691aa1f010 + languageName: node + linkType: hard + "lru-cache@npm:^10.0.1, lru-cache@npm:^10.2.0, lru-cache@npm:^10.4.3": version: 10.4.3 resolution: "lru-cache@npm:10.4.3" @@ -7991,6 +10033,15 @@ __metadata: languageName: node linkType: hard +"lru-cache@npm:^5.1.1": + version: 5.1.1 + resolution: "lru-cache@npm:5.1.1" + dependencies: + yallist: ^3.0.2 + checksum: c154ae1cbb0c2206d1501a0e94df349653c92c8cbb25236d7e85190bcaf4567a03ac6eb43166fabfa36fd35623694da7233e88d9601fbf411a9a481d85dbd2cb + languageName: node + linkType: hard + "lru-cache@npm:^6.0.0": version: 6.0.0 resolution: "lru-cache@npm:6.0.0" @@ -8038,7 +10089,7 @@ __metadata: languageName: node linkType: hard -"map-cache@npm:^0.2.2": +"map-cache@npm:^0.2.0, map-cache@npm:^0.2.2": version: 0.2.2 resolution: "map-cache@npm:0.2.2" checksum: 3067cea54285c43848bb4539f978a15dedc63c03022abeec6ef05c8cb6829f920f13b94bcaf04142fc6a088318e564c4785704072910d120d55dbc2e0c421969 @@ -8168,6 +10219,18 @@ __metadata: languageName: node linkType: hard +"meros@npm:^1.2.1": + version: 1.3.0 + resolution: "meros@npm:1.3.0" + peerDependencies: + "@types/node": ">=13" + peerDependenciesMeta: + "@types/node": + optional: true + checksum: ea86c83fe9357d3eb2f5bad20909e12642c7bc8c10340d9bd0968b48f69ec453de14f7e5032d138ad04cb10d79b8c9fb3c9601bb515e8fbdf9bec4eed62994ad + languageName: node + linkType: hard + "mersenne-twister@npm:^1.0.1": version: 1.1.0 resolution: "mersenne-twister@npm:1.1.0" @@ -8203,7 +10266,7 @@ __metadata: languageName: node linkType: hard -"micromatch@npm:^4.0.4, micromatch@npm:^4.0.5": +"micromatch@npm:^4.0.4, micromatch@npm:^4.0.5, micromatch@npm:^4.0.8": version: 4.0.8 resolution: "micromatch@npm:4.0.8" dependencies: @@ -8250,6 +10313,13 @@ __metadata: languageName: node linkType: hard +"mimic-fn@npm:^2.1.0": + version: 2.1.0 + resolution: "mimic-fn@npm:2.1.0" + checksum: d2421a3444848ce7f84bd49115ddacff29c15745db73f54041edc906c14b131a38d05298dae3081667627a59b2eb1ca4b436ff2e1b80f69679522410418b478a + languageName: node + linkType: hard + "mimic-fn@npm:^4.0.0": version: 4.0.0 resolution: "mimic-fn@npm:4.0.0" @@ -8287,7 +10357,7 @@ __metadata: languageName: node linkType: hard -"minimatch@npm:^9.0.4": +"minimatch@npm:^9.0.4, minimatch@npm:^9.0.5": version: 9.0.5 resolution: "minimatch@npm:9.0.5" dependencies: @@ -8474,6 +10544,10 @@ __metadata: "@esbuild-plugins/node-modules-polyfill": ^0.2.2 "@ethersproject/abi": ^5.7.0 "@ethersproject/providers": ^5.7.2 + "@graphql-codegen/cli": ^5.0.3 + "@graphql-codegen/typescript": ^4.1.2 + "@graphql-codegen/typescript-document-nodes": ^4.0.12 + "@graphql-codegen/typescript-operations": ^4.4.0 "@originjs/vite-plugin-commonjs": ^1.0.3 "@rushstack/eslint-patch": ^1.1.3 "@typechain/ethers-v5": ^11.1.2 @@ -8583,6 +10657,13 @@ __metadata: languageName: node linkType: hard +"mute-stream@npm:0.0.8": + version: 0.0.8 + resolution: "mute-stream@npm:0.0.8" + checksum: ff48d251fc3f827e5b1206cda0ffdaec885e56057ee86a3155e1951bc940fd5f33531774b1cc8414d7668c10a8907f863f6561875ee6e8768931a62121a531a1 + languageName: node + linkType: hard + "mv@npm:~2": version: 2.1.1 resolution: "mv@npm:2.1.1" @@ -8668,6 +10749,16 @@ __metadata: languageName: node linkType: hard +"no-case@npm:^3.0.4": + version: 3.0.4 + resolution: "no-case@npm:3.0.4" + dependencies: + lower-case: ^2.0.2 + tslib: ^2.0.3 + checksum: 0b2ebc113dfcf737d48dde49cfebf3ad2d82a8c3188e7100c6f375e30eafbef9e9124aadc3becef237b042fd5eb0aad2fd78669c20972d045bbe7fea8ba0be5c + languageName: node + linkType: hard + "node-addon-api@npm:^2.0.0": version: 2.0.2 resolution: "node-addon-api@npm:2.0.2" @@ -8754,6 +10845,20 @@ __metadata: languageName: node linkType: hard +"node-int64@npm:^0.4.0": + version: 0.4.0 + resolution: "node-int64@npm:0.4.0" + checksum: d0b30b1ee6d961851c60d5eaa745d30b5c95d94bc0e74b81e5292f7c42a49e3af87f1eb9e89f59456f80645d679202537de751b7d72e9e40ceea40c5e449057e + languageName: node + linkType: hard + +"node-releases@npm:^2.0.18": + version: 2.0.18 + resolution: "node-releases@npm:2.0.18" + checksum: ef55a3d853e1269a6d6279b7692cd6ff3e40bc74947945101138745bfdc9a5edabfe72cb19a31a8e45752e1910c4c65c77d931866af6357f242b172b7283f5b3 + languageName: node + linkType: hard + "node-stdlib-browser@npm:^1.2.0": version: 1.2.1 resolution: "node-stdlib-browser@npm:1.2.1" @@ -8819,6 +10924,15 @@ __metadata: languageName: node linkType: hard +"normalize-path@npm:^2.1.1": + version: 2.1.1 + resolution: "normalize-path@npm:2.1.1" + dependencies: + remove-trailing-separator: ^1.0.1 + checksum: 7e9cbdcf7f5b8da7aa191fbfe33daf290cdcd8c038f422faf1b8a83c972bf7a6d94c5be34c4326cb00fb63bc0fd97d9fbcfaf2e5d6142332c2cd36d2e1b86cea + languageName: node + linkType: hard + "normalize-path@npm:^3.0.0, normalize-path@npm:~3.0.0": version: 3.0.0 resolution: "normalize-path@npm:3.0.0" @@ -8862,6 +10976,13 @@ __metadata: languageName: node linkType: hard +"nullthrows@npm:^1.1.1": + version: 1.1.1 + resolution: "nullthrows@npm:1.1.1" + checksum: 10806b92121253eb1b08ecf707d92480f5331ba8ae5b23fa3eb0548ad24196eb797ed47606153006568a5733ea9e528a3579f21421f7828e09e7756f4bdd386f + languageName: node + linkType: hard + "number-to-bn@npm:1.7.0": version: 1.7.0 resolution: "number-to-bn@npm:1.7.0" @@ -8985,6 +11106,15 @@ __metadata: languageName: node linkType: hard +"onetime@npm:^5.1.0": + version: 5.1.2 + resolution: "onetime@npm:5.1.2" + dependencies: + mimic-fn: ^2.1.0 + checksum: 2478859ef817fc5d4e9c2f9e5728512ddd1dbc9fb7829ad263765bb6d3b91ce699d6e2332eef6b7dff183c2f490bd3349f1666427eaba4469fba0ac38dfd0d34 + languageName: node + linkType: hard + "onetime@npm:^6.0.0": version: 6.0.0 resolution: "onetime@npm:6.0.0" @@ -9031,6 +11161,23 @@ __metadata: languageName: node linkType: hard +"ora@npm:^5.4.1": + version: 5.4.1 + resolution: "ora@npm:5.4.1" + dependencies: + bl: ^4.1.0 + chalk: ^4.1.0 + cli-cursor: ^3.1.0 + cli-spinners: ^2.5.0 + is-interactive: ^1.0.0 + is-unicode-supported: ^0.1.0 + log-symbols: ^4.1.0 + strip-ansi: ^6.0.0 + wcwidth: ^1.0.1 + checksum: 28d476ee6c1049d68368c0dc922e7225e3b5600c3ede88fade8052837f9ed342625fdaa84a6209302587c8ddd9b664f71f0759833cbdb3a4cf81344057e63c63 + languageName: node + linkType: hard + "os-browserify@npm:^0.3.0": version: 0.3.0 resolution: "os-browserify@npm:0.3.0" @@ -9038,6 +11185,13 @@ __metadata: languageName: node linkType: hard +"os-tmpdir@npm:~1.0.2": + version: 1.0.2 + resolution: "os-tmpdir@npm:1.0.2" + checksum: 5666560f7b9f10182548bf7013883265be33620b1c1b4a4d405c25be2636f970c5488ff3e6c48de75b55d02bde037249fe5dbfbb4c0fb7714953d56aed062e6d + languageName: node + linkType: hard + "p-finally@npm:^1.0.0": version: 1.0.0 resolution: "p-finally@npm:1.0.0" @@ -9045,6 +11199,15 @@ __metadata: languageName: node linkType: hard +"p-limit@npm:3.1.0, p-limit@npm:^3.0.2": + version: 3.1.0 + resolution: "p-limit@npm:3.1.0" + dependencies: + yocto-queue: ^0.1.0 + checksum: 7c3690c4dbf62ef625671e20b7bdf1cbc9534e83352a2780f165b0d3ceba21907e77ad63401708145ca4e25bfc51636588d89a8c0aeb715e6c37d1c066430360 + languageName: node + linkType: hard + "p-limit@npm:^2.2.0": version: 2.3.0 resolution: "p-limit@npm:2.3.0" @@ -9054,15 +11217,6 @@ __metadata: languageName: node linkType: hard -"p-limit@npm:^3.0.2": - version: 3.1.0 - resolution: "p-limit@npm:3.1.0" - dependencies: - yocto-queue: ^0.1.0 - checksum: 7c3690c4dbf62ef625671e20b7bdf1cbc9534e83352a2780f165b0d3ceba21907e77ad63401708145ca4e25bfc51636588d89a8c0aeb715e6c37d1c066430360 - languageName: node - linkType: hard - "p-locate@npm:^4.1.0": version: 4.1.0 resolution: "p-locate@npm:4.1.0" @@ -9111,6 +11265,16 @@ __metadata: languageName: node linkType: hard +"param-case@npm:^3.0.4": + version: 3.0.4 + resolution: "param-case@npm:3.0.4" + dependencies: + dot-case: ^3.0.4 + tslib: ^2.0.3 + checksum: b34227fd0f794e078776eb3aa6247442056cb47761e9cd2c4c881c86d84c64205f6a56ef0d70b41ee7d77da02c3f4ed2f88e3896a8fefe08bdfb4deca037c687 + languageName: node + linkType: hard + "parent-module@npm:^1.0.0": version: 1.0.1 resolution: "parent-module@npm:1.0.1" @@ -9134,6 +11298,17 @@ __metadata: languageName: node linkType: hard +"parse-filepath@npm:^1.0.2": + version: 1.0.2 + resolution: "parse-filepath@npm:1.0.2" + dependencies: + is-absolute: ^1.0.0 + map-cache: ^0.2.0 + path-root: ^0.1.1 + checksum: 6794c3f38d3921f0f7cc63fb1fb0c4d04cd463356ad389c8ce6726d3c50793b9005971f4138975a6d7025526058d5e65e9bfe634d0765e84c4e2571152665a69 + languageName: node + linkType: hard + "parse-json@npm:^5.2.0": version: 5.2.0 resolution: "parse-json@npm:5.2.0" @@ -9153,6 +11328,16 @@ __metadata: languageName: node linkType: hard +"pascal-case@npm:^3.1.2": + version: 3.1.2 + resolution: "pascal-case@npm:3.1.2" + dependencies: + no-case: ^3.0.4 + tslib: ^2.0.3 + checksum: ba98bfd595fc91ef3d30f4243b1aee2f6ec41c53b4546bfa3039487c367abaa182471dcfc830a1f9e1a0df00c14a370514fa2b3a1aacc68b15a460c31116873e + languageName: node + linkType: hard + "pascalcase@npm:^0.1.1": version: 0.1.1 resolution: "pascalcase@npm:0.1.1" @@ -9167,6 +11352,16 @@ __metadata: languageName: node linkType: hard +"path-case@npm:^3.0.4": + version: 3.0.4 + resolution: "path-case@npm:3.0.4" + dependencies: + dot-case: ^3.0.4 + tslib: ^2.0.3 + checksum: 61de0526222629f65038a66f63330dd22d5b54014ded6636283e1d15364da38b3cf29e4433aa3f9d8b0dba407ae2b059c23b0104a34ee789944b1bc1c5c7e06d + languageName: node + linkType: hard + "path-exists@npm:^4.0.0": version: 4.0.0 resolution: "path-exists@npm:4.0.0" @@ -9209,6 +11404,22 @@ __metadata: languageName: node linkType: hard +"path-root-regex@npm:^0.1.0": + version: 0.1.2 + resolution: "path-root-regex@npm:0.1.2" + checksum: dcd75d1f8e93faabe35a58e875b0f636839b3658ff2ad8c289463c40bc1a844debe0dab73c3398ef9dc8f6ec6c319720aff390cf4633763ddcf3cf4b1bbf7e8b + languageName: node + linkType: hard + +"path-root@npm:^0.1.1": + version: 0.1.1 + resolution: "path-root@npm:0.1.1" + dependencies: + path-root-regex: ^0.1.0 + checksum: ff88aebfc1c59ace510cc06703d67692a11530989920427625e52b66a303ca9b3d4059b0b7d0b2a73248d1ad29bcb342b8b786ec00592f3101d38a45fd3b2e08 + languageName: node + linkType: hard + "path-scurry@npm:^1.11.1": version: 1.11.1 resolution: "path-scurry@npm:1.11.1" @@ -9604,6 +11815,15 @@ __metadata: languageName: node linkType: hard +"promise@npm:^7.1.1": + version: 7.3.1 + resolution: "promise@npm:7.3.1" + dependencies: + asap: ~2.0.3 + checksum: 475bb069130179fbd27ed2ab45f26d8862376a137a57314cf53310bdd85cc986a826fd585829be97ebc0aaf10e9d8e68be1bfe5a4a0364144b1f9eedfa940cf1 + languageName: node + linkType: hard + "prop-types@npm:^15.7.2": version: 15.8.1 resolution: "prop-types@npm:15.8.1" @@ -9831,7 +12051,7 @@ __metadata: languageName: node linkType: hard -"readable-stream@npm:^3.1.1, readable-stream@npm:^3.5.0, readable-stream@npm:^3.6.0": +"readable-stream@npm:^3.1.1, readable-stream@npm:^3.4.0, readable-stream@npm:^3.5.0, readable-stream@npm:^3.6.0": version: 3.6.2 resolution: "readable-stream@npm:3.6.2" dependencies: @@ -9875,6 +12095,13 @@ __metadata: languageName: node linkType: hard +"regenerator-runtime@npm:^0.14.0": + version: 0.14.1 + resolution: "regenerator-runtime@npm:0.14.1" + checksum: 9f57c93277b5585d3c83b0cf76be47b473ae8c6d9142a46ce8b0291a04bb2cf902059f0f8445dcabb3fb7378e5fe4bb4ea1e008876343d42e46d3b484534ce38 + languageName: node + linkType: hard + "regex-not@npm:^1.0.0, regex-not@npm:^1.0.2": version: 1.0.2 resolution: "regex-not@npm:1.0.2" @@ -9912,6 +12139,38 @@ __metadata: languageName: node linkType: hard +"relay-runtime@npm:12.0.0": + version: 12.0.0 + resolution: "relay-runtime@npm:12.0.0" + dependencies: + "@babel/runtime": ^7.0.0 + fbjs: ^3.0.0 + invariant: ^2.2.4 + checksum: 51cdc8a5e04188982452ae4e7c6ac7d6375ee769130d24ce8e8f9cdd45aa7e11ecd68670f56e30dcee1b4974585e88ecce19e69a9868b80cda0db7678c3b8f0a + languageName: node + linkType: hard + +"remedial@npm:^1.0.7": + version: 1.0.8 + resolution: "remedial@npm:1.0.8" + checksum: 12df7c55eb92501d7f33cfe5f5ad12be13bb6ac0c53f494aaa9963d5a5155bb8be2143e8d5e17afa1a500ef5dc71d13642920d35350f2a31b65a9778afab6869 + languageName: node + linkType: hard + +"remove-trailing-separator@npm:^1.0.1": + version: 1.1.0 + resolution: "remove-trailing-separator@npm:1.1.0" + checksum: d3c20b5a2d987db13e1cca9385d56ecfa1641bae143b620835ac02a6b70ab88f68f117a0021838db826c57b31373d609d52e4f31aca75fc490c862732d595419 + languageName: node + linkType: hard + +"remove-trailing-spaces@npm:^1.0.6": + version: 1.0.8 + resolution: "remove-trailing-spaces@npm:1.0.8" + checksum: 81f615c5cd8dd6a5e3017dcc9af598965575d176d42ef99cfd7b894529991f464e629fd68aba089f5c6bebf5bb8070a5eee56f3b621aba55e8ef524d6a4d4f69 + languageName: node + linkType: hard + "repeat-element@npm:^1.1.2": version: 1.1.4 resolution: "repeat-element@npm:1.1.4" @@ -9947,6 +12206,13 @@ __metadata: languageName: node linkType: hard +"resolve-from@npm:5.0.0, resolve-from@npm:^5.0.0": + version: 5.0.0 + resolution: "resolve-from@npm:5.0.0" + checksum: 4ceeb9113e1b1372d0cd969f3468fa042daa1dd9527b1b6bb88acb6ab55d8b9cd65dbf18819f9f9ddf0db804990901dcdaade80a215e7b2c23daae38e64f5bdf + languageName: node + linkType: hard + "resolve-from@npm:^4.0.0": version: 4.0.0 resolution: "resolve-from@npm:4.0.0" @@ -9954,13 +12220,6 @@ __metadata: languageName: node linkType: hard -"resolve-from@npm:^5.0.0": - version: 5.0.0 - resolution: "resolve-from@npm:5.0.0" - checksum: 4ceeb9113e1b1372d0cd969f3468fa042daa1dd9527b1b6bb88acb6ab55d8b9cd65dbf18819f9f9ddf0db804990901dcdaade80a215e7b2c23daae38e64f5bdf - languageName: node - linkType: hard - "resolve-url@npm:^0.2.1": version: 0.2.1 resolution: "resolve-url@npm:0.2.1" @@ -10001,6 +12260,16 @@ __metadata: languageName: node linkType: hard +"restore-cursor@npm:^3.1.0": + version: 3.1.0 + resolution: "restore-cursor@npm:3.1.0" + dependencies: + onetime: ^5.1.0 + signal-exit: ^3.0.2 + checksum: f877dd8741796b909f2a82454ec111afb84eb45890eb49ac947d87991379406b3b83ff9673a46012fca0d7844bb989f45cc5b788254cf1a39b6b5a9659de0630 + languageName: node + linkType: hard + "ret@npm:~0.1.10": version: 0.1.15 resolution: "ret@npm:0.1.15" @@ -10029,6 +12298,13 @@ __metadata: languageName: node linkType: hard +"rfdc@npm:^1.3.0": + version: 1.4.1 + resolution: "rfdc@npm:1.4.1" + checksum: 3b05bd55062c1d78aaabfcea43840cdf7e12099968f368e9a4c3936beb744adb41cbdb315eac6d4d8c6623005d6f87fdf16d8a10e1ff3722e84afea7281c8d13 + languageName: node + linkType: hard + "rimraf@npm:^3.0.2": version: 3.0.2 resolution: "rimraf@npm:3.0.2" @@ -10134,6 +12410,13 @@ __metadata: languageName: node linkType: hard +"run-async@npm:^2.4.0": + version: 2.4.1 + resolution: "run-async@npm:2.4.1" + checksum: a2c88aa15df176f091a2878eb840e68d0bdee319d8d97bbb89112223259cebecb94bc0defd735662b83c2f7a30bed8cddb7d1674eb48ae7322dc602b22d03797 + languageName: node + linkType: hard + "run-parallel@npm:^1.1.9": version: 1.2.0 resolution: "run-parallel@npm:1.2.0" @@ -10143,6 +12426,15 @@ __metadata: languageName: node linkType: hard +"rxjs@npm:^7.5.5": + version: 7.8.1 + resolution: "rxjs@npm:7.8.1" + dependencies: + tslib: ^2.1.0 + checksum: de4b53db1063e618ec2eca0f7965d9137cabe98cf6be9272efe6c86b47c17b987383df8574861bcced18ebd590764125a901d5506082be84a8b8e364bf05f119 + languageName: node + linkType: hard + "safe-array-concat@npm:^1.1.2": version: 1.1.2 resolution: "safe-array-concat@npm:1.1.2" @@ -10203,7 +12495,7 @@ __metadata: languageName: node linkType: hard -"safer-buffer@npm:>= 2.1.2 < 3.0.0": +"safer-buffer@npm:>= 2.1.2 < 3, safer-buffer@npm:>= 2.1.2 < 3.0.0": version: 2.1.2 resolution: "safer-buffer@npm:2.1.2" checksum: cab8f25ae6f1434abee8d80023d7e72b598cf1327164ddab31003c51215526801e40b66c5e65d658a0af1e9d6478cadcb4c745f4bd6751f97d8644786c0978b0 @@ -10239,6 +12531,22 @@ __metadata: languageName: node linkType: hard +"scuid@npm:^1.1.0": + version: 1.1.0 + resolution: "scuid@npm:1.1.0" + checksum: cd094ac3718b0070a222f9a499b280c698fdea10268cc163fa244421099544c1766dd893fdee0e2a8eba5d53ab9d0bcb11067bedff166665030fa6fda25a096b + languageName: node + linkType: hard + +"semver@npm:^6.3.1": + version: 6.3.1 + resolution: "semver@npm:6.3.1" + bin: + semver: bin/semver.js + checksum: ae47d06de28836adb9d3e25f22a92943477371292d9b665fb023fae278d345d508ca1958232af086d85e0155aee22e313e100971898bbb8d5d89b8b1d4054ca2 + languageName: node + linkType: hard + "semver@npm:^7.3.4, semver@npm:^7.3.5, semver@npm:^7.3.6, semver@npm:^7.3.7, semver@npm:^7.3.8, semver@npm:^7.5.0, semver@npm:^7.5.4, semver@npm:^7.6.0, semver@npm:^7.6.3": version: 7.6.3 resolution: "semver@npm:7.6.3" @@ -10248,6 +12556,17 @@ __metadata: languageName: node linkType: hard +"sentence-case@npm:^3.0.4": + version: 3.0.4 + resolution: "sentence-case@npm:3.0.4" + dependencies: + no-case: ^3.0.4 + tslib: ^2.0.3 + upper-case-first: ^2.0.2 + checksum: 3cfe6c0143e649132365695706702d7f729f484fa7b25f43435876efe7af2478243eefb052bacbcce10babf9319fd6b5b6bc59b94c80a1c819bcbb40651465d5 + languageName: node + linkType: hard + "set-blocking@npm:^2.0.0": version: 2.0.0 resolution: "set-blocking@npm:2.0.0" @@ -10293,7 +12612,7 @@ __metadata: languageName: node linkType: hard -"setimmediate@npm:^1.0.4": +"setimmediate@npm:^1.0.4, setimmediate@npm:^1.0.5": version: 1.0.5 resolution: "setimmediate@npm:1.0.5" checksum: c9a6f2c5b51a2dabdc0247db9c46460152ffc62ee139f3157440bd48e7c59425093f42719ac1d7931f054f153e2d26cf37dfeb8da17a794a58198a2705e527fd @@ -10344,6 +12663,13 @@ __metadata: languageName: node linkType: hard +"shell-quote@npm:^1.7.3": + version: 1.8.1 + resolution: "shell-quote@npm:1.8.1" + checksum: 5f01201f4ef504d4c6a9d0d283fa17075f6770bfbe4c5850b074974c68062f37929ca61700d95ad2ac8822e14e8c4b990ca0e6e9272e64befd74ce5e19f0736b + languageName: node + linkType: hard + "side-channel@npm:^1.0.4, side-channel@npm:^1.0.6": version: 1.0.6 resolution: "side-channel@npm:1.0.6" @@ -10356,7 +12682,7 @@ __metadata: languageName: node linkType: hard -"signal-exit@npm:^3.0.0": +"signal-exit@npm:^3.0.0, signal-exit@npm:^3.0.2": version: 3.0.7 resolution: "signal-exit@npm:3.0.7" checksum: a2f098f247adc367dffc27845853e9959b9e88b01cb301658cfe4194352d8d2bb32e18467c786a7fe15f1d44b233ea35633d076d5e737870b7139949d1ab6318 @@ -10370,6 +12696,13 @@ __metadata: languageName: node linkType: hard +"signedsource@npm:^1.0.0": + version: 1.0.0 + resolution: "signedsource@npm:1.0.0" + checksum: 64b2c8d7a48de9009cfd3aff62bb7c88abf3b8e0421f17ebb1d7f5ca9cc9c3ad10f5a1e3ae6cd804e4e6121c87b668202ae9057065f058ddfbf34ea65f63945d + languageName: node + linkType: hard + "slash@npm:^3.0.0": version: 3.0.0 resolution: "slash@npm:3.0.0" @@ -10377,6 +12710,17 @@ __metadata: languageName: node linkType: hard +"slice-ansi@npm:^3.0.0": + version: 3.0.0 + resolution: "slice-ansi@npm:3.0.0" + dependencies: + ansi-styles: ^4.0.0 + astral-regex: ^2.0.0 + is-fullwidth-code-point: ^3.0.0 + checksum: 5ec6d022d12e016347e9e3e98a7eb2a592213a43a65f1b61b74d2c78288da0aded781f665807a9f3876b9daa9ad94f64f77d7633a0458876c3a4fdc4eb223f24 + languageName: node + linkType: hard + "slice-ansi@npm:^4.0.0": version: 4.0.0 resolution: "slice-ansi@npm:4.0.0" @@ -10395,6 +12739,16 @@ __metadata: languageName: node linkType: hard +"snake-case@npm:^3.0.4": + version: 3.0.4 + resolution: "snake-case@npm:3.0.4" + dependencies: + dot-case: ^3.0.4 + tslib: ^2.0.3 + checksum: 0a7a79900bbb36f8aaa922cf111702a3647ac6165736d5dc96d3ef367efc50465cac70c53cd172c382b022dac72ec91710608e5393de71f76d7142e6fd80e8a3 + languageName: node + linkType: hard + "snapdragon-node@npm:^2.0.1": version: 2.1.1 resolution: "snapdragon-node@npm:2.1.1" @@ -10573,6 +12927,15 @@ __metadata: languageName: node linkType: hard +"sponge-case@npm:^1.0.1": + version: 1.0.1 + resolution: "sponge-case@npm:1.0.1" + dependencies: + tslib: ^2.0.3 + checksum: 64f53d930f63c5a9e59d4cae487c1ffa87d25eab682833b01d572cc885e7e3fdbad4f03409a41f03ecb27f1f8959432253eb48332c7007c3388efddb24ba2792 + languageName: node + linkType: hard + "sprintf-js@npm:^1.1.3": version: 1.1.3 resolution: "sprintf-js@npm:1.1.3" @@ -10658,6 +13021,13 @@ __metadata: languageName: node linkType: hard +"streamsearch@npm:^1.1.0": + version: 1.1.0 + resolution: "streamsearch@npm:1.1.0" + checksum: 1cce16cea8405d7a233d32ca5e00a00169cc0e19fbc02aa839959985f267335d435c07f96e5e0edd0eadc6d39c98d5435fb5bbbdefc62c41834eadc5622ad942 + languageName: node + linkType: hard + "strict-uri-encode@npm:^1.0.0": version: 1.1.0 resolution: "strict-uri-encode@npm:1.1.0" @@ -10672,6 +13042,13 @@ __metadata: languageName: node linkType: hard +"string-env-interpolation@npm:^1.0.1": + version: 1.0.1 + resolution: "string-env-interpolation@npm:1.0.1" + checksum: d126329587f635bee65300e4451e7352b9b67e03daeb62f006ca84244cac12a1f6e45176b018653ba0c3ec3b5d980f9ca59d2eeed99cf799501cdaa7f871dc6f + languageName: node + linkType: hard + "string-format@npm:^2.0.0": version: 2.0.0 resolution: "string-format@npm:2.0.0" @@ -11110,6 +13487,15 @@ __metadata: languageName: node linkType: hard +"swap-case@npm:^2.0.2": + version: 2.0.2 + resolution: "swap-case@npm:2.0.2" + dependencies: + tslib: ^2.0.3 + checksum: 6e21c9e1b3cd5735eb2af679a99ec3efc78a14e3d4d5e3fd594e254b91cfd37185b3d1c6e41b22f53a2cdf5d1b963ce30c0fe8b78337e3fd43d0137084670a5f + languageName: node + linkType: hard + "symbol-observable@npm:^4.0.0": version: 4.0.0 resolution: "symbol-observable@npm:4.0.0" @@ -11188,6 +13574,13 @@ __metadata: languageName: node linkType: hard +"through@npm:^2.3.6, through@npm:^2.3.8": + version: 2.3.8 + resolution: "through@npm:2.3.8" + checksum: a38c3e059853c494af95d50c072b83f8b676a9ba2818dcc5b108ef252230735c54e0185437618596c790bbba8fcdaef5b290405981ffa09dce67b1f1bf190cbd + languageName: node + linkType: hard + "timers-browserify@npm:^2.0.4": version: 2.0.12 resolution: "timers-browserify@npm:2.0.12" @@ -11211,6 +13604,24 @@ __metadata: languageName: node linkType: hard +"title-case@npm:^3.0.3": + version: 3.0.3 + resolution: "title-case@npm:3.0.3" + dependencies: + tslib: ^2.0.3 + checksum: e8b7ea006b53cf3208d278455d9f1e22c409459d7f9878da324fa3b18cc0aef8560924c19c744e870394a5d9cddfdbe029ebae9875909ee7f4fc562e7cbfc53e + languageName: node + linkType: hard + +"tmp@npm:^0.0.33": + version: 0.0.33 + resolution: "tmp@npm:0.0.33" + dependencies: + os-tmpdir: ~1.0.2 + checksum: 902d7aceb74453ea02abbf58c203f4a8fc1cead89b60b31e354f74ed5b3fb09ea817f94fb310f884a5d16987dd9fa5a735412a7c2dd088dd3d415aa819ae3a28 + languageName: node + linkType: hard + "to-fast-properties@npm:^2.0.0": version: 2.0.0 resolution: "to-fast-properties@npm:2.0.0" @@ -11338,6 +13749,13 @@ __metadata: languageName: node linkType: hard +"ts-log@npm:^2.2.3": + version: 2.2.7 + resolution: "ts-log@npm:2.2.7" + checksum: c423a5eb54abb9471578902953814d3d0c88b3f237db016998f8998ecf982cb0f748bb8ebf93670eeba9b836ff0ce407d8065a340f3ab218ea7b9442c255b3d4 + languageName: node + linkType: hard + "tslib@npm:1.14.1, tslib@npm:^1.8.1": version: 1.14.1 resolution: "tslib@npm:1.14.1" @@ -11352,6 +13770,20 @@ __metadata: languageName: node linkType: hard +"tslib@npm:^2.0.3, tslib@npm:^2.4.0, tslib@npm:^2.6.3": + version: 2.8.1 + resolution: "tslib@npm:2.8.1" + checksum: e4aba30e632b8c8902b47587fd13345e2827fa639e7c3121074d5ee0880723282411a8838f830b55100cbe4517672f84a2472667d355b81e8af165a55dc6203a + languageName: node + linkType: hard + +"tslib@npm:~2.6.0": + version: 2.6.3 + resolution: "tslib@npm:2.6.3" + checksum: 74fce0e100f1ebd95b8995fbbd0e6c91bdd8f4c35c00d4da62e285a3363aaa534de40a80db30ecfd388ed7c313c42d930ee0eaf108e8114214b180eec3dbe6f5 + languageName: node + linkType: hard + "tsutils@npm:^3.21.0": version: 3.21.0 resolution: "tsutils@npm:3.21.0" @@ -11529,6 +13961,15 @@ __metadata: languageName: node linkType: hard +"ua-parser-js@npm:^1.0.35": + version: 1.0.39 + resolution: "ua-parser-js@npm:1.0.39" + bin: + ua-parser-js: script/cli.js + checksum: 19455df8c2348ef53f2e150e7406d3a025a619c2fd69722a1e63363d5ba8d91731ef7585f2dce7d8f14c8782734b4d704c05f246dca5f7565b5ae7d318084f2a + languageName: node + linkType: hard + "ufo@npm:^1.5.4": version: 1.5.4 resolution: "ufo@npm:1.5.4" @@ -11557,6 +13998,13 @@ __metadata: languageName: node linkType: hard +"unc-path-regex@npm:^0.1.2": + version: 0.1.2 + resolution: "unc-path-regex@npm:0.1.2" + checksum: a05fa2006bf4606051c10fc7968f08ce7b28fa646befafa282813aeb1ac1a56f65cb1b577ca7851af2726198d59475bb49b11776036257b843eaacee2860a4ec + languageName: node + linkType: hard + "uncrypto@npm:^0.1.3": version: 0.1.3 resolution: "uncrypto@npm:0.1.3" @@ -11635,6 +14083,15 @@ __metadata: languageName: node linkType: hard +"unixify@npm:^1.0.0": + version: 1.0.0 + resolution: "unixify@npm:1.0.0" + dependencies: + normalize-path: ^2.1.1 + checksum: 3be30e48579fc6c7390bd59b4ab9e745fede0c164dfb7351cf710bd1dbef8484b1441186205af6bcb13b731c0c88caf9b33459f7bf8c89e79c046e656ae433f0 + languageName: node + linkType: hard + "unset-value@npm:^1.0.0": version: 1.0.0 resolution: "unset-value@npm:1.0.0" @@ -11717,6 +14174,38 @@ __metadata: languageName: node linkType: hard +"update-browserslist-db@npm:^1.1.1": + version: 1.1.1 + resolution: "update-browserslist-db@npm:1.1.1" + dependencies: + escalade: ^3.2.0 + picocolors: ^1.1.0 + peerDependencies: + browserslist: ">= 4.21.0" + bin: + update-browserslist-db: cli.js + checksum: 2ea11bd2562122162c3e438d83a1f9125238c0844b6d16d366e3276d0c0acac6036822dc7df65fc5a89c699cdf9f174acf439c39bedf3f9a2f3983976e4b4c3e + languageName: node + linkType: hard + +"upper-case-first@npm:^2.0.2": + version: 2.0.2 + resolution: "upper-case-first@npm:2.0.2" + dependencies: + tslib: ^2.0.3 + checksum: 4487db4701effe3b54ced4b3e4aa4d9ab06c548f97244d04aafb642eedf96a76d5a03cf5f38f10f415531d5792d1ac6e1b50f2a76984dc6964ad530f12876409 + languageName: node + linkType: hard + +"upper-case@npm:^2.0.2": + version: 2.0.2 + resolution: "upper-case@npm:2.0.2" + dependencies: + tslib: ^2.0.3 + checksum: 508723a2b03ab90cf1d6b7e0397513980fab821cbe79c87341d0e96cedefadf0d85f9d71eac24ab23f526a041d585a575cfca120a9f920e44eb4f8a7cf89121c + languageName: node + linkType: hard + "uqr@npm:^0.1.2": version: 0.1.2 resolution: "uqr@npm:0.1.2" @@ -11750,6 +14239,13 @@ __metadata: languageName: node linkType: hard +"urlpattern-polyfill@npm:^10.0.0": + version: 10.0.0 + resolution: "urlpattern-polyfill@npm:10.0.0" + checksum: 61d890f151ea4ecf34a3dcab32c65ad1f3cda857c9d154af198260c6e5b2ad96d024593409baaa6d4428dd1ab206c14799bf37fe011117ac93a6a44913ac5aa4 + languageName: node + linkType: hard + "use-sync-external-store@npm:1.2.0": version: 1.2.0 resolution: "use-sync-external-store@npm:1.2.0" @@ -11830,6 +14326,13 @@ __metadata: languageName: node linkType: hard +"value-or-promise@npm:^1.0.11, value-or-promise@npm:^1.0.12": + version: 1.0.12 + resolution: "value-or-promise@npm:1.0.12" + checksum: f53a66c75b7447c90bbaf946a757ca09c094629cb80ba742f59c980ec3a69be0a385a0e75505dedb4e757862f1a994ca4beaf083a831f24d3ffb3d4bb18cd1e1 + languageName: node + linkType: hard + "vary@npm:^1": version: 1.1.2 resolution: "vary@npm:1.1.2" @@ -12159,6 +14662,15 @@ __metadata: languageName: node linkType: hard +"wcwidth@npm:^1.0.1": + version: 1.0.1 + resolution: "wcwidth@npm:1.0.1" + dependencies: + defaults: ^1.0.3 + checksum: 814e9d1ddcc9798f7377ffa448a5a3892232b9275ebb30a41b529607691c0491de47cba426e917a4d08ded3ee7e9ba2f3fe32e62ee3cd9c7d3bafb7754bd553c + languageName: node + linkType: hard + "web3-utils@npm:^1.3.4": version: 1.10.4 resolution: "web3-utils@npm:1.10.4" @@ -12286,7 +14798,7 @@ __metadata: languageName: node linkType: hard -"wrap-ansi@npm:^6.2.0": +"wrap-ansi@npm:^6.0.1, wrap-ansi@npm:^6.2.0": version: 6.2.0 resolution: "wrap-ansi@npm:6.2.0" dependencies: @@ -12355,6 +14867,21 @@ __metadata: languageName: node linkType: hard +"ws@npm:^8.17.1": + version: 8.18.0 + resolution: "ws@npm:8.18.0" + peerDependencies: + bufferutil: ^4.0.1 + utf-8-validate: ">=5.0.2" + peerDependenciesMeta: + bufferutil: + optional: true + utf-8-validate: + optional: true + checksum: 91d4d35bc99ff6df483bdf029b9ea4bfd7af1f16fc91231a96777a63d263e1eabf486e13a2353970efc534f9faa43bdbf9ee76525af22f4752cbc5ebda333975 + languageName: node + linkType: hard + "xml-name-validator@npm:^4.0.0": version: 4.0.0 resolution: "xml-name-validator@npm:4.0.0" @@ -12390,6 +14917,13 @@ __metadata: languageName: node linkType: hard +"yallist@npm:^3.0.2": + version: 3.1.1 + resolution: "yallist@npm:3.1.1" + checksum: 48f7bb00dc19fc635a13a39fe547f527b10c9290e7b3e836b9a8f1ca04d4d342e85714416b3c2ab74949c9c66f9cebb0473e6bc353b79035356103b47641285d + languageName: node + linkType: hard + "yallist@npm:^4.0.0": version: 4.0.0 resolution: "yallist@npm:4.0.0" @@ -12397,6 +14931,22 @@ __metadata: languageName: node linkType: hard +"yaml-ast-parser@npm:^0.0.43": + version: 0.0.43 + resolution: "yaml-ast-parser@npm:0.0.43" + checksum: fb5df4c067b6ccbd00953a46faf6ff27f0e290d623c712dc41f330251118f110e22cfd184bbff498bd969cbcda3cd27e0f9d0adb9e6d90eb60ccafc0d8e28077 + languageName: node + linkType: hard + +"yaml@npm:^2.3.1": + version: 2.6.1 + resolution: "yaml@npm:2.6.1" + bin: + yaml: bin.mjs + checksum: 5cf2627f121dcf04ccdebce8e6cbac7c9983d465c4eab314f6fbdc13cda8a07f4e8f9c2252a382b30bcabe05ee3c683647293afd52eb37cbcefbdc7b6ebde9ee + languageName: node + linkType: hard + "yargs-parser@npm:^18.1.2": version: 18.1.3 resolution: "yargs-parser@npm:18.1.3" @@ -12440,7 +14990,7 @@ __metadata: languageName: node linkType: hard -"yargs@npm:^17.5.1": +"yargs@npm:^17.0.0, yargs@npm:^17.5.1": version: 17.7.2 resolution: "yargs@npm:17.7.2" dependencies: