@hypercerts-org/lexicon 0.10.0-beta.2 → 0.10.0-beta.4

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.
@@ -1 +1 @@
1
- {"version":3,"file":"index.cjs","sources":["../../generated/util.ts","../../generated/lexicons.ts","../../generated/types/app/certified/badge/award.ts","../../generated/types/app/certified/badge/definition.ts","../../generated/types/app/certified/badge/response.ts","../../generated/types/app/certified/location.ts","../../generated/types/com/atproto/repo/strongRef.ts","../../generated/types/org/hypercerts/claim/activity.ts","../../generated/types/org/hypercerts/claim/collection.ts","../../generated/types/org/hypercerts/claim/contribution.ts","../../generated/types/org/hypercerts/claim/evaluation.ts","../../generated/types/org/hypercerts/claim/evidence.ts","../../generated/types/org/hypercerts/claim/measurement.ts","../../generated/types/org/hypercerts/claim/project.ts","../../generated/types/org/hypercerts/claim/rights.ts","../../generated/types/org/hypercerts/defs.ts","../../generated/types/org/hypercerts/funding/receipt.ts","../../generated/exports.ts"],"sourcesContent":["/**\n * GENERATED CODE - DO NOT MODIFY\n */\n\nimport { type ValidationResult } from '@atproto/lexicon'\n\nexport type OmitKey<T, K extends keyof T> = {\n [K2 in keyof T as K2 extends K ? never : K2]: T[K2]\n}\n\nexport type $Typed<V, T extends string = string> = V & { $type: T }\nexport type Un$Typed<V extends { $type?: string }> = OmitKey<V, '$type'>\n\nexport type $Type<Id extends string, Hash extends string> = Hash extends 'main'\n ? Id\n : `${Id}#${Hash}`\n\nfunction isObject<V>(v: V): v is V & object {\n return v != null && typeof v === 'object'\n}\n\nfunction is$type<Id extends string, Hash extends string>(\n $type: unknown,\n id: Id,\n hash: Hash,\n): $type is $Type<Id, Hash> {\n return hash === 'main'\n ? $type === id\n : // $type === `${id}#${hash}`\n typeof $type === 'string' &&\n $type.length === id.length + 1 + hash.length &&\n $type.charCodeAt(id.length) === 35 /* '#' */ &&\n $type.startsWith(id) &&\n $type.endsWith(hash)\n}\n\nexport type $TypedObject<\n V,\n Id extends string,\n Hash extends string,\n> = V extends {\n $type: $Type<Id, Hash>\n}\n ? V\n : V extends { $type?: string }\n ? V extends { $type?: infer T extends $Type<Id, Hash> }\n ? V & { $type: T }\n : never\n : V & { $type: $Type<Id, Hash> }\n\nexport function is$typed<V, Id extends string, Hash extends string>(\n v: V,\n id: Id,\n hash: Hash,\n): v is $TypedObject<V, Id, Hash> {\n return isObject(v) && '$type' in v && is$type(v.$type, id, hash)\n}\n\nexport function maybe$typed<V, Id extends string, Hash extends string>(\n v: V,\n id: Id,\n hash: Hash,\n): v is V & object & { $type?: $Type<Id, Hash> } {\n return (\n isObject(v) &&\n ('$type' in v ? v.$type === undefined || is$type(v.$type, id, hash) : true)\n )\n}\n\nexport type Validator<R = unknown> = (v: unknown) => ValidationResult<R>\nexport type ValidatorParam<V extends Validator> =\n V extends Validator<infer R> ? R : never\n\n/**\n * Utility function that allows to convert a \"validate*\" utility function into a\n * type predicate.\n */\nexport function asPredicate<V extends Validator>(validate: V) {\n return function <T>(v: T): v is T & ValidatorParam<V> {\n return validate(v).success\n }\n}\n","/**\n * GENERATED CODE - DO NOT MODIFY\n */\nimport {\n type LexiconDoc,\n Lexicons,\n ValidationError,\n type ValidationResult,\n} from '@atproto/lexicon'\nimport { type $Typed, is$typed, maybe$typed } from './util.js'\n\nexport const schemaDict = {\n AppCertifiedBadgeAward: {\n lexicon: 1,\n id: 'app.certified.badge.award',\n defs: {\n main: {\n type: 'record',\n description:\n 'Records a badge award to a user, project, or activity claim.',\n key: 'tid',\n record: {\n type: 'object',\n required: ['badge', 'subject', 'createdAt'],\n properties: {\n badge: {\n type: 'ref',\n ref: 'lex:app.certified.badge.definition',\n description: 'Reference to the badge definition for this award.',\n },\n subject: {\n type: 'union',\n description:\n 'Entity the badge award is for (either an account DID or any specific AT Protocol record), e.g. a user, a project, or a specific activity claim.',\n refs: [\n 'lex:app.certified.defs#did',\n 'lex:com.atproto.repo.strongRef',\n ],\n },\n note: {\n type: 'string',\n description:\n 'Optional statement explaining the reason for this badge award.',\n },\n createdAt: {\n type: 'string',\n format: 'datetime',\n description:\n 'Client-declared timestamp when this record was originally created',\n },\n },\n },\n },\n },\n },\n AppCertifiedBadgeDefinition: {\n lexicon: 1,\n id: 'app.certified.badge.definition',\n defs: {\n main: {\n type: 'record',\n description:\n 'Defines a badge that can be awarded via badge award records to users, projects, or activity claims.',\n key: 'tid',\n record: {\n type: 'object',\n required: ['title', 'badgeType', 'icon', 'createdAt'],\n properties: {\n badgeType: {\n type: 'string',\n description:\n 'Category of the badge (e.g. endorsement, participation, affiliation).',\n },\n title: {\n type: 'string',\n description: 'Human-readable title of the badge.',\n },\n icon: {\n type: 'blob',\n description:\n 'Icon representing the badge, stored as a blob for compact visual display.',\n accept: [\n 'image/png',\n 'image/jpeg',\n 'image/webp',\n 'image/svg+xml',\n ],\n maxSize: 1048576,\n },\n description: {\n type: 'string',\n description:\n 'Optional short statement describing what the badge represents.',\n },\n allowedIssuers: {\n type: 'array',\n description:\n 'Optional allowlist of DIDs allowed to issue this badge. If omitted, anyone may issue it.',\n items: {\n type: 'ref',\n ref: 'lex:app.certified.defs#did',\n },\n },\n createdAt: {\n type: 'string',\n format: 'datetime',\n description:\n 'Client-declared timestamp when this record was originally created',\n },\n },\n },\n },\n },\n },\n AppCertifiedBadgeResponse: {\n lexicon: 1,\n id: 'app.certified.badge.response',\n defs: {\n main: {\n type: 'record',\n description: 'Recipient response to a badge award.',\n key: 'tid',\n record: {\n type: 'object',\n required: ['badgeAward', 'response', 'createdAt'],\n properties: {\n badgeAward: {\n type: 'ref',\n ref: 'lex:app.certified.badge.award',\n description: 'Reference to the badge award.',\n },\n response: {\n type: 'string',\n enum: ['accepted', 'rejected'],\n description:\n 'The recipient’s response for the badge (accepted or rejected).',\n },\n weight: {\n type: 'string',\n description:\n 'Optional relative weight for accepted badges, assigned by the recipient.',\n },\n createdAt: {\n type: 'string',\n format: 'datetime',\n description:\n 'Client-declared timestamp when this record was originally created',\n },\n },\n },\n },\n },\n },\n AppCertifiedDefs: {\n lexicon: 1,\n id: 'app.certified.defs',\n description: 'Common type definitions used across certified protocols.',\n defs: {\n did: {\n type: 'string',\n format: 'did',\n description: 'A Decentralized Identifier (DID) string.',\n },\n },\n },\n AppCertifiedLocation: {\n lexicon: 1,\n id: 'app.certified.location',\n defs: {\n main: {\n type: 'record',\n description: 'A location reference',\n key: 'tid',\n record: {\n type: 'object',\n required: [\n 'lpVersion',\n 'srs',\n 'locationType',\n 'location',\n 'createdAt',\n ],\n properties: {\n lpVersion: {\n type: 'string',\n description: 'The version of the Location Protocol',\n maxLength: 10,\n },\n srs: {\n type: 'string',\n format: 'uri',\n description:\n 'The Spatial Reference System URI (e.g., http://www.opengis.net/def/crs/OGC/1.3/CRS84) that defines the coordinate system.',\n maxLength: 100,\n },\n locationType: {\n type: 'string',\n description:\n 'An identifier for the format of the location data (e.g., coordinate-decimal, geojson-point)',\n knownValues: ['coordinate-decimal', 'geojson-point'],\n maxLength: 20,\n },\n location: {\n type: 'union',\n refs: [\n 'lex:org.hypercerts.defs#uri',\n 'lex:org.hypercerts.defs#smallBlob',\n ],\n description:\n 'The location of where the work was performed as a URI or blob.',\n },\n name: {\n type: 'string',\n description: 'Optional name for this location',\n maxLength: 1000,\n maxGraphemes: 100,\n },\n description: {\n type: 'string',\n description: 'Optional description for this location',\n maxLength: 2000,\n maxGraphemes: 500,\n },\n createdAt: {\n type: 'string',\n format: 'datetime',\n description:\n 'Client-declared timestamp when this record was originally created',\n },\n },\n },\n },\n },\n },\n ComAtprotoRepoStrongRef: {\n lexicon: 1,\n id: 'com.atproto.repo.strongRef',\n description: 'A URI with a content-hash fingerprint.',\n defs: {\n main: {\n type: 'object',\n required: ['uri', 'cid'],\n properties: {\n uri: {\n type: 'string',\n format: 'at-uri',\n },\n cid: {\n type: 'string',\n format: 'cid',\n },\n },\n },\n },\n },\n OrgHypercertsClaimActivity: {\n lexicon: 1,\n id: 'org.hypercerts.claim.activity',\n defs: {\n main: {\n type: 'record',\n description: 'A hypercert record tracking impact work.',\n key: 'any',\n record: {\n type: 'object',\n required: [\n 'title',\n 'shortDescription',\n 'createdAt',\n 'startDate',\n 'endDate',\n ],\n properties: {\n title: {\n type: 'string',\n description: 'Title of the hypercert.',\n maxLength: 256,\n },\n shortDescription: {\n type: 'string',\n description: 'Short blurb of the impact work done.',\n maxLength: 3000,\n maxGraphemes: 300,\n },\n description: {\n type: 'string',\n description:\n 'Optional longer description of the impact work done.',\n maxLength: 30000,\n maxGraphemes: 3000,\n },\n image: {\n type: 'union',\n refs: [\n 'lex:org.hypercerts.defs#uri',\n 'lex:org.hypercerts.defs#smallImage',\n ],\n description:\n 'The hypercert visual representation as a URI or image blob.',\n },\n workScope: {\n type: 'ref',\n ref: 'lex:org.hypercerts.claim.activity#workScope',\n },\n startDate: {\n type: 'string',\n format: 'datetime',\n description: 'When the work began',\n },\n endDate: {\n type: 'string',\n format: 'datetime',\n description: 'When the work ended',\n },\n contributions: {\n type: 'array',\n description:\n 'A strong reference to the contributions done to create the impact in the hypercerts. The record referenced must conform with the lexicon org.hypercerts.claim.contribution.',\n items: {\n type: 'ref',\n ref: 'lex:com.atproto.repo.strongRef',\n },\n },\n rights: {\n type: 'ref',\n ref: 'lex:com.atproto.repo.strongRef',\n description:\n 'A strong reference to the rights that this hypercert has. The record referenced must conform with the lexicon org.hypercerts.claim.rights.',\n },\n location: {\n type: 'ref',\n ref: 'lex:com.atproto.repo.strongRef',\n description:\n 'A strong reference to the location where the activity was performed. The record referenced must conform with the lexicon app.certified.location.',\n },\n project: {\n type: 'string',\n format: 'at-uri',\n description:\n 'A reference (AT-URI) to the project record that this activity is part of. The record referenced must conform with the lexicon org.hypercerts.claim.project. This activity must also be referenced by the project, establishing a bidirectional link.',\n },\n createdAt: {\n type: 'string',\n format: 'datetime',\n description:\n 'Client-declared timestamp when this record was originally created',\n },\n },\n },\n },\n workScope: {\n type: 'object',\n description:\n 'Logical scope of the work using label-based conditions. All labels in `withinAllOf` must apply; at least one label in `withinAnyOf` must apply if provided; no label in `withinNoneOf` may apply.',\n properties: {\n withinAllOf: {\n type: 'array',\n description: 'Labels that MUST all hold for the scope to apply.',\n items: {\n type: 'string',\n },\n maxLength: 100,\n },\n withinAnyOf: {\n type: 'array',\n description:\n 'Labels of which AT LEAST ONE must hold (optional). If omitted or empty, imposes no additional condition.',\n items: {\n type: 'string',\n },\n maxLength: 100,\n },\n withinNoneOf: {\n type: 'array',\n description: 'Labels that MUST NOT hold for the scope to apply.',\n items: {\n type: 'string',\n },\n maxLength: 100,\n },\n },\n },\n activityWeight: {\n type: 'object',\n required: ['activity', 'weight'],\n properties: {\n activity: {\n type: 'ref',\n ref: 'lex:com.atproto.repo.strongRef',\n description:\n 'A strong reference to a hypercert activity record. This activity must conform to the lexicon org.hypercerts.claim.activity',\n },\n weight: {\n type: 'string',\n description:\n 'The relative weight/importance of this hypercert activity (stored as a string to avoid float precision issues). Weights can be any positive numeric values and do not need to sum to a specific total; normalization can be performed by the consuming application as needed.',\n },\n },\n },\n },\n },\n OrgHypercertsClaimCollection: {\n lexicon: 1,\n id: 'org.hypercerts.claim.collection',\n defs: {\n main: {\n type: 'record',\n description:\n 'A collection/group of hypercerts that have a specific property.',\n key: 'tid',\n record: {\n type: 'object',\n required: ['title', 'activities', 'createdAt'],\n properties: {\n title: {\n type: 'string',\n description: 'The title of this collection',\n maxLength: 800,\n maxGraphemes: 80,\n },\n shortDescription: {\n type: 'string',\n maxLength: 3000,\n maxGraphemes: 300,\n description: 'A short description of this collection',\n },\n avatar: {\n type: 'blob',\n description:\n 'Primary avatar image representing this collection across apps and views; typically a square image.',\n accept: ['image/png', 'image/jpeg'],\n maxSize: 1000000,\n },\n coverPhoto: {\n type: 'blob',\n description: 'The cover photo of this collection.',\n accept: ['image/png', 'image/jpeg'],\n maxSize: 1000000,\n },\n activities: {\n type: 'array',\n description:\n 'Array of activities with their associated weights in this collection',\n items: {\n type: 'ref',\n ref: 'lex:org.hypercerts.claim.activity#activityWeight',\n },\n },\n createdAt: {\n type: 'string',\n format: 'datetime',\n description:\n 'Client-declared timestamp when this record was originally created',\n },\n },\n },\n },\n },\n },\n OrgHypercertsClaimContribution: {\n lexicon: 1,\n id: 'org.hypercerts.claim.contribution',\n defs: {\n main: {\n type: 'record',\n description: \"A contribution made toward a hypercert's impact.\",\n key: 'tid',\n record: {\n type: 'object',\n required: ['contributors', 'createdAt'],\n properties: {\n role: {\n type: 'string',\n description: 'Role or title of the contributor(s).',\n maxLength: 100,\n },\n contributors: {\n type: 'array',\n description:\n 'List of the contributors (names, pseudonyms, or DIDs). If multiple contributors are stored in the same hypercertContribution, then they would have the exact same role.',\n items: {\n type: 'string',\n },\n },\n description: {\n type: 'string',\n description: 'What the contribution concretely achieved',\n maxLength: 2000,\n maxGraphemes: 500,\n },\n startDate: {\n type: 'string',\n format: 'datetime',\n description:\n 'When this contribution started. This should be a subset of the hypercert timeframe.',\n },\n endDate: {\n type: 'string',\n format: 'datetime',\n description:\n 'When this contribution finished. This should be a subset of the hypercert timeframe.',\n },\n createdAt: {\n type: 'string',\n format: 'datetime',\n description:\n 'Client-declared timestamp when this record was originally created',\n },\n },\n },\n },\n },\n },\n OrgHypercertsClaimEvaluation: {\n lexicon: 1,\n id: 'org.hypercerts.claim.evaluation',\n defs: {\n score: {\n type: 'object',\n description: 'Overall score for an evaluation on a numeric scale.',\n required: ['min', 'max', 'value'],\n properties: {\n min: {\n type: 'integer',\n description: 'Minimum value of the scale, e.g. 0 or 1.',\n },\n max: {\n type: 'integer',\n description: 'Maximum value of the scale, e.g. 5 or 10.',\n },\n value: {\n type: 'integer',\n description: 'Score within the inclusive range [min, max].',\n },\n },\n },\n main: {\n type: 'record',\n description:\n 'An evaluation of a hypercert record (e.g. an activity and its impact).',\n key: 'tid',\n record: {\n type: 'object',\n required: ['evaluators', 'summary', 'createdAt'],\n properties: {\n subject: {\n type: 'ref',\n ref: 'lex:com.atproto.repo.strongRef',\n description:\n 'A strong reference to what is being evaluated. (e.g activity, measurement, contribution, etc.)',\n },\n evaluators: {\n type: 'array',\n description: 'DIDs of the evaluators',\n items: {\n type: 'ref',\n ref: 'lex:app.certified.defs#did',\n },\n maxLength: 1000,\n },\n content: {\n type: 'array',\n description:\n 'Evaluation data (URIs or blobs) containing detailed reports or methodology',\n items: {\n type: 'union',\n refs: [\n 'lex:org.hypercerts.defs#uri',\n 'lex:org.hypercerts.defs#smallBlob',\n ],\n },\n maxLength: 100,\n },\n measurements: {\n type: 'array',\n description:\n 'Optional references to the measurements that contributed to this evaluation. The record(s) referenced must conform with the lexicon org.hypercerts.claim.measurement ',\n items: {\n type: 'ref',\n ref: 'lex:com.atproto.repo.strongRef',\n },\n maxLength: 100,\n },\n summary: {\n type: 'string',\n description: 'Brief evaluation summary',\n maxLength: 5000,\n maxGraphemes: 1000,\n },\n score: {\n type: 'ref',\n ref: 'lex:org.hypercerts.claim.evaluation#score',\n description:\n 'Optional overall score for this evaluation on a numeric scale.',\n },\n location: {\n type: 'ref',\n ref: 'lex:com.atproto.repo.strongRef',\n description:\n 'An optional reference for georeferenced evaluations. The record referenced must conform with the lexicon app.certified.location.',\n },\n createdAt: {\n type: 'string',\n format: 'datetime',\n description:\n 'Client-declared timestamp when this record was originally created',\n },\n },\n },\n },\n },\n },\n OrgHypercertsClaimEvidence: {\n lexicon: 1,\n id: 'org.hypercerts.claim.evidence',\n defs: {\n main: {\n type: 'record',\n description:\n 'A piece of evidence related to a hypercert record (e.g. an activity, project, claim, or evaluation). Evidence may support, clarify, or challenge the referenced subject.',\n key: 'tid',\n record: {\n type: 'object',\n required: ['content', 'title', 'createdAt'],\n properties: {\n subject: {\n type: 'ref',\n ref: 'lex:com.atproto.repo.strongRef',\n description:\n 'A strong reference to the record this evidence relates to (e.g. an activity, project, claim, or evaluation).',\n },\n content: {\n type: 'union',\n refs: [\n 'lex:org.hypercerts.defs#uri',\n 'lex:org.hypercerts.defs#smallBlob',\n ],\n description:\n 'A piece of evidence (URI or blob) related to the subject record; it may support, clarify, or challenge a hypercert claim.',\n },\n title: {\n type: 'string',\n maxLength: 256,\n description: 'Title to describe the nature of the evidence.',\n },\n shortDescription: {\n type: 'string',\n maxLength: 3000,\n maxGraphemes: 300,\n description:\n 'Short description explaining what this evidence shows.',\n },\n description: {\n type: 'string',\n description:\n 'Longer description describing the evidence in more detail.',\n maxLength: 30000,\n maxGraphemes: 3000,\n },\n relationType: {\n type: 'string',\n description: 'How this evidence relates to the subject.',\n knownValues: ['supports', 'challenges', 'clarifies'],\n },\n createdAt: {\n type: 'string',\n format: 'datetime',\n description:\n 'Client-declared timestamp when this record was originally created',\n },\n },\n },\n },\n },\n },\n OrgHypercertsClaimMeasurement: {\n lexicon: 1,\n id: 'org.hypercerts.claim.measurement',\n defs: {\n main: {\n type: 'record',\n description:\n 'Measurement data related to a hypercert record (e.g. an activity and its impact).',\n key: 'tid',\n record: {\n type: 'object',\n required: ['measurers', 'metric', 'value', 'createdAt'],\n properties: {\n subject: {\n type: 'ref',\n ref: 'lex:com.atproto.repo.strongRef',\n description:\n 'A strong reference to the record this measurement refers to (e.g. an activity, project, or claim).',\n },\n measurers: {\n type: 'array',\n description:\n 'DIDs of the entity (or entities) that measured this data',\n items: {\n type: 'ref',\n ref: 'lex:app.certified.defs#did',\n },\n maxLength: 100,\n },\n metric: {\n type: 'string',\n description: 'The metric being measured',\n maxLength: 500,\n },\n value: {\n type: 'string',\n description: 'The measured value',\n maxLength: 500,\n },\n methodType: {\n type: 'string',\n description: 'Short identifier for the measurement methodology',\n maxLength: 30,\n },\n methodURI: {\n type: 'string',\n format: 'uri',\n description:\n 'URI to methodology documentation, standard protocol, or measurement procedure',\n },\n evidenceURI: {\n type: 'array',\n description:\n 'URIs to related evidence or underlying data (e.g. org.hypercerts.claim.evidence records or raw datasets)',\n items: {\n type: 'string',\n format: 'uri',\n },\n maxLength: 50,\n },\n location: {\n type: 'ref',\n ref: 'lex:com.atproto.repo.strongRef',\n description:\n 'A strong reference to the location where the measurement was taken. The record referenced must conform with the lexicon app.certified.location',\n },\n createdAt: {\n type: 'string',\n format: 'datetime',\n description:\n 'Client-declared timestamp when this record was originally created',\n },\n },\n },\n },\n },\n },\n OrgHypercertsClaimProject: {\n lexicon: 1,\n id: 'org.hypercerts.claim.project',\n defs: {\n main: {\n type: 'record',\n description:\n 'A project that can include multiple activities, each of which may be linked to at most one project.',\n key: 'tid',\n record: {\n type: 'object',\n required: ['title', 'shortDescription', 'createdAt'],\n properties: {\n title: {\n type: 'string',\n description: 'Title of this project',\n maxLength: 800,\n maxGraphemes: 80,\n },\n shortDescription: {\n type: 'string',\n maxLength: 3000,\n maxGraphemes: 300,\n description:\n 'Short summary of this project, suitable for previews and list views.',\n },\n description: {\n type: 'ref',\n ref: 'lex:pub.leaflet.pages.linearDocument#main',\n description:\n 'Rich-text description of this project, represented as a Leaflet linear document.',\n },\n avatar: {\n type: 'blob',\n description:\n 'Primary avatar image representing this project across apps and views; typically a square logo or project identity image.',\n accept: ['image/png', 'image/jpeg'],\n maxSize: 1000000,\n },\n coverPhoto: {\n type: 'blob',\n description: 'The cover photo of this project.',\n accept: ['image/png', 'image/jpeg'],\n maxSize: 1000000,\n },\n activities: {\n type: 'array',\n description:\n 'Array of activities with their associated weights in this project',\n items: {\n type: 'ref',\n ref: 'lex:org.hypercerts.claim.activity#activityWeight',\n },\n },\n location: {\n type: 'ref',\n ref: 'lex:com.atproto.repo.strongRef',\n description:\n 'A strong reference to a location record describing where the work for this project took place. The referenced record must conform to the app.certified.location lexicon.',\n },\n createdAt: {\n type: 'string',\n format: 'datetime',\n description:\n 'Client-declared timestamp when this record was originally created',\n },\n },\n },\n },\n },\n },\n OrgHypercertsClaimRights: {\n lexicon: 1,\n id: 'org.hypercerts.claim.rights',\n defs: {\n main: {\n type: 'record',\n description:\n 'Describes the rights that a contributor and/or an owner has, such as whether the hypercert can be sold, transferred, and under what conditions.',\n key: 'tid',\n record: {\n type: 'object',\n required: [\n 'rightsName',\n 'rightsType',\n 'rightsDescription',\n 'createdAt',\n ],\n properties: {\n rightsName: {\n type: 'string',\n description: 'Full name of the rights',\n maxLength: 100,\n },\n rightsType: {\n type: 'string',\n description: 'Short rights identifier for easier search',\n maxLength: 10,\n },\n rightsDescription: {\n type: 'string',\n description: 'Description of the rights of this hypercert',\n },\n attachment: {\n type: 'union',\n refs: [\n 'lex:org.hypercerts.defs#uri',\n 'lex:org.hypercerts.defs#smallBlob',\n ],\n description:\n 'An attachment to define the rights further, e.g. a legal document.',\n },\n createdAt: {\n type: 'string',\n format: 'datetime',\n description:\n 'Client-declared timestamp when this record was originally created',\n },\n },\n },\n },\n },\n },\n OrgHypercertsDefs: {\n lexicon: 1,\n id: 'org.hypercerts.defs',\n defs: {\n uri: {\n type: 'object',\n required: ['uri'],\n description: 'Object containing a URI to external data',\n properties: {\n uri: {\n type: 'string',\n format: 'uri',\n maxGraphemes: 1024,\n description: 'URI to external data',\n },\n },\n },\n smallBlob: {\n type: 'object',\n required: ['blob'],\n description: 'Object containing a blob to external data',\n properties: {\n blob: {\n type: 'blob',\n accept: ['*/*'],\n maxSize: 10485760,\n description: 'Blob to external data (up to 10MB)',\n },\n },\n },\n largeBlob: {\n type: 'object',\n required: ['blob'],\n description: 'Object containing a blob to external data',\n properties: {\n blob: {\n type: 'blob',\n accept: ['*/*'],\n maxSize: 104857600,\n description: 'Blob to external data (up to 100MB)',\n },\n },\n },\n smallImage: {\n type: 'object',\n required: ['image'],\n description: 'Object containing a small image',\n properties: {\n image: {\n type: 'blob',\n accept: ['image/jpeg', 'image/jpg', 'image/png', 'image/webp'],\n maxSize: 5242880,\n description: 'Image (up to 5MB)',\n },\n },\n },\n largeImage: {\n type: 'object',\n required: ['image'],\n description: 'Object containing a large image',\n properties: {\n image: {\n type: 'blob',\n accept: ['image/jpeg', 'image/jpg', 'image/png', 'image/webp'],\n maxSize: 10485760,\n description: 'Image (up to 10MB)',\n },\n },\n },\n },\n },\n OrgHypercertsFundingReceipt: {\n lexicon: 1,\n id: 'org.hypercerts.funding.receipt',\n defs: {\n main: {\n type: 'record',\n description:\n 'Records a funding receipt for a payment from one user to another user. It may be recorded by the recipient, by the sender, or by a third party. The sender may remain anonymous.',\n key: 'tid',\n record: {\n type: 'object',\n required: ['from', 'to', 'amount', 'currency', 'createdAt'],\n properties: {\n from: {\n type: 'ref',\n ref: 'lex:app.certified.defs#did',\n description:\n 'DID of the sender who transferred the funds. Leave empty if sender wants to stay anonymous.',\n },\n to: {\n type: 'string',\n description:\n 'The recipient of the funds. Can be identified by DID or a clear-text name.',\n },\n amount: {\n type: 'string',\n description: 'Amount of funding received.',\n },\n currency: {\n type: 'string',\n description: 'Currency of the payment (e.g. EUR, USD, ETH).',\n },\n paymentRail: {\n type: 'string',\n description:\n 'How the funds were transferred (e.g. bank_transfer, credit_card, onchain, cash, check, payment_processor).',\n },\n paymentNetwork: {\n type: 'string',\n description:\n 'Optional network within the payment rail (e.g. arbitrum, ethereum, sepa, visa, paypal).',\n },\n transactionId: {\n type: 'string',\n description:\n 'Identifier of the underlying payment transaction (e.g. bank reference, onchain transaction hash, or processor-specific ID). Use paymentNetwork to specify the network where applicable.',\n },\n for: {\n type: 'string',\n format: 'at-uri',\n description:\n 'Optional reference to the activity, project, or organization this funding relates to.',\n },\n notes: {\n type: 'string',\n description:\n 'Optional notes or additional context for this funding receipt.',\n maxLength: 500,\n },\n occurredAt: {\n type: 'string',\n format: 'datetime',\n description: 'Timestamp when the payment occurred.',\n },\n createdAt: {\n type: 'string',\n format: 'datetime',\n description:\n 'Client-declared timestamp when this receipt record was created.',\n },\n },\n },\n },\n },\n },\n} as const satisfies Record<string, LexiconDoc>\nexport const schemas = Object.values(schemaDict) satisfies LexiconDoc[]\nexport const lexicons: Lexicons = new Lexicons(schemas)\n\nexport function validate<T extends { $type: string }>(\n v: unknown,\n id: string,\n hash: string,\n requiredType: true,\n): ValidationResult<T>\nexport function validate<T extends { $type?: string }>(\n v: unknown,\n id: string,\n hash: string,\n requiredType?: false,\n): ValidationResult<T>\nexport function validate(\n v: unknown,\n id: string,\n hash: string,\n requiredType?: boolean,\n): ValidationResult {\n return (requiredType ? is$typed : maybe$typed)(v, id, hash)\n ? lexicons.validate(`${id}#${hash}`, v)\n : {\n success: false,\n error: new ValidationError(\n `Must be an object with \"${hash === 'main' ? id : `${id}#${hash}`}\" $type property`,\n ),\n }\n}\n\nexport const ids = {\n AppCertifiedBadgeAward: 'app.certified.badge.award',\n AppCertifiedBadgeDefinition: 'app.certified.badge.definition',\n AppCertifiedBadgeResponse: 'app.certified.badge.response',\n AppCertifiedDefs: 'app.certified.defs',\n AppCertifiedLocation: 'app.certified.location',\n ComAtprotoRepoStrongRef: 'com.atproto.repo.strongRef',\n OrgHypercertsClaimActivity: 'org.hypercerts.claim.activity',\n OrgHypercertsClaimCollection: 'org.hypercerts.claim.collection',\n OrgHypercertsClaimContribution: 'org.hypercerts.claim.contribution',\n OrgHypercertsClaimEvaluation: 'org.hypercerts.claim.evaluation',\n OrgHypercertsClaimEvidence: 'org.hypercerts.claim.evidence',\n OrgHypercertsClaimMeasurement: 'org.hypercerts.claim.measurement',\n OrgHypercertsClaimProject: 'org.hypercerts.claim.project',\n OrgHypercertsClaimRights: 'org.hypercerts.claim.rights',\n OrgHypercertsDefs: 'org.hypercerts.defs',\n OrgHypercertsFundingReceipt: 'org.hypercerts.funding.receipt',\n} as const\n","/**\n * GENERATED CODE - DO NOT MODIFY\n */\nimport { type ValidationResult, BlobRef } from '@atproto/lexicon'\nimport { CID } from 'multiformats/cid'\nimport { validate as _validate } from '../../../../lexicons'\nimport {\n type $Typed,\n is$typed as _is$typed,\n type OmitKey,\n} from '../../../../util'\nimport type * as AppCertifiedBadgeDefinition from './definition.js'\nimport type * as AppCertifiedDefs from '../defs.js'\nimport type * as ComAtprotoRepoStrongRef from '../../../com/atproto/repo/strongRef.js'\n\nconst is$typed = _is$typed,\n validate = _validate\nconst id = 'app.certified.badge.award'\n\nexport interface Main {\n $type: 'app.certified.badge.award'\n badge: AppCertifiedBadgeDefinition.Main\n subject:\n | $Typed<AppCertifiedDefs.Did>\n | $Typed<ComAtprotoRepoStrongRef.Main>\n | { $type: string }\n /** Optional statement explaining the reason for this badge award. */\n note?: string\n /** Client-declared timestamp when this record was originally created */\n createdAt: string\n [k: string]: unknown\n}\n\nconst hashMain = 'main'\n\nexport function isMain<V>(v: V) {\n return is$typed(v, id, hashMain)\n}\n\nexport function validateMain<V>(v: V) {\n return validate<Main & V>(v, id, hashMain, true)\n}\n\nexport {\n type Main as Record,\n isMain as isRecord,\n validateMain as validateRecord,\n}\n","/**\n * GENERATED CODE - DO NOT MODIFY\n */\nimport { type ValidationResult, BlobRef } from '@atproto/lexicon'\nimport { CID } from 'multiformats/cid'\nimport { validate as _validate } from '../../../../lexicons'\nimport {\n type $Typed,\n is$typed as _is$typed,\n type OmitKey,\n} from '../../../../util'\nimport type * as AppCertifiedDefs from '../defs.js'\n\nconst is$typed = _is$typed,\n validate = _validate\nconst id = 'app.certified.badge.definition'\n\nexport interface Main {\n $type: 'app.certified.badge.definition'\n /** Category of the badge (e.g. endorsement, participation, affiliation). */\n badgeType: string\n /** Human-readable title of the badge. */\n title: string\n /** Icon representing the badge, stored as a blob for compact visual display. */\n icon: BlobRef\n /** Optional short statement describing what the badge represents. */\n description?: string\n /** Optional allowlist of DIDs allowed to issue this badge. If omitted, anyone may issue it. */\n allowedIssuers?: AppCertifiedDefs.Did[]\n /** Client-declared timestamp when this record was originally created */\n createdAt: string\n [k: string]: unknown\n}\n\nconst hashMain = 'main'\n\nexport function isMain<V>(v: V) {\n return is$typed(v, id, hashMain)\n}\n\nexport function validateMain<V>(v: V) {\n return validate<Main & V>(v, id, hashMain, true)\n}\n\nexport {\n type Main as Record,\n isMain as isRecord,\n validateMain as validateRecord,\n}\n","/**\n * GENERATED CODE - DO NOT MODIFY\n */\nimport { type ValidationResult, BlobRef } from '@atproto/lexicon'\nimport { CID } from 'multiformats/cid'\nimport { validate as _validate } from '../../../../lexicons'\nimport {\n type $Typed,\n is$typed as _is$typed,\n type OmitKey,\n} from '../../../../util'\nimport type * as AppCertifiedBadgeAward from './award.js'\n\nconst is$typed = _is$typed,\n validate = _validate\nconst id = 'app.certified.badge.response'\n\nexport interface Main {\n $type: 'app.certified.badge.response'\n badgeAward: AppCertifiedBadgeAward.Main\n /** The recipient’s response for the badge (accepted or rejected). */\n response: 'accepted' | 'rejected'\n /** Optional relative weight for accepted badges, assigned by the recipient. */\n weight?: string\n /** Client-declared timestamp when this record was originally created */\n createdAt: string\n [k: string]: unknown\n}\n\nconst hashMain = 'main'\n\nexport function isMain<V>(v: V) {\n return is$typed(v, id, hashMain)\n}\n\nexport function validateMain<V>(v: V) {\n return validate<Main & V>(v, id, hashMain, true)\n}\n\nexport {\n type Main as Record,\n isMain as isRecord,\n validateMain as validateRecord,\n}\n","/**\n * GENERATED CODE - DO NOT MODIFY\n */\nimport { type ValidationResult, BlobRef } from '@atproto/lexicon'\nimport { CID } from 'multiformats/cid'\nimport { validate as _validate } from '../../../lexicons'\nimport { type $Typed, is$typed as _is$typed, type OmitKey } from '../../../util'\nimport type * as OrgHypercertsDefs from '../../org/hypercerts/defs.js'\n\nconst is$typed = _is$typed,\n validate = _validate\nconst id = 'app.certified.location'\n\nexport interface Main {\n $type: 'app.certified.location'\n /** The version of the Location Protocol */\n lpVersion: string\n /** The Spatial Reference System URI (e.g., http://www.opengis.net/def/crs/OGC/1.3/CRS84) that defines the coordinate system. */\n srs: string\n /** An identifier for the format of the location data (e.g., coordinate-decimal, geojson-point) */\n locationType: 'coordinate-decimal' | 'geojson-point' | (string & {})\n location:\n | $Typed<OrgHypercertsDefs.Uri>\n | $Typed<OrgHypercertsDefs.SmallBlob>\n | { $type: string }\n /** Optional name for this location */\n name?: string\n /** Optional description for this location */\n description?: string\n /** Client-declared timestamp when this record was originally created */\n createdAt: string\n [k: string]: unknown\n}\n\nconst hashMain = 'main'\n\nexport function isMain<V>(v: V) {\n return is$typed(v, id, hashMain)\n}\n\nexport function validateMain<V>(v: V) {\n return validate<Main & V>(v, id, hashMain, true)\n}\n\nexport {\n type Main as Record,\n isMain as isRecord,\n validateMain as validateRecord,\n}\n","/**\n * GENERATED CODE - DO NOT MODIFY\n */\nimport { type ValidationResult, BlobRef } from '@atproto/lexicon'\nimport { CID } from 'multiformats/cid'\nimport { validate as _validate } from '../../../../lexicons'\nimport {\n type $Typed,\n is$typed as _is$typed,\n type OmitKey,\n} from '../../../../util'\n\nconst is$typed = _is$typed,\n validate = _validate\nconst id = 'com.atproto.repo.strongRef'\n\nexport interface Main {\n $type?: 'com.atproto.repo.strongRef'\n uri: string\n cid: string\n}\n\nconst hashMain = 'main'\n\nexport function isMain<V>(v: V) {\n return is$typed(v, id, hashMain)\n}\n\nexport function validateMain<V>(v: V) {\n return validate<Main & V>(v, id, hashMain)\n}\n","/**\n * GENERATED CODE - DO NOT MODIFY\n */\nimport { type ValidationResult, BlobRef } from '@atproto/lexicon'\nimport { CID } from 'multiformats/cid'\nimport { validate as _validate } from '../../../../lexicons'\nimport {\n type $Typed,\n is$typed as _is$typed,\n type OmitKey,\n} from '../../../../util'\nimport type * as OrgHypercertsDefs from '../defs.js'\nimport type * as ComAtprotoRepoStrongRef from '../../../com/atproto/repo/strongRef.js'\n\nconst is$typed = _is$typed,\n validate = _validate\nconst id = 'org.hypercerts.claim.activity'\n\nexport interface Main {\n $type: 'org.hypercerts.claim.activity'\n /** Title of the hypercert. */\n title: string\n /** Short blurb of the impact work done. */\n shortDescription: string\n /** Optional longer description of the impact work done. */\n description?: string\n image?:\n | $Typed<OrgHypercertsDefs.Uri>\n | $Typed<OrgHypercertsDefs.SmallImage>\n | { $type: string }\n workScope?: WorkScope\n /** When the work began */\n startDate: string\n /** When the work ended */\n endDate: string\n /** A strong reference to the contributions done to create the impact in the hypercerts. The record referenced must conform with the lexicon org.hypercerts.claim.contribution. */\n contributions?: ComAtprotoRepoStrongRef.Main[]\n rights?: ComAtprotoRepoStrongRef.Main\n location?: ComAtprotoRepoStrongRef.Main\n /** A reference (AT-URI) to the project record that this activity is part of. The record referenced must conform with the lexicon org.hypercerts.claim.project. This activity must also be referenced by the project, establishing a bidirectional link. */\n project?: string\n /** Client-declared timestamp when this record was originally created */\n createdAt: string\n [k: string]: unknown\n}\n\nconst hashMain = 'main'\n\nexport function isMain<V>(v: V) {\n return is$typed(v, id, hashMain)\n}\n\nexport function validateMain<V>(v: V) {\n return validate<Main & V>(v, id, hashMain, true)\n}\n\nexport {\n type Main as Record,\n isMain as isRecord,\n validateMain as validateRecord,\n}\n\n/** Logical scope of the work using label-based conditions. All labels in `withinAllOf` must apply; at least one label in `withinAnyOf` must apply if provided; no label in `withinNoneOf` may apply. */\nexport interface WorkScope {\n $type?: 'org.hypercerts.claim.activity#workScope'\n /** Labels that MUST all hold for the scope to apply. */\n withinAllOf?: string[]\n /** Labels of which AT LEAST ONE must hold (optional). If omitted or empty, imposes no additional condition. */\n withinAnyOf?: string[]\n /** Labels that MUST NOT hold for the scope to apply. */\n withinNoneOf?: string[]\n}\n\nconst hashWorkScope = 'workScope'\n\nexport function isWorkScope<V>(v: V) {\n return is$typed(v, id, hashWorkScope)\n}\n\nexport function validateWorkScope<V>(v: V) {\n return validate<WorkScope & V>(v, id, hashWorkScope)\n}\n\nexport interface ActivityWeight {\n $type?: 'org.hypercerts.claim.activity#activityWeight'\n activity: ComAtprotoRepoStrongRef.Main\n /** The relative weight/importance of this hypercert activity (stored as a string to avoid float precision issues). Weights can be any positive numeric values and do not need to sum to a specific total; normalization can be performed by the consuming application as needed. */\n weight: string\n}\n\nconst hashActivityWeight = 'activityWeight'\n\nexport function isActivityWeight<V>(v: V) {\n return is$typed(v, id, hashActivityWeight)\n}\n\nexport function validateActivityWeight<V>(v: V) {\n return validate<ActivityWeight & V>(v, id, hashActivityWeight)\n}\n","/**\n * GENERATED CODE - DO NOT MODIFY\n */\nimport { type ValidationResult, BlobRef } from '@atproto/lexicon'\nimport { CID } from 'multiformats/cid'\nimport { validate as _validate } from '../../../../lexicons'\nimport {\n type $Typed,\n is$typed as _is$typed,\n type OmitKey,\n} from '../../../../util'\nimport type * as OrgHypercertsClaimActivity from './activity.js'\n\nconst is$typed = _is$typed,\n validate = _validate\nconst id = 'org.hypercerts.claim.collection'\n\nexport interface Main {\n $type: 'org.hypercerts.claim.collection'\n /** The title of this collection */\n title: string\n /** A short description of this collection */\n shortDescription?: string\n /** Primary avatar image representing this collection across apps and views; typically a square image. */\n avatar?: BlobRef\n /** The cover photo of this collection. */\n coverPhoto?: BlobRef\n /** Array of activities with their associated weights in this collection */\n activities: OrgHypercertsClaimActivity.ActivityWeight[]\n /** Client-declared timestamp when this record was originally created */\n createdAt: string\n [k: string]: unknown\n}\n\nconst hashMain = 'main'\n\nexport function isMain<V>(v: V) {\n return is$typed(v, id, hashMain)\n}\n\nexport function validateMain<V>(v: V) {\n return validate<Main & V>(v, id, hashMain, true)\n}\n\nexport {\n type Main as Record,\n isMain as isRecord,\n validateMain as validateRecord,\n}\n","/**\n * GENERATED CODE - DO NOT MODIFY\n */\nimport { type ValidationResult, BlobRef } from '@atproto/lexicon'\nimport { CID } from 'multiformats/cid'\nimport { validate as _validate } from '../../../../lexicons'\nimport {\n type $Typed,\n is$typed as _is$typed,\n type OmitKey,\n} from '../../../../util'\n\nconst is$typed = _is$typed,\n validate = _validate\nconst id = 'org.hypercerts.claim.contribution'\n\nexport interface Main {\n $type: 'org.hypercerts.claim.contribution'\n /** Role or title of the contributor(s). */\n role?: string\n /** List of the contributors (names, pseudonyms, or DIDs). If multiple contributors are stored in the same hypercertContribution, then they would have the exact same role. */\n contributors: string[]\n /** What the contribution concretely achieved */\n description?: string\n /** When this contribution started. This should be a subset of the hypercert timeframe. */\n startDate?: string\n /** When this contribution finished. This should be a subset of the hypercert timeframe. */\n endDate?: string\n /** Client-declared timestamp when this record was originally created */\n createdAt: string\n [k: string]: unknown\n}\n\nconst hashMain = 'main'\n\nexport function isMain<V>(v: V) {\n return is$typed(v, id, hashMain)\n}\n\nexport function validateMain<V>(v: V) {\n return validate<Main & V>(v, id, hashMain, true)\n}\n\nexport {\n type Main as Record,\n isMain as isRecord,\n validateMain as validateRecord,\n}\n","/**\n * GENERATED CODE - DO NOT MODIFY\n */\nimport { type ValidationResult, BlobRef } from '@atproto/lexicon'\nimport { CID } from 'multiformats/cid'\nimport { validate as _validate } from '../../../../lexicons'\nimport {\n type $Typed,\n is$typed as _is$typed,\n type OmitKey,\n} from '../../../../util'\nimport type * as ComAtprotoRepoStrongRef from '../../../com/atproto/repo/strongRef.js'\nimport type * as AppCertifiedDefs from '../../../app/certified/defs.js'\nimport type * as OrgHypercertsDefs from '../defs.js'\n\nconst is$typed = _is$typed,\n validate = _validate\nconst id = 'org.hypercerts.claim.evaluation'\n\n/** Overall score for an evaluation on a numeric scale. */\nexport interface Score {\n $type?: 'org.hypercerts.claim.evaluation#score'\n /** Minimum value of the scale, e.g. 0 or 1. */\n min: number\n /** Maximum value of the scale, e.g. 5 or 10. */\n max: number\n /** Score within the inclusive range [min, max]. */\n value: number\n}\n\nconst hashScore = 'score'\n\nexport function isScore<V>(v: V) {\n return is$typed(v, id, hashScore)\n}\n\nexport function validateScore<V>(v: V) {\n return validate<Score & V>(v, id, hashScore)\n}\n\nexport interface Main {\n $type: 'org.hypercerts.claim.evaluation'\n subject?: ComAtprotoRepoStrongRef.Main\n /** DIDs of the evaluators */\n evaluators: AppCertifiedDefs.Did[]\n /** Evaluation data (URIs or blobs) containing detailed reports or methodology */\n content?: (\n | $Typed<OrgHypercertsDefs.Uri>\n | $Typed<OrgHypercertsDefs.SmallBlob>\n | { $type: string }\n )[]\n /** Optional references to the measurements that contributed to this evaluation. The record(s) referenced must conform with the lexicon org.hypercerts.claim.measurement */\n measurements?: ComAtprotoRepoStrongRef.Main[]\n /** Brief evaluation summary */\n summary: string\n score?: Score\n location?: ComAtprotoRepoStrongRef.Main\n /** Client-declared timestamp when this record was originally created */\n createdAt: string\n [k: string]: unknown\n}\n\nconst hashMain = 'main'\n\nexport function isMain<V>(v: V) {\n return is$typed(v, id, hashMain)\n}\n\nexport function validateMain<V>(v: V) {\n return validate<Main & V>(v, id, hashMain, true)\n}\n\nexport {\n type Main as Record,\n isMain as isRecord,\n validateMain as validateRecord,\n}\n","/**\n * GENERATED CODE - DO NOT MODIFY\n */\nimport { type ValidationResult, BlobRef } from '@atproto/lexicon'\nimport { CID } from 'multiformats/cid'\nimport { validate as _validate } from '../../../../lexicons'\nimport {\n type $Typed,\n is$typed as _is$typed,\n type OmitKey,\n} from '../../../../util'\nimport type * as ComAtprotoRepoStrongRef from '../../../com/atproto/repo/strongRef.js'\nimport type * as OrgHypercertsDefs from '../defs.js'\n\nconst is$typed = _is$typed,\n validate = _validate\nconst id = 'org.hypercerts.claim.evidence'\n\nexport interface Main {\n $type: 'org.hypercerts.claim.evidence'\n subject?: ComAtprotoRepoStrongRef.Main\n content:\n | $Typed<OrgHypercertsDefs.Uri>\n | $Typed<OrgHypercertsDefs.SmallBlob>\n | { $type: string }\n /** Title to describe the nature of the evidence. */\n title: string\n /** Short description explaining what this evidence shows. */\n shortDescription?: string\n /** Longer description describing the evidence in more detail. */\n description?: string\n /** How this evidence relates to the subject. */\n relationType?: 'supports' | 'challenges' | 'clarifies' | (string & {})\n /** Client-declared timestamp when this record was originally created */\n createdAt: string\n [k: string]: unknown\n}\n\nconst hashMain = 'main'\n\nexport function isMain<V>(v: V) {\n return is$typed(v, id, hashMain)\n}\n\nexport function validateMain<V>(v: V) {\n return validate<Main & V>(v, id, hashMain, true)\n}\n\nexport {\n type Main as Record,\n isMain as isRecord,\n validateMain as validateRecord,\n}\n","/**\n * GENERATED CODE - DO NOT MODIFY\n */\nimport { type ValidationResult, BlobRef } from '@atproto/lexicon'\nimport { CID } from 'multiformats/cid'\nimport { validate as _validate } from '../../../../lexicons'\nimport {\n type $Typed,\n is$typed as _is$typed,\n type OmitKey,\n} from '../../../../util'\nimport type * as ComAtprotoRepoStrongRef from '../../../com/atproto/repo/strongRef.js'\nimport type * as AppCertifiedDefs from '../../../app/certified/defs.js'\n\nconst is$typed = _is$typed,\n validate = _validate\nconst id = 'org.hypercerts.claim.measurement'\n\nexport interface Main {\n $type: 'org.hypercerts.claim.measurement'\n subject?: ComAtprotoRepoStrongRef.Main\n /** DIDs of the entity (or entities) that measured this data */\n measurers: AppCertifiedDefs.Did[]\n /** The metric being measured */\n metric: string\n /** The measured value */\n value: string\n /** Short identifier for the measurement methodology */\n methodType?: string\n /** URI to methodology documentation, standard protocol, or measurement procedure */\n methodURI?: string\n /** URIs to related evidence or underlying data (e.g. org.hypercerts.claim.evidence records or raw datasets) */\n evidenceURI?: string[]\n location?: ComAtprotoRepoStrongRef.Main\n /** Client-declared timestamp when this record was originally created */\n createdAt: string\n [k: string]: unknown\n}\n\nconst hashMain = 'main'\n\nexport function isMain<V>(v: V) {\n return is$typed(v, id, hashMain)\n}\n\nexport function validateMain<V>(v: V) {\n return validate<Main & V>(v, id, hashMain, true)\n}\n\nexport {\n type Main as Record,\n isMain as isRecord,\n validateMain as validateRecord,\n}\n","/**\n * GENERATED CODE - DO NOT MODIFY\n */\nimport { type ValidationResult, BlobRef } from '@atproto/lexicon'\nimport { CID } from 'multiformats/cid'\nimport { validate as _validate } from '../../../../lexicons'\nimport {\n type $Typed,\n is$typed as _is$typed,\n type OmitKey,\n} from '../../../../util'\nimport type * as PubLeafletPagesLinearDocument from '../../../pub/leaflet/pages/linearDocument.js'\nimport type * as OrgHypercertsClaimActivity from './activity.js'\nimport type * as ComAtprotoRepoStrongRef from '../../../com/atproto/repo/strongRef.js'\n\nconst is$typed = _is$typed,\n validate = _validate\nconst id = 'org.hypercerts.claim.project'\n\nexport interface Main {\n $type: 'org.hypercerts.claim.project'\n /** Title of this project */\n title: string\n /** Short summary of this project, suitable for previews and list views. */\n shortDescription: string\n description?: PubLeafletPagesLinearDocument.Main\n /** Primary avatar image representing this project across apps and views; typically a square logo or project identity image. */\n avatar?: BlobRef\n /** The cover photo of this project. */\n coverPhoto?: BlobRef\n /** Array of activities with their associated weights in this project */\n activities?: OrgHypercertsClaimActivity.ActivityWeight[]\n location?: ComAtprotoRepoStrongRef.Main\n /** Client-declared timestamp when this record was originally created */\n createdAt: string\n [k: string]: unknown\n}\n\nconst hashMain = 'main'\n\nexport function isMain<V>(v: V) {\n return is$typed(v, id, hashMain)\n}\n\nexport function validateMain<V>(v: V) {\n return validate<Main & V>(v, id, hashMain, true)\n}\n\nexport {\n type Main as Record,\n isMain as isRecord,\n validateMain as validateRecord,\n}\n","/**\n * GENERATED CODE - DO NOT MODIFY\n */\nimport { type ValidationResult, BlobRef } from '@atproto/lexicon'\nimport { CID } from 'multiformats/cid'\nimport { validate as _validate } from '../../../../lexicons'\nimport {\n type $Typed,\n is$typed as _is$typed,\n type OmitKey,\n} from '../../../../util'\nimport type * as OrgHypercertsDefs from '../defs.js'\n\nconst is$typed = _is$typed,\n validate = _validate\nconst id = 'org.hypercerts.claim.rights'\n\nexport interface Main {\n $type: 'org.hypercerts.claim.rights'\n /** Full name of the rights */\n rightsName: string\n /** Short rights identifier for easier search */\n rightsType: string\n /** Description of the rights of this hypercert */\n rightsDescription: string\n attachment?:\n | $Typed<OrgHypercertsDefs.Uri>\n | $Typed<OrgHypercertsDefs.SmallBlob>\n | { $type: string }\n /** Client-declared timestamp when this record was originally created */\n createdAt: string\n [k: string]: unknown\n}\n\nconst hashMain = 'main'\n\nexport function isMain<V>(v: V) {\n return is$typed(v, id, hashMain)\n}\n\nexport function validateMain<V>(v: V) {\n return validate<Main & V>(v, id, hashMain, true)\n}\n\nexport {\n type Main as Record,\n isMain as isRecord,\n validateMain as validateRecord,\n}\n","/**\n * GENERATED CODE - DO NOT MODIFY\n */\nimport { type ValidationResult, BlobRef } from '@atproto/lexicon'\nimport { CID } from 'multiformats/cid'\nimport { validate as _validate } from '../../../lexicons'\nimport { type $Typed, is$typed as _is$typed, type OmitKey } from '../../../util'\n\nconst is$typed = _is$typed,\n validate = _validate\nconst id = 'org.hypercerts.defs'\n\n/** Object containing a URI to external data */\nexport interface Uri {\n $type?: 'org.hypercerts.defs#uri'\n /** URI to external data */\n uri: string\n}\n\nconst hashUri = 'uri'\n\nexport function isUri<V>(v: V) {\n return is$typed(v, id, hashUri)\n}\n\nexport function validateUri<V>(v: V) {\n return validate<Uri & V>(v, id, hashUri)\n}\n\n/** Object containing a blob to external data */\nexport interface SmallBlob {\n $type?: 'org.hypercerts.defs#smallBlob'\n /** Blob to external data (up to 10MB) */\n blob: BlobRef\n}\n\nconst hashSmallBlob = 'smallBlob'\n\nexport function isSmallBlob<V>(v: V) {\n return is$typed(v, id, hashSmallBlob)\n}\n\nexport function validateSmallBlob<V>(v: V) {\n return validate<SmallBlob & V>(v, id, hashSmallBlob)\n}\n\n/** Object containing a blob to external data */\nexport interface LargeBlob {\n $type?: 'org.hypercerts.defs#largeBlob'\n /** Blob to external data (up to 100MB) */\n blob: BlobRef\n}\n\nconst hashLargeBlob = 'largeBlob'\n\nexport function isLargeBlob<V>(v: V) {\n return is$typed(v, id, hashLargeBlob)\n}\n\nexport function validateLargeBlob<V>(v: V) {\n return validate<LargeBlob & V>(v, id, hashLargeBlob)\n}\n\n/** Object containing a small image */\nexport interface SmallImage {\n $type?: 'org.hypercerts.defs#smallImage'\n /** Image (up to 5MB) */\n image: BlobRef\n}\n\nconst hashSmallImage = 'smallImage'\n\nexport function isSmallImage<V>(v: V) {\n return is$typed(v, id, hashSmallImage)\n}\n\nexport function validateSmallImage<V>(v: V) {\n return validate<SmallImage & V>(v, id, hashSmallImage)\n}\n\n/** Object containing a large image */\nexport interface LargeImage {\n $type?: 'org.hypercerts.defs#largeImage'\n /** Image (up to 10MB) */\n image: BlobRef\n}\n\nconst hashLargeImage = 'largeImage'\n\nexport function isLargeImage<V>(v: V) {\n return is$typed(v, id, hashLargeImage)\n}\n\nexport function validateLargeImage<V>(v: V) {\n return validate<LargeImage & V>(v, id, hashLargeImage)\n}\n","/**\n * GENERATED CODE - DO NOT MODIFY\n */\nimport { type ValidationResult, BlobRef } from '@atproto/lexicon'\nimport { CID } from 'multiformats/cid'\nimport { validate as _validate } from '../../../../lexicons'\nimport {\n type $Typed,\n is$typed as _is$typed,\n type OmitKey,\n} from '../../../../util'\nimport type * as AppCertifiedDefs from '../../../app/certified/defs.js'\n\nconst is$typed = _is$typed,\n validate = _validate\nconst id = 'org.hypercerts.funding.receipt'\n\nexport interface Main {\n $type: 'org.hypercerts.funding.receipt'\n from: AppCertifiedDefs.Did\n /** The recipient of the funds. Can be identified by DID or a clear-text name. */\n to: string\n /** Amount of funding received. */\n amount: string\n /** Currency of the payment (e.g. EUR, USD, ETH). */\n currency: string\n /** How the funds were transferred (e.g. bank_transfer, credit_card, onchain, cash, check, payment_processor). */\n paymentRail?: string\n /** Optional network within the payment rail (e.g. arbitrum, ethereum, sepa, visa, paypal). */\n paymentNetwork?: string\n /** Identifier of the underlying payment transaction (e.g. bank reference, onchain transaction hash, or processor-specific ID). Use paymentNetwork to specify the network where applicable. */\n transactionId?: string\n /** Optional reference to the activity, project, or organization this funding relates to. */\n for?: string\n /** Optional notes or additional context for this funding receipt. */\n notes?: string\n /** Timestamp when the payment occurred. */\n occurredAt?: string\n /** Client-declared timestamp when this receipt record was created. */\n createdAt: string\n [k: string]: unknown\n}\n\nconst hashMain = 'main'\n\nexport function isMain<V>(v: V) {\n return is$typed(v, id, hashMain)\n}\n\nexport function validateMain<V>(v: V) {\n return validate<Main & V>(v, id, hashMain, true)\n}\n\nexport {\n type Main as Record,\n isMain as isRecord,\n validateMain as validateRecord,\n}\n","/**\n * @file Auto-generated exports for hypercert lexicons\n *\n * ⚠️ DO NOT EDIT THIS FILE MANUALLY ⚠️\n *\n * This file is automatically generated by scripts/generate-exports.js\n * Generated: 2026-01-04T01:12:12.866Z\n *\n * To regenerate this file, run:\n * npm run gen-api\n * or:\n * npm run gen-index\n *\n * ---\n *\n * Hypercert lexicon definitions for AT Protocol.\n *\n * This module exports the lexicon documents, collection names,\n * and generated TypeScript types for all hypercert-related record types.\n *\n * @packageDocumentation\n */\n\nimport { lexicons } from \"./lexicons.js\";\nimport type { LexiconDoc } from \"@atproto/lexicon\";\n\nimport BADGE_AWARD_LEXICON_JSON from \"../lexicons/app/certified/badge/award.json\";\nimport BADGE_DEFINITION_LEXICON_JSON from \"../lexicons/app/certified/badge/definition.json\";\nimport BADGE_RESPONSE_LEXICON_JSON from \"../lexicons/app/certified/badge/response.json\";\nimport CERTIFIED_DEFS_LEXICON_JSON from \"../lexicons/app/certified/defs.json\";\nimport LOCATION_LEXICON_JSON from \"../lexicons/app/certified/location.json\";\nimport STRONGREF_LEXICON_JSON from \"../lexicons/com/atproto/repo/strongRef.json\";\nimport ACTIVITY_LEXICON_JSON from \"../lexicons/org/hypercerts/claim/activity.json\";\nimport COLLECTION_LEXICON_JSON from \"../lexicons/org/hypercerts/claim/collection.json\";\nimport CONTRIBUTION_LEXICON_JSON from \"../lexicons/org/hypercerts/claim/contribution.json\";\nimport EVALUATION_LEXICON_JSON from \"../lexicons/org/hypercerts/claim/evaluation.json\";\nimport EVIDENCE_LEXICON_JSON from \"../lexicons/org/hypercerts/claim/evidence.json\";\nimport MEASUREMENT_LEXICON_JSON from \"../lexicons/org/hypercerts/claim/measurement.json\";\nimport PROJECT_LEXICON_JSON from \"../lexicons/org/hypercerts/claim/project.json\";\nimport RIGHTS_LEXICON_JSON from \"../lexicons/org/hypercerts/claim/rights.json\";\nimport HYPERCERTS_DEFS_LEXICON_JSON from \"../lexicons/org/hypercerts/defs.json\";\nimport FUNDING_RECEIPT_LEXICON_JSON from \"../lexicons/org/hypercerts/funding/receipt.json\";\n\n// Re-export individual lexicon JSON objects for direct access\nexport {\n BADGE_AWARD_LEXICON_JSON,\n BADGE_DEFINITION_LEXICON_JSON,\n BADGE_RESPONSE_LEXICON_JSON,\n CERTIFIED_DEFS_LEXICON_JSON,\n LOCATION_LEXICON_JSON,\n STRONGREF_LEXICON_JSON,\n ACTIVITY_LEXICON_JSON,\n COLLECTION_LEXICON_JSON,\n CONTRIBUTION_LEXICON_JSON,\n EVALUATION_LEXICON_JSON,\n EVIDENCE_LEXICON_JSON,\n MEASUREMENT_LEXICON_JSON,\n PROJECT_LEXICON_JSON,\n RIGHTS_LEXICON_JSON,\n HYPERCERTS_DEFS_LEXICON_JSON,\n FUNDING_RECEIPT_LEXICON_JSON,\n};\n\n// Re-export lexicon schemas, validation, and IDs\nexport {\n schemas as HYPERCERTS_SCHEMAS,\n schemaDict as HYPERCERTS_SCHEMA_DICT,\n lexicons,\n validate,\n ids as HYPERCERTS_NSIDS_BY_TYPE, // NSID constants mapped to type namespaces\n} from \"./lexicons.js\";\n\n// Individual NSID constants\nexport const BADGE_AWARD_NSID = \"app.certified.badge.award\" as const;\nexport const BADGE_DEFINITION_NSID = \"app.certified.badge.definition\" as const;\nexport const BADGE_RESPONSE_NSID = \"app.certified.badge.response\" as const;\nexport const CERTIFIED_DEFS_NSID = \"app.certified.defs\" as const;\nexport const LOCATION_NSID = \"app.certified.location\" as const;\nexport const STRONGREF_NSID = \"com.atproto.repo.strongRef\" as const;\nexport const ACTIVITY_NSID = \"org.hypercerts.claim.activity\" as const;\nexport const COLLECTION_NSID = \"org.hypercerts.claim.collection\" as const;\nexport const CONTRIBUTION_NSID = \"org.hypercerts.claim.contribution\" as const;\nexport const EVALUATION_NSID = \"org.hypercerts.claim.evaluation\" as const;\nexport const EVIDENCE_NSID = \"org.hypercerts.claim.evidence\" as const;\nexport const MEASUREMENT_NSID = \"org.hypercerts.claim.measurement\" as const;\nexport const PROJECT_NSID = \"org.hypercerts.claim.project\" as const;\nexport const RIGHTS_NSID = \"org.hypercerts.claim.rights\" as const;\nexport const HYPERCERTS_DEFS_NSID = \"org.hypercerts.defs\" as const;\nexport const FUNDING_RECEIPT_NSID = \"org.hypercerts.funding.receipt\" as const;\n\n/**\n * Collection NSIDs organized by semantic record type.\n *\n * Use these constants when performing record operations to ensure\n * correct collection names.\n */\nexport const HYPERCERTS_NSIDS = {\n BADGE_AWARD: BADGE_AWARD_NSID,\n BADGE_DEFINITION: BADGE_DEFINITION_NSID,\n BADGE_RESPONSE: BADGE_RESPONSE_NSID,\n CERTIFIED_DEFS: CERTIFIED_DEFS_NSID,\n LOCATION: LOCATION_NSID,\n STRONGREF: STRONGREF_NSID,\n ACTIVITY: ACTIVITY_NSID,\n COLLECTION: COLLECTION_NSID,\n CONTRIBUTION: CONTRIBUTION_NSID,\n EVALUATION: EVALUATION_NSID,\n EVIDENCE: EVIDENCE_NSID,\n MEASUREMENT: MEASUREMENT_NSID,\n PROJECT: PROJECT_NSID,\n RIGHTS: RIGHTS_NSID,\n HYPERCERTS_DEFS: HYPERCERTS_DEFS_NSID,\n FUNDING_RECEIPT: FUNDING_RECEIPT_NSID,\n} as const;\n\n/**\n * Lexicon JSON objects organized by semantic record type.\n */\nexport const HYPERCERTS_LEXICON_JSON = {\n BADGE_AWARD: BADGE_AWARD_LEXICON_JSON,\n BADGE_DEFINITION: BADGE_DEFINITION_LEXICON_JSON,\n BADGE_RESPONSE: BADGE_RESPONSE_LEXICON_JSON,\n CERTIFIED_DEFS: CERTIFIED_DEFS_LEXICON_JSON,\n LOCATION: LOCATION_LEXICON_JSON,\n STRONGREF: STRONGREF_LEXICON_JSON,\n ACTIVITY: ACTIVITY_LEXICON_JSON,\n COLLECTION: COLLECTION_LEXICON_JSON,\n CONTRIBUTION: CONTRIBUTION_LEXICON_JSON,\n EVALUATION: EVALUATION_LEXICON_JSON,\n EVIDENCE: EVIDENCE_LEXICON_JSON,\n MEASUREMENT: MEASUREMENT_LEXICON_JSON,\n PROJECT: PROJECT_LEXICON_JSON,\n RIGHTS: RIGHTS_LEXICON_JSON,\n HYPERCERTS_DEFS: HYPERCERTS_DEFS_LEXICON_JSON,\n FUNDING_RECEIPT: FUNDING_RECEIPT_LEXICON_JSON,\n} as const;\n\n// Individual lexicon objects (from lexicons.get())\nexport const BADGE_AWARD_LEXICON_DOC: LexiconDoc = lexicons.get(BADGE_AWARD_NSID)!;\nexport const BADGE_DEFINITION_LEXICON_DOC: LexiconDoc = lexicons.get(BADGE_DEFINITION_NSID)!;\nexport const BADGE_RESPONSE_LEXICON_DOC: LexiconDoc = lexicons.get(BADGE_RESPONSE_NSID)!;\nexport const CERTIFIED_DEFS_LEXICON_DOC: LexiconDoc = lexicons.get(CERTIFIED_DEFS_NSID)!;\nexport const LOCATION_LEXICON_DOC: LexiconDoc = lexicons.get(LOCATION_NSID)!;\nexport const STRONGREF_LEXICON_DOC: LexiconDoc = lexicons.get(STRONGREF_NSID)!;\nexport const ACTIVITY_LEXICON_DOC: LexiconDoc = lexicons.get(ACTIVITY_NSID)!;\nexport const COLLECTION_LEXICON_DOC: LexiconDoc = lexicons.get(COLLECTION_NSID)!;\nexport const CONTRIBUTION_LEXICON_DOC: LexiconDoc = lexicons.get(CONTRIBUTION_NSID)!;\nexport const EVALUATION_LEXICON_DOC: LexiconDoc = lexicons.get(EVALUATION_NSID)!;\nexport const EVIDENCE_LEXICON_DOC: LexiconDoc = lexicons.get(EVIDENCE_NSID)!;\nexport const MEASUREMENT_LEXICON_DOC: LexiconDoc = lexicons.get(MEASUREMENT_NSID)!;\nexport const PROJECT_LEXICON_DOC: LexiconDoc = lexicons.get(PROJECT_NSID)!;\nexport const RIGHTS_LEXICON_DOC: LexiconDoc = lexicons.get(RIGHTS_NSID)!;\nexport const HYPERCERTS_DEFS_LEXICON_DOC: LexiconDoc = lexicons.get(HYPERCERTS_DEFS_NSID)!;\nexport const FUNDING_RECEIPT_LEXICON_DOC: LexiconDoc = lexicons.get(FUNDING_RECEIPT_NSID)!;\n\n/**\n * Lexicon document objects organized by semantic record type.\n */\nexport const HYPERCERTS_LEXICON_DOC: Record<string, LexiconDoc> = {\n BADGE_AWARD: BADGE_AWARD_LEXICON_DOC,\n BADGE_DEFINITION: BADGE_DEFINITION_LEXICON_DOC,\n BADGE_RESPONSE: BADGE_RESPONSE_LEXICON_DOC,\n CERTIFIED_DEFS: CERTIFIED_DEFS_LEXICON_DOC,\n LOCATION: LOCATION_LEXICON_DOC,\n STRONGREF: STRONGREF_LEXICON_DOC,\n ACTIVITY: ACTIVITY_LEXICON_DOC,\n COLLECTION: COLLECTION_LEXICON_DOC,\n CONTRIBUTION: CONTRIBUTION_LEXICON_DOC,\n EVALUATION: EVALUATION_LEXICON_DOC,\n EVIDENCE: EVIDENCE_LEXICON_DOC,\n MEASUREMENT: MEASUREMENT_LEXICON_DOC,\n PROJECT: PROJECT_LEXICON_DOC,\n RIGHTS: RIGHTS_LEXICON_DOC,\n HYPERCERTS_DEFS: HYPERCERTS_DEFS_LEXICON_DOC,\n FUNDING_RECEIPT: FUNDING_RECEIPT_LEXICON_DOC,\n} as const;\n\n// Re-export generated types as namespaces (avoiding conflicts)\nexport * as AppCertifiedBadgeAward from \"./types/app/certified/badge/award.js\";\nexport * as AppCertifiedBadgeDefinition from \"./types/app/certified/badge/definition.js\";\nexport * as AppCertifiedBadgeResponse from \"./types/app/certified/badge/response.js\";\nexport * as AppCertifiedDefs from \"./types/app/certified/defs.js\";\nexport * as AppCertifiedLocation from \"./types/app/certified/location.js\";\nexport * as ComAtprotoRepoStrongRef from \"./types/com/atproto/repo/strongRef.js\";\nexport * as OrgHypercertsClaimActivity from \"./types/org/hypercerts/claim/activity.js\";\nexport * as OrgHypercertsClaimCollection from \"./types/org/hypercerts/claim/collection.js\";\nexport * as OrgHypercertsClaimContribution from \"./types/org/hypercerts/claim/contribution.js\";\nexport * as OrgHypercertsClaimEvaluation from \"./types/org/hypercerts/claim/evaluation.js\";\nexport * as OrgHypercertsClaimEvidence from \"./types/org/hypercerts/claim/evidence.js\";\nexport * as OrgHypercertsClaimMeasurement from \"./types/org/hypercerts/claim/measurement.js\";\nexport * as OrgHypercertsClaimProject from \"./types/org/hypercerts/claim/project.js\";\nexport * as OrgHypercertsClaimRights from \"./types/org/hypercerts/claim/rights.js\";\nexport * as OrgHypercertsDefs from \"./types/org/hypercerts/defs.js\";\nexport * as OrgHypercertsFundingReceipt from \"./types/org/hypercerts/funding/receipt.js\";\n\n// Re-export utilities\nexport * from \"./util.js\";\n"],"names":["is$typed","Lexicons","validate","ValidationError","_is$typed","_validate","id","hashMain","isMain","validateMain"],"mappings":"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"}
1
+ {"version":3,"file":"index.cjs","sources":["../../generated/util.ts","../../generated/lexicons.ts","../../generated/types/app/certified/badge/award.ts","../../generated/types/app/certified/badge/definition.ts","../../generated/types/app/certified/badge/response.ts","../../generated/types/app/certified/location.ts","../../generated/types/com/atproto/repo/strongRef.ts","../../generated/types/org/hypercerts/claim/activity.ts","../../generated/types/org/hypercerts/claim/collection.ts","../../generated/types/org/hypercerts/claim/contribution.ts","../../generated/types/org/hypercerts/claim/evaluation.ts","../../generated/types/org/hypercerts/claim/evidence.ts","../../generated/types/org/hypercerts/claim/measurement.ts","../../generated/types/org/hypercerts/claim/project.ts","../../generated/types/org/hypercerts/claim/rights.ts","../../generated/types/org/hypercerts/defs.ts","../../generated/types/org/hypercerts/funding/receipt.ts","../../generated/exports.ts"],"sourcesContent":["/**\n * GENERATED CODE - DO NOT MODIFY\n */\n\nimport { type ValidationResult } from '@atproto/lexicon'\n\nexport type OmitKey<T, K extends keyof T> = {\n [K2 in keyof T as K2 extends K ? never : K2]: T[K2]\n}\n\nexport type $Typed<V, T extends string = string> = V & { $type: T }\nexport type Un$Typed<V extends { $type?: string }> = OmitKey<V, '$type'>\n\nexport type $Type<Id extends string, Hash extends string> = Hash extends 'main'\n ? Id\n : `${Id}#${Hash}`\n\nfunction isObject<V>(v: V): v is V & object {\n return v != null && typeof v === 'object'\n}\n\nfunction is$type<Id extends string, Hash extends string>(\n $type: unknown,\n id: Id,\n hash: Hash,\n): $type is $Type<Id, Hash> {\n return hash === 'main'\n ? $type === id\n : // $type === `${id}#${hash}`\n typeof $type === 'string' &&\n $type.length === id.length + 1 + hash.length &&\n $type.charCodeAt(id.length) === 35 /* '#' */ &&\n $type.startsWith(id) &&\n $type.endsWith(hash)\n}\n\nexport type $TypedObject<\n V,\n Id extends string,\n Hash extends string,\n> = V extends {\n $type: $Type<Id, Hash>\n}\n ? V\n : V extends { $type?: string }\n ? V extends { $type?: infer T extends $Type<Id, Hash> }\n ? V & { $type: T }\n : never\n : V & { $type: $Type<Id, Hash> }\n\nexport function is$typed<V, Id extends string, Hash extends string>(\n v: V,\n id: Id,\n hash: Hash,\n): v is $TypedObject<V, Id, Hash> {\n return isObject(v) && '$type' in v && is$type(v.$type, id, hash)\n}\n\nexport function maybe$typed<V, Id extends string, Hash extends string>(\n v: V,\n id: Id,\n hash: Hash,\n): v is V & object & { $type?: $Type<Id, Hash> } {\n return (\n isObject(v) &&\n ('$type' in v ? v.$type === undefined || is$type(v.$type, id, hash) : true)\n )\n}\n\nexport type Validator<R = unknown> = (v: unknown) => ValidationResult<R>\nexport type ValidatorParam<V extends Validator> =\n V extends Validator<infer R> ? R : never\n\n/**\n * Utility function that allows to convert a \"validate*\" utility function into a\n * type predicate.\n */\nexport function asPredicate<V extends Validator>(validate: V) {\n return function <T>(v: T): v is T & ValidatorParam<V> {\n return validate(v).success\n }\n}\n","/**\n * GENERATED CODE - DO NOT MODIFY\n */\nimport {\n type LexiconDoc,\n Lexicons,\n ValidationError,\n type ValidationResult,\n} from '@atproto/lexicon'\nimport { type $Typed, is$typed, maybe$typed } from './util.js'\n\nexport const schemaDict = {\n AppCertifiedBadgeAward: {\n lexicon: 1,\n id: 'app.certified.badge.award',\n defs: {\n main: {\n type: 'record',\n description:\n 'Records a badge award to a user, project, or activity claim.',\n key: 'tid',\n record: {\n type: 'object',\n required: ['badge', 'subject', 'createdAt'],\n properties: {\n badge: {\n type: 'ref',\n ref: 'lex:app.certified.badge.definition',\n description: 'Reference to the badge definition for this award.',\n },\n subject: {\n type: 'union',\n description:\n 'Entity the badge award is for (either an account DID or any specific AT Protocol record), e.g. a user, a project, or a specific activity claim.',\n refs: [\n 'lex:app.certified.defs#did',\n 'lex:com.atproto.repo.strongRef',\n ],\n },\n note: {\n type: 'string',\n description:\n 'Optional statement explaining the reason for this badge award.',\n },\n createdAt: {\n type: 'string',\n format: 'datetime',\n description:\n 'Client-declared timestamp when this record was originally created',\n },\n },\n },\n },\n },\n },\n AppCertifiedBadgeDefinition: {\n lexicon: 1,\n id: 'app.certified.badge.definition',\n defs: {\n main: {\n type: 'record',\n description:\n 'Defines a badge that can be awarded via badge award records to users, projects, or activity claims.',\n key: 'tid',\n record: {\n type: 'object',\n required: ['title', 'badgeType', 'icon', 'createdAt'],\n properties: {\n badgeType: {\n type: 'string',\n description:\n 'Category of the badge (e.g. endorsement, participation, affiliation).',\n },\n title: {\n type: 'string',\n description: 'Human-readable title of the badge.',\n },\n icon: {\n type: 'blob',\n description:\n 'Icon representing the badge, stored as a blob for compact visual display.',\n accept: [\n 'image/png',\n 'image/jpeg',\n 'image/webp',\n 'image/svg+xml',\n ],\n maxSize: 1048576,\n },\n description: {\n type: 'string',\n description:\n 'Optional short statement describing what the badge represents.',\n },\n allowedIssuers: {\n type: 'array',\n description:\n 'Optional allowlist of DIDs allowed to issue this badge. If omitted, anyone may issue it.',\n items: {\n type: 'ref',\n ref: 'lex:app.certified.defs#did',\n },\n },\n createdAt: {\n type: 'string',\n format: 'datetime',\n description:\n 'Client-declared timestamp when this record was originally created',\n },\n },\n },\n },\n },\n },\n AppCertifiedBadgeResponse: {\n lexicon: 1,\n id: 'app.certified.badge.response',\n defs: {\n main: {\n type: 'record',\n description: 'Recipient response to a badge award.',\n key: 'tid',\n record: {\n type: 'object',\n required: ['badgeAward', 'response', 'createdAt'],\n properties: {\n badgeAward: {\n type: 'ref',\n ref: 'lex:app.certified.badge.award',\n description: 'Reference to the badge award.',\n },\n response: {\n type: 'string',\n enum: ['accepted', 'rejected'],\n description:\n 'The recipient’s response for the badge (accepted or rejected).',\n },\n weight: {\n type: 'string',\n description:\n 'Optional relative weight for accepted badges, assigned by the recipient.',\n },\n createdAt: {\n type: 'string',\n format: 'datetime',\n description:\n 'Client-declared timestamp when this record was originally created',\n },\n },\n },\n },\n },\n },\n AppCertifiedDefs: {\n lexicon: 1,\n id: 'app.certified.defs',\n description: 'Common type definitions used across certified protocols.',\n defs: {\n did: {\n type: 'string',\n format: 'did',\n description: 'A Decentralized Identifier (DID) string.',\n },\n },\n },\n AppCertifiedLocation: {\n lexicon: 1,\n id: 'app.certified.location',\n defs: {\n main: {\n type: 'record',\n description: 'A location reference',\n key: 'tid',\n record: {\n type: 'object',\n required: [\n 'lpVersion',\n 'srs',\n 'locationType',\n 'location',\n 'createdAt',\n ],\n properties: {\n lpVersion: {\n type: 'string',\n description: 'The version of the Location Protocol',\n maxLength: 10,\n },\n srs: {\n type: 'string',\n format: 'uri',\n description:\n 'The Spatial Reference System URI (e.g., http://www.opengis.net/def/crs/OGC/1.3/CRS84) that defines the coordinate system.',\n maxLength: 100,\n },\n locationType: {\n type: 'string',\n description:\n 'An identifier for the format of the location data (e.g., coordinate-decimal, geojson-point)',\n knownValues: ['coordinate-decimal', 'geojson-point'],\n maxLength: 20,\n },\n location: {\n type: 'union',\n refs: [\n 'lex:org.hypercerts.defs#uri',\n 'lex:org.hypercerts.defs#smallBlob',\n ],\n description:\n 'The location of where the work was performed as a URI or blob.',\n },\n name: {\n type: 'string',\n description: 'Optional name for this location',\n maxLength: 1000,\n maxGraphemes: 100,\n },\n description: {\n type: 'string',\n description: 'Optional description for this location',\n maxLength: 2000,\n maxGraphemes: 500,\n },\n createdAt: {\n type: 'string',\n format: 'datetime',\n description:\n 'Client-declared timestamp when this record was originally created',\n },\n },\n },\n },\n },\n },\n ComAtprotoRepoStrongRef: {\n lexicon: 1,\n id: 'com.atproto.repo.strongRef',\n description: 'A URI with a content-hash fingerprint.',\n defs: {\n main: {\n type: 'object',\n required: ['uri', 'cid'],\n properties: {\n uri: {\n type: 'string',\n format: 'at-uri',\n },\n cid: {\n type: 'string',\n format: 'cid',\n },\n },\n },\n },\n },\n OrgHypercertsClaimActivity: {\n lexicon: 1,\n id: 'org.hypercerts.claim.activity',\n defs: {\n main: {\n type: 'record',\n description: 'A hypercert record tracking impact work.',\n key: 'any',\n record: {\n type: 'object',\n required: [\n 'title',\n 'shortDescription',\n 'createdAt',\n 'startDate',\n 'endDate',\n ],\n properties: {\n title: {\n type: 'string',\n description: 'Title of the hypercert.',\n maxLength: 256,\n },\n shortDescription: {\n type: 'string',\n description: 'Short blurb of the impact work done.',\n maxLength: 3000,\n maxGraphemes: 300,\n },\n description: {\n type: 'string',\n description:\n 'Optional longer description of the impact work done.',\n maxLength: 30000,\n maxGraphemes: 3000,\n },\n image: {\n type: 'union',\n refs: [\n 'lex:org.hypercerts.defs#uri',\n 'lex:org.hypercerts.defs#smallImage',\n ],\n description:\n 'The hypercert visual representation as a URI or image blob.',\n },\n workScope: {\n type: 'ref',\n ref: 'lex:org.hypercerts.claim.activity#workScope',\n },\n startDate: {\n type: 'string',\n format: 'datetime',\n description: 'When the work began',\n },\n endDate: {\n type: 'string',\n format: 'datetime',\n description: 'When the work ended',\n },\n contributions: {\n type: 'array',\n description:\n 'A strong reference to the contributions done to create the impact in the hypercerts. The record referenced must conform with the lexicon org.hypercerts.claim.contribution.',\n items: {\n type: 'ref',\n ref: 'lex:com.atproto.repo.strongRef',\n },\n },\n rights: {\n type: 'ref',\n ref: 'lex:com.atproto.repo.strongRef',\n description:\n 'A strong reference to the rights that this hypercert has. The record referenced must conform with the lexicon org.hypercerts.claim.rights.',\n },\n locations: {\n type: 'array',\n description:\n 'An array of strong references to the location where activity was performed. The record referenced must conform with the lexicon app.certified.location.',\n items: {\n type: 'ref',\n ref: 'lex:com.atproto.repo.strongRef',\n },\n },\n project: {\n type: 'string',\n format: 'at-uri',\n description:\n 'A reference (AT-URI) to the project record that this activity is part of. The record referenced must conform with the lexicon org.hypercerts.claim.project. This activity must also be referenced by the project, establishing a bidirectional link.',\n },\n createdAt: {\n type: 'string',\n format: 'datetime',\n description:\n 'Client-declared timestamp when this record was originally created',\n },\n },\n },\n },\n workScope: {\n type: 'object',\n description:\n 'Logical scope of the work using label-based conditions. All labels in `withinAllOf` must apply; at least one label in `withinAnyOf` must apply if provided; no label in `withinNoneOf` may apply.',\n properties: {\n withinAllOf: {\n type: 'array',\n description: 'Labels that MUST all hold for the scope to apply.',\n items: {\n type: 'string',\n },\n maxLength: 100,\n },\n withinAnyOf: {\n type: 'array',\n description:\n 'Labels of which AT LEAST ONE must hold (optional). If omitted or empty, imposes no additional condition.',\n items: {\n type: 'string',\n },\n maxLength: 100,\n },\n withinNoneOf: {\n type: 'array',\n description: 'Labels that MUST NOT hold for the scope to apply.',\n items: {\n type: 'string',\n },\n maxLength: 100,\n },\n },\n },\n activityWeight: {\n type: 'object',\n required: ['activity', 'weight'],\n properties: {\n activity: {\n type: 'ref',\n ref: 'lex:com.atproto.repo.strongRef',\n description:\n 'A strong reference to a hypercert activity record. This activity must conform to the lexicon org.hypercerts.claim.activity',\n },\n weight: {\n type: 'string',\n description:\n 'The relative weight/importance of this hypercert activity (stored as a string to avoid float precision issues). Weights can be any positive numeric values and do not need to sum to a specific total; normalization can be performed by the consuming application as needed.',\n },\n },\n },\n },\n },\n OrgHypercertsClaimCollection: {\n lexicon: 1,\n id: 'org.hypercerts.claim.collection',\n defs: {\n main: {\n type: 'record',\n description:\n 'A collection/group of hypercerts that have a specific property.',\n key: 'tid',\n record: {\n type: 'object',\n required: ['title', 'activities', 'createdAt'],\n properties: {\n title: {\n type: 'string',\n description: 'The title of this collection',\n maxLength: 800,\n maxGraphemes: 80,\n },\n shortDescription: {\n type: 'string',\n maxLength: 3000,\n maxGraphemes: 300,\n description: 'A short description of this collection',\n },\n avatar: {\n type: 'blob',\n description:\n 'Primary avatar image representing this collection across apps and views; typically a square image.',\n accept: ['image/png', 'image/jpeg'],\n maxSize: 1000000,\n },\n coverPhoto: {\n type: 'blob',\n description: 'The cover photo of this collection.',\n accept: ['image/png', 'image/jpeg'],\n maxSize: 1000000,\n },\n activities: {\n type: 'array',\n description:\n 'Array of activities with their associated weights in this collection',\n items: {\n type: 'ref',\n ref: 'lex:org.hypercerts.claim.activity#activityWeight',\n },\n },\n createdAt: {\n type: 'string',\n format: 'datetime',\n description:\n 'Client-declared timestamp when this record was originally created',\n },\n },\n },\n },\n },\n },\n OrgHypercertsClaimContribution: {\n lexicon: 1,\n id: 'org.hypercerts.claim.contribution',\n defs: {\n main: {\n type: 'record',\n description: \"A contribution made toward a hypercert's impact.\",\n key: 'tid',\n record: {\n type: 'object',\n required: ['contributors', 'createdAt'],\n properties: {\n role: {\n type: 'string',\n description: 'Role or title of the contributor(s).',\n maxLength: 100,\n },\n contributors: {\n type: 'array',\n description:\n 'List of the contributors (names, pseudonyms, or DIDs). If multiple contributors are stored in the same hypercertContribution, then they would have the exact same role.',\n items: {\n type: 'string',\n },\n },\n description: {\n type: 'string',\n description: 'What the contribution concretely achieved',\n maxLength: 2000,\n maxGraphemes: 500,\n },\n startDate: {\n type: 'string',\n format: 'datetime',\n description:\n 'When this contribution started. This should be a subset of the hypercert timeframe.',\n },\n endDate: {\n type: 'string',\n format: 'datetime',\n description:\n 'When this contribution finished. This should be a subset of the hypercert timeframe.',\n },\n createdAt: {\n type: 'string',\n format: 'datetime',\n description:\n 'Client-declared timestamp when this record was originally created',\n },\n },\n },\n },\n },\n },\n OrgHypercertsClaimEvaluation: {\n lexicon: 1,\n id: 'org.hypercerts.claim.evaluation',\n defs: {\n score: {\n type: 'object',\n description: 'Overall score for an evaluation on a numeric scale.',\n required: ['min', 'max', 'value'],\n properties: {\n min: {\n type: 'integer',\n description: 'Minimum value of the scale, e.g. 0 or 1.',\n },\n max: {\n type: 'integer',\n description: 'Maximum value of the scale, e.g. 5 or 10.',\n },\n value: {\n type: 'integer',\n description: 'Score within the inclusive range [min, max].',\n },\n },\n },\n main: {\n type: 'record',\n description:\n 'An evaluation of a hypercert record (e.g. an activity and its impact).',\n key: 'tid',\n record: {\n type: 'object',\n required: ['evaluators', 'summary', 'createdAt'],\n properties: {\n subject: {\n type: 'ref',\n ref: 'lex:com.atproto.repo.strongRef',\n description:\n 'A strong reference to what is being evaluated. (e.g activity, measurement, contribution, etc.)',\n },\n evaluators: {\n type: 'array',\n description: 'DIDs of the evaluators',\n items: {\n type: 'ref',\n ref: 'lex:app.certified.defs#did',\n },\n maxLength: 1000,\n },\n content: {\n type: 'array',\n description:\n 'Evaluation data (URIs or blobs) containing detailed reports or methodology',\n items: {\n type: 'union',\n refs: [\n 'lex:org.hypercerts.defs#uri',\n 'lex:org.hypercerts.defs#smallBlob',\n ],\n },\n maxLength: 100,\n },\n measurements: {\n type: 'array',\n description:\n 'Optional references to the measurements that contributed to this evaluation. The record(s) referenced must conform with the lexicon org.hypercerts.claim.measurement ',\n items: {\n type: 'ref',\n ref: 'lex:com.atproto.repo.strongRef',\n },\n maxLength: 100,\n },\n summary: {\n type: 'string',\n description: 'Brief evaluation summary',\n maxLength: 5000,\n maxGraphemes: 1000,\n },\n score: {\n type: 'ref',\n ref: 'lex:org.hypercerts.claim.evaluation#score',\n description:\n 'Optional overall score for this evaluation on a numeric scale.',\n },\n location: {\n type: 'ref',\n ref: 'lex:com.atproto.repo.strongRef',\n description:\n 'An optional reference for georeferenced evaluations. The record referenced must conform with the lexicon app.certified.location.',\n },\n createdAt: {\n type: 'string',\n format: 'datetime',\n description:\n 'Client-declared timestamp when this record was originally created',\n },\n },\n },\n },\n },\n },\n OrgHypercertsClaimEvidence: {\n lexicon: 1,\n id: 'org.hypercerts.claim.evidence',\n defs: {\n main: {\n type: 'record',\n description:\n 'A piece of evidence related to a hypercert record (e.g. an activity, project, claim, or evaluation). Evidence may support, clarify, or challenge the referenced subject.',\n key: 'tid',\n record: {\n type: 'object',\n required: ['content', 'title', 'createdAt'],\n properties: {\n subject: {\n type: 'ref',\n ref: 'lex:com.atproto.repo.strongRef',\n description:\n 'A strong reference to the record this evidence relates to (e.g. an activity, project, claim, or evaluation).',\n },\n content: {\n type: 'union',\n refs: [\n 'lex:org.hypercerts.defs#uri',\n 'lex:org.hypercerts.defs#smallBlob',\n ],\n description:\n 'A piece of evidence (URI or blob) related to the subject record; it may support, clarify, or challenge a hypercert claim.',\n },\n title: {\n type: 'string',\n maxLength: 256,\n description: 'Title to describe the nature of the evidence.',\n },\n shortDescription: {\n type: 'string',\n maxLength: 3000,\n maxGraphemes: 300,\n description:\n 'Short description explaining what this evidence shows.',\n },\n description: {\n type: 'string',\n description:\n 'Longer description describing the evidence in more detail.',\n maxLength: 30000,\n maxGraphemes: 3000,\n },\n relationType: {\n type: 'string',\n description: 'How this evidence relates to the subject.',\n knownValues: ['supports', 'challenges', 'clarifies'],\n },\n createdAt: {\n type: 'string',\n format: 'datetime',\n description:\n 'Client-declared timestamp when this record was originally created',\n },\n },\n },\n },\n },\n },\n OrgHypercertsClaimMeasurement: {\n lexicon: 1,\n id: 'org.hypercerts.claim.measurement',\n defs: {\n main: {\n type: 'record',\n description:\n 'Measurement data related to a hypercert record (e.g. an activity and its impact).',\n key: 'tid',\n record: {\n type: 'object',\n required: ['measurers', 'metric', 'value', 'createdAt'],\n properties: {\n subject: {\n type: 'ref',\n ref: 'lex:com.atproto.repo.strongRef',\n description:\n 'A strong reference to the record this measurement refers to (e.g. an activity, project, or claim).',\n },\n measurers: {\n type: 'array',\n description:\n 'DIDs of the entity (or entities) that measured this data',\n items: {\n type: 'ref',\n ref: 'lex:app.certified.defs#did',\n },\n maxLength: 100,\n },\n metric: {\n type: 'string',\n description: 'The metric being measured',\n maxLength: 500,\n },\n value: {\n type: 'string',\n description: 'The measured value',\n maxLength: 500,\n },\n methodType: {\n type: 'string',\n description: 'Short identifier for the measurement methodology',\n maxLength: 30,\n },\n methodURI: {\n type: 'string',\n format: 'uri',\n description:\n 'URI to methodology documentation, standard protocol, or measurement procedure',\n },\n evidenceURI: {\n type: 'array',\n description:\n 'URIs to related evidence or underlying data (e.g. org.hypercerts.claim.evidence records or raw datasets)',\n items: {\n type: 'string',\n format: 'uri',\n },\n maxLength: 50,\n },\n location: {\n type: 'ref',\n ref: 'lex:com.atproto.repo.strongRef',\n description:\n 'A strong reference to the location where the measurement was taken. The record referenced must conform with the lexicon app.certified.location',\n },\n createdAt: {\n type: 'string',\n format: 'datetime',\n description:\n 'Client-declared timestamp when this record was originally created',\n },\n },\n },\n },\n },\n },\n OrgHypercertsClaimProject: {\n lexicon: 1,\n id: 'org.hypercerts.claim.project',\n defs: {\n main: {\n type: 'record',\n description:\n 'A project that can include multiple activities, each of which may be linked to at most one project.',\n key: 'tid',\n record: {\n type: 'object',\n required: ['title', 'shortDescription', 'createdAt'],\n properties: {\n title: {\n type: 'string',\n description: 'Title of this project',\n maxLength: 800,\n maxGraphemes: 80,\n },\n shortDescription: {\n type: 'string',\n maxLength: 3000,\n maxGraphemes: 300,\n description:\n 'Short summary of this project, suitable for previews and list views.',\n },\n description: {\n type: 'ref',\n ref: 'lex:pub.leaflet.pages.linearDocument#main',\n description:\n 'Rich-text description of this project, represented as a Leaflet linear document.',\n },\n avatar: {\n type: 'blob',\n description:\n 'Primary avatar image representing this project across apps and views; typically a square logo or project identity image.',\n accept: ['image/png', 'image/jpeg'],\n maxSize: 1000000,\n },\n coverPhoto: {\n type: 'blob',\n description: 'The cover photo of this project.',\n accept: ['image/png', 'image/jpeg'],\n maxSize: 1000000,\n },\n activities: {\n type: 'array',\n description:\n 'Array of activities with their associated weights in this project',\n items: {\n type: 'ref',\n ref: 'lex:org.hypercerts.claim.activity#activityWeight',\n },\n },\n location: {\n type: 'ref',\n ref: 'lex:com.atproto.repo.strongRef',\n description:\n 'A strong reference to a location record describing where the work for this project took place. The referenced record must conform to the app.certified.location lexicon.',\n },\n createdAt: {\n type: 'string',\n format: 'datetime',\n description:\n 'Client-declared timestamp when this record was originally created',\n },\n },\n },\n },\n },\n },\n OrgHypercertsClaimRights: {\n lexicon: 1,\n id: 'org.hypercerts.claim.rights',\n defs: {\n main: {\n type: 'record',\n description:\n 'Describes the rights that a contributor and/or an owner has, such as whether the hypercert can be sold, transferred, and under what conditions.',\n key: 'tid',\n record: {\n type: 'object',\n required: [\n 'rightsName',\n 'rightsType',\n 'rightsDescription',\n 'createdAt',\n ],\n properties: {\n rightsName: {\n type: 'string',\n description: 'Full name of the rights',\n maxLength: 100,\n },\n rightsType: {\n type: 'string',\n description: 'Short rights identifier for easier search',\n maxLength: 10,\n },\n rightsDescription: {\n type: 'string',\n description: 'Description of the rights of this hypercert',\n },\n attachment: {\n type: 'union',\n refs: [\n 'lex:org.hypercerts.defs#uri',\n 'lex:org.hypercerts.defs#smallBlob',\n ],\n description:\n 'An attachment to define the rights further, e.g. a legal document.',\n },\n createdAt: {\n type: 'string',\n format: 'datetime',\n description:\n 'Client-declared timestamp when this record was originally created',\n },\n },\n },\n },\n },\n },\n OrgHypercertsDefs: {\n lexicon: 1,\n id: 'org.hypercerts.defs',\n defs: {\n uri: {\n type: 'object',\n required: ['uri'],\n description: 'Object containing a URI to external data',\n properties: {\n uri: {\n type: 'string',\n format: 'uri',\n maxGraphemes: 1024,\n description: 'URI to external data',\n },\n },\n },\n smallBlob: {\n type: 'object',\n required: ['blob'],\n description: 'Object containing a blob to external data',\n properties: {\n blob: {\n type: 'blob',\n accept: ['*/*'],\n maxSize: 10485760,\n description: 'Blob to external data (up to 10MB)',\n },\n },\n },\n largeBlob: {\n type: 'object',\n required: ['blob'],\n description: 'Object containing a blob to external data',\n properties: {\n blob: {\n type: 'blob',\n accept: ['*/*'],\n maxSize: 104857600,\n description: 'Blob to external data (up to 100MB)',\n },\n },\n },\n smallImage: {\n type: 'object',\n required: ['image'],\n description: 'Object containing a small image',\n properties: {\n image: {\n type: 'blob',\n accept: ['image/jpeg', 'image/jpg', 'image/png', 'image/webp'],\n maxSize: 5242880,\n description: 'Image (up to 5MB)',\n },\n },\n },\n largeImage: {\n type: 'object',\n required: ['image'],\n description: 'Object containing a large image',\n properties: {\n image: {\n type: 'blob',\n accept: ['image/jpeg', 'image/jpg', 'image/png', 'image/webp'],\n maxSize: 10485760,\n description: 'Image (up to 10MB)',\n },\n },\n },\n },\n },\n OrgHypercertsFundingReceipt: {\n lexicon: 1,\n id: 'org.hypercerts.funding.receipt',\n defs: {\n main: {\n type: 'record',\n description:\n 'Records a funding receipt for a payment from one user to another user. It may be recorded by the recipient, by the sender, or by a third party. The sender may remain anonymous.',\n key: 'tid',\n record: {\n type: 'object',\n required: ['from', 'to', 'amount', 'currency', 'createdAt'],\n properties: {\n from: {\n type: 'ref',\n ref: 'lex:app.certified.defs#did',\n description:\n 'DID of the sender who transferred the funds. Leave empty if sender wants to stay anonymous.',\n },\n to: {\n type: 'string',\n description:\n 'The recipient of the funds. Can be identified by DID or a clear-text name.',\n },\n amount: {\n type: 'string',\n description: 'Amount of funding received.',\n },\n currency: {\n type: 'string',\n description: 'Currency of the payment (e.g. EUR, USD, ETH).',\n },\n paymentRail: {\n type: 'string',\n description:\n 'How the funds were transferred (e.g. bank_transfer, credit_card, onchain, cash, check, payment_processor).',\n },\n paymentNetwork: {\n type: 'string',\n description:\n 'Optional network within the payment rail (e.g. arbitrum, ethereum, sepa, visa, paypal).',\n },\n transactionId: {\n type: 'string',\n description:\n 'Identifier of the underlying payment transaction (e.g. bank reference, onchain transaction hash, or processor-specific ID). Use paymentNetwork to specify the network where applicable.',\n },\n for: {\n type: 'string',\n format: 'at-uri',\n description:\n 'Optional reference to the activity, project, or organization this funding relates to.',\n },\n notes: {\n type: 'string',\n description:\n 'Optional notes or additional context for this funding receipt.',\n maxLength: 500,\n },\n occurredAt: {\n type: 'string',\n format: 'datetime',\n description: 'Timestamp when the payment occurred.',\n },\n createdAt: {\n type: 'string',\n format: 'datetime',\n description:\n 'Client-declared timestamp when this receipt record was created.',\n },\n },\n },\n },\n },\n },\n} as const satisfies Record<string, LexiconDoc>\nexport const schemas = Object.values(schemaDict) satisfies LexiconDoc[]\nexport const lexicons: Lexicons = new Lexicons(schemas)\n\nexport function validate<T extends { $type: string }>(\n v: unknown,\n id: string,\n hash: string,\n requiredType: true,\n): ValidationResult<T>\nexport function validate<T extends { $type?: string }>(\n v: unknown,\n id: string,\n hash: string,\n requiredType?: false,\n): ValidationResult<T>\nexport function validate(\n v: unknown,\n id: string,\n hash: string,\n requiredType?: boolean,\n): ValidationResult {\n return (requiredType ? is$typed : maybe$typed)(v, id, hash)\n ? lexicons.validate(`${id}#${hash}`, v)\n : {\n success: false,\n error: new ValidationError(\n `Must be an object with \"${hash === 'main' ? id : `${id}#${hash}`}\" $type property`,\n ),\n }\n}\n\nexport const ids = {\n AppCertifiedBadgeAward: 'app.certified.badge.award',\n AppCertifiedBadgeDefinition: 'app.certified.badge.definition',\n AppCertifiedBadgeResponse: 'app.certified.badge.response',\n AppCertifiedDefs: 'app.certified.defs',\n AppCertifiedLocation: 'app.certified.location',\n ComAtprotoRepoStrongRef: 'com.atproto.repo.strongRef',\n OrgHypercertsClaimActivity: 'org.hypercerts.claim.activity',\n OrgHypercertsClaimCollection: 'org.hypercerts.claim.collection',\n OrgHypercertsClaimContribution: 'org.hypercerts.claim.contribution',\n OrgHypercertsClaimEvaluation: 'org.hypercerts.claim.evaluation',\n OrgHypercertsClaimEvidence: 'org.hypercerts.claim.evidence',\n OrgHypercertsClaimMeasurement: 'org.hypercerts.claim.measurement',\n OrgHypercertsClaimProject: 'org.hypercerts.claim.project',\n OrgHypercertsClaimRights: 'org.hypercerts.claim.rights',\n OrgHypercertsDefs: 'org.hypercerts.defs',\n OrgHypercertsFundingReceipt: 'org.hypercerts.funding.receipt',\n} as const\n","/**\n * GENERATED CODE - DO NOT MODIFY\n */\nimport { type ValidationResult, BlobRef } from '@atproto/lexicon'\nimport { CID } from 'multiformats/cid'\nimport { validate as _validate } from '../../../../lexicons'\nimport {\n type $Typed,\n is$typed as _is$typed,\n type OmitKey,\n} from '../../../../util'\nimport type * as AppCertifiedBadgeDefinition from './definition.js'\nimport type * as AppCertifiedDefs from '../defs.js'\nimport type * as ComAtprotoRepoStrongRef from '../../../com/atproto/repo/strongRef.js'\n\nconst is$typed = _is$typed,\n validate = _validate\nconst id = 'app.certified.badge.award'\n\nexport interface Main {\n $type: 'app.certified.badge.award'\n badge: AppCertifiedBadgeDefinition.Main\n subject:\n | $Typed<AppCertifiedDefs.Did>\n | $Typed<ComAtprotoRepoStrongRef.Main>\n | { $type: string }\n /** Optional statement explaining the reason for this badge award. */\n note?: string\n /** Client-declared timestamp when this record was originally created */\n createdAt: string\n [k: string]: unknown\n}\n\nconst hashMain = 'main'\n\nexport function isMain<V>(v: V) {\n return is$typed(v, id, hashMain)\n}\n\nexport function validateMain<V>(v: V) {\n return validate<Main & V>(v, id, hashMain, true)\n}\n\nexport {\n type Main as Record,\n isMain as isRecord,\n validateMain as validateRecord,\n}\n","/**\n * GENERATED CODE - DO NOT MODIFY\n */\nimport { type ValidationResult, BlobRef } from '@atproto/lexicon'\nimport { CID } from 'multiformats/cid'\nimport { validate as _validate } from '../../../../lexicons'\nimport {\n type $Typed,\n is$typed as _is$typed,\n type OmitKey,\n} from '../../../../util'\nimport type * as AppCertifiedDefs from '../defs.js'\n\nconst is$typed = _is$typed,\n validate = _validate\nconst id = 'app.certified.badge.definition'\n\nexport interface Main {\n $type: 'app.certified.badge.definition'\n /** Category of the badge (e.g. endorsement, participation, affiliation). */\n badgeType: string\n /** Human-readable title of the badge. */\n title: string\n /** Icon representing the badge, stored as a blob for compact visual display. */\n icon: BlobRef\n /** Optional short statement describing what the badge represents. */\n description?: string\n /** Optional allowlist of DIDs allowed to issue this badge. If omitted, anyone may issue it. */\n allowedIssuers?: AppCertifiedDefs.Did[]\n /** Client-declared timestamp when this record was originally created */\n createdAt: string\n [k: string]: unknown\n}\n\nconst hashMain = 'main'\n\nexport function isMain<V>(v: V) {\n return is$typed(v, id, hashMain)\n}\n\nexport function validateMain<V>(v: V) {\n return validate<Main & V>(v, id, hashMain, true)\n}\n\nexport {\n type Main as Record,\n isMain as isRecord,\n validateMain as validateRecord,\n}\n","/**\n * GENERATED CODE - DO NOT MODIFY\n */\nimport { type ValidationResult, BlobRef } from '@atproto/lexicon'\nimport { CID } from 'multiformats/cid'\nimport { validate as _validate } from '../../../../lexicons'\nimport {\n type $Typed,\n is$typed as _is$typed,\n type OmitKey,\n} from '../../../../util'\nimport type * as AppCertifiedBadgeAward from './award.js'\n\nconst is$typed = _is$typed,\n validate = _validate\nconst id = 'app.certified.badge.response'\n\nexport interface Main {\n $type: 'app.certified.badge.response'\n badgeAward: AppCertifiedBadgeAward.Main\n /** The recipient’s response for the badge (accepted or rejected). */\n response: 'accepted' | 'rejected'\n /** Optional relative weight for accepted badges, assigned by the recipient. */\n weight?: string\n /** Client-declared timestamp when this record was originally created */\n createdAt: string\n [k: string]: unknown\n}\n\nconst hashMain = 'main'\n\nexport function isMain<V>(v: V) {\n return is$typed(v, id, hashMain)\n}\n\nexport function validateMain<V>(v: V) {\n return validate<Main & V>(v, id, hashMain, true)\n}\n\nexport {\n type Main as Record,\n isMain as isRecord,\n validateMain as validateRecord,\n}\n","/**\n * GENERATED CODE - DO NOT MODIFY\n */\nimport { type ValidationResult, BlobRef } from '@atproto/lexicon'\nimport { CID } from 'multiformats/cid'\nimport { validate as _validate } from '../../../lexicons'\nimport { type $Typed, is$typed as _is$typed, type OmitKey } from '../../../util'\nimport type * as OrgHypercertsDefs from '../../org/hypercerts/defs.js'\n\nconst is$typed = _is$typed,\n validate = _validate\nconst id = 'app.certified.location'\n\nexport interface Main {\n $type: 'app.certified.location'\n /** The version of the Location Protocol */\n lpVersion: string\n /** The Spatial Reference System URI (e.g., http://www.opengis.net/def/crs/OGC/1.3/CRS84) that defines the coordinate system. */\n srs: string\n /** An identifier for the format of the location data (e.g., coordinate-decimal, geojson-point) */\n locationType: 'coordinate-decimal' | 'geojson-point' | (string & {})\n location:\n | $Typed<OrgHypercertsDefs.Uri>\n | $Typed<OrgHypercertsDefs.SmallBlob>\n | { $type: string }\n /** Optional name for this location */\n name?: string\n /** Optional description for this location */\n description?: string\n /** Client-declared timestamp when this record was originally created */\n createdAt: string\n [k: string]: unknown\n}\n\nconst hashMain = 'main'\n\nexport function isMain<V>(v: V) {\n return is$typed(v, id, hashMain)\n}\n\nexport function validateMain<V>(v: V) {\n return validate<Main & V>(v, id, hashMain, true)\n}\n\nexport {\n type Main as Record,\n isMain as isRecord,\n validateMain as validateRecord,\n}\n","/**\n * GENERATED CODE - DO NOT MODIFY\n */\nimport { type ValidationResult, BlobRef } from '@atproto/lexicon'\nimport { CID } from 'multiformats/cid'\nimport { validate as _validate } from '../../../../lexicons'\nimport {\n type $Typed,\n is$typed as _is$typed,\n type OmitKey,\n} from '../../../../util'\n\nconst is$typed = _is$typed,\n validate = _validate\nconst id = 'com.atproto.repo.strongRef'\n\nexport interface Main {\n $type?: 'com.atproto.repo.strongRef'\n uri: string\n cid: string\n}\n\nconst hashMain = 'main'\n\nexport function isMain<V>(v: V) {\n return is$typed(v, id, hashMain)\n}\n\nexport function validateMain<V>(v: V) {\n return validate<Main & V>(v, id, hashMain)\n}\n","/**\n * GENERATED CODE - DO NOT MODIFY\n */\nimport { type ValidationResult, BlobRef } from '@atproto/lexicon'\nimport { CID } from 'multiformats/cid'\nimport { validate as _validate } from '../../../../lexicons'\nimport {\n type $Typed,\n is$typed as _is$typed,\n type OmitKey,\n} from '../../../../util'\nimport type * as OrgHypercertsDefs from '../defs.js'\nimport type * as ComAtprotoRepoStrongRef from '../../../com/atproto/repo/strongRef.js'\n\nconst is$typed = _is$typed,\n validate = _validate\nconst id = 'org.hypercerts.claim.activity'\n\nexport interface Main {\n $type: 'org.hypercerts.claim.activity'\n /** Title of the hypercert. */\n title: string\n /** Short blurb of the impact work done. */\n shortDescription: string\n /** Optional longer description of the impact work done. */\n description?: string\n image?:\n | $Typed<OrgHypercertsDefs.Uri>\n | $Typed<OrgHypercertsDefs.SmallImage>\n | { $type: string }\n workScope?: WorkScope\n /** When the work began */\n startDate: string\n /** When the work ended */\n endDate: string\n /** A strong reference to the contributions done to create the impact in the hypercerts. The record referenced must conform with the lexicon org.hypercerts.claim.contribution. */\n contributions?: ComAtprotoRepoStrongRef.Main[]\n rights?: ComAtprotoRepoStrongRef.Main\n /** An array of strong references to the location where activity was performed. The record referenced must conform with the lexicon app.certified.location. */\n locations?: ComAtprotoRepoStrongRef.Main[]\n /** A reference (AT-URI) to the project record that this activity is part of. The record referenced must conform with the lexicon org.hypercerts.claim.project. This activity must also be referenced by the project, establishing a bidirectional link. */\n project?: string\n /** Client-declared timestamp when this record was originally created */\n createdAt: string\n [k: string]: unknown\n}\n\nconst hashMain = 'main'\n\nexport function isMain<V>(v: V) {\n return is$typed(v, id, hashMain)\n}\n\nexport function validateMain<V>(v: V) {\n return validate<Main & V>(v, id, hashMain, true)\n}\n\nexport {\n type Main as Record,\n isMain as isRecord,\n validateMain as validateRecord,\n}\n\n/** Logical scope of the work using label-based conditions. All labels in `withinAllOf` must apply; at least one label in `withinAnyOf` must apply if provided; no label in `withinNoneOf` may apply. */\nexport interface WorkScope {\n $type?: 'org.hypercerts.claim.activity#workScope'\n /** Labels that MUST all hold for the scope to apply. */\n withinAllOf?: string[]\n /** Labels of which AT LEAST ONE must hold (optional). If omitted or empty, imposes no additional condition. */\n withinAnyOf?: string[]\n /** Labels that MUST NOT hold for the scope to apply. */\n withinNoneOf?: string[]\n}\n\nconst hashWorkScope = 'workScope'\n\nexport function isWorkScope<V>(v: V) {\n return is$typed(v, id, hashWorkScope)\n}\n\nexport function validateWorkScope<V>(v: V) {\n return validate<WorkScope & V>(v, id, hashWorkScope)\n}\n\nexport interface ActivityWeight {\n $type?: 'org.hypercerts.claim.activity#activityWeight'\n activity: ComAtprotoRepoStrongRef.Main\n /** The relative weight/importance of this hypercert activity (stored as a string to avoid float precision issues). Weights can be any positive numeric values and do not need to sum to a specific total; normalization can be performed by the consuming application as needed. */\n weight: string\n}\n\nconst hashActivityWeight = 'activityWeight'\n\nexport function isActivityWeight<V>(v: V) {\n return is$typed(v, id, hashActivityWeight)\n}\n\nexport function validateActivityWeight<V>(v: V) {\n return validate<ActivityWeight & V>(v, id, hashActivityWeight)\n}\n","/**\n * GENERATED CODE - DO NOT MODIFY\n */\nimport { type ValidationResult, BlobRef } from '@atproto/lexicon'\nimport { CID } from 'multiformats/cid'\nimport { validate as _validate } from '../../../../lexicons'\nimport {\n type $Typed,\n is$typed as _is$typed,\n type OmitKey,\n} from '../../../../util'\nimport type * as OrgHypercertsClaimActivity from './activity.js'\n\nconst is$typed = _is$typed,\n validate = _validate\nconst id = 'org.hypercerts.claim.collection'\n\nexport interface Main {\n $type: 'org.hypercerts.claim.collection'\n /** The title of this collection */\n title: string\n /** A short description of this collection */\n shortDescription?: string\n /** Primary avatar image representing this collection across apps and views; typically a square image. */\n avatar?: BlobRef\n /** The cover photo of this collection. */\n coverPhoto?: BlobRef\n /** Array of activities with their associated weights in this collection */\n activities: OrgHypercertsClaimActivity.ActivityWeight[]\n /** Client-declared timestamp when this record was originally created */\n createdAt: string\n [k: string]: unknown\n}\n\nconst hashMain = 'main'\n\nexport function isMain<V>(v: V) {\n return is$typed(v, id, hashMain)\n}\n\nexport function validateMain<V>(v: V) {\n return validate<Main & V>(v, id, hashMain, true)\n}\n\nexport {\n type Main as Record,\n isMain as isRecord,\n validateMain as validateRecord,\n}\n","/**\n * GENERATED CODE - DO NOT MODIFY\n */\nimport { type ValidationResult, BlobRef } from '@atproto/lexicon'\nimport { CID } from 'multiformats/cid'\nimport { validate as _validate } from '../../../../lexicons'\nimport {\n type $Typed,\n is$typed as _is$typed,\n type OmitKey,\n} from '../../../../util'\n\nconst is$typed = _is$typed,\n validate = _validate\nconst id = 'org.hypercerts.claim.contribution'\n\nexport interface Main {\n $type: 'org.hypercerts.claim.contribution'\n /** Role or title of the contributor(s). */\n role?: string\n /** List of the contributors (names, pseudonyms, or DIDs). If multiple contributors are stored in the same hypercertContribution, then they would have the exact same role. */\n contributors: string[]\n /** What the contribution concretely achieved */\n description?: string\n /** When this contribution started. This should be a subset of the hypercert timeframe. */\n startDate?: string\n /** When this contribution finished. This should be a subset of the hypercert timeframe. */\n endDate?: string\n /** Client-declared timestamp when this record was originally created */\n createdAt: string\n [k: string]: unknown\n}\n\nconst hashMain = 'main'\n\nexport function isMain<V>(v: V) {\n return is$typed(v, id, hashMain)\n}\n\nexport function validateMain<V>(v: V) {\n return validate<Main & V>(v, id, hashMain, true)\n}\n\nexport {\n type Main as Record,\n isMain as isRecord,\n validateMain as validateRecord,\n}\n","/**\n * GENERATED CODE - DO NOT MODIFY\n */\nimport { type ValidationResult, BlobRef } from '@atproto/lexicon'\nimport { CID } from 'multiformats/cid'\nimport { validate as _validate } from '../../../../lexicons'\nimport {\n type $Typed,\n is$typed as _is$typed,\n type OmitKey,\n} from '../../../../util'\nimport type * as ComAtprotoRepoStrongRef from '../../../com/atproto/repo/strongRef.js'\nimport type * as AppCertifiedDefs from '../../../app/certified/defs.js'\nimport type * as OrgHypercertsDefs from '../defs.js'\n\nconst is$typed = _is$typed,\n validate = _validate\nconst id = 'org.hypercerts.claim.evaluation'\n\n/** Overall score for an evaluation on a numeric scale. */\nexport interface Score {\n $type?: 'org.hypercerts.claim.evaluation#score'\n /** Minimum value of the scale, e.g. 0 or 1. */\n min: number\n /** Maximum value of the scale, e.g. 5 or 10. */\n max: number\n /** Score within the inclusive range [min, max]. */\n value: number\n}\n\nconst hashScore = 'score'\n\nexport function isScore<V>(v: V) {\n return is$typed(v, id, hashScore)\n}\n\nexport function validateScore<V>(v: V) {\n return validate<Score & V>(v, id, hashScore)\n}\n\nexport interface Main {\n $type: 'org.hypercerts.claim.evaluation'\n subject?: ComAtprotoRepoStrongRef.Main\n /** DIDs of the evaluators */\n evaluators: AppCertifiedDefs.Did[]\n /** Evaluation data (URIs or blobs) containing detailed reports or methodology */\n content?: (\n | $Typed<OrgHypercertsDefs.Uri>\n | $Typed<OrgHypercertsDefs.SmallBlob>\n | { $type: string }\n )[]\n /** Optional references to the measurements that contributed to this evaluation. The record(s) referenced must conform with the lexicon org.hypercerts.claim.measurement */\n measurements?: ComAtprotoRepoStrongRef.Main[]\n /** Brief evaluation summary */\n summary: string\n score?: Score\n location?: ComAtprotoRepoStrongRef.Main\n /** Client-declared timestamp when this record was originally created */\n createdAt: string\n [k: string]: unknown\n}\n\nconst hashMain = 'main'\n\nexport function isMain<V>(v: V) {\n return is$typed(v, id, hashMain)\n}\n\nexport function validateMain<V>(v: V) {\n return validate<Main & V>(v, id, hashMain, true)\n}\n\nexport {\n type Main as Record,\n isMain as isRecord,\n validateMain as validateRecord,\n}\n","/**\n * GENERATED CODE - DO NOT MODIFY\n */\nimport { type ValidationResult, BlobRef } from '@atproto/lexicon'\nimport { CID } from 'multiformats/cid'\nimport { validate as _validate } from '../../../../lexicons'\nimport {\n type $Typed,\n is$typed as _is$typed,\n type OmitKey,\n} from '../../../../util'\nimport type * as ComAtprotoRepoStrongRef from '../../../com/atproto/repo/strongRef.js'\nimport type * as OrgHypercertsDefs from '../defs.js'\n\nconst is$typed = _is$typed,\n validate = _validate\nconst id = 'org.hypercerts.claim.evidence'\n\nexport interface Main {\n $type: 'org.hypercerts.claim.evidence'\n subject?: ComAtprotoRepoStrongRef.Main\n content:\n | $Typed<OrgHypercertsDefs.Uri>\n | $Typed<OrgHypercertsDefs.SmallBlob>\n | { $type: string }\n /** Title to describe the nature of the evidence. */\n title: string\n /** Short description explaining what this evidence shows. */\n shortDescription?: string\n /** Longer description describing the evidence in more detail. */\n description?: string\n /** How this evidence relates to the subject. */\n relationType?: 'supports' | 'challenges' | 'clarifies' | (string & {})\n /** Client-declared timestamp when this record was originally created */\n createdAt: string\n [k: string]: unknown\n}\n\nconst hashMain = 'main'\n\nexport function isMain<V>(v: V) {\n return is$typed(v, id, hashMain)\n}\n\nexport function validateMain<V>(v: V) {\n return validate<Main & V>(v, id, hashMain, true)\n}\n\nexport {\n type Main as Record,\n isMain as isRecord,\n validateMain as validateRecord,\n}\n","/**\n * GENERATED CODE - DO NOT MODIFY\n */\nimport { type ValidationResult, BlobRef } from '@atproto/lexicon'\nimport { CID } from 'multiformats/cid'\nimport { validate as _validate } from '../../../../lexicons'\nimport {\n type $Typed,\n is$typed as _is$typed,\n type OmitKey,\n} from '../../../../util'\nimport type * as ComAtprotoRepoStrongRef from '../../../com/atproto/repo/strongRef.js'\nimport type * as AppCertifiedDefs from '../../../app/certified/defs.js'\n\nconst is$typed = _is$typed,\n validate = _validate\nconst id = 'org.hypercerts.claim.measurement'\n\nexport interface Main {\n $type: 'org.hypercerts.claim.measurement'\n subject?: ComAtprotoRepoStrongRef.Main\n /** DIDs of the entity (or entities) that measured this data */\n measurers: AppCertifiedDefs.Did[]\n /** The metric being measured */\n metric: string\n /** The measured value */\n value: string\n /** Short identifier for the measurement methodology */\n methodType?: string\n /** URI to methodology documentation, standard protocol, or measurement procedure */\n methodURI?: string\n /** URIs to related evidence or underlying data (e.g. org.hypercerts.claim.evidence records or raw datasets) */\n evidenceURI?: string[]\n location?: ComAtprotoRepoStrongRef.Main\n /** Client-declared timestamp when this record was originally created */\n createdAt: string\n [k: string]: unknown\n}\n\nconst hashMain = 'main'\n\nexport function isMain<V>(v: V) {\n return is$typed(v, id, hashMain)\n}\n\nexport function validateMain<V>(v: V) {\n return validate<Main & V>(v, id, hashMain, true)\n}\n\nexport {\n type Main as Record,\n isMain as isRecord,\n validateMain as validateRecord,\n}\n","/**\n * GENERATED CODE - DO NOT MODIFY\n */\nimport { type ValidationResult, BlobRef } from '@atproto/lexicon'\nimport { CID } from 'multiformats/cid'\nimport { validate as _validate } from '../../../../lexicons'\nimport {\n type $Typed,\n is$typed as _is$typed,\n type OmitKey,\n} from '../../../../util'\nimport type * as PubLeafletPagesLinearDocument from '../../../pub/leaflet/pages/linearDocument.js'\nimport type * as OrgHypercertsClaimActivity from './activity.js'\nimport type * as ComAtprotoRepoStrongRef from '../../../com/atproto/repo/strongRef.js'\n\nconst is$typed = _is$typed,\n validate = _validate\nconst id = 'org.hypercerts.claim.project'\n\nexport interface Main {\n $type: 'org.hypercerts.claim.project'\n /** Title of this project */\n title: string\n /** Short summary of this project, suitable for previews and list views. */\n shortDescription: string\n description?: PubLeafletPagesLinearDocument.Main\n /** Primary avatar image representing this project across apps and views; typically a square logo or project identity image. */\n avatar?: BlobRef\n /** The cover photo of this project. */\n coverPhoto?: BlobRef\n /** Array of activities with their associated weights in this project */\n activities?: OrgHypercertsClaimActivity.ActivityWeight[]\n location?: ComAtprotoRepoStrongRef.Main\n /** Client-declared timestamp when this record was originally created */\n createdAt: string\n [k: string]: unknown\n}\n\nconst hashMain = 'main'\n\nexport function isMain<V>(v: V) {\n return is$typed(v, id, hashMain)\n}\n\nexport function validateMain<V>(v: V) {\n return validate<Main & V>(v, id, hashMain, true)\n}\n\nexport {\n type Main as Record,\n isMain as isRecord,\n validateMain as validateRecord,\n}\n","/**\n * GENERATED CODE - DO NOT MODIFY\n */\nimport { type ValidationResult, BlobRef } from '@atproto/lexicon'\nimport { CID } from 'multiformats/cid'\nimport { validate as _validate } from '../../../../lexicons'\nimport {\n type $Typed,\n is$typed as _is$typed,\n type OmitKey,\n} from '../../../../util'\nimport type * as OrgHypercertsDefs from '../defs.js'\n\nconst is$typed = _is$typed,\n validate = _validate\nconst id = 'org.hypercerts.claim.rights'\n\nexport interface Main {\n $type: 'org.hypercerts.claim.rights'\n /** Full name of the rights */\n rightsName: string\n /** Short rights identifier for easier search */\n rightsType: string\n /** Description of the rights of this hypercert */\n rightsDescription: string\n attachment?:\n | $Typed<OrgHypercertsDefs.Uri>\n | $Typed<OrgHypercertsDefs.SmallBlob>\n | { $type: string }\n /** Client-declared timestamp when this record was originally created */\n createdAt: string\n [k: string]: unknown\n}\n\nconst hashMain = 'main'\n\nexport function isMain<V>(v: V) {\n return is$typed(v, id, hashMain)\n}\n\nexport function validateMain<V>(v: V) {\n return validate<Main & V>(v, id, hashMain, true)\n}\n\nexport {\n type Main as Record,\n isMain as isRecord,\n validateMain as validateRecord,\n}\n","/**\n * GENERATED CODE - DO NOT MODIFY\n */\nimport { type ValidationResult, BlobRef } from '@atproto/lexicon'\nimport { CID } from 'multiformats/cid'\nimport { validate as _validate } from '../../../lexicons'\nimport { type $Typed, is$typed as _is$typed, type OmitKey } from '../../../util'\n\nconst is$typed = _is$typed,\n validate = _validate\nconst id = 'org.hypercerts.defs'\n\n/** Object containing a URI to external data */\nexport interface Uri {\n $type?: 'org.hypercerts.defs#uri'\n /** URI to external data */\n uri: string\n}\n\nconst hashUri = 'uri'\n\nexport function isUri<V>(v: V) {\n return is$typed(v, id, hashUri)\n}\n\nexport function validateUri<V>(v: V) {\n return validate<Uri & V>(v, id, hashUri)\n}\n\n/** Object containing a blob to external data */\nexport interface SmallBlob {\n $type?: 'org.hypercerts.defs#smallBlob'\n /** Blob to external data (up to 10MB) */\n blob: BlobRef\n}\n\nconst hashSmallBlob = 'smallBlob'\n\nexport function isSmallBlob<V>(v: V) {\n return is$typed(v, id, hashSmallBlob)\n}\n\nexport function validateSmallBlob<V>(v: V) {\n return validate<SmallBlob & V>(v, id, hashSmallBlob)\n}\n\n/** Object containing a blob to external data */\nexport interface LargeBlob {\n $type?: 'org.hypercerts.defs#largeBlob'\n /** Blob to external data (up to 100MB) */\n blob: BlobRef\n}\n\nconst hashLargeBlob = 'largeBlob'\n\nexport function isLargeBlob<V>(v: V) {\n return is$typed(v, id, hashLargeBlob)\n}\n\nexport function validateLargeBlob<V>(v: V) {\n return validate<LargeBlob & V>(v, id, hashLargeBlob)\n}\n\n/** Object containing a small image */\nexport interface SmallImage {\n $type?: 'org.hypercerts.defs#smallImage'\n /** Image (up to 5MB) */\n image: BlobRef\n}\n\nconst hashSmallImage = 'smallImage'\n\nexport function isSmallImage<V>(v: V) {\n return is$typed(v, id, hashSmallImage)\n}\n\nexport function validateSmallImage<V>(v: V) {\n return validate<SmallImage & V>(v, id, hashSmallImage)\n}\n\n/** Object containing a large image */\nexport interface LargeImage {\n $type?: 'org.hypercerts.defs#largeImage'\n /** Image (up to 10MB) */\n image: BlobRef\n}\n\nconst hashLargeImage = 'largeImage'\n\nexport function isLargeImage<V>(v: V) {\n return is$typed(v, id, hashLargeImage)\n}\n\nexport function validateLargeImage<V>(v: V) {\n return validate<LargeImage & V>(v, id, hashLargeImage)\n}\n","/**\n * GENERATED CODE - DO NOT MODIFY\n */\nimport { type ValidationResult, BlobRef } from '@atproto/lexicon'\nimport { CID } from 'multiformats/cid'\nimport { validate as _validate } from '../../../../lexicons'\nimport {\n type $Typed,\n is$typed as _is$typed,\n type OmitKey,\n} from '../../../../util'\nimport type * as AppCertifiedDefs from '../../../app/certified/defs.js'\n\nconst is$typed = _is$typed,\n validate = _validate\nconst id = 'org.hypercerts.funding.receipt'\n\nexport interface Main {\n $type: 'org.hypercerts.funding.receipt'\n from: AppCertifiedDefs.Did\n /** The recipient of the funds. Can be identified by DID or a clear-text name. */\n to: string\n /** Amount of funding received. */\n amount: string\n /** Currency of the payment (e.g. EUR, USD, ETH). */\n currency: string\n /** How the funds were transferred (e.g. bank_transfer, credit_card, onchain, cash, check, payment_processor). */\n paymentRail?: string\n /** Optional network within the payment rail (e.g. arbitrum, ethereum, sepa, visa, paypal). */\n paymentNetwork?: string\n /** Identifier of the underlying payment transaction (e.g. bank reference, onchain transaction hash, or processor-specific ID). Use paymentNetwork to specify the network where applicable. */\n transactionId?: string\n /** Optional reference to the activity, project, or organization this funding relates to. */\n for?: string\n /** Optional notes or additional context for this funding receipt. */\n notes?: string\n /** Timestamp when the payment occurred. */\n occurredAt?: string\n /** Client-declared timestamp when this receipt record was created. */\n createdAt: string\n [k: string]: unknown\n}\n\nconst hashMain = 'main'\n\nexport function isMain<V>(v: V) {\n return is$typed(v, id, hashMain)\n}\n\nexport function validateMain<V>(v: V) {\n return validate<Main & V>(v, id, hashMain, true)\n}\n\nexport {\n type Main as Record,\n isMain as isRecord,\n validateMain as validateRecord,\n}\n","/**\n * @file Auto-generated exports for hypercert lexicons\n *\n * ⚠️ DO NOT EDIT THIS FILE MANUALLY ⚠️\n *\n * This file is automatically generated by scripts/generate-exports.js\n * Generated: 2026-01-12T15:25:09.220Z\n *\n * To regenerate this file, run:\n * npm run gen-api\n * or:\n * npm run gen-index\n *\n * ---\n *\n * Hypercert lexicon definitions for AT Protocol.\n *\n * This module exports the lexicon documents, collection names,\n * and generated TypeScript types for all hypercert-related record types.\n *\n * @packageDocumentation\n */\n\nimport { lexicons } from \"./lexicons.js\";\nimport type { LexiconDoc } from \"@atproto/lexicon\";\n\nimport BADGE_AWARD_LEXICON_JSON from \"../lexicons/app/certified/badge/award.json\";\nimport BADGE_DEFINITION_LEXICON_JSON from \"../lexicons/app/certified/badge/definition.json\";\nimport BADGE_RESPONSE_LEXICON_JSON from \"../lexicons/app/certified/badge/response.json\";\nimport CERTIFIED_DEFS_LEXICON_JSON from \"../lexicons/app/certified/defs.json\";\nimport LOCATION_LEXICON_JSON from \"../lexicons/app/certified/location.json\";\nimport STRONGREF_LEXICON_JSON from \"../lexicons/com/atproto/repo/strongRef.json\";\nimport ACTIVITY_LEXICON_JSON from \"../lexicons/org/hypercerts/claim/activity.json\";\nimport COLLECTION_LEXICON_JSON from \"../lexicons/org/hypercerts/claim/collection.json\";\nimport CONTRIBUTION_LEXICON_JSON from \"../lexicons/org/hypercerts/claim/contribution.json\";\nimport EVALUATION_LEXICON_JSON from \"../lexicons/org/hypercerts/claim/evaluation.json\";\nimport EVIDENCE_LEXICON_JSON from \"../lexicons/org/hypercerts/claim/evidence.json\";\nimport MEASUREMENT_LEXICON_JSON from \"../lexicons/org/hypercerts/claim/measurement.json\";\nimport PROJECT_LEXICON_JSON from \"../lexicons/org/hypercerts/claim/project.json\";\nimport RIGHTS_LEXICON_JSON from \"../lexicons/org/hypercerts/claim/rights.json\";\nimport HYPERCERTS_DEFS_LEXICON_JSON from \"../lexicons/org/hypercerts/defs.json\";\nimport FUNDING_RECEIPT_LEXICON_JSON from \"../lexicons/org/hypercerts/funding/receipt.json\";\n\n// Re-export individual lexicon JSON objects for direct access\nexport {\n BADGE_AWARD_LEXICON_JSON,\n BADGE_DEFINITION_LEXICON_JSON,\n BADGE_RESPONSE_LEXICON_JSON,\n CERTIFIED_DEFS_LEXICON_JSON,\n LOCATION_LEXICON_JSON,\n STRONGREF_LEXICON_JSON,\n ACTIVITY_LEXICON_JSON,\n COLLECTION_LEXICON_JSON,\n CONTRIBUTION_LEXICON_JSON,\n EVALUATION_LEXICON_JSON,\n EVIDENCE_LEXICON_JSON,\n MEASUREMENT_LEXICON_JSON,\n PROJECT_LEXICON_JSON,\n RIGHTS_LEXICON_JSON,\n HYPERCERTS_DEFS_LEXICON_JSON,\n FUNDING_RECEIPT_LEXICON_JSON,\n};\n\n// Re-export lexicon schemas, validation, and IDs\nexport {\n schemas as HYPERCERTS_SCHEMAS,\n schemaDict as HYPERCERTS_SCHEMA_DICT,\n lexicons,\n validate,\n ids as HYPERCERTS_NSIDS_BY_TYPE, // NSID constants mapped to type namespaces\n} from \"./lexicons.js\";\n\n// Individual NSID constants\nexport const BADGE_AWARD_NSID = \"app.certified.badge.award\" as const;\nexport const BADGE_DEFINITION_NSID = \"app.certified.badge.definition\" as const;\nexport const BADGE_RESPONSE_NSID = \"app.certified.badge.response\" as const;\nexport const CERTIFIED_DEFS_NSID = \"app.certified.defs\" as const;\nexport const LOCATION_NSID = \"app.certified.location\" as const;\nexport const STRONGREF_NSID = \"com.atproto.repo.strongRef\" as const;\nexport const ACTIVITY_NSID = \"org.hypercerts.claim.activity\" as const;\nexport const COLLECTION_NSID = \"org.hypercerts.claim.collection\" as const;\nexport const CONTRIBUTION_NSID = \"org.hypercerts.claim.contribution\" as const;\nexport const EVALUATION_NSID = \"org.hypercerts.claim.evaluation\" as const;\nexport const EVIDENCE_NSID = \"org.hypercerts.claim.evidence\" as const;\nexport const MEASUREMENT_NSID = \"org.hypercerts.claim.measurement\" as const;\nexport const PROJECT_NSID = \"org.hypercerts.claim.project\" as const;\nexport const RIGHTS_NSID = \"org.hypercerts.claim.rights\" as const;\nexport const HYPERCERTS_DEFS_NSID = \"org.hypercerts.defs\" as const;\nexport const FUNDING_RECEIPT_NSID = \"org.hypercerts.funding.receipt\" as const;\n\n/**\n * Collection NSIDs organized by semantic record type.\n *\n * Use these constants when performing record operations to ensure\n * correct collection names.\n */\nexport const HYPERCERTS_NSIDS = {\n BADGE_AWARD: BADGE_AWARD_NSID,\n BADGE_DEFINITION: BADGE_DEFINITION_NSID,\n BADGE_RESPONSE: BADGE_RESPONSE_NSID,\n CERTIFIED_DEFS: CERTIFIED_DEFS_NSID,\n LOCATION: LOCATION_NSID,\n STRONGREF: STRONGREF_NSID,\n ACTIVITY: ACTIVITY_NSID,\n COLLECTION: COLLECTION_NSID,\n CONTRIBUTION: CONTRIBUTION_NSID,\n EVALUATION: EVALUATION_NSID,\n EVIDENCE: EVIDENCE_NSID,\n MEASUREMENT: MEASUREMENT_NSID,\n PROJECT: PROJECT_NSID,\n RIGHTS: RIGHTS_NSID,\n HYPERCERTS_DEFS: HYPERCERTS_DEFS_NSID,\n FUNDING_RECEIPT: FUNDING_RECEIPT_NSID,\n} as const;\n\n/**\n * Lexicon JSON objects organized by semantic record type.\n */\nexport const HYPERCERTS_LEXICON_JSON = {\n BADGE_AWARD: BADGE_AWARD_LEXICON_JSON,\n BADGE_DEFINITION: BADGE_DEFINITION_LEXICON_JSON,\n BADGE_RESPONSE: BADGE_RESPONSE_LEXICON_JSON,\n CERTIFIED_DEFS: CERTIFIED_DEFS_LEXICON_JSON,\n LOCATION: LOCATION_LEXICON_JSON,\n STRONGREF: STRONGREF_LEXICON_JSON,\n ACTIVITY: ACTIVITY_LEXICON_JSON,\n COLLECTION: COLLECTION_LEXICON_JSON,\n CONTRIBUTION: CONTRIBUTION_LEXICON_JSON,\n EVALUATION: EVALUATION_LEXICON_JSON,\n EVIDENCE: EVIDENCE_LEXICON_JSON,\n MEASUREMENT: MEASUREMENT_LEXICON_JSON,\n PROJECT: PROJECT_LEXICON_JSON,\n RIGHTS: RIGHTS_LEXICON_JSON,\n HYPERCERTS_DEFS: HYPERCERTS_DEFS_LEXICON_JSON,\n FUNDING_RECEIPT: FUNDING_RECEIPT_LEXICON_JSON,\n} as const;\n\n// Individual lexicon objects (from lexicons.get())\nexport const BADGE_AWARD_LEXICON_DOC: LexiconDoc = lexicons.get(BADGE_AWARD_NSID)!;\nexport const BADGE_DEFINITION_LEXICON_DOC: LexiconDoc = lexicons.get(BADGE_DEFINITION_NSID)!;\nexport const BADGE_RESPONSE_LEXICON_DOC: LexiconDoc = lexicons.get(BADGE_RESPONSE_NSID)!;\nexport const CERTIFIED_DEFS_LEXICON_DOC: LexiconDoc = lexicons.get(CERTIFIED_DEFS_NSID)!;\nexport const LOCATION_LEXICON_DOC: LexiconDoc = lexicons.get(LOCATION_NSID)!;\nexport const STRONGREF_LEXICON_DOC: LexiconDoc = lexicons.get(STRONGREF_NSID)!;\nexport const ACTIVITY_LEXICON_DOC: LexiconDoc = lexicons.get(ACTIVITY_NSID)!;\nexport const COLLECTION_LEXICON_DOC: LexiconDoc = lexicons.get(COLLECTION_NSID)!;\nexport const CONTRIBUTION_LEXICON_DOC: LexiconDoc = lexicons.get(CONTRIBUTION_NSID)!;\nexport const EVALUATION_LEXICON_DOC: LexiconDoc = lexicons.get(EVALUATION_NSID)!;\nexport const EVIDENCE_LEXICON_DOC: LexiconDoc = lexicons.get(EVIDENCE_NSID)!;\nexport const MEASUREMENT_LEXICON_DOC: LexiconDoc = lexicons.get(MEASUREMENT_NSID)!;\nexport const PROJECT_LEXICON_DOC: LexiconDoc = lexicons.get(PROJECT_NSID)!;\nexport const RIGHTS_LEXICON_DOC: LexiconDoc = lexicons.get(RIGHTS_NSID)!;\nexport const HYPERCERTS_DEFS_LEXICON_DOC: LexiconDoc = lexicons.get(HYPERCERTS_DEFS_NSID)!;\nexport const FUNDING_RECEIPT_LEXICON_DOC: LexiconDoc = lexicons.get(FUNDING_RECEIPT_NSID)!;\n\n/**\n * Lexicon document objects organized by semantic record type.\n */\nexport const HYPERCERTS_LEXICON_DOC: Record<string, LexiconDoc> = {\n BADGE_AWARD: BADGE_AWARD_LEXICON_DOC,\n BADGE_DEFINITION: BADGE_DEFINITION_LEXICON_DOC,\n BADGE_RESPONSE: BADGE_RESPONSE_LEXICON_DOC,\n CERTIFIED_DEFS: CERTIFIED_DEFS_LEXICON_DOC,\n LOCATION: LOCATION_LEXICON_DOC,\n STRONGREF: STRONGREF_LEXICON_DOC,\n ACTIVITY: ACTIVITY_LEXICON_DOC,\n COLLECTION: COLLECTION_LEXICON_DOC,\n CONTRIBUTION: CONTRIBUTION_LEXICON_DOC,\n EVALUATION: EVALUATION_LEXICON_DOC,\n EVIDENCE: EVIDENCE_LEXICON_DOC,\n MEASUREMENT: MEASUREMENT_LEXICON_DOC,\n PROJECT: PROJECT_LEXICON_DOC,\n RIGHTS: RIGHTS_LEXICON_DOC,\n HYPERCERTS_DEFS: HYPERCERTS_DEFS_LEXICON_DOC,\n FUNDING_RECEIPT: FUNDING_RECEIPT_LEXICON_DOC,\n} as const;\n\n// Re-export generated types as namespaces (avoiding conflicts)\nexport * as AppCertifiedBadgeAward from \"./types/app/certified/badge/award.js\";\nexport * as AppCertifiedBadgeDefinition from \"./types/app/certified/badge/definition.js\";\nexport * as AppCertifiedBadgeResponse from \"./types/app/certified/badge/response.js\";\nexport * as AppCertifiedDefs from \"./types/app/certified/defs.js\";\nexport * as AppCertifiedLocation from \"./types/app/certified/location.js\";\nexport * as ComAtprotoRepoStrongRef from \"./types/com/atproto/repo/strongRef.js\";\nexport * as OrgHypercertsClaimActivity from \"./types/org/hypercerts/claim/activity.js\";\nexport * as OrgHypercertsClaimCollection from \"./types/org/hypercerts/claim/collection.js\";\nexport * as OrgHypercertsClaimContribution from \"./types/org/hypercerts/claim/contribution.js\";\nexport * as OrgHypercertsClaimEvaluation from \"./types/org/hypercerts/claim/evaluation.js\";\nexport * as OrgHypercertsClaimEvidence from \"./types/org/hypercerts/claim/evidence.js\";\nexport * as OrgHypercertsClaimMeasurement from \"./types/org/hypercerts/claim/measurement.js\";\nexport * as OrgHypercertsClaimProject from \"./types/org/hypercerts/claim/project.js\";\nexport * as OrgHypercertsClaimRights from \"./types/org/hypercerts/claim/rights.js\";\nexport * as OrgHypercertsDefs from \"./types/org/hypercerts/defs.js\";\nexport * as OrgHypercertsFundingReceipt from \"./types/org/hypercerts/funding/receipt.js\";\n\n// Re-export utilities\nexport * from \"./util.js\";\n"],"names":["is$typed","Lexicons","validate","ValidationError","_is$typed","_validate","id","hashMain","isMain","validateMain"],"mappings":"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"}
package/dist/index.mjs CHANGED
@@ -333,10 +333,13 @@ const schemaDict = {
333
333
  ref: 'lex:com.atproto.repo.strongRef',
334
334
  description: 'A strong reference to the rights that this hypercert has. The record referenced must conform with the lexicon org.hypercerts.claim.rights.',
335
335
  },
