@hypercerts-org/lexicon 0.10.0-beta.5 → 0.10.0-beta.6

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.
Files changed (36) hide show
  1. package/CHANGELOG.md +25 -0
  2. package/SCHEMAS.md +21 -13
  3. package/dist/exports.d.ts +79 -22
  4. package/dist/exports.d.ts.map +1 -1
  5. package/dist/generated/exports.d.ts +79 -22
  6. package/dist/generated/exports.d.ts.map +1 -1
  7. package/dist/generated/lexicons.d.ts +150 -46
  8. package/dist/generated/lexicons.d.ts.map +1 -1
  9. package/dist/generated/types/org/hypercerts/claim/activity.d.ts +19 -2
  10. package/dist/generated/types/org/hypercerts/claim/activity.d.ts.map +1 -1
  11. package/dist/generated/types/org/hypercerts/claim/contributionDetails.d.ts +22 -0
  12. package/dist/generated/types/org/hypercerts/claim/contributionDetails.d.ts.map +1 -0
  13. package/dist/generated/types/org/hypercerts/claim/{contributor.d.ts → contributorInformation.d.ts} +3 -11
  14. package/dist/generated/types/org/hypercerts/claim/contributorInformation.d.ts.map +1 -0
  15. package/dist/index.cjs +341 -180
  16. package/dist/index.cjs.map +1 -1
  17. package/dist/index.mjs +329 -172
  18. package/dist/index.mjs.map +1 -1
  19. package/dist/lexicons.cjs +86 -27
  20. package/dist/lexicons.cjs.map +1 -1
  21. package/dist/lexicons.d.ts +150 -46
  22. package/dist/lexicons.d.ts.map +1 -1
  23. package/dist/lexicons.mjs +86 -27
  24. package/dist/lexicons.mjs.map +1 -1
  25. package/dist/types/org/hypercerts/claim/activity.d.ts +19 -2
  26. package/dist/types/org/hypercerts/claim/activity.d.ts.map +1 -1
  27. package/dist/types/org/hypercerts/claim/contributionDetails.d.ts +22 -0
  28. package/dist/types/org/hypercerts/claim/contributionDetails.d.ts.map +1 -0
  29. package/dist/types/org/hypercerts/claim/{contributor.d.ts → contributorInformation.d.ts} +3 -11
  30. package/dist/types/org/hypercerts/claim/contributorInformation.d.ts.map +1 -0
  31. package/lexicons/org/hypercerts/claim/activity.json +33 -3
  32. package/lexicons/org/hypercerts/claim/{contributor.json → contributionDetails.json} +5 -22
  33. package/lexicons/org/hypercerts/claim/contributorInformation.json +39 -0
  34. package/package.json +2 -2
  35. package/dist/generated/types/org/hypercerts/claim/contributor.d.ts.map +0 -1
  36. package/dist/types/org/hypercerts/claim/contributor.d.ts.map +0 -1
package/CHANGELOG.md CHANGED
@@ -1,5 +1,30 @@
1
1
  # @hypercerts-org/lexicon
2
2
 
