@seedprotocol/eas 0.5.2 → 0.5.3

This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
package/dist/index.js.map CHANGED
@@ -1 +1 @@
1
- {"version":3,"file":"index.js","names":[],"sources":["../src/utils.ts","../src/easPropertyCanonical.ts","../src/easRevokedFilter.ts","../src/graphql/gql/graphql.ts","../src/graphql/gql/gql.ts","../src/queries.ts","../src/api.ts","../src/easUid.ts","../src/stores/schemaUidCache.ts"],"sourcesContent":["import { keccak256 } from 'js-sha3'\n\nexport const toSnakeCase = (str: string): string =>\n str.replace(/([a-z])([A-Z])/g, '$1_$2').toLowerCase()\n\n/** EIP-55 checksum for a 20-byte hex address (with or without 0x prefix). */\nexport function checksumAddress(address: string): string {\n const addr = address.toLowerCase().replace(/^0x/, '')\n if (addr.length !== 40 || !/^[0-9a-f]+$/.test(addr)) {\n return address\n }\n const hash = keccak256(addr)\n let result = '0x'\n for (let i = 0; i < 40; i++) {\n result += parseInt(hash[i]!, 16) >= 8 ? addr[i]!.toUpperCase() : addr[i]!\n }\n return result\n}\n","/**\n * When multiple property attestations exist for the same Version (refUID) and schema\n * (e.g. after a same-Version patch publish), the canonical value is the **newest**\n * non-revoked attestation: greatest `timeCreated` per `(refUID, schemaId)`.\n *\n * Use this after `getItemPropertiesFromEas` (or any flat list) before displaying\n * values or writing to DB so duplicate schemas resolve to one row.\n */\nexport type AttestationLikeForCanonical = {\n schemaId?: string | null\n timeCreated?: number | null\n refUID?: string | null\n}\n\nexport function pickLatestPropertyAttestationsByRefAndSchema<\n T extends AttestationLikeForCanonical,\n>(attestations: T[]): T[] {\n const byKey = new Map<string, T>()\n for (const att of attestations) {\n const sid = att.schemaId\n if (!sid) continue\n const key = `${att.refUID ?? ''}:${sid}`\n const existing = byKey.get(key)\n const t = att.timeCreated ?? 0\n const t0 = existing?.timeCreated ?? 0\n if (!existing || t > t0) {\n byKey.set(key, att)\n }\n }\n return [...byKey.values()]\n}\n","/**\n * Merges `revoked: { equals: false }` into an EAS AttestationWhereInput\n * so revoked attestations are excluded from discovery/feed queries.\n *\n * Uses AND to combine with existing conditions without overwriting them.\n */\nexport function withExcludeRevokedFilter<T extends Record<string, unknown>>(\n where: T,\n): T & { AND?: unknown[] } {\n const revokedFilter = { revoked: { equals: false } }\n const existingAnd = Array.isArray(where.AND) ? where.AND : []\n return {\n ...where,\n AND: [...existingAnd, revokedFilter],\n } as T & { AND: unknown[] }\n}\n","/* eslint-disable */\nimport { TypedDocumentNode as DocumentNode } from '@graphql-typed-document-node/core';\nexport type Maybe<T> = T | null;\nexport type InputMaybe<T> = T | null | undefined;\nexport type Exact<T extends { [key: string]: unknown }> = { [K in keyof T]: T[K] };\nexport type MakeOptional<T, K extends keyof T> = Omit<T, K> & { [SubKey in K]?: Maybe<T[SubKey]> };\nexport type MakeMaybe<T, K extends keyof T> = Omit<T, K> & { [SubKey in K]: Maybe<T[SubKey]> };\nexport type MakeEmpty<T extends { [key: string]: unknown }, K extends keyof T> = { [_ in K]?: never };\nexport type Incremental<T> = T | { [P in keyof T]?: P extends ' $fragmentName' | '__typename' ? T[P] : never };\n/** All built-in and custom scalars, mapped to their actual values */\nexport type Scalars = {\n ID: { input: string; output: string; }\n String: { input: string; output: string; }\n Boolean: { input: boolean; output: boolean; }\n Int: { input: number; output: number; }\n Float: { input: number; output: number; }\n};\n\nexport type AffectedRowsOutput = {\n __typename?: 'AffectedRowsOutput';\n count: Scalars['Int']['output'];\n};\n\nexport type AggregateAttestation = {\n __typename?: 'AggregateAttestation';\n _avg?: Maybe<AttestationAvgAggregate>;\n _count?: Maybe<AttestationCountAggregate>;\n _max?: Maybe<AttestationMaxAggregate>;\n _min?: Maybe<AttestationMinAggregate>;\n _sum?: Maybe<AttestationSumAggregate>;\n};\n\nexport type AggregateEnsName = {\n __typename?: 'AggregateEnsName';\n _avg?: Maybe<EnsNameAvgAggregate>;\n _count?: Maybe<EnsNameCountAggregate>;\n _max?: Maybe<EnsNameMaxAggregate>;\n _min?: Maybe<EnsNameMinAggregate>;\n _sum?: Maybe<EnsNameSumAggregate>;\n};\n\nexport type AggregateOffchainRevocation = {\n __typename?: 'AggregateOffchainRevocation';\n _avg?: Maybe<OffchainRevocationAvgAggregate>;\n _count?: Maybe<OffchainRevocationCountAggregate>;\n _max?: Maybe<OffchainRevocationMaxAggregate>;\n _min?: Maybe<OffchainRevocationMinAggregate>;\n _sum?: Maybe<OffchainRevocationSumAggregate>;\n};\n\nexport type AggregateSchema = {\n __typename?: 'AggregateSchema';\n _avg?: Maybe<SchemaAvgAggregate>;\n _count?: Maybe<SchemaCountAggregate>;\n _max?: Maybe<SchemaMaxAggregate>;\n _min?: Maybe<SchemaMinAggregate>;\n _sum?: Maybe<SchemaSumAggregate>;\n};\n\nexport type AggregateSchemaName = {\n __typename?: 'AggregateSchemaName';\n _avg?: Maybe<SchemaNameAvgAggregate>;\n _count?: Maybe<SchemaNameCountAggregate>;\n _max?: Maybe<SchemaNameMaxAggregate>;\n _min?: Maybe<SchemaNameMinAggregate>;\n _sum?: Maybe<SchemaNameSumAggregate>;\n};\n\nexport type AggregateServiceStat = {\n __typename?: 'AggregateServiceStat';\n _count?: Maybe<ServiceStatCountAggregate>;\n _max?: Maybe<ServiceStatMaxAggregate>;\n _min?: Maybe<ServiceStatMinAggregate>;\n};\n\nexport type AggregateTimestamp = {\n __typename?: 'AggregateTimestamp';\n _avg?: Maybe<TimestampAvgAggregate>;\n _count?: Maybe<TimestampCountAggregate>;\n _max?: Maybe<TimestampMaxAggregate>;\n _min?: Maybe<TimestampMinAggregate>;\n _sum?: Maybe<TimestampSumAggregate>;\n};\n\nexport type Attestation = {\n __typename?: 'Attestation';\n attester: Scalars['String']['output'];\n data: Scalars['String']['output'];\n decodedDataJson: Scalars['String']['output'];\n expirationTime: Scalars['Int']['output'];\n id: Scalars['String']['output'];\n ipfsHash: Scalars['String']['output'];\n isOffchain: Scalars['Boolean']['output'];\n recipient: Scalars['String']['output'];\n refUID: Scalars['String']['output'];\n revocable: Scalars['Boolean']['output'];\n revocationTime: Scalars['Int']['output'];\n revoked: Scalars['Boolean']['output'];\n schema: Schema;\n schemaId: Scalars['String']['output'];\n time: Scalars['Int']['output'];\n timeCreated: Scalars['Int']['output'];\n txid: Scalars['String']['output'];\n};\n\nexport type AttestationAvgAggregate = {\n __typename?: 'AttestationAvgAggregate';\n expirationTime?: Maybe<Scalars['Float']['output']>;\n revocationTime?: Maybe<Scalars['Float']['output']>;\n time?: Maybe<Scalars['Float']['output']>;\n timeCreated?: Maybe<Scalars['Float']['output']>;\n};\n\nexport type AttestationAvgOrderByAggregateInput = {\n expirationTime?: InputMaybe<SortOrder>;\n revocationTime?: InputMaybe<SortOrder>;\n time?: InputMaybe<SortOrder>;\n timeCreated?: InputMaybe<SortOrder>;\n};\n\nexport type AttestationCountAggregate = {\n __typename?: 'AttestationCountAggregate';\n _all: Scalars['Int']['output'];\n attester: Scalars['Int']['output'];\n data: Scalars['Int']['output'];\n decodedDataJson: Scalars['Int']['output'];\n expirationTime: Scalars['Int']['output'];\n id: Scalars['Int']['output'];\n ipfsHash: Scalars['Int']['output'];\n isOffchain: Scalars['Int']['output'];\n recipient: Scalars['Int']['output'];\n refUID: Scalars['Int']['output'];\n revocable: Scalars['Int']['output'];\n revocationTime: Scalars['Int']['output'];\n revoked: Scalars['Int']['output'];\n schemaId: Scalars['Int']['output'];\n time: Scalars['Int']['output'];\n timeCreated: Scalars['Int']['output'];\n txid: Scalars['Int']['output'];\n};\n\nexport type AttestationCountOrderByAggregateInput = {\n attester?: InputMaybe<SortOrder>;\n data?: InputMaybe<SortOrder>;\n decodedDataJson?: InputMaybe<SortOrder>;\n expirationTime?: InputMaybe<SortOrder>;\n id?: InputMaybe<SortOrder>;\n ipfsHash?: InputMaybe<SortOrder>;\n isOffchain?: InputMaybe<SortOrder>;\n recipient?: InputMaybe<SortOrder>;\n refUID?: InputMaybe<SortOrder>;\n revocable?: InputMaybe<SortOrder>;\n revocationTime?: InputMaybe<SortOrder>;\n revoked?: InputMaybe<SortOrder>;\n schemaId?: InputMaybe<SortOrder>;\n time?: InputMaybe<SortOrder>;\n timeCreated?: InputMaybe<SortOrder>;\n txid?: InputMaybe<SortOrder>;\n};\n\nexport type AttestationCreateInput = {\n attester: Scalars['String']['input'];\n data: Scalars['String']['input'];\n decodedDataJson?: InputMaybe<Scalars['String']['input']>;\n expirationTime: Scalars['Int']['input'];\n id: Scalars['String']['input'];\n ipfsHash: Scalars['String']['input'];\n isOffchain: Scalars['Boolean']['input'];\n recipient: Scalars['String']['input'];\n refUID: Scalars['String']['input'];\n revocable: Scalars['Boolean']['input'];\n revocationTime: Scalars['Int']['input'];\n revoked: Scalars['Boolean']['input'];\n schema: SchemaCreateNestedOneWithoutAttestationsInput;\n time: Scalars['Int']['input'];\n timeCreated: Scalars['Int']['input'];\n txid: Scalars['String']['input'];\n};\n\nexport type AttestationCreateManyInput = {\n attester: Scalars['String']['input'];\n data: Scalars['String']['input'];\n decodedDataJson?: InputMaybe<Scalars['String']['input']>;\n expirationTime: Scalars['Int']['input'];\n id: Scalars['String']['input'];\n ipfsHash: Scalars['String']['input'];\n isOffchain: Scalars['Boolean']['input'];\n recipient: Scalars['String']['input'];\n refUID: Scalars['String']['input'];\n revocable: Scalars['Boolean']['input'];\n revocationTime: Scalars['Int']['input'];\n revoked: Scalars['Boolean']['input'];\n schemaId: Scalars['String']['input'];\n time: Scalars['Int']['input'];\n timeCreated: Scalars['Int']['input'];\n txid: Scalars['String']['input'];\n};\n\nexport type AttestationCreateManySchemaInput = {\n attester: Scalars['String']['input'];\n data: Scalars['String']['input'];\n decodedDataJson?: InputMaybe<Scalars['String']['input']>;\n expirationTime: Scalars['Int']['input'];\n id: Scalars['String']['input'];\n ipfsHash: Scalars['String']['input'];\n isOffchain: Scalars['Boolean']['input'];\n recipient: Scalars['String']['input'];\n refUID: Scalars['String']['input'];\n revocable: Scalars['Boolean']['input'];\n revocationTime: Scalars['Int']['input'];\n revoked: Scalars['Boolean']['input'];\n time: Scalars['Int']['input'];\n timeCreated: Scalars['Int']['input'];\n txid: Scalars['String']['input'];\n};\n\nexport type AttestationCreateManySchemaInputEnvelope = {\n data: Array<AttestationCreateManySchemaInput>;\n skipDuplicates?: InputMaybe<Scalars['Boolean']['input']>;\n};\n\nexport type AttestationCreateNestedManyWithoutSchemaInput = {\n connect?: InputMaybe<Array<AttestationWhereUniqueInput>>;\n connectOrCreate?: InputMaybe<Array<AttestationCreateOrConnectWithoutSchemaInput>>;\n create?: InputMaybe<Array<AttestationCreateWithoutSchemaInput>>;\n createMany?: InputMaybe<AttestationCreateManySchemaInputEnvelope>;\n};\n\nexport type AttestationCreateOrConnectWithoutSchemaInput = {\n create: AttestationCreateWithoutSchemaInput;\n where: AttestationWhereUniqueInput;\n};\n\nexport type AttestationCreateWithoutSchemaInput = {\n attester: Scalars['String']['input'];\n data: Scalars['String']['input'];\n decodedDataJson?: InputMaybe<Scalars['String']['input']>;\n expirationTime: Scalars['Int']['input'];\n id: Scalars['String']['input'];\n ipfsHash: Scalars['String']['input'];\n isOffchain: Scalars['Boolean']['input'];\n recipient: Scalars['String']['input'];\n refUID: Scalars['String']['input'];\n revocable: Scalars['Boolean']['input'];\n revocationTime: Scalars['Int']['input'];\n revoked: Scalars['Boolean']['input'];\n time: Scalars['Int']['input'];\n timeCreated: Scalars['Int']['input'];\n txid: Scalars['String']['input'];\n};\n\nexport type AttestationGroupBy = {\n __typename?: 'AttestationGroupBy';\n _avg?: Maybe<AttestationAvgAggregate>;\n _count?: Maybe<AttestationCountAggregate>;\n _max?: Maybe<AttestationMaxAggregate>;\n _min?: Maybe<AttestationMinAggregate>;\n _sum?: Maybe<AttestationSumAggregate>;\n attester: Scalars['String']['output'];\n data: Scalars['String']['output'];\n decodedDataJson: Scalars['String']['output'];\n expirationTime: Scalars['Int']['output'];\n id: Scalars['String']['output'];\n ipfsHash: Scalars['String']['output'];\n isOffchain: Scalars['Boolean']['output'];\n recipient: Scalars['String']['output'];\n refUID: Scalars['String']['output'];\n revocable: Scalars['Boolean']['output'];\n revocationTime: Scalars['Int']['output'];\n revoked: Scalars['Boolean']['output'];\n schemaId: Scalars['String']['output'];\n time: Scalars['Int']['output'];\n timeCreated: Scalars['Int']['output'];\n txid: Scalars['String']['output'];\n};\n\nexport type AttestationListRelationFilter = {\n every?: InputMaybe<AttestationWhereInput>;\n none?: InputMaybe<AttestationWhereInput>;\n some?: InputMaybe<AttestationWhereInput>;\n};\n\nexport type AttestationMaxAggregate = {\n __typename?: 'AttestationMaxAggregate';\n attester?: Maybe<Scalars['String']['output']>;\n data?: Maybe<Scalars['String']['output']>;\n decodedDataJson?: Maybe<Scalars['String']['output']>;\n expirationTime?: Maybe<Scalars['Int']['output']>;\n id?: Maybe<Scalars['String']['output']>;\n ipfsHash?: Maybe<Scalars['String']['output']>;\n isOffchain?: Maybe<Scalars['Boolean']['output']>;\n recipient?: Maybe<Scalars['String']['output']>;\n refUID?: Maybe<Scalars['String']['output']>;\n revocable?: Maybe<Scalars['Boolean']['output']>;\n revocationTime?: Maybe<Scalars['Int']['output']>;\n revoked?: Maybe<Scalars['Boolean']['output']>;\n schemaId?: Maybe<Scalars['String']['output']>;\n time?: Maybe<Scalars['Int']['output']>;\n timeCreated?: Maybe<Scalars['Int']['output']>;\n txid?: Maybe<Scalars['String']['output']>;\n};\n\nexport type AttestationMaxOrderByAggregateInput = {\n attester?: InputMaybe<SortOrder>;\n data?: InputMaybe<SortOrder>;\n decodedDataJson?: InputMaybe<SortOrder>;\n expirationTime?: InputMaybe<SortOrder>;\n id?: InputMaybe<SortOrder>;\n ipfsHash?: InputMaybe<SortOrder>;\n isOffchain?: InputMaybe<SortOrder>;\n recipient?: InputMaybe<SortOrder>;\n refUID?: InputMaybe<SortOrder>;\n revocable?: InputMaybe<SortOrder>;\n revocationTime?: InputMaybe<SortOrder>;\n revoked?: InputMaybe<SortOrder>;\n schemaId?: InputMaybe<SortOrder>;\n time?: InputMaybe<SortOrder>;\n timeCreated?: InputMaybe<SortOrder>;\n txid?: InputMaybe<SortOrder>;\n};\n\nexport type AttestationMinAggregate = {\n __typename?: 'AttestationMinAggregate';\n attester?: Maybe<Scalars['String']['output']>;\n data?: Maybe<Scalars['String']['output']>;\n decodedDataJson?: Maybe<Scalars['String']['output']>;\n expirationTime?: Maybe<Scalars['Int']['output']>;\n id?: Maybe<Scalars['String']['output']>;\n ipfsHash?: Maybe<Scalars['String']['output']>;\n isOffchain?: Maybe<Scalars['Boolean']['output']>;\n recipient?: Maybe<Scalars['String']['output']>;\n refUID?: Maybe<Scalars['String']['output']>;\n revocable?: Maybe<Scalars['Boolean']['output']>;\n revocationTime?: Maybe<Scalars['Int']['output']>;\n revoked?: Maybe<Scalars['Boolean']['output']>;\n schemaId?: Maybe<Scalars['String']['output']>;\n time?: Maybe<Scalars['Int']['output']>;\n timeCreated?: Maybe<Scalars['Int']['output']>;\n txid?: Maybe<Scalars['String']['output']>;\n};\n\nexport type AttestationMinOrderByAggregateInput = {\n attester?: InputMaybe<SortOrder>;\n data?: InputMaybe<SortOrder>;\n decodedDataJson?: InputMaybe<SortOrder>;\n expirationTime?: InputMaybe<SortOrder>;\n id?: InputMaybe<SortOrder>;\n ipfsHash?: InputMaybe<SortOrder>;\n isOffchain?: InputMaybe<SortOrder>;\n recipient?: InputMaybe<SortOrder>;\n refUID?: InputMaybe<SortOrder>;\n revocable?: InputMaybe<SortOrder>;\n revocationTime?: InputMaybe<SortOrder>;\n revoked?: InputMaybe<SortOrder>;\n schemaId?: InputMaybe<SortOrder>;\n time?: InputMaybe<SortOrder>;\n timeCreated?: InputMaybe<SortOrder>;\n txid?: InputMaybe<SortOrder>;\n};\n\nexport type AttestationOrderByRelationAggregateInput = {\n _count?: InputMaybe<SortOrder>;\n};\n\nexport type AttestationOrderByWithAggregationInput = {\n _avg?: InputMaybe<AttestationAvgOrderByAggregateInput>;\n _count?: InputMaybe<AttestationCountOrderByAggregateInput>;\n _max?: InputMaybe<AttestationMaxOrderByAggregateInput>;\n _min?: InputMaybe<AttestationMinOrderByAggregateInput>;\n _sum?: InputMaybe<AttestationSumOrderByAggregateInput>;\n attester?: InputMaybe<SortOrder>;\n data?: InputMaybe<SortOrder>;\n decodedDataJson?: InputMaybe<SortOrder>;\n expirationTime?: InputMaybe<SortOrder>;\n id?: InputMaybe<SortOrder>;\n ipfsHash?: InputMaybe<SortOrder>;\n isOffchain?: InputMaybe<SortOrder>;\n recipient?: InputMaybe<SortOrder>;\n refUID?: InputMaybe<SortOrder>;\n revocable?: InputMaybe<SortOrder>;\n revocationTime?: InputMaybe<SortOrder>;\n revoked?: InputMaybe<SortOrder>;\n schemaId?: InputMaybe<SortOrder>;\n time?: InputMaybe<SortOrder>;\n timeCreated?: InputMaybe<SortOrder>;\n txid?: InputMaybe<SortOrder>;\n};\n\nexport type AttestationOrderByWithRelationInput = {\n attester?: InputMaybe<SortOrder>;\n data?: InputMaybe<SortOrder>;\n decodedDataJson?: InputMaybe<SortOrder>;\n expirationTime?: InputMaybe<SortOrder>;\n id?: InputMaybe<SortOrder>;\n ipfsHash?: InputMaybe<SortOrder>;\n isOffchain?: InputMaybe<SortOrder>;\n recipient?: InputMaybe<SortOrder>;\n refUID?: InputMaybe<SortOrder>;\n revocable?: InputMaybe<SortOrder>;\n revocationTime?: InputMaybe<SortOrder>;\n revoked?: InputMaybe<SortOrder>;\n schema?: InputMaybe<SchemaOrderByWithRelationInput>;\n schemaId?: InputMaybe<SortOrder>;\n time?: InputMaybe<SortOrder>;\n timeCreated?: InputMaybe<SortOrder>;\n txid?: InputMaybe<SortOrder>;\n};\n\nexport enum AttestationScalarFieldEnum {\n Attester = 'attester',\n Data = 'data',\n DecodedDataJson = 'decodedDataJson',\n ExpirationTime = 'expirationTime',\n Id = 'id',\n IpfsHash = 'ipfsHash',\n IsOffchain = 'isOffchain',\n Recipient = 'recipient',\n RefUid = 'refUID',\n Revocable = 'revocable',\n RevocationTime = 'revocationTime',\n Revoked = 'revoked',\n SchemaId = 'schemaId',\n Time = 'time',\n TimeCreated = 'timeCreated',\n Txid = 'txid'\n}\n\nexport type AttestationScalarWhereInput = {\n AND?: InputMaybe<Array<AttestationScalarWhereInput>>;\n NOT?: InputMaybe<Array<AttestationScalarWhereInput>>;\n OR?: InputMaybe<Array<AttestationScalarWhereInput>>;\n attester?: InputMaybe<StringFilter>;\n data?: InputMaybe<StringFilter>;\n decodedDataJson?: InputMaybe<StringFilter>;\n expirationTime?: InputMaybe<IntFilter>;\n id?: InputMaybe<StringFilter>;\n ipfsHash?: InputMaybe<StringFilter>;\n isOffchain?: InputMaybe<BoolFilter>;\n recipient?: InputMaybe<StringFilter>;\n refUID?: InputMaybe<StringFilter>;\n revocable?: InputMaybe<BoolFilter>;\n revocationTime?: InputMaybe<IntFilter>;\n revoked?: InputMaybe<BoolFilter>;\n schemaId?: InputMaybe<StringFilter>;\n time?: InputMaybe<IntFilter>;\n timeCreated?: InputMaybe<IntFilter>;\n txid?: InputMaybe<StringFilter>;\n};\n\nexport type AttestationScalarWhereWithAggregatesInput = {\n AND?: InputMaybe<Array<AttestationScalarWhereWithAggregatesInput>>;\n NOT?: InputMaybe<Array<AttestationScalarWhereWithAggregatesInput>>;\n OR?: InputMaybe<Array<AttestationScalarWhereWithAggregatesInput>>;\n attester?: InputMaybe<StringWithAggregatesFilter>;\n data?: InputMaybe<StringWithAggregatesFilter>;\n decodedDataJson?: InputMaybe<StringWithAggregatesFilter>;\n expirationTime?: InputMaybe<IntWithAggregatesFilter>;\n id?: InputMaybe<StringWithAggregatesFilter>;\n ipfsHash?: InputMaybe<StringWithAggregatesFilter>;\n isOffchain?: InputMaybe<BoolWithAggregatesFilter>;\n recipient?: InputMaybe<StringWithAggregatesFilter>;\n refUID?: InputMaybe<StringWithAggregatesFilter>;\n revocable?: InputMaybe<BoolWithAggregatesFilter>;\n revocationTime?: InputMaybe<IntWithAggregatesFilter>;\n revoked?: InputMaybe<BoolWithAggregatesFilter>;\n schemaId?: InputMaybe<StringWithAggregatesFilter>;\n time?: InputMaybe<IntWithAggregatesFilter>;\n timeCreated?: InputMaybe<IntWithAggregatesFilter>;\n txid?: InputMaybe<StringWithAggregatesFilter>;\n};\n\nexport type AttestationSumAggregate = {\n __typename?: 'AttestationSumAggregate';\n expirationTime?: Maybe<Scalars['Int']['output']>;\n revocationTime?: Maybe<Scalars['Int']['output']>;\n time?: Maybe<Scalars['Int']['output']>;\n timeCreated?: Maybe<Scalars['Int']['output']>;\n};\n\nexport type AttestationSumOrderByAggregateInput = {\n expirationTime?: InputMaybe<SortOrder>;\n revocationTime?: InputMaybe<SortOrder>;\n time?: InputMaybe<SortOrder>;\n timeCreated?: InputMaybe<SortOrder>;\n};\n\nexport type AttestationUpdateInput = {\n attester?: InputMaybe<StringFieldUpdateOperationsInput>;\n data?: InputMaybe<StringFieldUpdateOperationsInput>;\n decodedDataJson?: InputMaybe<StringFieldUpdateOperationsInput>;\n expirationTime?: InputMaybe<IntFieldUpdateOperationsInput>;\n id?: InputMaybe<StringFieldUpdateOperationsInput>;\n ipfsHash?: InputMaybe<StringFieldUpdateOperationsInput>;\n isOffchain?: InputMaybe<BoolFieldUpdateOperationsInput>;\n recipient?: InputMaybe<StringFieldUpdateOperationsInput>;\n refUID?: InputMaybe<StringFieldUpdateOperationsInput>;\n revocable?: InputMaybe<BoolFieldUpdateOperationsInput>;\n revocationTime?: InputMaybe<IntFieldUpdateOperationsInput>;\n revoked?: InputMaybe<BoolFieldUpdateOperationsInput>;\n schema?: InputMaybe<SchemaUpdateOneRequiredWithoutAttestationsNestedInput>;\n time?: InputMaybe<IntFieldUpdateOperationsInput>;\n timeCreated?: InputMaybe<IntFieldUpdateOperationsInput>;\n txid?: InputMaybe<StringFieldUpdateOperationsInput>;\n};\n\nexport type AttestationUpdateManyMutationInput = {\n attester?: InputMaybe<StringFieldUpdateOperationsInput>;\n data?: InputMaybe<StringFieldUpdateOperationsInput>;\n decodedDataJson?: InputMaybe<StringFieldUpdateOperationsInput>;\n expirationTime?: InputMaybe<IntFieldUpdateOperationsInput>;\n id?: InputMaybe<StringFieldUpdateOperationsInput>;\n ipfsHash?: InputMaybe<StringFieldUpdateOperationsInput>;\n isOffchain?: InputMaybe<BoolFieldUpdateOperationsInput>;\n recipient?: InputMaybe<StringFieldUpdateOperationsInput>;\n refUID?: InputMaybe<StringFieldUpdateOperationsInput>;\n revocable?: InputMaybe<BoolFieldUpdateOperationsInput>;\n revocationTime?: InputMaybe<IntFieldUpdateOperationsInput>;\n revoked?: InputMaybe<BoolFieldUpdateOperationsInput>;\n time?: InputMaybe<IntFieldUpdateOperationsInput>;\n timeCreated?: InputMaybe<IntFieldUpdateOperationsInput>;\n txid?: InputMaybe<StringFieldUpdateOperationsInput>;\n};\n\nexport type AttestationUpdateManyWithWhereWithoutSchemaInput = {\n data: AttestationUpdateManyMutationInput;\n where: AttestationScalarWhereInput;\n};\n\nexport type AttestationUpdateManyWithoutSchemaNestedInput = {\n connect?: InputMaybe<Array<AttestationWhereUniqueInput>>;\n connectOrCreate?: InputMaybe<Array<AttestationCreateOrConnectWithoutSchemaInput>>;\n create?: InputMaybe<Array<AttestationCreateWithoutSchemaInput>>;\n createMany?: InputMaybe<AttestationCreateManySchemaInputEnvelope>;\n delete?: InputMaybe<Array<AttestationWhereUniqueInput>>;\n deleteMany?: InputMaybe<Array<AttestationScalarWhereInput>>;\n disconnect?: InputMaybe<Array<AttestationWhereUniqueInput>>;\n set?: InputMaybe<Array<AttestationWhereUniqueInput>>;\n update?: InputMaybe<Array<AttestationUpdateWithWhereUniqueWithoutSchemaInput>>;\n updateMany?: InputMaybe<Array<AttestationUpdateManyWithWhereWithoutSchemaInput>>;\n upsert?: InputMaybe<Array<AttestationUpsertWithWhereUniqueWithoutSchemaInput>>;\n};\n\nexport type AttestationUpdateWithWhereUniqueWithoutSchemaInput = {\n data: AttestationUpdateWithoutSchemaInput;\n where: AttestationWhereUniqueInput;\n};\n\nexport type AttestationUpdateWithoutSchemaInput = {\n attester?: InputMaybe<StringFieldUpdateOperationsInput>;\n data?: InputMaybe<StringFieldUpdateOperationsInput>;\n decodedDataJson?: InputMaybe<StringFieldUpdateOperationsInput>;\n expirationTime?: InputMaybe<IntFieldUpdateOperationsInput>;\n id?: InputMaybe<StringFieldUpdateOperationsInput>;\n ipfsHash?: InputMaybe<StringFieldUpdateOperationsInput>;\n isOffchain?: InputMaybe<BoolFieldUpdateOperationsInput>;\n recipient?: InputMaybe<StringFieldUpdateOperationsInput>;\n refUID?: InputMaybe<StringFieldUpdateOperationsInput>;\n revocable?: InputMaybe<BoolFieldUpdateOperationsInput>;\n revocationTime?: InputMaybe<IntFieldUpdateOperationsInput>;\n revoked?: InputMaybe<BoolFieldUpdateOperationsInput>;\n time?: InputMaybe<IntFieldUpdateOperationsInput>;\n timeCreated?: InputMaybe<IntFieldUpdateOperationsInput>;\n txid?: InputMaybe<StringFieldUpdateOperationsInput>;\n};\n\nexport type AttestationUpsertWithWhereUniqueWithoutSchemaInput = {\n create: AttestationCreateWithoutSchemaInput;\n update: AttestationUpdateWithoutSchemaInput;\n where: AttestationWhereUniqueInput;\n};\n\nexport type AttestationWhereInput = {\n AND?: InputMaybe<Array<AttestationWhereInput>>;\n NOT?: InputMaybe<Array<AttestationWhereInput>>;\n OR?: InputMaybe<Array<AttestationWhereInput>>;\n attester?: InputMaybe<StringFilter>;\n data?: InputMaybe<StringFilter>;\n decodedDataJson?: InputMaybe<StringFilter>;\n expirationTime?: InputMaybe<IntFilter>;\n id?: InputMaybe<StringFilter>;\n ipfsHash?: InputMaybe<StringFilter>;\n isOffchain?: InputMaybe<BoolFilter>;\n recipient?: InputMaybe<StringFilter>;\n refUID?: InputMaybe<StringFilter>;\n revocable?: InputMaybe<BoolFilter>;\n revocationTime?: InputMaybe<IntFilter>;\n revoked?: InputMaybe<BoolFilter>;\n schema?: InputMaybe<SchemaRelationFilter>;\n schemaId?: InputMaybe<StringFilter>;\n time?: InputMaybe<IntFilter>;\n timeCreated?: InputMaybe<IntFilter>;\n txid?: InputMaybe<StringFilter>;\n};\n\nexport type AttestationWhereUniqueInput = {\n id?: InputMaybe<Scalars['String']['input']>;\n};\n\nexport type BoolFieldUpdateOperationsInput = {\n set?: InputMaybe<Scalars['Boolean']['input']>;\n};\n\nexport type BoolFilter = {\n equals?: InputMaybe<Scalars['Boolean']['input']>;\n not?: InputMaybe<NestedBoolFilter>;\n};\n\nexport type BoolWithAggregatesFilter = {\n _count?: InputMaybe<NestedIntFilter>;\n _max?: InputMaybe<NestedBoolFilter>;\n _min?: InputMaybe<NestedBoolFilter>;\n equals?: InputMaybe<Scalars['Boolean']['input']>;\n not?: InputMaybe<NestedBoolWithAggregatesFilter>;\n};\n\nexport type EnsName = {\n __typename?: 'EnsName';\n id: Scalars['String']['output'];\n name: Scalars['String']['output'];\n timestamp: Scalars['Int']['output'];\n};\n\nexport type EnsNameAvgAggregate = {\n __typename?: 'EnsNameAvgAggregate';\n timestamp?: Maybe<Scalars['Float']['output']>;\n};\n\nexport type EnsNameAvgOrderByAggregateInput = {\n timestamp?: InputMaybe<SortOrder>;\n};\n\nexport type EnsNameCountAggregate = {\n __typename?: 'EnsNameCountAggregate';\n _all: Scalars['Int']['output'];\n id: Scalars['Int']['output'];\n name: Scalars['Int']['output'];\n timestamp: Scalars['Int']['output'];\n};\n\nexport type EnsNameCountOrderByAggregateInput = {\n id?: InputMaybe<SortOrder>;\n name?: InputMaybe<SortOrder>;\n timestamp?: InputMaybe<SortOrder>;\n};\n\nexport type EnsNameCreateInput = {\n id: Scalars['String']['input'];\n name: Scalars['String']['input'];\n timestamp: Scalars['Int']['input'];\n};\n\nexport type EnsNameCreateManyInput = {\n id: Scalars['String']['input'];\n name: Scalars['String']['input'];\n timestamp: Scalars['Int']['input'];\n};\n\nexport type EnsNameGroupBy = {\n __typename?: 'EnsNameGroupBy';\n _avg?: Maybe<EnsNameAvgAggregate>;\n _count?: Maybe<EnsNameCountAggregate>;\n _max?: Maybe<EnsNameMaxAggregate>;\n _min?: Maybe<EnsNameMinAggregate>;\n _sum?: Maybe<EnsNameSumAggregate>;\n id: Scalars['String']['output'];\n name: Scalars['String']['output'];\n timestamp: Scalars['Int']['output'];\n};\n\nexport type EnsNameMaxAggregate = {\n __typename?: 'EnsNameMaxAggregate';\n id?: Maybe<Scalars['String']['output']>;\n name?: Maybe<Scalars['String']['output']>;\n timestamp?: Maybe<Scalars['Int']['output']>;\n};\n\nexport type EnsNameMaxOrderByAggregateInput = {\n id?: InputMaybe<SortOrder>;\n name?: InputMaybe<SortOrder>;\n timestamp?: InputMaybe<SortOrder>;\n};\n\nexport type EnsNameMinAggregate = {\n __typename?: 'EnsNameMinAggregate';\n id?: Maybe<Scalars['String']['output']>;\n name?: Maybe<Scalars['String']['output']>;\n timestamp?: Maybe<Scalars['Int']['output']>;\n};\n\nexport type EnsNameMinOrderByAggregateInput = {\n id?: InputMaybe<SortOrder>;\n name?: InputMaybe<SortOrder>;\n timestamp?: InputMaybe<SortOrder>;\n};\n\nexport type EnsNameOrderByWithAggregationInput = {\n _avg?: InputMaybe<EnsNameAvgOrderByAggregateInput>;\n _count?: InputMaybe<EnsNameCountOrderByAggregateInput>;\n _max?: InputMaybe<EnsNameMaxOrderByAggregateInput>;\n _min?: InputMaybe<EnsNameMinOrderByAggregateInput>;\n _sum?: InputMaybe<EnsNameSumOrderByAggregateInput>;\n id?: InputMaybe<SortOrder>;\n name?: InputMaybe<SortOrder>;\n timestamp?: InputMaybe<SortOrder>;\n};\n\nexport type EnsNameOrderByWithRelationInput = {\n id?: InputMaybe<SortOrder>;\n name?: InputMaybe<SortOrder>;\n timestamp?: InputMaybe<SortOrder>;\n};\n\nexport enum EnsNameScalarFieldEnum {\n Id = 'id',\n Name = 'name',\n Timestamp = 'timestamp'\n}\n\nexport type EnsNameScalarWhereWithAggregatesInput = {\n AND?: InputMaybe<Array<EnsNameScalarWhereWithAggregatesInput>>;\n NOT?: InputMaybe<Array<EnsNameScalarWhereWithAggregatesInput>>;\n OR?: InputMaybe<Array<EnsNameScalarWhereWithAggregatesInput>>;\n id?: InputMaybe<StringWithAggregatesFilter>;\n name?: InputMaybe<StringWithAggregatesFilter>;\n timestamp?: InputMaybe<IntWithAggregatesFilter>;\n};\n\nexport type EnsNameSumAggregate = {\n __typename?: 'EnsNameSumAggregate';\n timestamp?: Maybe<Scalars['Int']['output']>;\n};\n\nexport type EnsNameSumOrderByAggregateInput = {\n timestamp?: InputMaybe<SortOrder>;\n};\n\nexport type EnsNameUpdateInput = {\n id?: InputMaybe<StringFieldUpdateOperationsInput>;\n name?: InputMaybe<StringFieldUpdateOperationsInput>;\n timestamp?: InputMaybe<IntFieldUpdateOperationsInput>;\n};\n\nexport type EnsNameUpdateManyMutationInput = {\n id?: InputMaybe<StringFieldUpdateOperationsInput>;\n name?: InputMaybe<StringFieldUpdateOperationsInput>;\n timestamp?: InputMaybe<IntFieldUpdateOperationsInput>;\n};\n\nexport type EnsNameWhereInput = {\n AND?: InputMaybe<Array<EnsNameWhereInput>>;\n NOT?: InputMaybe<Array<EnsNameWhereInput>>;\n OR?: InputMaybe<Array<EnsNameWhereInput>>;\n id?: InputMaybe<StringFilter>;\n name?: InputMaybe<StringFilter>;\n timestamp?: InputMaybe<IntFilter>;\n};\n\nexport type EnsNameWhereUniqueInput = {\n id?: InputMaybe<Scalars['String']['input']>;\n};\n\nexport type IntFieldUpdateOperationsInput = {\n decrement?: InputMaybe<Scalars['Int']['input']>;\n divide?: InputMaybe<Scalars['Int']['input']>;\n increment?: InputMaybe<Scalars['Int']['input']>;\n multiply?: InputMaybe<Scalars['Int']['input']>;\n set?: InputMaybe<Scalars['Int']['input']>;\n};\n\nexport type IntFilter = {\n equals?: InputMaybe<Scalars['Int']['input']>;\n gt?: InputMaybe<Scalars['Int']['input']>;\n gte?: InputMaybe<Scalars['Int']['input']>;\n in?: InputMaybe<Array<Scalars['Int']['input']>>;\n lt?: InputMaybe<Scalars['Int']['input']>;\n lte?: InputMaybe<Scalars['Int']['input']>;\n not?: InputMaybe<NestedIntFilter>;\n notIn?: InputMaybe<Array<Scalars['Int']['input']>>;\n};\n\nexport type IntWithAggregatesFilter = {\n _avg?: InputMaybe<NestedFloatFilter>;\n _count?: InputMaybe<NestedIntFilter>;\n _max?: InputMaybe<NestedIntFilter>;\n _min?: InputMaybe<NestedIntFilter>;\n _sum?: InputMaybe<NestedIntFilter>;\n equals?: InputMaybe<Scalars['Int']['input']>;\n gt?: InputMaybe<Scalars['Int']['input']>;\n gte?: InputMaybe<Scalars['Int']['input']>;\n in?: InputMaybe<Array<Scalars['Int']['input']>>;\n lt?: InputMaybe<Scalars['Int']['input']>;\n lte?: InputMaybe<Scalars['Int']['input']>;\n not?: InputMaybe<NestedIntWithAggregatesFilter>;\n notIn?: InputMaybe<Array<Scalars['Int']['input']>>;\n};\n\nexport type Mutation = {\n __typename?: 'Mutation';\n createManyAttestation: AffectedRowsOutput;\n createManyEnsName: AffectedRowsOutput;\n createManyOffchainRevocation: AffectedRowsOutput;\n createManySchema: AffectedRowsOutput;\n createManySchemaName: AffectedRowsOutput;\n createManyServiceStat: AffectedRowsOutput;\n createManyTimestamp: AffectedRowsOutput;\n createOneAttestation: Attestation;\n createOneEnsName: EnsName;\n createOneOffchainRevocation: OffchainRevocation;\n createOneSchema: Schema;\n createOneSchemaName: SchemaName;\n createOneServiceStat: ServiceStat;\n createOneTimestamp: Timestamp;\n deleteManyAttestation: AffectedRowsOutput;\n deleteManyEnsName: AffectedRowsOutput;\n deleteManyOffchainRevocation: AffectedRowsOutput;\n deleteManySchema: AffectedRowsOutput;\n deleteManySchemaName: AffectedRowsOutput;\n deleteManyServiceStat: AffectedRowsOutput;\n deleteManyTimestamp: AffectedRowsOutput;\n deleteOneAttestation?: Maybe<Attestation>;\n deleteOneEnsName?: Maybe<EnsName>;\n deleteOneOffchainRevocation?: Maybe<OffchainRevocation>;\n deleteOneSchema?: Maybe<Schema>;\n deleteOneSchemaName?: Maybe<SchemaName>;\n deleteOneServiceStat?: Maybe<ServiceStat>;\n deleteOneTimestamp?: Maybe<Timestamp>;\n updateManyAttestation: AffectedRowsOutput;\n updateManyEnsName: AffectedRowsOutput;\n updateManyOffchainRevocation: AffectedRowsOutput;\n updateManySchema: AffectedRowsOutput;\n updateManySchemaName: AffectedRowsOutput;\n updateManyServiceStat: AffectedRowsOutput;\n updateManyTimestamp: AffectedRowsOutput;\n updateOneAttestation?: Maybe<Attestation>;\n updateOneEnsName?: Maybe<EnsName>;\n updateOneOffchainRevocation?: Maybe<OffchainRevocation>;\n updateOneSchema?: Maybe<Schema>;\n updateOneSchemaName?: Maybe<SchemaName>;\n updateOneServiceStat?: Maybe<ServiceStat>;\n updateOneTimestamp?: Maybe<Timestamp>;\n upsertOneAttestation: Attestation;\n upsertOneEnsName: EnsName;\n upsertOneOffchainRevocation: OffchainRevocation;\n upsertOneSchema: Schema;\n upsertOneSchemaName: SchemaName;\n upsertOneServiceStat: ServiceStat;\n upsertOneTimestamp: Timestamp;\n};\n\n\nexport type MutationCreateManyAttestationArgs = {\n data: Array<AttestationCreateManyInput>;\n skipDuplicates?: InputMaybe<Scalars['Boolean']['input']>;\n};\n\n\nexport type MutationCreateManyEnsNameArgs = {\n data: Array<EnsNameCreateManyInput>;\n skipDuplicates?: InputMaybe<Scalars['Boolean']['input']>;\n};\n\n\nexport type MutationCreateManyOffchainRevocationArgs = {\n data: Array<OffchainRevocationCreateManyInput>;\n skipDuplicates?: InputMaybe<Scalars['Boolean']['input']>;\n};\n\n\nexport type MutationCreateManySchemaArgs = {\n data: Array<SchemaCreateManyInput>;\n skipDuplicates?: InputMaybe<Scalars['Boolean']['input']>;\n};\n\n\nexport type MutationCreateManySchemaNameArgs = {\n data: Array<SchemaNameCreateManyInput>;\n skipDuplicates?: InputMaybe<Scalars['Boolean']['input']>;\n};\n\n\nexport type MutationCreateManyServiceStatArgs = {\n data: Array<ServiceStatCreateManyInput>;\n skipDuplicates?: InputMaybe<Scalars['Boolean']['input']>;\n};\n\n\nexport type MutationCreateManyTimestampArgs = {\n data: Array<TimestampCreateManyInput>;\n skipDuplicates?: InputMaybe<Scalars['Boolean']['input']>;\n};\n\n\nexport type MutationCreateOneAttestationArgs = {\n data: AttestationCreateInput;\n};\n\n\nexport type MutationCreateOneEnsNameArgs = {\n data: EnsNameCreateInput;\n};\n\n\nexport type MutationCreateOneOffchainRevocationArgs = {\n data: OffchainRevocationCreateInput;\n};\n\n\nexport type MutationCreateOneSchemaArgs = {\n data: SchemaCreateInput;\n};\n\n\nexport type MutationCreateOneSchemaNameArgs = {\n data: SchemaNameCreateInput;\n};\n\n\nexport type MutationCreateOneServiceStatArgs = {\n data: ServiceStatCreateInput;\n};\n\n\nexport type MutationCreateOneTimestampArgs = {\n data: TimestampCreateInput;\n};\n\n\nexport type MutationDeleteManyAttestationArgs = {\n where?: InputMaybe<AttestationWhereInput>;\n};\n\n\nexport type MutationDeleteManyEnsNameArgs = {\n where?: InputMaybe<EnsNameWhereInput>;\n};\n\n\nexport type MutationDeleteManyOffchainRevocationArgs = {\n where?: InputMaybe<OffchainRevocationWhereInput>;\n};\n\n\nexport type MutationDeleteManySchemaArgs = {\n where?: InputMaybe<SchemaWhereInput>;\n};\n\n\nexport type MutationDeleteManySchemaNameArgs = {\n where?: InputMaybe<SchemaNameWhereInput>;\n};\n\n\nexport type MutationDeleteManyServiceStatArgs = {\n where?: InputMaybe<ServiceStatWhereInput>;\n};\n\n\nexport type MutationDeleteManyTimestampArgs = {\n where?: InputMaybe<TimestampWhereInput>;\n};\n\n\nexport type MutationDeleteOneAttestationArgs = {\n where: AttestationWhereUniqueInput;\n};\n\n\nexport type MutationDeleteOneEnsNameArgs = {\n where: EnsNameWhereUniqueInput;\n};\n\n\nexport type MutationDeleteOneOffchainRevocationArgs = {\n where: OffchainRevocationWhereUniqueInput;\n};\n\n\nexport type MutationDeleteOneSchemaArgs = {\n where: SchemaWhereUniqueInput;\n};\n\n\nexport type MutationDeleteOneSchemaNameArgs = {\n where: SchemaNameWhereUniqueInput;\n};\n\n\nexport type MutationDeleteOneServiceStatArgs = {\n where: ServiceStatWhereUniqueInput;\n};\n\n\nexport type MutationDeleteOneTimestampArgs = {\n where: TimestampWhereUniqueInput;\n};\n\n\nexport type MutationUpdateManyAttestationArgs = {\n data: AttestationUpdateManyMutationInput;\n where?: InputMaybe<AttestationWhereInput>;\n};\n\n\nexport type MutationUpdateManyEnsNameArgs = {\n data: EnsNameUpdateManyMutationInput;\n where?: InputMaybe<EnsNameWhereInput>;\n};\n\n\nexport type MutationUpdateManyOffchainRevocationArgs = {\n data: OffchainRevocationUpdateManyMutationInput;\n where?: InputMaybe<OffchainRevocationWhereInput>;\n};\n\n\nexport type MutationUpdateManySchemaArgs = {\n data: SchemaUpdateManyMutationInput;\n where?: InputMaybe<SchemaWhereInput>;\n};\n\n\nexport type MutationUpdateManySchemaNameArgs = {\n data: SchemaNameUpdateManyMutationInput;\n where?: InputMaybe<SchemaNameWhereInput>;\n};\n\n\nexport type MutationUpdateManyServiceStatArgs = {\n data: ServiceStatUpdateManyMutationInput;\n where?: InputMaybe<ServiceStatWhereInput>;\n};\n\n\nexport type MutationUpdateManyTimestampArgs = {\n data: TimestampUpdateManyMutationInput;\n where?: InputMaybe<TimestampWhereInput>;\n};\n\n\nexport type MutationUpdateOneAttestationArgs = {\n data: AttestationUpdateInput;\n where: AttestationWhereUniqueInput;\n};\n\n\nexport type MutationUpdateOneEnsNameArgs = {\n data: EnsNameUpdateInput;\n where: EnsNameWhereUniqueInput;\n};\n\n\nexport type MutationUpdateOneOffchainRevocationArgs = {\n data: OffchainRevocationUpdateInput;\n where: OffchainRevocationWhereUniqueInput;\n};\n\n\nexport type MutationUpdateOneSchemaArgs = {\n data: SchemaUpdateInput;\n where: SchemaWhereUniqueInput;\n};\n\n\nexport type MutationUpdateOneSchemaNameArgs = {\n data: SchemaNameUpdateInput;\n where: SchemaNameWhereUniqueInput;\n};\n\n\nexport type MutationUpdateOneServiceStatArgs = {\n data: ServiceStatUpdateInput;\n where: ServiceStatWhereUniqueInput;\n};\n\n\nexport type MutationUpdateOneTimestampArgs = {\n data: TimestampUpdateInput;\n where: TimestampWhereUniqueInput;\n};\n\n\nexport type MutationUpsertOneAttestationArgs = {\n create: AttestationCreateInput;\n update: AttestationUpdateInput;\n where: AttestationWhereUniqueInput;\n};\n\n\nexport type MutationUpsertOneEnsNameArgs = {\n create: EnsNameCreateInput;\n update: EnsNameUpdateInput;\n where: EnsNameWhereUniqueInput;\n};\n\n\nexport type MutationUpsertOneOffchainRevocationArgs = {\n create: OffchainRevocationCreateInput;\n update: OffchainRevocationUpdateInput;\n where: OffchainRevocationWhereUniqueInput;\n};\n\n\nexport type MutationUpsertOneSchemaArgs = {\n create: SchemaCreateInput;\n update: SchemaUpdateInput;\n where: SchemaWhereUniqueInput;\n};\n\n\nexport type MutationUpsertOneSchemaNameArgs = {\n create: SchemaNameCreateInput;\n update: SchemaNameUpdateInput;\n where: SchemaNameWhereUniqueInput;\n};\n\n\nexport type MutationUpsertOneServiceStatArgs = {\n create: ServiceStatCreateInput;\n update: ServiceStatUpdateInput;\n where: ServiceStatWhereUniqueInput;\n};\n\n\nexport type MutationUpsertOneTimestampArgs = {\n create: TimestampCreateInput;\n update: TimestampUpdateInput;\n where: TimestampWhereUniqueInput;\n};\n\nexport type NestedBoolFilter = {\n equals?: InputMaybe<Scalars['Boolean']['input']>;\n not?: InputMaybe<NestedBoolFilter>;\n};\n\nexport type NestedBoolWithAggregatesFilter = {\n _count?: InputMaybe<NestedIntFilter>;\n _max?: InputMaybe<NestedBoolFilter>;\n _min?: InputMaybe<NestedBoolFilter>;\n equals?: InputMaybe<Scalars['Boolean']['input']>;\n not?: InputMaybe<NestedBoolWithAggregatesFilter>;\n};\n\nexport type NestedFloatFilter = {\n equals?: InputMaybe<Scalars['Float']['input']>;\n gt?: InputMaybe<Scalars['Float']['input']>;\n gte?: InputMaybe<Scalars['Float']['input']>;\n in?: InputMaybe<Array<Scalars['Float']['input']>>;\n lt?: InputMaybe<Scalars['Float']['input']>;\n lte?: InputMaybe<Scalars['Float']['input']>;\n not?: InputMaybe<NestedFloatFilter>;\n notIn?: InputMaybe<Array<Scalars['Float']['input']>>;\n};\n\nexport type NestedIntFilter = {\n equals?: InputMaybe<Scalars['Int']['input']>;\n gt?: InputMaybe<Scalars['Int']['input']>;\n gte?: InputMaybe<Scalars['Int']['input']>;\n in?: InputMaybe<Array<Scalars['Int']['input']>>;\n lt?: InputMaybe<Scalars['Int']['input']>;\n lte?: InputMaybe<Scalars['Int']['input']>;\n not?: InputMaybe<NestedIntFilter>;\n notIn?: InputMaybe<Array<Scalars['Int']['input']>>;\n};\n\nexport type NestedIntWithAggregatesFilter = {\n _avg?: InputMaybe<NestedFloatFilter>;\n _count?: InputMaybe<NestedIntFilter>;\n _max?: InputMaybe<NestedIntFilter>;\n _min?: InputMaybe<NestedIntFilter>;\n _sum?: InputMaybe<NestedIntFilter>;\n equals?: InputMaybe<Scalars['Int']['input']>;\n gt?: InputMaybe<Scalars['Int']['input']>;\n gte?: InputMaybe<Scalars['Int']['input']>;\n in?: InputMaybe<Array<Scalars['Int']['input']>>;\n lt?: InputMaybe<Scalars['Int']['input']>;\n lte?: InputMaybe<Scalars['Int']['input']>;\n not?: InputMaybe<NestedIntWithAggregatesFilter>;\n notIn?: InputMaybe<Array<Scalars['Int']['input']>>;\n};\n\nexport type NestedStringFilter = {\n contains?: InputMaybe<Scalars['String']['input']>;\n endsWith?: InputMaybe<Scalars['String']['input']>;\n equals?: InputMaybe<Scalars['String']['input']>;\n gt?: InputMaybe<Scalars['String']['input']>;\n gte?: InputMaybe<Scalars['String']['input']>;\n in?: InputMaybe<Array<Scalars['String']['input']>>;\n lt?: InputMaybe<Scalars['String']['input']>;\n lte?: InputMaybe<Scalars['String']['input']>;\n not?: InputMaybe<NestedStringFilter>;\n notIn?: InputMaybe<Array<Scalars['String']['input']>>;\n startsWith?: InputMaybe<Scalars['String']['input']>;\n};\n\nexport type NestedStringWithAggregatesFilter = {\n _count?: InputMaybe<NestedIntFilter>;\n _max?: InputMaybe<NestedStringFilter>;\n _min?: InputMaybe<NestedStringFilter>;\n contains?: InputMaybe<Scalars['String']['input']>;\n endsWith?: InputMaybe<Scalars['String']['input']>;\n equals?: InputMaybe<Scalars['String']['input']>;\n gt?: InputMaybe<Scalars['String']['input']>;\n gte?: InputMaybe<Scalars['String']['input']>;\n in?: InputMaybe<Array<Scalars['String']['input']>>;\n lt?: InputMaybe<Scalars['String']['input']>;\n lte?: InputMaybe<Scalars['String']['input']>;\n not?: InputMaybe<NestedStringWithAggregatesFilter>;\n notIn?: InputMaybe<Array<Scalars['String']['input']>>;\n startsWith?: InputMaybe<Scalars['String']['input']>;\n};\n\nexport type OffchainRevocation = {\n __typename?: 'OffchainRevocation';\n from: Scalars['String']['output'];\n id: Scalars['String']['output'];\n timestamp: Scalars['Int']['output'];\n txid: Scalars['String']['output'];\n uid: Scalars['String']['output'];\n};\n\nexport type OffchainRevocationAvgAggregate = {\n __typename?: 'OffchainRevocationAvgAggregate';\n timestamp?: Maybe<Scalars['Float']['output']>;\n};\n\nexport type OffchainRevocationAvgOrderByAggregateInput = {\n timestamp?: InputMaybe<SortOrder>;\n};\n\nexport type OffchainRevocationCountAggregate = {\n __typename?: 'OffchainRevocationCountAggregate';\n _all: Scalars['Int']['output'];\n from: Scalars['Int']['output'];\n id: Scalars['Int']['output'];\n timestamp: Scalars['Int']['output'];\n txid: Scalars['Int']['output'];\n uid: Scalars['Int']['output'];\n};\n\nexport type OffchainRevocationCountOrderByAggregateInput = {\n from?: InputMaybe<SortOrder>;\n id?: InputMaybe<SortOrder>;\n timestamp?: InputMaybe<SortOrder>;\n txid?: InputMaybe<SortOrder>;\n uid?: InputMaybe<SortOrder>;\n};\n\nexport type OffchainRevocationCreateInput = {\n from: Scalars['String']['input'];\n id?: InputMaybe<Scalars['String']['input']>;\n timestamp: Scalars['Int']['input'];\n txid: Scalars['String']['input'];\n uid: Scalars['String']['input'];\n};\n\nexport type OffchainRevocationCreateManyInput = {\n from: Scalars['String']['input'];\n id?: InputMaybe<Scalars['String']['input']>;\n timestamp: Scalars['Int']['input'];\n txid: Scalars['String']['input'];\n uid: Scalars['String']['input'];\n};\n\nexport type OffchainRevocationGroupBy = {\n __typename?: 'OffchainRevocationGroupBy';\n _avg?: Maybe<OffchainRevocationAvgAggregate>;\n _count?: Maybe<OffchainRevocationCountAggregate>;\n _max?: Maybe<OffchainRevocationMaxAggregate>;\n _min?: Maybe<OffchainRevocationMinAggregate>;\n _sum?: Maybe<OffchainRevocationSumAggregate>;\n from: Scalars['String']['output'];\n id: Scalars['String']['output'];\n timestamp: Scalars['Int']['output'];\n txid: Scalars['String']['output'];\n uid: Scalars['String']['output'];\n};\n\nexport type OffchainRevocationMaxAggregate = {\n __typename?: 'OffchainRevocationMaxAggregate';\n from?: Maybe<Scalars['String']['output']>;\n id?: Maybe<Scalars['String']['output']>;\n timestamp?: Maybe<Scalars['Int']['output']>;\n txid?: Maybe<Scalars['String']['output']>;\n uid?: Maybe<Scalars['String']['output']>;\n};\n\nexport type OffchainRevocationMaxOrderByAggregateInput = {\n from?: InputMaybe<SortOrder>;\n id?: InputMaybe<SortOrder>;\n timestamp?: InputMaybe<SortOrder>;\n txid?: InputMaybe<SortOrder>;\n uid?: InputMaybe<SortOrder>;\n};\n\nexport type OffchainRevocationMinAggregate = {\n __typename?: 'OffchainRevocationMinAggregate';\n from?: Maybe<Scalars['String']['output']>;\n id?: Maybe<Scalars['String']['output']>;\n timestamp?: Maybe<Scalars['Int']['output']>;\n txid?: Maybe<Scalars['String']['output']>;\n uid?: Maybe<Scalars['String']['output']>;\n};\n\nexport type OffchainRevocationMinOrderByAggregateInput = {\n from?: InputMaybe<SortOrder>;\n id?: InputMaybe<SortOrder>;\n timestamp?: InputMaybe<SortOrder>;\n txid?: InputMaybe<SortOrder>;\n uid?: InputMaybe<SortOrder>;\n};\n\nexport type OffchainRevocationOrderByWithAggregationInput = {\n _avg?: InputMaybe<OffchainRevocationAvgOrderByAggregateInput>;\n _count?: InputMaybe<OffchainRevocationCountOrderByAggregateInput>;\n _max?: InputMaybe<OffchainRevocationMaxOrderByAggregateInput>;\n _min?: InputMaybe<OffchainRevocationMinOrderByAggregateInput>;\n _sum?: InputMaybe<OffchainRevocationSumOrderByAggregateInput>;\n from?: InputMaybe<SortOrder>;\n id?: InputMaybe<SortOrder>;\n timestamp?: InputMaybe<SortOrder>;\n txid?: InputMaybe<SortOrder>;\n uid?: InputMaybe<SortOrder>;\n};\n\nexport type OffchainRevocationOrderByWithRelationInput = {\n from?: InputMaybe<SortOrder>;\n id?: InputMaybe<SortOrder>;\n timestamp?: InputMaybe<SortOrder>;\n txid?: InputMaybe<SortOrder>;\n uid?: InputMaybe<SortOrder>;\n};\n\nexport enum OffchainRevocationScalarFieldEnum {\n From = 'from',\n Id = 'id',\n Timestamp = 'timestamp',\n Txid = 'txid',\n Uid = 'uid'\n}\n\nexport type OffchainRevocationScalarWhereWithAggregatesInput = {\n AND?: InputMaybe<Array<OffchainRevocationScalarWhereWithAggregatesInput>>;\n NOT?: InputMaybe<Array<OffchainRevocationScalarWhereWithAggregatesInput>>;\n OR?: InputMaybe<Array<OffchainRevocationScalarWhereWithAggregatesInput>>;\n from?: InputMaybe<StringWithAggregatesFilter>;\n id?: InputMaybe<StringWithAggregatesFilter>;\n timestamp?: InputMaybe<IntWithAggregatesFilter>;\n txid?: InputMaybe<StringWithAggregatesFilter>;\n uid?: InputMaybe<StringWithAggregatesFilter>;\n};\n\nexport type OffchainRevocationSumAggregate = {\n __typename?: 'OffchainRevocationSumAggregate';\n timestamp?: Maybe<Scalars['Int']['output']>;\n};\n\nexport type OffchainRevocationSumOrderByAggregateInput = {\n timestamp?: InputMaybe<SortOrder>;\n};\n\nexport type OffchainRevocationUpdateInput = {\n from?: InputMaybe<StringFieldUpdateOperationsInput>;\n id?: InputMaybe<StringFieldUpdateOperationsInput>;\n timestamp?: InputMaybe<IntFieldUpdateOperationsInput>;\n txid?: InputMaybe<StringFieldUpdateOperationsInput>;\n uid?: InputMaybe<StringFieldUpdateOperationsInput>;\n};\n\nexport type OffchainRevocationUpdateManyMutationInput = {\n from?: InputMaybe<StringFieldUpdateOperationsInput>;\n id?: InputMaybe<StringFieldUpdateOperationsInput>;\n timestamp?: InputMaybe<IntFieldUpdateOperationsInput>;\n txid?: InputMaybe<StringFieldUpdateOperationsInput>;\n uid?: InputMaybe<StringFieldUpdateOperationsInput>;\n};\n\nexport type OffchainRevocationWhereInput = {\n AND?: InputMaybe<Array<OffchainRevocationWhereInput>>;\n NOT?: InputMaybe<Array<OffchainRevocationWhereInput>>;\n OR?: InputMaybe<Array<OffchainRevocationWhereInput>>;\n from?: InputMaybe<StringFilter>;\n id?: InputMaybe<StringFilter>;\n timestamp?: InputMaybe<IntFilter>;\n txid?: InputMaybe<StringFilter>;\n uid?: InputMaybe<StringFilter>;\n};\n\nexport type OffchainRevocationWhereUniqueInput = {\n id?: InputMaybe<Scalars['String']['input']>;\n};\n\nexport type Query = {\n __typename?: 'Query';\n aggregateAttestation: AggregateAttestation;\n aggregateEnsName: AggregateEnsName;\n aggregateOffchainRevocation: AggregateOffchainRevocation;\n aggregateSchema: AggregateSchema;\n aggregateSchemaName: AggregateSchemaName;\n aggregateServiceStat: AggregateServiceStat;\n aggregateTimestamp: AggregateTimestamp;\n attestation?: Maybe<Attestation>;\n attestations: Array<Attestation>;\n ensName?: Maybe<EnsName>;\n ensNames: Array<EnsName>;\n findFirstAttestation?: Maybe<Attestation>;\n findFirstAttestationOrThrow?: Maybe<Attestation>;\n findFirstEnsName?: Maybe<EnsName>;\n findFirstEnsNameOrThrow?: Maybe<EnsName>;\n findFirstOffchainRevocation?: Maybe<OffchainRevocation>;\n findFirstOffchainRevocationOrThrow?: Maybe<OffchainRevocation>;\n findFirstSchema?: Maybe<Schema>;\n findFirstSchemaName?: Maybe<SchemaName>;\n findFirstSchemaNameOrThrow?: Maybe<SchemaName>;\n findFirstSchemaOrThrow?: Maybe<Schema>;\n findFirstServiceStat?: Maybe<ServiceStat>;\n findFirstServiceStatOrThrow?: Maybe<ServiceStat>;\n findFirstTimestamp?: Maybe<Timestamp>;\n findFirstTimestampOrThrow?: Maybe<Timestamp>;\n getAttestation?: Maybe<Attestation>;\n getEnsName?: Maybe<EnsName>;\n getOffchainRevocation?: Maybe<OffchainRevocation>;\n getSchema?: Maybe<Schema>;\n getSchemaName?: Maybe<SchemaName>;\n getServiceStat?: Maybe<ServiceStat>;\n getTimestamp?: Maybe<Timestamp>;\n groupByAttestation: Array<AttestationGroupBy>;\n groupByEnsName: Array<EnsNameGroupBy>;\n groupByOffchainRevocation: Array<OffchainRevocationGroupBy>;\n groupBySchema: Array<SchemaGroupBy>;\n groupBySchemaName: Array<SchemaNameGroupBy>;\n groupByServiceStat: Array<ServiceStatGroupBy>;\n groupByTimestamp: Array<TimestampGroupBy>;\n offchainRevocation?: Maybe<OffchainRevocation>;\n offchainRevocations: Array<OffchainRevocation>;\n schema?: Maybe<Schema>;\n schemaName?: Maybe<SchemaName>;\n schemaNames: Array<SchemaName>;\n schemata: Array<Schema>;\n serviceStat?: Maybe<ServiceStat>;\n serviceStats: Array<ServiceStat>;\n timestamp?: Maybe<Timestamp>;\n timestamps: Array<Timestamp>;\n};\n\n\nexport type QueryAggregateAttestationArgs = {\n cursor?: InputMaybe<AttestationWhereUniqueInput>;\n orderBy?: InputMaybe<Array<AttestationOrderByWithRelationInput>>;\n skip?: InputMaybe<Scalars['Int']['input']>;\n take?: InputMaybe<Scalars['Int']['input']>;\n where?: InputMaybe<AttestationWhereInput>;\n};\n\n\nexport type QueryAggregateEnsNameArgs = {\n cursor?: InputMaybe<EnsNameWhereUniqueInput>;\n orderBy?: InputMaybe<Array<EnsNameOrderByWithRelationInput>>;\n skip?: InputMaybe<Scalars['Int']['input']>;\n take?: InputMaybe<Scalars['Int']['input']>;\n where?: InputMaybe<EnsNameWhereInput>;\n};\n\n\nexport type QueryAggregateOffchainRevocationArgs = {\n cursor?: InputMaybe<OffchainRevocationWhereUniqueInput>;\n orderBy?: InputMaybe<Array<OffchainRevocationOrderByWithRelationInput>>;\n skip?: InputMaybe<Scalars['Int']['input']>;\n take?: InputMaybe<Scalars['Int']['input']>;\n where?: InputMaybe<OffchainRevocationWhereInput>;\n};\n\n\nexport type QueryAggregateSchemaArgs = {\n cursor?: InputMaybe<SchemaWhereUniqueInput>;\n orderBy?: InputMaybe<Array<SchemaOrderByWithRelationInput>>;\n skip?: InputMaybe<Scalars['Int']['input']>;\n take?: InputMaybe<Scalars['Int']['input']>;\n where?: InputMaybe<SchemaWhereInput>;\n};\n\n\nexport type QueryAggregateSchemaNameArgs = {\n cursor?: InputMaybe<SchemaNameWhereUniqueInput>;\n orderBy?: InputMaybe<Array<SchemaNameOrderByWithRelationInput>>;\n skip?: InputMaybe<Scalars['Int']['input']>;\n take?: InputMaybe<Scalars['Int']['input']>;\n where?: InputMaybe<SchemaNameWhereInput>;\n};\n\n\nexport type QueryAggregateServiceStatArgs = {\n cursor?: InputMaybe<ServiceStatWhereUniqueInput>;\n orderBy?: InputMaybe<Array<ServiceStatOrderByWithRelationInput>>;\n skip?: InputMaybe<Scalars['Int']['input']>;\n take?: InputMaybe<Scalars['Int']['input']>;\n where?: InputMaybe<ServiceStatWhereInput>;\n};\n\n\nexport type QueryAggregateTimestampArgs = {\n cursor?: InputMaybe<TimestampWhereUniqueInput>;\n orderBy?: InputMaybe<Array<TimestampOrderByWithRelationInput>>;\n skip?: InputMaybe<Scalars['Int']['input']>;\n take?: InputMaybe<Scalars['Int']['input']>;\n where?: InputMaybe<TimestampWhereInput>;\n};\n\n\nexport type QueryAttestationArgs = {\n where: AttestationWhereUniqueInput;\n};\n\n\nexport type QueryAttestationsArgs = {\n cursor?: InputMaybe<AttestationWhereUniqueInput>;\n distinct?: InputMaybe<Array<AttestationScalarFieldEnum>>;\n orderBy?: InputMaybe<Array<AttestationOrderByWithRelationInput>>;\n skip?: InputMaybe<Scalars['Int']['input']>;\n take?: InputMaybe<Scalars['Int']['input']>;\n where?: InputMaybe<AttestationWhereInput>;\n};\n\n\nexport type QueryEnsNameArgs = {\n where: EnsNameWhereUniqueInput;\n};\n\n\nexport type QueryEnsNamesArgs = {\n cursor?: InputMaybe<EnsNameWhereUniqueInput>;\n distinct?: InputMaybe<Array<EnsNameScalarFieldEnum>>;\n orderBy?: InputMaybe<Array<EnsNameOrderByWithRelationInput>>;\n skip?: InputMaybe<Scalars['Int']['input']>;\n take?: InputMaybe<Scalars['Int']['input']>;\n where?: InputMaybe<EnsNameWhereInput>;\n};\n\n\nexport type QueryFindFirstAttestationArgs = {\n cursor?: InputMaybe<AttestationWhereUniqueInput>;\n distinct?: InputMaybe<Array<AttestationScalarFieldEnum>>;\n orderBy?: InputMaybe<Array<AttestationOrderByWithRelationInput>>;\n skip?: InputMaybe<Scalars['Int']['input']>;\n take?: InputMaybe<Scalars['Int']['input']>;\n where?: InputMaybe<AttestationWhereInput>;\n};\n\n\nexport type QueryFindFirstAttestationOrThrowArgs = {\n cursor?: InputMaybe<AttestationWhereUniqueInput>;\n distinct?: InputMaybe<Array<AttestationScalarFieldEnum>>;\n orderBy?: InputMaybe<Array<AttestationOrderByWithRelationInput>>;\n skip?: InputMaybe<Scalars['Int']['input']>;\n take?: InputMaybe<Scalars['Int']['input']>;\n where?: InputMaybe<AttestationWhereInput>;\n};\n\n\nexport type QueryFindFirstEnsNameArgs = {\n cursor?: InputMaybe<EnsNameWhereUniqueInput>;\n distinct?: InputMaybe<Array<EnsNameScalarFieldEnum>>;\n orderBy?: InputMaybe<Array<EnsNameOrderByWithRelationInput>>;\n skip?: InputMaybe<Scalars['Int']['input']>;\n take?: InputMaybe<Scalars['Int']['input']>;\n where?: InputMaybe<EnsNameWhereInput>;\n};\n\n\nexport type QueryFindFirstEnsNameOrThrowArgs = {\n cursor?: InputMaybe<EnsNameWhereUniqueInput>;\n distinct?: InputMaybe<Array<EnsNameScalarFieldEnum>>;\n orderBy?: InputMaybe<Array<EnsNameOrderByWithRelationInput>>;\n skip?: InputMaybe<Scalars['Int']['input']>;\n take?: InputMaybe<Scalars['Int']['input']>;\n where?: InputMaybe<EnsNameWhereInput>;\n};\n\n\nexport type QueryFindFirstOffchainRevocationArgs = {\n cursor?: InputMaybe<OffchainRevocationWhereUniqueInput>;\n distinct?: InputMaybe<Array<OffchainRevocationScalarFieldEnum>>;\n orderBy?: InputMaybe<Array<OffchainRevocationOrderByWithRelationInput>>;\n skip?: InputMaybe<Scalars['Int']['input']>;\n take?: InputMaybe<Scalars['Int']['input']>;\n where?: InputMaybe<OffchainRevocationWhereInput>;\n};\n\n\nexport type QueryFindFirstOffchainRevocationOrThrowArgs = {\n cursor?: InputMaybe<OffchainRevocationWhereUniqueInput>;\n distinct?: InputMaybe<Array<OffchainRevocationScalarFieldEnum>>;\n orderBy?: InputMaybe<Array<OffchainRevocationOrderByWithRelationInput>>;\n skip?: InputMaybe<Scalars['Int']['input']>;\n take?: InputMaybe<Scalars['Int']['input']>;\n where?: InputMaybe<OffchainRevocationWhereInput>;\n};\n\n\nexport type QueryFindFirstSchemaArgs = {\n cursor?: InputMaybe<SchemaWhereUniqueInput>;\n distinct?: InputMaybe<Array<SchemaScalarFieldEnum>>;\n orderBy?: InputMaybe<Array<SchemaOrderByWithRelationInput>>;\n skip?: InputMaybe<Scalars['Int']['input']>;\n take?: InputMaybe<Scalars['Int']['input']>;\n where?: InputMaybe<SchemaWhereInput>;\n};\n\n\nexport type QueryFindFirstSchemaNameArgs = {\n cursor?: InputMaybe<SchemaNameWhereUniqueInput>;\n distinct?: InputMaybe<Array<SchemaNameScalarFieldEnum>>;\n orderBy?: InputMaybe<Array<SchemaNameOrderByWithRelationInput>>;\n skip?: InputMaybe<Scalars['Int']['input']>;\n take?: InputMaybe<Scalars['Int']['input']>;\n where?: InputMaybe<SchemaNameWhereInput>;\n};\n\n\nexport type QueryFindFirstSchemaNameOrThrowArgs = {\n cursor?: InputMaybe<SchemaNameWhereUniqueInput>;\n distinct?: InputMaybe<Array<SchemaNameScalarFieldEnum>>;\n orderBy?: InputMaybe<Array<SchemaNameOrderByWithRelationInput>>;\n skip?: InputMaybe<Scalars['Int']['input']>;\n take?: InputMaybe<Scalars['Int']['input']>;\n where?: InputMaybe<SchemaNameWhereInput>;\n};\n\n\nexport type QueryFindFirstSchemaOrThrowArgs = {\n cursor?: InputMaybe<SchemaWhereUniqueInput>;\n distinct?: InputMaybe<Array<SchemaScalarFieldEnum>>;\n orderBy?: InputMaybe<Array<SchemaOrderByWithRelationInput>>;\n skip?: InputMaybe<Scalars['Int']['input']>;\n take?: InputMaybe<Scalars['Int']['input']>;\n where?: InputMaybe<SchemaWhereInput>;\n};\n\n\nexport type QueryFindFirstServiceStatArgs = {\n cursor?: InputMaybe<ServiceStatWhereUniqueInput>;\n distinct?: InputMaybe<Array<ServiceStatScalarFieldEnum>>;\n orderBy?: InputMaybe<Array<ServiceStatOrderByWithRelationInput>>;\n skip?: InputMaybe<Scalars['Int']['input']>;\n take?: InputMaybe<Scalars['Int']['input']>;\n where?: InputMaybe<ServiceStatWhereInput>;\n};\n\n\nexport type QueryFindFirstServiceStatOrThrowArgs = {\n cursor?: InputMaybe<ServiceStatWhereUniqueInput>;\n distinct?: InputMaybe<Array<ServiceStatScalarFieldEnum>>;\n orderBy?: InputMaybe<Array<ServiceStatOrderByWithRelationInput>>;\n skip?: InputMaybe<Scalars['Int']['input']>;\n take?: InputMaybe<Scalars['Int']['input']>;\n where?: InputMaybe<ServiceStatWhereInput>;\n};\n\n\nexport type QueryFindFirstTimestampArgs = {\n cursor?: InputMaybe<TimestampWhereUniqueInput>;\n distinct?: InputMaybe<Array<TimestampScalarFieldEnum>>;\n orderBy?: InputMaybe<Array<TimestampOrderByWithRelationInput>>;\n skip?: InputMaybe<Scalars['Int']['input']>;\n take?: InputMaybe<Scalars['Int']['input']>;\n where?: InputMaybe<TimestampWhereInput>;\n};\n\n\nexport type QueryFindFirstTimestampOrThrowArgs = {\n cursor?: InputMaybe<TimestampWhereUniqueInput>;\n distinct?: InputMaybe<Array<TimestampScalarFieldEnum>>;\n orderBy?: InputMaybe<Array<TimestampOrderByWithRelationInput>>;\n skip?: InputMaybe<Scalars['Int']['input']>;\n take?: InputMaybe<Scalars['Int']['input']>;\n where?: InputMaybe<TimestampWhereInput>;\n};\n\n\nexport type QueryGetAttestationArgs = {\n where: AttestationWhereUniqueInput;\n};\n\n\nexport type QueryGetEnsNameArgs = {\n where: EnsNameWhereUniqueInput;\n};\n\n\nexport type QueryGetOffchainRevocationArgs = {\n where: OffchainRevocationWhereUniqueInput;\n};\n\n\nexport type QueryGetSchemaArgs = {\n where: SchemaWhereUniqueInput;\n};\n\n\nexport type QueryGetSchemaNameArgs = {\n where: SchemaNameWhereUniqueInput;\n};\n\n\nexport type QueryGetServiceStatArgs = {\n where: ServiceStatWhereUniqueInput;\n};\n\n\nexport type QueryGetTimestampArgs = {\n where: TimestampWhereUniqueInput;\n};\n\n\nexport type QueryGroupByAttestationArgs = {\n by: Array<AttestationScalarFieldEnum>;\n having?: InputMaybe<AttestationScalarWhereWithAggregatesInput>;\n orderBy?: InputMaybe<Array<AttestationOrderByWithAggregationInput>>;\n skip?: InputMaybe<Scalars['Int']['input']>;\n take?: InputMaybe<Scalars['Int']['input']>;\n where?: InputMaybe<AttestationWhereInput>;\n};\n\n\nexport type QueryGroupByEnsNameArgs = {\n by: Array<EnsNameScalarFieldEnum>;\n having?: InputMaybe<EnsNameScalarWhereWithAggregatesInput>;\n orderBy?: InputMaybe<Array<EnsNameOrderByWithAggregationInput>>;\n skip?: InputMaybe<Scalars['Int']['input']>;\n take?: InputMaybe<Scalars['Int']['input']>;\n where?: InputMaybe<EnsNameWhereInput>;\n};\n\n\nexport type QueryGroupByOffchainRevocationArgs = {\n by: Array<OffchainRevocationScalarFieldEnum>;\n having?: InputMaybe<OffchainRevocationScalarWhereWithAggregatesInput>;\n orderBy?: InputMaybe<Array<OffchainRevocationOrderByWithAggregationInput>>;\n skip?: InputMaybe<Scalars['Int']['input']>;\n take?: InputMaybe<Scalars['Int']['input']>;\n where?: InputMaybe<OffchainRevocationWhereInput>;\n};\n\n\nexport type QueryGroupBySchemaArgs = {\n by: Array<SchemaScalarFieldEnum>;\n having?: InputMaybe<SchemaScalarWhereWithAggregatesInput>;\n orderBy?: InputMaybe<Array<SchemaOrderByWithAggregationInput>>;\n skip?: InputMaybe<Scalars['Int']['input']>;\n take?: InputMaybe<Scalars['Int']['input']>;\n where?: InputMaybe<SchemaWhereInput>;\n};\n\n\nexport type QueryGroupBySchemaNameArgs = {\n by: Array<SchemaNameScalarFieldEnum>;\n having?: InputMaybe<SchemaNameScalarWhereWithAggregatesInput>;\n orderBy?: InputMaybe<Array<SchemaNameOrderByWithAggregationInput>>;\n skip?: InputMaybe<Scalars['Int']['input']>;\n take?: InputMaybe<Scalars['Int']['input']>;\n where?: InputMaybe<SchemaNameWhereInput>;\n};\n\n\nexport type QueryGroupByServiceStatArgs = {\n by: Array<ServiceStatScalarFieldEnum>;\n having?: InputMaybe<ServiceStatScalarWhereWithAggregatesInput>;\n orderBy?: InputMaybe<Array<ServiceStatOrderByWithAggregationInput>>;\n skip?: InputMaybe<Scalars['Int']['input']>;\n take?: InputMaybe<Scalars['Int']['input']>;\n where?: InputMaybe<ServiceStatWhereInput>;\n};\n\n\nexport type QueryGroupByTimestampArgs = {\n by: Array<TimestampScalarFieldEnum>;\n having?: InputMaybe<TimestampScalarWhereWithAggregatesInput>;\n orderBy?: InputMaybe<Array<TimestampOrderByWithAggregationInput>>;\n skip?: InputMaybe<Scalars['Int']['input']>;\n take?: InputMaybe<Scalars['Int']['input']>;\n where?: InputMaybe<TimestampWhereInput>;\n};\n\n\nexport type QueryOffchainRevocationArgs = {\n where: OffchainRevocationWhereUniqueInput;\n};\n\n\nexport type QueryOffchainRevocationsArgs = {\n cursor?: InputMaybe<OffchainRevocationWhereUniqueInput>;\n distinct?: InputMaybe<Array<OffchainRevocationScalarFieldEnum>>;\n orderBy?: InputMaybe<Array<OffchainRevocationOrderByWithRelationInput>>;\n skip?: InputMaybe<Scalars['Int']['input']>;\n take?: InputMaybe<Scalars['Int']['input']>;\n where?: InputMaybe<OffchainRevocationWhereInput>;\n};\n\n\nexport type QuerySchemaArgs = {\n where: SchemaWhereUniqueInput;\n};\n\n\nexport type QuerySchemaNameArgs = {\n where: SchemaNameWhereUniqueInput;\n};\n\n\nexport type QuerySchemaNamesArgs = {\n cursor?: InputMaybe<SchemaNameWhereUniqueInput>;\n distinct?: InputMaybe<Array<SchemaNameScalarFieldEnum>>;\n orderBy?: InputMaybe<Array<SchemaNameOrderByWithRelationInput>>;\n skip?: InputMaybe<Scalars['Int']['input']>;\n take?: InputMaybe<Scalars['Int']['input']>;\n where?: InputMaybe<SchemaNameWhereInput>;\n};\n\n\nexport type QuerySchemataArgs = {\n cursor?: InputMaybe<SchemaWhereUniqueInput>;\n distinct?: InputMaybe<Array<SchemaScalarFieldEnum>>;\n orderBy?: InputMaybe<Array<SchemaOrderByWithRelationInput>>;\n skip?: InputMaybe<Scalars['Int']['input']>;\n take?: InputMaybe<Scalars['Int']['input']>;\n where?: InputMaybe<SchemaWhereInput>;\n};\n\n\nexport type QueryServiceStatArgs = {\n where: ServiceStatWhereUniqueInput;\n};\n\n\nexport type QueryServiceStatsArgs = {\n cursor?: InputMaybe<ServiceStatWhereUniqueInput>;\n distinct?: InputMaybe<Array<ServiceStatScalarFieldEnum>>;\n orderBy?: InputMaybe<Array<ServiceStatOrderByWithRelationInput>>;\n skip?: InputMaybe<Scalars['Int']['input']>;\n take?: InputMaybe<Scalars['Int']['input']>;\n where?: InputMaybe<ServiceStatWhereInput>;\n};\n\n\nexport type QueryTimestampArgs = {\n where: TimestampWhereUniqueInput;\n};\n\n\nexport type QueryTimestampsArgs = {\n cursor?: InputMaybe<TimestampWhereUniqueInput>;\n distinct?: InputMaybe<Array<TimestampScalarFieldEnum>>;\n orderBy?: InputMaybe<Array<TimestampOrderByWithRelationInput>>;\n skip?: InputMaybe<Scalars['Int']['input']>;\n take?: InputMaybe<Scalars['Int']['input']>;\n where?: InputMaybe<TimestampWhereInput>;\n};\n\nexport enum QueryMode {\n Default = 'default',\n Insensitive = 'insensitive'\n}\n\nexport type Schema = {\n __typename?: 'Schema';\n _count?: Maybe<SchemaCount>;\n attestations: Array<Attestation>;\n creator: Scalars['String']['output'];\n id: Scalars['String']['output'];\n index: Scalars['String']['output'];\n resolver: Scalars['String']['output'];\n revocable: Scalars['Boolean']['output'];\n schema: Scalars['String']['output'];\n schemaNames: Array<SchemaName>;\n time: Scalars['Int']['output'];\n txid: Scalars['String']['output'];\n};\n\n\nexport type SchemaAttestationsArgs = {\n cursor?: InputMaybe<AttestationWhereUniqueInput>;\n distinct?: InputMaybe<Array<AttestationScalarFieldEnum>>;\n orderBy?: InputMaybe<Array<AttestationOrderByWithRelationInput>>;\n skip?: InputMaybe<Scalars['Int']['input']>;\n take?: InputMaybe<Scalars['Int']['input']>;\n where?: InputMaybe<AttestationWhereInput>;\n};\n\n\nexport type SchemaSchemaNamesArgs = {\n cursor?: InputMaybe<SchemaNameWhereUniqueInput>;\n distinct?: InputMaybe<Array<SchemaNameScalarFieldEnum>>;\n orderBy?: InputMaybe<Array<SchemaNameOrderByWithRelationInput>>;\n skip?: InputMaybe<Scalars['Int']['input']>;\n take?: InputMaybe<Scalars['Int']['input']>;\n where?: InputMaybe<SchemaNameWhereInput>;\n};\n\nexport type SchemaAvgAggregate = {\n __typename?: 'SchemaAvgAggregate';\n time?: Maybe<Scalars['Float']['output']>;\n};\n\nexport type SchemaAvgOrderByAggregateInput = {\n time?: InputMaybe<SortOrder>;\n};\n\nexport type SchemaCount = {\n __typename?: 'SchemaCount';\n attestations: Scalars['Int']['output'];\n schemaNames: Scalars['Int']['output'];\n};\n\nexport type SchemaCountAggregate = {\n __typename?: 'SchemaCountAggregate';\n _all: Scalars['Int']['output'];\n creator: Scalars['Int']['output'];\n id: Scalars['Int']['output'];\n index: Scalars['Int']['output'];\n resolver: Scalars['Int']['output'];\n revocable: Scalars['Int']['output'];\n schema: Scalars['Int']['output'];\n time: Scalars['Int']['output'];\n txid: Scalars['Int']['output'];\n};\n\nexport type SchemaCountOrderByAggregateInput = {\n creator?: InputMaybe<SortOrder>;\n id?: InputMaybe<SortOrder>;\n index?: InputMaybe<SortOrder>;\n resolver?: InputMaybe<SortOrder>;\n revocable?: InputMaybe<SortOrder>;\n schema?: InputMaybe<SortOrder>;\n time?: InputMaybe<SortOrder>;\n txid?: InputMaybe<SortOrder>;\n};\n\nexport type SchemaCreateInput = {\n attestations?: InputMaybe<AttestationCreateNestedManyWithoutSchemaInput>;\n creator: Scalars['String']['input'];\n id: Scalars['String']['input'];\n index: Scalars['String']['input'];\n resolver: Scalars['String']['input'];\n revocable: Scalars['Boolean']['input'];\n schema: Scalars['String']['input'];\n schemaNames?: InputMaybe<SchemaNameCreateNestedManyWithoutSchemaInput>;\n time: Scalars['Int']['input'];\n txid: Scalars['String']['input'];\n};\n\nexport type SchemaCreateManyInput = {\n creator: Scalars['String']['input'];\n id: Scalars['String']['input'];\n index: Scalars['String']['input'];\n resolver: Scalars['String']['input'];\n revocable: Scalars['Boolean']['input'];\n schema: Scalars['String']['input'];\n time: Scalars['Int']['input'];\n txid: Scalars['String']['input'];\n};\n\nexport type SchemaCreateNestedOneWithoutAttestationsInput = {\n connect?: InputMaybe<SchemaWhereUniqueInput>;\n connectOrCreate?: InputMaybe<SchemaCreateOrConnectWithoutAttestationsInput>;\n create?: InputMaybe<SchemaCreateWithoutAttestationsInput>;\n};\n\nexport type SchemaCreateNestedOneWithoutSchemaNamesInput = {\n connect?: InputMaybe<SchemaWhereUniqueInput>;\n connectOrCreate?: InputMaybe<SchemaCreateOrConnectWithoutSchemaNamesInput>;\n create?: InputMaybe<SchemaCreateWithoutSchemaNamesInput>;\n};\n\nexport type SchemaCreateOrConnectWithoutAttestationsInput = {\n create: SchemaCreateWithoutAttestationsInput;\n where: SchemaWhereUniqueInput;\n};\n\nexport type SchemaCreateOrConnectWithoutSchemaNamesInput = {\n create: SchemaCreateWithoutSchemaNamesInput;\n where: SchemaWhereUniqueInput;\n};\n\nexport type SchemaCreateWithoutAttestationsInput = {\n creator: Scalars['String']['input'];\n id: Scalars['String']['input'];\n index: Scalars['String']['input'];\n resolver: Scalars['String']['input'];\n revocable: Scalars['Boolean']['input'];\n schema: Scalars['String']['input'];\n schemaNames?: InputMaybe<SchemaNameCreateNestedManyWithoutSchemaInput>;\n time: Scalars['Int']['input'];\n txid: Scalars['String']['input'];\n};\n\nexport type SchemaCreateWithoutSchemaNamesInput = {\n attestations?: InputMaybe<AttestationCreateNestedManyWithoutSchemaInput>;\n creator: Scalars['String']['input'];\n id: Scalars['String']['input'];\n index: Scalars['String']['input'];\n resolver: Scalars['String']['input'];\n revocable: Scalars['Boolean']['input'];\n schema: Scalars['String']['input'];\n time: Scalars['Int']['input'];\n txid: Scalars['String']['input'];\n};\n\nexport type SchemaGroupBy = {\n __typename?: 'SchemaGroupBy';\n _avg?: Maybe<SchemaAvgAggregate>;\n _count?: Maybe<SchemaCountAggregate>;\n _max?: Maybe<SchemaMaxAggregate>;\n _min?: Maybe<SchemaMinAggregate>;\n _sum?: Maybe<SchemaSumAggregate>;\n creator: Scalars['String']['output'];\n id: Scalars['String']['output'];\n index: Scalars['String']['output'];\n resolver: Scalars['String']['output'];\n revocable: Scalars['Boolean']['output'];\n schema: Scalars['String']['output'];\n time: Scalars['Int']['output'];\n txid: Scalars['String']['output'];\n};\n\nexport type SchemaMaxAggregate = {\n __typename?: 'SchemaMaxAggregate';\n creator?: Maybe<Scalars['String']['output']>;\n id?: Maybe<Scalars['String']['output']>;\n index?: Maybe<Scalars['String']['output']>;\n resolver?: Maybe<Scalars['String']['output']>;\n revocable?: Maybe<Scalars['Boolean']['output']>;\n schema?: Maybe<Scalars['String']['output']>;\n time?: Maybe<Scalars['Int']['output']>;\n txid?: Maybe<Scalars['String']['output']>;\n};\n\nexport type SchemaMaxOrderByAggregateInput = {\n creator?: InputMaybe<SortOrder>;\n id?: InputMaybe<SortOrder>;\n index?: InputMaybe<SortOrder>;\n resolver?: InputMaybe<SortOrder>;\n revocable?: InputMaybe<SortOrder>;\n schema?: InputMaybe<SortOrder>;\n time?: InputMaybe<SortOrder>;\n txid?: InputMaybe<SortOrder>;\n};\n\nexport type SchemaMinAggregate = {\n __typename?: 'SchemaMinAggregate';\n creator?: Maybe<Scalars['String']['output']>;\n id?: Maybe<Scalars['String']['output']>;\n index?: Maybe<Scalars['String']['output']>;\n resolver?: Maybe<Scalars['String']['output']>;\n revocable?: Maybe<Scalars['Boolean']['output']>;\n schema?: Maybe<Scalars['String']['output']>;\n time?: Maybe<Scalars['Int']['output']>;\n txid?: Maybe<Scalars['String']['output']>;\n};\n\nexport type SchemaMinOrderByAggregateInput = {\n creator?: InputMaybe<SortOrder>;\n id?: InputMaybe<SortOrder>;\n index?: InputMaybe<SortOrder>;\n resolver?: InputMaybe<SortOrder>;\n revocable?: InputMaybe<SortOrder>;\n schema?: InputMaybe<SortOrder>;\n time?: InputMaybe<SortOrder>;\n txid?: InputMaybe<SortOrder>;\n};\n\nexport type SchemaName = {\n __typename?: 'SchemaName';\n attesterAddress: Scalars['String']['output'];\n id: Scalars['String']['output'];\n isCreator: Scalars['Boolean']['output'];\n name: Scalars['String']['output'];\n schema: Schema;\n schemaId: Scalars['String']['output'];\n time: Scalars['Int']['output'];\n};\n\nexport type SchemaNameAvgAggregate = {\n __typename?: 'SchemaNameAvgAggregate';\n time?: Maybe<Scalars['Float']['output']>;\n};\n\nexport type SchemaNameAvgOrderByAggregateInput = {\n time?: InputMaybe<SortOrder>;\n};\n\nexport type SchemaNameCountAggregate = {\n __typename?: 'SchemaNameCountAggregate';\n _all: Scalars['Int']['output'];\n attesterAddress: Scalars['Int']['output'];\n id: Scalars['Int']['output'];\n isCreator: Scalars['Int']['output'];\n name: Scalars['Int']['output'];\n schemaId: Scalars['Int']['output'];\n time: Scalars['Int']['output'];\n};\n\nexport type SchemaNameCountOrderByAggregateInput = {\n attesterAddress?: InputMaybe<SortOrder>;\n id?: InputMaybe<SortOrder>;\n isCreator?: InputMaybe<SortOrder>;\n name?: InputMaybe<SortOrder>;\n schemaId?: InputMaybe<SortOrder>;\n time?: InputMaybe<SortOrder>;\n};\n\nexport type SchemaNameCreateInput = {\n attesterAddress: Scalars['String']['input'];\n id?: InputMaybe<Scalars['String']['input']>;\n isCreator: Scalars['Boolean']['input'];\n name: Scalars['String']['input'];\n schema: SchemaCreateNestedOneWithoutSchemaNamesInput;\n time: Scalars['Int']['input'];\n};\n\nexport type SchemaNameCreateManyInput = {\n attesterAddress: Scalars['String']['input'];\n id?: InputMaybe<Scalars['String']['input']>;\n isCreator: Scalars['Boolean']['input'];\n name: Scalars['String']['input'];\n schemaId: Scalars['String']['input'];\n time: Scalars['Int']['input'];\n};\n\nexport type SchemaNameCreateManySchemaInput = {\n attesterAddress: Scalars['String']['input'];\n id?: InputMaybe<Scalars['String']['input']>;\n isCreator: Scalars['Boolean']['input'];\n name: Scalars['String']['input'];\n time: Scalars['Int']['input'];\n};\n\nexport type SchemaNameCreateManySchemaInputEnvelope = {\n data: Array<SchemaNameCreateManySchemaInput>;\n skipDuplicates?: InputMaybe<Scalars['Boolean']['input']>;\n};\n\nexport type SchemaNameCreateNestedManyWithoutSchemaInput = {\n connect?: InputMaybe<Array<SchemaNameWhereUniqueInput>>;\n connectOrCreate?: InputMaybe<Array<SchemaNameCreateOrConnectWithoutSchemaInput>>;\n create?: InputMaybe<Array<SchemaNameCreateWithoutSchemaInput>>;\n createMany?: InputMaybe<SchemaNameCreateManySchemaInputEnvelope>;\n};\n\nexport type SchemaNameCreateOrConnectWithoutSchemaInput = {\n create: SchemaNameCreateWithoutSchemaInput;\n where: SchemaNameWhereUniqueInput;\n};\n\nexport type SchemaNameCreateWithoutSchemaInput = {\n attesterAddress: Scalars['String']['input'];\n id?: InputMaybe<Scalars['String']['input']>;\n isCreator: Scalars['Boolean']['input'];\n name: Scalars['String']['input'];\n time: Scalars['Int']['input'];\n};\n\nexport type SchemaNameGroupBy = {\n __typename?: 'SchemaNameGroupBy';\n _avg?: Maybe<SchemaNameAvgAggregate>;\n _count?: Maybe<SchemaNameCountAggregate>;\n _max?: Maybe<SchemaNameMaxAggregate>;\n _min?: Maybe<SchemaNameMinAggregate>;\n _sum?: Maybe<SchemaNameSumAggregate>;\n attesterAddress: Scalars['String']['output'];\n id: Scalars['String']['output'];\n isCreator: Scalars['Boolean']['output'];\n name: Scalars['String']['output'];\n schemaId: Scalars['String']['output'];\n time: Scalars['Int']['output'];\n};\n\nexport type SchemaNameListRelationFilter = {\n every?: InputMaybe<SchemaNameWhereInput>;\n none?: InputMaybe<SchemaNameWhereInput>;\n some?: InputMaybe<SchemaNameWhereInput>;\n};\n\nexport type SchemaNameMaxAggregate = {\n __typename?: 'SchemaNameMaxAggregate';\n attesterAddress?: Maybe<Scalars['String']['output']>;\n id?: Maybe<Scalars['String']['output']>;\n isCreator?: Maybe<Scalars['Boolean']['output']>;\n name?: Maybe<Scalars['String']['output']>;\n schemaId?: Maybe<Scalars['String']['output']>;\n time?: Maybe<Scalars['Int']['output']>;\n};\n\nexport type SchemaNameMaxOrderByAggregateInput = {\n attesterAddress?: InputMaybe<SortOrder>;\n id?: InputMaybe<SortOrder>;\n isCreator?: InputMaybe<SortOrder>;\n name?: InputMaybe<SortOrder>;\n schemaId?: InputMaybe<SortOrder>;\n time?: InputMaybe<SortOrder>;\n};\n\nexport type SchemaNameMinAggregate = {\n __typename?: 'SchemaNameMinAggregate';\n attesterAddress?: Maybe<Scalars['String']['output']>;\n id?: Maybe<Scalars['String']['output']>;\n isCreator?: Maybe<Scalars['Boolean']['output']>;\n name?: Maybe<Scalars['String']['output']>;\n schemaId?: Maybe<Scalars['String']['output']>;\n time?: Maybe<Scalars['Int']['output']>;\n};\n\nexport type SchemaNameMinOrderByAggregateInput = {\n attesterAddress?: InputMaybe<SortOrder>;\n id?: InputMaybe<SortOrder>;\n isCreator?: InputMaybe<SortOrder>;\n name?: InputMaybe<SortOrder>;\n schemaId?: InputMaybe<SortOrder>;\n time?: InputMaybe<SortOrder>;\n};\n\nexport type SchemaNameOrderByRelationAggregateInput = {\n _count?: InputMaybe<SortOrder>;\n};\n\nexport type SchemaNameOrderByWithAggregationInput = {\n _avg?: InputMaybe<SchemaNameAvgOrderByAggregateInput>;\n _count?: InputMaybe<SchemaNameCountOrderByAggregateInput>;\n _max?: InputMaybe<SchemaNameMaxOrderByAggregateInput>;\n _min?: InputMaybe<SchemaNameMinOrderByAggregateInput>;\n _sum?: InputMaybe<SchemaNameSumOrderByAggregateInput>;\n attesterAddress?: InputMaybe<SortOrder>;\n id?: InputMaybe<SortOrder>;\n isCreator?: InputMaybe<SortOrder>;\n name?: InputMaybe<SortOrder>;\n schemaId?: InputMaybe<SortOrder>;\n time?: InputMaybe<SortOrder>;\n};\n\nexport type SchemaNameOrderByWithRelationInput = {\n attesterAddress?: InputMaybe<SortOrder>;\n id?: InputMaybe<SortOrder>;\n isCreator?: InputMaybe<SortOrder>;\n name?: InputMaybe<SortOrder>;\n schema?: InputMaybe<SchemaOrderByWithRelationInput>;\n schemaId?: InputMaybe<SortOrder>;\n time?: InputMaybe<SortOrder>;\n};\n\nexport enum SchemaNameScalarFieldEnum {\n AttesterAddress = 'attesterAddress',\n Id = 'id',\n IsCreator = 'isCreator',\n Name = 'name',\n SchemaId = 'schemaId',\n Time = 'time'\n}\n\nexport type SchemaNameScalarWhereInput = {\n AND?: InputMaybe<Array<SchemaNameScalarWhereInput>>;\n NOT?: InputMaybe<Array<SchemaNameScalarWhereInput>>;\n OR?: InputMaybe<Array<SchemaNameScalarWhereInput>>;\n attesterAddress?: InputMaybe<StringFilter>;\n id?: InputMaybe<StringFilter>;\n isCreator?: InputMaybe<BoolFilter>;\n name?: InputMaybe<StringFilter>;\n schemaId?: InputMaybe<StringFilter>;\n time?: InputMaybe<IntFilter>;\n};\n\nexport type SchemaNameScalarWhereWithAggregatesInput = {\n AND?: InputMaybe<Array<SchemaNameScalarWhereWithAggregatesInput>>;\n NOT?: InputMaybe<Array<SchemaNameScalarWhereWithAggregatesInput>>;\n OR?: InputMaybe<Array<SchemaNameScalarWhereWithAggregatesInput>>;\n attesterAddress?: InputMaybe<StringWithAggregatesFilter>;\n id?: InputMaybe<StringWithAggregatesFilter>;\n isCreator?: InputMaybe<BoolWithAggregatesFilter>;\n name?: InputMaybe<StringWithAggregatesFilter>;\n schemaId?: InputMaybe<StringWithAggregatesFilter>;\n time?: InputMaybe<IntWithAggregatesFilter>;\n};\n\nexport type SchemaNameSumAggregate = {\n __typename?: 'SchemaNameSumAggregate';\n time?: Maybe<Scalars['Int']['output']>;\n};\n\nexport type SchemaNameSumOrderByAggregateInput = {\n time?: InputMaybe<SortOrder>;\n};\n\nexport type SchemaNameUpdateInput = {\n attesterAddress?: InputMaybe<StringFieldUpdateOperationsInput>;\n id?: InputMaybe<StringFieldUpdateOperationsInput>;\n isCreator?: InputMaybe<BoolFieldUpdateOperationsInput>;\n name?: InputMaybe<StringFieldUpdateOperationsInput>;\n schema?: InputMaybe<SchemaUpdateOneRequiredWithoutSchemaNamesNestedInput>;\n time?: InputMaybe<IntFieldUpdateOperationsInput>;\n};\n\nexport type SchemaNameUpdateManyMutationInput = {\n attesterAddress?: InputMaybe<StringFieldUpdateOperationsInput>;\n id?: InputMaybe<StringFieldUpdateOperationsInput>;\n isCreator?: InputMaybe<BoolFieldUpdateOperationsInput>;\n name?: InputMaybe<StringFieldUpdateOperationsInput>;\n time?: InputMaybe<IntFieldUpdateOperationsInput>;\n};\n\nexport type SchemaNameUpdateManyWithWhereWithoutSchemaInput = {\n data: SchemaNameUpdateManyMutationInput;\n where: SchemaNameScalarWhereInput;\n};\n\nexport type SchemaNameUpdateManyWithoutSchemaNestedInput = {\n connect?: InputMaybe<Array<SchemaNameWhereUniqueInput>>;\n connectOrCreate?: InputMaybe<Array<SchemaNameCreateOrConnectWithoutSchemaInput>>;\n create?: InputMaybe<Array<SchemaNameCreateWithoutSchemaInput>>;\n createMany?: InputMaybe<SchemaNameCreateManySchemaInputEnvelope>;\n delete?: InputMaybe<Array<SchemaNameWhereUniqueInput>>;\n deleteMany?: InputMaybe<Array<SchemaNameScalarWhereInput>>;\n disconnect?: InputMaybe<Array<SchemaNameWhereUniqueInput>>;\n set?: InputMaybe<Array<SchemaNameWhereUniqueInput>>;\n update?: InputMaybe<Array<SchemaNameUpdateWithWhereUniqueWithoutSchemaInput>>;\n updateMany?: InputMaybe<Array<SchemaNameUpdateManyWithWhereWithoutSchemaInput>>;\n upsert?: InputMaybe<Array<SchemaNameUpsertWithWhereUniqueWithoutSchemaInput>>;\n};\n\nexport type SchemaNameUpdateWithWhereUniqueWithoutSchemaInput = {\n data: SchemaNameUpdateWithoutSchemaInput;\n where: SchemaNameWhereUniqueInput;\n};\n\nexport type SchemaNameUpdateWithoutSchemaInput = {\n attesterAddress?: InputMaybe<StringFieldUpdateOperationsInput>;\n id?: InputMaybe<StringFieldUpdateOperationsInput>;\n isCreator?: InputMaybe<BoolFieldUpdateOperationsInput>;\n name?: InputMaybe<StringFieldUpdateOperationsInput>;\n time?: InputMaybe<IntFieldUpdateOperationsInput>;\n};\n\nexport type SchemaNameUpsertWithWhereUniqueWithoutSchemaInput = {\n create: SchemaNameCreateWithoutSchemaInput;\n update: SchemaNameUpdateWithoutSchemaInput;\n where: SchemaNameWhereUniqueInput;\n};\n\nexport type SchemaNameWhereInput = {\n AND?: InputMaybe<Array<SchemaNameWhereInput>>;\n NOT?: InputMaybe<Array<SchemaNameWhereInput>>;\n OR?: InputMaybe<Array<SchemaNameWhereInput>>;\n attesterAddress?: InputMaybe<StringFilter>;\n id?: InputMaybe<StringFilter>;\n isCreator?: InputMaybe<BoolFilter>;\n name?: InputMaybe<StringFilter>;\n schema?: InputMaybe<SchemaRelationFilter>;\n schemaId?: InputMaybe<StringFilter>;\n time?: InputMaybe<IntFilter>;\n};\n\nexport type SchemaNameWhereUniqueInput = {\n id?: InputMaybe<Scalars['String']['input']>;\n};\n\nexport type SchemaOrderByWithAggregationInput = {\n _avg?: InputMaybe<SchemaAvgOrderByAggregateInput>;\n _count?: InputMaybe<SchemaCountOrderByAggregateInput>;\n _max?: InputMaybe<SchemaMaxOrderByAggregateInput>;\n _min?: InputMaybe<SchemaMinOrderByAggregateInput>;\n _sum?: InputMaybe<SchemaSumOrderByAggregateInput>;\n creator?: InputMaybe<SortOrder>;\n id?: InputMaybe<SortOrder>;\n index?: InputMaybe<SortOrder>;\n resolver?: InputMaybe<SortOrder>;\n revocable?: InputMaybe<SortOrder>;\n schema?: InputMaybe<SortOrder>;\n time?: InputMaybe<SortOrder>;\n txid?: InputMaybe<SortOrder>;\n};\n\nexport type SchemaOrderByWithRelationInput = {\n attestations?: InputMaybe<AttestationOrderByRelationAggregateInput>;\n creator?: InputMaybe<SortOrder>;\n id?: InputMaybe<SortOrder>;\n index?: InputMaybe<SortOrder>;\n resolver?: InputMaybe<SortOrder>;\n revocable?: InputMaybe<SortOrder>;\n schema?: InputMaybe<SortOrder>;\n schemaNames?: InputMaybe<SchemaNameOrderByRelationAggregateInput>;\n time?: InputMaybe<SortOrder>;\n txid?: InputMaybe<SortOrder>;\n};\n\nexport type SchemaRelationFilter = {\n is?: InputMaybe<SchemaWhereInput>;\n isNot?: InputMaybe<SchemaWhereInput>;\n};\n\nexport enum SchemaScalarFieldEnum {\n Creator = 'creator',\n Id = 'id',\n Index = 'index',\n Resolver = 'resolver',\n Revocable = 'revocable',\n Schema = 'schema',\n Time = 'time',\n Txid = 'txid'\n}\n\nexport type SchemaScalarWhereWithAggregatesInput = {\n AND?: InputMaybe<Array<SchemaScalarWhereWithAggregatesInput>>;\n NOT?: InputMaybe<Array<SchemaScalarWhereWithAggregatesInput>>;\n OR?: InputMaybe<Array<SchemaScalarWhereWithAggregatesInput>>;\n creator?: InputMaybe<StringWithAggregatesFilter>;\n id?: InputMaybe<StringWithAggregatesFilter>;\n index?: InputMaybe<StringWithAggregatesFilter>;\n resolver?: InputMaybe<StringWithAggregatesFilter>;\n revocable?: InputMaybe<BoolWithAggregatesFilter>;\n schema?: InputMaybe<StringWithAggregatesFilter>;\n time?: InputMaybe<IntWithAggregatesFilter>;\n txid?: InputMaybe<StringWithAggregatesFilter>;\n};\n\nexport type SchemaSumAggregate = {\n __typename?: 'SchemaSumAggregate';\n time?: Maybe<Scalars['Int']['output']>;\n};\n\nexport type SchemaSumOrderByAggregateInput = {\n time?: InputMaybe<SortOrder>;\n};\n\nexport type SchemaUpdateInput = {\n attestations?: InputMaybe<AttestationUpdateManyWithoutSchemaNestedInput>;\n creator?: InputMaybe<StringFieldUpdateOperationsInput>;\n id?: InputMaybe<StringFieldUpdateOperationsInput>;\n index?: InputMaybe<StringFieldUpdateOperationsInput>;\n resolver?: InputMaybe<StringFieldUpdateOperationsInput>;\n revocable?: InputMaybe<BoolFieldUpdateOperationsInput>;\n schema?: InputMaybe<StringFieldUpdateOperationsInput>;\n schemaNames?: InputMaybe<SchemaNameUpdateManyWithoutSchemaNestedInput>;\n time?: InputMaybe<IntFieldUpdateOperationsInput>;\n txid?: InputMaybe<StringFieldUpdateOperationsInput>;\n};\n\nexport type SchemaUpdateManyMutationInput = {\n creator?: InputMaybe<StringFieldUpdateOperationsInput>;\n id?: InputMaybe<StringFieldUpdateOperationsInput>;\n index?: InputMaybe<StringFieldUpdateOperationsInput>;\n resolver?: InputMaybe<StringFieldUpdateOperationsInput>;\n revocable?: InputMaybe<BoolFieldUpdateOperationsInput>;\n schema?: InputMaybe<StringFieldUpdateOperationsInput>;\n time?: InputMaybe<IntFieldUpdateOperationsInput>;\n txid?: InputMaybe<StringFieldUpdateOperationsInput>;\n};\n\nexport type SchemaUpdateOneRequiredWithoutAttestationsNestedInput = {\n connect?: InputMaybe<SchemaWhereUniqueInput>;\n connectOrCreate?: InputMaybe<SchemaCreateOrConnectWithoutAttestationsInput>;\n create?: InputMaybe<SchemaCreateWithoutAttestationsInput>;\n update?: InputMaybe<SchemaUpdateWithoutAttestationsInput>;\n upsert?: InputMaybe<SchemaUpsertWithoutAttestationsInput>;\n};\n\nexport type SchemaUpdateOneRequiredWithoutSchemaNamesNestedInput = {\n connect?: InputMaybe<SchemaWhereUniqueInput>;\n connectOrCreate?: InputMaybe<SchemaCreateOrConnectWithoutSchemaNamesInput>;\n create?: InputMaybe<SchemaCreateWithoutSchemaNamesInput>;\n update?: InputMaybe<SchemaUpdateWithoutSchemaNamesInput>;\n upsert?: InputMaybe<SchemaUpsertWithoutSchemaNamesInput>;\n};\n\nexport type SchemaUpdateWithoutAttestationsInput = {\n creator?: InputMaybe<StringFieldUpdateOperationsInput>;\n id?: InputMaybe<StringFieldUpdateOperationsInput>;\n index?: InputMaybe<StringFieldUpdateOperationsInput>;\n resolver?: InputMaybe<StringFieldUpdateOperationsInput>;\n revocable?: InputMaybe<BoolFieldUpdateOperationsInput>;\n schema?: InputMaybe<StringFieldUpdateOperationsInput>;\n schemaNames?: InputMaybe<SchemaNameUpdateManyWithoutSchemaNestedInput>;\n time?: InputMaybe<IntFieldUpdateOperationsInput>;\n txid?: InputMaybe<StringFieldUpdateOperationsInput>;\n};\n\nexport type SchemaUpdateWithoutSchemaNamesInput = {\n attestations?: InputMaybe<AttestationUpdateManyWithoutSchemaNestedInput>;\n creator?: InputMaybe<StringFieldUpdateOperationsInput>;\n id?: InputMaybe<StringFieldUpdateOperationsInput>;\n index?: InputMaybe<StringFieldUpdateOperationsInput>;\n resolver?: InputMaybe<StringFieldUpdateOperationsInput>;\n revocable?: InputMaybe<BoolFieldUpdateOperationsInput>;\n schema?: InputMaybe<StringFieldUpdateOperationsInput>;\n time?: InputMaybe<IntFieldUpdateOperationsInput>;\n txid?: InputMaybe<StringFieldUpdateOperationsInput>;\n};\n\nexport type SchemaUpsertWithoutAttestationsInput = {\n create: SchemaCreateWithoutAttestationsInput;\n update: SchemaUpdateWithoutAttestationsInput;\n};\n\nexport type SchemaUpsertWithoutSchemaNamesInput = {\n create: SchemaCreateWithoutSchemaNamesInput;\n update: SchemaUpdateWithoutSchemaNamesInput;\n};\n\nexport type SchemaWhereInput = {\n AND?: InputMaybe<Array<SchemaWhereInput>>;\n NOT?: InputMaybe<Array<SchemaWhereInput>>;\n OR?: InputMaybe<Array<SchemaWhereInput>>;\n attestations?: InputMaybe<AttestationListRelationFilter>;\n creator?: InputMaybe<StringFilter>;\n id?: InputMaybe<StringFilter>;\n index?: InputMaybe<StringFilter>;\n resolver?: InputMaybe<StringFilter>;\n revocable?: InputMaybe<BoolFilter>;\n schema?: InputMaybe<StringFilter>;\n schemaNames?: InputMaybe<SchemaNameListRelationFilter>;\n time?: InputMaybe<IntFilter>;\n txid?: InputMaybe<StringFilter>;\n};\n\nexport type SchemaWhereUniqueInput = {\n id?: InputMaybe<Scalars['String']['input']>;\n};\n\nexport type ServiceStat = {\n __typename?: 'ServiceStat';\n name: Scalars['String']['output'];\n value: Scalars['String']['output'];\n};\n\nexport type ServiceStatCountAggregate = {\n __typename?: 'ServiceStatCountAggregate';\n _all: Scalars['Int']['output'];\n name: Scalars['Int']['output'];\n value: Scalars['Int']['output'];\n};\n\nexport type ServiceStatCountOrderByAggregateInput = {\n name?: InputMaybe<SortOrder>;\n value?: InputMaybe<SortOrder>;\n};\n\nexport type ServiceStatCreateInput = {\n name: Scalars['String']['input'];\n value: Scalars['String']['input'];\n};\n\nexport type ServiceStatCreateManyInput = {\n name: Scalars['String']['input'];\n value: Scalars['String']['input'];\n};\n\nexport type ServiceStatGroupBy = {\n __typename?: 'ServiceStatGroupBy';\n _count?: Maybe<ServiceStatCountAggregate>;\n _max?: Maybe<ServiceStatMaxAggregate>;\n _min?: Maybe<ServiceStatMinAggregate>;\n name: Scalars['String']['output'];\n value: Scalars['String']['output'];\n};\n\nexport type ServiceStatMaxAggregate = {\n __typename?: 'ServiceStatMaxAggregate';\n name?: Maybe<Scalars['String']['output']>;\n value?: Maybe<Scalars['String']['output']>;\n};\n\nexport type ServiceStatMaxOrderByAggregateInput = {\n name?: InputMaybe<SortOrder>;\n value?: InputMaybe<SortOrder>;\n};\n\nexport type ServiceStatMinAggregate = {\n __typename?: 'ServiceStatMinAggregate';\n name?: Maybe<Scalars['String']['output']>;\n value?: Maybe<Scalars['String']['output']>;\n};\n\nexport type ServiceStatMinOrderByAggregateInput = {\n name?: InputMaybe<SortOrder>;\n value?: InputMaybe<SortOrder>;\n};\n\nexport type ServiceStatOrderByWithAggregationInput = {\n _count?: InputMaybe<ServiceStatCountOrderByAggregateInput>;\n _max?: InputMaybe<ServiceStatMaxOrderByAggregateInput>;\n _min?: InputMaybe<ServiceStatMinOrderByAggregateInput>;\n name?: InputMaybe<SortOrder>;\n value?: InputMaybe<SortOrder>;\n};\n\nexport type ServiceStatOrderByWithRelationInput = {\n name?: InputMaybe<SortOrder>;\n value?: InputMaybe<SortOrder>;\n};\n\nexport enum ServiceStatScalarFieldEnum {\n Name = 'name',\n Value = 'value'\n}\n\nexport type ServiceStatScalarWhereWithAggregatesInput = {\n AND?: InputMaybe<Array<ServiceStatScalarWhereWithAggregatesInput>>;\n NOT?: InputMaybe<Array<ServiceStatScalarWhereWithAggregatesInput>>;\n OR?: InputMaybe<Array<ServiceStatScalarWhereWithAggregatesInput>>;\n name?: InputMaybe<StringWithAggregatesFilter>;\n value?: InputMaybe<StringWithAggregatesFilter>;\n};\n\nexport type ServiceStatUpdateInput = {\n name?: InputMaybe<StringFieldUpdateOperationsInput>;\n value?: InputMaybe<StringFieldUpdateOperationsInput>;\n};\n\nexport type ServiceStatUpdateManyMutationInput = {\n name?: InputMaybe<StringFieldUpdateOperationsInput>;\n value?: InputMaybe<StringFieldUpdateOperationsInput>;\n};\n\nexport type ServiceStatWhereInput = {\n AND?: InputMaybe<Array<ServiceStatWhereInput>>;\n NOT?: InputMaybe<Array<ServiceStatWhereInput>>;\n OR?: InputMaybe<Array<ServiceStatWhereInput>>;\n name?: InputMaybe<StringFilter>;\n value?: InputMaybe<StringFilter>;\n};\n\nexport type ServiceStatWhereUniqueInput = {\n name?: InputMaybe<Scalars['String']['input']>;\n};\n\nexport enum SortOrder {\n Asc = 'asc',\n Desc = 'desc'\n}\n\nexport type StringFieldUpdateOperationsInput = {\n set?: InputMaybe<Scalars['String']['input']>;\n};\n\nexport type StringFilter = {\n contains?: InputMaybe<Scalars['String']['input']>;\n endsWith?: InputMaybe<Scalars['String']['input']>;\n equals?: InputMaybe<Scalars['String']['input']>;\n gt?: InputMaybe<Scalars['String']['input']>;\n gte?: InputMaybe<Scalars['String']['input']>;\n in?: InputMaybe<Array<Scalars['String']['input']>>;\n lt?: InputMaybe<Scalars['String']['input']>;\n lte?: InputMaybe<Scalars['String']['input']>;\n mode?: InputMaybe<QueryMode>;\n not?: InputMaybe<NestedStringFilter>;\n notIn?: InputMaybe<Array<Scalars['String']['input']>>;\n startsWith?: InputMaybe<Scalars['String']['input']>;\n};\n\nexport type StringWithAggregatesFilter = {\n _count?: InputMaybe<NestedIntFilter>;\n _max?: InputMaybe<NestedStringFilter>;\n _min?: InputMaybe<NestedStringFilter>;\n contains?: InputMaybe<Scalars['String']['input']>;\n endsWith?: InputMaybe<Scalars['String']['input']>;\n equals?: InputMaybe<Scalars['String']['input']>;\n gt?: InputMaybe<Scalars['String']['input']>;\n gte?: InputMaybe<Scalars['String']['input']>;\n in?: InputMaybe<Array<Scalars['String']['input']>>;\n lt?: InputMaybe<Scalars['String']['input']>;\n lte?: InputMaybe<Scalars['String']['input']>;\n mode?: InputMaybe<QueryMode>;\n not?: InputMaybe<NestedStringWithAggregatesFilter>;\n notIn?: InputMaybe<Array<Scalars['String']['input']>>;\n startsWith?: InputMaybe<Scalars['String']['input']>;\n};\n\nexport type Timestamp = {\n __typename?: 'Timestamp';\n from: Scalars['String']['output'];\n id: Scalars['String']['output'];\n timestamp: Scalars['Int']['output'];\n tree: Scalars['String']['output'];\n txid: Scalars['String']['output'];\n};\n\nexport type TimestampAvgAggregate = {\n __typename?: 'TimestampAvgAggregate';\n timestamp?: Maybe<Scalars['Float']['output']>;\n};\n\nexport type TimestampAvgOrderByAggregateInput = {\n timestamp?: InputMaybe<SortOrder>;\n};\n\nexport type TimestampCountAggregate = {\n __typename?: 'TimestampCountAggregate';\n _all: Scalars['Int']['output'];\n from: Scalars['Int']['output'];\n id: Scalars['Int']['output'];\n timestamp: Scalars['Int']['output'];\n tree: Scalars['Int']['output'];\n txid: Scalars['Int']['output'];\n};\n\nexport type TimestampCountOrderByAggregateInput = {\n from?: InputMaybe<SortOrder>;\n id?: InputMaybe<SortOrder>;\n timestamp?: InputMaybe<SortOrder>;\n tree?: InputMaybe<SortOrder>;\n txid?: InputMaybe<SortOrder>;\n};\n\nexport type TimestampCreateInput = {\n from: Scalars['String']['input'];\n id: Scalars['String']['input'];\n timestamp: Scalars['Int']['input'];\n tree?: InputMaybe<Scalars['String']['input']>;\n txid: Scalars['String']['input'];\n};\n\nexport type TimestampCreateManyInput = {\n from: Scalars['String']['input'];\n id: Scalars['String']['input'];\n timestamp: Scalars['Int']['input'];\n tree?: InputMaybe<Scalars['String']['input']>;\n txid: Scalars['String']['input'];\n};\n\nexport type TimestampGroupBy = {\n __typename?: 'TimestampGroupBy';\n _avg?: Maybe<TimestampAvgAggregate>;\n _count?: Maybe<TimestampCountAggregate>;\n _max?: Maybe<TimestampMaxAggregate>;\n _min?: Maybe<TimestampMinAggregate>;\n _sum?: Maybe<TimestampSumAggregate>;\n from: Scalars['String']['output'];\n id: Scalars['String']['output'];\n timestamp: Scalars['Int']['output'];\n tree: Scalars['String']['output'];\n txid: Scalars['String']['output'];\n};\n\nexport type TimestampMaxAggregate = {\n __typename?: 'TimestampMaxAggregate';\n from?: Maybe<Scalars['String']['output']>;\n id?: Maybe<Scalars['String']['output']>;\n timestamp?: Maybe<Scalars['Int']['output']>;\n tree?: Maybe<Scalars['String']['output']>;\n txid?: Maybe<Scalars['String']['output']>;\n};\n\nexport type TimestampMaxOrderByAggregateInput = {\n from?: InputMaybe<SortOrder>;\n id?: InputMaybe<SortOrder>;\n timestamp?: InputMaybe<SortOrder>;\n tree?: InputMaybe<SortOrder>;\n txid?: InputMaybe<SortOrder>;\n};\n\nexport type TimestampMinAggregate = {\n __typename?: 'TimestampMinAggregate';\n from?: Maybe<Scalars['String']['output']>;\n id?: Maybe<Scalars['String']['output']>;\n timestamp?: Maybe<Scalars['Int']['output']>;\n tree?: Maybe<Scalars['String']['output']>;\n txid?: Maybe<Scalars['String']['output']>;\n};\n\nexport type TimestampMinOrderByAggregateInput = {\n from?: InputMaybe<SortOrder>;\n id?: InputMaybe<SortOrder>;\n timestamp?: InputMaybe<SortOrder>;\n tree?: InputMaybe<SortOrder>;\n txid?: InputMaybe<SortOrder>;\n};\n\nexport type TimestampOrderByWithAggregationInput = {\n _avg?: InputMaybe<TimestampAvgOrderByAggregateInput>;\n _count?: InputMaybe<TimestampCountOrderByAggregateInput>;\n _max?: InputMaybe<TimestampMaxOrderByAggregateInput>;\n _min?: InputMaybe<TimestampMinOrderByAggregateInput>;\n _sum?: InputMaybe<TimestampSumOrderByAggregateInput>;\n from?: InputMaybe<SortOrder>;\n id?: InputMaybe<SortOrder>;\n timestamp?: InputMaybe<SortOrder>;\n tree?: InputMaybe<SortOrder>;\n txid?: InputMaybe<SortOrder>;\n};\n\nexport type TimestampOrderByWithRelationInput = {\n from?: InputMaybe<SortOrder>;\n id?: InputMaybe<SortOrder>;\n timestamp?: InputMaybe<SortOrder>;\n tree?: InputMaybe<SortOrder>;\n txid?: InputMaybe<SortOrder>;\n};\n\nexport enum TimestampScalarFieldEnum {\n From = 'from',\n Id = 'id',\n Timestamp = 'timestamp',\n Tree = 'tree',\n Txid = 'txid'\n}\n\nexport type TimestampScalarWhereWithAggregatesInput = {\n AND?: InputMaybe<Array<TimestampScalarWhereWithAggregatesInput>>;\n NOT?: InputMaybe<Array<TimestampScalarWhereWithAggregatesInput>>;\n OR?: InputMaybe<Array<TimestampScalarWhereWithAggregatesInput>>;\n from?: InputMaybe<StringWithAggregatesFilter>;\n id?: InputMaybe<StringWithAggregatesFilter>;\n timestamp?: InputMaybe<IntWithAggregatesFilter>;\n tree?: InputMaybe<StringWithAggregatesFilter>;\n txid?: InputMaybe<StringWithAggregatesFilter>;\n};\n\nexport type TimestampSumAggregate = {\n __typename?: 'TimestampSumAggregate';\n timestamp?: Maybe<Scalars['Int']['output']>;\n};\n\nexport type TimestampSumOrderByAggregateInput = {\n timestamp?: InputMaybe<SortOrder>;\n};\n\nexport type TimestampUpdateInput = {\n from?: InputMaybe<StringFieldUpdateOperationsInput>;\n id?: InputMaybe<StringFieldUpdateOperationsInput>;\n timestamp?: InputMaybe<IntFieldUpdateOperationsInput>;\n tree?: InputMaybe<StringFieldUpdateOperationsInput>;\n txid?: InputMaybe<StringFieldUpdateOperationsInput>;\n};\n\nexport type TimestampUpdateManyMutationInput = {\n from?: InputMaybe<StringFieldUpdateOperationsInput>;\n id?: InputMaybe<StringFieldUpdateOperationsInput>;\n timestamp?: InputMaybe<IntFieldUpdateOperationsInput>;\n tree?: InputMaybe<StringFieldUpdateOperationsInput>;\n txid?: InputMaybe<StringFieldUpdateOperationsInput>;\n};\n\nexport type TimestampWhereInput = {\n AND?: InputMaybe<Array<TimestampWhereInput>>;\n NOT?: InputMaybe<Array<TimestampWhereInput>>;\n OR?: InputMaybe<Array<TimestampWhereInput>>;\n from?: InputMaybe<StringFilter>;\n id?: InputMaybe<StringFilter>;\n timestamp?: InputMaybe<IntFilter>;\n tree?: InputMaybe<StringFilter>;\n txid?: InputMaybe<StringFilter>;\n};\n\nexport type TimestampWhereUniqueInput = {\n id?: InputMaybe<Scalars['String']['input']>;\n};\n\nexport type AttestationFieldsFragment = { __typename?: 'Attestation', id: string, decodedDataJson: string, attester: string, refUID: string, revoked: boolean, schemaId: string, txid: string, timeCreated: number, time: number, isOffchain: boolean, schema: { __typename?: 'Schema', schemaNames: Array<{ __typename?: 'SchemaName', name: string }> } } & { ' $fragmentName'?: 'AttestationFieldsFragment' };\n\nexport type SchemaFieldsFragment = { __typename?: 'Schema', id: string, resolver: string, revocable: boolean, schema: string, index: string, time: number, txid: string, creator: string, schemaNames: Array<{ __typename?: 'SchemaName', name: string }> } & { ' $fragmentName'?: 'SchemaFieldsFragment' };\n\nexport type GetSchemasQueryVariables = Exact<{\n where: SchemaWhereInput;\n}>;\n\n\nexport type GetSchemasQuery = { __typename?: 'Query', schemas: Array<{ __typename?: 'Schema', id: string, schema: string, schemaNames: Array<{ __typename?: 'SchemaName', name: string }> }> };\n\nexport type GetSchemaByNameQueryVariables = Exact<{\n where: SchemaWhereInput;\n}>;\n\n\nexport type GetSchemaByNameQuery = { __typename?: 'Query', schemas: Array<{ __typename?: 'Schema', id: string, schema: string, schemaNames: Array<{ __typename?: 'SchemaName', name: string }> }> };\n\nexport type GetSeedsQueryVariables = Exact<{\n where: AttestationWhereInput;\n take?: InputMaybe<Scalars['Int']['input']>;\n skip?: InputMaybe<Scalars['Int']['input']>;\n}>;\n\n\nexport type GetSeedsQuery = { __typename?: 'Query', itemSeeds: Array<{ __typename?: 'Attestation', id: string, decodedDataJson: string, attester: string, refUID: string, revoked: boolean, revocationTime: number, schemaId: string, timeCreated: number, isOffchain: boolean, schema: { __typename?: 'Schema', schemaNames: Array<{ __typename?: 'SchemaName', name: string }> } }> };\n\nexport type GetSeedIdsQueryVariables = Exact<{\n where: AttestationWhereInput;\n}>;\n\n\nexport type GetSeedIdsQuery = { __typename?: 'Query', itemSeedIds: Array<{ __typename?: 'Attestation', id: string }> };\n\nexport type GetStorageTransactionIdQueryVariables = Exact<{\n where: AttestationWhereInput;\n}>;\n\n\nexport type GetStorageTransactionIdQuery = { __typename?: 'Query', storageTransactionId: Array<{ __typename?: 'Attestation', id: string, decodedDataJson: string }> };\n\nexport type GetVersionsQueryVariables = Exact<{\n where: AttestationWhereInput;\n}>;\n\n\nexport type GetVersionsQuery = { __typename?: 'Query', itemVersions: Array<(\n { __typename?: 'Attestation' }\n & { ' $fragmentRefs'?: { 'AttestationFieldsFragment': AttestationFieldsFragment } }\n )> };\n\nexport type GetPropertiesQueryVariables = Exact<{\n where: AttestationWhereInput;\n}>;\n\n\nexport type GetPropertiesQuery = { __typename?: 'Query', itemProperties: Array<(\n { __typename?: 'Attestation' }\n & { ' $fragmentRefs'?: { 'AttestationFieldsFragment': AttestationFieldsFragment } }\n )> };\n\nexport type GetAllPropertiesForAllVersionsQueryVariables = Exact<{\n where: AttestationWhereInput;\n}>;\n\n\nexport type GetAllPropertiesForAllVersionsQuery = { __typename?: 'Query', allProperties: Array<(\n { __typename?: 'Attestation' }\n & { ' $fragmentRefs'?: { 'AttestationFieldsFragment': AttestationFieldsFragment } }\n )> };\n\nexport type GetFilesMetadataQueryVariables = Exact<{\n where: AttestationWhereInput;\n}>;\n\n\nexport type GetFilesMetadataQuery = { __typename?: 'Query', filesMetadata: Array<(\n { __typename?: 'Attestation' }\n & { ' $fragmentRefs'?: { 'AttestationFieldsFragment': AttestationFieldsFragment } }\n )> };\n\nexport type GetImageSeedsQueryVariables = Exact<{\n where: AttestationWhereInput;\n}>;\n\n\nexport type GetImageSeedsQuery = { __typename?: 'Query', imageSeeds: Array<{ __typename?: 'Attestation', id: string, decodedDataJson: string, attester: string, refUID: string, revoked: boolean, schemaId: string, txid: string, timeCreated: number, time: number, isOffchain: boolean, schema: { __typename?: 'Schema', schemaNames: Array<{ __typename?: 'SchemaName', name: string }> } }> };\n\nexport type GetImageVersionsQueryVariables = Exact<{\n where: AttestationWhereInput;\n}>;\n\n\nexport type GetImageVersionsQuery = { __typename?: 'Query', imageVersions: Array<(\n { __typename?: 'Attestation' }\n & { ' $fragmentRefs'?: { 'AttestationFieldsFragment': AttestationFieldsFragment } }\n )> };\n\nexport const AttestationFieldsFragmentDoc = {\"kind\":\"Document\",\"definitions\":[{\"kind\":\"FragmentDefinition\",\"name\":{\"kind\":\"Name\",\"value\":\"attestationFields\"},\"typeCondition\":{\"kind\":\"NamedType\",\"name\":{\"kind\":\"Name\",\"value\":\"Attestation\"}},\"selectionSet\":{\"kind\":\"SelectionSet\",\"selections\":[{\"kind\":\"Field\",\"name\":{\"kind\":\"Name\",\"value\":\"id\"}},{\"kind\":\"Field\",\"name\":{\"kind\":\"Name\",\"value\":\"decodedDataJson\"}},{\"kind\":\"Field\",\"name\":{\"kind\":\"Name\",\"value\":\"attester\"}},{\"kind\":\"Field\",\"name\":{\"kind\":\"Name\",\"value\":\"schema\"},\"selectionSet\":{\"kind\":\"SelectionSet\",\"selections\":[{\"kind\":\"Field\",\"name\":{\"kind\":\"Name\",\"value\":\"schemaNames\"},\"selectionSet\":{\"kind\":\"SelectionSet\",\"selections\":[{\"kind\":\"Field\",\"name\":{\"kind\":\"Name\",\"value\":\"name\"}}]}}]}},{\"kind\":\"Field\",\"name\":{\"kind\":\"Name\",\"value\":\"refUID\"}},{\"kind\":\"Field\",\"name\":{\"kind\":\"Name\",\"value\":\"revoked\"}},{\"kind\":\"Field\",\"name\":{\"kind\":\"Name\",\"value\":\"schemaId\"}},{\"kind\":\"Field\",\"name\":{\"kind\":\"Name\",\"value\":\"txid\"}},{\"kind\":\"Field\",\"name\":{\"kind\":\"Name\",\"value\":\"timeCreated\"}},{\"kind\":\"Field\",\"name\":{\"kind\":\"Name\",\"value\":\"time\"}},{\"kind\":\"Field\",\"name\":{\"kind\":\"Name\",\"value\":\"isOffchain\"}}]}}]} as unknown as DocumentNode<AttestationFieldsFragment, unknown>;\nexport const SchemaFieldsFragmentDoc = {\"kind\":\"Document\",\"definitions\":[{\"kind\":\"FragmentDefinition\",\"name\":{\"kind\":\"Name\",\"value\":\"schemaFields\"},\"typeCondition\":{\"kind\":\"NamedType\",\"name\":{\"kind\":\"Name\",\"value\":\"Schema\"}},\"selectionSet\":{\"kind\":\"SelectionSet\",\"selections\":[{\"kind\":\"Field\",\"name\":{\"kind\":\"Name\",\"value\":\"id\"}},{\"kind\":\"Field\",\"name\":{\"kind\":\"Name\",\"value\":\"resolver\"}},{\"kind\":\"Field\",\"name\":{\"kind\":\"Name\",\"value\":\"revocable\"}},{\"kind\":\"Field\",\"name\":{\"kind\":\"Name\",\"value\":\"schema\"}},{\"kind\":\"Field\",\"name\":{\"kind\":\"Name\",\"value\":\"index\"}},{\"kind\":\"Field\",\"name\":{\"kind\":\"Name\",\"value\":\"schemaNames\"},\"selectionSet\":{\"kind\":\"SelectionSet\",\"selections\":[{\"kind\":\"Field\",\"name\":{\"kind\":\"Name\",\"value\":\"name\"}}]}},{\"kind\":\"Field\",\"name\":{\"kind\":\"Name\",\"value\":\"time\"}},{\"kind\":\"Field\",\"name\":{\"kind\":\"Name\",\"value\":\"txid\"}},{\"kind\":\"Field\",\"name\":{\"kind\":\"Name\",\"value\":\"creator\"}}]}}]} as unknown as DocumentNode<SchemaFieldsFragment, unknown>;\nexport const GetSchemasDocument = {\"kind\":\"Document\",\"definitions\":[{\"kind\":\"OperationDefinition\",\"operation\":\"query\",\"name\":{\"kind\":\"Name\",\"value\":\"GetSchemas\"},\"variableDefinitions\":[{\"kind\":\"VariableDefinition\",\"variable\":{\"kind\":\"Variable\",\"name\":{\"kind\":\"Name\",\"value\":\"where\"}},\"type\":{\"kind\":\"NonNullType\",\"type\":{\"kind\":\"NamedType\",\"name\":{\"kind\":\"Name\",\"value\":\"SchemaWhereInput\"}}}}],\"selectionSet\":{\"kind\":\"SelectionSet\",\"selections\":[{\"kind\":\"Field\",\"alias\":{\"kind\":\"Name\",\"value\":\"schemas\"},\"name\":{\"kind\":\"Name\",\"value\":\"schemata\"},\"arguments\":[{\"kind\":\"Argument\",\"name\":{\"kind\":\"Name\",\"value\":\"where\"},\"value\":{\"kind\":\"Variable\",\"name\":{\"kind\":\"Name\",\"value\":\"where\"}}}],\"selectionSet\":{\"kind\":\"SelectionSet\",\"selections\":[{\"kind\":\"Field\",\"name\":{\"kind\":\"Name\",\"value\":\"id\"}},{\"kind\":\"Field\",\"name\":{\"kind\":\"Name\",\"value\":\"schema\"}},{\"kind\":\"Field\",\"name\":{\"kind\":\"Name\",\"value\":\"schemaNames\"},\"selectionSet\":{\"kind\":\"SelectionSet\",\"selections\":[{\"kind\":\"Field\",\"name\":{\"kind\":\"Name\",\"value\":\"name\"}}]}}]}}]}}]} as unknown as DocumentNode<GetSchemasQuery, GetSchemasQueryVariables>;\nexport const GetSchemaByNameDocument = {\"kind\":\"Document\",\"definitions\":[{\"kind\":\"OperationDefinition\",\"operation\":\"query\",\"name\":{\"kind\":\"Name\",\"value\":\"GetSchemaByName\"},\"variableDefinitions\":[{\"kind\":\"VariableDefinition\",\"variable\":{\"kind\":\"Variable\",\"name\":{\"kind\":\"Name\",\"value\":\"where\"}},\"type\":{\"kind\":\"NonNullType\",\"type\":{\"kind\":\"NamedType\",\"name\":{\"kind\":\"Name\",\"value\":\"SchemaWhereInput\"}}}}],\"selectionSet\":{\"kind\":\"SelectionSet\",\"selections\":[{\"kind\":\"Field\",\"alias\":{\"kind\":\"Name\",\"value\":\"schemas\"},\"name\":{\"kind\":\"Name\",\"value\":\"schemata\"},\"arguments\":[{\"kind\":\"Argument\",\"name\":{\"kind\":\"Name\",\"value\":\"where\"},\"value\":{\"kind\":\"Variable\",\"name\":{\"kind\":\"Name\",\"value\":\"where\"}}}],\"selectionSet\":{\"kind\":\"SelectionSet\",\"selections\":[{\"kind\":\"Field\",\"name\":{\"kind\":\"Name\",\"value\":\"id\"}},{\"kind\":\"Field\",\"name\":{\"kind\":\"Name\",\"value\":\"schema\"}},{\"kind\":\"Field\",\"name\":{\"kind\":\"Name\",\"value\":\"schemaNames\"},\"selectionSet\":{\"kind\":\"SelectionSet\",\"selections\":[{\"kind\":\"Field\",\"name\":{\"kind\":\"Name\",\"value\":\"name\"}}]}}]}}]}}]} as unknown as DocumentNode<GetSchemaByNameQuery, GetSchemaByNameQueryVariables>;\nexport const GetSeedsDocument = {\"kind\":\"Document\",\"definitions\":[{\"kind\":\"OperationDefinition\",\"operation\":\"query\",\"name\":{\"kind\":\"Name\",\"value\":\"GetSeeds\"},\"variableDefinitions\":[{\"kind\":\"VariableDefinition\",\"variable\":{\"kind\":\"Variable\",\"name\":{\"kind\":\"Name\",\"value\":\"where\"}},\"type\":{\"kind\":\"NonNullType\",\"type\":{\"kind\":\"NamedType\",\"name\":{\"kind\":\"Name\",\"value\":\"AttestationWhereInput\"}}}},{\"kind\":\"VariableDefinition\",\"variable\":{\"kind\":\"Variable\",\"name\":{\"kind\":\"Name\",\"value\":\"take\"}},\"type\":{\"kind\":\"NamedType\",\"name\":{\"kind\":\"Name\",\"value\":\"Int\"}}},{\"kind\":\"VariableDefinition\",\"variable\":{\"kind\":\"Variable\",\"name\":{\"kind\":\"Name\",\"value\":\"skip\"}},\"type\":{\"kind\":\"NamedType\",\"name\":{\"kind\":\"Name\",\"value\":\"Int\"}}}],\"selectionSet\":{\"kind\":\"SelectionSet\",\"selections\":[{\"kind\":\"Field\",\"alias\":{\"kind\":\"Name\",\"value\":\"itemSeeds\"},\"name\":{\"kind\":\"Name\",\"value\":\"attestations\"},\"arguments\":[{\"kind\":\"Argument\",\"name\":{\"kind\":\"Name\",\"value\":\"where\"},\"value\":{\"kind\":\"Variable\",\"name\":{\"kind\":\"Name\",\"value\":\"where\"}}},{\"kind\":\"Argument\",\"name\":{\"kind\":\"Name\",\"value\":\"orderBy\"},\"value\":{\"kind\":\"ListValue\",\"values\":[{\"kind\":\"ObjectValue\",\"fields\":[{\"kind\":\"ObjectField\",\"name\":{\"kind\":\"Name\",\"value\":\"timeCreated\"},\"value\":{\"kind\":\"EnumValue\",\"value\":\"desc\"}}]}]}},{\"kind\":\"Argument\",\"name\":{\"kind\":\"Name\",\"value\":\"take\"},\"value\":{\"kind\":\"Variable\",\"name\":{\"kind\":\"Name\",\"value\":\"take\"}}},{\"kind\":\"Argument\",\"name\":{\"kind\":\"Name\",\"value\":\"skip\"},\"value\":{\"kind\":\"Variable\",\"name\":{\"kind\":\"Name\",\"value\":\"skip\"}}}],\"selectionSet\":{\"kind\":\"SelectionSet\",\"selections\":[{\"kind\":\"Field\",\"name\":{\"kind\":\"Name\",\"value\":\"id\"}},{\"kind\":\"Field\",\"name\":{\"kind\":\"Name\",\"value\":\"decodedDataJson\"}},{\"kind\":\"Field\",\"name\":{\"kind\":\"Name\",\"value\":\"attester\"}},{\"kind\":\"Field\",\"name\":{\"kind\":\"Name\",\"value\":\"schema\"},\"selectionSet\":{\"kind\":\"SelectionSet\",\"selections\":[{\"kind\":\"Field\",\"name\":{\"kind\":\"Name\",\"value\":\"schemaNames\"},\"selectionSet\":{\"kind\":\"SelectionSet\",\"selections\":[{\"kind\":\"Field\",\"name\":{\"kind\":\"Name\",\"value\":\"name\"}}]}}]}},{\"kind\":\"Field\",\"name\":{\"kind\":\"Name\",\"value\":\"refUID\"}},{\"kind\":\"Field\",\"name\":{\"kind\":\"Name\",\"value\":\"revoked\"}},{\"kind\":\"Field\",\"name\":{\"kind\":\"Name\",\"value\":\"revocationTime\"}},{\"kind\":\"Field\",\"name\":{\"kind\":\"Name\",\"value\":\"schemaId\"}},{\"kind\":\"Field\",\"name\":{\"kind\":\"Name\",\"value\":\"timeCreated\"}},{\"kind\":\"Field\",\"name\":{\"kind\":\"Name\",\"value\":\"isOffchain\"}}]}}]}}]} as unknown as DocumentNode<GetSeedsQuery, GetSeedsQueryVariables>;\nexport const GetSeedIdsDocument = {\"kind\":\"Document\",\"definitions\":[{\"kind\":\"OperationDefinition\",\"operation\":\"query\",\"name\":{\"kind\":\"Name\",\"value\":\"GetSeedIds\"},\"variableDefinitions\":[{\"kind\":\"VariableDefinition\",\"variable\":{\"kind\":\"Variable\",\"name\":{\"kind\":\"Name\",\"value\":\"where\"}},\"type\":{\"kind\":\"NonNullType\",\"type\":{\"kind\":\"NamedType\",\"name\":{\"kind\":\"Name\",\"value\":\"AttestationWhereInput\"}}}}],\"selectionSet\":{\"kind\":\"SelectionSet\",\"selections\":[{\"kind\":\"Field\",\"alias\":{\"kind\":\"Name\",\"value\":\"itemSeedIds\"},\"name\":{\"kind\":\"Name\",\"value\":\"attestations\"},\"arguments\":[{\"kind\":\"Argument\",\"name\":{\"kind\":\"Name\",\"value\":\"where\"},\"value\":{\"kind\":\"Variable\",\"name\":{\"kind\":\"Name\",\"value\":\"where\"}}},{\"kind\":\"Argument\",\"name\":{\"kind\":\"Name\",\"value\":\"orderBy\"},\"value\":{\"kind\":\"ListValue\",\"values\":[{\"kind\":\"ObjectValue\",\"fields\":[{\"kind\":\"ObjectField\",\"name\":{\"kind\":\"Name\",\"value\":\"timeCreated\"},\"value\":{\"kind\":\"EnumValue\",\"value\":\"desc\"}}]}]}}],\"selectionSet\":{\"kind\":\"SelectionSet\",\"selections\":[{\"kind\":\"Field\",\"name\":{\"kind\":\"Name\",\"value\":\"id\"}}]}}]}}]} as unknown as DocumentNode<GetSeedIdsQuery, GetSeedIdsQueryVariables>;\nexport const GetStorageTransactionIdDocument = {\"kind\":\"Document\",\"definitions\":[{\"kind\":\"OperationDefinition\",\"operation\":\"query\",\"name\":{\"kind\":\"Name\",\"value\":\"GetStorageTransactionId\"},\"variableDefinitions\":[{\"kind\":\"VariableDefinition\",\"variable\":{\"kind\":\"Variable\",\"name\":{\"kind\":\"Name\",\"value\":\"where\"}},\"type\":{\"kind\":\"NonNullType\",\"type\":{\"kind\":\"NamedType\",\"name\":{\"kind\":\"Name\",\"value\":\"AttestationWhereInput\"}}}}],\"selectionSet\":{\"kind\":\"SelectionSet\",\"selections\":[{\"kind\":\"Field\",\"alias\":{\"kind\":\"Name\",\"value\":\"storageTransactionId\"},\"name\":{\"kind\":\"Name\",\"value\":\"attestations\"},\"arguments\":[{\"kind\":\"Argument\",\"name\":{\"kind\":\"Name\",\"value\":\"where\"},\"value\":{\"kind\":\"Variable\",\"name\":{\"kind\":\"Name\",\"value\":\"where\"}}},{\"kind\":\"Argument\",\"name\":{\"kind\":\"Name\",\"value\":\"orderBy\"},\"value\":{\"kind\":\"ListValue\",\"values\":[{\"kind\":\"ObjectValue\",\"fields\":[{\"kind\":\"ObjectField\",\"name\":{\"kind\":\"Name\",\"value\":\"timeCreated\"},\"value\":{\"kind\":\"EnumValue\",\"value\":\"desc\"}}]}]}}],\"selectionSet\":{\"kind\":\"SelectionSet\",\"selections\":[{\"kind\":\"Field\",\"name\":{\"kind\":\"Name\",\"value\":\"id\"}},{\"kind\":\"Field\",\"name\":{\"kind\":\"Name\",\"value\":\"decodedDataJson\"}}]}}]}}]} as unknown as DocumentNode<GetStorageTransactionIdQuery, GetStorageTransactionIdQueryVariables>;\nexport const GetVersionsDocument = {\"kind\":\"Document\",\"definitions\":[{\"kind\":\"OperationDefinition\",\"operation\":\"query\",\"name\":{\"kind\":\"Name\",\"value\":\"GetVersions\"},\"variableDefinitions\":[{\"kind\":\"VariableDefinition\",\"variable\":{\"kind\":\"Variable\",\"name\":{\"kind\":\"Name\",\"value\":\"where\"}},\"type\":{\"kind\":\"NonNullType\",\"type\":{\"kind\":\"NamedType\",\"name\":{\"kind\":\"Name\",\"value\":\"AttestationWhereInput\"}}}}],\"selectionSet\":{\"kind\":\"SelectionSet\",\"selections\":[{\"kind\":\"Field\",\"alias\":{\"kind\":\"Name\",\"value\":\"itemVersions\"},\"name\":{\"kind\":\"Name\",\"value\":\"attestations\"},\"arguments\":[{\"kind\":\"Argument\",\"name\":{\"kind\":\"Name\",\"value\":\"where\"},\"value\":{\"kind\":\"Variable\",\"name\":{\"kind\":\"Name\",\"value\":\"where\"}}},{\"kind\":\"Argument\",\"name\":{\"kind\":\"Name\",\"value\":\"orderBy\"},\"value\":{\"kind\":\"ListValue\",\"values\":[{\"kind\":\"ObjectValue\",\"fields\":[{\"kind\":\"ObjectField\",\"name\":{\"kind\":\"Name\",\"value\":\"timeCreated\"},\"value\":{\"kind\":\"EnumValue\",\"value\":\"desc\"}}]}]}}],\"selectionSet\":{\"kind\":\"SelectionSet\",\"selections\":[{\"kind\":\"FragmentSpread\",\"name\":{\"kind\":\"Name\",\"value\":\"attestationFields\"}}]}}]}},{\"kind\":\"FragmentDefinition\",\"name\":{\"kind\":\"Name\",\"value\":\"attestationFields\"},\"typeCondition\":{\"kind\":\"NamedType\",\"name\":{\"kind\":\"Name\",\"value\":\"Attestation\"}},\"selectionSet\":{\"kind\":\"SelectionSet\",\"selections\":[{\"kind\":\"Field\",\"name\":{\"kind\":\"Name\",\"value\":\"id\"}},{\"kind\":\"Field\",\"name\":{\"kind\":\"Name\",\"value\":\"decodedDataJson\"}},{\"kind\":\"Field\",\"name\":{\"kind\":\"Name\",\"value\":\"attester\"}},{\"kind\":\"Field\",\"name\":{\"kind\":\"Name\",\"value\":\"schema\"},\"selectionSet\":{\"kind\":\"SelectionSet\",\"selections\":[{\"kind\":\"Field\",\"name\":{\"kind\":\"Name\",\"value\":\"schemaNames\"},\"selectionSet\":{\"kind\":\"SelectionSet\",\"selections\":[{\"kind\":\"Field\",\"name\":{\"kind\":\"Name\",\"value\":\"name\"}}]}}]}},{\"kind\":\"Field\",\"name\":{\"kind\":\"Name\",\"value\":\"refUID\"}},{\"kind\":\"Field\",\"name\":{\"kind\":\"Name\",\"value\":\"revoked\"}},{\"kind\":\"Field\",\"name\":{\"kind\":\"Name\",\"value\":\"schemaId\"}},{\"kind\":\"Field\",\"name\":{\"kind\":\"Name\",\"value\":\"txid\"}},{\"kind\":\"Field\",\"name\":{\"kind\":\"Name\",\"value\":\"timeCreated\"}},{\"kind\":\"Field\",\"name\":{\"kind\":\"Name\",\"value\":\"time\"}},{\"kind\":\"Field\",\"name\":{\"kind\":\"Name\",\"value\":\"isOffchain\"}}]}}]} as unknown as DocumentNode<GetVersionsQuery, GetVersionsQueryVariables>;\nexport const GetPropertiesDocument = {\"kind\":\"Document\",\"definitions\":[{\"kind\":\"OperationDefinition\",\"operation\":\"query\",\"name\":{\"kind\":\"Name\",\"value\":\"GetProperties\"},\"variableDefinitions\":[{\"kind\":\"VariableDefinition\",\"variable\":{\"kind\":\"Variable\",\"name\":{\"kind\":\"Name\",\"value\":\"where\"}},\"type\":{\"kind\":\"NonNullType\",\"type\":{\"kind\":\"NamedType\",\"name\":{\"kind\":\"Name\",\"value\":\"AttestationWhereInput\"}}}}],\"selectionSet\":{\"kind\":\"SelectionSet\",\"selections\":[{\"kind\":\"Field\",\"alias\":{\"kind\":\"Name\",\"value\":\"itemProperties\"},\"name\":{\"kind\":\"Name\",\"value\":\"attestations\"},\"arguments\":[{\"kind\":\"Argument\",\"name\":{\"kind\":\"Name\",\"value\":\"where\"},\"value\":{\"kind\":\"Variable\",\"name\":{\"kind\":\"Name\",\"value\":\"where\"}}},{\"kind\":\"Argument\",\"name\":{\"kind\":\"Name\",\"value\":\"orderBy\"},\"value\":{\"kind\":\"ListValue\",\"values\":[{\"kind\":\"ObjectValue\",\"fields\":[{\"kind\":\"ObjectField\",\"name\":{\"kind\":\"Name\",\"value\":\"timeCreated\"},\"value\":{\"kind\":\"EnumValue\",\"value\":\"desc\"}}]}]}}],\"selectionSet\":{\"kind\":\"SelectionSet\",\"selections\":[{\"kind\":\"FragmentSpread\",\"name\":{\"kind\":\"Name\",\"value\":\"attestationFields\"}}]}}]}},{\"kind\":\"FragmentDefinition\",\"name\":{\"kind\":\"Name\",\"value\":\"attestationFields\"},\"typeCondition\":{\"kind\":\"NamedType\",\"name\":{\"kind\":\"Name\",\"value\":\"Attestation\"}},\"selectionSet\":{\"kind\":\"SelectionSet\",\"selections\":[{\"kind\":\"Field\",\"name\":{\"kind\":\"Name\",\"value\":\"id\"}},{\"kind\":\"Field\",\"name\":{\"kind\":\"Name\",\"value\":\"decodedDataJson\"}},{\"kind\":\"Field\",\"name\":{\"kind\":\"Name\",\"value\":\"attester\"}},{\"kind\":\"Field\",\"name\":{\"kind\":\"Name\",\"value\":\"schema\"},\"selectionSet\":{\"kind\":\"SelectionSet\",\"selections\":[{\"kind\":\"Field\",\"name\":{\"kind\":\"Name\",\"value\":\"schemaNames\"},\"selectionSet\":{\"kind\":\"SelectionSet\",\"selections\":[{\"kind\":\"Field\",\"name\":{\"kind\":\"Name\",\"value\":\"name\"}}]}}]}},{\"kind\":\"Field\",\"name\":{\"kind\":\"Name\",\"value\":\"refUID\"}},{\"kind\":\"Field\",\"name\":{\"kind\":\"Name\",\"value\":\"revoked\"}},{\"kind\":\"Field\",\"name\":{\"kind\":\"Name\",\"value\":\"schemaId\"}},{\"kind\":\"Field\",\"name\":{\"kind\":\"Name\",\"value\":\"txid\"}},{\"kind\":\"Field\",\"name\":{\"kind\":\"Name\",\"value\":\"timeCreated\"}},{\"kind\":\"Field\",\"name\":{\"kind\":\"Name\",\"value\":\"time\"}},{\"kind\":\"Field\",\"name\":{\"kind\":\"Name\",\"value\":\"isOffchain\"}}]}}]} as unknown as DocumentNode<GetPropertiesQuery, GetPropertiesQueryVariables>;\nexport const GetAllPropertiesForAllVersionsDocument = {\"kind\":\"Document\",\"definitions\":[{\"kind\":\"OperationDefinition\",\"operation\":\"query\",\"name\":{\"kind\":\"Name\",\"value\":\"GetAllPropertiesForAllVersions\"},\"variableDefinitions\":[{\"kind\":\"VariableDefinition\",\"variable\":{\"kind\":\"Variable\",\"name\":{\"kind\":\"Name\",\"value\":\"where\"}},\"type\":{\"kind\":\"NonNullType\",\"type\":{\"kind\":\"NamedType\",\"name\":{\"kind\":\"Name\",\"value\":\"AttestationWhereInput\"}}}}],\"selectionSet\":{\"kind\":\"SelectionSet\",\"selections\":[{\"kind\":\"Field\",\"alias\":{\"kind\":\"Name\",\"value\":\"allProperties\"},\"name\":{\"kind\":\"Name\",\"value\":\"attestations\"},\"arguments\":[{\"kind\":\"Argument\",\"name\":{\"kind\":\"Name\",\"value\":\"where\"},\"value\":{\"kind\":\"Variable\",\"name\":{\"kind\":\"Name\",\"value\":\"where\"}}},{\"kind\":\"Argument\",\"name\":{\"kind\":\"Name\",\"value\":\"orderBy\"},\"value\":{\"kind\":\"ListValue\",\"values\":[{\"kind\":\"ObjectValue\",\"fields\":[{\"kind\":\"ObjectField\",\"name\":{\"kind\":\"Name\",\"value\":\"timeCreated\"},\"value\":{\"kind\":\"EnumValue\",\"value\":\"desc\"}}]}]}}],\"selectionSet\":{\"kind\":\"SelectionSet\",\"selections\":[{\"kind\":\"FragmentSpread\",\"name\":{\"kind\":\"Name\",\"value\":\"attestationFields\"}}]}}]}},{\"kind\":\"FragmentDefinition\",\"name\":{\"kind\":\"Name\",\"value\":\"attestationFields\"},\"typeCondition\":{\"kind\":\"NamedType\",\"name\":{\"kind\":\"Name\",\"value\":\"Attestation\"}},\"selectionSet\":{\"kind\":\"SelectionSet\",\"selections\":[{\"kind\":\"Field\",\"name\":{\"kind\":\"Name\",\"value\":\"id\"}},{\"kind\":\"Field\",\"name\":{\"kind\":\"Name\",\"value\":\"decodedDataJson\"}},{\"kind\":\"Field\",\"name\":{\"kind\":\"Name\",\"value\":\"attester\"}},{\"kind\":\"Field\",\"name\":{\"kind\":\"Name\",\"value\":\"schema\"},\"selectionSet\":{\"kind\":\"SelectionSet\",\"selections\":[{\"kind\":\"Field\",\"name\":{\"kind\":\"Name\",\"value\":\"schemaNames\"},\"selectionSet\":{\"kind\":\"SelectionSet\",\"selections\":[{\"kind\":\"Field\",\"name\":{\"kind\":\"Name\",\"value\":\"name\"}}]}}]}},{\"kind\":\"Field\",\"name\":{\"kind\":\"Name\",\"value\":\"refUID\"}},{\"kind\":\"Field\",\"name\":{\"kind\":\"Name\",\"value\":\"revoked\"}},{\"kind\":\"Field\",\"name\":{\"kind\":\"Name\",\"value\":\"schemaId\"}},{\"kind\":\"Field\",\"name\":{\"kind\":\"Name\",\"value\":\"txid\"}},{\"kind\":\"Field\",\"name\":{\"kind\":\"Name\",\"value\":\"timeCreated\"}},{\"kind\":\"Field\",\"name\":{\"kind\":\"Name\",\"value\":\"time\"}},{\"kind\":\"Field\",\"name\":{\"kind\":\"Name\",\"value\":\"isOffchain\"}}]}}]} as unknown as DocumentNode<GetAllPropertiesForAllVersionsQuery, GetAllPropertiesForAllVersionsQueryVariables>;\nexport const GetFilesMetadataDocument = {\"kind\":\"Document\",\"definitions\":[{\"kind\":\"OperationDefinition\",\"operation\":\"query\",\"name\":{\"kind\":\"Name\",\"value\":\"GetFilesMetadata\"},\"variableDefinitions\":[{\"kind\":\"VariableDefinition\",\"variable\":{\"kind\":\"Variable\",\"name\":{\"kind\":\"Name\",\"value\":\"where\"}},\"type\":{\"kind\":\"NonNullType\",\"type\":{\"kind\":\"NamedType\",\"name\":{\"kind\":\"Name\",\"value\":\"AttestationWhereInput\"}}}}],\"selectionSet\":{\"kind\":\"SelectionSet\",\"selections\":[{\"kind\":\"Field\",\"alias\":{\"kind\":\"Name\",\"value\":\"filesMetadata\"},\"name\":{\"kind\":\"Name\",\"value\":\"attestations\"},\"arguments\":[{\"kind\":\"Argument\",\"name\":{\"kind\":\"Name\",\"value\":\"where\"},\"value\":{\"kind\":\"Variable\",\"name\":{\"kind\":\"Name\",\"value\":\"where\"}}},{\"kind\":\"Argument\",\"name\":{\"kind\":\"Name\",\"value\":\"orderBy\"},\"value\":{\"kind\":\"ListValue\",\"values\":[{\"kind\":\"ObjectValue\",\"fields\":[{\"kind\":\"ObjectField\",\"name\":{\"kind\":\"Name\",\"value\":\"timeCreated\"},\"value\":{\"kind\":\"EnumValue\",\"value\":\"desc\"}}]}]}}],\"selectionSet\":{\"kind\":\"SelectionSet\",\"selections\":[{\"kind\":\"FragmentSpread\",\"name\":{\"kind\":\"Name\",\"value\":\"attestationFields\"}}]}}]}},{\"kind\":\"FragmentDefinition\",\"name\":{\"kind\":\"Name\",\"value\":\"attestationFields\"},\"typeCondition\":{\"kind\":\"NamedType\",\"name\":{\"kind\":\"Name\",\"value\":\"Attestation\"}},\"selectionSet\":{\"kind\":\"SelectionSet\",\"selections\":[{\"kind\":\"Field\",\"name\":{\"kind\":\"Name\",\"value\":\"id\"}},{\"kind\":\"Field\",\"name\":{\"kind\":\"Name\",\"value\":\"decodedDataJson\"}},{\"kind\":\"Field\",\"name\":{\"kind\":\"Name\",\"value\":\"attester\"}},{\"kind\":\"Field\",\"name\":{\"kind\":\"Name\",\"value\":\"schema\"},\"selectionSet\":{\"kind\":\"SelectionSet\",\"selections\":[{\"kind\":\"Field\",\"name\":{\"kind\":\"Name\",\"value\":\"schemaNames\"},\"selectionSet\":{\"kind\":\"SelectionSet\",\"selections\":[{\"kind\":\"Field\",\"name\":{\"kind\":\"Name\",\"value\":\"name\"}}]}}]}},{\"kind\":\"Field\",\"name\":{\"kind\":\"Name\",\"value\":\"refUID\"}},{\"kind\":\"Field\",\"name\":{\"kind\":\"Name\",\"value\":\"revoked\"}},{\"kind\":\"Field\",\"name\":{\"kind\":\"Name\",\"value\":\"schemaId\"}},{\"kind\":\"Field\",\"name\":{\"kind\":\"Name\",\"value\":\"txid\"}},{\"kind\":\"Field\",\"name\":{\"kind\":\"Name\",\"value\":\"timeCreated\"}},{\"kind\":\"Field\",\"name\":{\"kind\":\"Name\",\"value\":\"time\"}},{\"kind\":\"Field\",\"name\":{\"kind\":\"Name\",\"value\":\"isOffchain\"}}]}}]} as unknown as DocumentNode<GetFilesMetadataQuery, GetFilesMetadataQueryVariables>;\nexport const GetImageSeedsDocument = {\"kind\":\"Document\",\"definitions\":[{\"kind\":\"OperationDefinition\",\"operation\":\"query\",\"name\":{\"kind\":\"Name\",\"value\":\"GetImageSeeds\"},\"variableDefinitions\":[{\"kind\":\"VariableDefinition\",\"variable\":{\"kind\":\"Variable\",\"name\":{\"kind\":\"Name\",\"value\":\"where\"}},\"type\":{\"kind\":\"NonNullType\",\"type\":{\"kind\":\"NamedType\",\"name\":{\"kind\":\"Name\",\"value\":\"AttestationWhereInput\"}}}}],\"selectionSet\":{\"kind\":\"SelectionSet\",\"selections\":[{\"kind\":\"Field\",\"alias\":{\"kind\":\"Name\",\"value\":\"imageSeeds\"},\"name\":{\"kind\":\"Name\",\"value\":\"attestations\"},\"arguments\":[{\"kind\":\"Argument\",\"name\":{\"kind\":\"Name\",\"value\":\"where\"},\"value\":{\"kind\":\"Variable\",\"name\":{\"kind\":\"Name\",\"value\":\"where\"}}},{\"kind\":\"Argument\",\"name\":{\"kind\":\"Name\",\"value\":\"orderBy\"},\"value\":{\"kind\":\"ListValue\",\"values\":[{\"kind\":\"ObjectValue\",\"fields\":[{\"kind\":\"ObjectField\",\"name\":{\"kind\":\"Name\",\"value\":\"timeCreated\"},\"value\":{\"kind\":\"EnumValue\",\"value\":\"desc\"}}]}]}}],\"selectionSet\":{\"kind\":\"SelectionSet\",\"selections\":[{\"kind\":\"Field\",\"name\":{\"kind\":\"Name\",\"value\":\"id\"}},{\"kind\":\"Field\",\"name\":{\"kind\":\"Name\",\"value\":\"decodedDataJson\"}},{\"kind\":\"Field\",\"name\":{\"kind\":\"Name\",\"value\":\"attester\"}},{\"kind\":\"Field\",\"name\":{\"kind\":\"Name\",\"value\":\"schema\"},\"selectionSet\":{\"kind\":\"SelectionSet\",\"selections\":[{\"kind\":\"Field\",\"name\":{\"kind\":\"Name\",\"value\":\"schemaNames\"},\"selectionSet\":{\"kind\":\"SelectionSet\",\"selections\":[{\"kind\":\"Field\",\"name\":{\"kind\":\"Name\",\"value\":\"name\"}}]}}]}},{\"kind\":\"Field\",\"name\":{\"kind\":\"Name\",\"value\":\"refUID\"}},{\"kind\":\"Field\",\"name\":{\"kind\":\"Name\",\"value\":\"revoked\"}},{\"kind\":\"Field\",\"name\":{\"kind\":\"Name\",\"value\":\"schemaId\"}},{\"kind\":\"Field\",\"name\":{\"kind\":\"Name\",\"value\":\"txid\"}},{\"kind\":\"Field\",\"name\":{\"kind\":\"Name\",\"value\":\"timeCreated\"}},{\"kind\":\"Field\",\"name\":{\"kind\":\"Name\",\"value\":\"time\"}},{\"kind\":\"Field\",\"name\":{\"kind\":\"Name\",\"value\":\"isOffchain\"}}]}}]}}]} as unknown as DocumentNode<GetImageSeedsQuery, GetImageSeedsQueryVariables>;\nexport const GetImageVersionsDocument = {\"kind\":\"Document\",\"definitions\":[{\"kind\":\"OperationDefinition\",\"operation\":\"query\",\"name\":{\"kind\":\"Name\",\"value\":\"GetImageVersions\"},\"variableDefinitions\":[{\"kind\":\"VariableDefinition\",\"variable\":{\"kind\":\"Variable\",\"name\":{\"kind\":\"Name\",\"value\":\"where\"}},\"type\":{\"kind\":\"NonNullType\",\"type\":{\"kind\":\"NamedType\",\"name\":{\"kind\":\"Name\",\"value\":\"AttestationWhereInput\"}}}}],\"selectionSet\":{\"kind\":\"SelectionSet\",\"selections\":[{\"kind\":\"Field\",\"alias\":{\"kind\":\"Name\",\"value\":\"imageVersions\"},\"name\":{\"kind\":\"Name\",\"value\":\"attestations\"},\"arguments\":[{\"kind\":\"Argument\",\"name\":{\"kind\":\"Name\",\"value\":\"where\"},\"value\":{\"kind\":\"Variable\",\"name\":{\"kind\":\"Name\",\"value\":\"where\"}}},{\"kind\":\"Argument\",\"name\":{\"kind\":\"Name\",\"value\":\"orderBy\"},\"value\":{\"kind\":\"ListValue\",\"values\":[{\"kind\":\"ObjectValue\",\"fields\":[{\"kind\":\"ObjectField\",\"name\":{\"kind\":\"Name\",\"value\":\"timeCreated\"},\"value\":{\"kind\":\"EnumValue\",\"value\":\"desc\"}}]}]}}],\"selectionSet\":{\"kind\":\"SelectionSet\",\"selections\":[{\"kind\":\"FragmentSpread\",\"name\":{\"kind\":\"Name\",\"value\":\"attestationFields\"}}]}}]}},{\"kind\":\"FragmentDefinition\",\"name\":{\"kind\":\"Name\",\"value\":\"attestationFields\"},\"typeCondition\":{\"kind\":\"NamedType\",\"name\":{\"kind\":\"Name\",\"value\":\"Attestation\"}},\"selectionSet\":{\"kind\":\"SelectionSet\",\"selections\":[{\"kind\":\"Field\",\"name\":{\"kind\":\"Name\",\"value\":\"id\"}},{\"kind\":\"Field\",\"name\":{\"kind\":\"Name\",\"value\":\"decodedDataJson\"}},{\"kind\":\"Field\",\"name\":{\"kind\":\"Name\",\"value\":\"attester\"}},{\"kind\":\"Field\",\"name\":{\"kind\":\"Name\",\"value\":\"schema\"},\"selectionSet\":{\"kind\":\"SelectionSet\",\"selections\":[{\"kind\":\"Field\",\"name\":{\"kind\":\"Name\",\"value\":\"schemaNames\"},\"selectionSet\":{\"kind\":\"SelectionSet\",\"selections\":[{\"kind\":\"Field\",\"name\":{\"kind\":\"Name\",\"value\":\"name\"}}]}}]}},{\"kind\":\"Field\",\"name\":{\"kind\":\"Name\",\"value\":\"refUID\"}},{\"kind\":\"Field\",\"name\":{\"kind\":\"Name\",\"value\":\"revoked\"}},{\"kind\":\"Field\",\"name\":{\"kind\":\"Name\",\"value\":\"schemaId\"}},{\"kind\":\"Field\",\"name\":{\"kind\":\"Name\",\"value\":\"txid\"}},{\"kind\":\"Field\",\"name\":{\"kind\":\"Name\",\"value\":\"timeCreated\"}},{\"kind\":\"Field\",\"name\":{\"kind\":\"Name\",\"value\":\"time\"}},{\"kind\":\"Field\",\"name\":{\"kind\":\"Name\",\"value\":\"isOffchain\"}}]}}]} as unknown as DocumentNode<GetImageVersionsQuery, GetImageVersionsQueryVariables>;","/* eslint-disable */\nimport * as types from './graphql';\nimport { TypedDocumentNode as DocumentNode } from '@graphql-typed-document-node/core';\n\n/**\n * Map of all GraphQL operations in the project.\n *\n * This map has several performance disadvantages:\n * 1. It is not tree-shakeable, so it will include all operations in the project.\n * 2. It is not minifiable, so the string of a GraphQL query will be multiple times inside the bundle.\n * 3. It does not support dead code elimination, so it will add unused operations.\n *\n * Therefore it is highly recommended to use the babel or swc plugin for production.\n * Learn more about it here: https://the-guild.dev/graphql/codegen/plugins/presets/preset-client#reducing-bundle-size\n */\ntype Documents = {\n \"\\n fragment attestationFields on Attestation {\\n id\\n decodedDataJson\\n attester\\n schema {\\n schemaNames {\\n name\\n }\\n }\\n refUID\\n revoked\\n schemaId\\n txid\\n timeCreated\\n time\\n isOffchain\\n }\\n\": typeof types.AttestationFieldsFragmentDoc,\n \"\\n fragment schemaFields on Schema {\\n id\\n resolver\\n revocable\\n schema\\n index\\n schemaNames {\\n name\\n }\\n time\\n txid\\n creator\\n }\\n\": typeof types.SchemaFieldsFragmentDoc,\n \"\\n query GetSchemas($where: SchemaWhereInput!) {\\n schemas: schemata(where: $where) {\\n id\\n schema\\n schemaNames {\\n name\\n }\\n }\\n }\\n\": typeof types.GetSchemasDocument,\n \"\\n query GetSchemaByName($where: SchemaWhereInput!) {\\n schemas: schemata(where: $where) {\\n id\\n schema\\n schemaNames {\\n name\\n }\\n }\\n }\\n\": typeof types.GetSchemaByNameDocument,\n \"\\n query GetSeeds($where: AttestationWhereInput!, $take: Int, $skip: Int) {\\n itemSeeds: attestations(where: $where, orderBy: [{ timeCreated: desc }], take: $take, skip: $skip) {\\n id\\n decodedDataJson\\n attester\\n schema {\\n schemaNames {\\n name\\n }\\n }\\n refUID\\n revoked\\n revocationTime\\n schemaId\\n timeCreated\\n isOffchain\\n }\\n }\\n\": typeof types.GetSeedsDocument,\n \"\\n query GetSeedIds($where: AttestationWhereInput!) {\\n itemSeedIds: attestations(where: $where, orderBy: [{ timeCreated: desc }]) {\\n id\\n }\\n }\\n\": typeof types.GetSeedIdsDocument,\n \"\\n query GetStorageTransactionId($where: AttestationWhereInput!) {\\n storageTransactionId: attestations(\\n where: $where\\n orderBy: [{ timeCreated: desc }]\\n ) {\\n id\\n decodedDataJson\\n }\\n }\\n\": typeof types.GetStorageTransactionIdDocument,\n \"\\n query GetVersions($where: AttestationWhereInput!) {\\n itemVersions: attestations(\\n where: $where\\n orderBy: [{ timeCreated: desc }]\\n ) {\\n ...attestationFields\\n }\\n }\\n\": typeof types.GetVersionsDocument,\n \"\\n query GetProperties($where: AttestationWhereInput!) {\\n itemProperties: attestations(\\n where: $where\\n orderBy: [{ timeCreated: desc }]\\n ) {\\n ...attestationFields\\n }\\n }\\n\": typeof types.GetPropertiesDocument,\n \"\\n query GetAllPropertiesForAllVersions($where: AttestationWhereInput!) {\\n allProperties: attestations(\\n where: $where\\n orderBy: [{ timeCreated: desc }]\\n ) {\\n ...attestationFields\\n }\\n }\\n\": typeof types.GetAllPropertiesForAllVersionsDocument,\n \"\\n query GetFilesMetadata($where: AttestationWhereInput!) {\\n filesMetadata: attestations(\\n where: $where\\n orderBy: [{ timeCreated: desc }]\\n ) {\\n ...attestationFields\\n }\\n }\\n\": typeof types.GetFilesMetadataDocument,\n \"\\n query GetImageSeeds($where: AttestationWhereInput!) {\\n imageSeeds: attestations(where: $where, orderBy: [{ timeCreated: desc }]) {\\n id\\n decodedDataJson\\n attester\\n schema {\\n schemaNames {\\n name\\n }\\n }\\n refUID\\n revoked\\n schemaId\\n txid\\n timeCreated\\n time\\n isOffchain\\n }\\n }\\n\": typeof types.GetImageSeedsDocument,\n \"\\n query GetImageVersions($where: AttestationWhereInput!) {\\n imageVersions: attestations(\\n where: $where\\n orderBy: [{ timeCreated: desc }]\\n ) {\\n ...attestationFields\\n }\\n }\\n\": typeof types.GetImageVersionsDocument,\n};\nconst documents: Documents = {\n \"\\n fragment attestationFields on Attestation {\\n id\\n decodedDataJson\\n attester\\n schema {\\n schemaNames {\\n name\\n }\\n }\\n refUID\\n revoked\\n schemaId\\n txid\\n timeCreated\\n time\\n isOffchain\\n }\\n\": types.AttestationFieldsFragmentDoc,\n \"\\n fragment schemaFields on Schema {\\n id\\n resolver\\n revocable\\n schema\\n index\\n schemaNames {\\n name\\n }\\n time\\n txid\\n creator\\n }\\n\": types.SchemaFieldsFragmentDoc,\n \"\\n query GetSchemas($where: SchemaWhereInput!) {\\n schemas: schemata(where: $where) {\\n id\\n schema\\n schemaNames {\\n name\\n }\\n }\\n }\\n\": types.GetSchemasDocument,\n \"\\n query GetSchemaByName($where: SchemaWhereInput!) {\\n schemas: schemata(where: $where) {\\n id\\n schema\\n schemaNames {\\n name\\n }\\n }\\n }\\n\": types.GetSchemaByNameDocument,\n \"\\n query GetSeeds($where: AttestationWhereInput!, $take: Int, $skip: Int) {\\n itemSeeds: attestations(where: $where, orderBy: [{ timeCreated: desc }], take: $take, skip: $skip) {\\n id\\n decodedDataJson\\n attester\\n schema {\\n schemaNames {\\n name\\n }\\n }\\n refUID\\n revoked\\n revocationTime\\n schemaId\\n timeCreated\\n isOffchain\\n }\\n }\\n\": types.GetSeedsDocument,\n \"\\n query GetSeedIds($where: AttestationWhereInput!) {\\n itemSeedIds: attestations(where: $where, orderBy: [{ timeCreated: desc }]) {\\n id\\n }\\n }\\n\": types.GetSeedIdsDocument,\n \"\\n query GetStorageTransactionId($where: AttestationWhereInput!) {\\n storageTransactionId: attestations(\\n where: $where\\n orderBy: [{ timeCreated: desc }]\\n ) {\\n id\\n decodedDataJson\\n }\\n }\\n\": types.GetStorageTransactionIdDocument,\n \"\\n query GetVersions($where: AttestationWhereInput!) {\\n itemVersions: attestations(\\n where: $where\\n orderBy: [{ timeCreated: desc }]\\n ) {\\n ...attestationFields\\n }\\n }\\n\": types.GetVersionsDocument,\n \"\\n query GetProperties($where: AttestationWhereInput!) {\\n itemProperties: attestations(\\n where: $where\\n orderBy: [{ timeCreated: desc }]\\n ) {\\n ...attestationFields\\n }\\n }\\n\": types.GetPropertiesDocument,\n \"\\n query GetAllPropertiesForAllVersions($where: AttestationWhereInput!) {\\n allProperties: attestations(\\n where: $where\\n orderBy: [{ timeCreated: desc }]\\n ) {\\n ...attestationFields\\n }\\n }\\n\": types.GetAllPropertiesForAllVersionsDocument,\n \"\\n query GetFilesMetadata($where: AttestationWhereInput!) {\\n filesMetadata: attestations(\\n where: $where\\n orderBy: [{ timeCreated: desc }]\\n ) {\\n ...attestationFields\\n }\\n }\\n\": types.GetFilesMetadataDocument,\n \"\\n query GetImageSeeds($where: AttestationWhereInput!) {\\n imageSeeds: attestations(where: $where, orderBy: [{ timeCreated: desc }]) {\\n id\\n decodedDataJson\\n attester\\n schema {\\n schemaNames {\\n name\\n }\\n }\\n refUID\\n revoked\\n schemaId\\n txid\\n timeCreated\\n time\\n isOffchain\\n }\\n }\\n\": types.GetImageSeedsDocument,\n \"\\n query GetImageVersions($where: AttestationWhereInput!) {\\n imageVersions: attestations(\\n where: $where\\n orderBy: [{ timeCreated: desc }]\\n ) {\\n ...attestationFields\\n }\\n }\\n\": types.GetImageVersionsDocument,\n};\n\n/**\n * The graphql function is used to parse GraphQL queries into a document that can be used by GraphQL clients.\n *\n *\n * @example\n * ```ts\n * const query = graphql(`query GetUser($id: ID!) { user(id: $id) { name } }`);\n * ```\n *\n * The query argument is unknown!\n * Please regenerate the types.\n */\nexport function graphql(source: string): unknown;\n\n/**\n * The graphql function is used to parse GraphQL queries into a document that can be used by GraphQL clients.\n */\nexport function graphql(source: \"\\n fragment attestationFields on Attestation {\\n id\\n decodedDataJson\\n attester\\n schema {\\n schemaNames {\\n name\\n }\\n }\\n refUID\\n revoked\\n schemaId\\n txid\\n timeCreated\\n time\\n isOffchain\\n }\\n\"): (typeof documents)[\"\\n fragment attestationFields on Attestation {\\n id\\n decodedDataJson\\n attester\\n schema {\\n schemaNames {\\n name\\n }\\n }\\n refUID\\n revoked\\n schemaId\\n txid\\n timeCreated\\n time\\n isOffchain\\n }\\n\"];\n/**\n * The graphql function is used to parse GraphQL queries into a document that can be used by GraphQL clients.\n */\nexport function graphql(source: \"\\n fragment schemaFields on Schema {\\n id\\n resolver\\n revocable\\n schema\\n index\\n schemaNames {\\n name\\n }\\n time\\n txid\\n creator\\n }\\n\"): (typeof documents)[\"\\n fragment schemaFields on Schema {\\n id\\n resolver\\n revocable\\n schema\\n index\\n schemaNames {\\n name\\n }\\n time\\n txid\\n creator\\n }\\n\"];\n/**\n * The graphql function is used to parse GraphQL queries into a document that can be used by GraphQL clients.\n */\nexport function graphql(source: \"\\n query GetSchemas($where: SchemaWhereInput!) {\\n schemas: schemata(where: $where) {\\n id\\n schema\\n schemaNames {\\n name\\n }\\n }\\n }\\n\"): (typeof documents)[\"\\n query GetSchemas($where: SchemaWhereInput!) {\\n schemas: schemata(where: $where) {\\n id\\n schema\\n schemaNames {\\n name\\n }\\n }\\n }\\n\"];\n/**\n * The graphql function is used to parse GraphQL queries into a document that can be used by GraphQL clients.\n */\nexport function graphql(source: \"\\n query GetSchemaByName($where: SchemaWhereInput!) {\\n schemas: schemata(where: $where) {\\n id\\n schema\\n schemaNames {\\n name\\n }\\n }\\n }\\n\"): (typeof documents)[\"\\n query GetSchemaByName($where: SchemaWhereInput!) {\\n schemas: schemata(where: $where) {\\n id\\n schema\\n schemaNames {\\n name\\n }\\n }\\n }\\n\"];\n/**\n * The graphql function is used to parse GraphQL queries into a document that can be used by GraphQL clients.\n */\nexport function graphql(source: \"\\n query GetSeeds($where: AttestationWhereInput!, $take: Int, $skip: Int) {\\n itemSeeds: attestations(where: $where, orderBy: [{ timeCreated: desc }], take: $take, skip: $skip) {\\n id\\n decodedDataJson\\n attester\\n schema {\\n schemaNames {\\n name\\n }\\n }\\n refUID\\n revoked\\n revocationTime\\n schemaId\\n timeCreated\\n isOffchain\\n }\\n }\\n\"): (typeof documents)[\"\\n query GetSeeds($where: AttestationWhereInput!, $take: Int, $skip: Int) {\\n itemSeeds: attestations(where: $where, orderBy: [{ timeCreated: desc }], take: $take, skip: $skip) {\\n id\\n decodedDataJson\\n attester\\n schema {\\n schemaNames {\\n name\\n }\\n }\\n refUID\\n revoked\\n revocationTime\\n schemaId\\n timeCreated\\n isOffchain\\n }\\n }\\n\"];\n/**\n * The graphql function is used to parse GraphQL queries into a document that can be used by GraphQL clients.\n */\nexport function graphql(source: \"\\n query GetSeedIds($where: AttestationWhereInput!) {\\n itemSeedIds: attestations(where: $where, orderBy: [{ timeCreated: desc }]) {\\n id\\n }\\n }\\n\"): (typeof documents)[\"\\n query GetSeedIds($where: AttestationWhereInput!) {\\n itemSeedIds: attestations(where: $where, orderBy: [{ timeCreated: desc }]) {\\n id\\n }\\n }\\n\"];\n/**\n * The graphql function is used to parse GraphQL queries into a document that can be used by GraphQL clients.\n */\nexport function graphql(source: \"\\n query GetStorageTransactionId($where: AttestationWhereInput!) {\\n storageTransactionId: attestations(\\n where: $where\\n orderBy: [{ timeCreated: desc }]\\n ) {\\n id\\n decodedDataJson\\n }\\n }\\n\"): (typeof documents)[\"\\n query GetStorageTransactionId($where: AttestationWhereInput!) {\\n storageTransactionId: attestations(\\n where: $where\\n orderBy: [{ timeCreated: desc }]\\n ) {\\n id\\n decodedDataJson\\n }\\n }\\n\"];\n/**\n * The graphql function is used to parse GraphQL queries into a document that can be used by GraphQL clients.\n */\nexport function graphql(source: \"\\n query GetVersions($where: AttestationWhereInput!) {\\n itemVersions: attestations(\\n where: $where\\n orderBy: [{ timeCreated: desc }]\\n ) {\\n ...attestationFields\\n }\\n }\\n\"): (typeof documents)[\"\\n query GetVersions($where: AttestationWhereInput!) {\\n itemVersions: attestations(\\n where: $where\\n orderBy: [{ timeCreated: desc }]\\n ) {\\n ...attestationFields\\n }\\n }\\n\"];\n/**\n * The graphql function is used to parse GraphQL queries into a document that can be used by GraphQL clients.\n */\nexport function graphql(source: \"\\n query GetProperties($where: AttestationWhereInput!) {\\n itemProperties: attestations(\\n where: $where\\n orderBy: [{ timeCreated: desc }]\\n ) {\\n ...attestationFields\\n }\\n }\\n\"): (typeof documents)[\"\\n query GetProperties($where: AttestationWhereInput!) {\\n itemProperties: attestations(\\n where: $where\\n orderBy: [{ timeCreated: desc }]\\n ) {\\n ...attestationFields\\n }\\n }\\n\"];\n/**\n * The graphql function is used to parse GraphQL queries into a document that can be used by GraphQL clients.\n */\nexport function graphql(source: \"\\n query GetAllPropertiesForAllVersions($where: AttestationWhereInput!) {\\n allProperties: attestations(\\n where: $where\\n orderBy: [{ timeCreated: desc }]\\n ) {\\n ...attestationFields\\n }\\n }\\n\"): (typeof documents)[\"\\n query GetAllPropertiesForAllVersions($where: AttestationWhereInput!) {\\n allProperties: attestations(\\n where: $where\\n orderBy: [{ timeCreated: desc }]\\n ) {\\n ...attestationFields\\n }\\n }\\n\"];\n/**\n * The graphql function is used to parse GraphQL queries into a document that can be used by GraphQL clients.\n */\nexport function graphql(source: \"\\n query GetFilesMetadata($where: AttestationWhereInput!) {\\n filesMetadata: attestations(\\n where: $where\\n orderBy: [{ timeCreated: desc }]\\n ) {\\n ...attestationFields\\n }\\n }\\n\"): (typeof documents)[\"\\n query GetFilesMetadata($where: AttestationWhereInput!) {\\n filesMetadata: attestations(\\n where: $where\\n orderBy: [{ timeCreated: desc }]\\n ) {\\n ...attestationFields\\n }\\n }\\n\"];\n/**\n * The graphql function is used to parse GraphQL queries into a document that can be used by GraphQL clients.\n */\nexport function graphql(source: \"\\n query GetImageSeeds($where: AttestationWhereInput!) {\\n imageSeeds: attestations(where: $where, orderBy: [{ timeCreated: desc }]) {\\n id\\n decodedDataJson\\n attester\\n schema {\\n schemaNames {\\n name\\n }\\n }\\n refUID\\n revoked\\n schemaId\\n txid\\n timeCreated\\n time\\n isOffchain\\n }\\n }\\n\"): (typeof documents)[\"\\n query GetImageSeeds($where: AttestationWhereInput!) {\\n imageSeeds: attestations(where: $where, orderBy: [{ timeCreated: desc }]) {\\n id\\n decodedDataJson\\n attester\\n schema {\\n schemaNames {\\n name\\n }\\n }\\n refUID\\n revoked\\n schemaId\\n txid\\n timeCreated\\n time\\n isOffchain\\n }\\n }\\n\"];\n/**\n * The graphql function is used to parse GraphQL queries into a document that can be used by GraphQL clients.\n */\nexport function graphql(source: \"\\n query GetImageVersions($where: AttestationWhereInput!) {\\n imageVersions: attestations(\\n where: $where\\n orderBy: [{ timeCreated: desc }]\\n ) {\\n ...attestationFields\\n }\\n }\\n\"): (typeof documents)[\"\\n query GetImageVersions($where: AttestationWhereInput!) {\\n imageVersions: attestations(\\n where: $where\\n orderBy: [{ timeCreated: desc }]\\n ) {\\n ...attestationFields\\n }\\n }\\n\"];\n\nexport function graphql(source: string) {\n return (documents as any)[source] ?? {};\n}\n\nexport type DocumentType<TDocumentNode extends DocumentNode<any, any>> = TDocumentNode extends DocumentNode< infer TType, any> ? TType : never;","import { graphql } from './graphql/gql/index.js'\nimport { TypedDocumentNode } from '@graphql-typed-document-node/core'\nimport type { Attestation, Schema as EASSchema } from './graphql/gql/graphql.js'\n\nexport const GET_SCHEMAS = graphql(/* GraphQL */ `\n query GetSchemas($where: SchemaWhereInput!) {\n schemas: schemata(where: $where) {\n id\n schema\n schemaNames {\n name\n }\n }\n }\n`)\n\nexport const GET_SCHEMA_BY_NAME = graphql(/* GraphQL */ `\n query GetSchemaByName($where: SchemaWhereInput!) {\n schemas: schemata(where: $where) {\n id\n schema\n schemaNames {\n name\n }\n }\n }\n`) as TypedDocumentNode<{ schemas: EASSchema[] }>\n\nexport const GET_SEEDS = graphql(/* GraphQL */ `\n query GetSeeds($where: AttestationWhereInput!, $take: Int, $skip: Int) {\n itemSeeds: attestations(where: $where, orderBy: [{ timeCreated: desc }], take: $take, skip: $skip) {\n id\n decodedDataJson\n attester\n schema {\n schemaNames {\n name\n }\n }\n refUID\n revoked\n revocationTime\n schemaId\n timeCreated\n isOffchain\n }\n }\n`) as TypedDocumentNode<{ itemSeeds: Attestation[] }>\n\nexport const GET_SEED_IDS = graphql(/* GraphQL */ `\n query GetSeedIds($where: AttestationWhereInput!) {\n itemSeedIds: attestations(where: $where, orderBy: [{ timeCreated: desc }]) {\n id\n }\n }\n`) as TypedDocumentNode<{ itemSeedIds: Attestation[] }>\n\nexport const GET_STORAGE_TRANSACTION_ID = graphql(/* GraphQL */ `\n query GetStorageTransactionId($where: AttestationWhereInput!) {\n storageTransactionId: attestations(\n where: $where\n orderBy: [{ timeCreated: desc }]\n ) {\n id\n decodedDataJson\n }\n }\n`) as TypedDocumentNode<{ storageTransactionId: Attestation[] }>\n\nexport const GET_VERSIONS = graphql(/* GraphQL */ `\n query GetVersions($where: AttestationWhereInput!) {\n itemVersions: attestations(\n where: $where\n orderBy: [{ timeCreated: desc }]\n ) {\n ...attestationFields\n }\n }\n`) as TypedDocumentNode<{ itemVersions: Attestation[] }>\n\nexport const GET_PROPERTIES = graphql(/* GraphQL */ `\n query GetProperties($where: AttestationWhereInput!) {\n itemProperties: attestations(\n where: $where\n orderBy: [{ timeCreated: desc }]\n ) {\n ...attestationFields\n }\n }\n`) as TypedDocumentNode<{ itemProperties: Attestation[] }>\n\nexport const GET_ALL_PROPERTIES_FOR_ALL_VERSIONS = graphql(/* GraphQL */ `\n query GetAllPropertiesForAllVersions($where: AttestationWhereInput!) {\n allProperties: attestations(\n where: $where\n orderBy: [{ timeCreated: desc }]\n ) {\n ...attestationFields\n }\n }\n`) as TypedDocumentNode<{ allProperties: Attestation[] }>\n\nexport const GET_FILES_METADATA = graphql(/* GraphQL */ `\n query GetFilesMetadata($where: AttestationWhereInput!) {\n filesMetadata: attestations(\n where: $where\n orderBy: [{ timeCreated: desc }]\n ) {\n ...attestationFields\n }\n }\n`) as TypedDocumentNode<{ filesMetadata: Attestation[] }>\n\nexport const GET_IMAGE_SEEDS = graphql(/* GraphQL */ `\n query GetImageSeeds($where: AttestationWhereInput!) {\n imageSeeds: attestations(where: $where, orderBy: [{ timeCreated: desc }]) {\n id\n decodedDataJson\n attester\n schema {\n schemaNames {\n name\n }\n }\n refUID\n revoked\n schemaId\n txid\n timeCreated\n time\n isOffchain\n }\n }\n`) as TypedDocumentNode<{ imageSeeds: Attestation[] }>\n\nexport const GET_IMAGE_VERSIONS = graphql(/* GraphQL */ `\n query GetImageVersions($where: AttestationWhereInput!) {\n imageVersions: attestations(\n where: $where\n orderBy: [{ timeCreated: desc }]\n ) {\n ...attestationFields\n }\n }\n`) as TypedDocumentNode<{ imageVersions: Attestation[] }>\n","import { checksumAddress, toSnakeCase } from './utils.js'\nimport { pickLatestPropertyAttestationsByRefAndSchema } from './easPropertyCanonical.js'\nimport { withExcludeRevokedFilter } from './easRevokedFilter.js'\nimport { BaseEasClient } from './EasClient/BaseEasClient.js'\nimport { BaseQueryClient } from './QueryClient/BaseQueryClient.js'\nimport { GET_PROPERTIES, GET_SCHEMAS, GET_SEEDS, GET_VERSIONS } from './queries.js'\nimport type { Attestation, Schema as EASSchema } from './graphql/gql/graphql.js'\n\nexport type { Attestation, Schema as EASSchema } from './graphql/gql/graphql.js'\n\nexport const getItemVersionsFromEas = async ({\n seedUids,\n excludeRevoked = true,\n}: {\n seedUids: string[]\n excludeRevoked?: boolean\n}): Promise<Attestation[]> => {\n const queryClient = BaseQueryClient.getQueryClient()\n const easClient = BaseEasClient.getEasClient()\n\n const where = excludeRevoked\n ? withExcludeRevokedFilter({ refUID: { in: seedUids } })\n : { refUID: { in: seedUids } }\n\n const { itemVersions } = (await queryClient.fetchQuery({\n queryKey: [`getVersionsForAllModels`, [...seedUids].sort(), excludeRevoked],\n queryFn: async () =>\n easClient.request(GET_VERSIONS, {\n where,\n }),\n })) as { itemVersions: Attestation[] }\n\n return itemVersions\n}\n\nexport const getItemPropertiesFromEas = async ({\n versionUids,\n excludeRevoked = true,\n}: {\n versionUids: string[]\n excludeRevoked?: boolean\n}): Promise<Attestation[]> => {\n const queryClient = BaseQueryClient.getQueryClient()\n const easClient = BaseEasClient.getEasClient()\n\n const where = excludeRevoked\n ? withExcludeRevokedFilter({ refUID: { in: versionUids } })\n : { refUID: { in: versionUids } }\n\n const { itemProperties } = (await queryClient.fetchQuery({\n queryKey: [`getPropertiesForAllModels`, [...versionUids].sort(), excludeRevoked],\n queryFn: async () =>\n easClient.request(GET_PROPERTIES, {\n where,\n }),\n })) as { itemProperties: Attestation[] }\n\n return itemProperties\n}\n\nexport const getCanonicalItemPropertiesFromEas = async (props: {\n versionUids: string[]\n excludeRevoked?: boolean\n}): Promise<Attestation[]> => {\n const itemProperties = await getItemPropertiesFromEas(props)\n return pickLatestPropertyAttestationsByRefAndSchema(itemProperties)\n}\n\nexport const getEasSchemaUidBySchemaName = async ({\n schemaName,\n}: {\n schemaName: string\n}): Promise<string | undefined> => {\n try {\n const queryClient = BaseQueryClient.getQueryClient()\n const easClient = BaseEasClient.getEasClient()\n\n if (!queryClient || !easClient) {\n return undefined\n }\n\n const { schemas } = (await queryClient.fetchQuery({\n queryKey: [`getEasSchemaUidBySchemaName`],\n queryFn: async () =>\n easClient.request(GET_SCHEMAS, {\n where: {\n schema: {\n endsWith: schemaName,\n },\n },\n }),\n })) as { schemas: Array<{ id: string }> }\n\n if (!schemas || schemas.length === 0) {\n return undefined\n }\n\n return schemas[0]!.id\n } catch (error) {\n if (process.env.NODE_ENV === 'development') {\n console.warn(`Failed to fetch schema for schema name ${schemaName}:`, error)\n }\n return undefined\n }\n}\n\nexport const getSeedsFromSchemaUids = async ({\n schemaUids,\n addresses,\n excludeRevoked = true,\n}: {\n schemaUids: string[]\n addresses: string[]\n excludeRevoked?: boolean\n}) => {\n const attesterAddresses = addresses.map((a) => {\n try {\n return checksumAddress(a)\n } catch {\n return a\n }\n })\n let where: Record<string, unknown> = {\n attester: {\n in: attesterAddresses,\n },\n schemaId: {\n in: schemaUids,\n },\n }\n\n if (excludeRevoked) {\n where = withExcludeRevokedFilter(where)\n }\n\n const queryClient = BaseQueryClient.getQueryClient()\n const easClient = BaseEasClient.getEasClient()\n\n const { itemSeeds } = (await queryClient.fetchQuery({\n queryKey: [\n `getSeedsForAllModels`,\n excludeRevoked,\n [...schemaUids].sort(),\n [...addresses].sort(),\n ],\n queryFn: async () =>\n easClient.request(GET_SEEDS, {\n where,\n }),\n })) as { itemSeeds: Attestation[] }\n\n return itemSeeds\n}\n\nexport const getSeedsBySchemaName = async (\n schemaName: string,\n limit: number = 10,\n skip?: number,\n) => {\n const skipVal = skip ?? 0\n const variables = {\n where: withExcludeRevokedFilter({\n schema: {\n is: {\n schemaNames: {\n some: {\n name: {\n equals: schemaName,\n },\n },\n },\n },\n },\n }),\n take: limit,\n skip: skipVal,\n }\n\n const queryClient = BaseQueryClient.getQueryClient()\n const easClient = BaseEasClient.getEasClient()\n\n const { itemSeeds } = (await queryClient.fetchQuery({\n queryKey: [`getSeedsBySchemaName`, schemaName, limit, skipVal],\n queryFn: async () => easClient.request(GET_SEEDS, variables),\n })) as { itemSeeds: Attestation[] }\n\n return itemSeeds\n}\n\nexport const getSeedUidsBySchemaName = async (schemaName: string, limit: number = 10) => {\n const itemSeeds = await getSeedsBySchemaName(schemaName, limit)\n return itemSeeds.map((seed: Attestation) => seed.id)\n}\n","import { ZERO_BYTES32 } from './constants.js'\n\n/**\n * True when the value is not a real EAS attestation UID stored in SQLite\n * (missing, empty, legacy 'NULL' sentinel, or zero bytes32).\n */\nexport function isPlaceholderUid(value: string | null | undefined): boolean {\n if (value == null || value === '') return true\n if (value === 'NULL') return true\n const v = value.trim()\n if (v === '') return true\n if (v.toLowerCase() === ZERO_BYTES32.toLowerCase()) return true\n return false\n}\n\n/**\n * Strict EAS attestation UID: 0x-prefixed 32-byte hex (case-insensitive 0x / hex body).\n * Excludes placeholders and ZERO_BYTES32.\n */\nexport function isValidEasAttestationUid(value: string | null | undefined): boolean {\n if (isPlaceholderUid(value)) return false\n const v = String(value).trim()\n if (!/^0x/i.test(v)) return false\n const hex = v.slice(2)\n if (hex.length !== 64) return false\n return /^[0-9a-fA-F]{64}$/.test(hex)\n}\n\n/** Normalize bytes32 hex strings for case-insensitive comparison (schema UIDs, etc.). */\nexport function normalizeBytes32Hex(value: string | null | undefined): string {\n if (value == null || value === '') return ''\n const raw = String(value).trim()\n const body = raw.startsWith('0x') || raw.startsWith('0X') ? raw.slice(2) : raw\n const hex = body.replace(/[^0-9a-fA-F]/g, '0').padStart(64, '0').slice(-64)\n return ('0x' + hex).toLowerCase()\n}\n","import { getEasSchemaUidBySchemaName } from '../api.js'\nimport { toSnakeCase } from '../utils.js'\n\nconst schemaUidForSchemaDefinition = new Map<string, string>()\nconst schemaUidForModel = new Map<string, string>()\n\nexport const setSchemaUidForSchemaDefinition = ({\n text,\n schemaUid,\n}: {\n text: string\n schemaUid: string\n}): void => {\n schemaUidForSchemaDefinition.set(toSnakeCase(text), schemaUid)\n}\n\nexport const setSchemaUidForModel = ({\n modelName,\n schemaUid,\n}: {\n modelName: string\n schemaUid: string\n}): void => {\n schemaUidForModel.set(modelName.toLowerCase(), schemaUid)\n}\n\nexport const getSchemaUidForModelFromCache = (modelName: string): string | undefined =>\n schemaUidForModel.get(modelName.toLowerCase())\n\nexport const getEasSchemaUidForSchemaDefinition = async ({\n schemaText,\n}: {\n schemaText: string\n}): Promise<string | undefined> => {\n const textSnakeCase = toSnakeCase(schemaText)\n if (!schemaUidForSchemaDefinition.has(textSnakeCase)) {\n const schemaUid = await getEasSchemaUidBySchemaName({ schemaName: textSnakeCase })\n if (schemaUid) {\n setSchemaUidForSchemaDefinition({ text: textSnakeCase, schemaUid })\n }\n return schemaUid\n }\n return schemaUidForSchemaDefinition.get(textSnakeCase)\n}\n"],"mappings":"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"}
1
+ {"version":3,"file":"index.js","names":[],"sources":["../src/utils.ts","../src/easPropertyCanonical.ts","../src/easRevokedFilter.ts","../src/graphql/gql/graphql.ts","../src/graphql/gql/gql.ts","../src/queries.ts","../src/api.ts","../src/easUid.ts","../src/domainOwnershipHelpers.ts","../src/domainOwnership.ts","../src/publishAuthorizationHelpers.ts","../src/publishAuthorization.ts","../src/stores/schemaUidCache.ts"],"sourcesContent":["import { keccak256 } from 'js-sha3'\n\nexport const toSnakeCase = (str: string): string =>\n str.replace(/([a-z])([A-Z])/g, '$1_$2').toLowerCase()\n\n/** EIP-55 checksum for a 20-byte hex address (with or without 0x prefix). */\nexport function checksumAddress(address: string): string {\n const addr = address.toLowerCase().replace(/^0x/, '')\n if (addr.length !== 40 || !/^[0-9a-f]+$/.test(addr)) {\n return address\n }\n const hash = keccak256(addr)\n let result = '0x'\n for (let i = 0; i < 40; i++) {\n result += parseInt(hash[i]!, 16) >= 8 ? addr[i]!.toUpperCase() : addr[i]!\n }\n return result\n}\n","/**\n * When multiple property attestations exist for the same Version (refUID) and schema\n * (e.g. after a same-Version patch publish), the canonical value is the **newest**\n * non-revoked attestation: greatest `timeCreated` per `(refUID, schemaId)`.\n *\n * Use this after `getItemPropertiesFromEas` (or any flat list) before displaying\n * values or writing to DB so duplicate schemas resolve to one row.\n */\nexport type AttestationLikeForCanonical = {\n schemaId?: string | null\n timeCreated?: number | null\n refUID?: string | null\n}\n\nexport function pickLatestPropertyAttestationsByRefAndSchema<\n T extends AttestationLikeForCanonical,\n>(attestations: T[]): T[] {\n const byKey = new Map<string, T>()\n for (const att of attestations) {\n const sid = att.schemaId\n if (!sid) continue\n const key = `${att.refUID ?? ''}:${sid}`\n const existing = byKey.get(key)\n const t = att.timeCreated ?? 0\n const t0 = existing?.timeCreated ?? 0\n if (!existing || t > t0) {\n byKey.set(key, att)\n }\n }\n return [...byKey.values()]\n}\n","/**\n * Merges `revoked: { equals: false }` into an EAS AttestationWhereInput\n * so revoked attestations are excluded from discovery/feed queries.\n *\n * Uses AND to combine with existing conditions without overwriting them.\n */\nexport function withExcludeRevokedFilter<T extends Record<string, unknown>>(\n where: T,\n): T & { AND?: unknown[] } {\n const revokedFilter = { revoked: { equals: false } }\n const existingAnd = Array.isArray(where.AND) ? where.AND : []\n return {\n ...where,\n AND: [...existingAnd, revokedFilter],\n } as T & { AND: unknown[] }\n}\n","/* eslint-disable */\nimport { TypedDocumentNode as DocumentNode } from '@graphql-typed-document-node/core';\nexport type Maybe<T> = T | null;\nexport type InputMaybe<T> = T | null | undefined;\nexport type Exact<T extends { [key: string]: unknown }> = { [K in keyof T]: T[K] };\nexport type MakeOptional<T, K extends keyof T> = Omit<T, K> & { [SubKey in K]?: Maybe<T[SubKey]> };\nexport type MakeMaybe<T, K extends keyof T> = Omit<T, K> & { [SubKey in K]: Maybe<T[SubKey]> };\nexport type MakeEmpty<T extends { [key: string]: unknown }, K extends keyof T> = { [_ in K]?: never };\nexport type Incremental<T> = T | { [P in keyof T]?: P extends ' $fragmentName' | '__typename' ? T[P] : never };\n/** All built-in and custom scalars, mapped to their actual values */\nexport type Scalars = {\n ID: { input: string; output: string; }\n String: { input: string; output: string; }\n Boolean: { input: boolean; output: boolean; }\n Int: { input: number; output: number; }\n Float: { input: number; output: number; }\n};\n\nexport type AffectedRowsOutput = {\n __typename?: 'AffectedRowsOutput';\n count: Scalars['Int']['output'];\n};\n\nexport type AggregateAttestation = {\n __typename?: 'AggregateAttestation';\n _avg?: Maybe<AttestationAvgAggregate>;\n _count?: Maybe<AttestationCountAggregate>;\n _max?: Maybe<AttestationMaxAggregate>;\n _min?: Maybe<AttestationMinAggregate>;\n _sum?: Maybe<AttestationSumAggregate>;\n};\n\nexport type AggregateEnsName = {\n __typename?: 'AggregateEnsName';\n _avg?: Maybe<EnsNameAvgAggregate>;\n _count?: Maybe<EnsNameCountAggregate>;\n _max?: Maybe<EnsNameMaxAggregate>;\n _min?: Maybe<EnsNameMinAggregate>;\n _sum?: Maybe<EnsNameSumAggregate>;\n};\n\nexport type AggregateOffchainRevocation = {\n __typename?: 'AggregateOffchainRevocation';\n _avg?: Maybe<OffchainRevocationAvgAggregate>;\n _count?: Maybe<OffchainRevocationCountAggregate>;\n _max?: Maybe<OffchainRevocationMaxAggregate>;\n _min?: Maybe<OffchainRevocationMinAggregate>;\n _sum?: Maybe<OffchainRevocationSumAggregate>;\n};\n\nexport type AggregateSchema = {\n __typename?: 'AggregateSchema';\n _avg?: Maybe<SchemaAvgAggregate>;\n _count?: Maybe<SchemaCountAggregate>;\n _max?: Maybe<SchemaMaxAggregate>;\n _min?: Maybe<SchemaMinAggregate>;\n _sum?: Maybe<SchemaSumAggregate>;\n};\n\nexport type AggregateSchemaName = {\n __typename?: 'AggregateSchemaName';\n _avg?: Maybe<SchemaNameAvgAggregate>;\n _count?: Maybe<SchemaNameCountAggregate>;\n _max?: Maybe<SchemaNameMaxAggregate>;\n _min?: Maybe<SchemaNameMinAggregate>;\n _sum?: Maybe<SchemaNameSumAggregate>;\n};\n\nexport type AggregateServiceStat = {\n __typename?: 'AggregateServiceStat';\n _count?: Maybe<ServiceStatCountAggregate>;\n _max?: Maybe<ServiceStatMaxAggregate>;\n _min?: Maybe<ServiceStatMinAggregate>;\n};\n\nexport type AggregateTimestamp = {\n __typename?: 'AggregateTimestamp';\n _avg?: Maybe<TimestampAvgAggregate>;\n _count?: Maybe<TimestampCountAggregate>;\n _max?: Maybe<TimestampMaxAggregate>;\n _min?: Maybe<TimestampMinAggregate>;\n _sum?: Maybe<TimestampSumAggregate>;\n};\n\nexport type Attestation = {\n __typename?: 'Attestation';\n attester: Scalars['String']['output'];\n data: Scalars['String']['output'];\n decodedDataJson: Scalars['String']['output'];\n expirationTime: Scalars['Int']['output'];\n id: Scalars['String']['output'];\n ipfsHash: Scalars['String']['output'];\n isOffchain: Scalars['Boolean']['output'];\n recipient: Scalars['String']['output'];\n refUID: Scalars['String']['output'];\n revocable: Scalars['Boolean']['output'];\n revocationTime: Scalars['Int']['output'];\n revoked: Scalars['Boolean']['output'];\n schema: Schema;\n schemaId: Scalars['String']['output'];\n time: Scalars['Int']['output'];\n timeCreated: Scalars['Int']['output'];\n txid: Scalars['String']['output'];\n};\n\nexport type AttestationAvgAggregate = {\n __typename?: 'AttestationAvgAggregate';\n expirationTime?: Maybe<Scalars['Float']['output']>;\n revocationTime?: Maybe<Scalars['Float']['output']>;\n time?: Maybe<Scalars['Float']['output']>;\n timeCreated?: Maybe<Scalars['Float']['output']>;\n};\n\nexport type AttestationAvgOrderByAggregateInput = {\n expirationTime?: InputMaybe<SortOrder>;\n revocationTime?: InputMaybe<SortOrder>;\n time?: InputMaybe<SortOrder>;\n timeCreated?: InputMaybe<SortOrder>;\n};\n\nexport type AttestationCountAggregate = {\n __typename?: 'AttestationCountAggregate';\n _all: Scalars['Int']['output'];\n attester: Scalars['Int']['output'];\n data: Scalars['Int']['output'];\n decodedDataJson: Scalars['Int']['output'];\n expirationTime: Scalars['Int']['output'];\n id: Scalars['Int']['output'];\n ipfsHash: Scalars['Int']['output'];\n isOffchain: Scalars['Int']['output'];\n recipient: Scalars['Int']['output'];\n refUID: Scalars['Int']['output'];\n revocable: Scalars['Int']['output'];\n revocationTime: Scalars['Int']['output'];\n revoked: Scalars['Int']['output'];\n schemaId: Scalars['Int']['output'];\n time: Scalars['Int']['output'];\n timeCreated: Scalars['Int']['output'];\n txid: Scalars['Int']['output'];\n};\n\nexport type AttestationCountOrderByAggregateInput = {\n attester?: InputMaybe<SortOrder>;\n data?: InputMaybe<SortOrder>;\n decodedDataJson?: InputMaybe<SortOrder>;\n expirationTime?: InputMaybe<SortOrder>;\n id?: InputMaybe<SortOrder>;\n ipfsHash?: InputMaybe<SortOrder>;\n isOffchain?: InputMaybe<SortOrder>;\n recipient?: InputMaybe<SortOrder>;\n refUID?: InputMaybe<SortOrder>;\n revocable?: InputMaybe<SortOrder>;\n revocationTime?: InputMaybe<SortOrder>;\n revoked?: InputMaybe<SortOrder>;\n schemaId?: InputMaybe<SortOrder>;\n time?: InputMaybe<SortOrder>;\n timeCreated?: InputMaybe<SortOrder>;\n txid?: InputMaybe<SortOrder>;\n};\n\nexport type AttestationCreateInput = {\n attester: Scalars['String']['input'];\n data: Scalars['String']['input'];\n decodedDataJson?: InputMaybe<Scalars['String']['input']>;\n expirationTime: Scalars['Int']['input'];\n id: Scalars['String']['input'];\n ipfsHash: Scalars['String']['input'];\n isOffchain: Scalars['Boolean']['input'];\n recipient: Scalars['String']['input'];\n refUID: Scalars['String']['input'];\n revocable: Scalars['Boolean']['input'];\n revocationTime: Scalars['Int']['input'];\n revoked: Scalars['Boolean']['input'];\n schema: SchemaCreateNestedOneWithoutAttestationsInput;\n time: Scalars['Int']['input'];\n timeCreated: Scalars['Int']['input'];\n txid: Scalars['String']['input'];\n};\n\nexport type AttestationCreateManyInput = {\n attester: Scalars['String']['input'];\n data: Scalars['String']['input'];\n decodedDataJson?: InputMaybe<Scalars['String']['input']>;\n expirationTime: Scalars['Int']['input'];\n id: Scalars['String']['input'];\n ipfsHash: Scalars['String']['input'];\n isOffchain: Scalars['Boolean']['input'];\n recipient: Scalars['String']['input'];\n refUID: Scalars['String']['input'];\n revocable: Scalars['Boolean']['input'];\n revocationTime: Scalars['Int']['input'];\n revoked: Scalars['Boolean']['input'];\n schemaId: Scalars['String']['input'];\n time: Scalars['Int']['input'];\n timeCreated: Scalars['Int']['input'];\n txid: Scalars['String']['input'];\n};\n\nexport type AttestationCreateManySchemaInput = {\n attester: Scalars['String']['input'];\n data: Scalars['String']['input'];\n decodedDataJson?: InputMaybe<Scalars['String']['input']>;\n expirationTime: Scalars['Int']['input'];\n id: Scalars['String']['input'];\n ipfsHash: Scalars['String']['input'];\n isOffchain: Scalars['Boolean']['input'];\n recipient: Scalars['String']['input'];\n refUID: Scalars['String']['input'];\n revocable: Scalars['Boolean']['input'];\n revocationTime: Scalars['Int']['input'];\n revoked: Scalars['Boolean']['input'];\n time: Scalars['Int']['input'];\n timeCreated: Scalars['Int']['input'];\n txid: Scalars['String']['input'];\n};\n\nexport type AttestationCreateManySchemaInputEnvelope = {\n data: Array<AttestationCreateManySchemaInput>;\n skipDuplicates?: InputMaybe<Scalars['Boolean']['input']>;\n};\n\nexport type AttestationCreateNestedManyWithoutSchemaInput = {\n connect?: InputMaybe<Array<AttestationWhereUniqueInput>>;\n connectOrCreate?: InputMaybe<Array<AttestationCreateOrConnectWithoutSchemaInput>>;\n create?: InputMaybe<Array<AttestationCreateWithoutSchemaInput>>;\n createMany?: InputMaybe<AttestationCreateManySchemaInputEnvelope>;\n};\n\nexport type AttestationCreateOrConnectWithoutSchemaInput = {\n create: AttestationCreateWithoutSchemaInput;\n where: AttestationWhereUniqueInput;\n};\n\nexport type AttestationCreateWithoutSchemaInput = {\n attester: Scalars['String']['input'];\n data: Scalars['String']['input'];\n decodedDataJson?: InputMaybe<Scalars['String']['input']>;\n expirationTime: Scalars['Int']['input'];\n id: Scalars['String']['input'];\n ipfsHash: Scalars['String']['input'];\n isOffchain: Scalars['Boolean']['input'];\n recipient: Scalars['String']['input'];\n refUID: Scalars['String']['input'];\n revocable: Scalars['Boolean']['input'];\n revocationTime: Scalars['Int']['input'];\n revoked: Scalars['Boolean']['input'];\n time: Scalars['Int']['input'];\n timeCreated: Scalars['Int']['input'];\n txid: Scalars['String']['input'];\n};\n\nexport type AttestationGroupBy = {\n __typename?: 'AttestationGroupBy';\n _avg?: Maybe<AttestationAvgAggregate>;\n _count?: Maybe<AttestationCountAggregate>;\n _max?: Maybe<AttestationMaxAggregate>;\n _min?: Maybe<AttestationMinAggregate>;\n _sum?: Maybe<AttestationSumAggregate>;\n attester: Scalars['String']['output'];\n data: Scalars['String']['output'];\n decodedDataJson: Scalars['String']['output'];\n expirationTime: Scalars['Int']['output'];\n id: Scalars['String']['output'];\n ipfsHash: Scalars['String']['output'];\n isOffchain: Scalars['Boolean']['output'];\n recipient: Scalars['String']['output'];\n refUID: Scalars['String']['output'];\n revocable: Scalars['Boolean']['output'];\n revocationTime: Scalars['Int']['output'];\n revoked: Scalars['Boolean']['output'];\n schemaId: Scalars['String']['output'];\n time: Scalars['Int']['output'];\n timeCreated: Scalars['Int']['output'];\n txid: Scalars['String']['output'];\n};\n\nexport type AttestationListRelationFilter = {\n every?: InputMaybe<AttestationWhereInput>;\n none?: InputMaybe<AttestationWhereInput>;\n some?: InputMaybe<AttestationWhereInput>;\n};\n\nexport type AttestationMaxAggregate = {\n __typename?: 'AttestationMaxAggregate';\n attester?: Maybe<Scalars['String']['output']>;\n data?: Maybe<Scalars['String']['output']>;\n decodedDataJson?: Maybe<Scalars['String']['output']>;\n expirationTime?: Maybe<Scalars['Int']['output']>;\n id?: Maybe<Scalars['String']['output']>;\n ipfsHash?: Maybe<Scalars['String']['output']>;\n isOffchain?: Maybe<Scalars['Boolean']['output']>;\n recipient?: Maybe<Scalars['String']['output']>;\n refUID?: Maybe<Scalars['String']['output']>;\n revocable?: Maybe<Scalars['Boolean']['output']>;\n revocationTime?: Maybe<Scalars['Int']['output']>;\n revoked?: Maybe<Scalars['Boolean']['output']>;\n schemaId?: Maybe<Scalars['String']['output']>;\n time?: Maybe<Scalars['Int']['output']>;\n timeCreated?: Maybe<Scalars['Int']['output']>;\n txid?: Maybe<Scalars['String']['output']>;\n};\n\nexport type AttestationMaxOrderByAggregateInput = {\n attester?: InputMaybe<SortOrder>;\n data?: InputMaybe<SortOrder>;\n decodedDataJson?: InputMaybe<SortOrder>;\n expirationTime?: InputMaybe<SortOrder>;\n id?: InputMaybe<SortOrder>;\n ipfsHash?: InputMaybe<SortOrder>;\n isOffchain?: InputMaybe<SortOrder>;\n recipient?: InputMaybe<SortOrder>;\n refUID?: InputMaybe<SortOrder>;\n revocable?: InputMaybe<SortOrder>;\n revocationTime?: InputMaybe<SortOrder>;\n revoked?: InputMaybe<SortOrder>;\n schemaId?: InputMaybe<SortOrder>;\n time?: InputMaybe<SortOrder>;\n timeCreated?: InputMaybe<SortOrder>;\n txid?: InputMaybe<SortOrder>;\n};\n\nexport type AttestationMinAggregate = {\n __typename?: 'AttestationMinAggregate';\n attester?: Maybe<Scalars['String']['output']>;\n data?: Maybe<Scalars['String']['output']>;\n decodedDataJson?: Maybe<Scalars['String']['output']>;\n expirationTime?: Maybe<Scalars['Int']['output']>;\n id?: Maybe<Scalars['String']['output']>;\n ipfsHash?: Maybe<Scalars['String']['output']>;\n isOffchain?: Maybe<Scalars['Boolean']['output']>;\n recipient?: Maybe<Scalars['String']['output']>;\n refUID?: Maybe<Scalars['String']['output']>;\n revocable?: Maybe<Scalars['Boolean']['output']>;\n revocationTime?: Maybe<Scalars['Int']['output']>;\n revoked?: Maybe<Scalars['Boolean']['output']>;\n schemaId?: Maybe<Scalars['String']['output']>;\n time?: Maybe<Scalars['Int']['output']>;\n timeCreated?: Maybe<Scalars['Int']['output']>;\n txid?: Maybe<Scalars['String']['output']>;\n};\n\nexport type AttestationMinOrderByAggregateInput = {\n attester?: InputMaybe<SortOrder>;\n data?: InputMaybe<SortOrder>;\n decodedDataJson?: InputMaybe<SortOrder>;\n expirationTime?: InputMaybe<SortOrder>;\n id?: InputMaybe<SortOrder>;\n ipfsHash?: InputMaybe<SortOrder>;\n isOffchain?: InputMaybe<SortOrder>;\n recipient?: InputMaybe<SortOrder>;\n refUID?: InputMaybe<SortOrder>;\n revocable?: InputMaybe<SortOrder>;\n revocationTime?: InputMaybe<SortOrder>;\n revoked?: InputMaybe<SortOrder>;\n schemaId?: InputMaybe<SortOrder>;\n time?: InputMaybe<SortOrder>;\n timeCreated?: InputMaybe<SortOrder>;\n txid?: InputMaybe<SortOrder>;\n};\n\nexport type AttestationOrderByRelationAggregateInput = {\n _count?: InputMaybe<SortOrder>;\n};\n\nexport type AttestationOrderByWithAggregationInput = {\n _avg?: InputMaybe<AttestationAvgOrderByAggregateInput>;\n _count?: InputMaybe<AttestationCountOrderByAggregateInput>;\n _max?: InputMaybe<AttestationMaxOrderByAggregateInput>;\n _min?: InputMaybe<AttestationMinOrderByAggregateInput>;\n _sum?: InputMaybe<AttestationSumOrderByAggregateInput>;\n attester?: InputMaybe<SortOrder>;\n data?: InputMaybe<SortOrder>;\n decodedDataJson?: InputMaybe<SortOrder>;\n expirationTime?: InputMaybe<SortOrder>;\n id?: InputMaybe<SortOrder>;\n ipfsHash?: InputMaybe<SortOrder>;\n isOffchain?: InputMaybe<SortOrder>;\n recipient?: InputMaybe<SortOrder>;\n refUID?: InputMaybe<SortOrder>;\n revocable?: InputMaybe<SortOrder>;\n revocationTime?: InputMaybe<SortOrder>;\n revoked?: InputMaybe<SortOrder>;\n schemaId?: InputMaybe<SortOrder>;\n time?: InputMaybe<SortOrder>;\n timeCreated?: InputMaybe<SortOrder>;\n txid?: InputMaybe<SortOrder>;\n};\n\nexport type AttestationOrderByWithRelationInput = {\n attester?: InputMaybe<SortOrder>;\n data?: InputMaybe<SortOrder>;\n decodedDataJson?: InputMaybe<SortOrder>;\n expirationTime?: InputMaybe<SortOrder>;\n id?: InputMaybe<SortOrder>;\n ipfsHash?: InputMaybe<SortOrder>;\n isOffchain?: InputMaybe<SortOrder>;\n recipient?: InputMaybe<SortOrder>;\n refUID?: InputMaybe<SortOrder>;\n revocable?: InputMaybe<SortOrder>;\n revocationTime?: InputMaybe<SortOrder>;\n revoked?: InputMaybe<SortOrder>;\n schema?: InputMaybe<SchemaOrderByWithRelationInput>;\n schemaId?: InputMaybe<SortOrder>;\n time?: InputMaybe<SortOrder>;\n timeCreated?: InputMaybe<SortOrder>;\n txid?: InputMaybe<SortOrder>;\n};\n\nexport enum AttestationScalarFieldEnum {\n Attester = 'attester',\n Data = 'data',\n DecodedDataJson = 'decodedDataJson',\n ExpirationTime = 'expirationTime',\n Id = 'id',\n IpfsHash = 'ipfsHash',\n IsOffchain = 'isOffchain',\n Recipient = 'recipient',\n RefUid = 'refUID',\n Revocable = 'revocable',\n RevocationTime = 'revocationTime',\n Revoked = 'revoked',\n SchemaId = 'schemaId',\n Time = 'time',\n TimeCreated = 'timeCreated',\n Txid = 'txid'\n}\n\nexport type AttestationScalarWhereInput = {\n AND?: InputMaybe<Array<AttestationScalarWhereInput>>;\n NOT?: InputMaybe<Array<AttestationScalarWhereInput>>;\n OR?: InputMaybe<Array<AttestationScalarWhereInput>>;\n attester?: InputMaybe<StringFilter>;\n data?: InputMaybe<StringFilter>;\n decodedDataJson?: InputMaybe<StringFilter>;\n expirationTime?: InputMaybe<IntFilter>;\n id?: InputMaybe<StringFilter>;\n ipfsHash?: InputMaybe<StringFilter>;\n isOffchain?: InputMaybe<BoolFilter>;\n recipient?: InputMaybe<StringFilter>;\n refUID?: InputMaybe<StringFilter>;\n revocable?: InputMaybe<BoolFilter>;\n revocationTime?: InputMaybe<IntFilter>;\n revoked?: InputMaybe<BoolFilter>;\n schemaId?: InputMaybe<StringFilter>;\n time?: InputMaybe<IntFilter>;\n timeCreated?: InputMaybe<IntFilter>;\n txid?: InputMaybe<StringFilter>;\n};\n\nexport type AttestationScalarWhereWithAggregatesInput = {\n AND?: InputMaybe<Array<AttestationScalarWhereWithAggregatesInput>>;\n NOT?: InputMaybe<Array<AttestationScalarWhereWithAggregatesInput>>;\n OR?: InputMaybe<Array<AttestationScalarWhereWithAggregatesInput>>;\n attester?: InputMaybe<StringWithAggregatesFilter>;\n data?: InputMaybe<StringWithAggregatesFilter>;\n decodedDataJson?: InputMaybe<StringWithAggregatesFilter>;\n expirationTime?: InputMaybe<IntWithAggregatesFilter>;\n id?: InputMaybe<StringWithAggregatesFilter>;\n ipfsHash?: InputMaybe<StringWithAggregatesFilter>;\n isOffchain?: InputMaybe<BoolWithAggregatesFilter>;\n recipient?: InputMaybe<StringWithAggregatesFilter>;\n refUID?: InputMaybe<StringWithAggregatesFilter>;\n revocable?: InputMaybe<BoolWithAggregatesFilter>;\n revocationTime?: InputMaybe<IntWithAggregatesFilter>;\n revoked?: InputMaybe<BoolWithAggregatesFilter>;\n schemaId?: InputMaybe<StringWithAggregatesFilter>;\n time?: InputMaybe<IntWithAggregatesFilter>;\n timeCreated?: InputMaybe<IntWithAggregatesFilter>;\n txid?: InputMaybe<StringWithAggregatesFilter>;\n};\n\nexport type AttestationSumAggregate = {\n __typename?: 'AttestationSumAggregate';\n expirationTime?: Maybe<Scalars['Int']['output']>;\n revocationTime?: Maybe<Scalars['Int']['output']>;\n time?: Maybe<Scalars['Int']['output']>;\n timeCreated?: Maybe<Scalars['Int']['output']>;\n};\n\nexport type AttestationSumOrderByAggregateInput = {\n expirationTime?: InputMaybe<SortOrder>;\n revocationTime?: InputMaybe<SortOrder>;\n time?: InputMaybe<SortOrder>;\n timeCreated?: InputMaybe<SortOrder>;\n};\n\nexport type AttestationUpdateInput = {\n attester?: InputMaybe<StringFieldUpdateOperationsInput>;\n data?: InputMaybe<StringFieldUpdateOperationsInput>;\n decodedDataJson?: InputMaybe<StringFieldUpdateOperationsInput>;\n expirationTime?: InputMaybe<IntFieldUpdateOperationsInput>;\n id?: InputMaybe<StringFieldUpdateOperationsInput>;\n ipfsHash?: InputMaybe<StringFieldUpdateOperationsInput>;\n isOffchain?: InputMaybe<BoolFieldUpdateOperationsInput>;\n recipient?: InputMaybe<StringFieldUpdateOperationsInput>;\n refUID?: InputMaybe<StringFieldUpdateOperationsInput>;\n revocable?: InputMaybe<BoolFieldUpdateOperationsInput>;\n revocationTime?: InputMaybe<IntFieldUpdateOperationsInput>;\n revoked?: InputMaybe<BoolFieldUpdateOperationsInput>;\n schema?: InputMaybe<SchemaUpdateOneRequiredWithoutAttestationsNestedInput>;\n time?: InputMaybe<IntFieldUpdateOperationsInput>;\n timeCreated?: InputMaybe<IntFieldUpdateOperationsInput>;\n txid?: InputMaybe<StringFieldUpdateOperationsInput>;\n};\n\nexport type AttestationUpdateManyMutationInput = {\n attester?: InputMaybe<StringFieldUpdateOperationsInput>;\n data?: InputMaybe<StringFieldUpdateOperationsInput>;\n decodedDataJson?: InputMaybe<StringFieldUpdateOperationsInput>;\n expirationTime?: InputMaybe<IntFieldUpdateOperationsInput>;\n id?: InputMaybe<StringFieldUpdateOperationsInput>;\n ipfsHash?: InputMaybe<StringFieldUpdateOperationsInput>;\n isOffchain?: InputMaybe<BoolFieldUpdateOperationsInput>;\n recipient?: InputMaybe<StringFieldUpdateOperationsInput>;\n refUID?: InputMaybe<StringFieldUpdateOperationsInput>;\n revocable?: InputMaybe<BoolFieldUpdateOperationsInput>;\n revocationTime?: InputMaybe<IntFieldUpdateOperationsInput>;\n revoked?: InputMaybe<BoolFieldUpdateOperationsInput>;\n time?: InputMaybe<IntFieldUpdateOperationsInput>;\n timeCreated?: InputMaybe<IntFieldUpdateOperationsInput>;\n txid?: InputMaybe<StringFieldUpdateOperationsInput>;\n};\n\nexport type AttestationUpdateManyWithWhereWithoutSchemaInput = {\n data: AttestationUpdateManyMutationInput;\n where: AttestationScalarWhereInput;\n};\n\nexport type AttestationUpdateManyWithoutSchemaNestedInput = {\n connect?: InputMaybe<Array<AttestationWhereUniqueInput>>;\n connectOrCreate?: InputMaybe<Array<AttestationCreateOrConnectWithoutSchemaInput>>;\n create?: InputMaybe<Array<AttestationCreateWithoutSchemaInput>>;\n createMany?: InputMaybe<AttestationCreateManySchemaInputEnvelope>;\n delete?: InputMaybe<Array<AttestationWhereUniqueInput>>;\n deleteMany?: InputMaybe<Array<AttestationScalarWhereInput>>;\n disconnect?: InputMaybe<Array<AttestationWhereUniqueInput>>;\n set?: InputMaybe<Array<AttestationWhereUniqueInput>>;\n update?: InputMaybe<Array<AttestationUpdateWithWhereUniqueWithoutSchemaInput>>;\n updateMany?: InputMaybe<Array<AttestationUpdateManyWithWhereWithoutSchemaInput>>;\n upsert?: InputMaybe<Array<AttestationUpsertWithWhereUniqueWithoutSchemaInput>>;\n};\n\nexport type AttestationUpdateWithWhereUniqueWithoutSchemaInput = {\n data: AttestationUpdateWithoutSchemaInput;\n where: AttestationWhereUniqueInput;\n};\n\nexport type AttestationUpdateWithoutSchemaInput = {\n attester?: InputMaybe<StringFieldUpdateOperationsInput>;\n data?: InputMaybe<StringFieldUpdateOperationsInput>;\n decodedDataJson?: InputMaybe<StringFieldUpdateOperationsInput>;\n expirationTime?: InputMaybe<IntFieldUpdateOperationsInput>;\n id?: InputMaybe<StringFieldUpdateOperationsInput>;\n ipfsHash?: InputMaybe<StringFieldUpdateOperationsInput>;\n isOffchain?: InputMaybe<BoolFieldUpdateOperationsInput>;\n recipient?: InputMaybe<StringFieldUpdateOperationsInput>;\n refUID?: InputMaybe<StringFieldUpdateOperationsInput>;\n revocable?: InputMaybe<BoolFieldUpdateOperationsInput>;\n revocationTime?: InputMaybe<IntFieldUpdateOperationsInput>;\n revoked?: InputMaybe<BoolFieldUpdateOperationsInput>;\n time?: InputMaybe<IntFieldUpdateOperationsInput>;\n timeCreated?: InputMaybe<IntFieldUpdateOperationsInput>;\n txid?: InputMaybe<StringFieldUpdateOperationsInput>;\n};\n\nexport type AttestationUpsertWithWhereUniqueWithoutSchemaInput = {\n create: AttestationCreateWithoutSchemaInput;\n update: AttestationUpdateWithoutSchemaInput;\n where: AttestationWhereUniqueInput;\n};\n\nexport type AttestationWhereInput = {\n AND?: InputMaybe<Array<AttestationWhereInput>>;\n NOT?: InputMaybe<Array<AttestationWhereInput>>;\n OR?: InputMaybe<Array<AttestationWhereInput>>;\n attester?: InputMaybe<StringFilter>;\n data?: InputMaybe<StringFilter>;\n decodedDataJson?: InputMaybe<StringFilter>;\n expirationTime?: InputMaybe<IntFilter>;\n id?: InputMaybe<StringFilter>;\n ipfsHash?: InputMaybe<StringFilter>;\n isOffchain?: InputMaybe<BoolFilter>;\n recipient?: InputMaybe<StringFilter>;\n refUID?: InputMaybe<StringFilter>;\n revocable?: InputMaybe<BoolFilter>;\n revocationTime?: InputMaybe<IntFilter>;\n revoked?: InputMaybe<BoolFilter>;\n schema?: InputMaybe<SchemaRelationFilter>;\n schemaId?: InputMaybe<StringFilter>;\n time?: InputMaybe<IntFilter>;\n timeCreated?: InputMaybe<IntFilter>;\n txid?: InputMaybe<StringFilter>;\n};\n\nexport type AttestationWhereUniqueInput = {\n id?: InputMaybe<Scalars['String']['input']>;\n};\n\nexport type BoolFieldUpdateOperationsInput = {\n set?: InputMaybe<Scalars['Boolean']['input']>;\n};\n\nexport type BoolFilter = {\n equals?: InputMaybe<Scalars['Boolean']['input']>;\n not?: InputMaybe<NestedBoolFilter>;\n};\n\nexport type BoolWithAggregatesFilter = {\n _count?: InputMaybe<NestedIntFilter>;\n _max?: InputMaybe<NestedBoolFilter>;\n _min?: InputMaybe<NestedBoolFilter>;\n equals?: InputMaybe<Scalars['Boolean']['input']>;\n not?: InputMaybe<NestedBoolWithAggregatesFilter>;\n};\n\nexport type EnsName = {\n __typename?: 'EnsName';\n id: Scalars['String']['output'];\n name: Scalars['String']['output'];\n timestamp: Scalars['Int']['output'];\n};\n\nexport type EnsNameAvgAggregate = {\n __typename?: 'EnsNameAvgAggregate';\n timestamp?: Maybe<Scalars['Float']['output']>;\n};\n\nexport type EnsNameAvgOrderByAggregateInput = {\n timestamp?: InputMaybe<SortOrder>;\n};\n\nexport type EnsNameCountAggregate = {\n __typename?: 'EnsNameCountAggregate';\n _all: Scalars['Int']['output'];\n id: Scalars['Int']['output'];\n name: Scalars['Int']['output'];\n timestamp: Scalars['Int']['output'];\n};\n\nexport type EnsNameCountOrderByAggregateInput = {\n id?: InputMaybe<SortOrder>;\n name?: InputMaybe<SortOrder>;\n timestamp?: InputMaybe<SortOrder>;\n};\n\nexport type EnsNameCreateInput = {\n id: Scalars['String']['input'];\n name: Scalars['String']['input'];\n timestamp: Scalars['Int']['input'];\n};\n\nexport type EnsNameCreateManyInput = {\n id: Scalars['String']['input'];\n name: Scalars['String']['input'];\n timestamp: Scalars['Int']['input'];\n};\n\nexport type EnsNameGroupBy = {\n __typename?: 'EnsNameGroupBy';\n _avg?: Maybe<EnsNameAvgAggregate>;\n _count?: Maybe<EnsNameCountAggregate>;\n _max?: Maybe<EnsNameMaxAggregate>;\n _min?: Maybe<EnsNameMinAggregate>;\n _sum?: Maybe<EnsNameSumAggregate>;\n id: Scalars['String']['output'];\n name: Scalars['String']['output'];\n timestamp: Scalars['Int']['output'];\n};\n\nexport type EnsNameMaxAggregate = {\n __typename?: 'EnsNameMaxAggregate';\n id?: Maybe<Scalars['String']['output']>;\n name?: Maybe<Scalars['String']['output']>;\n timestamp?: Maybe<Scalars['Int']['output']>;\n};\n\nexport type EnsNameMaxOrderByAggregateInput = {\n id?: InputMaybe<SortOrder>;\n name?: InputMaybe<SortOrder>;\n timestamp?: InputMaybe<SortOrder>;\n};\n\nexport type EnsNameMinAggregate = {\n __typename?: 'EnsNameMinAggregate';\n id?: Maybe<Scalars['String']['output']>;\n name?: Maybe<Scalars['String']['output']>;\n timestamp?: Maybe<Scalars['Int']['output']>;\n};\n\nexport type EnsNameMinOrderByAggregateInput = {\n id?: InputMaybe<SortOrder>;\n name?: InputMaybe<SortOrder>;\n timestamp?: InputMaybe<SortOrder>;\n};\n\nexport type EnsNameOrderByWithAggregationInput = {\n _avg?: InputMaybe<EnsNameAvgOrderByAggregateInput>;\n _count?: InputMaybe<EnsNameCountOrderByAggregateInput>;\n _max?: InputMaybe<EnsNameMaxOrderByAggregateInput>;\n _min?: InputMaybe<EnsNameMinOrderByAggregateInput>;\n _sum?: InputMaybe<EnsNameSumOrderByAggregateInput>;\n id?: InputMaybe<SortOrder>;\n name?: InputMaybe<SortOrder>;\n timestamp?: InputMaybe<SortOrder>;\n};\n\nexport type EnsNameOrderByWithRelationInput = {\n id?: InputMaybe<SortOrder>;\n name?: InputMaybe<SortOrder>;\n timestamp?: InputMaybe<SortOrder>;\n};\n\nexport enum EnsNameScalarFieldEnum {\n Id = 'id',\n Name = 'name',\n Timestamp = 'timestamp'\n}\n\nexport type EnsNameScalarWhereWithAggregatesInput = {\n AND?: InputMaybe<Array<EnsNameScalarWhereWithAggregatesInput>>;\n NOT?: InputMaybe<Array<EnsNameScalarWhereWithAggregatesInput>>;\n OR?: InputMaybe<Array<EnsNameScalarWhereWithAggregatesInput>>;\n id?: InputMaybe<StringWithAggregatesFilter>;\n name?: InputMaybe<StringWithAggregatesFilter>;\n timestamp?: InputMaybe<IntWithAggregatesFilter>;\n};\n\nexport type EnsNameSumAggregate = {\n __typename?: 'EnsNameSumAggregate';\n timestamp?: Maybe<Scalars['Int']['output']>;\n};\n\nexport type EnsNameSumOrderByAggregateInput = {\n timestamp?: InputMaybe<SortOrder>;\n};\n\nexport type EnsNameUpdateInput = {\n id?: InputMaybe<StringFieldUpdateOperationsInput>;\n name?: InputMaybe<StringFieldUpdateOperationsInput>;\n timestamp?: InputMaybe<IntFieldUpdateOperationsInput>;\n};\n\nexport type EnsNameUpdateManyMutationInput = {\n id?: InputMaybe<StringFieldUpdateOperationsInput>;\n name?: InputMaybe<StringFieldUpdateOperationsInput>;\n timestamp?: InputMaybe<IntFieldUpdateOperationsInput>;\n};\n\nexport type EnsNameWhereInput = {\n AND?: InputMaybe<Array<EnsNameWhereInput>>;\n NOT?: InputMaybe<Array<EnsNameWhereInput>>;\n OR?: InputMaybe<Array<EnsNameWhereInput>>;\n id?: InputMaybe<StringFilter>;\n name?: InputMaybe<StringFilter>;\n timestamp?: InputMaybe<IntFilter>;\n};\n\nexport type EnsNameWhereUniqueInput = {\n id?: InputMaybe<Scalars['String']['input']>;\n};\n\nexport type IntFieldUpdateOperationsInput = {\n decrement?: InputMaybe<Scalars['Int']['input']>;\n divide?: InputMaybe<Scalars['Int']['input']>;\n increment?: InputMaybe<Scalars['Int']['input']>;\n multiply?: InputMaybe<Scalars['Int']['input']>;\n set?: InputMaybe<Scalars['Int']['input']>;\n};\n\nexport type IntFilter = {\n equals?: InputMaybe<Scalars['Int']['input']>;\n gt?: InputMaybe<Scalars['Int']['input']>;\n gte?: InputMaybe<Scalars['Int']['input']>;\n in?: InputMaybe<Array<Scalars['Int']['input']>>;\n lt?: InputMaybe<Scalars['Int']['input']>;\n lte?: InputMaybe<Scalars['Int']['input']>;\n not?: InputMaybe<NestedIntFilter>;\n notIn?: InputMaybe<Array<Scalars['Int']['input']>>;\n};\n\nexport type IntWithAggregatesFilter = {\n _avg?: InputMaybe<NestedFloatFilter>;\n _count?: InputMaybe<NestedIntFilter>;\n _max?: InputMaybe<NestedIntFilter>;\n _min?: InputMaybe<NestedIntFilter>;\n _sum?: InputMaybe<NestedIntFilter>;\n equals?: InputMaybe<Scalars['Int']['input']>;\n gt?: InputMaybe<Scalars['Int']['input']>;\n gte?: InputMaybe<Scalars['Int']['input']>;\n in?: InputMaybe<Array<Scalars['Int']['input']>>;\n lt?: InputMaybe<Scalars['Int']['input']>;\n lte?: InputMaybe<Scalars['Int']['input']>;\n not?: InputMaybe<NestedIntWithAggregatesFilter>;\n notIn?: InputMaybe<Array<Scalars['Int']['input']>>;\n};\n\nexport type Mutation = {\n __typename?: 'Mutation';\n createManyAttestation: AffectedRowsOutput;\n createManyEnsName: AffectedRowsOutput;\n createManyOffchainRevocation: AffectedRowsOutput;\n createManySchema: AffectedRowsOutput;\n createManySchemaName: AffectedRowsOutput;\n createManyServiceStat: AffectedRowsOutput;\n createManyTimestamp: AffectedRowsOutput;\n createOneAttestation: Attestation;\n createOneEnsName: EnsName;\n createOneOffchainRevocation: OffchainRevocation;\n createOneSchema: Schema;\n createOneSchemaName: SchemaName;\n createOneServiceStat: ServiceStat;\n createOneTimestamp: Timestamp;\n deleteManyAttestation: AffectedRowsOutput;\n deleteManyEnsName: AffectedRowsOutput;\n deleteManyOffchainRevocation: AffectedRowsOutput;\n deleteManySchema: AffectedRowsOutput;\n deleteManySchemaName: AffectedRowsOutput;\n deleteManyServiceStat: AffectedRowsOutput;\n deleteManyTimestamp: AffectedRowsOutput;\n deleteOneAttestation?: Maybe<Attestation>;\n deleteOneEnsName?: Maybe<EnsName>;\n deleteOneOffchainRevocation?: Maybe<OffchainRevocation>;\n deleteOneSchema?: Maybe<Schema>;\n deleteOneSchemaName?: Maybe<SchemaName>;\n deleteOneServiceStat?: Maybe<ServiceStat>;\n deleteOneTimestamp?: Maybe<Timestamp>;\n updateManyAttestation: AffectedRowsOutput;\n updateManyEnsName: AffectedRowsOutput;\n updateManyOffchainRevocation: AffectedRowsOutput;\n updateManySchema: AffectedRowsOutput;\n updateManySchemaName: AffectedRowsOutput;\n updateManyServiceStat: AffectedRowsOutput;\n updateManyTimestamp: AffectedRowsOutput;\n updateOneAttestation?: Maybe<Attestation>;\n updateOneEnsName?: Maybe<EnsName>;\n updateOneOffchainRevocation?: Maybe<OffchainRevocation>;\n updateOneSchema?: Maybe<Schema>;\n updateOneSchemaName?: Maybe<SchemaName>;\n updateOneServiceStat?: Maybe<ServiceStat>;\n updateOneTimestamp?: Maybe<Timestamp>;\n upsertOneAttestation: Attestation;\n upsertOneEnsName: EnsName;\n upsertOneOffchainRevocation: OffchainRevocation;\n upsertOneSchema: Schema;\n upsertOneSchemaName: SchemaName;\n upsertOneServiceStat: ServiceStat;\n upsertOneTimestamp: Timestamp;\n};\n\n\nexport type MutationCreateManyAttestationArgs = {\n data: Array<AttestationCreateManyInput>;\n skipDuplicates?: InputMaybe<Scalars['Boolean']['input']>;\n};\n\n\nexport type MutationCreateManyEnsNameArgs = {\n data: Array<EnsNameCreateManyInput>;\n skipDuplicates?: InputMaybe<Scalars['Boolean']['input']>;\n};\n\n\nexport type MutationCreateManyOffchainRevocationArgs = {\n data: Array<OffchainRevocationCreateManyInput>;\n skipDuplicates?: InputMaybe<Scalars['Boolean']['input']>;\n};\n\n\nexport type MutationCreateManySchemaArgs = {\n data: Array<SchemaCreateManyInput>;\n skipDuplicates?: InputMaybe<Scalars['Boolean']['input']>;\n};\n\n\nexport type MutationCreateManySchemaNameArgs = {\n data: Array<SchemaNameCreateManyInput>;\n skipDuplicates?: InputMaybe<Scalars['Boolean']['input']>;\n};\n\n\nexport type MutationCreateManyServiceStatArgs = {\n data: Array<ServiceStatCreateManyInput>;\n skipDuplicates?: InputMaybe<Scalars['Boolean']['input']>;\n};\n\n\nexport type MutationCreateManyTimestampArgs = {\n data: Array<TimestampCreateManyInput>;\n skipDuplicates?: InputMaybe<Scalars['Boolean']['input']>;\n};\n\n\nexport type MutationCreateOneAttestationArgs = {\n data: AttestationCreateInput;\n};\n\n\nexport type MutationCreateOneEnsNameArgs = {\n data: EnsNameCreateInput;\n};\n\n\nexport type MutationCreateOneOffchainRevocationArgs = {\n data: OffchainRevocationCreateInput;\n};\n\n\nexport type MutationCreateOneSchemaArgs = {\n data: SchemaCreateInput;\n};\n\n\nexport type MutationCreateOneSchemaNameArgs = {\n data: SchemaNameCreateInput;\n};\n\n\nexport type MutationCreateOneServiceStatArgs = {\n data: ServiceStatCreateInput;\n};\n\n\nexport type MutationCreateOneTimestampArgs = {\n data: TimestampCreateInput;\n};\n\n\nexport type MutationDeleteManyAttestationArgs = {\n where?: InputMaybe<AttestationWhereInput>;\n};\n\n\nexport type MutationDeleteManyEnsNameArgs = {\n where?: InputMaybe<EnsNameWhereInput>;\n};\n\n\nexport type MutationDeleteManyOffchainRevocationArgs = {\n where?: InputMaybe<OffchainRevocationWhereInput>;\n};\n\n\nexport type MutationDeleteManySchemaArgs = {\n where?: InputMaybe<SchemaWhereInput>;\n};\n\n\nexport type MutationDeleteManySchemaNameArgs = {\n where?: InputMaybe<SchemaNameWhereInput>;\n};\n\n\nexport type MutationDeleteManyServiceStatArgs = {\n where?: InputMaybe<ServiceStatWhereInput>;\n};\n\n\nexport type MutationDeleteManyTimestampArgs = {\n where?: InputMaybe<TimestampWhereInput>;\n};\n\n\nexport type MutationDeleteOneAttestationArgs = {\n where: AttestationWhereUniqueInput;\n};\n\n\nexport type MutationDeleteOneEnsNameArgs = {\n where: EnsNameWhereUniqueInput;\n};\n\n\nexport type MutationDeleteOneOffchainRevocationArgs = {\n where: OffchainRevocationWhereUniqueInput;\n};\n\n\nexport type MutationDeleteOneSchemaArgs = {\n where: SchemaWhereUniqueInput;\n};\n\n\nexport type MutationDeleteOneSchemaNameArgs = {\n where: SchemaNameWhereUniqueInput;\n};\n\n\nexport type MutationDeleteOneServiceStatArgs = {\n where: ServiceStatWhereUniqueInput;\n};\n\n\nexport type MutationDeleteOneTimestampArgs = {\n where: TimestampWhereUniqueInput;\n};\n\n\nexport type MutationUpdateManyAttestationArgs = {\n data: AttestationUpdateManyMutationInput;\n where?: InputMaybe<AttestationWhereInput>;\n};\n\n\nexport type MutationUpdateManyEnsNameArgs = {\n data: EnsNameUpdateManyMutationInput;\n where?: InputMaybe<EnsNameWhereInput>;\n};\n\n\nexport type MutationUpdateManyOffchainRevocationArgs = {\n data: OffchainRevocationUpdateManyMutationInput;\n where?: InputMaybe<OffchainRevocationWhereInput>;\n};\n\n\nexport type MutationUpdateManySchemaArgs = {\n data: SchemaUpdateManyMutationInput;\n where?: InputMaybe<SchemaWhereInput>;\n};\n\n\nexport type MutationUpdateManySchemaNameArgs = {\n data: SchemaNameUpdateManyMutationInput;\n where?: InputMaybe<SchemaNameWhereInput>;\n};\n\n\nexport type MutationUpdateManyServiceStatArgs = {\n data: ServiceStatUpdateManyMutationInput;\n where?: InputMaybe<ServiceStatWhereInput>;\n};\n\n\nexport type MutationUpdateManyTimestampArgs = {\n data: TimestampUpdateManyMutationInput;\n where?: InputMaybe<TimestampWhereInput>;\n};\n\n\nexport type MutationUpdateOneAttestationArgs = {\n data: AttestationUpdateInput;\n where: AttestationWhereUniqueInput;\n};\n\n\nexport type MutationUpdateOneEnsNameArgs = {\n data: EnsNameUpdateInput;\n where: EnsNameWhereUniqueInput;\n};\n\n\nexport type MutationUpdateOneOffchainRevocationArgs = {\n data: OffchainRevocationUpdateInput;\n where: OffchainRevocationWhereUniqueInput;\n};\n\n\nexport type MutationUpdateOneSchemaArgs = {\n data: SchemaUpdateInput;\n where: SchemaWhereUniqueInput;\n};\n\n\nexport type MutationUpdateOneSchemaNameArgs = {\n data: SchemaNameUpdateInput;\n where: SchemaNameWhereUniqueInput;\n};\n\n\nexport type MutationUpdateOneServiceStatArgs = {\n data: ServiceStatUpdateInput;\n where: ServiceStatWhereUniqueInput;\n};\n\n\nexport type MutationUpdateOneTimestampArgs = {\n data: TimestampUpdateInput;\n where: TimestampWhereUniqueInput;\n};\n\n\nexport type MutationUpsertOneAttestationArgs = {\n create: AttestationCreateInput;\n update: AttestationUpdateInput;\n where: AttestationWhereUniqueInput;\n};\n\n\nexport type MutationUpsertOneEnsNameArgs = {\n create: EnsNameCreateInput;\n update: EnsNameUpdateInput;\n where: EnsNameWhereUniqueInput;\n};\n\n\nexport type MutationUpsertOneOffchainRevocationArgs = {\n create: OffchainRevocationCreateInput;\n update: OffchainRevocationUpdateInput;\n where: OffchainRevocationWhereUniqueInput;\n};\n\n\nexport type MutationUpsertOneSchemaArgs = {\n create: SchemaCreateInput;\n update: SchemaUpdateInput;\n where: SchemaWhereUniqueInput;\n};\n\n\nexport type MutationUpsertOneSchemaNameArgs = {\n create: SchemaNameCreateInput;\n update: SchemaNameUpdateInput;\n where: SchemaNameWhereUniqueInput;\n};\n\n\nexport type MutationUpsertOneServiceStatArgs = {\n create: ServiceStatCreateInput;\n update: ServiceStatUpdateInput;\n where: ServiceStatWhereUniqueInput;\n};\n\n\nexport type MutationUpsertOneTimestampArgs = {\n create: TimestampCreateInput;\n update: TimestampUpdateInput;\n where: TimestampWhereUniqueInput;\n};\n\nexport type NestedBoolFilter = {\n equals?: InputMaybe<Scalars['Boolean']['input']>;\n not?: InputMaybe<NestedBoolFilter>;\n};\n\nexport type NestedBoolWithAggregatesFilter = {\n _count?: InputMaybe<NestedIntFilter>;\n _max?: InputMaybe<NestedBoolFilter>;\n _min?: InputMaybe<NestedBoolFilter>;\n equals?: InputMaybe<Scalars['Boolean']['input']>;\n not?: InputMaybe<NestedBoolWithAggregatesFilter>;\n};\n\nexport type NestedFloatFilter = {\n equals?: InputMaybe<Scalars['Float']['input']>;\n gt?: InputMaybe<Scalars['Float']['input']>;\n gte?: InputMaybe<Scalars['Float']['input']>;\n in?: InputMaybe<Array<Scalars['Float']['input']>>;\n lt?: InputMaybe<Scalars['Float']['input']>;\n lte?: InputMaybe<Scalars['Float']['input']>;\n not?: InputMaybe<NestedFloatFilter>;\n notIn?: InputMaybe<Array<Scalars['Float']['input']>>;\n};\n\nexport type NestedIntFilter = {\n equals?: InputMaybe<Scalars['Int']['input']>;\n gt?: InputMaybe<Scalars['Int']['input']>;\n gte?: InputMaybe<Scalars['Int']['input']>;\n in?: InputMaybe<Array<Scalars['Int']['input']>>;\n lt?: InputMaybe<Scalars['Int']['input']>;\n lte?: InputMaybe<Scalars['Int']['input']>;\n not?: InputMaybe<NestedIntFilter>;\n notIn?: InputMaybe<Array<Scalars['Int']['input']>>;\n};\n\nexport type NestedIntWithAggregatesFilter = {\n _avg?: InputMaybe<NestedFloatFilter>;\n _count?: InputMaybe<NestedIntFilter>;\n _max?: InputMaybe<NestedIntFilter>;\n _min?: InputMaybe<NestedIntFilter>;\n _sum?: InputMaybe<NestedIntFilter>;\n equals?: InputMaybe<Scalars['Int']['input']>;\n gt?: InputMaybe<Scalars['Int']['input']>;\n gte?: InputMaybe<Scalars['Int']['input']>;\n in?: InputMaybe<Array<Scalars['Int']['input']>>;\n lt?: InputMaybe<Scalars['Int']['input']>;\n lte?: InputMaybe<Scalars['Int']['input']>;\n not?: InputMaybe<NestedIntWithAggregatesFilter>;\n notIn?: InputMaybe<Array<Scalars['Int']['input']>>;\n};\n\nexport type NestedStringFilter = {\n contains?: InputMaybe<Scalars['String']['input']>;\n endsWith?: InputMaybe<Scalars['String']['input']>;\n equals?: InputMaybe<Scalars['String']['input']>;\n gt?: InputMaybe<Scalars['String']['input']>;\n gte?: InputMaybe<Scalars['String']['input']>;\n in?: InputMaybe<Array<Scalars['String']['input']>>;\n lt?: InputMaybe<Scalars['String']['input']>;\n lte?: InputMaybe<Scalars['String']['input']>;\n not?: InputMaybe<NestedStringFilter>;\n notIn?: InputMaybe<Array<Scalars['String']['input']>>;\n startsWith?: InputMaybe<Scalars['String']['input']>;\n};\n\nexport type NestedStringWithAggregatesFilter = {\n _count?: InputMaybe<NestedIntFilter>;\n _max?: InputMaybe<NestedStringFilter>;\n _min?: InputMaybe<NestedStringFilter>;\n contains?: InputMaybe<Scalars['String']['input']>;\n endsWith?: InputMaybe<Scalars['String']['input']>;\n equals?: InputMaybe<Scalars['String']['input']>;\n gt?: InputMaybe<Scalars['String']['input']>;\n gte?: InputMaybe<Scalars['String']['input']>;\n in?: InputMaybe<Array<Scalars['String']['input']>>;\n lt?: InputMaybe<Scalars['String']['input']>;\n lte?: InputMaybe<Scalars['String']['input']>;\n not?: InputMaybe<NestedStringWithAggregatesFilter>;\n notIn?: InputMaybe<Array<Scalars['String']['input']>>;\n startsWith?: InputMaybe<Scalars['String']['input']>;\n};\n\nexport type OffchainRevocation = {\n __typename?: 'OffchainRevocation';\n from: Scalars['String']['output'];\n id: Scalars['String']['output'];\n timestamp: Scalars['Int']['output'];\n txid: Scalars['String']['output'];\n uid: Scalars['String']['output'];\n};\n\nexport type OffchainRevocationAvgAggregate = {\n __typename?: 'OffchainRevocationAvgAggregate';\n timestamp?: Maybe<Scalars['Float']['output']>;\n};\n\nexport type OffchainRevocationAvgOrderByAggregateInput = {\n timestamp?: InputMaybe<SortOrder>;\n};\n\nexport type OffchainRevocationCountAggregate = {\n __typename?: 'OffchainRevocationCountAggregate';\n _all: Scalars['Int']['output'];\n from: Scalars['Int']['output'];\n id: Scalars['Int']['output'];\n timestamp: Scalars['Int']['output'];\n txid: Scalars['Int']['output'];\n uid: Scalars['Int']['output'];\n};\n\nexport type OffchainRevocationCountOrderByAggregateInput = {\n from?: InputMaybe<SortOrder>;\n id?: InputMaybe<SortOrder>;\n timestamp?: InputMaybe<SortOrder>;\n txid?: InputMaybe<SortOrder>;\n uid?: InputMaybe<SortOrder>;\n};\n\nexport type OffchainRevocationCreateInput = {\n from: Scalars['String']['input'];\n id?: InputMaybe<Scalars['String']['input']>;\n timestamp: Scalars['Int']['input'];\n txid: Scalars['String']['input'];\n uid: Scalars['String']['input'];\n};\n\nexport type OffchainRevocationCreateManyInput = {\n from: Scalars['String']['input'];\n id?: InputMaybe<Scalars['String']['input']>;\n timestamp: Scalars['Int']['input'];\n txid: Scalars['String']['input'];\n uid: Scalars['String']['input'];\n};\n\nexport type OffchainRevocationGroupBy = {\n __typename?: 'OffchainRevocationGroupBy';\n _avg?: Maybe<OffchainRevocationAvgAggregate>;\n _count?: Maybe<OffchainRevocationCountAggregate>;\n _max?: Maybe<OffchainRevocationMaxAggregate>;\n _min?: Maybe<OffchainRevocationMinAggregate>;\n _sum?: Maybe<OffchainRevocationSumAggregate>;\n from: Scalars['String']['output'];\n id: Scalars['String']['output'];\n timestamp: Scalars['Int']['output'];\n txid: Scalars['String']['output'];\n uid: Scalars['String']['output'];\n};\n\nexport type OffchainRevocationMaxAggregate = {\n __typename?: 'OffchainRevocationMaxAggregate';\n from?: Maybe<Scalars['String']['output']>;\n id?: Maybe<Scalars['String']['output']>;\n timestamp?: Maybe<Scalars['Int']['output']>;\n txid?: Maybe<Scalars['String']['output']>;\n uid?: Maybe<Scalars['String']['output']>;\n};\n\nexport type OffchainRevocationMaxOrderByAggregateInput = {\n from?: InputMaybe<SortOrder>;\n id?: InputMaybe<SortOrder>;\n timestamp?: InputMaybe<SortOrder>;\n txid?: InputMaybe<SortOrder>;\n uid?: InputMaybe<SortOrder>;\n};\n\nexport type OffchainRevocationMinAggregate = {\n __typename?: 'OffchainRevocationMinAggregate';\n from?: Maybe<Scalars['String']['output']>;\n id?: Maybe<Scalars['String']['output']>;\n timestamp?: Maybe<Scalars['Int']['output']>;\n txid?: Maybe<Scalars['String']['output']>;\n uid?: Maybe<Scalars['String']['output']>;\n};\n\nexport type OffchainRevocationMinOrderByAggregateInput = {\n from?: InputMaybe<SortOrder>;\n id?: InputMaybe<SortOrder>;\n timestamp?: InputMaybe<SortOrder>;\n txid?: InputMaybe<SortOrder>;\n uid?: InputMaybe<SortOrder>;\n};\n\nexport type OffchainRevocationOrderByWithAggregationInput = {\n _avg?: InputMaybe<OffchainRevocationAvgOrderByAggregateInput>;\n _count?: InputMaybe<OffchainRevocationCountOrderByAggregateInput>;\n _max?: InputMaybe<OffchainRevocationMaxOrderByAggregateInput>;\n _min?: InputMaybe<OffchainRevocationMinOrderByAggregateInput>;\n _sum?: InputMaybe<OffchainRevocationSumOrderByAggregateInput>;\n from?: InputMaybe<SortOrder>;\n id?: InputMaybe<SortOrder>;\n timestamp?: InputMaybe<SortOrder>;\n txid?: InputMaybe<SortOrder>;\n uid?: InputMaybe<SortOrder>;\n};\n\nexport type OffchainRevocationOrderByWithRelationInput = {\n from?: InputMaybe<SortOrder>;\n id?: InputMaybe<SortOrder>;\n timestamp?: InputMaybe<SortOrder>;\n txid?: InputMaybe<SortOrder>;\n uid?: InputMaybe<SortOrder>;\n};\n\nexport enum OffchainRevocationScalarFieldEnum {\n From = 'from',\n Id = 'id',\n Timestamp = 'timestamp',\n Txid = 'txid',\n Uid = 'uid'\n}\n\nexport type OffchainRevocationScalarWhereWithAggregatesInput = {\n AND?: InputMaybe<Array<OffchainRevocationScalarWhereWithAggregatesInput>>;\n NOT?: InputMaybe<Array<OffchainRevocationScalarWhereWithAggregatesInput>>;\n OR?: InputMaybe<Array<OffchainRevocationScalarWhereWithAggregatesInput>>;\n from?: InputMaybe<StringWithAggregatesFilter>;\n id?: InputMaybe<StringWithAggregatesFilter>;\n timestamp?: InputMaybe<IntWithAggregatesFilter>;\n txid?: InputMaybe<StringWithAggregatesFilter>;\n uid?: InputMaybe<StringWithAggregatesFilter>;\n};\n\nexport type OffchainRevocationSumAggregate = {\n __typename?: 'OffchainRevocationSumAggregate';\n timestamp?: Maybe<Scalars['Int']['output']>;\n};\n\nexport type OffchainRevocationSumOrderByAggregateInput = {\n timestamp?: InputMaybe<SortOrder>;\n};\n\nexport type OffchainRevocationUpdateInput = {\n from?: InputMaybe<StringFieldUpdateOperationsInput>;\n id?: InputMaybe<StringFieldUpdateOperationsInput>;\n timestamp?: InputMaybe<IntFieldUpdateOperationsInput>;\n txid?: InputMaybe<StringFieldUpdateOperationsInput>;\n uid?: InputMaybe<StringFieldUpdateOperationsInput>;\n};\n\nexport type OffchainRevocationUpdateManyMutationInput = {\n from?: InputMaybe<StringFieldUpdateOperationsInput>;\n id?: InputMaybe<StringFieldUpdateOperationsInput>;\n timestamp?: InputMaybe<IntFieldUpdateOperationsInput>;\n txid?: InputMaybe<StringFieldUpdateOperationsInput>;\n uid?: InputMaybe<StringFieldUpdateOperationsInput>;\n};\n\nexport type OffchainRevocationWhereInput = {\n AND?: InputMaybe<Array<OffchainRevocationWhereInput>>;\n NOT?: InputMaybe<Array<OffchainRevocationWhereInput>>;\n OR?: InputMaybe<Array<OffchainRevocationWhereInput>>;\n from?: InputMaybe<StringFilter>;\n id?: InputMaybe<StringFilter>;\n timestamp?: InputMaybe<IntFilter>;\n txid?: InputMaybe<StringFilter>;\n uid?: InputMaybe<StringFilter>;\n};\n\nexport type OffchainRevocationWhereUniqueInput = {\n id?: InputMaybe<Scalars['String']['input']>;\n};\n\nexport type Query = {\n __typename?: 'Query';\n aggregateAttestation: AggregateAttestation;\n aggregateEnsName: AggregateEnsName;\n aggregateOffchainRevocation: AggregateOffchainRevocation;\n aggregateSchema: AggregateSchema;\n aggregateSchemaName: AggregateSchemaName;\n aggregateServiceStat: AggregateServiceStat;\n aggregateTimestamp: AggregateTimestamp;\n attestation?: Maybe<Attestation>;\n attestations: Array<Attestation>;\n ensName?: Maybe<EnsName>;\n ensNames: Array<EnsName>;\n findFirstAttestation?: Maybe<Attestation>;\n findFirstAttestationOrThrow?: Maybe<Attestation>;\n findFirstEnsName?: Maybe<EnsName>;\n findFirstEnsNameOrThrow?: Maybe<EnsName>;\n findFirstOffchainRevocation?: Maybe<OffchainRevocation>;\n findFirstOffchainRevocationOrThrow?: Maybe<OffchainRevocation>;\n findFirstSchema?: Maybe<Schema>;\n findFirstSchemaName?: Maybe<SchemaName>;\n findFirstSchemaNameOrThrow?: Maybe<SchemaName>;\n findFirstSchemaOrThrow?: Maybe<Schema>;\n findFirstServiceStat?: Maybe<ServiceStat>;\n findFirstServiceStatOrThrow?: Maybe<ServiceStat>;\n findFirstTimestamp?: Maybe<Timestamp>;\n findFirstTimestampOrThrow?: Maybe<Timestamp>;\n getAttestation?: Maybe<Attestation>;\n getEnsName?: Maybe<EnsName>;\n getOffchainRevocation?: Maybe<OffchainRevocation>;\n getSchema?: Maybe<Schema>;\n getSchemaName?: Maybe<SchemaName>;\n getServiceStat?: Maybe<ServiceStat>;\n getTimestamp?: Maybe<Timestamp>;\n groupByAttestation: Array<AttestationGroupBy>;\n groupByEnsName: Array<EnsNameGroupBy>;\n groupByOffchainRevocation: Array<OffchainRevocationGroupBy>;\n groupBySchema: Array<SchemaGroupBy>;\n groupBySchemaName: Array<SchemaNameGroupBy>;\n groupByServiceStat: Array<ServiceStatGroupBy>;\n groupByTimestamp: Array<TimestampGroupBy>;\n offchainRevocation?: Maybe<OffchainRevocation>;\n offchainRevocations: Array<OffchainRevocation>;\n schema?: Maybe<Schema>;\n schemaName?: Maybe<SchemaName>;\n schemaNames: Array<SchemaName>;\n schemata: Array<Schema>;\n serviceStat?: Maybe<ServiceStat>;\n serviceStats: Array<ServiceStat>;\n timestamp?: Maybe<Timestamp>;\n timestamps: Array<Timestamp>;\n};\n\n\nexport type QueryAggregateAttestationArgs = {\n cursor?: InputMaybe<AttestationWhereUniqueInput>;\n orderBy?: InputMaybe<Array<AttestationOrderByWithRelationInput>>;\n skip?: InputMaybe<Scalars['Int']['input']>;\n take?: InputMaybe<Scalars['Int']['input']>;\n where?: InputMaybe<AttestationWhereInput>;\n};\n\n\nexport type QueryAggregateEnsNameArgs = {\n cursor?: InputMaybe<EnsNameWhereUniqueInput>;\n orderBy?: InputMaybe<Array<EnsNameOrderByWithRelationInput>>;\n skip?: InputMaybe<Scalars['Int']['input']>;\n take?: InputMaybe<Scalars['Int']['input']>;\n where?: InputMaybe<EnsNameWhereInput>;\n};\n\n\nexport type QueryAggregateOffchainRevocationArgs = {\n cursor?: InputMaybe<OffchainRevocationWhereUniqueInput>;\n orderBy?: InputMaybe<Array<OffchainRevocationOrderByWithRelationInput>>;\n skip?: InputMaybe<Scalars['Int']['input']>;\n take?: InputMaybe<Scalars['Int']['input']>;\n where?: InputMaybe<OffchainRevocationWhereInput>;\n};\n\n\nexport type QueryAggregateSchemaArgs = {\n cursor?: InputMaybe<SchemaWhereUniqueInput>;\n orderBy?: InputMaybe<Array<SchemaOrderByWithRelationInput>>;\n skip?: InputMaybe<Scalars['Int']['input']>;\n take?: InputMaybe<Scalars['Int']['input']>;\n where?: InputMaybe<SchemaWhereInput>;\n};\n\n\nexport type QueryAggregateSchemaNameArgs = {\n cursor?: InputMaybe<SchemaNameWhereUniqueInput>;\n orderBy?: InputMaybe<Array<SchemaNameOrderByWithRelationInput>>;\n skip?: InputMaybe<Scalars['Int']['input']>;\n take?: InputMaybe<Scalars['Int']['input']>;\n where?: InputMaybe<SchemaNameWhereInput>;\n};\n\n\nexport type QueryAggregateServiceStatArgs = {\n cursor?: InputMaybe<ServiceStatWhereUniqueInput>;\n orderBy?: InputMaybe<Array<ServiceStatOrderByWithRelationInput>>;\n skip?: InputMaybe<Scalars['Int']['input']>;\n take?: InputMaybe<Scalars['Int']['input']>;\n where?: InputMaybe<ServiceStatWhereInput>;\n};\n\n\nexport type QueryAggregateTimestampArgs = {\n cursor?: InputMaybe<TimestampWhereUniqueInput>;\n orderBy?: InputMaybe<Array<TimestampOrderByWithRelationInput>>;\n skip?: InputMaybe<Scalars['Int']['input']>;\n take?: InputMaybe<Scalars['Int']['input']>;\n where?: InputMaybe<TimestampWhereInput>;\n};\n\n\nexport type QueryAttestationArgs = {\n where: AttestationWhereUniqueInput;\n};\n\n\nexport type QueryAttestationsArgs = {\n cursor?: InputMaybe<AttestationWhereUniqueInput>;\n distinct?: InputMaybe<Array<AttestationScalarFieldEnum>>;\n orderBy?: InputMaybe<Array<AttestationOrderByWithRelationInput>>;\n skip?: InputMaybe<Scalars['Int']['input']>;\n take?: InputMaybe<Scalars['Int']['input']>;\n where?: InputMaybe<AttestationWhereInput>;\n};\n\n\nexport type QueryEnsNameArgs = {\n where: EnsNameWhereUniqueInput;\n};\n\n\nexport type QueryEnsNamesArgs = {\n cursor?: InputMaybe<EnsNameWhereUniqueInput>;\n distinct?: InputMaybe<Array<EnsNameScalarFieldEnum>>;\n orderBy?: InputMaybe<Array<EnsNameOrderByWithRelationInput>>;\n skip?: InputMaybe<Scalars['Int']['input']>;\n take?: InputMaybe<Scalars['Int']['input']>;\n where?: InputMaybe<EnsNameWhereInput>;\n};\n\n\nexport type QueryFindFirstAttestationArgs = {\n cursor?: InputMaybe<AttestationWhereUniqueInput>;\n distinct?: InputMaybe<Array<AttestationScalarFieldEnum>>;\n orderBy?: InputMaybe<Array<AttestationOrderByWithRelationInput>>;\n skip?: InputMaybe<Scalars['Int']['input']>;\n take?: InputMaybe<Scalars['Int']['input']>;\n where?: InputMaybe<AttestationWhereInput>;\n};\n\n\nexport type QueryFindFirstAttestationOrThrowArgs = {\n cursor?: InputMaybe<AttestationWhereUniqueInput>;\n distinct?: InputMaybe<Array<AttestationScalarFieldEnum>>;\n orderBy?: InputMaybe<Array<AttestationOrderByWithRelationInput>>;\n skip?: InputMaybe<Scalars['Int']['input']>;\n take?: InputMaybe<Scalars['Int']['input']>;\n where?: InputMaybe<AttestationWhereInput>;\n};\n\n\nexport type QueryFindFirstEnsNameArgs = {\n cursor?: InputMaybe<EnsNameWhereUniqueInput>;\n distinct?: InputMaybe<Array<EnsNameScalarFieldEnum>>;\n orderBy?: InputMaybe<Array<EnsNameOrderByWithRelationInput>>;\n skip?: InputMaybe<Scalars['Int']['input']>;\n take?: InputMaybe<Scalars['Int']['input']>;\n where?: InputMaybe<EnsNameWhereInput>;\n};\n\n\nexport type QueryFindFirstEnsNameOrThrowArgs = {\n cursor?: InputMaybe<EnsNameWhereUniqueInput>;\n distinct?: InputMaybe<Array<EnsNameScalarFieldEnum>>;\n orderBy?: InputMaybe<Array<EnsNameOrderByWithRelationInput>>;\n skip?: InputMaybe<Scalars['Int']['input']>;\n take?: InputMaybe<Scalars['Int']['input']>;\n where?: InputMaybe<EnsNameWhereInput>;\n};\n\n\nexport type QueryFindFirstOffchainRevocationArgs = {\n cursor?: InputMaybe<OffchainRevocationWhereUniqueInput>;\n distinct?: InputMaybe<Array<OffchainRevocationScalarFieldEnum>>;\n orderBy?: InputMaybe<Array<OffchainRevocationOrderByWithRelationInput>>;\n skip?: InputMaybe<Scalars['Int']['input']>;\n take?: InputMaybe<Scalars['Int']['input']>;\n where?: InputMaybe<OffchainRevocationWhereInput>;\n};\n\n\nexport type QueryFindFirstOffchainRevocationOrThrowArgs = {\n cursor?: InputMaybe<OffchainRevocationWhereUniqueInput>;\n distinct?: InputMaybe<Array<OffchainRevocationScalarFieldEnum>>;\n orderBy?: InputMaybe<Array<OffchainRevocationOrderByWithRelationInput>>;\n skip?: InputMaybe<Scalars['Int']['input']>;\n take?: InputMaybe<Scalars['Int']['input']>;\n where?: InputMaybe<OffchainRevocationWhereInput>;\n};\n\n\nexport type QueryFindFirstSchemaArgs = {\n cursor?: InputMaybe<SchemaWhereUniqueInput>;\n distinct?: InputMaybe<Array<SchemaScalarFieldEnum>>;\n orderBy?: InputMaybe<Array<SchemaOrderByWithRelationInput>>;\n skip?: InputMaybe<Scalars['Int']['input']>;\n take?: InputMaybe<Scalars['Int']['input']>;\n where?: InputMaybe<SchemaWhereInput>;\n};\n\n\nexport type QueryFindFirstSchemaNameArgs = {\n cursor?: InputMaybe<SchemaNameWhereUniqueInput>;\n distinct?: InputMaybe<Array<SchemaNameScalarFieldEnum>>;\n orderBy?: InputMaybe<Array<SchemaNameOrderByWithRelationInput>>;\n skip?: InputMaybe<Scalars['Int']['input']>;\n take?: InputMaybe<Scalars['Int']['input']>;\n where?: InputMaybe<SchemaNameWhereInput>;\n};\n\n\nexport type QueryFindFirstSchemaNameOrThrowArgs = {\n cursor?: InputMaybe<SchemaNameWhereUniqueInput>;\n distinct?: InputMaybe<Array<SchemaNameScalarFieldEnum>>;\n orderBy?: InputMaybe<Array<SchemaNameOrderByWithRelationInput>>;\n skip?: InputMaybe<Scalars['Int']['input']>;\n take?: InputMaybe<Scalars['Int']['input']>;\n where?: InputMaybe<SchemaNameWhereInput>;\n};\n\n\nexport type QueryFindFirstSchemaOrThrowArgs = {\n cursor?: InputMaybe<SchemaWhereUniqueInput>;\n distinct?: InputMaybe<Array<SchemaScalarFieldEnum>>;\n orderBy?: InputMaybe<Array<SchemaOrderByWithRelationInput>>;\n skip?: InputMaybe<Scalars['Int']['input']>;\n take?: InputMaybe<Scalars['Int']['input']>;\n where?: InputMaybe<SchemaWhereInput>;\n};\n\n\nexport type QueryFindFirstServiceStatArgs = {\n cursor?: InputMaybe<ServiceStatWhereUniqueInput>;\n distinct?: InputMaybe<Array<ServiceStatScalarFieldEnum>>;\n orderBy?: InputMaybe<Array<ServiceStatOrderByWithRelationInput>>;\n skip?: InputMaybe<Scalars['Int']['input']>;\n take?: InputMaybe<Scalars['Int']['input']>;\n where?: InputMaybe<ServiceStatWhereInput>;\n};\n\n\nexport type QueryFindFirstServiceStatOrThrowArgs = {\n cursor?: InputMaybe<ServiceStatWhereUniqueInput>;\n distinct?: InputMaybe<Array<ServiceStatScalarFieldEnum>>;\n orderBy?: InputMaybe<Array<ServiceStatOrderByWithRelationInput>>;\n skip?: InputMaybe<Scalars['Int']['input']>;\n take?: InputMaybe<Scalars['Int']['input']>;\n where?: InputMaybe<ServiceStatWhereInput>;\n};\n\n\nexport type QueryFindFirstTimestampArgs = {\n cursor?: InputMaybe<TimestampWhereUniqueInput>;\n distinct?: InputMaybe<Array<TimestampScalarFieldEnum>>;\n orderBy?: InputMaybe<Array<TimestampOrderByWithRelationInput>>;\n skip?: InputMaybe<Scalars['Int']['input']>;\n take?: InputMaybe<Scalars['Int']['input']>;\n where?: InputMaybe<TimestampWhereInput>;\n};\n\n\nexport type QueryFindFirstTimestampOrThrowArgs = {\n cursor?: InputMaybe<TimestampWhereUniqueInput>;\n distinct?: InputMaybe<Array<TimestampScalarFieldEnum>>;\n orderBy?: InputMaybe<Array<TimestampOrderByWithRelationInput>>;\n skip?: InputMaybe<Scalars['Int']['input']>;\n take?: InputMaybe<Scalars['Int']['input']>;\n where?: InputMaybe<TimestampWhereInput>;\n};\n\n\nexport type QueryGetAttestationArgs = {\n where: AttestationWhereUniqueInput;\n};\n\n\nexport type QueryGetEnsNameArgs = {\n where: EnsNameWhereUniqueInput;\n};\n\n\nexport type QueryGetOffchainRevocationArgs = {\n where: OffchainRevocationWhereUniqueInput;\n};\n\n\nexport type QueryGetSchemaArgs = {\n where: SchemaWhereUniqueInput;\n};\n\n\nexport type QueryGetSchemaNameArgs = {\n where: SchemaNameWhereUniqueInput;\n};\n\n\nexport type QueryGetServiceStatArgs = {\n where: ServiceStatWhereUniqueInput;\n};\n\n\nexport type QueryGetTimestampArgs = {\n where: TimestampWhereUniqueInput;\n};\n\n\nexport type QueryGroupByAttestationArgs = {\n by: Array<AttestationScalarFieldEnum>;\n having?: InputMaybe<AttestationScalarWhereWithAggregatesInput>;\n orderBy?: InputMaybe<Array<AttestationOrderByWithAggregationInput>>;\n skip?: InputMaybe<Scalars['Int']['input']>;\n take?: InputMaybe<Scalars['Int']['input']>;\n where?: InputMaybe<AttestationWhereInput>;\n};\n\n\nexport type QueryGroupByEnsNameArgs = {\n by: Array<EnsNameScalarFieldEnum>;\n having?: InputMaybe<EnsNameScalarWhereWithAggregatesInput>;\n orderBy?: InputMaybe<Array<EnsNameOrderByWithAggregationInput>>;\n skip?: InputMaybe<Scalars['Int']['input']>;\n take?: InputMaybe<Scalars['Int']['input']>;\n where?: InputMaybe<EnsNameWhereInput>;\n};\n\n\nexport type QueryGroupByOffchainRevocationArgs = {\n by: Array<OffchainRevocationScalarFieldEnum>;\n having?: InputMaybe<OffchainRevocationScalarWhereWithAggregatesInput>;\n orderBy?: InputMaybe<Array<OffchainRevocationOrderByWithAggregationInput>>;\n skip?: InputMaybe<Scalars['Int']['input']>;\n take?: InputMaybe<Scalars['Int']['input']>;\n where?: InputMaybe<OffchainRevocationWhereInput>;\n};\n\n\nexport type QueryGroupBySchemaArgs = {\n by: Array<SchemaScalarFieldEnum>;\n having?: InputMaybe<SchemaScalarWhereWithAggregatesInput>;\n orderBy?: InputMaybe<Array<SchemaOrderByWithAggregationInput>>;\n skip?: InputMaybe<Scalars['Int']['input']>;\n take?: InputMaybe<Scalars['Int']['input']>;\n where?: InputMaybe<SchemaWhereInput>;\n};\n\n\nexport type QueryGroupBySchemaNameArgs = {\n by: Array<SchemaNameScalarFieldEnum>;\n having?: InputMaybe<SchemaNameScalarWhereWithAggregatesInput>;\n orderBy?: InputMaybe<Array<SchemaNameOrderByWithAggregationInput>>;\n skip?: InputMaybe<Scalars['Int']['input']>;\n take?: InputMaybe<Scalars['Int']['input']>;\n where?: InputMaybe<SchemaNameWhereInput>;\n};\n\n\nexport type QueryGroupByServiceStatArgs = {\n by: Array<ServiceStatScalarFieldEnum>;\n having?: InputMaybe<ServiceStatScalarWhereWithAggregatesInput>;\n orderBy?: InputMaybe<Array<ServiceStatOrderByWithAggregationInput>>;\n skip?: InputMaybe<Scalars['Int']['input']>;\n take?: InputMaybe<Scalars['Int']['input']>;\n where?: InputMaybe<ServiceStatWhereInput>;\n};\n\n\nexport type QueryGroupByTimestampArgs = {\n by: Array<TimestampScalarFieldEnum>;\n having?: InputMaybe<TimestampScalarWhereWithAggregatesInput>;\n orderBy?: InputMaybe<Array<TimestampOrderByWithAggregationInput>>;\n skip?: InputMaybe<Scalars['Int']['input']>;\n take?: InputMaybe<Scalars['Int']['input']>;\n where?: InputMaybe<TimestampWhereInput>;\n};\n\n\nexport type QueryOffchainRevocationArgs = {\n where: OffchainRevocationWhereUniqueInput;\n};\n\n\nexport type QueryOffchainRevocationsArgs = {\n cursor?: InputMaybe<OffchainRevocationWhereUniqueInput>;\n distinct?: InputMaybe<Array<OffchainRevocationScalarFieldEnum>>;\n orderBy?: InputMaybe<Array<OffchainRevocationOrderByWithRelationInput>>;\n skip?: InputMaybe<Scalars['Int']['input']>;\n take?: InputMaybe<Scalars['Int']['input']>;\n where?: InputMaybe<OffchainRevocationWhereInput>;\n};\n\n\nexport type QuerySchemaArgs = {\n where: SchemaWhereUniqueInput;\n};\n\n\nexport type QuerySchemaNameArgs = {\n where: SchemaNameWhereUniqueInput;\n};\n\n\nexport type QuerySchemaNamesArgs = {\n cursor?: InputMaybe<SchemaNameWhereUniqueInput>;\n distinct?: InputMaybe<Array<SchemaNameScalarFieldEnum>>;\n orderBy?: InputMaybe<Array<SchemaNameOrderByWithRelationInput>>;\n skip?: InputMaybe<Scalars['Int']['input']>;\n take?: InputMaybe<Scalars['Int']['input']>;\n where?: InputMaybe<SchemaNameWhereInput>;\n};\n\n\nexport type QuerySchemataArgs = {\n cursor?: InputMaybe<SchemaWhereUniqueInput>;\n distinct?: InputMaybe<Array<SchemaScalarFieldEnum>>;\n orderBy?: InputMaybe<Array<SchemaOrderByWithRelationInput>>;\n skip?: InputMaybe<Scalars['Int']['input']>;\n take?: InputMaybe<Scalars['Int']['input']>;\n where?: InputMaybe<SchemaWhereInput>;\n};\n\n\nexport type QueryServiceStatArgs = {\n where: ServiceStatWhereUniqueInput;\n};\n\n\nexport type QueryServiceStatsArgs = {\n cursor?: InputMaybe<ServiceStatWhereUniqueInput>;\n distinct?: InputMaybe<Array<ServiceStatScalarFieldEnum>>;\n orderBy?: InputMaybe<Array<ServiceStatOrderByWithRelationInput>>;\n skip?: InputMaybe<Scalars['Int']['input']>;\n take?: InputMaybe<Scalars['Int']['input']>;\n where?: InputMaybe<ServiceStatWhereInput>;\n};\n\n\nexport type QueryTimestampArgs = {\n where: TimestampWhereUniqueInput;\n};\n\n\nexport type QueryTimestampsArgs = {\n cursor?: InputMaybe<TimestampWhereUniqueInput>;\n distinct?: InputMaybe<Array<TimestampScalarFieldEnum>>;\n orderBy?: InputMaybe<Array<TimestampOrderByWithRelationInput>>;\n skip?: InputMaybe<Scalars['Int']['input']>;\n take?: InputMaybe<Scalars['Int']['input']>;\n where?: InputMaybe<TimestampWhereInput>;\n};\n\nexport enum QueryMode {\n Default = 'default',\n Insensitive = 'insensitive'\n}\n\nexport type Schema = {\n __typename?: 'Schema';\n _count?: Maybe<SchemaCount>;\n attestations: Array<Attestation>;\n creator: Scalars['String']['output'];\n id: Scalars['String']['output'];\n index: Scalars['String']['output'];\n resolver: Scalars['String']['output'];\n revocable: Scalars['Boolean']['output'];\n schema: Scalars['String']['output'];\n schemaNames: Array<SchemaName>;\n time: Scalars['Int']['output'];\n txid: Scalars['String']['output'];\n};\n\n\nexport type SchemaAttestationsArgs = {\n cursor?: InputMaybe<AttestationWhereUniqueInput>;\n distinct?: InputMaybe<Array<AttestationScalarFieldEnum>>;\n orderBy?: InputMaybe<Array<AttestationOrderByWithRelationInput>>;\n skip?: InputMaybe<Scalars['Int']['input']>;\n take?: InputMaybe<Scalars['Int']['input']>;\n where?: InputMaybe<AttestationWhereInput>;\n};\n\n\nexport type SchemaSchemaNamesArgs = {\n cursor?: InputMaybe<SchemaNameWhereUniqueInput>;\n distinct?: InputMaybe<Array<SchemaNameScalarFieldEnum>>;\n orderBy?: InputMaybe<Array<SchemaNameOrderByWithRelationInput>>;\n skip?: InputMaybe<Scalars['Int']['input']>;\n take?: InputMaybe<Scalars['Int']['input']>;\n where?: InputMaybe<SchemaNameWhereInput>;\n};\n\nexport type SchemaAvgAggregate = {\n __typename?: 'SchemaAvgAggregate';\n time?: Maybe<Scalars['Float']['output']>;\n};\n\nexport type SchemaAvgOrderByAggregateInput = {\n time?: InputMaybe<SortOrder>;\n};\n\nexport type SchemaCount = {\n __typename?: 'SchemaCount';\n attestations: Scalars['Int']['output'];\n schemaNames: Scalars['Int']['output'];\n};\n\nexport type SchemaCountAggregate = {\n __typename?: 'SchemaCountAggregate';\n _all: Scalars['Int']['output'];\n creator: Scalars['Int']['output'];\n id: Scalars['Int']['output'];\n index: Scalars['Int']['output'];\n resolver: Scalars['Int']['output'];\n revocable: Scalars['Int']['output'];\n schema: Scalars['Int']['output'];\n time: Scalars['Int']['output'];\n txid: Scalars['Int']['output'];\n};\n\nexport type SchemaCountOrderByAggregateInput = {\n creator?: InputMaybe<SortOrder>;\n id?: InputMaybe<SortOrder>;\n index?: InputMaybe<SortOrder>;\n resolver?: InputMaybe<SortOrder>;\n revocable?: InputMaybe<SortOrder>;\n schema?: InputMaybe<SortOrder>;\n time?: InputMaybe<SortOrder>;\n txid?: InputMaybe<SortOrder>;\n};\n\nexport type SchemaCreateInput = {\n attestations?: InputMaybe<AttestationCreateNestedManyWithoutSchemaInput>;\n creator: Scalars['String']['input'];\n id: Scalars['String']['input'];\n index: Scalars['String']['input'];\n resolver: Scalars['String']['input'];\n revocable: Scalars['Boolean']['input'];\n schema: Scalars['String']['input'];\n schemaNames?: InputMaybe<SchemaNameCreateNestedManyWithoutSchemaInput>;\n time: Scalars['Int']['input'];\n txid: Scalars['String']['input'];\n};\n\nexport type SchemaCreateManyInput = {\n creator: Scalars['String']['input'];\n id: Scalars['String']['input'];\n index: Scalars['String']['input'];\n resolver: Scalars['String']['input'];\n revocable: Scalars['Boolean']['input'];\n schema: Scalars['String']['input'];\n time: Scalars['Int']['input'];\n txid: Scalars['String']['input'];\n};\n\nexport type SchemaCreateNestedOneWithoutAttestationsInput = {\n connect?: InputMaybe<SchemaWhereUniqueInput>;\n connectOrCreate?: InputMaybe<SchemaCreateOrConnectWithoutAttestationsInput>;\n create?: InputMaybe<SchemaCreateWithoutAttestationsInput>;\n};\n\nexport type SchemaCreateNestedOneWithoutSchemaNamesInput = {\n connect?: InputMaybe<SchemaWhereUniqueInput>;\n connectOrCreate?: InputMaybe<SchemaCreateOrConnectWithoutSchemaNamesInput>;\n create?: InputMaybe<SchemaCreateWithoutSchemaNamesInput>;\n};\n\nexport type SchemaCreateOrConnectWithoutAttestationsInput = {\n create: SchemaCreateWithoutAttestationsInput;\n where: SchemaWhereUniqueInput;\n};\n\nexport type SchemaCreateOrConnectWithoutSchemaNamesInput = {\n create: SchemaCreateWithoutSchemaNamesInput;\n where: SchemaWhereUniqueInput;\n};\n\nexport type SchemaCreateWithoutAttestationsInput = {\n creator: Scalars['String']['input'];\n id: Scalars['String']['input'];\n index: Scalars['String']['input'];\n resolver: Scalars['String']['input'];\n revocable: Scalars['Boolean']['input'];\n schema: Scalars['String']['input'];\n schemaNames?: InputMaybe<SchemaNameCreateNestedManyWithoutSchemaInput>;\n time: Scalars['Int']['input'];\n txid: Scalars['String']['input'];\n};\n\nexport type SchemaCreateWithoutSchemaNamesInput = {\n attestations?: InputMaybe<AttestationCreateNestedManyWithoutSchemaInput>;\n creator: Scalars['String']['input'];\n id: Scalars['String']['input'];\n index: Scalars['String']['input'];\n resolver: Scalars['String']['input'];\n revocable: Scalars['Boolean']['input'];\n schema: Scalars['String']['input'];\n time: Scalars['Int']['input'];\n txid: Scalars['String']['input'];\n};\n\nexport type SchemaGroupBy = {\n __typename?: 'SchemaGroupBy';\n _avg?: Maybe<SchemaAvgAggregate>;\n _count?: Maybe<SchemaCountAggregate>;\n _max?: Maybe<SchemaMaxAggregate>;\n _min?: Maybe<SchemaMinAggregate>;\n _sum?: Maybe<SchemaSumAggregate>;\n creator: Scalars['String']['output'];\n id: Scalars['String']['output'];\n index: Scalars['String']['output'];\n resolver: Scalars['String']['output'];\n revocable: Scalars['Boolean']['output'];\n schema: Scalars['String']['output'];\n time: Scalars['Int']['output'];\n txid: Scalars['String']['output'];\n};\n\nexport type SchemaMaxAggregate = {\n __typename?: 'SchemaMaxAggregate';\n creator?: Maybe<Scalars['String']['output']>;\n id?: Maybe<Scalars['String']['output']>;\n index?: Maybe<Scalars['String']['output']>;\n resolver?: Maybe<Scalars['String']['output']>;\n revocable?: Maybe<Scalars['Boolean']['output']>;\n schema?: Maybe<Scalars['String']['output']>;\n time?: Maybe<Scalars['Int']['output']>;\n txid?: Maybe<Scalars['String']['output']>;\n};\n\nexport type SchemaMaxOrderByAggregateInput = {\n creator?: InputMaybe<SortOrder>;\n id?: InputMaybe<SortOrder>;\n index?: InputMaybe<SortOrder>;\n resolver?: InputMaybe<SortOrder>;\n revocable?: InputMaybe<SortOrder>;\n schema?: InputMaybe<SortOrder>;\n time?: InputMaybe<SortOrder>;\n txid?: InputMaybe<SortOrder>;\n};\n\nexport type SchemaMinAggregate = {\n __typename?: 'SchemaMinAggregate';\n creator?: Maybe<Scalars['String']['output']>;\n id?: Maybe<Scalars['String']['output']>;\n index?: Maybe<Scalars['String']['output']>;\n resolver?: Maybe<Scalars['String']['output']>;\n revocable?: Maybe<Scalars['Boolean']['output']>;\n schema?: Maybe<Scalars['String']['output']>;\n time?: Maybe<Scalars['Int']['output']>;\n txid?: Maybe<Scalars['String']['output']>;\n};\n\nexport type SchemaMinOrderByAggregateInput = {\n creator?: InputMaybe<SortOrder>;\n id?: InputMaybe<SortOrder>;\n index?: InputMaybe<SortOrder>;\n resolver?: InputMaybe<SortOrder>;\n revocable?: InputMaybe<SortOrder>;\n schema?: InputMaybe<SortOrder>;\n time?: InputMaybe<SortOrder>;\n txid?: InputMaybe<SortOrder>;\n};\n\nexport type SchemaName = {\n __typename?: 'SchemaName';\n attesterAddress: Scalars['String']['output'];\n id: Scalars['String']['output'];\n isCreator: Scalars['Boolean']['output'];\n name: Scalars['String']['output'];\n schema: Schema;\n schemaId: Scalars['String']['output'];\n time: Scalars['Int']['output'];\n};\n\nexport type SchemaNameAvgAggregate = {\n __typename?: 'SchemaNameAvgAggregate';\n time?: Maybe<Scalars['Float']['output']>;\n};\n\nexport type SchemaNameAvgOrderByAggregateInput = {\n time?: InputMaybe<SortOrder>;\n};\n\nexport type SchemaNameCountAggregate = {\n __typename?: 'SchemaNameCountAggregate';\n _all: Scalars['Int']['output'];\n attesterAddress: Scalars['Int']['output'];\n id: Scalars['Int']['output'];\n isCreator: Scalars['Int']['output'];\n name: Scalars['Int']['output'];\n schemaId: Scalars['Int']['output'];\n time: Scalars['Int']['output'];\n};\n\nexport type SchemaNameCountOrderByAggregateInput = {\n attesterAddress?: InputMaybe<SortOrder>;\n id?: InputMaybe<SortOrder>;\n isCreator?: InputMaybe<SortOrder>;\n name?: InputMaybe<SortOrder>;\n schemaId?: InputMaybe<SortOrder>;\n time?: InputMaybe<SortOrder>;\n};\n\nexport type SchemaNameCreateInput = {\n attesterAddress: Scalars['String']['input'];\n id?: InputMaybe<Scalars['String']['input']>;\n isCreator: Scalars['Boolean']['input'];\n name: Scalars['String']['input'];\n schema: SchemaCreateNestedOneWithoutSchemaNamesInput;\n time: Scalars['Int']['input'];\n};\n\nexport type SchemaNameCreateManyInput = {\n attesterAddress: Scalars['String']['input'];\n id?: InputMaybe<Scalars['String']['input']>;\n isCreator: Scalars['Boolean']['input'];\n name: Scalars['String']['input'];\n schemaId: Scalars['String']['input'];\n time: Scalars['Int']['input'];\n};\n\nexport type SchemaNameCreateManySchemaInput = {\n attesterAddress: Scalars['String']['input'];\n id?: InputMaybe<Scalars['String']['input']>;\n isCreator: Scalars['Boolean']['input'];\n name: Scalars['String']['input'];\n time: Scalars['Int']['input'];\n};\n\nexport type SchemaNameCreateManySchemaInputEnvelope = {\n data: Array<SchemaNameCreateManySchemaInput>;\n skipDuplicates?: InputMaybe<Scalars['Boolean']['input']>;\n};\n\nexport type SchemaNameCreateNestedManyWithoutSchemaInput = {\n connect?: InputMaybe<Array<SchemaNameWhereUniqueInput>>;\n connectOrCreate?: InputMaybe<Array<SchemaNameCreateOrConnectWithoutSchemaInput>>;\n create?: InputMaybe<Array<SchemaNameCreateWithoutSchemaInput>>;\n createMany?: InputMaybe<SchemaNameCreateManySchemaInputEnvelope>;\n};\n\nexport type SchemaNameCreateOrConnectWithoutSchemaInput = {\n create: SchemaNameCreateWithoutSchemaInput;\n where: SchemaNameWhereUniqueInput;\n};\n\nexport type SchemaNameCreateWithoutSchemaInput = {\n attesterAddress: Scalars['String']['input'];\n id?: InputMaybe<Scalars['String']['input']>;\n isCreator: Scalars['Boolean']['input'];\n name: Scalars['String']['input'];\n time: Scalars['Int']['input'];\n};\n\nexport type SchemaNameGroupBy = {\n __typename?: 'SchemaNameGroupBy';\n _avg?: Maybe<SchemaNameAvgAggregate>;\n _count?: Maybe<SchemaNameCountAggregate>;\n _max?: Maybe<SchemaNameMaxAggregate>;\n _min?: Maybe<SchemaNameMinAggregate>;\n _sum?: Maybe<SchemaNameSumAggregate>;\n attesterAddress: Scalars['String']['output'];\n id: Scalars['String']['output'];\n isCreator: Scalars['Boolean']['output'];\n name: Scalars['String']['output'];\n schemaId: Scalars['String']['output'];\n time: Scalars['Int']['output'];\n};\n\nexport type SchemaNameListRelationFilter = {\n every?: InputMaybe<SchemaNameWhereInput>;\n none?: InputMaybe<SchemaNameWhereInput>;\n some?: InputMaybe<SchemaNameWhereInput>;\n};\n\nexport type SchemaNameMaxAggregate = {\n __typename?: 'SchemaNameMaxAggregate';\n attesterAddress?: Maybe<Scalars['String']['output']>;\n id?: Maybe<Scalars['String']['output']>;\n isCreator?: Maybe<Scalars['Boolean']['output']>;\n name?: Maybe<Scalars['String']['output']>;\n schemaId?: Maybe<Scalars['String']['output']>;\n time?: Maybe<Scalars['Int']['output']>;\n};\n\nexport type SchemaNameMaxOrderByAggregateInput = {\n attesterAddress?: InputMaybe<SortOrder>;\n id?: InputMaybe<SortOrder>;\n isCreator?: InputMaybe<SortOrder>;\n name?: InputMaybe<SortOrder>;\n schemaId?: InputMaybe<SortOrder>;\n time?: InputMaybe<SortOrder>;\n};\n\nexport type SchemaNameMinAggregate = {\n __typename?: 'SchemaNameMinAggregate';\n attesterAddress?: Maybe<Scalars['String']['output']>;\n id?: Maybe<Scalars['String']['output']>;\n isCreator?: Maybe<Scalars['Boolean']['output']>;\n name?: Maybe<Scalars['String']['output']>;\n schemaId?: Maybe<Scalars['String']['output']>;\n time?: Maybe<Scalars['Int']['output']>;\n};\n\nexport type SchemaNameMinOrderByAggregateInput = {\n attesterAddress?: InputMaybe<SortOrder>;\n id?: InputMaybe<SortOrder>;\n isCreator?: InputMaybe<SortOrder>;\n name?: InputMaybe<SortOrder>;\n schemaId?: InputMaybe<SortOrder>;\n time?: InputMaybe<SortOrder>;\n};\n\nexport type SchemaNameOrderByRelationAggregateInput = {\n _count?: InputMaybe<SortOrder>;\n};\n\nexport type SchemaNameOrderByWithAggregationInput = {\n _avg?: InputMaybe<SchemaNameAvgOrderByAggregateInput>;\n _count?: InputMaybe<SchemaNameCountOrderByAggregateInput>;\n _max?: InputMaybe<SchemaNameMaxOrderByAggregateInput>;\n _min?: InputMaybe<SchemaNameMinOrderByAggregateInput>;\n _sum?: InputMaybe<SchemaNameSumOrderByAggregateInput>;\n attesterAddress?: InputMaybe<SortOrder>;\n id?: InputMaybe<SortOrder>;\n isCreator?: InputMaybe<SortOrder>;\n name?: InputMaybe<SortOrder>;\n schemaId?: InputMaybe<SortOrder>;\n time?: InputMaybe<SortOrder>;\n};\n\nexport type SchemaNameOrderByWithRelationInput = {\n attesterAddress?: InputMaybe<SortOrder>;\n id?: InputMaybe<SortOrder>;\n isCreator?: InputMaybe<SortOrder>;\n name?: InputMaybe<SortOrder>;\n schema?: InputMaybe<SchemaOrderByWithRelationInput>;\n schemaId?: InputMaybe<SortOrder>;\n time?: InputMaybe<SortOrder>;\n};\n\nexport enum SchemaNameScalarFieldEnum {\n AttesterAddress = 'attesterAddress',\n Id = 'id',\n IsCreator = 'isCreator',\n Name = 'name',\n SchemaId = 'schemaId',\n Time = 'time'\n}\n\nexport type SchemaNameScalarWhereInput = {\n AND?: InputMaybe<Array<SchemaNameScalarWhereInput>>;\n NOT?: InputMaybe<Array<SchemaNameScalarWhereInput>>;\n OR?: InputMaybe<Array<SchemaNameScalarWhereInput>>;\n attesterAddress?: InputMaybe<StringFilter>;\n id?: InputMaybe<StringFilter>;\n isCreator?: InputMaybe<BoolFilter>;\n name?: InputMaybe<StringFilter>;\n schemaId?: InputMaybe<StringFilter>;\n time?: InputMaybe<IntFilter>;\n};\n\nexport type SchemaNameScalarWhereWithAggregatesInput = {\n AND?: InputMaybe<Array<SchemaNameScalarWhereWithAggregatesInput>>;\n NOT?: InputMaybe<Array<SchemaNameScalarWhereWithAggregatesInput>>;\n OR?: InputMaybe<Array<SchemaNameScalarWhereWithAggregatesInput>>;\n attesterAddress?: InputMaybe<StringWithAggregatesFilter>;\n id?: InputMaybe<StringWithAggregatesFilter>;\n isCreator?: InputMaybe<BoolWithAggregatesFilter>;\n name?: InputMaybe<StringWithAggregatesFilter>;\n schemaId?: InputMaybe<StringWithAggregatesFilter>;\n time?: InputMaybe<IntWithAggregatesFilter>;\n};\n\nexport type SchemaNameSumAggregate = {\n __typename?: 'SchemaNameSumAggregate';\n time?: Maybe<Scalars['Int']['output']>;\n};\n\nexport type SchemaNameSumOrderByAggregateInput = {\n time?: InputMaybe<SortOrder>;\n};\n\nexport type SchemaNameUpdateInput = {\n attesterAddress?: InputMaybe<StringFieldUpdateOperationsInput>;\n id?: InputMaybe<StringFieldUpdateOperationsInput>;\n isCreator?: InputMaybe<BoolFieldUpdateOperationsInput>;\n name?: InputMaybe<StringFieldUpdateOperationsInput>;\n schema?: InputMaybe<SchemaUpdateOneRequiredWithoutSchemaNamesNestedInput>;\n time?: InputMaybe<IntFieldUpdateOperationsInput>;\n};\n\nexport type SchemaNameUpdateManyMutationInput = {\n attesterAddress?: InputMaybe<StringFieldUpdateOperationsInput>;\n id?: InputMaybe<StringFieldUpdateOperationsInput>;\n isCreator?: InputMaybe<BoolFieldUpdateOperationsInput>;\n name?: InputMaybe<StringFieldUpdateOperationsInput>;\n time?: InputMaybe<IntFieldUpdateOperationsInput>;\n};\n\nexport type SchemaNameUpdateManyWithWhereWithoutSchemaInput = {\n data: SchemaNameUpdateManyMutationInput;\n where: SchemaNameScalarWhereInput;\n};\n\nexport type SchemaNameUpdateManyWithoutSchemaNestedInput = {\n connect?: InputMaybe<Array<SchemaNameWhereUniqueInput>>;\n connectOrCreate?: InputMaybe<Array<SchemaNameCreateOrConnectWithoutSchemaInput>>;\n create?: InputMaybe<Array<SchemaNameCreateWithoutSchemaInput>>;\n createMany?: InputMaybe<SchemaNameCreateManySchemaInputEnvelope>;\n delete?: InputMaybe<Array<SchemaNameWhereUniqueInput>>;\n deleteMany?: InputMaybe<Array<SchemaNameScalarWhereInput>>;\n disconnect?: InputMaybe<Array<SchemaNameWhereUniqueInput>>;\n set?: InputMaybe<Array<SchemaNameWhereUniqueInput>>;\n update?: InputMaybe<Array<SchemaNameUpdateWithWhereUniqueWithoutSchemaInput>>;\n updateMany?: InputMaybe<Array<SchemaNameUpdateManyWithWhereWithoutSchemaInput>>;\n upsert?: InputMaybe<Array<SchemaNameUpsertWithWhereUniqueWithoutSchemaInput>>;\n};\n\nexport type SchemaNameUpdateWithWhereUniqueWithoutSchemaInput = {\n data: SchemaNameUpdateWithoutSchemaInput;\n where: SchemaNameWhereUniqueInput;\n};\n\nexport type SchemaNameUpdateWithoutSchemaInput = {\n attesterAddress?: InputMaybe<StringFieldUpdateOperationsInput>;\n id?: InputMaybe<StringFieldUpdateOperationsInput>;\n isCreator?: InputMaybe<BoolFieldUpdateOperationsInput>;\n name?: InputMaybe<StringFieldUpdateOperationsInput>;\n time?: InputMaybe<IntFieldUpdateOperationsInput>;\n};\n\nexport type SchemaNameUpsertWithWhereUniqueWithoutSchemaInput = {\n create: SchemaNameCreateWithoutSchemaInput;\n update: SchemaNameUpdateWithoutSchemaInput;\n where: SchemaNameWhereUniqueInput;\n};\n\nexport type SchemaNameWhereInput = {\n AND?: InputMaybe<Array<SchemaNameWhereInput>>;\n NOT?: InputMaybe<Array<SchemaNameWhereInput>>;\n OR?: InputMaybe<Array<SchemaNameWhereInput>>;\n attesterAddress?: InputMaybe<StringFilter>;\n id?: InputMaybe<StringFilter>;\n isCreator?: InputMaybe<BoolFilter>;\n name?: InputMaybe<StringFilter>;\n schema?: InputMaybe<SchemaRelationFilter>;\n schemaId?: InputMaybe<StringFilter>;\n time?: InputMaybe<IntFilter>;\n};\n\nexport type SchemaNameWhereUniqueInput = {\n id?: InputMaybe<Scalars['String']['input']>;\n};\n\nexport type SchemaOrderByWithAggregationInput = {\n _avg?: InputMaybe<SchemaAvgOrderByAggregateInput>;\n _count?: InputMaybe<SchemaCountOrderByAggregateInput>;\n _max?: InputMaybe<SchemaMaxOrderByAggregateInput>;\n _min?: InputMaybe<SchemaMinOrderByAggregateInput>;\n _sum?: InputMaybe<SchemaSumOrderByAggregateInput>;\n creator?: InputMaybe<SortOrder>;\n id?: InputMaybe<SortOrder>;\n index?: InputMaybe<SortOrder>;\n resolver?: InputMaybe<SortOrder>;\n revocable?: InputMaybe<SortOrder>;\n schema?: InputMaybe<SortOrder>;\n time?: InputMaybe<SortOrder>;\n txid?: InputMaybe<SortOrder>;\n};\n\nexport type SchemaOrderByWithRelationInput = {\n attestations?: InputMaybe<AttestationOrderByRelationAggregateInput>;\n creator?: InputMaybe<SortOrder>;\n id?: InputMaybe<SortOrder>;\n index?: InputMaybe<SortOrder>;\n resolver?: InputMaybe<SortOrder>;\n revocable?: InputMaybe<SortOrder>;\n schema?: InputMaybe<SortOrder>;\n schemaNames?: InputMaybe<SchemaNameOrderByRelationAggregateInput>;\n time?: InputMaybe<SortOrder>;\n txid?: InputMaybe<SortOrder>;\n};\n\nexport type SchemaRelationFilter = {\n is?: InputMaybe<SchemaWhereInput>;\n isNot?: InputMaybe<SchemaWhereInput>;\n};\n\nexport enum SchemaScalarFieldEnum {\n Creator = 'creator',\n Id = 'id',\n Index = 'index',\n Resolver = 'resolver',\n Revocable = 'revocable',\n Schema = 'schema',\n Time = 'time',\n Txid = 'txid'\n}\n\nexport type SchemaScalarWhereWithAggregatesInput = {\n AND?: InputMaybe<Array<SchemaScalarWhereWithAggregatesInput>>;\n NOT?: InputMaybe<Array<SchemaScalarWhereWithAggregatesInput>>;\n OR?: InputMaybe<Array<SchemaScalarWhereWithAggregatesInput>>;\n creator?: InputMaybe<StringWithAggregatesFilter>;\n id?: InputMaybe<StringWithAggregatesFilter>;\n index?: InputMaybe<StringWithAggregatesFilter>;\n resolver?: InputMaybe<StringWithAggregatesFilter>;\n revocable?: InputMaybe<BoolWithAggregatesFilter>;\n schema?: InputMaybe<StringWithAggregatesFilter>;\n time?: InputMaybe<IntWithAggregatesFilter>;\n txid?: InputMaybe<StringWithAggregatesFilter>;\n};\n\nexport type SchemaSumAggregate = {\n __typename?: 'SchemaSumAggregate';\n time?: Maybe<Scalars['Int']['output']>;\n};\n\nexport type SchemaSumOrderByAggregateInput = {\n time?: InputMaybe<SortOrder>;\n};\n\nexport type SchemaUpdateInput = {\n attestations?: InputMaybe<AttestationUpdateManyWithoutSchemaNestedInput>;\n creator?: InputMaybe<StringFieldUpdateOperationsInput>;\n id?: InputMaybe<StringFieldUpdateOperationsInput>;\n index?: InputMaybe<StringFieldUpdateOperationsInput>;\n resolver?: InputMaybe<StringFieldUpdateOperationsInput>;\n revocable?: InputMaybe<BoolFieldUpdateOperationsInput>;\n schema?: InputMaybe<StringFieldUpdateOperationsInput>;\n schemaNames?: InputMaybe<SchemaNameUpdateManyWithoutSchemaNestedInput>;\n time?: InputMaybe<IntFieldUpdateOperationsInput>;\n txid?: InputMaybe<StringFieldUpdateOperationsInput>;\n};\n\nexport type SchemaUpdateManyMutationInput = {\n creator?: InputMaybe<StringFieldUpdateOperationsInput>;\n id?: InputMaybe<StringFieldUpdateOperationsInput>;\n index?: InputMaybe<StringFieldUpdateOperationsInput>;\n resolver?: InputMaybe<StringFieldUpdateOperationsInput>;\n revocable?: InputMaybe<BoolFieldUpdateOperationsInput>;\n schema?: InputMaybe<StringFieldUpdateOperationsInput>;\n time?: InputMaybe<IntFieldUpdateOperationsInput>;\n txid?: InputMaybe<StringFieldUpdateOperationsInput>;\n};\n\nexport type SchemaUpdateOneRequiredWithoutAttestationsNestedInput = {\n connect?: InputMaybe<SchemaWhereUniqueInput>;\n connectOrCreate?: InputMaybe<SchemaCreateOrConnectWithoutAttestationsInput>;\n create?: InputMaybe<SchemaCreateWithoutAttestationsInput>;\n update?: InputMaybe<SchemaUpdateWithoutAttestationsInput>;\n upsert?: InputMaybe<SchemaUpsertWithoutAttestationsInput>;\n};\n\nexport type SchemaUpdateOneRequiredWithoutSchemaNamesNestedInput = {\n connect?: InputMaybe<SchemaWhereUniqueInput>;\n connectOrCreate?: InputMaybe<SchemaCreateOrConnectWithoutSchemaNamesInput>;\n create?: InputMaybe<SchemaCreateWithoutSchemaNamesInput>;\n update?: InputMaybe<SchemaUpdateWithoutSchemaNamesInput>;\n upsert?: InputMaybe<SchemaUpsertWithoutSchemaNamesInput>;\n};\n\nexport type SchemaUpdateWithoutAttestationsInput = {\n creator?: InputMaybe<StringFieldUpdateOperationsInput>;\n id?: InputMaybe<StringFieldUpdateOperationsInput>;\n index?: InputMaybe<StringFieldUpdateOperationsInput>;\n resolver?: InputMaybe<StringFieldUpdateOperationsInput>;\n revocable?: InputMaybe<BoolFieldUpdateOperationsInput>;\n schema?: InputMaybe<StringFieldUpdateOperationsInput>;\n schemaNames?: InputMaybe<SchemaNameUpdateManyWithoutSchemaNestedInput>;\n time?: InputMaybe<IntFieldUpdateOperationsInput>;\n txid?: InputMaybe<StringFieldUpdateOperationsInput>;\n};\n\nexport type SchemaUpdateWithoutSchemaNamesInput = {\n attestations?: InputMaybe<AttestationUpdateManyWithoutSchemaNestedInput>;\n creator?: InputMaybe<StringFieldUpdateOperationsInput>;\n id?: InputMaybe<StringFieldUpdateOperationsInput>;\n index?: InputMaybe<StringFieldUpdateOperationsInput>;\n resolver?: InputMaybe<StringFieldUpdateOperationsInput>;\n revocable?: InputMaybe<BoolFieldUpdateOperationsInput>;\n schema?: InputMaybe<StringFieldUpdateOperationsInput>;\n time?: InputMaybe<IntFieldUpdateOperationsInput>;\n txid?: InputMaybe<StringFieldUpdateOperationsInput>;\n};\n\nexport type SchemaUpsertWithoutAttestationsInput = {\n create: SchemaCreateWithoutAttestationsInput;\n update: SchemaUpdateWithoutAttestationsInput;\n};\n\nexport type SchemaUpsertWithoutSchemaNamesInput = {\n create: SchemaCreateWithoutSchemaNamesInput;\n update: SchemaUpdateWithoutSchemaNamesInput;\n};\n\nexport type SchemaWhereInput = {\n AND?: InputMaybe<Array<SchemaWhereInput>>;\n NOT?: InputMaybe<Array<SchemaWhereInput>>;\n OR?: InputMaybe<Array<SchemaWhereInput>>;\n attestations?: InputMaybe<AttestationListRelationFilter>;\n creator?: InputMaybe<StringFilter>;\n id?: InputMaybe<StringFilter>;\n index?: InputMaybe<StringFilter>;\n resolver?: InputMaybe<StringFilter>;\n revocable?: InputMaybe<BoolFilter>;\n schema?: InputMaybe<StringFilter>;\n schemaNames?: InputMaybe<SchemaNameListRelationFilter>;\n time?: InputMaybe<IntFilter>;\n txid?: InputMaybe<StringFilter>;\n};\n\nexport type SchemaWhereUniqueInput = {\n id?: InputMaybe<Scalars['String']['input']>;\n};\n\nexport type ServiceStat = {\n __typename?: 'ServiceStat';\n name: Scalars['String']['output'];\n value: Scalars['String']['output'];\n};\n\nexport type ServiceStatCountAggregate = {\n __typename?: 'ServiceStatCountAggregate';\n _all: Scalars['Int']['output'];\n name: Scalars['Int']['output'];\n value: Scalars['Int']['output'];\n};\n\nexport type ServiceStatCountOrderByAggregateInput = {\n name?: InputMaybe<SortOrder>;\n value?: InputMaybe<SortOrder>;\n};\n\nexport type ServiceStatCreateInput = {\n name: Scalars['String']['input'];\n value: Scalars['String']['input'];\n};\n\nexport type ServiceStatCreateManyInput = {\n name: Scalars['String']['input'];\n value: Scalars['String']['input'];\n};\n\nexport type ServiceStatGroupBy = {\n __typename?: 'ServiceStatGroupBy';\n _count?: Maybe<ServiceStatCountAggregate>;\n _max?: Maybe<ServiceStatMaxAggregate>;\n _min?: Maybe<ServiceStatMinAggregate>;\n name: Scalars['String']['output'];\n value: Scalars['String']['output'];\n};\n\nexport type ServiceStatMaxAggregate = {\n __typename?: 'ServiceStatMaxAggregate';\n name?: Maybe<Scalars['String']['output']>;\n value?: Maybe<Scalars['String']['output']>;\n};\n\nexport type ServiceStatMaxOrderByAggregateInput = {\n name?: InputMaybe<SortOrder>;\n value?: InputMaybe<SortOrder>;\n};\n\nexport type ServiceStatMinAggregate = {\n __typename?: 'ServiceStatMinAggregate';\n name?: Maybe<Scalars['String']['output']>;\n value?: Maybe<Scalars['String']['output']>;\n};\n\nexport type ServiceStatMinOrderByAggregateInput = {\n name?: InputMaybe<SortOrder>;\n value?: InputMaybe<SortOrder>;\n};\n\nexport type ServiceStatOrderByWithAggregationInput = {\n _count?: InputMaybe<ServiceStatCountOrderByAggregateInput>;\n _max?: InputMaybe<ServiceStatMaxOrderByAggregateInput>;\n _min?: InputMaybe<ServiceStatMinOrderByAggregateInput>;\n name?: InputMaybe<SortOrder>;\n value?: InputMaybe<SortOrder>;\n};\n\nexport type ServiceStatOrderByWithRelationInput = {\n name?: InputMaybe<SortOrder>;\n value?: InputMaybe<SortOrder>;\n};\n\nexport enum ServiceStatScalarFieldEnum {\n Name = 'name',\n Value = 'value'\n}\n\nexport type ServiceStatScalarWhereWithAggregatesInput = {\n AND?: InputMaybe<Array<ServiceStatScalarWhereWithAggregatesInput>>;\n NOT?: InputMaybe<Array<ServiceStatScalarWhereWithAggregatesInput>>;\n OR?: InputMaybe<Array<ServiceStatScalarWhereWithAggregatesInput>>;\n name?: InputMaybe<StringWithAggregatesFilter>;\n value?: InputMaybe<StringWithAggregatesFilter>;\n};\n\nexport type ServiceStatUpdateInput = {\n name?: InputMaybe<StringFieldUpdateOperationsInput>;\n value?: InputMaybe<StringFieldUpdateOperationsInput>;\n};\n\nexport type ServiceStatUpdateManyMutationInput = {\n name?: InputMaybe<StringFieldUpdateOperationsInput>;\n value?: InputMaybe<StringFieldUpdateOperationsInput>;\n};\n\nexport type ServiceStatWhereInput = {\n AND?: InputMaybe<Array<ServiceStatWhereInput>>;\n NOT?: InputMaybe<Array<ServiceStatWhereInput>>;\n OR?: InputMaybe<Array<ServiceStatWhereInput>>;\n name?: InputMaybe<StringFilter>;\n value?: InputMaybe<StringFilter>;\n};\n\nexport type ServiceStatWhereUniqueInput = {\n name?: InputMaybe<Scalars['String']['input']>;\n};\n\nexport enum SortOrder {\n Asc = 'asc',\n Desc = 'desc'\n}\n\nexport type StringFieldUpdateOperationsInput = {\n set?: InputMaybe<Scalars['String']['input']>;\n};\n\nexport type StringFilter = {\n contains?: InputMaybe<Scalars['String']['input']>;\n endsWith?: InputMaybe<Scalars['String']['input']>;\n equals?: InputMaybe<Scalars['String']['input']>;\n gt?: InputMaybe<Scalars['String']['input']>;\n gte?: InputMaybe<Scalars['String']['input']>;\n in?: InputMaybe<Array<Scalars['String']['input']>>;\n lt?: InputMaybe<Scalars['String']['input']>;\n lte?: InputMaybe<Scalars['String']['input']>;\n mode?: InputMaybe<QueryMode>;\n not?: InputMaybe<NestedStringFilter>;\n notIn?: InputMaybe<Array<Scalars['String']['input']>>;\n startsWith?: InputMaybe<Scalars['String']['input']>;\n};\n\nexport type StringWithAggregatesFilter = {\n _count?: InputMaybe<NestedIntFilter>;\n _max?: InputMaybe<NestedStringFilter>;\n _min?: InputMaybe<NestedStringFilter>;\n contains?: InputMaybe<Scalars['String']['input']>;\n endsWith?: InputMaybe<Scalars['String']['input']>;\n equals?: InputMaybe<Scalars['String']['input']>;\n gt?: InputMaybe<Scalars['String']['input']>;\n gte?: InputMaybe<Scalars['String']['input']>;\n in?: InputMaybe<Array<Scalars['String']['input']>>;\n lt?: InputMaybe<Scalars['String']['input']>;\n lte?: InputMaybe<Scalars['String']['input']>;\n mode?: InputMaybe<QueryMode>;\n not?: InputMaybe<NestedStringWithAggregatesFilter>;\n notIn?: InputMaybe<Array<Scalars['String']['input']>>;\n startsWith?: InputMaybe<Scalars['String']['input']>;\n};\n\nexport type Timestamp = {\n __typename?: 'Timestamp';\n from: Scalars['String']['output'];\n id: Scalars['String']['output'];\n timestamp: Scalars['Int']['output'];\n tree: Scalars['String']['output'];\n txid: Scalars['String']['output'];\n};\n\nexport type TimestampAvgAggregate = {\n __typename?: 'TimestampAvgAggregate';\n timestamp?: Maybe<Scalars['Float']['output']>;\n};\n\nexport type TimestampAvgOrderByAggregateInput = {\n timestamp?: InputMaybe<SortOrder>;\n};\n\nexport type TimestampCountAggregate = {\n __typename?: 'TimestampCountAggregate';\n _all: Scalars['Int']['output'];\n from: Scalars['Int']['output'];\n id: Scalars['Int']['output'];\n timestamp: Scalars['Int']['output'];\n tree: Scalars['Int']['output'];\n txid: Scalars['Int']['output'];\n};\n\nexport type TimestampCountOrderByAggregateInput = {\n from?: InputMaybe<SortOrder>;\n id?: InputMaybe<SortOrder>;\n timestamp?: InputMaybe<SortOrder>;\n tree?: InputMaybe<SortOrder>;\n txid?: InputMaybe<SortOrder>;\n};\n\nexport type TimestampCreateInput = {\n from: Scalars['String']['input'];\n id: Scalars['String']['input'];\n timestamp: Scalars['Int']['input'];\n tree?: InputMaybe<Scalars['String']['input']>;\n txid: Scalars['String']['input'];\n};\n\nexport type TimestampCreateManyInput = {\n from: Scalars['String']['input'];\n id: Scalars['String']['input'];\n timestamp: Scalars['Int']['input'];\n tree?: InputMaybe<Scalars['String']['input']>;\n txid: Scalars['String']['input'];\n};\n\nexport type TimestampGroupBy = {\n __typename?: 'TimestampGroupBy';\n _avg?: Maybe<TimestampAvgAggregate>;\n _count?: Maybe<TimestampCountAggregate>;\n _max?: Maybe<TimestampMaxAggregate>;\n _min?: Maybe<TimestampMinAggregate>;\n _sum?: Maybe<TimestampSumAggregate>;\n from: Scalars['String']['output'];\n id: Scalars['String']['output'];\n timestamp: Scalars['Int']['output'];\n tree: Scalars['String']['output'];\n txid: Scalars['String']['output'];\n};\n\nexport type TimestampMaxAggregate = {\n __typename?: 'TimestampMaxAggregate';\n from?: Maybe<Scalars['String']['output']>;\n id?: Maybe<Scalars['String']['output']>;\n timestamp?: Maybe<Scalars['Int']['output']>;\n tree?: Maybe<Scalars['String']['output']>;\n txid?: Maybe<Scalars['String']['output']>;\n};\n\nexport type TimestampMaxOrderByAggregateInput = {\n from?: InputMaybe<SortOrder>;\n id?: InputMaybe<SortOrder>;\n timestamp?: InputMaybe<SortOrder>;\n tree?: InputMaybe<SortOrder>;\n txid?: InputMaybe<SortOrder>;\n};\n\nexport type TimestampMinAggregate = {\n __typename?: 'TimestampMinAggregate';\n from?: Maybe<Scalars['String']['output']>;\n id?: Maybe<Scalars['String']['output']>;\n timestamp?: Maybe<Scalars['Int']['output']>;\n tree?: Maybe<Scalars['String']['output']>;\n txid?: Maybe<Scalars['String']['output']>;\n};\n\nexport type TimestampMinOrderByAggregateInput = {\n from?: InputMaybe<SortOrder>;\n id?: InputMaybe<SortOrder>;\n timestamp?: InputMaybe<SortOrder>;\n tree?: InputMaybe<SortOrder>;\n txid?: InputMaybe<SortOrder>;\n};\n\nexport type TimestampOrderByWithAggregationInput = {\n _avg?: InputMaybe<TimestampAvgOrderByAggregateInput>;\n _count?: InputMaybe<TimestampCountOrderByAggregateInput>;\n _max?: InputMaybe<TimestampMaxOrderByAggregateInput>;\n _min?: InputMaybe<TimestampMinOrderByAggregateInput>;\n _sum?: InputMaybe<TimestampSumOrderByAggregateInput>;\n from?: InputMaybe<SortOrder>;\n id?: InputMaybe<SortOrder>;\n timestamp?: InputMaybe<SortOrder>;\n tree?: InputMaybe<SortOrder>;\n txid?: InputMaybe<SortOrder>;\n};\n\nexport type TimestampOrderByWithRelationInput = {\n from?: InputMaybe<SortOrder>;\n id?: InputMaybe<SortOrder>;\n timestamp?: InputMaybe<SortOrder>;\n tree?: InputMaybe<SortOrder>;\n txid?: InputMaybe<SortOrder>;\n};\n\nexport enum TimestampScalarFieldEnum {\n From = 'from',\n Id = 'id',\n Timestamp = 'timestamp',\n Tree = 'tree',\n Txid = 'txid'\n}\n\nexport type TimestampScalarWhereWithAggregatesInput = {\n AND?: InputMaybe<Array<TimestampScalarWhereWithAggregatesInput>>;\n NOT?: InputMaybe<Array<TimestampScalarWhereWithAggregatesInput>>;\n OR?: InputMaybe<Array<TimestampScalarWhereWithAggregatesInput>>;\n from?: InputMaybe<StringWithAggregatesFilter>;\n id?: InputMaybe<StringWithAggregatesFilter>;\n timestamp?: InputMaybe<IntWithAggregatesFilter>;\n tree?: InputMaybe<StringWithAggregatesFilter>;\n txid?: InputMaybe<StringWithAggregatesFilter>;\n};\n\nexport type TimestampSumAggregate = {\n __typename?: 'TimestampSumAggregate';\n timestamp?: Maybe<Scalars['Int']['output']>;\n};\n\nexport type TimestampSumOrderByAggregateInput = {\n timestamp?: InputMaybe<SortOrder>;\n};\n\nexport type TimestampUpdateInput = {\n from?: InputMaybe<StringFieldUpdateOperationsInput>;\n id?: InputMaybe<StringFieldUpdateOperationsInput>;\n timestamp?: InputMaybe<IntFieldUpdateOperationsInput>;\n tree?: InputMaybe<StringFieldUpdateOperationsInput>;\n txid?: InputMaybe<StringFieldUpdateOperationsInput>;\n};\n\nexport type TimestampUpdateManyMutationInput = {\n from?: InputMaybe<StringFieldUpdateOperationsInput>;\n id?: InputMaybe<StringFieldUpdateOperationsInput>;\n timestamp?: InputMaybe<IntFieldUpdateOperationsInput>;\n tree?: InputMaybe<StringFieldUpdateOperationsInput>;\n txid?: InputMaybe<StringFieldUpdateOperationsInput>;\n};\n\nexport type TimestampWhereInput = {\n AND?: InputMaybe<Array<TimestampWhereInput>>;\n NOT?: InputMaybe<Array<TimestampWhereInput>>;\n OR?: InputMaybe<Array<TimestampWhereInput>>;\n from?: InputMaybe<StringFilter>;\n id?: InputMaybe<StringFilter>;\n timestamp?: InputMaybe<IntFilter>;\n tree?: InputMaybe<StringFilter>;\n txid?: InputMaybe<StringFilter>;\n};\n\nexport type TimestampWhereUniqueInput = {\n id?: InputMaybe<Scalars['String']['input']>;\n};\n\nexport type AttestationFieldsFragment = { __typename?: 'Attestation', id: string, decodedDataJson: string, attester: string, refUID: string, revoked: boolean, schemaId: string, txid: string, timeCreated: number, time: number, isOffchain: boolean, schema: { __typename?: 'Schema', schemaNames: Array<{ __typename?: 'SchemaName', name: string }> } } & { ' $fragmentName'?: 'AttestationFieldsFragment' };\n\nexport type SchemaFieldsFragment = { __typename?: 'Schema', id: string, resolver: string, revocable: boolean, schema: string, index: string, time: number, txid: string, creator: string, schemaNames: Array<{ __typename?: 'SchemaName', name: string }> } & { ' $fragmentName'?: 'SchemaFieldsFragment' };\n\nexport type GetSchemasQueryVariables = Exact<{\n where: SchemaWhereInput;\n}>;\n\n\nexport type GetSchemasQuery = { __typename?: 'Query', schemas: Array<{ __typename?: 'Schema', id: string, schema: string, schemaNames: Array<{ __typename?: 'SchemaName', name: string }> }> };\n\nexport type GetSchemaByNameQueryVariables = Exact<{\n where: SchemaWhereInput;\n}>;\n\n\nexport type GetSchemaByNameQuery = { __typename?: 'Query', schemas: Array<{ __typename?: 'Schema', id: string, schema: string, schemaNames: Array<{ __typename?: 'SchemaName', name: string }> }> };\n\nexport type GetSeedsQueryVariables = Exact<{\n where: AttestationWhereInput;\n take?: InputMaybe<Scalars['Int']['input']>;\n skip?: InputMaybe<Scalars['Int']['input']>;\n}>;\n\n\nexport type GetSeedsQuery = { __typename?: 'Query', itemSeeds: Array<{ __typename?: 'Attestation', id: string, decodedDataJson: string, attester: string, refUID: string, revoked: boolean, revocationTime: number, schemaId: string, timeCreated: number, isOffchain: boolean, schema: { __typename?: 'Schema', schemaNames: Array<{ __typename?: 'SchemaName', name: string }> } }> };\n\nexport type GetSeedIdsQueryVariables = Exact<{\n where: AttestationWhereInput;\n}>;\n\n\nexport type GetSeedIdsQuery = { __typename?: 'Query', itemSeedIds: Array<{ __typename?: 'Attestation', id: string }> };\n\nexport type GetStorageTransactionIdQueryVariables = Exact<{\n where: AttestationWhereInput;\n}>;\n\n\nexport type GetStorageTransactionIdQuery = { __typename?: 'Query', storageTransactionId: Array<{ __typename?: 'Attestation', id: string, decodedDataJson: string }> };\n\nexport type GetVersionsQueryVariables = Exact<{\n where: AttestationWhereInput;\n}>;\n\n\nexport type GetVersionsQuery = { __typename?: 'Query', itemVersions: Array<(\n { __typename?: 'Attestation' }\n & { ' $fragmentRefs'?: { 'AttestationFieldsFragment': AttestationFieldsFragment } }\n )> };\n\nexport type GetPropertiesQueryVariables = Exact<{\n where: AttestationWhereInput;\n}>;\n\n\nexport type GetPropertiesQuery = { __typename?: 'Query', itemProperties: Array<(\n { __typename?: 'Attestation' }\n & { ' $fragmentRefs'?: { 'AttestationFieldsFragment': AttestationFieldsFragment } }\n )> };\n\nexport type GetAllPropertiesForAllVersionsQueryVariables = Exact<{\n where: AttestationWhereInput;\n}>;\n\n\nexport type GetAllPropertiesForAllVersionsQuery = { __typename?: 'Query', allProperties: Array<(\n { __typename?: 'Attestation' }\n & { ' $fragmentRefs'?: { 'AttestationFieldsFragment': AttestationFieldsFragment } }\n )> };\n\nexport type GetFilesMetadataQueryVariables = Exact<{\n where: AttestationWhereInput;\n}>;\n\n\nexport type GetFilesMetadataQuery = { __typename?: 'Query', filesMetadata: Array<(\n { __typename?: 'Attestation' }\n & { ' $fragmentRefs'?: { 'AttestationFieldsFragment': AttestationFieldsFragment } }\n )> };\n\nexport type GetImageSeedsQueryVariables = Exact<{\n where: AttestationWhereInput;\n}>;\n\n\nexport type GetImageSeedsQuery = { __typename?: 'Query', imageSeeds: Array<{ __typename?: 'Attestation', id: string, decodedDataJson: string, attester: string, refUID: string, revoked: boolean, schemaId: string, txid: string, timeCreated: number, time: number, isOffchain: boolean, schema: { __typename?: 'Schema', schemaNames: Array<{ __typename?: 'SchemaName', name: string }> } }> };\n\nexport type GetImageVersionsQueryVariables = Exact<{\n where: AttestationWhereInput;\n}>;\n\n\nexport type GetImageVersionsQuery = { __typename?: 'Query', imageVersions: Array<(\n { __typename?: 'Attestation' }\n & { ' $fragmentRefs'?: { 'AttestationFieldsFragment': AttestationFieldsFragment } }\n )> };\n\nexport const AttestationFieldsFragmentDoc = {\"kind\":\"Document\",\"definitions\":[{\"kind\":\"FragmentDefinition\",\"name\":{\"kind\":\"Name\",\"value\":\"attestationFields\"},\"typeCondition\":{\"kind\":\"NamedType\",\"name\":{\"kind\":\"Name\",\"value\":\"Attestation\"}},\"selectionSet\":{\"kind\":\"SelectionSet\",\"selections\":[{\"kind\":\"Field\",\"name\":{\"kind\":\"Name\",\"value\":\"id\"}},{\"kind\":\"Field\",\"name\":{\"kind\":\"Name\",\"value\":\"decodedDataJson\"}},{\"kind\":\"Field\",\"name\":{\"kind\":\"Name\",\"value\":\"attester\"}},{\"kind\":\"Field\",\"name\":{\"kind\":\"Name\",\"value\":\"schema\"},\"selectionSet\":{\"kind\":\"SelectionSet\",\"selections\":[{\"kind\":\"Field\",\"name\":{\"kind\":\"Name\",\"value\":\"schemaNames\"},\"selectionSet\":{\"kind\":\"SelectionSet\",\"selections\":[{\"kind\":\"Field\",\"name\":{\"kind\":\"Name\",\"value\":\"name\"}}]}}]}},{\"kind\":\"Field\",\"name\":{\"kind\":\"Name\",\"value\":\"refUID\"}},{\"kind\":\"Field\",\"name\":{\"kind\":\"Name\",\"value\":\"revoked\"}},{\"kind\":\"Field\",\"name\":{\"kind\":\"Name\",\"value\":\"schemaId\"}},{\"kind\":\"Field\",\"name\":{\"kind\":\"Name\",\"value\":\"txid\"}},{\"kind\":\"Field\",\"name\":{\"kind\":\"Name\",\"value\":\"timeCreated\"}},{\"kind\":\"Field\",\"name\":{\"kind\":\"Name\",\"value\":\"time\"}},{\"kind\":\"Field\",\"name\":{\"kind\":\"Name\",\"value\":\"isOffchain\"}}]}}]} as unknown as DocumentNode<AttestationFieldsFragment, unknown>;\nexport const SchemaFieldsFragmentDoc = {\"kind\":\"Document\",\"definitions\":[{\"kind\":\"FragmentDefinition\",\"name\":{\"kind\":\"Name\",\"value\":\"schemaFields\"},\"typeCondition\":{\"kind\":\"NamedType\",\"name\":{\"kind\":\"Name\",\"value\":\"Schema\"}},\"selectionSet\":{\"kind\":\"SelectionSet\",\"selections\":[{\"kind\":\"Field\",\"name\":{\"kind\":\"Name\",\"value\":\"id\"}},{\"kind\":\"Field\",\"name\":{\"kind\":\"Name\",\"value\":\"resolver\"}},{\"kind\":\"Field\",\"name\":{\"kind\":\"Name\",\"value\":\"revocable\"}},{\"kind\":\"Field\",\"name\":{\"kind\":\"Name\",\"value\":\"schema\"}},{\"kind\":\"Field\",\"name\":{\"kind\":\"Name\",\"value\":\"index\"}},{\"kind\":\"Field\",\"name\":{\"kind\":\"Name\",\"value\":\"schemaNames\"},\"selectionSet\":{\"kind\":\"SelectionSet\",\"selections\":[{\"kind\":\"Field\",\"name\":{\"kind\":\"Name\",\"value\":\"name\"}}]}},{\"kind\":\"Field\",\"name\":{\"kind\":\"Name\",\"value\":\"time\"}},{\"kind\":\"Field\",\"name\":{\"kind\":\"Name\",\"value\":\"txid\"}},{\"kind\":\"Field\",\"name\":{\"kind\":\"Name\",\"value\":\"creator\"}}]}}]} as unknown as DocumentNode<SchemaFieldsFragment, unknown>;\nexport const GetSchemasDocument = {\"kind\":\"Document\",\"definitions\":[{\"kind\":\"OperationDefinition\",\"operation\":\"query\",\"name\":{\"kind\":\"Name\",\"value\":\"GetSchemas\"},\"variableDefinitions\":[{\"kind\":\"VariableDefinition\",\"variable\":{\"kind\":\"Variable\",\"name\":{\"kind\":\"Name\",\"value\":\"where\"}},\"type\":{\"kind\":\"NonNullType\",\"type\":{\"kind\":\"NamedType\",\"name\":{\"kind\":\"Name\",\"value\":\"SchemaWhereInput\"}}}}],\"selectionSet\":{\"kind\":\"SelectionSet\",\"selections\":[{\"kind\":\"Field\",\"alias\":{\"kind\":\"Name\",\"value\":\"schemas\"},\"name\":{\"kind\":\"Name\",\"value\":\"schemata\"},\"arguments\":[{\"kind\":\"Argument\",\"name\":{\"kind\":\"Name\",\"value\":\"where\"},\"value\":{\"kind\":\"Variable\",\"name\":{\"kind\":\"Name\",\"value\":\"where\"}}}],\"selectionSet\":{\"kind\":\"SelectionSet\",\"selections\":[{\"kind\":\"Field\",\"name\":{\"kind\":\"Name\",\"value\":\"id\"}},{\"kind\":\"Field\",\"name\":{\"kind\":\"Name\",\"value\":\"schema\"}},{\"kind\":\"Field\",\"name\":{\"kind\":\"Name\",\"value\":\"schemaNames\"},\"selectionSet\":{\"kind\":\"SelectionSet\",\"selections\":[{\"kind\":\"Field\",\"name\":{\"kind\":\"Name\",\"value\":\"name\"}}]}}]}}]}}]} as unknown as DocumentNode<GetSchemasQuery, GetSchemasQueryVariables>;\nexport const GetSchemaByNameDocument = {\"kind\":\"Document\",\"definitions\":[{\"kind\":\"OperationDefinition\",\"operation\":\"query\",\"name\":{\"kind\":\"Name\",\"value\":\"GetSchemaByName\"},\"variableDefinitions\":[{\"kind\":\"VariableDefinition\",\"variable\":{\"kind\":\"Variable\",\"name\":{\"kind\":\"Name\",\"value\":\"where\"}},\"type\":{\"kind\":\"NonNullType\",\"type\":{\"kind\":\"NamedType\",\"name\":{\"kind\":\"Name\",\"value\":\"SchemaWhereInput\"}}}}],\"selectionSet\":{\"kind\":\"SelectionSet\",\"selections\":[{\"kind\":\"Field\",\"alias\":{\"kind\":\"Name\",\"value\":\"schemas\"},\"name\":{\"kind\":\"Name\",\"value\":\"schemata\"},\"arguments\":[{\"kind\":\"Argument\",\"name\":{\"kind\":\"Name\",\"value\":\"where\"},\"value\":{\"kind\":\"Variable\",\"name\":{\"kind\":\"Name\",\"value\":\"where\"}}}],\"selectionSet\":{\"kind\":\"SelectionSet\",\"selections\":[{\"kind\":\"Field\",\"name\":{\"kind\":\"Name\",\"value\":\"id\"}},{\"kind\":\"Field\",\"name\":{\"kind\":\"Name\",\"value\":\"schema\"}},{\"kind\":\"Field\",\"name\":{\"kind\":\"Name\",\"value\":\"schemaNames\"},\"selectionSet\":{\"kind\":\"SelectionSet\",\"selections\":[{\"kind\":\"Field\",\"name\":{\"kind\":\"Name\",\"value\":\"name\"}}]}}]}}]}}]} as unknown as DocumentNode<GetSchemaByNameQuery, GetSchemaByNameQueryVariables>;\nexport const GetSeedsDocument = {\"kind\":\"Document\",\"definitions\":[{\"kind\":\"OperationDefinition\",\"operation\":\"query\",\"name\":{\"kind\":\"Name\",\"value\":\"GetSeeds\"},\"variableDefinitions\":[{\"kind\":\"VariableDefinition\",\"variable\":{\"kind\":\"Variable\",\"name\":{\"kind\":\"Name\",\"value\":\"where\"}},\"type\":{\"kind\":\"NonNullType\",\"type\":{\"kind\":\"NamedType\",\"name\":{\"kind\":\"Name\",\"value\":\"AttestationWhereInput\"}}}},{\"kind\":\"VariableDefinition\",\"variable\":{\"kind\":\"Variable\",\"name\":{\"kind\":\"Name\",\"value\":\"take\"}},\"type\":{\"kind\":\"NamedType\",\"name\":{\"kind\":\"Name\",\"value\":\"Int\"}}},{\"kind\":\"VariableDefinition\",\"variable\":{\"kind\":\"Variable\",\"name\":{\"kind\":\"Name\",\"value\":\"skip\"}},\"type\":{\"kind\":\"NamedType\",\"name\":{\"kind\":\"Name\",\"value\":\"Int\"}}}],\"selectionSet\":{\"kind\":\"SelectionSet\",\"selections\":[{\"kind\":\"Field\",\"alias\":{\"kind\":\"Name\",\"value\":\"itemSeeds\"},\"name\":{\"kind\":\"Name\",\"value\":\"attestations\"},\"arguments\":[{\"kind\":\"Argument\",\"name\":{\"kind\":\"Name\",\"value\":\"where\"},\"value\":{\"kind\":\"Variable\",\"name\":{\"kind\":\"Name\",\"value\":\"where\"}}},{\"kind\":\"Argument\",\"name\":{\"kind\":\"Name\",\"value\":\"orderBy\"},\"value\":{\"kind\":\"ListValue\",\"values\":[{\"kind\":\"ObjectValue\",\"fields\":[{\"kind\":\"ObjectField\",\"name\":{\"kind\":\"Name\",\"value\":\"timeCreated\"},\"value\":{\"kind\":\"EnumValue\",\"value\":\"desc\"}}]}]}},{\"kind\":\"Argument\",\"name\":{\"kind\":\"Name\",\"value\":\"take\"},\"value\":{\"kind\":\"Variable\",\"name\":{\"kind\":\"Name\",\"value\":\"take\"}}},{\"kind\":\"Argument\",\"name\":{\"kind\":\"Name\",\"value\":\"skip\"},\"value\":{\"kind\":\"Variable\",\"name\":{\"kind\":\"Name\",\"value\":\"skip\"}}}],\"selectionSet\":{\"kind\":\"SelectionSet\",\"selections\":[{\"kind\":\"Field\",\"name\":{\"kind\":\"Name\",\"value\":\"id\"}},{\"kind\":\"Field\",\"name\":{\"kind\":\"Name\",\"value\":\"decodedDataJson\"}},{\"kind\":\"Field\",\"name\":{\"kind\":\"Name\",\"value\":\"attester\"}},{\"kind\":\"Field\",\"name\":{\"kind\":\"Name\",\"value\":\"schema\"},\"selectionSet\":{\"kind\":\"SelectionSet\",\"selections\":[{\"kind\":\"Field\",\"name\":{\"kind\":\"Name\",\"value\":\"schemaNames\"},\"selectionSet\":{\"kind\":\"SelectionSet\",\"selections\":[{\"kind\":\"Field\",\"name\":{\"kind\":\"Name\",\"value\":\"name\"}}]}}]}},{\"kind\":\"Field\",\"name\":{\"kind\":\"Name\",\"value\":\"refUID\"}},{\"kind\":\"Field\",\"name\":{\"kind\":\"Name\",\"value\":\"revoked\"}},{\"kind\":\"Field\",\"name\":{\"kind\":\"Name\",\"value\":\"revocationTime\"}},{\"kind\":\"Field\",\"name\":{\"kind\":\"Name\",\"value\":\"schemaId\"}},{\"kind\":\"Field\",\"name\":{\"kind\":\"Name\",\"value\":\"timeCreated\"}},{\"kind\":\"Field\",\"name\":{\"kind\":\"Name\",\"value\":\"isOffchain\"}}]}}]}}]} as unknown as DocumentNode<GetSeedsQuery, GetSeedsQueryVariables>;\nexport const GetSeedIdsDocument = {\"kind\":\"Document\",\"definitions\":[{\"kind\":\"OperationDefinition\",\"operation\":\"query\",\"name\":{\"kind\":\"Name\",\"value\":\"GetSeedIds\"},\"variableDefinitions\":[{\"kind\":\"VariableDefinition\",\"variable\":{\"kind\":\"Variable\",\"name\":{\"kind\":\"Name\",\"value\":\"where\"}},\"type\":{\"kind\":\"NonNullType\",\"type\":{\"kind\":\"NamedType\",\"name\":{\"kind\":\"Name\",\"value\":\"AttestationWhereInput\"}}}}],\"selectionSet\":{\"kind\":\"SelectionSet\",\"selections\":[{\"kind\":\"Field\",\"alias\":{\"kind\":\"Name\",\"value\":\"itemSeedIds\"},\"name\":{\"kind\":\"Name\",\"value\":\"attestations\"},\"arguments\":[{\"kind\":\"Argument\",\"name\":{\"kind\":\"Name\",\"value\":\"where\"},\"value\":{\"kind\":\"Variable\",\"name\":{\"kind\":\"Name\",\"value\":\"where\"}}},{\"kind\":\"Argument\",\"name\":{\"kind\":\"Name\",\"value\":\"orderBy\"},\"value\":{\"kind\":\"ListValue\",\"values\":[{\"kind\":\"ObjectValue\",\"fields\":[{\"kind\":\"ObjectField\",\"name\":{\"kind\":\"Name\",\"value\":\"timeCreated\"},\"value\":{\"kind\":\"EnumValue\",\"value\":\"desc\"}}]}]}}],\"selectionSet\":{\"kind\":\"SelectionSet\",\"selections\":[{\"kind\":\"Field\",\"name\":{\"kind\":\"Name\",\"value\":\"id\"}}]}}]}}]} as unknown as DocumentNode<GetSeedIdsQuery, GetSeedIdsQueryVariables>;\nexport const GetStorageTransactionIdDocument = {\"kind\":\"Document\",\"definitions\":[{\"kind\":\"OperationDefinition\",\"operation\":\"query\",\"name\":{\"kind\":\"Name\",\"value\":\"GetStorageTransactionId\"},\"variableDefinitions\":[{\"kind\":\"VariableDefinition\",\"variable\":{\"kind\":\"Variable\",\"name\":{\"kind\":\"Name\",\"value\":\"where\"}},\"type\":{\"kind\":\"NonNullType\",\"type\":{\"kind\":\"NamedType\",\"name\":{\"kind\":\"Name\",\"value\":\"AttestationWhereInput\"}}}}],\"selectionSet\":{\"kind\":\"SelectionSet\",\"selections\":[{\"kind\":\"Field\",\"alias\":{\"kind\":\"Name\",\"value\":\"storageTransactionId\"},\"name\":{\"kind\":\"Name\",\"value\":\"attestations\"},\"arguments\":[{\"kind\":\"Argument\",\"name\":{\"kind\":\"Name\",\"value\":\"where\"},\"value\":{\"kind\":\"Variable\",\"name\":{\"kind\":\"Name\",\"value\":\"where\"}}},{\"kind\":\"Argument\",\"name\":{\"kind\":\"Name\",\"value\":\"orderBy\"},\"value\":{\"kind\":\"ListValue\",\"values\":[{\"kind\":\"ObjectValue\",\"fields\":[{\"kind\":\"ObjectField\",\"name\":{\"kind\":\"Name\",\"value\":\"timeCreated\"},\"value\":{\"kind\":\"EnumValue\",\"value\":\"desc\"}}]}]}}],\"selectionSet\":{\"kind\":\"SelectionSet\",\"selections\":[{\"kind\":\"Field\",\"name\":{\"kind\":\"Name\",\"value\":\"id\"}},{\"kind\":\"Field\",\"name\":{\"kind\":\"Name\",\"value\":\"decodedDataJson\"}}]}}]}}]} as unknown as DocumentNode<GetStorageTransactionIdQuery, GetStorageTransactionIdQueryVariables>;\nexport const GetVersionsDocument = {\"kind\":\"Document\",\"definitions\":[{\"kind\":\"OperationDefinition\",\"operation\":\"query\",\"name\":{\"kind\":\"Name\",\"value\":\"GetVersions\"},\"variableDefinitions\":[{\"kind\":\"VariableDefinition\",\"variable\":{\"kind\":\"Variable\",\"name\":{\"kind\":\"Name\",\"value\":\"where\"}},\"type\":{\"kind\":\"NonNullType\",\"type\":{\"kind\":\"NamedType\",\"name\":{\"kind\":\"Name\",\"value\":\"AttestationWhereInput\"}}}}],\"selectionSet\":{\"kind\":\"SelectionSet\",\"selections\":[{\"kind\":\"Field\",\"alias\":{\"kind\":\"Name\",\"value\":\"itemVersions\"},\"name\":{\"kind\":\"Name\",\"value\":\"attestations\"},\"arguments\":[{\"kind\":\"Argument\",\"name\":{\"kind\":\"Name\",\"value\":\"where\"},\"value\":{\"kind\":\"Variable\",\"name\":{\"kind\":\"Name\",\"value\":\"where\"}}},{\"kind\":\"Argument\",\"name\":{\"kind\":\"Name\",\"value\":\"orderBy\"},\"value\":{\"kind\":\"ListValue\",\"values\":[{\"kind\":\"ObjectValue\",\"fields\":[{\"kind\":\"ObjectField\",\"name\":{\"kind\":\"Name\",\"value\":\"timeCreated\"},\"value\":{\"kind\":\"EnumValue\",\"value\":\"desc\"}}]}]}}],\"selectionSet\":{\"kind\":\"SelectionSet\",\"selections\":[{\"kind\":\"FragmentSpread\",\"name\":{\"kind\":\"Name\",\"value\":\"attestationFields\"}}]}}]}},{\"kind\":\"FragmentDefinition\",\"name\":{\"kind\":\"Name\",\"value\":\"attestationFields\"},\"typeCondition\":{\"kind\":\"NamedType\",\"name\":{\"kind\":\"Name\",\"value\":\"Attestation\"}},\"selectionSet\":{\"kind\":\"SelectionSet\",\"selections\":[{\"kind\":\"Field\",\"name\":{\"kind\":\"Name\",\"value\":\"id\"}},{\"kind\":\"Field\",\"name\":{\"kind\":\"Name\",\"value\":\"decodedDataJson\"}},{\"kind\":\"Field\",\"name\":{\"kind\":\"Name\",\"value\":\"attester\"}},{\"kind\":\"Field\",\"name\":{\"kind\":\"Name\",\"value\":\"schema\"},\"selectionSet\":{\"kind\":\"SelectionSet\",\"selections\":[{\"kind\":\"Field\",\"name\":{\"kind\":\"Name\",\"value\":\"schemaNames\"},\"selectionSet\":{\"kind\":\"SelectionSet\",\"selections\":[{\"kind\":\"Field\",\"name\":{\"kind\":\"Name\",\"value\":\"name\"}}]}}]}},{\"kind\":\"Field\",\"name\":{\"kind\":\"Name\",\"value\":\"refUID\"}},{\"kind\":\"Field\",\"name\":{\"kind\":\"Name\",\"value\":\"revoked\"}},{\"kind\":\"Field\",\"name\":{\"kind\":\"Name\",\"value\":\"schemaId\"}},{\"kind\":\"Field\",\"name\":{\"kind\":\"Name\",\"value\":\"txid\"}},{\"kind\":\"Field\",\"name\":{\"kind\":\"Name\",\"value\":\"timeCreated\"}},{\"kind\":\"Field\",\"name\":{\"kind\":\"Name\",\"value\":\"time\"}},{\"kind\":\"Field\",\"name\":{\"kind\":\"Name\",\"value\":\"isOffchain\"}}]}}]} as unknown as DocumentNode<GetVersionsQuery, GetVersionsQueryVariables>;\nexport const GetPropertiesDocument = {\"kind\":\"Document\",\"definitions\":[{\"kind\":\"OperationDefinition\",\"operation\":\"query\",\"name\":{\"kind\":\"Name\",\"value\":\"GetProperties\"},\"variableDefinitions\":[{\"kind\":\"VariableDefinition\",\"variable\":{\"kind\":\"Variable\",\"name\":{\"kind\":\"Name\",\"value\":\"where\"}},\"type\":{\"kind\":\"NonNullType\",\"type\":{\"kind\":\"NamedType\",\"name\":{\"kind\":\"Name\",\"value\":\"AttestationWhereInput\"}}}}],\"selectionSet\":{\"kind\":\"SelectionSet\",\"selections\":[{\"kind\":\"Field\",\"alias\":{\"kind\":\"Name\",\"value\":\"itemProperties\"},\"name\":{\"kind\":\"Name\",\"value\":\"attestations\"},\"arguments\":[{\"kind\":\"Argument\",\"name\":{\"kind\":\"Name\",\"value\":\"where\"},\"value\":{\"kind\":\"Variable\",\"name\":{\"kind\":\"Name\",\"value\":\"where\"}}},{\"kind\":\"Argument\",\"name\":{\"kind\":\"Name\",\"value\":\"orderBy\"},\"value\":{\"kind\":\"ListValue\",\"values\":[{\"kind\":\"ObjectValue\",\"fields\":[{\"kind\":\"ObjectField\",\"name\":{\"kind\":\"Name\",\"value\":\"timeCreated\"},\"value\":{\"kind\":\"EnumValue\",\"value\":\"desc\"}}]}]}}],\"selectionSet\":{\"kind\":\"SelectionSet\",\"selections\":[{\"kind\":\"FragmentSpread\",\"name\":{\"kind\":\"Name\",\"value\":\"attestationFields\"}}]}}]}},{\"kind\":\"FragmentDefinition\",\"name\":{\"kind\":\"Name\",\"value\":\"attestationFields\"},\"typeCondition\":{\"kind\":\"NamedType\",\"name\":{\"kind\":\"Name\",\"value\":\"Attestation\"}},\"selectionSet\":{\"kind\":\"SelectionSet\",\"selections\":[{\"kind\":\"Field\",\"name\":{\"kind\":\"Name\",\"value\":\"id\"}},{\"kind\":\"Field\",\"name\":{\"kind\":\"Name\",\"value\":\"decodedDataJson\"}},{\"kind\":\"Field\",\"name\":{\"kind\":\"Name\",\"value\":\"attester\"}},{\"kind\":\"Field\",\"name\":{\"kind\":\"Name\",\"value\":\"schema\"},\"selectionSet\":{\"kind\":\"SelectionSet\",\"selections\":[{\"kind\":\"Field\",\"name\":{\"kind\":\"Name\",\"value\":\"schemaNames\"},\"selectionSet\":{\"kind\":\"SelectionSet\",\"selections\":[{\"kind\":\"Field\",\"name\":{\"kind\":\"Name\",\"value\":\"name\"}}]}}]}},{\"kind\":\"Field\",\"name\":{\"kind\":\"Name\",\"value\":\"refUID\"}},{\"kind\":\"Field\",\"name\":{\"kind\":\"Name\",\"value\":\"revoked\"}},{\"kind\":\"Field\",\"name\":{\"kind\":\"Name\",\"value\":\"schemaId\"}},{\"kind\":\"Field\",\"name\":{\"kind\":\"Name\",\"value\":\"txid\"}},{\"kind\":\"Field\",\"name\":{\"kind\":\"Name\",\"value\":\"timeCreated\"}},{\"kind\":\"Field\",\"name\":{\"kind\":\"Name\",\"value\":\"time\"}},{\"kind\":\"Field\",\"name\":{\"kind\":\"Name\",\"value\":\"isOffchain\"}}]}}]} as unknown as DocumentNode<GetPropertiesQuery, GetPropertiesQueryVariables>;\nexport const GetAllPropertiesForAllVersionsDocument = {\"kind\":\"Document\",\"definitions\":[{\"kind\":\"OperationDefinition\",\"operation\":\"query\",\"name\":{\"kind\":\"Name\",\"value\":\"GetAllPropertiesForAllVersions\"},\"variableDefinitions\":[{\"kind\":\"VariableDefinition\",\"variable\":{\"kind\":\"Variable\",\"name\":{\"kind\":\"Name\",\"value\":\"where\"}},\"type\":{\"kind\":\"NonNullType\",\"type\":{\"kind\":\"NamedType\",\"name\":{\"kind\":\"Name\",\"value\":\"AttestationWhereInput\"}}}}],\"selectionSet\":{\"kind\":\"SelectionSet\",\"selections\":[{\"kind\":\"Field\",\"alias\":{\"kind\":\"Name\",\"value\":\"allProperties\"},\"name\":{\"kind\":\"Name\",\"value\":\"attestations\"},\"arguments\":[{\"kind\":\"Argument\",\"name\":{\"kind\":\"Name\",\"value\":\"where\"},\"value\":{\"kind\":\"Variable\",\"name\":{\"kind\":\"Name\",\"value\":\"where\"}}},{\"kind\":\"Argument\",\"name\":{\"kind\":\"Name\",\"value\":\"orderBy\"},\"value\":{\"kind\":\"ListValue\",\"values\":[{\"kind\":\"ObjectValue\",\"fields\":[{\"kind\":\"ObjectField\",\"name\":{\"kind\":\"Name\",\"value\":\"timeCreated\"},\"value\":{\"kind\":\"EnumValue\",\"value\":\"desc\"}}]}]}}],\"selectionSet\":{\"kind\":\"SelectionSet\",\"selections\":[{\"kind\":\"FragmentSpread\",\"name\":{\"kind\":\"Name\",\"value\":\"attestationFields\"}}]}}]}},{\"kind\":\"FragmentDefinition\",\"name\":{\"kind\":\"Name\",\"value\":\"attestationFields\"},\"typeCondition\":{\"kind\":\"NamedType\",\"name\":{\"kind\":\"Name\",\"value\":\"Attestation\"}},\"selectionSet\":{\"kind\":\"SelectionSet\",\"selections\":[{\"kind\":\"Field\",\"name\":{\"kind\":\"Name\",\"value\":\"id\"}},{\"kind\":\"Field\",\"name\":{\"kind\":\"Name\",\"value\":\"decodedDataJson\"}},{\"kind\":\"Field\",\"name\":{\"kind\":\"Name\",\"value\":\"attester\"}},{\"kind\":\"Field\",\"name\":{\"kind\":\"Name\",\"value\":\"schema\"},\"selectionSet\":{\"kind\":\"SelectionSet\",\"selections\":[{\"kind\":\"Field\",\"name\":{\"kind\":\"Name\",\"value\":\"schemaNames\"},\"selectionSet\":{\"kind\":\"SelectionSet\",\"selections\":[{\"kind\":\"Field\",\"name\":{\"kind\":\"Name\",\"value\":\"name\"}}]}}]}},{\"kind\":\"Field\",\"name\":{\"kind\":\"Name\",\"value\":\"refUID\"}},{\"kind\":\"Field\",\"name\":{\"kind\":\"Name\",\"value\":\"revoked\"}},{\"kind\":\"Field\",\"name\":{\"kind\":\"Name\",\"value\":\"schemaId\"}},{\"kind\":\"Field\",\"name\":{\"kind\":\"Name\",\"value\":\"txid\"}},{\"kind\":\"Field\",\"name\":{\"kind\":\"Name\",\"value\":\"timeCreated\"}},{\"kind\":\"Field\",\"name\":{\"kind\":\"Name\",\"value\":\"time\"}},{\"kind\":\"Field\",\"name\":{\"kind\":\"Name\",\"value\":\"isOffchain\"}}]}}]} as unknown as DocumentNode<GetAllPropertiesForAllVersionsQuery, GetAllPropertiesForAllVersionsQueryVariables>;\nexport const GetFilesMetadataDocument = {\"kind\":\"Document\",\"definitions\":[{\"kind\":\"OperationDefinition\",\"operation\":\"query\",\"name\":{\"kind\":\"Name\",\"value\":\"GetFilesMetadata\"},\"variableDefinitions\":[{\"kind\":\"VariableDefinition\",\"variable\":{\"kind\":\"Variable\",\"name\":{\"kind\":\"Name\",\"value\":\"where\"}},\"type\":{\"kind\":\"NonNullType\",\"type\":{\"kind\":\"NamedType\",\"name\":{\"kind\":\"Name\",\"value\":\"AttestationWhereInput\"}}}}],\"selectionSet\":{\"kind\":\"SelectionSet\",\"selections\":[{\"kind\":\"Field\",\"alias\":{\"kind\":\"Name\",\"value\":\"filesMetadata\"},\"name\":{\"kind\":\"Name\",\"value\":\"attestations\"},\"arguments\":[{\"kind\":\"Argument\",\"name\":{\"kind\":\"Name\",\"value\":\"where\"},\"value\":{\"kind\":\"Variable\",\"name\":{\"kind\":\"Name\",\"value\":\"where\"}}},{\"kind\":\"Argument\",\"name\":{\"kind\":\"Name\",\"value\":\"orderBy\"},\"value\":{\"kind\":\"ListValue\",\"values\":[{\"kind\":\"ObjectValue\",\"fields\":[{\"kind\":\"ObjectField\",\"name\":{\"kind\":\"Name\",\"value\":\"timeCreated\"},\"value\":{\"kind\":\"EnumValue\",\"value\":\"desc\"}}]}]}}],\"selectionSet\":{\"kind\":\"SelectionSet\",\"selections\":[{\"kind\":\"FragmentSpread\",\"name\":{\"kind\":\"Name\",\"value\":\"attestationFields\"}}]}}]}},{\"kind\":\"FragmentDefinition\",\"name\":{\"kind\":\"Name\",\"value\":\"attestationFields\"},\"typeCondition\":{\"kind\":\"NamedType\",\"name\":{\"kind\":\"Name\",\"value\":\"Attestation\"}},\"selectionSet\":{\"kind\":\"SelectionSet\",\"selections\":[{\"kind\":\"Field\",\"name\":{\"kind\":\"Name\",\"value\":\"id\"}},{\"kind\":\"Field\",\"name\":{\"kind\":\"Name\",\"value\":\"decodedDataJson\"}},{\"kind\":\"Field\",\"name\":{\"kind\":\"Name\",\"value\":\"attester\"}},{\"kind\":\"Field\",\"name\":{\"kind\":\"Name\",\"value\":\"schema\"},\"selectionSet\":{\"kind\":\"SelectionSet\",\"selections\":[{\"kind\":\"Field\",\"name\":{\"kind\":\"Name\",\"value\":\"schemaNames\"},\"selectionSet\":{\"kind\":\"SelectionSet\",\"selections\":[{\"kind\":\"Field\",\"name\":{\"kind\":\"Name\",\"value\":\"name\"}}]}}]}},{\"kind\":\"Field\",\"name\":{\"kind\":\"Name\",\"value\":\"refUID\"}},{\"kind\":\"Field\",\"name\":{\"kind\":\"Name\",\"value\":\"revoked\"}},{\"kind\":\"Field\",\"name\":{\"kind\":\"Name\",\"value\":\"schemaId\"}},{\"kind\":\"Field\",\"name\":{\"kind\":\"Name\",\"value\":\"txid\"}},{\"kind\":\"Field\",\"name\":{\"kind\":\"Name\",\"value\":\"timeCreated\"}},{\"kind\":\"Field\",\"name\":{\"kind\":\"Name\",\"value\":\"time\"}},{\"kind\":\"Field\",\"name\":{\"kind\":\"Name\",\"value\":\"isOffchain\"}}]}}]} as unknown as DocumentNode<GetFilesMetadataQuery, GetFilesMetadataQueryVariables>;\nexport const GetImageSeedsDocument = {\"kind\":\"Document\",\"definitions\":[{\"kind\":\"OperationDefinition\",\"operation\":\"query\",\"name\":{\"kind\":\"Name\",\"value\":\"GetImageSeeds\"},\"variableDefinitions\":[{\"kind\":\"VariableDefinition\",\"variable\":{\"kind\":\"Variable\",\"name\":{\"kind\":\"Name\",\"value\":\"where\"}},\"type\":{\"kind\":\"NonNullType\",\"type\":{\"kind\":\"NamedType\",\"name\":{\"kind\":\"Name\",\"value\":\"AttestationWhereInput\"}}}}],\"selectionSet\":{\"kind\":\"SelectionSet\",\"selections\":[{\"kind\":\"Field\",\"alias\":{\"kind\":\"Name\",\"value\":\"imageSeeds\"},\"name\":{\"kind\":\"Name\",\"value\":\"attestations\"},\"arguments\":[{\"kind\":\"Argument\",\"name\":{\"kind\":\"Name\",\"value\":\"where\"},\"value\":{\"kind\":\"Variable\",\"name\":{\"kind\":\"Name\",\"value\":\"where\"}}},{\"kind\":\"Argument\",\"name\":{\"kind\":\"Name\",\"value\":\"orderBy\"},\"value\":{\"kind\":\"ListValue\",\"values\":[{\"kind\":\"ObjectValue\",\"fields\":[{\"kind\":\"ObjectField\",\"name\":{\"kind\":\"Name\",\"value\":\"timeCreated\"},\"value\":{\"kind\":\"EnumValue\",\"value\":\"desc\"}}]}]}}],\"selectionSet\":{\"kind\":\"SelectionSet\",\"selections\":[{\"kind\":\"Field\",\"name\":{\"kind\":\"Name\",\"value\":\"id\"}},{\"kind\":\"Field\",\"name\":{\"kind\":\"Name\",\"value\":\"decodedDataJson\"}},{\"kind\":\"Field\",\"name\":{\"kind\":\"Name\",\"value\":\"attester\"}},{\"kind\":\"Field\",\"name\":{\"kind\":\"Name\",\"value\":\"schema\"},\"selectionSet\":{\"kind\":\"SelectionSet\",\"selections\":[{\"kind\":\"Field\",\"name\":{\"kind\":\"Name\",\"value\":\"schemaNames\"},\"selectionSet\":{\"kind\":\"SelectionSet\",\"selections\":[{\"kind\":\"Field\",\"name\":{\"kind\":\"Name\",\"value\":\"name\"}}]}}]}},{\"kind\":\"Field\",\"name\":{\"kind\":\"Name\",\"value\":\"refUID\"}},{\"kind\":\"Field\",\"name\":{\"kind\":\"Name\",\"value\":\"revoked\"}},{\"kind\":\"Field\",\"name\":{\"kind\":\"Name\",\"value\":\"schemaId\"}},{\"kind\":\"Field\",\"name\":{\"kind\":\"Name\",\"value\":\"txid\"}},{\"kind\":\"Field\",\"name\":{\"kind\":\"Name\",\"value\":\"timeCreated\"}},{\"kind\":\"Field\",\"name\":{\"kind\":\"Name\",\"value\":\"time\"}},{\"kind\":\"Field\",\"name\":{\"kind\":\"Name\",\"value\":\"isOffchain\"}}]}}]}}]} as unknown as DocumentNode<GetImageSeedsQuery, GetImageSeedsQueryVariables>;\nexport const GetImageVersionsDocument = {\"kind\":\"Document\",\"definitions\":[{\"kind\":\"OperationDefinition\",\"operation\":\"query\",\"name\":{\"kind\":\"Name\",\"value\":\"GetImageVersions\"},\"variableDefinitions\":[{\"kind\":\"VariableDefinition\",\"variable\":{\"kind\":\"Variable\",\"name\":{\"kind\":\"Name\",\"value\":\"where\"}},\"type\":{\"kind\":\"NonNullType\",\"type\":{\"kind\":\"NamedType\",\"name\":{\"kind\":\"Name\",\"value\":\"AttestationWhereInput\"}}}}],\"selectionSet\":{\"kind\":\"SelectionSet\",\"selections\":[{\"kind\":\"Field\",\"alias\":{\"kind\":\"Name\",\"value\":\"imageVersions\"},\"name\":{\"kind\":\"Name\",\"value\":\"attestations\"},\"arguments\":[{\"kind\":\"Argument\",\"name\":{\"kind\":\"Name\",\"value\":\"where\"},\"value\":{\"kind\":\"Variable\",\"name\":{\"kind\":\"Name\",\"value\":\"where\"}}},{\"kind\":\"Argument\",\"name\":{\"kind\":\"Name\",\"value\":\"orderBy\"},\"value\":{\"kind\":\"ListValue\",\"values\":[{\"kind\":\"ObjectValue\",\"fields\":[{\"kind\":\"ObjectField\",\"name\":{\"kind\":\"Name\",\"value\":\"timeCreated\"},\"value\":{\"kind\":\"EnumValue\",\"value\":\"desc\"}}]}]}}],\"selectionSet\":{\"kind\":\"SelectionSet\",\"selections\":[{\"kind\":\"FragmentSpread\",\"name\":{\"kind\":\"Name\",\"value\":\"attestationFields\"}}]}}]}},{\"kind\":\"FragmentDefinition\",\"name\":{\"kind\":\"Name\",\"value\":\"attestationFields\"},\"typeCondition\":{\"kind\":\"NamedType\",\"name\":{\"kind\":\"Name\",\"value\":\"Attestation\"}},\"selectionSet\":{\"kind\":\"SelectionSet\",\"selections\":[{\"kind\":\"Field\",\"name\":{\"kind\":\"Name\",\"value\":\"id\"}},{\"kind\":\"Field\",\"name\":{\"kind\":\"Name\",\"value\":\"decodedDataJson\"}},{\"kind\":\"Field\",\"name\":{\"kind\":\"Name\",\"value\":\"attester\"}},{\"kind\":\"Field\",\"name\":{\"kind\":\"Name\",\"value\":\"schema\"},\"selectionSet\":{\"kind\":\"SelectionSet\",\"selections\":[{\"kind\":\"Field\",\"name\":{\"kind\":\"Name\",\"value\":\"schemaNames\"},\"selectionSet\":{\"kind\":\"SelectionSet\",\"selections\":[{\"kind\":\"Field\",\"name\":{\"kind\":\"Name\",\"value\":\"name\"}}]}}]}},{\"kind\":\"Field\",\"name\":{\"kind\":\"Name\",\"value\":\"refUID\"}},{\"kind\":\"Field\",\"name\":{\"kind\":\"Name\",\"value\":\"revoked\"}},{\"kind\":\"Field\",\"name\":{\"kind\":\"Name\",\"value\":\"schemaId\"}},{\"kind\":\"Field\",\"name\":{\"kind\":\"Name\",\"value\":\"txid\"}},{\"kind\":\"Field\",\"name\":{\"kind\":\"Name\",\"value\":\"timeCreated\"}},{\"kind\":\"Field\",\"name\":{\"kind\":\"Name\",\"value\":\"time\"}},{\"kind\":\"Field\",\"name\":{\"kind\":\"Name\",\"value\":\"isOffchain\"}}]}}]} as unknown as DocumentNode<GetImageVersionsQuery, GetImageVersionsQueryVariables>;","/* eslint-disable */\nimport * as types from './graphql';\nimport { TypedDocumentNode as DocumentNode } from '@graphql-typed-document-node/core';\n\n/**\n * Map of all GraphQL operations in the project.\n *\n * This map has several performance disadvantages:\n * 1. It is not tree-shakeable, so it will include all operations in the project.\n * 2. It is not minifiable, so the string of a GraphQL query will be multiple times inside the bundle.\n * 3. It does not support dead code elimination, so it will add unused operations.\n *\n * Therefore it is highly recommended to use the babel or swc plugin for production.\n * Learn more about it here: https://the-guild.dev/graphql/codegen/plugins/presets/preset-client#reducing-bundle-size\n */\ntype Documents = {\n \"\\n fragment attestationFields on Attestation {\\n id\\n decodedDataJson\\n attester\\n schema {\\n schemaNames {\\n name\\n }\\n }\\n refUID\\n revoked\\n schemaId\\n txid\\n timeCreated\\n time\\n isOffchain\\n }\\n\": typeof types.AttestationFieldsFragmentDoc,\n \"\\n fragment schemaFields on Schema {\\n id\\n resolver\\n revocable\\n schema\\n index\\n schemaNames {\\n name\\n }\\n time\\n txid\\n creator\\n }\\n\": typeof types.SchemaFieldsFragmentDoc,\n \"\\n query GetSchemas($where: SchemaWhereInput!) {\\n schemas: schemata(where: $where) {\\n id\\n schema\\n schemaNames {\\n name\\n }\\n }\\n }\\n\": typeof types.GetSchemasDocument,\n \"\\n query GetSchemaByName($where: SchemaWhereInput!) {\\n schemas: schemata(where: $where) {\\n id\\n schema\\n schemaNames {\\n name\\n }\\n }\\n }\\n\": typeof types.GetSchemaByNameDocument,\n \"\\n query GetSeeds($where: AttestationWhereInput!, $take: Int, $skip: Int) {\\n itemSeeds: attestations(where: $where, orderBy: [{ timeCreated: desc }], take: $take, skip: $skip) {\\n id\\n decodedDataJson\\n attester\\n schema {\\n schemaNames {\\n name\\n }\\n }\\n refUID\\n revoked\\n revocationTime\\n schemaId\\n timeCreated\\n isOffchain\\n }\\n }\\n\": typeof types.GetSeedsDocument,\n \"\\n query GetSeedIds($where: AttestationWhereInput!) {\\n itemSeedIds: attestations(where: $where, orderBy: [{ timeCreated: desc }]) {\\n id\\n }\\n }\\n\": typeof types.GetSeedIdsDocument,\n \"\\n query GetStorageTransactionId($where: AttestationWhereInput!) {\\n storageTransactionId: attestations(\\n where: $where\\n orderBy: [{ timeCreated: desc }]\\n ) {\\n id\\n decodedDataJson\\n }\\n }\\n\": typeof types.GetStorageTransactionIdDocument,\n \"\\n query GetVersions($where: AttestationWhereInput!) {\\n itemVersions: attestations(\\n where: $where\\n orderBy: [{ timeCreated: desc }]\\n ) {\\n ...attestationFields\\n }\\n }\\n\": typeof types.GetVersionsDocument,\n \"\\n query GetProperties($where: AttestationWhereInput!) {\\n itemProperties: attestations(\\n where: $where\\n orderBy: [{ timeCreated: desc }]\\n ) {\\n ...attestationFields\\n }\\n }\\n\": typeof types.GetPropertiesDocument,\n \"\\n query GetAllPropertiesForAllVersions($where: AttestationWhereInput!) {\\n allProperties: attestations(\\n where: $where\\n orderBy: [{ timeCreated: desc }]\\n ) {\\n ...attestationFields\\n }\\n }\\n\": typeof types.GetAllPropertiesForAllVersionsDocument,\n \"\\n query GetFilesMetadata($where: AttestationWhereInput!) {\\n filesMetadata: attestations(\\n where: $where\\n orderBy: [{ timeCreated: desc }]\\n ) {\\n ...attestationFields\\n }\\n }\\n\": typeof types.GetFilesMetadataDocument,\n \"\\n query GetImageSeeds($where: AttestationWhereInput!) {\\n imageSeeds: attestations(where: $where, orderBy: [{ timeCreated: desc }]) {\\n id\\n decodedDataJson\\n attester\\n schema {\\n schemaNames {\\n name\\n }\\n }\\n refUID\\n revoked\\n schemaId\\n txid\\n timeCreated\\n time\\n isOffchain\\n }\\n }\\n\": typeof types.GetImageSeedsDocument,\n \"\\n query GetImageVersions($where: AttestationWhereInput!) {\\n imageVersions: attestations(\\n where: $where\\n orderBy: [{ timeCreated: desc }]\\n ) {\\n ...attestationFields\\n }\\n }\\n\": typeof types.GetImageVersionsDocument,\n};\nconst documents: Documents = {\n \"\\n fragment attestationFields on Attestation {\\n id\\n decodedDataJson\\n attester\\n schema {\\n schemaNames {\\n name\\n }\\n }\\n refUID\\n revoked\\n schemaId\\n txid\\n timeCreated\\n time\\n isOffchain\\n }\\n\": types.AttestationFieldsFragmentDoc,\n \"\\n fragment schemaFields on Schema {\\n id\\n resolver\\n revocable\\n schema\\n index\\n schemaNames {\\n name\\n }\\n time\\n txid\\n creator\\n }\\n\": types.SchemaFieldsFragmentDoc,\n \"\\n query GetSchemas($where: SchemaWhereInput!) {\\n schemas: schemata(where: $where) {\\n id\\n schema\\n schemaNames {\\n name\\n }\\n }\\n }\\n\": types.GetSchemasDocument,\n \"\\n query GetSchemaByName($where: SchemaWhereInput!) {\\n schemas: schemata(where: $where) {\\n id\\n schema\\n schemaNames {\\n name\\n }\\n }\\n }\\n\": types.GetSchemaByNameDocument,\n \"\\n query GetSeeds($where: AttestationWhereInput!, $take: Int, $skip: Int) {\\n itemSeeds: attestations(where: $where, orderBy: [{ timeCreated: desc }], take: $take, skip: $skip) {\\n id\\n decodedDataJson\\n attester\\n schema {\\n schemaNames {\\n name\\n }\\n }\\n refUID\\n revoked\\n revocationTime\\n schemaId\\n timeCreated\\n isOffchain\\n }\\n }\\n\": types.GetSeedsDocument,\n \"\\n query GetSeedIds($where: AttestationWhereInput!) {\\n itemSeedIds: attestations(where: $where, orderBy: [{ timeCreated: desc }]) {\\n id\\n }\\n }\\n\": types.GetSeedIdsDocument,\n \"\\n query GetStorageTransactionId($where: AttestationWhereInput!) {\\n storageTransactionId: attestations(\\n where: $where\\n orderBy: [{ timeCreated: desc }]\\n ) {\\n id\\n decodedDataJson\\n }\\n }\\n\": types.GetStorageTransactionIdDocument,\n \"\\n query GetVersions($where: AttestationWhereInput!) {\\n itemVersions: attestations(\\n where: $where\\n orderBy: [{ timeCreated: desc }]\\n ) {\\n ...attestationFields\\n }\\n }\\n\": types.GetVersionsDocument,\n \"\\n query GetProperties($where: AttestationWhereInput!) {\\n itemProperties: attestations(\\n where: $where\\n orderBy: [{ timeCreated: desc }]\\n ) {\\n ...attestationFields\\n }\\n }\\n\": types.GetPropertiesDocument,\n \"\\n query GetAllPropertiesForAllVersions($where: AttestationWhereInput!) {\\n allProperties: attestations(\\n where: $where\\n orderBy: [{ timeCreated: desc }]\\n ) {\\n ...attestationFields\\n }\\n }\\n\": types.GetAllPropertiesForAllVersionsDocument,\n \"\\n query GetFilesMetadata($where: AttestationWhereInput!) {\\n filesMetadata: attestations(\\n where: $where\\n orderBy: [{ timeCreated: desc }]\\n ) {\\n ...attestationFields\\n }\\n }\\n\": types.GetFilesMetadataDocument,\n \"\\n query GetImageSeeds($where: AttestationWhereInput!) {\\n imageSeeds: attestations(where: $where, orderBy: [{ timeCreated: desc }]) {\\n id\\n decodedDataJson\\n attester\\n schema {\\n schemaNames {\\n name\\n }\\n }\\n refUID\\n revoked\\n schemaId\\n txid\\n timeCreated\\n time\\n isOffchain\\n }\\n }\\n\": types.GetImageSeedsDocument,\n \"\\n query GetImageVersions($where: AttestationWhereInput!) {\\n imageVersions: attestations(\\n where: $where\\n orderBy: [{ timeCreated: desc }]\\n ) {\\n ...attestationFields\\n }\\n }\\n\": types.GetImageVersionsDocument,\n};\n\n/**\n * The graphql function is used to parse GraphQL queries into a document that can be used by GraphQL clients.\n *\n *\n * @example\n * ```ts\n * const query = graphql(`query GetUser($id: ID!) { user(id: $id) { name } }`);\n * ```\n *\n * The query argument is unknown!\n * Please regenerate the types.\n */\nexport function graphql(source: string): unknown;\n\n/**\n * The graphql function is used to parse GraphQL queries into a document that can be used by GraphQL clients.\n */\nexport function graphql(source: \"\\n fragment attestationFields on Attestation {\\n id\\n decodedDataJson\\n attester\\n schema {\\n schemaNames {\\n name\\n }\\n }\\n refUID\\n revoked\\n schemaId\\n txid\\n timeCreated\\n time\\n isOffchain\\n }\\n\"): (typeof documents)[\"\\n fragment attestationFields on Attestation {\\n id\\n decodedDataJson\\n attester\\n schema {\\n schemaNames {\\n name\\n }\\n }\\n refUID\\n revoked\\n schemaId\\n txid\\n timeCreated\\n time\\n isOffchain\\n }\\n\"];\n/**\n * The graphql function is used to parse GraphQL queries into a document that can be used by GraphQL clients.\n */\nexport function graphql(source: \"\\n fragment schemaFields on Schema {\\n id\\n resolver\\n revocable\\n schema\\n index\\n schemaNames {\\n name\\n }\\n time\\n txid\\n creator\\n }\\n\"): (typeof documents)[\"\\n fragment schemaFields on Schema {\\n id\\n resolver\\n revocable\\n schema\\n index\\n schemaNames {\\n name\\n }\\n time\\n txid\\n creator\\n }\\n\"];\n/**\n * The graphql function is used to parse GraphQL queries into a document that can be used by GraphQL clients.\n */\nexport function graphql(source: \"\\n query GetSchemas($where: SchemaWhereInput!) {\\n schemas: schemata(where: $where) {\\n id\\n schema\\n schemaNames {\\n name\\n }\\n }\\n }\\n\"): (typeof documents)[\"\\n query GetSchemas($where: SchemaWhereInput!) {\\n schemas: schemata(where: $where) {\\n id\\n schema\\n schemaNames {\\n name\\n }\\n }\\n }\\n\"];\n/**\n * The graphql function is used to parse GraphQL queries into a document that can be used by GraphQL clients.\n */\nexport function graphql(source: \"\\n query GetSchemaByName($where: SchemaWhereInput!) {\\n schemas: schemata(where: $where) {\\n id\\n schema\\n schemaNames {\\n name\\n }\\n }\\n }\\n\"): (typeof documents)[\"\\n query GetSchemaByName($where: SchemaWhereInput!) {\\n schemas: schemata(where: $where) {\\n id\\n schema\\n schemaNames {\\n name\\n }\\n }\\n }\\n\"];\n/**\n * The graphql function is used to parse GraphQL queries into a document that can be used by GraphQL clients.\n */\nexport function graphql(source: \"\\n query GetSeeds($where: AttestationWhereInput!, $take: Int, $skip: Int) {\\n itemSeeds: attestations(where: $where, orderBy: [{ timeCreated: desc }], take: $take, skip: $skip) {\\n id\\n decodedDataJson\\n attester\\n schema {\\n schemaNames {\\n name\\n }\\n }\\n refUID\\n revoked\\n revocationTime\\n schemaId\\n timeCreated\\n isOffchain\\n }\\n }\\n\"): (typeof documents)[\"\\n query GetSeeds($where: AttestationWhereInput!, $take: Int, $skip: Int) {\\n itemSeeds: attestations(where: $where, orderBy: [{ timeCreated: desc }], take: $take, skip: $skip) {\\n id\\n decodedDataJson\\n attester\\n schema {\\n schemaNames {\\n name\\n }\\n }\\n refUID\\n revoked\\n revocationTime\\n schemaId\\n timeCreated\\n isOffchain\\n }\\n }\\n\"];\n/**\n * The graphql function is used to parse GraphQL queries into a document that can be used by GraphQL clients.\n */\nexport function graphql(source: \"\\n query GetSeedIds($where: AttestationWhereInput!) {\\n itemSeedIds: attestations(where: $where, orderBy: [{ timeCreated: desc }]) {\\n id\\n }\\n }\\n\"): (typeof documents)[\"\\n query GetSeedIds($where: AttestationWhereInput!) {\\n itemSeedIds: attestations(where: $where, orderBy: [{ timeCreated: desc }]) {\\n id\\n }\\n }\\n\"];\n/**\n * The graphql function is used to parse GraphQL queries into a document that can be used by GraphQL clients.\n */\nexport function graphql(source: \"\\n query GetStorageTransactionId($where: AttestationWhereInput!) {\\n storageTransactionId: attestations(\\n where: $where\\n orderBy: [{ timeCreated: desc }]\\n ) {\\n id\\n decodedDataJson\\n }\\n }\\n\"): (typeof documents)[\"\\n query GetStorageTransactionId($where: AttestationWhereInput!) {\\n storageTransactionId: attestations(\\n where: $where\\n orderBy: [{ timeCreated: desc }]\\n ) {\\n id\\n decodedDataJson\\n }\\n }\\n\"];\n/**\n * The graphql function is used to parse GraphQL queries into a document that can be used by GraphQL clients.\n */\nexport function graphql(source: \"\\n query GetVersions($where: AttestationWhereInput!) {\\n itemVersions: attestations(\\n where: $where\\n orderBy: [{ timeCreated: desc }]\\n ) {\\n ...attestationFields\\n }\\n }\\n\"): (typeof documents)[\"\\n query GetVersions($where: AttestationWhereInput!) {\\n itemVersions: attestations(\\n where: $where\\n orderBy: [{ timeCreated: desc }]\\n ) {\\n ...attestationFields\\n }\\n }\\n\"];\n/**\n * The graphql function is used to parse GraphQL queries into a document that can be used by GraphQL clients.\n */\nexport function graphql(source: \"\\n query GetProperties($where: AttestationWhereInput!) {\\n itemProperties: attestations(\\n where: $where\\n orderBy: [{ timeCreated: desc }]\\n ) {\\n ...attestationFields\\n }\\n }\\n\"): (typeof documents)[\"\\n query GetProperties($where: AttestationWhereInput!) {\\n itemProperties: attestations(\\n where: $where\\n orderBy: [{ timeCreated: desc }]\\n ) {\\n ...attestationFields\\n }\\n }\\n\"];\n/**\n * The graphql function is used to parse GraphQL queries into a document that can be used by GraphQL clients.\n */\nexport function graphql(source: \"\\n query GetAllPropertiesForAllVersions($where: AttestationWhereInput!) {\\n allProperties: attestations(\\n where: $where\\n orderBy: [{ timeCreated: desc }]\\n ) {\\n ...attestationFields\\n }\\n }\\n\"): (typeof documents)[\"\\n query GetAllPropertiesForAllVersions($where: AttestationWhereInput!) {\\n allProperties: attestations(\\n where: $where\\n orderBy: [{ timeCreated: desc }]\\n ) {\\n ...attestationFields\\n }\\n }\\n\"];\n/**\n * The graphql function is used to parse GraphQL queries into a document that can be used by GraphQL clients.\n */\nexport function graphql(source: \"\\n query GetFilesMetadata($where: AttestationWhereInput!) {\\n filesMetadata: attestations(\\n where: $where\\n orderBy: [{ timeCreated: desc }]\\n ) {\\n ...attestationFields\\n }\\n }\\n\"): (typeof documents)[\"\\n query GetFilesMetadata($where: AttestationWhereInput!) {\\n filesMetadata: attestations(\\n where: $where\\n orderBy: [{ timeCreated: desc }]\\n ) {\\n ...attestationFields\\n }\\n }\\n\"];\n/**\n * The graphql function is used to parse GraphQL queries into a document that can be used by GraphQL clients.\n */\nexport function graphql(source: \"\\n query GetImageSeeds($where: AttestationWhereInput!) {\\n imageSeeds: attestations(where: $where, orderBy: [{ timeCreated: desc }]) {\\n id\\n decodedDataJson\\n attester\\n schema {\\n schemaNames {\\n name\\n }\\n }\\n refUID\\n revoked\\n schemaId\\n txid\\n timeCreated\\n time\\n isOffchain\\n }\\n }\\n\"): (typeof documents)[\"\\n query GetImageSeeds($where: AttestationWhereInput!) {\\n imageSeeds: attestations(where: $where, orderBy: [{ timeCreated: desc }]) {\\n id\\n decodedDataJson\\n attester\\n schema {\\n schemaNames {\\n name\\n }\\n }\\n refUID\\n revoked\\n schemaId\\n txid\\n timeCreated\\n time\\n isOffchain\\n }\\n }\\n\"];\n/**\n * The graphql function is used to parse GraphQL queries into a document that can be used by GraphQL clients.\n */\nexport function graphql(source: \"\\n query GetImageVersions($where: AttestationWhereInput!) {\\n imageVersions: attestations(\\n where: $where\\n orderBy: [{ timeCreated: desc }]\\n ) {\\n ...attestationFields\\n }\\n }\\n\"): (typeof documents)[\"\\n query GetImageVersions($where: AttestationWhereInput!) {\\n imageVersions: attestations(\\n where: $where\\n orderBy: [{ timeCreated: desc }]\\n ) {\\n ...attestationFields\\n }\\n }\\n\"];\n\nexport function graphql(source: string) {\n return (documents as any)[source] ?? {};\n}\n\nexport type DocumentType<TDocumentNode extends DocumentNode<any, any>> = TDocumentNode extends DocumentNode< infer TType, any> ? TType : never;","import { graphql } from './graphql/gql/index.js'\nimport { TypedDocumentNode } from '@graphql-typed-document-node/core'\nimport type { Attestation, Schema as EASSchema } from './graphql/gql/graphql.js'\n\nexport const GET_SCHEMAS = graphql(/* GraphQL */ `\n query GetSchemas($where: SchemaWhereInput!) {\n schemas: schemata(where: $where) {\n id\n schema\n schemaNames {\n name\n }\n }\n }\n`)\n\nexport const GET_SCHEMA_BY_NAME = graphql(/* GraphQL */ `\n query GetSchemaByName($where: SchemaWhereInput!) {\n schemas: schemata(where: $where) {\n id\n schema\n schemaNames {\n name\n }\n }\n }\n`) as TypedDocumentNode<{ schemas: EASSchema[] }>\n\nexport const GET_SEEDS = graphql(/* GraphQL */ `\n query GetSeeds($where: AttestationWhereInput!, $take: Int, $skip: Int) {\n itemSeeds: attestations(where: $where, orderBy: [{ timeCreated: desc }], take: $take, skip: $skip) {\n id\n decodedDataJson\n attester\n schema {\n schemaNames {\n name\n }\n }\n refUID\n revoked\n revocationTime\n schemaId\n timeCreated\n isOffchain\n }\n }\n`) as TypedDocumentNode<{ itemSeeds: Attestation[] }>\n\nexport const GET_SEED_IDS = graphql(/* GraphQL */ `\n query GetSeedIds($where: AttestationWhereInput!) {\n itemSeedIds: attestations(where: $where, orderBy: [{ timeCreated: desc }]) {\n id\n }\n }\n`) as TypedDocumentNode<{ itemSeedIds: Attestation[] }>\n\nexport const GET_STORAGE_TRANSACTION_ID = graphql(/* GraphQL */ `\n query GetStorageTransactionId($where: AttestationWhereInput!) {\n storageTransactionId: attestations(\n where: $where\n orderBy: [{ timeCreated: desc }]\n ) {\n id\n decodedDataJson\n }\n }\n`) as TypedDocumentNode<{ storageTransactionId: Attestation[] }>\n\nexport const GET_VERSIONS = graphql(/* GraphQL */ `\n query GetVersions($where: AttestationWhereInput!) {\n itemVersions: attestations(\n where: $where\n orderBy: [{ timeCreated: desc }]\n ) {\n ...attestationFields\n }\n }\n`) as TypedDocumentNode<{ itemVersions: Attestation[] }>\n\nexport const GET_PROPERTIES = graphql(/* GraphQL */ `\n query GetProperties($where: AttestationWhereInput!) {\n itemProperties: attestations(\n where: $where\n orderBy: [{ timeCreated: desc }]\n ) {\n ...attestationFields\n }\n }\n`) as TypedDocumentNode<{ itemProperties: Attestation[] }>\n\nexport const GET_ALL_PROPERTIES_FOR_ALL_VERSIONS = graphql(/* GraphQL */ `\n query GetAllPropertiesForAllVersions($where: AttestationWhereInput!) {\n allProperties: attestations(\n where: $where\n orderBy: [{ timeCreated: desc }]\n ) {\n ...attestationFields\n }\n }\n`) as TypedDocumentNode<{ allProperties: Attestation[] }>\n\nexport const GET_FILES_METADATA = graphql(/* GraphQL */ `\n query GetFilesMetadata($where: AttestationWhereInput!) {\n filesMetadata: attestations(\n where: $where\n orderBy: [{ timeCreated: desc }]\n ) {\n ...attestationFields\n }\n }\n`) as TypedDocumentNode<{ filesMetadata: Attestation[] }>\n\nexport const GET_IMAGE_SEEDS = graphql(/* GraphQL */ `\n query GetImageSeeds($where: AttestationWhereInput!) {\n imageSeeds: attestations(where: $where, orderBy: [{ timeCreated: desc }]) {\n id\n decodedDataJson\n attester\n schema {\n schemaNames {\n name\n }\n }\n refUID\n revoked\n schemaId\n txid\n timeCreated\n time\n isOffchain\n }\n }\n`) as TypedDocumentNode<{ imageSeeds: Attestation[] }>\n\nexport const GET_IMAGE_VERSIONS = graphql(/* GraphQL */ `\n query GetImageVersions($where: AttestationWhereInput!) {\n imageVersions: attestations(\n where: $where\n orderBy: [{ timeCreated: desc }]\n ) {\n ...attestationFields\n }\n }\n`) as TypedDocumentNode<{ imageVersions: Attestation[] }>\n","import { checksumAddress, toSnakeCase } from './utils.js'\nimport { pickLatestPropertyAttestationsByRefAndSchema } from './easPropertyCanonical.js'\nimport { withExcludeRevokedFilter } from './easRevokedFilter.js'\nimport { BaseEasClient } from './EasClient/BaseEasClient.js'\nimport { BaseQueryClient } from './QueryClient/BaseQueryClient.js'\nimport { GET_PROPERTIES, GET_SCHEMAS, GET_SEEDS, GET_VERSIONS } from './queries.js'\nimport type { Attestation, Schema as EASSchema } from './graphql/gql/graphql.js'\n\nexport type { Attestation, Schema as EASSchema } from './graphql/gql/graphql.js'\n\nexport const getItemVersionsFromEas = async ({\n seedUids,\n excludeRevoked = true,\n}: {\n seedUids: string[]\n excludeRevoked?: boolean\n}): Promise<Attestation[]> => {\n const queryClient = BaseQueryClient.getQueryClient()\n const easClient = BaseEasClient.getEasClient()\n\n const where = excludeRevoked\n ? withExcludeRevokedFilter({ refUID: { in: seedUids } })\n : { refUID: { in: seedUids } }\n\n const { itemVersions } = (await queryClient.fetchQuery({\n queryKey: [`getVersionsForAllModels`, [...seedUids].sort(), excludeRevoked],\n queryFn: async () =>\n easClient.request(GET_VERSIONS, {\n where,\n }),\n })) as { itemVersions: Attestation[] }\n\n return itemVersions\n}\n\nexport const getItemPropertiesFromEas = async ({\n versionUids,\n excludeRevoked = true,\n}: {\n versionUids: string[]\n excludeRevoked?: boolean\n}): Promise<Attestation[]> => {\n const queryClient = BaseQueryClient.getQueryClient()\n const easClient = BaseEasClient.getEasClient()\n\n const where = excludeRevoked\n ? withExcludeRevokedFilter({ refUID: { in: versionUids } })\n : { refUID: { in: versionUids } }\n\n const { itemProperties } = (await queryClient.fetchQuery({\n queryKey: [`getPropertiesForAllModels`, [...versionUids].sort(), excludeRevoked],\n queryFn: async () =>\n easClient.request(GET_PROPERTIES, {\n where,\n }),\n })) as { itemProperties: Attestation[] }\n\n return itemProperties\n}\n\nexport const getCanonicalItemPropertiesFromEas = async (props: {\n versionUids: string[]\n excludeRevoked?: boolean\n}): Promise<Attestation[]> => {\n const itemProperties = await getItemPropertiesFromEas(props)\n return pickLatestPropertyAttestationsByRefAndSchema(itemProperties)\n}\n\nexport const getEasSchemaUidBySchemaName = async ({\n schemaName,\n}: {\n schemaName: string\n}): Promise<string | undefined> => {\n try {\n const queryClient = BaseQueryClient.getQueryClient()\n const easClient = BaseEasClient.getEasClient()\n\n if (!queryClient || !easClient) {\n return undefined\n }\n\n const { schemas } = (await queryClient.fetchQuery({\n queryKey: [`getEasSchemaUidBySchemaName`],\n queryFn: async () =>\n easClient.request(GET_SCHEMAS, {\n where: {\n schema: {\n endsWith: schemaName,\n },\n },\n }),\n })) as { schemas: Array<{ id: string }> }\n\n if (!schemas || schemas.length === 0) {\n return undefined\n }\n\n return schemas[0]!.id\n } catch (error) {\n if (process.env.NODE_ENV === 'development') {\n console.warn(`Failed to fetch schema for schema name ${schemaName}:`, error)\n }\n return undefined\n }\n}\n\nexport const getSeedsFromSchemaUids = async ({\n schemaUids,\n addresses,\n excludeRevoked = true,\n}: {\n schemaUids: string[]\n addresses: string[]\n excludeRevoked?: boolean\n}) => {\n const attesterAddresses = addresses.map((a) => {\n try {\n return checksumAddress(a)\n } catch {\n return a\n }\n })\n let where: Record<string, unknown> = {\n attester: {\n in: attesterAddresses,\n },\n schemaId: {\n in: schemaUids,\n },\n }\n\n if (excludeRevoked) {\n where = withExcludeRevokedFilter(where)\n }\n\n const queryClient = BaseQueryClient.getQueryClient()\n const easClient = BaseEasClient.getEasClient()\n\n const { itemSeeds } = (await queryClient.fetchQuery({\n queryKey: [\n `getSeedsForAllModels`,\n excludeRevoked,\n [...schemaUids].sort(),\n [...addresses].sort(),\n ],\n queryFn: async () =>\n easClient.request(GET_SEEDS, {\n where,\n }),\n })) as { itemSeeds: Attestation[] }\n\n return itemSeeds\n}\n\nexport const getSeedsBySchemaName = async (\n schemaName: string,\n limit: number = 10,\n skip?: number,\n) => {\n const skipVal = skip ?? 0\n const variables = {\n where: withExcludeRevokedFilter({\n schema: {\n is: {\n schemaNames: {\n some: {\n name: {\n equals: schemaName,\n },\n },\n },\n },\n },\n }),\n take: limit,\n skip: skipVal,\n }\n\n const queryClient = BaseQueryClient.getQueryClient()\n const easClient = BaseEasClient.getEasClient()\n\n const { itemSeeds } = (await queryClient.fetchQuery({\n queryKey: [`getSeedsBySchemaName`, schemaName, limit, skipVal],\n queryFn: async () => easClient.request(GET_SEEDS, variables),\n })) as { itemSeeds: Attestation[] }\n\n return itemSeeds\n}\n\nexport const getSeedUidsBySchemaName = async (schemaName: string, limit: number = 10) => {\n const itemSeeds = await getSeedsBySchemaName(schemaName, limit)\n return itemSeeds.map((seed: Attestation) => seed.id)\n}\n","import { ZERO_BYTES32 } from './constants.js'\n\n/**\n * True when the value is not a real EAS attestation UID stored in SQLite\n * (missing, empty, legacy 'NULL' sentinel, or zero bytes32).\n */\nexport function isPlaceholderUid(value: string | null | undefined): boolean {\n if (value == null || value === '') return true\n if (value === 'NULL') return true\n const v = value.trim()\n if (v === '') return true\n if (v.toLowerCase() === ZERO_BYTES32.toLowerCase()) return true\n return false\n}\n\n/**\n * Strict EAS attestation UID: 0x-prefixed 32-byte hex (case-insensitive 0x / hex body).\n * Excludes placeholders and ZERO_BYTES32.\n */\nexport function isValidEasAttestationUid(value: string | null | undefined): boolean {\n if (isPlaceholderUid(value)) return false\n const v = String(value).trim()\n if (!/^0x/i.test(v)) return false\n const hex = v.slice(2)\n if (hex.length !== 64) return false\n return /^[0-9a-fA-F]{64}$/.test(hex)\n}\n\n/** Normalize bytes32 hex strings for case-insensitive comparison (schema UIDs, etc.). */\nexport function normalizeBytes32Hex(value: string | null | undefined): string {\n if (value == null || value === '') return ''\n const raw = String(value).trim()\n const body = raw.startsWith('0x') || raw.startsWith('0X') ? raw.slice(2) : raw\n const hex = body.replace(/[^0-9a-fA-F]/g, '0').padStart(64, '0').slice(-64)\n return ('0x' + hex).toLowerCase()\n}\n","import { keccak256 } from 'js-sha3'\nimport { normalizeBytes32Hex } from './easUid.js'\nimport { checksumAddress } from './utils.js'\n\n/** EAS schema definition for tool domain-ownership sidecar attestations (revocable). */\nexport const DOMAIN_OWNERSHIP_SCHEMA_DEF =\n 'string domain,address claimer,string method,bytes32 challengeHash,uint64 verifiedAt,string registryCreationDate,string registryExpirationDate,bytes32 registryFingerprint,string scope'\n\n/** Schema #1 display name for {@link DOMAIN_OWNERSHIP_SCHEMA_DEF}. */\nexport const DOMAIN_OWNERSHIP_SCHEMA_NAME = 'seedprotocol.domainOwnership'\n\n/** Challenge method stored on-chain. */\nexport const DOMAIN_OWNERSHIP_METHOD = 'dns-txt-challenge'\n\n/** Default scope: registrable domain (eTLD+1). */\nexport const DOMAIN_OWNERSHIP_SCOPE_REGISTRABLE = 'registrable'\n\n/** Underscored DNS owner-name prefix (IETF domain control validation style). */\nexport const DOMAIN_OWNERSHIP_TXT_LABEL = '_seedprotocol-challenge'\n\n/** Default challenge lifetime (72 hours). */\nexport const DOMAIN_OWNERSHIP_CHALLENGE_TTL_MS = 72 * 60 * 60 * 1000\n\n/** Soft staleness window when no live registry snapshot is available (365 days). */\nexport const DOMAIN_OWNERSHIP_SOFT_STALE_MS = 365 * 24 * 60 * 60 * 1000\n\n/** Fallback EAS expiration when RDAP has no expirationDate (365 days from verifiedAt). */\nexport const DOMAIN_OWNERSHIP_DEFAULT_EXPIRATION_SECS = 365 * 24 * 60 * 60\n\nexport type DomainOwnershipDecoded = {\n domain: string\n claimer: string\n method: string\n challengeHash: `0x${string}`\n verifiedAt: number\n registryCreationDate: string\n registryExpirationDate: string\n registryFingerprint: `0x${string}`\n scope: string\n}\n\nexport type DomainOwnershipTxtParts = {\n token: string\n claimer: string\n expiry: string\n}\n\nexport type DomainRegistryFingerprintInput = {\n domain: string\n creationDate?: string | null\n registrarIanaId?: string | null\n}\n\nexport type DomainOwnershipAssessStatus =\n | 'valid'\n | 'expired'\n | 'likely_transferred'\n | 'stale'\n | 'unknown'\n\nexport type DomainOwnershipAssessResult = {\n status: DomainOwnershipAssessStatus\n warnings: string[]\n}\n\ntype DecodedField = {\n name?: string\n value?: unknown\n type?: string\n}\n\nfunction utf8Bytes(s: string): Uint8Array {\n return new TextEncoder().encode(s)\n}\n\nfunction normalizeDomain(domain: string): string {\n return domain.trim().toLowerCase().replace(/\\.$/, '')\n}\n\nfunction normalizeClaimer(claimer: string): string {\n const trimmed = claimer.trim()\n try {\n return checksumAddress(trimmed).toLowerCase()\n } catch {\n return trimmed.toLowerCase()\n }\n}\n\n/**\n * DNS owner name for the challenge TXT record.\n * Example: `_seedprotocol-challenge.example.com`\n */\nexport function domainOwnershipTxtName(domain: string): string {\n return `${DOMAIN_OWNERSHIP_TXT_LABEL}.${normalizeDomain(domain)}`\n}\n\n/**\n * Build IETF-style key=value TXT RDATA for a domain ownership challenge.\n */\nexport function buildDomainOwnershipTxtValue(params: {\n token: string\n claimer: string\n expiry: string\n}): string {\n const claimer = normalizeClaimer(params.claimer)\n return `token=${params.token},addr=${claimer},expiry=${params.expiry}`\n}\n\n/**\n * Parse a domain ownership TXT RDATA value. Returns null when required keys are missing.\n */\nexport function parseDomainOwnershipTxtValue(value: string): DomainOwnershipTxtParts | null {\n const raw = value.replace(/^\"+|\"+$/g, '').trim()\n const parts = new Map<string, string>()\n for (const segment of raw.split(',')) {\n const idx = segment.indexOf('=')\n if (idx <= 0) continue\n const key = segment.slice(0, idx).trim()\n const val = segment.slice(idx + 1).trim()\n if (key) parts.set(key, val)\n }\n const token = parts.get('token')\n const claimer = parts.get('addr') ?? parts.get('claimer')\n const expiry = parts.get('expiry')\n if (!token || !claimer || !expiry) return null\n return { token, claimer: normalizeClaimer(claimer), expiry }\n}\n\n/**\n * Deterministic challenge hash: keccak256 of canonical UTF-8 material.\n * Material: `domain|claimer|token|scope` (lowercased domain/claimer).\n */\nexport function hashDomainOwnershipChallenge(params: {\n domain: string\n claimer: string\n token: string\n scope?: string\n}): `0x${string}` {\n const domain = normalizeDomain(params.domain)\n const claimer = normalizeClaimer(params.claimer)\n const scope = (params.scope ?? DOMAIN_OWNERSHIP_SCOPE_REGISTRABLE).trim()\n const material = `${domain}|${claimer}|${params.token}|${scope}`\n return ('0x' + keccak256(utf8Bytes(material))) as `0x${string}`\n}\n\n/**\n * Deterministic registry fingerprint from stable RDAP fields.\n * Uses domain + creationDate + registrar IANA id (empty string when missing).\n */\nexport function hashDomainRegistryFingerprint(\n input: DomainRegistryFingerprintInput,\n): `0x${string}` {\n const payload = {\n domain: normalizeDomain(input.domain),\n creationDate: (input.creationDate ?? '').trim(),\n registrarIanaId: (input.registrarIanaId ?? '').trim(),\n }\n return ('0x' + keccak256(utf8Bytes(JSON.stringify(payload)))) as `0x${string}`\n}\n\nfunction asBytes32(value: unknown): `0x${string}` {\n if (typeof value === 'string') return normalizeBytes32Hex(value) as `0x${string}`\n if (value && typeof value === 'object' && 'hex' in (value as object)) {\n return normalizeBytes32Hex(String((value as { hex: string }).hex)) as `0x${string}`\n }\n return normalizeBytes32Hex(String(value ?? '')) as `0x${string}`\n}\n\nfunction asString(value: unknown): string {\n if (typeof value === 'string') return value\n if (value && typeof value === 'object' && 'value' in (value as object)) {\n return String((value as { value: unknown }).value ?? '')\n }\n return String(value ?? '')\n}\n\nfunction asUint64(value: unknown): number {\n if (typeof value === 'number' && Number.isFinite(value)) return Math.trunc(value)\n if (typeof value === 'bigint') return Number(value)\n if (typeof value === 'string' && value.trim() !== '') {\n const n = Number(value)\n return Number.isFinite(n) ? Math.trunc(n) : 0\n }\n if (value && typeof value === 'object' && 'value' in (value as object)) {\n return asUint64((value as { value: unknown }).value)\n }\n return 0\n}\n\n/**\n * Decode DomainOwnership fields from EAS `decodedDataJson` or a JSON array of named fields.\n */\nexport function decodeDomainOwnershipData(\n data: string | DecodedField[],\n): DomainOwnershipDecoded {\n const fields: DecodedField[] =\n typeof data === 'string' ? (JSON.parse(data) as DecodedField[]) : data\n const byName = new Map<string, DecodedField>()\n for (const f of fields) {\n if (f?.name) byName.set(f.name, f)\n }\n\n return {\n domain: normalizeDomain(asString(byName.get('domain')?.value)),\n claimer: normalizeClaimer(asString(byName.get('claimer')?.value)),\n method: asString(byName.get('method')?.value),\n challengeHash: asBytes32(byName.get('challengeHash')?.value),\n verifiedAt: asUint64(byName.get('verifiedAt')?.value),\n registryCreationDate: asString(byName.get('registryCreationDate')?.value),\n registryExpirationDate: asString(byName.get('registryExpirationDate')?.value),\n registryFingerprint: asBytes32(byName.get('registryFingerprint')?.value),\n scope: asString(byName.get('scope')?.value),\n }\n}\n\nfunction isoToUnixSeconds(iso: string): number | null {\n if (!iso?.trim()) return null\n const ms = Date.parse(iso)\n if (!Number.isFinite(ms)) return null\n return Math.floor(ms / 1000)\n}\n\n/**\n * Pure validity assessment for a decoded domain-ownership attestation.\n *\n * - `registrySnapshot === undefined`: no live recheck; may return `stale`\n * - `registrySnapshot === null`: live lookup failed; returns `unknown` (unless expired)\n * - object snapshot: compares fingerprint → `likely_transferred` on mismatch\n */\nexport function assessDomainOwnership(params: {\n decoded: DomainOwnershipDecoded\n /** EAS on-chain expirationTime (unix seconds), when known. */\n expirationTime?: number | null\n now?: number\n registrySnapshot?: DomainRegistryFingerprintInput | null\n softStaleMs?: number\n}): DomainOwnershipAssessResult {\n const nowSec = Math.floor((params.now ?? Date.now()) / 1000)\n const warnings: string[] = []\n const softStaleMs = params.softStaleMs ?? DOMAIN_OWNERSHIP_SOFT_STALE_MS\n\n const easExp = params.expirationTime\n const registryExp = isoToUnixSeconds(params.decoded.registryExpirationDate)\n const expiredByEas =\n typeof easExp === 'number' && easExp > 0 && nowSec >= easExp\n const expiredByRegistry = registryExp != null && nowSec >= registryExp\n if (expiredByEas || expiredByRegistry) {\n return { status: 'expired', warnings }\n }\n\n if (params.registrySnapshot === null) {\n warnings.push('Registry lookup unavailable; ownership status is unknown')\n return { status: 'unknown', warnings }\n }\n\n if (params.registrySnapshot !== undefined) {\n const expected = hashDomainRegistryFingerprint({\n domain: params.decoded.domain,\n creationDate: params.registrySnapshot.creationDate,\n registrarIanaId: params.registrySnapshot.registrarIanaId,\n })\n if (\n normalizeBytes32Hex(expected) !==\n normalizeBytes32Hex(params.decoded.registryFingerprint)\n ) {\n warnings.push(\n 'Registry creation date or registrar IANA id no longer matches attestation fingerprint',\n )\n return { status: 'likely_transferred', warnings }\n }\n return { status: 'valid', warnings }\n }\n\n const nowMs = params.now ?? Date.now()\n const verifiedAtMs = params.decoded.verifiedAt * 1000\n if (Number.isFinite(verifiedAtMs) && verifiedAtMs > 0 && nowMs - verifiedAtMs > softStaleMs) {\n warnings.push(\n 'Attestation is older than the soft staleness window and was not rechecked against the registry',\n )\n return { status: 'stale', warnings }\n }\n\n return { status: 'valid', warnings }\n}\n","import { checksumAddress } from './utils.js'\nimport { withExcludeRevokedFilter } from './easRevokedFilter.js'\nimport { BaseEasClient } from './EasClient/BaseEasClient.js'\nimport { BaseQueryClient } from './QueryClient/BaseQueryClient.js'\nimport { GET_SEEDS } from './queries.js'\nimport {\n DOMAIN_OWNERSHIP_SCHEMA_NAME,\n decodeDomainOwnershipData,\n} from './domainOwnershipHelpers.js'\nimport type { Attestation } from './graphql/gql/graphql.js'\n\nexport type GetDomainOwnershipFromEasParams = {\n /** Tool canonical wallet(s) that may have attested. */\n toolAddresses: string[]\n /** Optional domains to keep (matched against decoded `domain`, case-insensitive). */\n domains?: string[]\n /** Optional claimer addresses (EAS `recipient` filter). */\n claimers?: string[]\n /**\n * DomainOwnership schema UID. When omitted, filters by named schema\n * {@link DOMAIN_OWNERSHIP_SCHEMA_NAME}.\n */\n schemaUid?: string\n excludeRevoked?: boolean\n}\n\nfunction normalizeDomainFilter(domain: string): string {\n return domain.trim().toLowerCase().replace(/\\.$/, '')\n}\n\n/**\n * Query DomainOwnership sidecar attestations by tool attester (and optional filters).\n * Domain filters are applied client-side from `decodedDataJson`.\n */\nexport async function getDomainOwnershipFromEas(\n params: GetDomainOwnershipFromEasParams,\n): Promise<Attestation[]> {\n const {\n toolAddresses,\n domains,\n claimers,\n schemaUid,\n excludeRevoked = true,\n } = params\n if (!toolAddresses.length) return []\n\n const attesterAddresses = toolAddresses.map((a) => {\n try {\n return checksumAddress(a)\n } catch {\n return a\n }\n })\n\n let where: Record<string, unknown> = {\n attester: { in: attesterAddresses },\n }\n\n if (schemaUid) {\n where.schemaId = { equals: schemaUid }\n } else {\n where.schema = {\n is: {\n schemaNames: {\n some: {\n name: { equals: DOMAIN_OWNERSHIP_SCHEMA_NAME },\n },\n },\n },\n }\n }\n\n if (claimers?.length) {\n where.recipient = {\n in: claimers.map((a) => {\n try {\n return checksumAddress(a)\n } catch {\n return a\n }\n }),\n }\n }\n\n if (excludeRevoked) {\n where = withExcludeRevokedFilter(where)\n }\n\n const queryClient = BaseQueryClient.getQueryClient()\n const easClient = BaseEasClient.getEasClient()\n\n const { itemSeeds } = (await queryClient.fetchQuery({\n queryKey: [\n 'getDomainOwnershipFromEas',\n excludeRevoked,\n schemaUid ?? DOMAIN_OWNERSHIP_SCHEMA_NAME,\n [...attesterAddresses].sort(),\n [...(domains ?? []).map(normalizeDomainFilter)].sort(),\n [...(claimers ?? [])].map((c) => c.toLowerCase()).sort(),\n ],\n queryFn: async () =>\n easClient.request(GET_SEEDS, {\n where,\n }),\n })) as { itemSeeds: Attestation[] }\n\n if (!domains?.length) return itemSeeds\n\n const want = new Set(domains.map(normalizeDomainFilter))\n return itemSeeds.filter((row) => {\n try {\n const decoded = decodeDomainOwnershipData(row.decodedDataJson ?? '[]')\n return want.has(decoded.domain)\n } catch {\n return false\n }\n })\n}\n\nexport * from './domainOwnershipHelpers.js'\n","import { keccak256 } from 'js-sha3'\nimport { normalizeBytes32Hex } from './easUid.js'\nimport { checksumAddress } from './utils.js'\n\n/** EAS schema definition for ManagedAccount publish-automation grants (revocable). */\nexport const PUBLISH_AUTHORIZATION_SCHEMA_DEF =\n 'address identity,address sessionKey,address app,string scopes,uint64 grantedAt,uint64 expiresAt,bytes32 permissionsHash'\n\n/** Schema #1 display name for {@link PUBLISH_AUTHORIZATION_SCHEMA_DEF}. */\nexport const PUBLISH_AUTHORIZATION_SCHEMA_NAME = 'seedprotocol.publishAuthorization'\n\n/** Fixed v1 scopes string. */\nexport const PUBLISH_AUTHORIZATION_SCOPES = 'publish,revoke'\n\n/** Default EAS expiration when grant has no expiresAt (365 days from grantedAt). */\nexport const PUBLISH_AUTHORIZATION_DEFAULT_EXPIRATION_SECS = 365 * 24 * 60 * 60\n\nexport type PublishAuthorizationDecoded = {\n identity: string\n sessionKey: string\n app: string\n scopes: string\n grantedAt: number\n expiresAt: number\n permissionsHash: `0x${string}`\n}\n\nexport type PublishAuthorizationAssessStatus = 'valid' | 'expired' | 'scope_mismatch' | 'unknown'\n\nexport type PublishAuthorizationAssessResult = {\n status: PublishAuthorizationAssessStatus\n warnings: string[]\n}\n\ntype DecodedField = {\n name?: string\n value?: unknown\n type?: string\n}\n\nfunction normalizeAddress(addr: string): string {\n const trimmed = addr.trim()\n try {\n return checksumAddress(trimmed).toLowerCase()\n } catch {\n return trimmed.toLowerCase()\n }\n}\n\nfunction asBytes32(value: unknown): `0x${string}` {\n if (typeof value === 'string') return normalizeBytes32Hex(value) as `0x${string}`\n if (value && typeof value === 'object' && 'hex' in (value as object)) {\n return normalizeBytes32Hex(String((value as { hex: string }).hex)) as `0x${string}`\n }\n return normalizeBytes32Hex(String(value ?? '')) as `0x${string}`\n}\n\nfunction asString(value: unknown): string {\n if (typeof value === 'string') return value\n if (value && typeof value === 'object' && 'value' in (value as object)) {\n return String((value as { value: unknown }).value ?? '')\n }\n return String(value ?? '')\n}\n\nfunction asUint64(value: unknown): number {\n if (typeof value === 'number' && Number.isFinite(value)) return Math.trunc(value)\n if (typeof value === 'bigint') return Number(value)\n if (typeof value === 'string' && value.trim() !== '') {\n const n = Number(value)\n return Number.isFinite(n) ? Math.trunc(n) : 0\n }\n if (value && typeof value === 'object' && 'value' in (value as object)) {\n return asUint64((value as { value: unknown }).value)\n }\n return 0\n}\n\n/**\n * Decode PublishAuthorization fields from EAS `decodedDataJson` or a JSON array of named fields.\n */\nexport function decodePublishAuthorizationData(\n data: string | DecodedField[],\n): PublishAuthorizationDecoded {\n const fields: DecodedField[] =\n typeof data === 'string' ? (JSON.parse(data) as DecodedField[]) : data\n const byName = new Map<string, DecodedField>()\n for (const f of fields) {\n if (f?.name) byName.set(f.name, f)\n }\n\n return {\n identity: normalizeAddress(asString(byName.get('identity')?.value)),\n sessionKey: normalizeAddress(asString(byName.get('sessionKey')?.value)),\n app: normalizeAddress(asString(byName.get('app')?.value)),\n scopes: asString(byName.get('scopes')?.value),\n grantedAt: asUint64(byName.get('grantedAt')?.value),\n expiresAt: asUint64(byName.get('expiresAt')?.value),\n permissionsHash: asBytes32(byName.get('permissionsHash')?.value),\n }\n}\n\n/**\n * Pure validity assessment for a decoded publish-authorization attestation.\n */\nexport function assessPublishAuthorization(params: {\n decoded: PublishAuthorizationDecoded\n /** EAS on-chain expirationTime (unix seconds), when known. */\n expirationTime?: number | null\n now?: number\n /** When set, scopes must equal this string (default: publish,revoke). */\n expectedScopes?: string\n}): PublishAuthorizationAssessResult {\n const nowSec = Math.floor((params.now ?? Date.now()) / 1000)\n const warnings: string[] = []\n const expectedScopes = params.expectedScopes ?? PUBLISH_AUTHORIZATION_SCOPES\n\n const easExp = params.expirationTime\n const grantExp = params.decoded.expiresAt\n const expiredByEas = typeof easExp === 'number' && easExp > 0 && nowSec >= easExp\n const expiredByGrant = grantExp > 0 && nowSec >= grantExp\n if (expiredByEas || expiredByGrant) {\n return { status: 'expired', warnings }\n }\n\n if (params.decoded.scopes.trim() !== expectedScopes.trim()) {\n warnings.push(`Unexpected scopes \"${params.decoded.scopes}\"; expected \"${expectedScopes}\"`)\n return { status: 'scope_mismatch', warnings }\n }\n\n if (!params.decoded.identity || !params.decoded.sessionKey) {\n warnings.push('Missing identity or sessionKey')\n return { status: 'unknown', warnings }\n }\n\n return { status: 'valid', warnings }\n}\n\n/** Re-export keccak helper used by tests / fingerprinting (permissions hash lives in publish). */\nexport function hashPublishAuthorizationMaterial(material: string): `0x${string}` {\n return ('0x' + keccak256(new TextEncoder().encode(material))) as `0x${string}`\n}\n","import { checksumAddress } from './utils.js'\nimport { withExcludeRevokedFilter } from './easRevokedFilter.js'\nimport { BaseEasClient } from './EasClient/BaseEasClient.js'\nimport { BaseQueryClient } from './QueryClient/BaseQueryClient.js'\nimport { GET_SEEDS } from './queries.js'\nimport {\n PUBLISH_AUTHORIZATION_SCHEMA_NAME,\n decodePublishAuthorizationData,\n} from './publishAuthorizationHelpers.js'\nimport type { Attestation } from './graphql/gql/graphql.js'\n\nexport type GetPublishAuthorizationFromEasParams = {\n /**\n * ManagedAccount identity address(es) that attested the grant (EAS `attester`).\n * When omitted, filter by named schema only (then apply identity filters client-side).\n */\n identities?: string[]\n /** Optional session key addresses (EAS `recipient` filter). */\n sessionKeys?: string[]\n /** Optional app addresses (decoded `app`, case-insensitive). */\n apps?: string[]\n /**\n * PublishAuthorization schema UID. When omitted, filters by named schema\n * {@link PUBLISH_AUTHORIZATION_SCHEMA_NAME}.\n */\n schemaUid?: string\n excludeRevoked?: boolean\n}\n\n/**\n * Query PublishAuthorization sidecar attestations.\n */\nexport async function getPublishAuthorizationFromEas(\n params: GetPublishAuthorizationFromEasParams = {},\n): Promise<Attestation[]> {\n const {\n identities,\n sessionKeys,\n apps,\n schemaUid,\n excludeRevoked = true,\n } = params\n\n let where: Record<string, unknown> = {}\n\n if (schemaUid) {\n where.schemaId = { equals: schemaUid }\n } else {\n where.schema = {\n is: {\n schemaNames: {\n some: {\n name: { equals: PUBLISH_AUTHORIZATION_SCHEMA_NAME },\n },\n },\n },\n }\n }\n\n if (identities?.length) {\n where.attester = {\n in: identities.map((a) => {\n try {\n return checksumAddress(a)\n } catch {\n return a\n }\n }),\n }\n }\n\n if (sessionKeys?.length) {\n where.recipient = {\n in: sessionKeys.map((a) => {\n try {\n return checksumAddress(a)\n } catch {\n return a\n }\n }),\n }\n }\n\n if (excludeRevoked) {\n where = withExcludeRevokedFilter(where)\n }\n\n const queryClient = BaseQueryClient.getQueryClient()\n const easClient = BaseEasClient.getEasClient()\n\n const { itemSeeds } = (await queryClient.fetchQuery({\n queryKey: [\n 'getPublishAuthorizationFromEas',\n excludeRevoked,\n schemaUid ?? PUBLISH_AUTHORIZATION_SCHEMA_NAME,\n [...(identities ?? [])].map((a) => a.toLowerCase()).sort(),\n [...(sessionKeys ?? [])].map((a) => a.toLowerCase()).sort(),\n [...(apps ?? [])].map((a) => a.toLowerCase()).sort(),\n ],\n queryFn: async () =>\n easClient.request(GET_SEEDS, {\n where,\n }),\n })) as { itemSeeds: Attestation[] }\n\n if (!apps?.length) return itemSeeds\n\n const want = new Set(apps.map((a) => a.toLowerCase()))\n return itemSeeds.filter((row) => {\n try {\n const decoded = decodePublishAuthorizationData(row.decodedDataJson ?? '[]')\n return want.has(decoded.app.toLowerCase())\n } catch {\n return false\n }\n })\n}\n\nexport * from './publishAuthorizationHelpers.js'\n","import { getEasSchemaUidBySchemaName } from '../api.js'\nimport { toSnakeCase } from '../utils.js'\n\nconst schemaUidForSchemaDefinition = new Map<string, string>()\nconst schemaUidForModel = new Map<string, string>()\n\nexport const setSchemaUidForSchemaDefinition = ({\n text,\n schemaUid,\n}: {\n text: string\n schemaUid: string\n}): void => {\n schemaUidForSchemaDefinition.set(toSnakeCase(text), schemaUid)\n}\n\nexport const setSchemaUidForModel = ({\n modelName,\n schemaUid,\n}: {\n modelName: string\n schemaUid: string\n}): void => {\n schemaUidForModel.set(modelName.toLowerCase(), schemaUid)\n}\n\nexport const getSchemaUidForModelFromCache = (modelName: string): string | undefined =>\n schemaUidForModel.get(modelName.toLowerCase())\n\nexport const getEasSchemaUidForSchemaDefinition = async ({\n schemaText,\n}: {\n schemaText: string\n}): Promise<string | undefined> => {\n const textSnakeCase = toSnakeCase(schemaText)\n if (!schemaUidForSchemaDefinition.has(textSnakeCase)) {\n const schemaUid = await getEasSchemaUidBySchemaName({ schemaName: textSnakeCase })\n if (schemaUid) {\n setSchemaUidForSchemaDefinition({ text: textSnakeCase, schemaUid })\n }\n return schemaUid\n }\n return schemaUidForSchemaDefinition.get(textSnakeCase)\n}\n"],"mappings":"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"}