336
- location: {
337
- type: 'ref',
338
- ref: 'lex:com.atproto.repo.strongRef',
339
- description: 'A strong reference to the location where the activity was performed. The record referenced must conform with the lexicon app.certified.location.',
336
+ locations: {
337
+ type: 'array',
338
+ description: 'An array of strong references to the location where activity was performed. The record referenced must conform with the lexicon app.certified.location.',
339
+ items: {
340
+ type: 'ref',
341
+ ref: 'lex:com.atproto.repo.strongRef',
342
+ },
340
343
  },
341
344
  project: {
342
345
  type: 'string',
@@ -1344,10 +1347,13 @@ var defs$b = {
1344
1347
  ref: "com.atproto.repo.strongRef",
1345
1348
  description: "A strong reference to the rights that this hypercert has. The record referenced must conform with the lexicon org.hypercerts.claim.rights."
1346
1349
  },
1347
- location: {
1348
- type: "ref",
1349
- ref: "com.atproto.repo.strongRef",
1350
- description: "A strong reference to the location where the activity was performed. The record referenced must conform with the lexicon app.certified.location."
1350
+ locations: {
1351
+ type: "array",
1352
+ description: "An array of strong references to the location where activity was performed. The record referenced must conform with the lexicon app.certified.location.",
1353
+ items: {
1354
+ type: "ref",
1355
+ ref: "com.atproto.repo.strongRef"
1356
+ }
1351
1357
  },
1352
1358
  project: {
1353
1359
  type: "string",
@@ -2439,7 +2445,7 @@ var receipt = /*#__PURE__*/Object.freeze({
2439
2445
  * ⚠️ DO NOT EDIT THIS FILE MANUALLY ⚠️
2440
2446
  *
2441
2447
  * This file is automatically generated by scripts/generate-exports.js
2442
- * Generated: 2026-01-04T01:12:12.866Z
2448
+ * Generated: 2026-01-12T15:25:09.220Z
2443
2449
  *
2444
2450
  * To regenerate this file, run:
2445
2451
  * npm run gen-api