3
+ ## 0.10.0-beta.6
4
+
5
+ ### Minor Changes
6
+
7
+ - [#102](https://github.com/hypercerts-org/hypercerts-lexicon/pull/102) [`68011ae`](https://github.com/hypercerts-org/hypercerts-lexicon/commit/68011ae1f58dcc35408e2400c02dfa16559e18d6) Thanks [@holkexyz](https://github.com/holkexyz)! - Refactor contributions structure and split contributor lexicon
8
+
9
+ **Breaking Changes:**
10
+ - **Activity lexicon (`org.hypercerts.claim.activity`):**
11
+ - Renamed `contributions` field to `contributors`
12
+ - Replaced `contributions` array (array of strongRefs) with new `contributors` array containing contributor objects
13
+ - Each contributor object has three fields:
14
+ - `contributorInformation` (required): string (DID/identifier) or strongRef to `org.hypercerts.claim.contributorInformation#main`
15
+ - `weight` (optional): positive number (stored as string)
16
+ - `contributionDetails` (optional): string or strongRef to `org.hypercerts.claim.contributionDetails#main`
17
+ - Renamed internal `contribution` object type to `contributor`
18
+ - Renamed string wrapper defs: `contributorInformationString` → `contributorIdentity`, `contributionDetailsString` → `contributorRole`
19
+ - Updated `contributorRole` string limits: maxLength 10000, maxGraphemes 1000
20
+ - **Contributor lexicon (`org.hypercerts.claim.contributor`):**
21
+ - Split into two separate lexicon files:
22
+ - `org.hypercerts.claim.contributorInformation`: new lexicon file containing `identifier`, `displayName`, `image` (contributor profile information)
23
+ - `org.hypercerts.claim.contributionDetails`: new lexicon file containing `role`, `contributionDescription`, `startDate`, `endDate` (contribution-specific details)
24
+ - The original `org.hypercerts.claim.contributor` lexicon has been removed
25
+
26
+ Existing contributions using the old structure will need to be migrated to the new format.
27
+
3
28
  ## 0.10.0-beta.5
4
29
 
5
30
  ### Minor Changes
package/SCHEMAS.md CHANGED
@@ -15,22 +15,30 @@ Hypercerts-specific lexicons for tracking impact work and claims.
15
15
 
16
16
  #### Properties
17
17
 
18
- | Property | Type | Required | Description | Comments |
19
- | ------------------ | -------- | -------- | -------------------------------------------------------------------------------------------------------------------------------------------------------------------------- | ------------------------------------ |
20
- | `title` | `string` | yes | Title of the hypercert. | maxLength: 256 |
21
- | `shortDescription` | `string` | yes | Short blurb of the impact work done. | maxLength: 3000, maxGraphemes: 300 |
22
- | `description` | `string` | no | Optional longer description of the impact work done. | maxLength: 30000, maxGraphemes: 3000 |
23
- | `image` | `union` | no | The hypercert visual representation as a URI or image blob. | |
24
- | `workScope` | `ref` | no | A strong reference to a record defining the scope of work. The record referenced should describe the logical scope using label-based conditions. | |
25
- | `startDate` | `string` | no | When the work began | |
26
- | `endDate` | `string` | no | When the work ended | |
27
- | `contributions` | `ref` | no | 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.contributor. | |
28
- | `rights` | `ref` | no | A strong reference to the rights that this hypercert has. The record referenced must conform with the lexicon org.hypercerts.claim.rights. | |
29
- | `locations` | `ref` | no | An array of strong references to the location where activity was performed. The record referenced must conform with the lexicon app.certified.location. | |
30
- | `createdAt` | `string` | yes | Client-declared timestamp when this record was originally created | |
18
+ | Property | Type | Required | Description | Comments |
19
+ | ------------------ | -------- | -------- | ------------------------------------------------------------------------------------------------------------------------------------------------------- | ------------------------------------ |
20
+ | `title` | `string` | yes | Title of the hypercert. | maxLength: 256 |
21
+ | `shortDescription` | `string` | yes | Short blurb of the impact work done. | maxLength: 3000, maxGraphemes: 300 |
22
+ | `description` | `string` | no | Optional longer description of the impact work done. | maxLength: 30000, maxGraphemes: 3000 |
23
+ | `image` | `union` | no | The hypercert visual representation as a URI or image blob. | |
24
+ | `workScope` | `ref` | no | A strong reference to a record defining the scope of work. The record referenced should describe the logical scope using label-based conditions. | |
25
+ | `startDate` | `string` | no | When the work began | |
26
+ | `endDate` | `string` | no | When the work ended | |
27
+ | `contributors` | `ref` | no | An array of contributor objects, each containing contributor information, weight, and contribution details. | |
28
+ | `rights` | `ref` | no | A strong reference to the rights that this hypercert has. The record referenced must conform with the lexicon org.hypercerts.claim.rights. | |
29
+ | `locations` | `ref` | no | An array of strong references to the location where activity was performed. The record referenced must conform with the lexicon app.certified.location. | |
30
+ | `createdAt` | `string` | yes | Client-declared timestamp when this record was originally created | |
31
31
 
32
32
  #### Defs
33
33
 
34
+ ##### contributor
35
+
36
+ | Property | Type | Required | Description |
37
+ | ------------------------ | -------- | -------- | ------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------ |
38
+ | `contributorInformation` | `union` | yes | Contributor information as a string (DID or identifier) or strong reference to for instance org.hypercerts.claim.contributorInformation#main. |
39
+ | `weight` | `string` | no | The relative weight/importance of this contribution (stored as a string to avoid float precision issues). Must be a positive numeric value. Weights do not need to sum to a specific total; normalization can be performed by the consuming application as needed. |
40
+ | `contributionDetails` | `union` | no | Contribution details as a string or strong reference to org.hypercerts.claim.contributionDetails#main. |
41
+
34
42
  ##### activityWeight
35
43
 
36
44
  | Property | Type | Required | Description |
package/dist/exports.d.ts CHANGED
@@ -4,7 +4,7 @@
4
4
  * ⚠️ DO NOT EDIT THIS FILE MANUALLY ⚠️
5
5
  *
6
6
  * This file is automatically generated by scripts/generate-exports.js
7
- * Generated: 2026-01-21T06:36:03.155Z
7
+ * Generated: 2026-01-21T07:15:37.790Z
8
8
  *
9
9
  * To regenerate this file, run:
10
10
  * npm run gen-api
@@ -29,14 +29,15 @@ import LOCATION_LEXICON_JSON from "../lexicons/app/certified/location.json";
29
29
  import STRONGREF_LEXICON_JSON from "../lexicons/com/atproto/repo/strongRef.json";
30
30
  import ACTIVITY_LEXICON_JSON from "../lexicons/org/hypercerts/claim/activity.json";
31
31
  import COLLECTION_LEXICON_JSON from "../lexicons/org/hypercerts/claim/collection.json";
32
- import CONTRIBUTOR_LEXICON_JSON from "../lexicons/org/hypercerts/claim/contributor.json";
32
+ import CONTRIBUTIONDETAILS_LEXICON_JSON from "../lexicons/org/hypercerts/claim/contributionDetails.json";
33
+ import CONTRIBUTORINFORMATION_LEXICON_JSON from "../lexicons/org/hypercerts/claim/contributorInformation.json";
33
34
  import EVALUATION_LEXICON_JSON from "../lexicons/org/hypercerts/claim/evaluation.json";
34
35
  import EVIDENCE_LEXICON_JSON from "../lexicons/org/hypercerts/claim/evidence.json";
35
36
  import MEASUREMENT_LEXICON_JSON from "../lexicons/org/hypercerts/claim/measurement.json";
36
37
  import RIGHTS_LEXICON_JSON from "../lexicons/org/hypercerts/claim/rights.json";
37
38
  import HYPERCERTS_DEFS_LEXICON_JSON from "../lexicons/org/hypercerts/defs.json";
38
39
  import FUNDING_RECEIPT_LEXICON_JSON from "../lexicons/org/hypercerts/funding/receipt.json";
39
- export { BADGE_AWARD_LEXICON_JSON, BADGE_DEFINITION_LEXICON_JSON, BADGE_RESPONSE_LEXICON_JSON, CERTIFIED_DEFS_LEXICON_JSON, LOCATION_LEXICON_JSON, STRONGREF_LEXICON_JSON, ACTIVITY_LEXICON_JSON, COLLECTION_LEXICON_JSON, CONTRIBUTOR_LEXICON_JSON, EVALUATION_LEXICON_JSON, EVIDENCE_LEXICON_JSON, MEASUREMENT_LEXICON_JSON, RIGHTS_LEXICON_JSON, HYPERCERTS_DEFS_LEXICON_JSON, FUNDING_RECEIPT_LEXICON_JSON, };
40
+ export { BADGE_AWARD_LEXICON_JSON, BADGE_DEFINITION_LEXICON_JSON, BADGE_RESPONSE_LEXICON_JSON, CERTIFIED_DEFS_LEXICON_JSON, LOCATION_LEXICON_JSON, STRONGREF_LEXICON_JSON, ACTIVITY_LEXICON_JSON, COLLECTION_LEXICON_JSON, CONTRIBUTIONDETAILS_LEXICON_JSON, CONTRIBUTORINFORMATION_LEXICON_JSON, EVALUATION_LEXICON_JSON, EVIDENCE_LEXICON_JSON, MEASUREMENT_LEXICON_JSON, RIGHTS_LEXICON_JSON, HYPERCERTS_DEFS_LEXICON_JSON, FUNDING_RECEIPT_LEXICON_JSON, };
40
41
  export { schemas as HYPERCERTS_SCHEMAS, schemaDict as HYPERCERTS_SCHEMA_DICT, lexicons, validate, ids as HYPERCERTS_NSIDS_BY_TYPE, } from "./lexicons.js";
41
42
  export declare const BADGE_AWARD_NSID: "app.certified.badge.award";
42
43
  export declare const BADGE_DEFINITION_NSID: "app.certified.badge.definition";
@@ -46,7 +47,8 @@ export declare const LOCATION_NSID: "app.certified.location";
46
47
  export declare const STRONGREF_NSID: "com.atproto.repo.strongRef";
47
48
  export declare const ACTIVITY_NSID: "org.hypercerts.claim.activity";
48
49
  export declare const COLLECTION_NSID: "org.hypercerts.claim.collection";
49
- export declare const CONTRIBUTOR_NSID: "org.hypercerts.claim.contributor";
50
+ export declare const CONTRIBUTIONDETAILS_NSID: "org.hypercerts.claim.contributionDetails";
51
+ export declare const CONTRIBUTORINFORMATION_NSID: "org.hypercerts.claim.contributorInformation";
50
52
  export declare const EVALUATION_NSID: "org.hypercerts.claim.evaluation";
51
53
  export declare const EVIDENCE_NSID: "org.hypercerts.claim.evidence";
52
54
  export declare const MEASUREMENT_NSID: "org.hypercerts.claim.measurement";
@@ -68,7 +70,8 @@ export declare const HYPERCERTS_NSIDS: {
68
70
  readonly STRONGREF: "com.atproto.repo.strongRef";
69
71
  readonly ACTIVITY: "org.hypercerts.claim.activity";
70
72
  readonly COLLECTION: "org.hypercerts.claim.collection";
71
- readonly CONTRIBUTOR: "org.hypercerts.claim.contributor";
73
+ readonly CONTRIBUTIONDETAILS: "org.hypercerts.claim.contributionDetails";
74
+ readonly CONTRIBUTORINFORMATION: "org.hypercerts.claim.contributorInformation";
72
75
  readonly EVALUATION: "org.hypercerts.claim.evaluation";
73
76
  readonly EVIDENCE: "org.hypercerts.claim.evidence";
74
77
  readonly MEASUREMENT: "org.hypercerts.claim.measurement";
@@ -338,7 +341,7 @@ export declare const HYPERCERTS_LEXICON_JSON: {
338
341
  format: string;
339
342
  description: string;
340
343
  };
341
- contributions: {
344
+ contributors: {
342
345
  type: string;
343
346
  description: string;
344
347
  items: {
@@ -367,6 +370,36 @@ export declare const HYPERCERTS_LEXICON_JSON: {
367
370
  };
368
371
  };
369
372
  };
373
+ contributor: {
374
+ type: string;
375
+ required: string[];
376
+ properties: {
377
+ contributorInformation: {
378
+ type: string;
379
+ refs: string[];
380
+ description: string;
381
+ };
382
+ weight: {
383
+ type: string;
384
+ description: string;
385
+ };
386
+ contributionDetails: {
387
+ type: string;
388
+ refs: string[];
389
+ description: string;
390
+ };
391
+ };
392
+ };
393
+ contributorIdentity: {
394
+ type: string;
395
+ description: string;
396
+ };
397
+ contributorRole: {
398
+ type: string;
399
+ description: string;
400
+ maxLength: number;
401
+ maxGraphemes: number;
402
+ };
370
403
  activityWeight: {
371
404
  type: string;
372
405
  required: string[];
@@ -435,7 +468,7 @@ export declare const HYPERCERTS_LEXICON_JSON: {
435
468
  };
436
469
  };
437
470
  };
438
- readonly CONTRIBUTOR: {
471
+ readonly CONTRIBUTIONDETAILS: {
439
472
  lexicon: number;
440
473
  id: string;
441
474
  defs: {
@@ -447,39 +480,61 @@ export declare const HYPERCERTS_LEXICON_JSON: {
447
480
  type: string;
448
481
  required: string[];
449
482
  properties: {
450
- identifier: {
483
+ role: {
451
484
  type: string;
452
485
  description: string;
486
+ maxLength: number;
453
487
  };
454
- displayName: {
488
+ contributionDescription: {
455
489
  type: string;
456
490
  description: string;
457
491
  maxLength: number;
492
+ maxGraphemes: number;
458
493
  };
459
- image: {
494
+ startDate: {
460
495
  type: string;
461
- refs: string[];
496
+ format: string;
462
497
  description: string;
463
498
  };
464
- role: {
499
+ endDate: {
500
+ type: string;
501
+ format: string;
502
+ description: string;
503
+ };
504
+ createdAt: {
465
505
  type: string;
506
+ format: string;
466
507
  description: string;
467
- maxLength: number;
468
508
  };
469
- contributionDescription: {
509
+ };
510
+ };
511
+ };
512
+ };
513
+ };
514
+ readonly CONTRIBUTORINFORMATION: {
515
+ lexicon: number;
516
+ id: string;
517
+ defs: {
518
+ main: {
519
+ type: string;
520
+ description: string;
521
+ key: string;
522
+ record: {
523
+ type: string;
524
+ required: string[];
525
+ properties: {
526
+ identifier: {
470
527
  type: string;
471
528
  description: string;
472
- maxLength: number;
473
- maxGraphemes: number;
474
529
  };
475
- startDate: {
530
+ displayName: {
476
531
  type: string;
477
- format: string;
478
532
  description: string;
533
+ maxLength: number;
479
534
  };
480
- endDate: {
535
+ image: {
481
536
  type: string;
482
- format: string;
537
+ refs: string[];
483
538
  description: string;
484
539
  };
485
540
  createdAt: {
@@ -892,7 +947,8 @@ export declare const LOCATION_LEXICON_DOC: LexiconDoc;
892
947
  export declare const STRONGREF_LEXICON_DOC: LexiconDoc;
893
948
  export declare const ACTIVITY_LEXICON_DOC: LexiconDoc;
894
949
  export declare const COLLECTION_LEXICON_DOC: LexiconDoc;
895
- export declare const CONTRIBUTOR_LEXICON_DOC: LexiconDoc;
950
+ export declare const CONTRIBUTIONDETAILS_LEXICON_DOC: LexiconDoc;
951
+ export declare const CONTRIBUTORINFORMATION_LEXICON_DOC: LexiconDoc;
896
952
  export declare const EVALUATION_LEXICON_DOC: LexiconDoc;
897
953
  export declare const EVIDENCE_LEXICON_DOC: LexiconDoc;
898
954
  export declare const MEASUREMENT_LEXICON_DOC: LexiconDoc;
@@ -911,7 +967,8 @@ export * as AppCertifiedLocation from "./types/app/certified/location.js";
911
967
  export * as ComAtprotoRepoStrongRef from "./types/com/atproto/repo/strongRef.js";
912
968
  export * as OrgHypercertsClaimActivity from "./types/org/hypercerts/claim/activity.js";
913
969
  export * as OrgHypercertsClaimCollection from "./types/org/hypercerts/claim/collection.js";
914
- export * as OrgHypercertsClaimContributor from "./types/org/hypercerts/claim/contributor.js";
970
+ export * as OrgHypercertsClaimContributionDetails from "./types/org/hypercerts/claim/contributionDetails.js";
971
+ export * as OrgHypercertsClaimContributorInformation from "./types/org/hypercerts/claim/contributorInformation.js";
915
972
  export * as OrgHypercertsClaimEvaluation from "./types/org/hypercerts/claim/evaluation.js";
916
973
  export * as OrgHypercertsClaimEvidence from "./types/org/hypercerts/claim/evidence.js";
917
974
  export * as OrgHypercertsClaimMeasurement from "./types/org/hypercerts/claim/measurement.js";
@@ -1 +1 @@
1
- {"version":3,"file":"exports.d.ts","sourceRoot":"","sources":["../generated/exports.ts"],"names":[],"mappings":"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"}
1
+ {"version":3,"file":"exports.d.ts","sourceRoot":"","sources":["../generated/exports.ts"],"names":[],"mappings":"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"}
@@ -4,7 +4,7 @@
4
4
  * ⚠️ DO NOT EDIT THIS FILE MANUALLY ⚠️
5
5
  *
6
6
  * This file is automatically generated by scripts/generate-exports.js
7
- * Generated: 2026-01-21T06:36:03.155Z
7
+ * Generated: 2026-01-21T07:15:37.790Z
8
8
  *
9
9
  * To regenerate this file, run:
10
10
  * npm run gen-api
@@ -29,14 +29,15 @@ import LOCATION_LEXICON_JSON from "../lexicons/app/certified/location.json";
29
29
  import STRONGREF_LEXICON_JSON from "../lexicons/com/atproto/repo/strongRef.json";
30
30
  import ACTIVITY_LEXICON_JSON from "../lexicons/org/hypercerts/claim/activity.json";
31
31
  import COLLECTION_LEXICON_JSON from "../lexicons/org/hypercerts/claim/collection.json";
32
- import CONTRIBUTOR_LEXICON_JSON from "../lexicons/org/hypercerts/claim/contributor.json";
32
+ import CONTRIBUTIONDETAILS_LEXICON_JSON from "../lexicons/org/hypercerts/claim/contributionDetails.json";
33
+ import CONTRIBUTORINFORMATION_LEXICON_JSON from "../lexicons/org/hypercerts/claim/contributorInformation.json";
33
34
  import EVALUATION_LEXICON_JSON from "../lexicons/org/hypercerts/claim/evaluation.json";
34
35
  import EVIDENCE_LEXICON_JSON from "../lexicons/org/hypercerts/claim/evidence.json";
35
36
  import MEASUREMENT_LEXICON_JSON from "../lexicons/org/hypercerts/claim/measurement.json";
36
37
  import RIGHTS_LEXICON_JSON from "../lexicons/org/hypercerts/claim/rights.json";
37
38
  import HYPERCERTS_DEFS_LEXICON_JSON from "../lexicons/org/hypercerts/defs.json";
38
39
  import FUNDING_RECEIPT_LEXICON_JSON from "../lexicons/org/hypercerts/funding/receipt.json";
39
- export { BADGE_AWARD_LEXICON_JSON, BADGE_DEFINITION_LEXICON_JSON, BADGE_RESPONSE_LEXICON_JSON, CERTIFIED_DEFS_LEXICON_JSON, LOCATION_LEXICON_JSON, STRONGREF_LEXICON_JSON, ACTIVITY_LEXICON_JSON, COLLECTION_LEXICON_JSON, CONTRIBUTOR_LEXICON_JSON, EVALUATION_LEXICON_JSON, EVIDENCE_LEXICON_JSON, MEASUREMENT_LEXICON_JSON, RIGHTS_LEXICON_JSON, HYPERCERTS_DEFS_LEXICON_JSON, FUNDING_RECEIPT_LEXICON_JSON, };
40
+ export { BADGE_AWARD_LEXICON_JSON, BADGE_DEFINITION_LEXICON_JSON, BADGE_RESPONSE_LEXICON_JSON, CERTIFIED_DEFS_LEXICON_JSON, LOCATION_LEXICON_JSON, STRONGREF_LEXICON_JSON, ACTIVITY_LEXICON_JSON, COLLECTION_LEXICON_JSON, CONTRIBUTIONDETAILS_LEXICON_JSON, CONTRIBUTORINFORMATION_LEXICON_JSON, EVALUATION_LEXICON_JSON, EVIDENCE_LEXICON_JSON, MEASUREMENT_LEXICON_JSON, RIGHTS_LEXICON_JSON, HYPERCERTS_DEFS_LEXICON_JSON, FUNDING_RECEIPT_LEXICON_JSON, };
40
41
  export { schemas as HYPERCERTS_SCHEMAS, schemaDict as HYPERCERTS_SCHEMA_DICT, lexicons, validate, ids as HYPERCERTS_NSIDS_BY_TYPE, } from "./lexicons.js";
41
42
  export declare const BADGE_AWARD_NSID: "app.certified.badge.award";
42
43
  export declare const BADGE_DEFINITION_NSID: "app.certified.badge.definition";
@@ -46,7 +47,8 @@ export declare const LOCATION_NSID: "app.certified.location";
46
47
  export declare const STRONGREF_NSID: "com.atproto.repo.strongRef";
47
48
  export declare const ACTIVITY_NSID: "org.hypercerts.claim.activity";
48
49
  export declare const COLLECTION_NSID: "org.hypercerts.claim.collection";
49
- export declare const CONTRIBUTOR_NSID: "org.hypercerts.claim.contributor";
50
+ export declare const CONTRIBUTIONDETAILS_NSID: "org.hypercerts.claim.contributionDetails";
51
+ export declare const CONTRIBUTORINFORMATION_NSID: "org.hypercerts.claim.contributorInformation";
50
52
  export declare const EVALUATION_NSID: "org.hypercerts.claim.evaluation";
51
53
  export declare const EVIDENCE_NSID: "org.hypercerts.claim.evidence";
52
54
  export declare const MEASUREMENT_NSID: "org.hypercerts.claim.measurement";
@@ -68,7 +70,8 @@ export declare const HYPERCERTS_NSIDS: {
68
70
  readonly STRONGREF: "com.atproto.repo.strongRef";
69
71
  readonly ACTIVITY: "org.hypercerts.claim.activity";
70
72
  readonly COLLECTION: "org.hypercerts.claim.collection";
71
- readonly CONTRIBUTOR: "org.hypercerts.claim.contributor";
73
+ readonly CONTRIBUTIONDETAILS: "org.hypercerts.claim.contributionDetails";
74
+ readonly CONTRIBUTORINFORMATION: "org.hypercerts.claim.contributorInformation";
72
75
  readonly EVALUATION: "org.hypercerts.claim.evaluation";
73
76
  readonly EVIDENCE: "org.hypercerts.claim.evidence";
74
77
  readonly MEASUREMENT: "org.hypercerts.claim.measurement";
@@ -338,7 +341,7 @@ export declare const HYPERCERTS_LEXICON_JSON: {
338
341
  format: string;
339
342
  description: string;
340
343
  };
341
- contributions: {
344
+ contributors: {
342
345
  type: string;
343
346
  description: string;
344
347
  items: {
@@ -367,6 +370,36 @@ export declare const HYPERCERTS_LEXICON_JSON: {
367
370
  };
368
371
  };
369
372
  };
373
+ contributor: {
374
+ type: string;
375
+ required: string[];
376
+ properties: {
377
+ contributorInformation: {
378
+ type: string;
379
+ refs: string[];
380
+ description: string;
381
+ };
382
+ weight: {
383
+ type: string;
384
+ description: string;
385
+ };
386
+ contributionDetails: {
387
+ type: string;
388
+ refs: string[];
389
+ description: string;
390
+ };
391
+ };
392
+ };
393
+ contributorIdentity: {
394
+ type: string;
395
+ description: string;
396
+ };
397
+ contributorRole: {
398
+ type: string;
399
+ description: string;
400
+ maxLength: number;
401
+ maxGraphemes: number;
402
+ };
370
403
  activityWeight: {
371
404
  type: string;
372
405
  required: string[];
@@ -435,7 +468,7 @@ export declare const HYPERCERTS_LEXICON_JSON: {
435
468
  };
436
469
  };
437
470
  };
438
- readonly CONTRIBUTOR: {
471
+ readonly CONTRIBUTIONDETAILS: {
439
472
  lexicon: number;
440
473
  id: string;
441
474
  defs: {
@@ -447,39 +480,61 @@ export declare const HYPERCERTS_LEXICON_JSON: {
447
480
  type: string;
448
481
  required: string[];
449
482
  properties: {
450
- identifier: {
483
+ role: {
451
484
  type: string;
452
485
  description: string;
486
+ maxLength: number;
453
487
  };
454
- displayName: {
488
+ contributionDescription: {
455
489
  type: string;
456
490
  description: string;
457
491
  maxLength: number;
492
+ maxGraphemes: number;
458
493
  };
459
- image: {
494
+ startDate: {
460
495
  type: string;
461
- refs: string[];
496
+ format: string;
462
497
  description: string;
463
498
  };
464
- role: {
499
+ endDate: {
500
+ type: string;
501
+ format: string;
502
+ description: string;
503
+ };
504
+ createdAt: {
465
505
  type: string;
506
+ format: string;
466
507
  description: string;
467
- maxLength: number;
468
508
  };
469
- contributionDescription: {
509
+ };
510
+ };
511
+ };
512
+ };
513
+ };
514
+ readonly CONTRIBUTORINFORMATION: {
515
+ lexicon: number;
516
+ id: string;
517
+ defs: {
518
+ main: {
519
+ type: string;
520
+ description: string;
521
+ key: string;
522
+ record: {
523
+ type: string;
524
+ required: string[];
525
+ properties: {
526
+ identifier: {
470
527
  type: string;
471
528
  description: string;
472
- maxLength: number;
473
- maxGraphemes: number;
474
529
  };
475
- startDate: {
530
+ displayName: {
476
531
  type: string;
477
- format: string;
478
532
  description: string;
533
+ maxLength: number;
479
534
  };
480
- endDate: {
535
+ image: {
481
536
  type: string;
482
- format: string;
537
+ refs: string[];
483
538
  description: string;
484
539
  };
485
540
  createdAt: {
@@ -892,7 +947,8 @@ export declare const LOCATION_LEXICON_DOC: LexiconDoc;
892
947
  export declare const STRONGREF_LEXICON_DOC: LexiconDoc;
893
948
  export declare const ACTIVITY_LEXICON_DOC: LexiconDoc;
894
949
  export declare const COLLECTION_LEXICON_DOC: LexiconDoc;
895
- export declare const CONTRIBUTOR_LEXICON_DOC: LexiconDoc;
950
+ export declare const CONTRIBUTIONDETAILS_LEXICON_DOC: LexiconDoc;
951
+ export declare const CONTRIBUTORINFORMATION_LEXICON_DOC: LexiconDoc;
896
952
  export declare const EVALUATION_LEXICON_DOC: LexiconDoc;
897
953
  export declare const EVIDENCE_LEXICON_DOC: LexiconDoc;
898
954
  export declare const MEASUREMENT_LEXICON_DOC: LexiconDoc;
@@ -911,7 +967,8 @@ export * as AppCertifiedLocation from "./types/app/certified/location.js";
911
967
  export * as ComAtprotoRepoStrongRef from "./types/com/atproto/repo/strongRef.js";
912
968
  export * as OrgHypercertsClaimActivity from "./types/org/hypercerts/claim/activity.js";
913
969
  export * as OrgHypercertsClaimCollection from "./types/org/hypercerts/claim/collection.js";
914
- export * as OrgHypercertsClaimContributor from "./types/org/hypercerts/claim/contributor.js";
970
+ export * as OrgHypercertsClaimContributionDetails from "./types/org/hypercerts/claim/contributionDetails.js";
971
+ export * as OrgHypercertsClaimContributorInformation from "./types/org/hypercerts/claim/contributorInformation.js";
915
972
  export * as OrgHypercertsClaimEvaluation from "./types/org/hypercerts/claim/evaluation.js";
916
973
  export * as OrgHypercertsClaimEvidence from "./types/org/hypercerts/claim/evidence.js";
917
974
  export * as OrgHypercertsClaimMeasurement from "./types/org/hypercerts/claim/measurement.js";
@@ -1 +1 @@
1
- {"version":3,"file":"exports.d.ts","sourceRoot":"","sources":["../../generated/exports.ts"],"names":[],"mappings":"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"}
1
+ {"version":3,"file":"exports.d.ts","sourceRoot":"","sources":["../../generated/exports.ts"],"names":[],"mappings":"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"}