@hypercerts-org/lexicon 0.10.0-beta.12 → 0.10.0-beta.13
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
- package/CHANGELOG.md +93 -0
- package/README.md +142 -0
- package/SCHEMAS.md +174 -67
- package/dist/exports.d.ts +103 -61
- package/dist/exports.d.ts.map +1 -1
- package/dist/generated/exports.d.ts +103 -61
- package/dist/generated/exports.d.ts.map +1 -1
- package/dist/generated/lexicons.d.ts +196 -112
- package/dist/generated/lexicons.d.ts.map +1 -1
- package/dist/generated/types/app/certified/location.d.ts +9 -1
- package/dist/generated/types/app/certified/location.d.ts.map +1 -1
- package/dist/generated/types/org/hypercerts/claim/attachment.d.ts +37 -0
- package/dist/generated/types/org/hypercerts/claim/attachment.d.ts.map +1 -0
- package/dist/index.cjs +283 -190
- package/dist/index.cjs.map +1 -1
- package/dist/index.mjs +280 -187
- package/dist/index.mjs.map +1 -1
- package/dist/lexicons.cjs +102 -59
- package/dist/lexicons.cjs.map +1 -1
- package/dist/lexicons.d.ts +196 -112
- package/dist/lexicons.d.ts.map +1 -1
- package/dist/lexicons.mjs +102 -59
- package/dist/lexicons.mjs.map +1 -1
- package/dist/types/app/certified/location.d.ts +9 -1
- package/dist/types/app/certified/location.d.ts.map +1 -1
- package/dist/types/org/hypercerts/claim/attachment.d.ts +37 -0
- package/dist/types/org/hypercerts/claim/attachment.d.ts.map +1 -0
- package/lexicons/app/certified/location.json +16 -2
- package/lexicons/org/hypercerts/claim/attachment.json +86 -0
- package/package.json +1 -1
- package/dist/generated/types/org/hypercerts/claim/evidence.d.ts +0 -29
- package/dist/generated/types/org/hypercerts/claim/evidence.d.ts.map +0 -1
- package/dist/types/org/hypercerts/claim/evidence.d.ts +0 -29
- package/dist/types/org/hypercerts/claim/evidence.d.ts.map +0 -1
- package/lexicons/org/hypercerts/claim/evidence.json +0 -57
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-
|
|
7
|
+
* Generated: 2026-01-25T04:32:42.985Z
|
|
8
8
|
*
|
|
9
9
|
* To regenerate this file, run:
|
|
10
10
|
* npm run gen-api
|
|
@@ -28,17 +28,17 @@ import CERTIFIED_DEFS_LEXICON_JSON from "../lexicons/app/certified/defs.json";
|
|
|
28
28
|
import LOCATION_LEXICON_JSON from "../lexicons/app/certified/location.json";
|
|
29
29
|
import STRONG_REF_LEXICON_JSON from "../lexicons/com/atproto/repo/strongRef.json";
|
|
30
30
|
import ACTIVITY_LEXICON_JSON from "../lexicons/org/hypercerts/claim/activity.json";
|
|
31
|
+
import ATTACHMENT_LEXICON_JSON from "../lexicons/org/hypercerts/claim/attachment.json";
|
|
31
32
|
import COLLECTION_LEXICON_JSON from "../lexicons/org/hypercerts/claim/collection.json";
|
|
32
33
|
import CONTRIBUTION_DETAILS_LEXICON_JSON from "../lexicons/org/hypercerts/claim/contributionDetails.json";
|
|
33
34
|
import CONTRIBUTOR_INFORMATION_LEXICON_JSON from "../lexicons/org/hypercerts/claim/contributorInformation.json";
|
|
34
35
|
import EVALUATION_LEXICON_JSON from "../lexicons/org/hypercerts/claim/evaluation.json";
|
|
35
|
-
import EVIDENCE_LEXICON_JSON from "../lexicons/org/hypercerts/claim/evidence.json";
|
|
36
36
|
import MEASUREMENT_LEXICON_JSON from "../lexicons/org/hypercerts/claim/measurement.json";
|
|
37
37
|
import RIGHTS_LEXICON_JSON from "../lexicons/org/hypercerts/claim/rights.json";
|
|
38
38
|
import HYPERCERTS_DEFS_LEXICON_JSON from "../lexicons/org/hypercerts/defs.json";
|
|
39
39
|
import FUNDING_RECEIPT_LEXICON_JSON from "../lexicons/org/hypercerts/funding/receipt.json";
|
|
40
40
|
import WORK_SCOPE_TAG_LEXICON_JSON from "../lexicons/org/hypercerts/helper/workScopeTag.json";
|
|
41
|
-
export { BADGE_AWARD_LEXICON_JSON, BADGE_DEFINITION_LEXICON_JSON, BADGE_RESPONSE_LEXICON_JSON, CERTIFIED_DEFS_LEXICON_JSON, LOCATION_LEXICON_JSON, STRONG_REF_LEXICON_JSON, ACTIVITY_LEXICON_JSON, COLLECTION_LEXICON_JSON, CONTRIBUTION_DETAILS_LEXICON_JSON, CONTRIBUTOR_INFORMATION_LEXICON_JSON, EVALUATION_LEXICON_JSON,
|
|
41
|
+
export { BADGE_AWARD_LEXICON_JSON, BADGE_DEFINITION_LEXICON_JSON, BADGE_RESPONSE_LEXICON_JSON, CERTIFIED_DEFS_LEXICON_JSON, LOCATION_LEXICON_JSON, STRONG_REF_LEXICON_JSON, ACTIVITY_LEXICON_JSON, ATTACHMENT_LEXICON_JSON, COLLECTION_LEXICON_JSON, CONTRIBUTION_DETAILS_LEXICON_JSON, CONTRIBUTOR_INFORMATION_LEXICON_JSON, EVALUATION_LEXICON_JSON, MEASUREMENT_LEXICON_JSON, RIGHTS_LEXICON_JSON, HYPERCERTS_DEFS_LEXICON_JSON, FUNDING_RECEIPT_LEXICON_JSON, WORK_SCOPE_TAG_LEXICON_JSON, };
|
|
42
42
|
export { schemas as HYPERCERTS_SCHEMAS, schemaDict as HYPERCERTS_SCHEMA_DICT, lexicons, validate, ids as HYPERCERTS_NSIDS_BY_TYPE, } from "./lexicons.js";
|
|
43
43
|
export declare const BADGE_AWARD_NSID: "app.certified.badge.award";
|
|
44
44
|
export declare const BADGE_DEFINITION_NSID: "app.certified.badge.definition";
|
|
@@ -47,11 +47,11 @@ export declare const CERTIFIED_DEFS_NSID: "app.certified.defs";
|
|
|
47
47
|
export declare const LOCATION_NSID: "app.certified.location";
|
|
48
48
|
export declare const STRONG_REF_NSID: "com.atproto.repo.strongRef";
|
|
49
49
|
export declare const ACTIVITY_NSID: "org.hypercerts.claim.activity";
|
|
50
|
+
export declare const ATTACHMENT_NSID: "org.hypercerts.claim.attachment";
|
|
50
51
|
export declare const COLLECTION_NSID: "org.hypercerts.claim.collection";
|
|
51
52
|
export declare const CONTRIBUTION_DETAILS_NSID: "org.hypercerts.claim.contributionDetails";
|
|
52
53
|
export declare const CONTRIBUTOR_INFORMATION_NSID: "org.hypercerts.claim.contributorInformation";
|
|
53
54
|
export declare const EVALUATION_NSID: "org.hypercerts.claim.evaluation";
|
|
54
|
-
export declare const EVIDENCE_NSID: "org.hypercerts.claim.evidence";
|
|
55
55
|
export declare const MEASUREMENT_NSID: "org.hypercerts.claim.measurement";
|
|
56
56
|
export declare const RIGHTS_NSID: "org.hypercerts.claim.rights";
|
|
57
57
|
export declare const HYPERCERTS_DEFS_NSID: "org.hypercerts.defs";
|
|
@@ -71,11 +71,11 @@ export declare const HYPERCERTS_NSIDS: {
|
|
|
71
71
|
readonly LOCATION: "app.certified.location";
|
|
72
72
|
readonly STRONG_REF: "com.atproto.repo.strongRef";
|
|
73
73
|
readonly ACTIVITY: "org.hypercerts.claim.activity";
|
|
74
|
+
readonly ATTACHMENT: "org.hypercerts.claim.attachment";
|
|
74
75
|
readonly COLLECTION: "org.hypercerts.claim.collection";
|
|
75
76
|
readonly CONTRIBUTION_DETAILS: "org.hypercerts.claim.contributionDetails";
|
|
76
77
|
readonly CONTRIBUTOR_INFORMATION: "org.hypercerts.claim.contributorInformation";
|
|
77
78
|
readonly EVALUATION: "org.hypercerts.claim.evaluation";
|
|
78
|
-
readonly EVIDENCE: "org.hypercerts.claim.evidence";
|
|
79
79
|
readonly MEASUREMENT: "org.hypercerts.claim.measurement";
|
|
80
80
|
readonly RIGHTS: "org.hypercerts.claim.rights";
|
|
81
81
|
readonly HYPERCERTS_DEFS: "org.hypercerts.defs";
|
|
@@ -272,6 +272,19 @@ export declare const HYPERCERTS_LEXICON_JSON: {
|
|
|
272
272
|
};
|
|
273
273
|
};
|
|
274
274
|
};
|
|
275
|
+
string: {
|
|
276
|
+
type: string;
|
|
277
|
+
required: string[];
|
|
278
|
+
description: string;
|
|
279
|
+
properties: {
|
|
280
|
+
string: {
|
|
281
|
+
type: string;
|
|
282
|
+
description: string;
|
|
283
|
+
maxLength: number;
|
|
284
|
+
maxGraphemes: number;
|
|
285
|
+
};
|
|
286
|
+
};
|
|
287
|
+
};
|
|
275
288
|
};
|
|
276
289
|
};
|
|
277
290
|
readonly STRONG_REF: {
|
|
@@ -427,6 +440,89 @@ export declare const HYPERCERTS_LEXICON_JSON: {
|
|
|
427
440
|
};
|
|
428
441
|
};
|
|
429
442
|
};
|
|
443
|
+
readonly ATTACHMENT: {
|
|
444
|
+
lexicon: number;
|
|
445
|
+
id: string;
|
|
446
|
+
defs: {
|
|
447
|
+
main: {
|
|
448
|
+
type: string;
|
|
449
|
+
description: string;
|
|
450
|
+
key: string;
|
|
451
|
+
record: {
|
|
452
|
+
type: string;
|
|
453
|
+
required: string[];
|
|
454
|
+
properties: {
|
|
455
|
+
subjects: {
|
|
456
|
+
type: string;
|
|
457
|
+
description: string;
|
|
458
|
+
items: {
|
|
459
|
+
type: string;
|
|
460
|
+
ref: string;
|
|
461
|
+
};
|
|
462
|
+
maxLength: number;
|
|
463
|
+
};
|
|
464
|
+
contentType: {
|
|
465
|
+
type: string;
|
|
466
|
+
maxLength: number;
|
|
467
|
+
description: string;
|
|
468
|
+
};
|
|
469
|
+
content: {
|
|
470
|
+
type: string;
|
|
471
|
+
description: string;
|
|
472
|
+
items: {
|
|
473
|
+
type: string;
|
|
474
|
+
refs: string[];
|
|
475
|
+
};
|
|
476
|
+
maxLength: number;
|
|
477
|
+
};
|
|
478
|
+
title: {
|
|
479
|
+
type: string;
|
|
480
|
+
maxLength: number;
|
|
481
|
+
description: string;
|
|
482
|
+
};
|
|
483
|
+
shortDescription: {
|
|
484
|
+
type: string;
|
|
485
|
+
description: string;
|
|
486
|
+
maxLength: number;
|
|
487
|
+
maxGraphemes: number;
|
|
488
|
+
};
|
|
489
|
+
shortDescriptionFacets: {
|
|
490
|
+
type: string;
|
|
491
|
+
description: string;
|
|
492
|
+
items: {
|
|
493
|
+
type: string;
|
|
494
|
+
ref: string;
|
|
495
|
+
};
|
|
496
|
+
};
|
|
497
|
+
description: {
|
|
498
|
+
type: string;
|
|
499
|
+
description: string;
|
|
500
|
+
maxLength: number;
|
|
501
|
+
maxGraphemes: number;
|
|
502
|
+
};
|
|
503
|
+
descriptionFacets: {
|
|
504
|
+
type: string;
|
|
505
|
+
description: string;
|
|
506
|
+
items: {
|
|
507
|
+
type: string;
|
|
508
|
+
ref: string;
|
|
509
|
+
};
|
|
510
|
+
};
|
|
511
|
+
location: {
|
|
512
|
+
type: string;
|
|
513
|
+
ref: string;
|
|
514
|
+
description: string;
|
|
515
|
+
};
|
|
516
|
+
createdAt: {
|
|
517
|
+
type: string;
|
|
518
|
+
format: string;
|
|
519
|
+
description: string;
|
|
520
|
+
};
|
|
521
|
+
};
|
|
522
|
+
};
|
|
523
|
+
};
|
|
524
|
+
};
|
|
525
|
+
};
|
|
430
526
|
readonly COLLECTION: {
|
|
431
527
|
lexicon: number;
|
|
432
528
|
id: string;
|
|
@@ -676,60 +772,6 @@ export declare const HYPERCERTS_LEXICON_JSON: {
|
|
|
676
772
|
};
|
|
677
773
|
};
|
|
678
774
|
};
|
|
679
|
-
readonly EVIDENCE: {
|
|
680
|
-
lexicon: number;
|
|
681
|
-
id: string;
|
|
682
|
-
defs: {
|
|
683
|
-
main: {
|
|
684
|
-
type: string;
|
|
685
|
-
description: string;
|
|
686
|
-
key: string;
|
|
687
|
-
record: {
|
|
688
|
-
type: string;
|
|
689
|
-
required: string[];
|
|
690
|
-
properties: {
|
|
691
|
-
subject: {
|
|
692
|
-
type: string;
|
|
693
|
-
ref: string;
|
|
694
|
-
description: string;
|
|
695
|
-
};
|
|
696
|
-
content: {
|
|
697
|
-
type: string;
|
|
698
|
-
refs: string[];
|
|
699
|
-
description: string;
|
|
700
|
-
};
|
|
701
|
-
title: {
|
|
702
|
-
type: string;
|
|
703
|
-
maxLength: number;
|
|
704
|
-
description: string;
|
|
705
|
-
};
|
|
706
|
-
shortDescription: {
|
|
707
|
-
type: string;
|
|
708
|
-
maxLength: number;
|
|
709
|
-
maxGraphemes: number;
|
|
710
|
-
description: string;
|
|
711
|
-
};
|
|
712
|
-
description: {
|
|
713
|
-
type: string;
|
|
714
|
-
description: string;
|
|
715
|
-
maxLength: number;
|
|
716
|
-
maxGraphemes: number;
|
|
717
|
-
};
|
|
718
|
-
relationType: {
|
|
719
|
-
type: string;
|
|
720
|
-
description: string;
|
|
721
|
-
knownValues: string[];
|
|
722
|
-
};
|
|
723
|
-
createdAt: {
|
|
724
|
-
type: string;
|
|
725
|
-
format: string;
|
|
726
|
-
description: string;
|
|
727
|
-
};
|
|
728
|
-
};
|
|
729
|
-
};
|
|
730
|
-
};
|
|
731
|
-
};
|
|
732
|
-
};
|
|
733
775
|
readonly MEASUREMENT: {
|
|
734
776
|
lexicon: number;
|
|
735
777
|
id: string;
|
|
@@ -1081,11 +1123,11 @@ export declare const CERTIFIED_DEFS_LEXICON_DOC: LexiconDoc;
|
|
|
1081
1123
|
export declare const LOCATION_LEXICON_DOC: LexiconDoc;
|
|
1082
1124
|
export declare const STRONG_REF_LEXICON_DOC: LexiconDoc;
|
|
1083
1125
|
export declare const ACTIVITY_LEXICON_DOC: LexiconDoc;
|
|
1126
|
+
export declare const ATTACHMENT_LEXICON_DOC: LexiconDoc;
|
|
1084
1127
|
export declare const COLLECTION_LEXICON_DOC: LexiconDoc;
|
|
1085
1128
|
export declare const CONTRIBUTION_DETAILS_LEXICON_DOC: LexiconDoc;
|
|
1086
1129
|
export declare const CONTRIBUTOR_INFORMATION_LEXICON_DOC: LexiconDoc;
|
|
1087
1130
|
export declare const EVALUATION_LEXICON_DOC: LexiconDoc;
|
|
1088
|
-
export declare const EVIDENCE_LEXICON_DOC: LexiconDoc;
|
|
1089
1131
|
export declare const MEASUREMENT_LEXICON_DOC: LexiconDoc;
|
|
1090
1132
|
export declare const RIGHTS_LEXICON_DOC: LexiconDoc;
|
|
1091
1133
|
export declare const HYPERCERTS_DEFS_LEXICON_DOC: LexiconDoc;
|
|
@@ -1102,11 +1144,11 @@ export * as AppCertifiedDefs from "./types/app/certified/defs.js";
|
|
|
1102
1144
|
export * as AppCertifiedLocation from "./types/app/certified/location.js";
|
|
1103
1145
|
export * as ComAtprotoRepoStrongRef from "./types/com/atproto/repo/strongRef.js";
|
|
1104
1146
|
export * as OrgHypercertsClaimActivity from "./types/org/hypercerts/claim/activity.js";
|
|
1147
|
+
export * as OrgHypercertsClaimAttachment from "./types/org/hypercerts/claim/attachment.js";
|
|
1105
1148
|
export * as OrgHypercertsClaimCollection from "./types/org/hypercerts/claim/collection.js";
|
|
1106
1149
|
export * as OrgHypercertsClaimContributionDetails from "./types/org/hypercerts/claim/contributionDetails.js";
|
|
1107
1150
|
export * as OrgHypercertsClaimContributorInformation from "./types/org/hypercerts/claim/contributorInformation.js";
|
|
1108
1151
|
export * as OrgHypercertsClaimEvaluation from "./types/org/hypercerts/claim/evaluation.js";
|
|
1109
|
-
export * as OrgHypercertsClaimEvidence from "./types/org/hypercerts/claim/evidence.js";
|
|
1110
1152
|
export * as OrgHypercertsClaimMeasurement from "./types/org/hypercerts/claim/measurement.js";
|
|
1111
1153
|
export * as OrgHypercertsClaimRights from "./types/org/hypercerts/claim/rights.js";
|
|
1112
1154
|
export * as OrgHypercertsDefs from "./types/org/hypercerts/defs.js";
|
package/dist/exports.d.ts.map
CHANGED
|
@@ -1 +1 @@
|
|
|
1
|
-
{"version":3,"file":"exports.d.ts","sourceRoot":"","sources":["../generated/exports.ts"],"names":[],"mappings":"AAAA;;;;;;;;;;;;;;;;;;;;;GAqBG;AAGH,OAAO,KAAK,EAAE,UAAU,EAAE,MAAM,kBAAkB,CAAC;AAEnD,OAAO,wBAAwB,MAAM,4CAA4C,CAAC;AAClF,OAAO,6BAA6B,MAAM,iDAAiD,CAAC;AAC5F,OAAO,2BAA2B,MAAM,+CAA+C,CAAC;AACxF,OAAO,2BAA2B,MAAM,qCAAqC,CAAC;AAC9E,OAAO,qBAAqB,MAAM,yCAAyC,CAAC;AAC5E,OAAO,uBAAuB,MAAM,6CAA6C,CAAC;AAClF,OAAO,qBAAqB,MAAM,gDAAgD,CAAC;AACnF,OAAO,uBAAuB,MAAM,kDAAkD,CAAC;AACvF,OAAO,iCAAiC,MAAM,2DAA2D,CAAC;AAC1G,OAAO,oCAAoC,MAAM,8DAA8D,CAAC;AAChH,OAAO,uBAAuB,MAAM,kDAAkD,CAAC;AACvF,OAAO,
|
|
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-
|
|
7
|
+
* Generated: 2026-01-25T04:32:42.985Z
|
|
8
8
|
*
|
|
9
9
|
* To regenerate this file, run:
|
|
10
10
|
* npm run gen-api
|
|
@@ -28,17 +28,17 @@ import CERTIFIED_DEFS_LEXICON_JSON from "../lexicons/app/certified/defs.json";
|
|
|
28
28
|
import LOCATION_LEXICON_JSON from "../lexicons/app/certified/location.json";
|
|
29
29
|
import STRONG_REF_LEXICON_JSON from "../lexicons/com/atproto/repo/strongRef.json";
|
|
30
30
|
import ACTIVITY_LEXICON_JSON from "../lexicons/org/hypercerts/claim/activity.json";
|
|
31
|
+
import ATTACHMENT_LEXICON_JSON from "../lexicons/org/hypercerts/claim/attachment.json";
|
|
31
32
|
import COLLECTION_LEXICON_JSON from "../lexicons/org/hypercerts/claim/collection.json";
|
|
32
33
|
import CONTRIBUTION_DETAILS_LEXICON_JSON from "../lexicons/org/hypercerts/claim/contributionDetails.json";
|
|
33
34
|
import CONTRIBUTOR_INFORMATION_LEXICON_JSON from "../lexicons/org/hypercerts/claim/contributorInformation.json";
|
|
34
35
|
import EVALUATION_LEXICON_JSON from "../lexicons/org/hypercerts/claim/evaluation.json";
|
|
35
|
-
import EVIDENCE_LEXICON_JSON from "../lexicons/org/hypercerts/claim/evidence.json";
|
|
36
36
|
import MEASUREMENT_LEXICON_JSON from "../lexicons/org/hypercerts/claim/measurement.json";
|
|
37
37
|
import RIGHTS_LEXICON_JSON from "../lexicons/org/hypercerts/claim/rights.json";
|
|
38
38
|
import HYPERCERTS_DEFS_LEXICON_JSON from "../lexicons/org/hypercerts/defs.json";
|
|
39
39
|
import FUNDING_RECEIPT_LEXICON_JSON from "../lexicons/org/hypercerts/funding/receipt.json";
|
|
40
40
|
import WORK_SCOPE_TAG_LEXICON_JSON from "../lexicons/org/hypercerts/helper/workScopeTag.json";
|
|
41
|
-
export { BADGE_AWARD_LEXICON_JSON, BADGE_DEFINITION_LEXICON_JSON, BADGE_RESPONSE_LEXICON_JSON, CERTIFIED_DEFS_LEXICON_JSON, LOCATION_LEXICON_JSON, STRONG_REF_LEXICON_JSON, ACTIVITY_LEXICON_JSON, COLLECTION_LEXICON_JSON, CONTRIBUTION_DETAILS_LEXICON_JSON, CONTRIBUTOR_INFORMATION_LEXICON_JSON, EVALUATION_LEXICON_JSON,
|
|
41
|
+
export { BADGE_AWARD_LEXICON_JSON, BADGE_DEFINITION_LEXICON_JSON, BADGE_RESPONSE_LEXICON_JSON, CERTIFIED_DEFS_LEXICON_JSON, LOCATION_LEXICON_JSON, STRONG_REF_LEXICON_JSON, ACTIVITY_LEXICON_JSON, ATTACHMENT_LEXICON_JSON, COLLECTION_LEXICON_JSON, CONTRIBUTION_DETAILS_LEXICON_JSON, CONTRIBUTOR_INFORMATION_LEXICON_JSON, EVALUATION_LEXICON_JSON, MEASUREMENT_LEXICON_JSON, RIGHTS_LEXICON_JSON, HYPERCERTS_DEFS_LEXICON_JSON, FUNDING_RECEIPT_LEXICON_JSON, WORK_SCOPE_TAG_LEXICON_JSON, };
|
|
42
42
|
export { schemas as HYPERCERTS_SCHEMAS, schemaDict as HYPERCERTS_SCHEMA_DICT, lexicons, validate, ids as HYPERCERTS_NSIDS_BY_TYPE, } from "./lexicons.js";
|
|
43
43
|
export declare const BADGE_AWARD_NSID: "app.certified.badge.award";
|
|
44
44
|
export declare const BADGE_DEFINITION_NSID: "app.certified.badge.definition";
|
|
@@ -47,11 +47,11 @@ export declare const CERTIFIED_DEFS_NSID: "app.certified.defs";
|
|
|
47
47
|
export declare const LOCATION_NSID: "app.certified.location";
|
|
48
48
|
export declare const STRONG_REF_NSID: "com.atproto.repo.strongRef";
|
|
49
49
|
export declare const ACTIVITY_NSID: "org.hypercerts.claim.activity";
|
|
50
|
+
export declare const ATTACHMENT_NSID: "org.hypercerts.claim.attachment";
|
|
50
51
|
export declare const COLLECTION_NSID: "org.hypercerts.claim.collection";
|
|
51
52
|
export declare const CONTRIBUTION_DETAILS_NSID: "org.hypercerts.claim.contributionDetails";
|
|
52
53
|
export declare const CONTRIBUTOR_INFORMATION_NSID: "org.hypercerts.claim.contributorInformation";
|
|
53
54
|
export declare const EVALUATION_NSID: "org.hypercerts.claim.evaluation";
|
|
54
|
-
export declare const EVIDENCE_NSID: "org.hypercerts.claim.evidence";
|
|
55
55
|
export declare const MEASUREMENT_NSID: "org.hypercerts.claim.measurement";
|
|
56
56
|
export declare const RIGHTS_NSID: "org.hypercerts.claim.rights";
|
|
57
57
|
export declare const HYPERCERTS_DEFS_NSID: "org.hypercerts.defs";
|
|
@@ -71,11 +71,11 @@ export declare const HYPERCERTS_NSIDS: {
|
|
|
71
71
|
readonly LOCATION: "app.certified.location";
|
|
72
72
|
readonly STRONG_REF: "com.atproto.repo.strongRef";
|
|
73
73
|
readonly ACTIVITY: "org.hypercerts.claim.activity";
|
|
74
|
+
readonly ATTACHMENT: "org.hypercerts.claim.attachment";
|
|
74
75
|
readonly COLLECTION: "org.hypercerts.claim.collection";
|
|
75
76
|
readonly CONTRIBUTION_DETAILS: "org.hypercerts.claim.contributionDetails";
|
|
76
77
|
readonly CONTRIBUTOR_INFORMATION: "org.hypercerts.claim.contributorInformation";
|
|
77
78
|
readonly EVALUATION: "org.hypercerts.claim.evaluation";
|
|
78
|
-
readonly EVIDENCE: "org.hypercerts.claim.evidence";
|
|
79
79
|
readonly MEASUREMENT: "org.hypercerts.claim.measurement";
|
|
80
80
|
readonly RIGHTS: "org.hypercerts.claim.rights";
|
|
81
81
|
readonly HYPERCERTS_DEFS: "org.hypercerts.defs";
|
|
@@ -272,6 +272,19 @@ export declare const HYPERCERTS_LEXICON_JSON: {
|
|
|
272
272
|
};
|
|
273
273
|
};
|
|
274
274
|
};
|
|
275
|
+
string: {
|
|
276
|
+
type: string;
|
|
277
|
+
required: string[];
|
|
278
|
+
description: string;
|
|
279
|
+
properties: {
|
|
280
|
+
string: {
|
|
281
|
+
type: string;
|
|
282
|
+
description: string;
|
|
283
|
+
maxLength: number;
|
|
284
|
+
maxGraphemes: number;
|
|
285
|
+
};
|
|
286
|
+
};
|
|
287
|
+
};
|
|
275
288
|
};
|
|
276
289
|
};
|
|
277
290
|
readonly STRONG_REF: {
|
|
@@ -427,6 +440,89 @@ export declare const HYPERCERTS_LEXICON_JSON: {
|
|
|
427
440
|
};
|
|
428
441
|
};
|
|
429
442
|
};
|
|
443
|
+
readonly ATTACHMENT: {
|
|
444
|
+
lexicon: number;
|
|
445
|
+
id: string;
|
|
446
|
+
defs: {
|
|
447
|
+
main: {
|
|
448
|
+
type: string;
|
|
449
|
+
description: string;
|
|
450
|
+
key: string;
|
|
451
|
+
record: {
|
|
452
|
+
type: string;
|
|
453
|
+
required: string[];
|
|
454
|
+
properties: {
|
|
455
|
+
subjects: {
|
|
456
|
+
type: string;
|
|
457
|
+
description: string;
|
|
458
|
+
items: {
|
|
459
|
+
type: string;
|
|
460
|
+
ref: string;
|
|
461
|
+
};
|
|
462
|
+
maxLength: number;
|
|
463
|
+
};
|
|
464
|
+
contentType: {
|
|
465
|
+
type: string;
|
|
466
|
+
maxLength: number;
|
|
467
|
+
description: string;
|
|
468
|
+
};
|
|
469
|
+
content: {
|
|
470
|
+
type: string;
|
|
471
|
+
description: string;
|
|
472
|
+
items: {
|
|
473
|
+
type: string;
|
|
474
|
+
refs: string[];
|
|
475
|
+
};
|
|
476
|
+
maxLength: number;
|
|
477
|
+
};
|
|
478
|
+
title: {
|
|
479
|
+
type: string;
|
|
480
|
+
maxLength: number;
|
|
481
|
+
description: string;
|
|
482
|
+
};
|
|
483
|
+
shortDescription: {
|
|
484
|
+
type: string;
|
|
485
|
+
description: string;
|
|
486
|
+
maxLength: number;
|
|
487
|
+
maxGraphemes: number;
|
|
488
|
+
};
|
|
489
|
+
shortDescriptionFacets: {
|
|
490
|
+
type: string;
|
|
491
|
+
description: string;
|
|
492
|
+
items: {
|
|
493
|
+
type: string;
|
|
494
|
+
ref: string;
|
|
495
|
+
};
|
|
496
|
+
};
|
|
497
|
+
description: {
|
|
498
|
+
type: string;
|
|
499
|
+
description: string;
|
|
500
|
+
maxLength: number;
|
|
501
|
+
maxGraphemes: number;
|
|
502
|
+
};
|
|
503
|
+
descriptionFacets: {
|
|
504
|
+
type: string;
|
|
505
|
+
description: string;
|
|
506
|
+
items: {
|
|
507
|
+
type: string;
|
|
508
|
+
ref: string;
|
|
509
|
+
};
|
|
510
|
+
};
|
|
511
|
+
location: {
|
|
512
|
+
type: string;
|
|
513
|
+
ref: string;
|
|
514
|
+
description: string;
|
|
515
|
+
};
|
|
516
|
+
createdAt: {
|
|
517
|
+
type: string;
|
|
518
|
+
format: string;
|
|
519
|
+
description: string;
|
|
520
|
+
};
|
|
521
|
+
};
|
|
522
|
+
};
|
|
523
|
+
};
|
|
524
|
+
};
|
|
525
|
+
};
|
|
430
526
|
readonly COLLECTION: {
|
|
431
527
|
lexicon: number;
|
|
432
528
|
id: string;
|
|
@@ -676,60 +772,6 @@ export declare const HYPERCERTS_LEXICON_JSON: {
|
|
|
676
772
|
};
|
|
677
773
|
};
|
|
678
774
|
};
|
|
679
|
-
readonly EVIDENCE: {
|
|
680
|
-
lexicon: number;
|
|
681
|
-
id: string;
|
|
682
|
-
defs: {
|
|
683
|
-
main: {
|
|
684
|
-
type: string;
|
|
685
|
-
description: string;
|
|
686
|
-
key: string;
|
|
687
|
-
record: {
|
|
688
|
-
type: string;
|
|
689
|
-
required: string[];
|
|
690
|
-
properties: {
|
|
691
|
-
subject: {
|
|
692
|
-
type: string;
|
|
693
|
-
ref: string;
|
|
694
|
-
description: string;
|
|
695
|
-
};
|
|
696
|
-
content: {
|
|
697
|
-
type: string;
|
|
698
|
-
refs: string[];
|
|
699
|
-
description: string;
|
|
700
|
-
};
|
|
701
|
-
title: {
|
|
702
|
-
type: string;
|
|
703
|
-
maxLength: number;
|
|
704
|
-
description: string;
|
|
705
|
-
};
|
|
706
|
-
shortDescription: {
|
|
707
|
-
type: string;
|
|
708
|
-
maxLength: number;
|
|
709
|
-
maxGraphemes: number;
|
|
710
|
-
description: string;
|
|
711
|
-
};
|
|
712
|
-
description: {
|
|
713
|
-
type: string;
|
|
714
|
-
description: string;
|
|
715
|
-
maxLength: number;
|
|
716
|
-
maxGraphemes: number;
|
|
717
|
-
};
|
|
718
|
-
relationType: {
|
|
719
|
-
type: string;
|
|
720
|
-
description: string;
|
|
721
|
-
knownValues: string[];
|
|
722
|
-
};
|
|
723
|
-
createdAt: {
|
|
724
|
-
type: string;
|
|
725
|
-
format: string;
|
|
726
|
-
description: string;
|
|
727
|
-
};
|
|
728
|
-
};
|
|
729
|
-
};
|
|
730
|
-
};
|
|
731
|
-
};
|
|
732
|
-
};
|
|
733
775
|
readonly MEASUREMENT: {
|
|
734
776
|
lexicon: number;
|
|
735
777
|
id: string;
|
|
@@ -1081,11 +1123,11 @@ export declare const CERTIFIED_DEFS_LEXICON_DOC: LexiconDoc;
|
|
|
1081
1123
|
export declare const LOCATION_LEXICON_DOC: LexiconDoc;
|
|
1082
1124
|
export declare const STRONG_REF_LEXICON_DOC: LexiconDoc;
|
|
1083
1125
|
export declare const ACTIVITY_LEXICON_DOC: LexiconDoc;
|
|
1126
|
+
export declare const ATTACHMENT_LEXICON_DOC: LexiconDoc;
|
|
1084
1127
|
export declare const COLLECTION_LEXICON_DOC: LexiconDoc;
|
|
1085
1128
|
export declare const CONTRIBUTION_DETAILS_LEXICON_DOC: LexiconDoc;
|
|
1086
1129
|
export declare const CONTRIBUTOR_INFORMATION_LEXICON_DOC: LexiconDoc;
|
|
1087
1130
|
export declare const EVALUATION_LEXICON_DOC: LexiconDoc;
|
|
1088
|
-
export declare const EVIDENCE_LEXICON_DOC: LexiconDoc;
|
|
1089
1131
|
export declare const MEASUREMENT_LEXICON_DOC: LexiconDoc;
|
|
1090
1132
|
export declare const RIGHTS_LEXICON_DOC: LexiconDoc;
|
|
1091
1133
|
export declare const HYPERCERTS_DEFS_LEXICON_DOC: LexiconDoc;
|
|
@@ -1102,11 +1144,11 @@ export * as AppCertifiedDefs from "./types/app/certified/defs.js";
|
|
|
1102
1144
|
export * as AppCertifiedLocation from "./types/app/certified/location.js";
|
|
1103
1145
|
export * as ComAtprotoRepoStrongRef from "./types/com/atproto/repo/strongRef.js";
|
|
1104
1146
|
export * as OrgHypercertsClaimActivity from "./types/org/hypercerts/claim/activity.js";
|
|
1147
|
+
export * as OrgHypercertsClaimAttachment from "./types/org/hypercerts/claim/attachment.js";
|
|
1105
1148
|
export * as OrgHypercertsClaimCollection from "./types/org/hypercerts/claim/collection.js";
|
|
1106
1149
|
export * as OrgHypercertsClaimContributionDetails from "./types/org/hypercerts/claim/contributionDetails.js";
|
|
1107
1150
|
export * as OrgHypercertsClaimContributorInformation from "./types/org/hypercerts/claim/contributorInformation.js";
|
|
1108
1151
|
export * as OrgHypercertsClaimEvaluation from "./types/org/hypercerts/claim/evaluation.js";
|
|
1109
|
-
export * as OrgHypercertsClaimEvidence from "./types/org/hypercerts/claim/evidence.js";
|
|
1110
1152
|
export * as OrgHypercertsClaimMeasurement from "./types/org/hypercerts/claim/measurement.js";
|
|
1111
1153
|
export * as OrgHypercertsClaimRights from "./types/org/hypercerts/claim/rights.js";
|
|
1112
1154
|
export * as OrgHypercertsDefs from "./types/org/hypercerts/defs.js";
|
|
@@ -1 +1 @@
|
|
|
1
|
-
{"version":3,"file":"exports.d.ts","sourceRoot":"","sources":["../../generated/exports.ts"],"names":[],"mappings":"AAAA;;;;;;;;;;;;;;;;;;;;;GAqBG;AAGH,OAAO,KAAK,EAAE,UAAU,EAAE,MAAM,kBAAkB,CAAC;AAEnD,OAAO,wBAAwB,MAAM,4CAA4C,CAAC;AAClF,OAAO,6BAA6B,MAAM,iDAAiD,CAAC;AAC5F,OAAO,2BAA2B,MAAM,+CAA+C,CAAC;AACxF,OAAO,2BAA2B,MAAM,qCAAqC,CAAC;AAC9E,OAAO,qBAAqB,MAAM,yCAAyC,CAAC;AAC5E,OAAO,uBAAuB,MAAM,6CAA6C,CAAC;AAClF,OAAO,qBAAqB,MAAM,gDAAgD,CAAC;AACnF,OAAO,uBAAuB,MAAM,kDAAkD,CAAC;AACvF,OAAO,iCAAiC,MAAM,2DAA2D,CAAC;AAC1G,OAAO,oCAAoC,MAAM,8DAA8D,CAAC;AAChH,OAAO,uBAAuB,MAAM,kDAAkD,CAAC;AACvF,OAAO,
|
|
1
|
+
{"version":3,"file":"exports.d.ts","sourceRoot":"","sources":["../../generated/exports.ts"],"names":[],"mappings":"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"}
|