@hypercerts-org/lexicon 0.10.0-beta.12 → 0.10.0-beta.14
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 +136 -0
- package/README.md +142 -0
- package/SCHEMAS.md +220 -67
- package/dist/exports.d.ts +195 -66
- package/dist/exports.d.ts.map +1 -1
- package/dist/generated/exports.d.ts +195 -66
- package/dist/generated/exports.d.ts.map +1 -1
- package/dist/generated/lexicons.d.ts +378 -130
- package/dist/generated/lexicons.d.ts.map +1 -1
- package/dist/generated/types/app/certified/actor/profile.d.ts +27 -0
- package/dist/generated/types/app/certified/actor/profile.d.ts.map +1 -0
- package/dist/generated/types/app/certified/defs.d.ts +11 -1
- package/dist/generated/types/app/certified/defs.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/activity.d.ts +21 -3
- package/dist/generated/types/org/hypercerts/claim/activity.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 +618 -270
- package/dist/index.cjs.map +1 -1
- package/dist/index.mjs +606 -262
- package/dist/index.mjs.map +1 -1
- package/dist/lexicons.cjs +200 -68
- package/dist/lexicons.cjs.map +1 -1
- package/dist/lexicons.d.ts +378 -130
- package/dist/lexicons.d.ts.map +1 -1
- package/dist/lexicons.mjs +200 -68
- package/dist/lexicons.mjs.map +1 -1
- package/dist/types/app/certified/actor/profile.d.ts +27 -0
- package/dist/types/app/certified/actor/profile.d.ts.map +1 -0
- package/dist/types/app/certified/defs.d.ts +11 -1
- package/dist/types/app/certified/defs.d.ts.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/activity.d.ts +21 -3
- package/dist/types/org/hypercerts/claim/activity.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/actor/profile.json +51 -0
- package/lexicons/app/certified/defs.json +11 -3
- package/lexicons/app/certified/location.json +16 -2
- package/lexicons/org/hypercerts/claim/activity.json +31 -8
- 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
|
@@ -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-
|
|
7
|
+
* Generated: 2026-02-10T10:47:30.525Z
|
|
8
8
|
*
|
|
9
9
|
* To regenerate this file, run:
|
|
10
10
|
* npm run gen-api
|
|
@@ -21,6 +21,7 @@
|
|
|
21
21
|
* @packageDocumentation
|
|
22
22
|
*/
|
|
23
23
|
import type { LexiconDoc } from "@atproto/lexicon";
|
|
24
|
+
import ACTOR_PROFILE_LEXICON_JSON from "../lexicons/app/certified/actor/profile.json";
|
|
24
25
|
import BADGE_AWARD_LEXICON_JSON from "../lexicons/app/certified/badge/award.json";
|
|
25
26
|
import BADGE_DEFINITION_LEXICON_JSON from "../lexicons/app/certified/badge/definition.json";
|
|
26
27
|
import BADGE_RESPONSE_LEXICON_JSON from "../lexicons/app/certified/badge/response.json";
|
|
@@ -28,18 +29,19 @@ import CERTIFIED_DEFS_LEXICON_JSON from "../lexicons/app/certified/defs.json";
|
|
|
28
29
|
import LOCATION_LEXICON_JSON from "../lexicons/app/certified/location.json";
|
|
29
30
|
import STRONG_REF_LEXICON_JSON from "../lexicons/com/atproto/repo/strongRef.json";
|
|
30
31
|
import ACTIVITY_LEXICON_JSON from "../lexicons/org/hypercerts/claim/activity.json";
|
|
32
|
+
import ATTACHMENT_LEXICON_JSON from "../lexicons/org/hypercerts/claim/attachment.json";
|
|
31
33
|
import COLLECTION_LEXICON_JSON from "../lexicons/org/hypercerts/claim/collection.json";
|
|
32
34
|
import CONTRIBUTION_DETAILS_LEXICON_JSON from "../lexicons/org/hypercerts/claim/contributionDetails.json";
|
|
33
35
|
import CONTRIBUTOR_INFORMATION_LEXICON_JSON from "../lexicons/org/hypercerts/claim/contributorInformation.json";
|
|
34
36
|
import EVALUATION_LEXICON_JSON from "../lexicons/org/hypercerts/claim/evaluation.json";
|
|
35
|
-
import EVIDENCE_LEXICON_JSON from "../lexicons/org/hypercerts/claim/evidence.json";
|
|
36
37
|
import MEASUREMENT_LEXICON_JSON from "../lexicons/org/hypercerts/claim/measurement.json";
|
|
37
38
|
import RIGHTS_LEXICON_JSON from "../lexicons/org/hypercerts/claim/rights.json";
|
|
38
39
|
import HYPERCERTS_DEFS_LEXICON_JSON from "../lexicons/org/hypercerts/defs.json";
|
|
39
40
|
import FUNDING_RECEIPT_LEXICON_JSON from "../lexicons/org/hypercerts/funding/receipt.json";
|
|
40
41
|
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,
|
|
42
|
+
export { ACTOR_PROFILE_LEXICON_JSON, 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
43
|
export { schemas as HYPERCERTS_SCHEMAS, schemaDict as HYPERCERTS_SCHEMA_DICT, lexicons, validate, ids as HYPERCERTS_NSIDS_BY_TYPE, } from "./lexicons.js";
|
|
44
|
+
export declare const ACTOR_PROFILE_NSID: "app.certified.actor.profile";
|
|
43
45
|
export declare const BADGE_AWARD_NSID: "app.certified.badge.award";
|
|
44
46
|
export declare const BADGE_DEFINITION_NSID: "app.certified.badge.definition";
|
|
45
47
|
export declare const BADGE_RESPONSE_NSID: "app.certified.badge.response";
|
|
@@ -47,11 +49,11 @@ export declare const CERTIFIED_DEFS_NSID: "app.certified.defs";
|
|
|
47
49
|
export declare const LOCATION_NSID: "app.certified.location";
|
|
48
50
|
export declare const STRONG_REF_NSID: "com.atproto.repo.strongRef";
|
|
49
51
|
export declare const ACTIVITY_NSID: "org.hypercerts.claim.activity";
|
|
52
|
+
export declare const ATTACHMENT_NSID: "org.hypercerts.claim.attachment";
|
|
50
53
|
export declare const COLLECTION_NSID: "org.hypercerts.claim.collection";
|
|
51
54
|
export declare const CONTRIBUTION_DETAILS_NSID: "org.hypercerts.claim.contributionDetails";
|
|
52
55
|
export declare const CONTRIBUTOR_INFORMATION_NSID: "org.hypercerts.claim.contributorInformation";
|
|
53
56
|
export declare const EVALUATION_NSID: "org.hypercerts.claim.evaluation";
|
|
54
|
-
export declare const EVIDENCE_NSID: "org.hypercerts.claim.evidence";
|
|
55
57
|
export declare const MEASUREMENT_NSID: "org.hypercerts.claim.measurement";
|
|
56
58
|
export declare const RIGHTS_NSID: "org.hypercerts.claim.rights";
|
|
57
59
|
export declare const HYPERCERTS_DEFS_NSID: "org.hypercerts.defs";
|
|
@@ -64,6 +66,7 @@ export declare const WORK_SCOPE_TAG_NSID: "org.hypercerts.helper.workScopeTag";
|
|
|
64
66
|
* correct collection names.
|
|
65
67
|
*/
|
|
66
68
|
export declare const HYPERCERTS_NSIDS: {
|
|
69
|
+
readonly ACTOR_PROFILE: "app.certified.actor.profile";
|
|
67
70
|
readonly BADGE_AWARD: "app.certified.badge.award";
|
|
68
71
|
readonly BADGE_DEFINITION: "app.certified.badge.definition";
|
|
69
72
|
readonly BADGE_RESPONSE: "app.certified.badge.response";
|
|
@@ -71,11 +74,11 @@ export declare const HYPERCERTS_NSIDS: {
|
|
|
71
74
|
readonly LOCATION: "app.certified.location";
|
|
72
75
|
readonly STRONG_REF: "com.atproto.repo.strongRef";
|
|
73
76
|
readonly ACTIVITY: "org.hypercerts.claim.activity";
|
|
77
|
+
readonly ATTACHMENT: "org.hypercerts.claim.attachment";
|
|
74
78
|
readonly COLLECTION: "org.hypercerts.claim.collection";
|
|
75
79
|
readonly CONTRIBUTION_DETAILS: "org.hypercerts.claim.contributionDetails";
|
|
76
80
|
readonly CONTRIBUTOR_INFORMATION: "org.hypercerts.claim.contributorInformation";
|
|
77
81
|
readonly EVALUATION: "org.hypercerts.claim.evaluation";
|
|
78
|
-
readonly EVIDENCE: "org.hypercerts.claim.evidence";
|
|
79
82
|
readonly MEASUREMENT: "org.hypercerts.claim.measurement";
|
|
80
83
|
readonly RIGHTS: "org.hypercerts.claim.rights";
|
|
81
84
|
readonly HYPERCERTS_DEFS: "org.hypercerts.defs";
|
|
@@ -86,6 +89,57 @@ export declare const HYPERCERTS_NSIDS: {
|
|
|
86
89
|
* Lexicon JSON objects organized by semantic record type.
|
|
87
90
|
*/
|
|
88
91
|
export declare const HYPERCERTS_LEXICON_JSON: {
|
|
92
|
+
readonly ACTOR_PROFILE: {
|
|
93
|
+
lexicon: number;
|
|
94
|
+
id: string;
|
|
95
|
+
defs: {
|
|
96
|
+
main: {
|
|
97
|
+
type: string;
|
|
98
|
+
description: string;
|
|
99
|
+
key: string;
|
|
100
|
+
record: {
|
|
101
|
+
type: string;
|
|
102
|
+
properties: {
|
|
103
|
+
displayName: {
|
|
104
|
+
type: string;
|
|
105
|
+
maxGraphemes: number;
|
|
106
|
+
maxLength: number;
|
|
107
|
+
};
|
|
108
|
+
description: {
|
|
109
|
+
type: string;
|
|
110
|
+
description: string;
|
|
111
|
+
maxGraphemes: number;
|
|
112
|
+
maxLength: number;
|
|
113
|
+
};
|
|
114
|
+
pronouns: {
|
|
115
|
+
type: string;
|
|
116
|
+
description: string;
|
|
117
|
+
maxGraphemes: number;
|
|
118
|
+
maxLength: number;
|
|
119
|
+
};
|
|
120
|
+
website: {
|
|
121
|
+
type: string;
|
|
122
|
+
format: string;
|
|
123
|
+
};
|
|
124
|
+
avatar: {
|
|
125
|
+
type: string;
|
|
126
|
+
refs: string[];
|
|
127
|
+
description: string;
|
|
128
|
+
};
|
|
129
|
+
banner: {
|
|
130
|
+
type: string;
|
|
131
|
+
refs: string[];
|
|
132
|
+
description: string;
|
|
133
|
+
};
|
|
134
|
+
createdAt: {
|
|
135
|
+
type: string;
|
|
136
|
+
format: string;
|
|
137
|
+
};
|
|
138
|
+
};
|
|
139
|
+
};
|
|
140
|
+
};
|
|
141
|
+
};
|
|
142
|
+
};
|
|
89
143
|
readonly BADGE_AWARD: {
|
|
90
144
|
lexicon: number;
|
|
91
145
|
id: string;
|
|
@@ -213,8 +267,16 @@ export declare const HYPERCERTS_LEXICON_JSON: {
|
|
|
213
267
|
defs: {
|
|
214
268
|
did: {
|
|
215
269
|
type: string;
|
|
216
|
-
format: string;
|
|
217
270
|
description: string;
|
|
271
|
+
required: string[];
|
|
272
|
+
properties: {
|
|
273
|
+
did: {
|
|
274
|
+
type: string;
|
|
275
|
+
format: string;
|
|
276
|
+
description: string;
|
|
277
|
+
maxLength: number;
|
|
278
|
+
};
|
|
279
|
+
};
|
|
218
280
|
};
|
|
219
281
|
};
|
|
220
282
|
};
|
|
@@ -272,6 +334,19 @@ export declare const HYPERCERTS_LEXICON_JSON: {
|
|
|
272
334
|
};
|
|
273
335
|
};
|
|
274
336
|
};
|
|
337
|
+
string: {
|
|
338
|
+
type: string;
|
|
339
|
+
required: string[];
|
|
340
|
+
description: string;
|
|
341
|
+
properties: {
|
|
342
|
+
string: {
|
|
343
|
+
type: string;
|
|
344
|
+
description: string;
|
|
345
|
+
maxLength: number;
|
|
346
|
+
maxGraphemes: number;
|
|
347
|
+
};
|
|
348
|
+
};
|
|
349
|
+
};
|
|
275
350
|
};
|
|
276
351
|
};
|
|
277
352
|
readonly STRONG_REF: {
|
|
@@ -412,18 +487,124 @@ export declare const HYPERCERTS_LEXICON_JSON: {
|
|
|
412
487
|
contributorIdentity: {
|
|
413
488
|
type: string;
|
|
414
489
|
description: string;
|
|
490
|
+
required: string[];
|
|
491
|
+
properties: {
|
|
492
|
+
identity: {
|
|
493
|
+
type: string;
|
|
494
|
+
description: string;
|
|
495
|
+
maxLength: number;
|
|
496
|
+
maxGraphemes: number;
|
|
497
|
+
};
|
|
498
|
+
};
|
|
415
499
|
};
|
|
416
500
|
contributorRole: {
|
|
417
501
|
type: string;
|
|
418
502
|
description: string;
|
|
419
|
-
|
|
420
|
-
|
|
503
|
+
required: string[];
|
|
504
|
+
properties: {
|
|
505
|
+
role: {
|
|
506
|
+
type: string;
|
|
507
|
+
description: string;
|
|
508
|
+
maxLength: number;
|
|
509
|
+
maxGraphemes: number;
|
|
510
|
+
};
|
|
511
|
+
};
|
|
421
512
|
};
|
|
422
513
|
workScopeString: {
|
|
423
514
|
type: string;
|
|
424
515
|
description: string;
|
|
425
|
-
|
|
426
|
-
|
|
516
|
+
required: string[];
|
|
517
|
+
properties: {
|
|
518
|
+
scope: {
|
|
519
|
+
type: string;
|
|
520
|
+
description: string;
|
|
521
|
+
maxLength: number;
|
|
522
|
+
maxGraphemes: number;
|
|
523
|
+
};
|
|
524
|
+
};
|
|
525
|
+
};
|
|
526
|
+
};
|
|
527
|
+
};
|
|
528
|
+
readonly ATTACHMENT: {
|
|
529
|
+
lexicon: number;
|
|
530
|
+
id: string;
|
|
531
|
+
defs: {
|
|
532
|
+
main: {
|
|
533
|
+
type: string;
|
|
534
|
+
description: string;
|
|
535
|
+
key: string;
|
|
536
|
+
record: {
|
|
537
|
+
type: string;
|
|
538
|
+
required: string[];
|
|
539
|
+
properties: {
|
|
540
|
+
subjects: {
|
|
541
|
+
type: string;
|
|
542
|
+
description: string;
|
|
543
|
+
items: {
|
|
544
|
+
type: string;
|
|
545
|
+
ref: string;
|
|
546
|
+
};
|
|
547
|
+
maxLength: number;
|
|
548
|
+
};
|
|
549
|
+
contentType: {
|
|
550
|
+
type: string;
|
|
551
|
+
maxLength: number;
|
|
552
|
+
description: string;
|
|
553
|
+
};
|
|
554
|
+
content: {
|
|
555
|
+
type: string;
|
|
556
|
+
description: string;
|
|
557
|
+
items: {
|
|
558
|
+
type: string;
|
|
559
|
+
refs: string[];
|
|
560
|
+
};
|
|
561
|
+
maxLength: number;
|
|
562
|
+
};
|
|
563
|
+
title: {
|
|
564
|
+
type: string;
|
|
565
|
+
maxLength: number;
|
|
566
|
+
description: string;
|
|
567
|
+
};
|
|
568
|
+
shortDescription: {
|
|
569
|
+
type: string;
|
|
570
|
+
description: string;
|
|
571
|
+
maxLength: number;
|
|
572
|
+
maxGraphemes: number;
|
|
573
|
+
};
|
|
574
|
+
shortDescriptionFacets: {
|
|
575
|
+
type: string;
|
|
576
|
+
description: string;
|
|
577
|
+
items: {
|
|
578
|
+
type: string;
|
|
579
|
+
ref: string;
|
|
580
|
+
};
|
|
581
|
+
};
|
|
582
|
+
description: {
|
|
583
|
+
type: string;
|
|
584
|
+
description: string;
|
|
585
|
+
maxLength: number;
|
|
586
|
+
maxGraphemes: number;
|
|
587
|
+
};
|
|
588
|
+
descriptionFacets: {
|
|
589
|
+
type: string;
|
|
590
|
+
description: string;
|
|
591
|
+
items: {
|
|
592
|
+
type: string;
|
|
593
|
+
ref: string;
|
|
594
|
+
};
|
|
595
|
+
};
|
|
596
|
+
location: {
|
|
597
|
+
type: string;
|
|
598
|
+
ref: string;
|
|
599
|
+
description: string;
|
|
600
|
+
};
|
|
601
|
+
createdAt: {
|
|
602
|
+
type: string;
|
|
603
|
+
format: string;
|
|
604
|
+
description: string;
|
|
605
|
+
};
|
|
606
|
+
};
|
|
607
|
+
};
|
|
427
608
|
};
|
|
428
609
|
};
|
|
429
610
|
};
|
|
@@ -676,60 +857,6 @@ export declare const HYPERCERTS_LEXICON_JSON: {
|
|
|
676
857
|
};
|
|
677
858
|
};
|
|
678
859
|
};
|
|
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
860
|
readonly MEASUREMENT: {
|
|
734
861
|
lexicon: number;
|
|
735
862
|
id: string;
|
|
@@ -1074,6 +1201,7 @@ export declare const HYPERCERTS_LEXICON_JSON: {
|
|
|
1074
1201
|
};
|
|
1075
1202
|
};
|
|
1076
1203
|
};
|
|
1204
|
+
export declare const ACTOR_PROFILE_LEXICON_DOC: LexiconDoc;
|
|
1077
1205
|
export declare const BADGE_AWARD_LEXICON_DOC: LexiconDoc;
|
|
1078
1206
|
export declare const BADGE_DEFINITION_LEXICON_DOC: LexiconDoc;
|
|
1079
1207
|
export declare const BADGE_RESPONSE_LEXICON_DOC: LexiconDoc;
|
|
@@ -1081,11 +1209,11 @@ export declare const CERTIFIED_DEFS_LEXICON_DOC: LexiconDoc;
|
|
|
1081
1209
|
export declare const LOCATION_LEXICON_DOC: LexiconDoc;
|
|
1082
1210
|
export declare const STRONG_REF_LEXICON_DOC: LexiconDoc;
|
|
1083
1211
|
export declare const ACTIVITY_LEXICON_DOC: LexiconDoc;
|
|
1212
|
+
export declare const ATTACHMENT_LEXICON_DOC: LexiconDoc;
|
|
1084
1213
|
export declare const COLLECTION_LEXICON_DOC: LexiconDoc;
|
|
1085
1214
|
export declare const CONTRIBUTION_DETAILS_LEXICON_DOC: LexiconDoc;
|
|
1086
1215
|
export declare const CONTRIBUTOR_INFORMATION_LEXICON_DOC: LexiconDoc;
|
|
1087
1216
|
export declare const EVALUATION_LEXICON_DOC: LexiconDoc;
|
|
1088
|
-
export declare const EVIDENCE_LEXICON_DOC: LexiconDoc;
|
|
1089
1217
|
export declare const MEASUREMENT_LEXICON_DOC: LexiconDoc;
|
|
1090
1218
|
export declare const RIGHTS_LEXICON_DOC: LexiconDoc;
|
|
1091
1219
|
export declare const HYPERCERTS_DEFS_LEXICON_DOC: LexiconDoc;
|
|
@@ -1095,6 +1223,7 @@ export declare const WORK_SCOPE_TAG_LEXICON_DOC: LexiconDoc;
|
|
|
1095
1223
|
* Lexicon document objects organized by semantic record type.
|
|
1096
1224
|
*/
|
|
1097
1225
|
export declare const HYPERCERTS_LEXICON_DOC: Record<string, LexiconDoc>;
|
|
1226
|
+
export * as AppCertifiedActorProfile from "./types/app/certified/actor/profile.js";
|
|
1098
1227
|
export * as AppCertifiedBadgeAward from "./types/app/certified/badge/award.js";
|
|
1099
1228
|
export * as AppCertifiedBadgeDefinition from "./types/app/certified/badge/definition.js";
|
|
1100
1229
|
export * as AppCertifiedBadgeResponse from "./types/app/certified/badge/response.js";
|
|
@@ -1102,11 +1231,11 @@ export * as AppCertifiedDefs from "./types/app/certified/defs.js";
|
|
|
1102
1231
|
export * as AppCertifiedLocation from "./types/app/certified/location.js";
|
|
1103
1232
|
export * as ComAtprotoRepoStrongRef from "./types/com/atproto/repo/strongRef.js";
|
|
1104
1233
|
export * as OrgHypercertsClaimActivity from "./types/org/hypercerts/claim/activity.js";
|
|
1234
|
+
export * as OrgHypercertsClaimAttachment from "./types/org/hypercerts/claim/attachment.js";
|
|
1105
1235
|
export * as OrgHypercertsClaimCollection from "./types/org/hypercerts/claim/collection.js";
|
|
1106
1236
|
export * as OrgHypercertsClaimContributionDetails from "./types/org/hypercerts/claim/contributionDetails.js";
|
|
1107
1237
|
export * as OrgHypercertsClaimContributorInformation from "./types/org/hypercerts/claim/contributorInformation.js";
|
|
1108
1238
|
export * as OrgHypercertsClaimEvaluation from "./types/org/hypercerts/claim/evaluation.js";
|
|
1109
|
-
export * as OrgHypercertsClaimEvidence from "./types/org/hypercerts/claim/evidence.js";
|
|
1110
1239
|
export * as OrgHypercertsClaimMeasurement from "./types/org/hypercerts/claim/measurement.js";
|
|
1111
1240
|
export * as OrgHypercertsClaimRights from "./types/org/hypercerts/claim/rights.js";
|
|
1112
1241
|
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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"}
|