@hypercerts-org/lexicon 0.10.0-beta.6 → 0.10.0-beta.7
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 +50 -0
- package/README.md +46 -0
- package/SCHEMAS.md +103 -97
- package/dist/exports.d.ts +44 -18
- package/dist/exports.d.ts.map +1 -1
- package/dist/generated/exports.d.ts +44 -18
- package/dist/generated/exports.d.ts.map +1 -1
- package/dist/generated/lexicons.d.ts +100 -48
- package/dist/generated/lexicons.d.ts.map +1 -1
- package/dist/generated/types/app/bsky/richtext/facet.d.ts +8 -0
- package/dist/generated/types/app/bsky/richtext/facet.d.ts.map +1 -0
- package/dist/generated/types/org/hypercerts/claim/activity.d.ts +9 -12
- package/dist/generated/types/org/hypercerts/claim/activity.d.ts.map +1 -1
- package/dist/generated/types/org/hypercerts/claim/collection.d.ts +18 -2
- package/dist/generated/types/org/hypercerts/claim/collection.d.ts.map +1 -1
- package/dist/index.cjs +124 -61
- package/dist/index.cjs.map +1 -1
- package/dist/index.mjs +124 -61
- package/dist/index.mjs.map +1 -1
- package/dist/lexicons.cjs +56 -24
- package/dist/lexicons.cjs.map +1 -1
- package/dist/lexicons.d.ts +100 -48
- package/dist/lexicons.d.ts.map +1 -1
- package/dist/lexicons.mjs +56 -24
- package/dist/lexicons.mjs.map +1 -1
- package/dist/types/app/bsky/richtext/facet.d.ts +8 -0
- package/dist/types/app/bsky/richtext/facet.d.ts.map +1 -0
- package/dist/types/org/hypercerts/claim/activity.d.ts +9 -12
- package/dist/types/org/hypercerts/claim/activity.d.ts.map +1 -1
- package/dist/types/org/hypercerts/claim/collection.d.ts +18 -2
- package/dist/types/org/hypercerts/claim/collection.d.ts.map +1 -1
- package/lexicons/org/hypercerts/claim/activity.json +23 -22
- package/lexicons/org/hypercerts/claim/collection.json +33 -2
- package/package.json +4 -1
package/CHANGELOG.md
CHANGED
|
@@ -1,5 +1,55 @@
|
|
|
1
1
|
# @hypercerts-org/lexicon
|
|
2
2
|
|
|
3
|
+
## 0.10.0-beta.7
|
|
4
|
+
|
|
5
|
+
### Minor Changes
|
|
6
|
+
|
|
7
|
+
- [#106](https://github.com/hypercerts-org/hypercerts-lexicon/pull/106) [`b03a1f7`](https://github.com/hypercerts-org/hypercerts-lexicon/commit/b03a1f7925b56a5d614bb3a40f7fe5e6321f3d34) Thanks [@copilot-swe-agent](https://github.com/apps/copilot-swe-agent)! - Add avatar and banner fields to collection lexicon for visual representation
|
|
8
|
+
|
|
9
|
+
- [#113](https://github.com/hypercerts-org/hypercerts-lexicon/pull/113) [`c3f9ca2`](https://github.com/hypercerts-org/hypercerts-lexicon/commit/c3f9ca2f5cb2c5da4d0f4272a74d06f6798e058b) Thanks [@holkexyz](https://github.com/holkexyz)! - Refactor collection items structure to support optional weights and remove activityWeight from activity schema
|
|
10
|
+
|
|
11
|
+
**Breaking Changes:**
|
|
12
|
+
- **Activity lexicon (`org.hypercerts.claim.activity`):**
|
|
13
|
+
- Removed `org.hypercerts.claim.activity#activityWeight` def
|
|
14
|
+
- Activity records no longer include activity weight information
|
|
15
|
+
- **Collection lexicon (`org.hypercerts.claim.collection`):**
|
|
16
|
+
- Changed `org.hypercerts.claim.collection#items` from array of strongRefs to array of item objects
|
|
17
|
+
- Added `org.hypercerts.claim.collection#item` def with:
|
|
18
|
+
- `itemIdentifier` (required): strongRef to an item (activity or collection)
|
|
19
|
+
- `itemWeight` (optional): positive numeric value stored as string
|
|
20
|
+
- Supports recursive collection nesting (items can reference activities or other collections)
|
|
21
|
+
|
|
22
|
+
**Migration:**
|
|
23
|
+
|
|
24
|
+
**Collection items:** Convert from array of strongRefs to array of item objects:
|
|
25
|
+
|
|
26
|
+
```json
|
|
27
|
+
// Before
|
|
28
|
+
"items": [strongRef1, strongRef2]
|
|
29
|
+
|
|
30
|
+
// After
|
|
31
|
+
"items": [
|
|
32
|
+
{ "itemIdentifier": strongRef1, "itemWeight": "1.5" },
|
|
33
|
+
{ "itemIdentifier": strongRef2 }
|
|
34
|
+
]
|
|
35
|
+
```
|
|
36
|
+
|
|
37
|
+
**Activity weights:** Migrate existing `org.hypercerts.claim.activity#activityWeight` data to collection `org.hypercerts.claim.collection#item.itemWeight`:
|
|
38
|
+
|
|
39
|
+
```json
|
|
40
|
+
// Old (removed from activity)
|
|
41
|
+
{ "activity": { "uri": "...", "cid": "..." }, "weight": "1.5" }
|
|
42
|
+
|
|
43
|
+
// New (in collection items)
|
|
44
|
+
{ "itemIdentifier": { "uri": "...", "cid": "..." }, "itemWeight": "1.5" }
|
|
45
|
+
```
|
|
46
|
+
|
|
47
|
+
Update collections that reference activities to include weights in `org.hypercerts.claim.collection#item.itemWeight`. Weights can be dropped if not needed.
|
|
48
|
+
|
|
49
|
+
- [#91](https://github.com/hypercerts-org/hypercerts-lexicon/pull/91) [`0c6da09`](https://github.com/hypercerts-org/hypercerts-lexicon/commit/0c6da093c8a38a3ee516a85b6bffee0850535b14) Thanks [@holkexyz](https://github.com/holkexyz)! - Add rich text facet support to activity claim descriptions
|
|
50
|
+
|
|
51
|
+
Add `shortDescriptionFacets` and `descriptionFacets` fields to the activity lexicon to support rich text annotations (mentions, URLs, hashtags, etc.) in activity claim descriptions.
|
|
52
|
+
|
|
3
53
|
## 0.10.0-beta.6
|
|
4
54
|
|
|
5
55
|
### Minor Changes
|
package/README.md
CHANGED
|
@@ -254,3 +254,49 @@ const projectRecord = {
|
|
|
254
254
|
**Note**: The `type` field is optional and can be set to "project",
|
|
255
255
|
"favorites", or any other collection type. The `description` field
|
|
256
256
|
supports rich-text via Leaflet linear documents.
|
|
257
|
+
|
|
258
|
+
### Adding Visual Representation to Collections
|
|
259
|
+
|
|
260
|
+
Collections can include `avatar` and `banner` fields for visual representation:
|
|
261
|
+
|
|
262
|
+
```typescript
|
|
263
|
+
import { COLLECTION_NSID } from "@hypercerts-org/lexicon";
|
|
264
|
+
|
|
265
|
+
const collectionRecord = {
|
|
266
|
+
$type: COLLECTION_NSID,
|
|
267
|
+
title: "Climate Action Projects",
|
|
268
|
+
avatar: {
|
|
269
|
+
image: blobRef, // or { uri: "https://..." }
|
|
270
|
+
},
|
|
271
|
+
banner: {
|
|
272
|
+
image: largeBlobRef, // or { uri: "https://..." }
|
|
273
|
+
},
|
|
274
|
+
items: [
|
|
275
|
+
// ... collection items
|
|
276
|
+
],
|
|
277
|
+
createdAt: new Date().toISOString(),
|
|
278
|
+
};
|
|
279
|
+
```
|
|
280
|
+
|
|
281
|
+
**Note**: Both `avatar` (up to 5MB) and `banner` (up to 10MB) fields
|
|
282
|
+
are optional and support either embedded image blobs or URI references to
|
|
283
|
+
external images.
|
|
284
|
+
|
|
285
|
+
### Adding Locations to Activities
|
|
286
|
+
|
|
287
|
+
The `locations` field in activity records is an array of strong references
|
|
288
|
+
(`com.atproto.repo.strongRef`) pointing to `app.certified.location` records.
|
|
289
|
+
Each strong reference contains two required fields:
|
|
290
|
+
|
|
291
|
+
- `uri`: The ATProto URI of the location record (e.g., `at://did:plc:alice/app.certified.location/abc123`)
|
|
292
|
+
- `cid`: The content identifier (CID) of the location record, ensuring referential integrity
|
|
293
|
+
|
|
294
|
+
**Validation and Expectations**:
|
|
295
|
+
|
|
296
|
+
- All location records referenced in the `locations` array must conform to the
|
|
297
|
+
`app.certified.location` lexicon schema
|
|
298
|
+
- The `uri` field must be a valid ATProto URI pointing to an existing location record
|
|
299
|
+
- The `cid` field must match the current CID of the referenced location record
|
|
300
|
+
- The `locations` field is optional; activities can be created without location data
|
|
301
|
+
- When using the sidecar pattern (same TID), ensure the location record is created
|
|
302
|
+
or updated alongside the activity record for consistency
|
package/SCHEMAS.md
CHANGED
|
@@ -15,36 +15,31 @@ Hypercerts-specific lexicons for tracking impact work and claims.
|
|
|
15
15
|
|
|
16
16
|
#### Properties
|
|
17
17
|
|
|
18
|
-
| Property
|
|
19
|
-
|
|
|
20
|
-
| `title`
|
|
21
|
-
| `shortDescription`
|
|
22
|
-
| `
|
|
23
|
-
| `
|
|
24
|
-
| `
|
|
25
|
-
| `
|
|
26
|
-
| `
|
|
27
|
-
| `
|
|
28
|
-
| `
|
|
29
|
-
| `
|
|
30
|
-
| `
|
|
18
|
+
| Property | Type | Required | Description | Comments |
|
|
19
|
+
| ------------------------ | -------- | -------- | ------------------------------------------------------------------------------------------------------------------------------------------------------- | ------------------------------------ |
|
|
20
|
+
| `title` | `string` | ✅ | Title of the hypercert. | maxLength: 256 |
|
|
21
|
+
| `shortDescription` | `string` | ✅ | Short summary of this activity claim, suitable for previews and list views. Rich text annotations may be provided via `shortDescriptionFacets`. | maxLength: 3000, maxGraphemes: 300 |
|
|
22
|
+
| `shortDescriptionFacets` | `ref` | ❌ | Rich text annotations for `shortDescription` (mentions, URLs, hashtags, etc). | |
|
|
23
|
+
| `description` | `string` | ❌ | Optional longer description of this activity claim, including context or interpretation. Rich text annotations may be provided via `descriptionFacets`. | maxLength: 30000, maxGraphemes: 3000 |
|
|
24
|
+
| `descriptionFacets` | `ref` | ❌ | Rich text annotations for `description` (mentions, URLs, hashtags, etc). | |
|
|
25
|
+
| `image` | `union` | ❌ | The hypercert visual representation as a URI or image blob. | |
|
|
26
|
+
| `workScope` | `ref` | ❌ | A strong reference to a record defining the scope of work. The record referenced should describe the logical scope using label-based conditions. | |
|
|
27
|
+
| `startDate` | `string` | ❌ | When the work began | |
|
|
28
|
+
| `endDate` | `string` | ❌ | When the work ended | |
|
|
29
|
+
| `contributors` | `ref` | ❌ | An array of contributor objects, each containing contributor information, weight, and contribution details. | |
|
|
30
|
+
| `rights` | `ref` | ❌ | A strong reference to the rights that this hypercert has. The record referenced must conform with the lexicon org.hypercerts.claim.rights. | |
|
|
31
|
+
| `locations` | `ref` | ❌ | An array of strong references to the location where activity was performed. The record referenced must conform with the lexicon app.certified.location. | |
|
|
32
|
+
| `createdAt` | `string` | ✅ | Client-declared timestamp when this record was originally created | |
|
|
31
33
|
|
|
32
34
|
#### Defs
|
|
33
35
|
|
|
34
36
|
##### contributor
|
|
35
37
|
|
|
36
|
-
| Property
|
|
37
|
-
|
|
|
38
|
-
| `
|
|
39
|
-
| `
|
|
40
|
-
| `contributionDetails`
|
|
41
|
-
|
|
42
|
-
##### activityWeight
|
|
43
|
-
|
|
44
|
-
| Property | Type | Required | Description |
|
|
45
|
-
| ---------- | -------- | -------- | ----------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------- |
|
|
46
|
-
| `activity` | `ref` | yes | A strong reference to a hypercert activity record. This activity must conform to the lexicon org.hypercerts.claim.activity |
|
|
47
|
-
| `weight` | `string` | yes | 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. |
|
|
38
|
+
| Property | Type | Required | Description |
|
|
39
|
+
| --------------------- | -------- | -------- | ------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------ |
|
|
40
|
+
| `contributorIdentity` | `union` | ✅ | Contributor identity as a string (DID or identifier) via org.hypercerts.claim.activity#contributorIdentity, or a strong reference to a contributor information record. |
|
|
41
|
+
| `contributionWeight` | `string` | ❌ | 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. |
|
|
42
|
+
| `contributionDetails` | `union` | ❌ | Contribution details as a string via org.hypercerts.claim.activity#contributorRole, or a strong reference to a contribution details record. |
|
|
48
43
|
|
|
49
44
|
---
|
|
50
45
|
|
|
@@ -58,14 +53,14 @@ Hypercerts-specific lexicons for tracking impact work and claims.
|
|
|
58
53
|
|
|
59
54
|
| Property | Type | Required | Description | Comments |
|
|
60
55
|
| -------------- | -------- | -------- | -------------------------------------------------------------------------------------------------------------------------------------------------------------------- | ----------------------------------- |
|
|
61
|
-
| `subject` | `ref` |
|
|
62
|
-
| `evaluators` | `ref` |
|
|
63
|
-
| `content` | `union` |
|
|
64
|
-
| `measurements` | `ref` |
|
|
65
|
-
| `summary` | `string` |
|
|
66
|
-
| `score` | `ref` |
|
|
67
|
-
| `location` | `ref` |
|
|
68
|
-
| `createdAt` | `string` |
|
|
56
|
+
| `subject` | `ref` | ❌ | A strong reference to what is being evaluated. (e.g activity, measurement, contribution, etc.) | |
|
|
57
|
+
| `evaluators` | `ref` | ✅ | DIDs of the evaluators | maxLength: 1000 |
|
|
58
|
+
| `content` | `union` | ❌ | Evaluation data (URIs or blobs) containing detailed reports or methodology | maxLength: 100 |
|
|
59
|
+
| `measurements` | `ref` | ❌ | Optional references to the measurements that contributed to this evaluation. The record(s) referenced must conform with the lexicon org.hypercerts.claim.measurement | maxLength: 100 |
|
|
60
|
+
| `summary` | `string` | ✅ | Brief evaluation summary | maxLength: 5000, maxGraphemes: 1000 |
|
|
61
|
+
| `score` | `ref` | ❌ | Overall score for an evaluation on a numeric scale. | |
|
|
62
|
+
| `location` | `ref` | ❌ | An optional reference for georeferenced evaluations. The record referenced must conform with the lexicon app.certified.location. | |
|
|
63
|
+
| `createdAt` | `string` | ✅ | Client-declared timestamp when this record was originally created | |
|
|
69
64
|
|
|
70
65
|
#### Defs
|
|
71
66
|
|
|
@@ -73,9 +68,9 @@ Hypercerts-specific lexicons for tracking impact work and claims.
|
|
|
73
68
|
|
|
74
69
|
| Property | Type | Required | Description |
|
|
75
70
|
| -------- | --------- | -------- | -------------------------------------------- |
|
|
76
|
-
| `min` | `integer` |
|
|
77
|
-
| `max` | `integer` |
|
|
78
|
-
| `value` | `integer` |
|
|
71
|
+
| `min` | `integer` | ✅ | Minimum value of the scale, e.g. 0 or 1. |
|
|
72
|
+
| `max` | `integer` | ✅ | Maximum value of the scale, e.g. 5 or 10. |
|
|
73
|
+
| `value` | `integer` | ✅ | Score within the inclusive range [min, max]. |
|
|
79
74
|
|
|
80
75
|
---
|
|
81
76
|
|
|
@@ -89,13 +84,13 @@ Hypercerts-specific lexicons for tracking impact work and claims.
|
|
|
89
84
|
|
|
90
85
|
| Property | Type | Required | Description | Comments |
|
|
91
86
|
| ------------------ | -------- | -------- | ------------------------------------------------------------------------------------------------------------------------- | --------------------------------------------------- |
|
|
92
|
-
| `subject` | `ref` |
|
|
93
|
-
| `content` | `union` |
|
|
94
|
-
| `title` | `string` |
|
|
95
|
-
| `shortDescription` | `string` |
|
|
96
|
-
| `description` | `string` |
|
|
97
|
-
| `relationType` | `string` |
|
|
98
|
-
| `createdAt` | `string` |
|
|
87
|
+
| `subject` | `ref` | ❌ | A strong reference to the record this evidence relates to (e.g. an activity, project, claim, or evaluation). | |
|
|
88
|
+
| `content` | `union` | ✅ | A piece of evidence (URI or blob) related to the subject record; it may support, clarify, or challenge a hypercert claim. | |
|
|
89
|
+
| `title` | `string` | ✅ | Title to describe the nature of the evidence. | maxLength: 256 |
|
|
90
|
+
| `shortDescription` | `string` | ❌ | Short description explaining what this evidence shows. | maxLength: 3000, maxGraphemes: 300 |
|
|
91
|
+
| `description` | `string` | ❌ | Longer description describing the evidence in more detail. | maxLength: 30000, maxGraphemes: 3000 |
|
|
92
|
+
| `relationType` | `string` | ❌ | How this evidence relates to the subject. | Known values: `supports`, `challenges`, `clarifies` |
|
|
93
|
+
| `createdAt` | `string` | ✅ | Client-declared timestamp when this record was originally created | |
|
|
99
94
|
|
|
100
95
|
---
|
|
101
96
|
|
|
@@ -109,15 +104,15 @@ Hypercerts-specific lexicons for tracking impact work and claims.
|
|
|
109
104
|
|
|
110
105
|
| Property | Type | Required | Description | Comments |
|
|
111
106
|
| ------------- | -------- | -------- | ---------------------------------------------------------------------------------------------------------------------------------------------- | -------------- |
|
|
112
|
-
| `subject` | `ref` |
|
|
113
|
-
| `measurers` | `ref` |
|
|
114
|
-
| `metric` | `string` |
|
|
115
|
-
| `value` | `string` |
|
|
116
|
-
| `methodType` | `string` |
|
|
117
|
-
| `methodURI` | `string` |
|
|
118
|
-
| `evidenceURI` | `string` |
|
|
119
|
-
| `location` | `ref` |
|
|
120
|
-
| `createdAt` | `string` |
|
|
107
|
+
| `subject` | `ref` | ❌ | A strong reference to the record this measurement refers to (e.g. an activity, project, or claim). | |
|
|
108
|
+
| `measurers` | `ref` | ✅ | DIDs of the entity (or entities) that measured this data | maxLength: 100 |
|
|
109
|
+
| `metric` | `string` | ✅ | The metric being measured | maxLength: 500 |
|
|
110
|
+
| `value` | `string` | ✅ | The measured value | maxLength: 500 |
|
|
111
|
+
| `methodType` | `string` | ❌ | Short identifier for the measurement methodology | maxLength: 30 |
|
|
112
|
+
| `methodURI` | `string` | ❌ | URI to methodology documentation, standard protocol, or measurement procedure | |
|
|
113
|
+
| `evidenceURI` | `string` | ❌ | URIs to related evidence or underlying data (e.g. org.hypercerts.claim.evidence records or raw datasets) | maxLength: 50 |
|
|
114
|
+
| `location` | `ref` | ❌ | A strong reference to the location where the measurement was taken. The record referenced must conform with the lexicon app.certified.location | |
|
|
115
|
+
| `createdAt` | `string` | ✅ | Client-declared timestamp when this record was originally created | |
|
|
121
116
|
|
|
122
117
|
---
|
|
123
118
|
|
|
@@ -129,14 +124,25 @@ Hypercerts-specific lexicons for tracking impact work and claims.
|
|
|
129
124
|
|
|
130
125
|
#### Properties
|
|
131
126
|
|
|
132
|
-
| Property | Type | Required | Description
|
|
133
|
-
| ------------------ | -------- | -------- |
|
|
134
|
-
| `type` | `string` |
|
|
135
|
-
| `title` | `string` |
|
|
136
|
-
| `shortDescription` | `string` |
|
|
137
|
-
| `description` | `ref` |
|
|
138
|
-
| `
|
|
139
|
-
| `
|
|
127
|
+
| Property | Type | Required | Description | Comments |
|
|
128
|
+
| ------------------ | -------- | -------- | ------------------------------------------------------------------------------------------------------------ | ---------------------------------- |
|
|
129
|
+
| `type` | `string` | ❌ | The type of this collection. Possible fields can be 'favorites', 'project', or any other type of collection. | |
|
|
130
|
+
| `title` | `string` | ✅ | The title of this collection | maxLength: 800, maxGraphemes: 80 |
|
|
131
|
+
| `shortDescription` | `string` | ❌ | Short summary of this collection, suitable for previews and list views | maxLength: 3000, maxGraphemes: 300 |
|
|
132
|
+
| `description` | `ref` | ❌ | Rich-text description, represented as a Leaflet linear document. | |
|
|
133
|
+
| `avatar` | `union` | ❌ | The collection's avatar/profile image as a URI or image blob. | |
|
|
134
|
+
| `banner` | `union` | ❌ | Larger horizontal image to display behind the collection view. | |
|
|
135
|
+
| `items` | `ref` | ✅ | Array of items in this collection with optional weights. | |
|
|
136
|
+
| `createdAt` | `string` | ✅ | Client-declared timestamp when this record was originally created | |
|
|
137
|
+
|
|
138
|
+
#### Defs
|
|
139
|
+
|
|
140
|
+
##### item
|
|
141
|
+
|
|
142
|
+
| Property | Type | Required | Description |
|
|
143
|
+
| ---------------- | -------- | -------- | ----------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------- |
|
|
144
|
+
| `itemIdentifier` | `ref` | ✅ | Strong reference to an item in this collection. Items can be activities (org.hypercerts.claim.activity) and/or other collections (org.hypercerts.claim.collection). |
|
|
145
|
+
| `itemWeight` | `string` | ❌ | Optional weight for this item (positive numeric value stored as string). Weights do not need to sum to a specific total; normalization can be performed by the consuming application as needed. |
|
|
140
146
|
|
|
141
147
|
---
|
|
142
148
|
|
|
@@ -150,11 +156,11 @@ Hypercerts-specific lexicons for tracking impact work and claims.
|
|
|
150
156
|
|
|
151
157
|
| Property | Type | Required | Description | Comments |
|
|
152
158
|
| ------------------- | -------- | -------- | ------------------------------------------------------------------ | -------------- |
|
|
153
|
-
| `rightsName` | `string` |
|
|
154
|
-
| `rightsType` | `string` |
|
|
155
|
-
| `rightsDescription` | `string` |
|
|
156
|
-
| `attachment` | `union` |
|
|
157
|
-
| `createdAt` | `string` |
|
|
159
|
+
| `rightsName` | `string` | ✅ | Full name of the rights | maxLength: 100 |
|
|
160
|
+
| `rightsType` | `string` | ✅ | Short rights identifier for easier search | maxLength: 10 |
|
|
161
|
+
| `rightsDescription` | `string` | ✅ | Description of the rights of this hypercert | |
|
|
162
|
+
| `attachment` | `union` | ❌ | An attachment to define the rights further, e.g. a legal document. | |
|
|
163
|
+
| `createdAt` | `string` | ✅ | Client-declared timestamp when this record was originally created | |
|
|
158
164
|
|
|
159
165
|
---
|
|
160
166
|
|
|
@@ -168,17 +174,17 @@ Hypercerts-specific lexicons for tracking impact work and claims.
|
|
|
168
174
|
|
|
169
175
|
| Property | Type | Required | Description | Comments |
|
|
170
176
|
| ---------------- | -------- | -------- | --------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------- | -------------- |
|
|
171
|
-
| `from` | `ref` |
|
|
172
|
-
| `to` | `string` |
|
|
173
|
-
| `amount` | `string` |
|
|
174
|
-
| `currency` | `string` |
|
|
175
|
-
| `paymentRail` | `string` |
|
|
176
|
-
| `paymentNetwork` | `string` |
|
|
177
|
-
| `transactionId` | `string` |
|
|
178
|
-
| `for` | `string` |
|
|
179
|
-
| `notes` | `string` |
|
|
180
|
-
| `occurredAt` | `string` |
|
|
181
|
-
| `createdAt` | `string` |
|
|
177
|
+
| `from` | `ref` | ✅ | DID of the sender who transferred the funds. Leave empty if sender wants to stay anonymous. | |
|
|
178
|
+
| `to` | `string` | ✅ | The recipient of the funds. Can be identified by DID or a clear-text name. | |
|
|
179
|
+
| `amount` | `string` | ✅ | Amount of funding received. | |
|
|
180
|
+
| `currency` | `string` | ✅ | Currency of the payment (e.g. EUR, USD, ETH). | |
|
|
181
|
+
| `paymentRail` | `string` | ❌ | How the funds were transferred (e.g. bank_transfer, credit_card, onchain, cash, check, payment_processor). | |
|
|
182
|
+
| `paymentNetwork` | `string` | ❌ | Optional network within the payment rail (e.g. arbitrum, ethereum, sepa, visa, paypal). | |
|
|
183
|
+
| `transactionId` | `string` | ❌ | 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. | |
|
|
184
|
+
| `for` | `string` | ❌ | Optional reference to the activity, project, or organization this funding relates to. | |
|
|
185
|
+
| `notes` | `string` | ❌ | Optional notes or additional context for this funding receipt. | maxLength: 500 |
|
|
186
|
+
| `occurredAt` | `string` | ❌ | Timestamp when the payment occurred. | |
|
|
187
|
+
| `createdAt` | `string` | ✅ | Client-declared timestamp when this receipt record was created. | |
|
|
182
188
|
|
|
183
189
|
---
|
|
184
190
|
|
|
@@ -212,13 +218,13 @@ Certified lexicons are common/shared lexicons that can be used across multiple p
|
|
|
212
218
|
|
|
213
219
|
| Property | Type | Required | Description | Comments |
|
|
214
220
|
| -------------- | -------- | -------- | ------------------------------------------------------------------------------------------------------------------------- | ------------------------------------------------------------------ |
|
|
215
|
-
| `lpVersion` | `string` |
|
|
216
|
-
| `srs` | `string` |
|
|
217
|
-
| `locationType` | `string` |
|
|
218
|
-
| `location` | `union` |
|
|
219
|
-
| `name` | `string` |
|
|
220
|
-
| `description` | `string` |
|
|
221
|
-
| `createdAt` | `string` |
|
|
221
|
+
| `lpVersion` | `string` | ✅ | The version of the Location Protocol | maxLength: 10 |
|
|
222
|
+
| `srs` | `string` | ✅ | The Spatial Reference System URI (e.g., http://www.opengis.net/def/crs/OGC/1.3/CRS84) that defines the coordinate system. | maxLength: 100 |
|
|
223
|
+
| `locationType` | `string` | ✅ | An identifier for the format of the location data (e.g., coordinate-decimal, geojson-point) | maxLength: 20, Known values: `coordinate-decimal`, `geojson-point` |
|
|
224
|
+
| `location` | `union` | ✅ | The location of where the work was performed as a URI or blob. | |
|
|
225
|
+
| `name` | `string` | ❌ | Optional name for this location | maxLength: 1000, maxGraphemes: 100 |
|
|
226
|
+
| `description` | `string` | ❌ | Optional description for this location | maxLength: 2000, maxGraphemes: 500 |
|
|
227
|
+
| `createdAt` | `string` | ✅ | Client-declared timestamp when this record was originally created | |
|
|
222
228
|
|
|
223
229
|
---
|
|
224
230
|
|
|
@@ -232,12 +238,12 @@ Certified lexicons are common/shared lexicons that can be used across multiple p
|
|
|
232
238
|
|
|
233
239
|
| Property | Type | Required | Description | Comments |
|
|
234
240
|
| ---------------- | -------- | -------- | ---------------------------------------------------------------------------------------- | --------------------------------------------------------------------------- |
|
|
235
|
-
| `badgeType` | `string` |
|
|
236
|
-
| `title` | `string` |
|
|
237
|
-
| `icon` | `blob` |
|
|
238
|
-
| `description` | `string` |
|
|
239
|
-
| `allowedIssuers` | `ref` |
|
|
240
|
-
| `createdAt` | `string` |
|
|
241
|
+
| `badgeType` | `string` | ✅ | Category of the badge (e.g. endorsement, participation, affiliation). | |
|
|
242
|
+
| `title` | `string` | ✅ | Human-readable title of the badge. | |
|
|
243
|
+
| `icon` | `blob` | ✅ | Icon representing the badge, stored as a blob for compact visual display. | maxSize: 1048576, accepts: image/png, image/jpeg, image/webp, image/svg+xml |
|
|
244
|
+
| `description` | `string` | ❌ | Optional short statement describing what the badge represents. | |
|
|
245
|
+
| `allowedIssuers` | `ref` | ❌ | Optional allowlist of DIDs allowed to issue this badge. If omitted, anyone may issue it. | |
|
|
246
|
+
| `createdAt` | `string` | ✅ | Client-declared timestamp when this record was originally created | |
|
|
241
247
|
|
|
242
248
|
---
|
|
243
249
|
|
|
@@ -251,10 +257,10 @@ Certified lexicons are common/shared lexicons that can be used across multiple p
|
|
|
251
257
|
|
|
252
258
|
| Property | Type | Required | Description |
|
|
253
259
|
| ----------- | -------- | -------- | ----------------------------------------------------------------------------------------------------------------------------------------------- |
|
|
254
|
-
| `badge` | `ref` |
|
|
255
|
-
| `subject` | `union` |
|
|
256
|
-
| `note` | `string` |
|
|
257
|
-
| `createdAt` | `string` |
|
|
260
|
+
| `badge` | `ref` | ✅ | Reference to the badge definition for this award. |
|
|
261
|
+
| `subject` | `union` | ✅ | 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. |
|
|
262
|
+
| `note` | `string` | ❌ | Optional statement explaining the reason for this badge award. |
|
|
263
|
+
| `createdAt` | `string` | ✅ | Client-declared timestamp when this record was originally created |
|
|
258
264
|
|
|
259
265
|
---
|
|
260
266
|
|
|
@@ -268,10 +274,10 @@ Certified lexicons are common/shared lexicons that can be used across multiple p
|
|
|
268
274
|
|
|
269
275
|
| Property | Type | Required | Description |
|
|
270
276
|
| ------------ | -------- | -------- | ------------------------------------------------------------------------ |
|
|
271
|
-
| `badgeAward` | `ref` |
|
|
272
|
-
| `response` | `string` |
|
|
273
|
-
| `weight` | `string` |
|
|
274
|
-
| `createdAt` | `string` |
|
|
277
|
+
| `badgeAward` | `ref` | ✅ | Reference to the badge award. |
|
|
278
|
+
| `response` | `string` | ✅ | The recipient’s response for the badge (accepted or rejected). |
|
|
279
|
+
| `weight` | `string` | ❌ | Optional relative weight for accepted badges, assigned by the recipient. |
|
|
280
|
+
| `createdAt` | `string` | ✅ | Client-declared timestamp when this record was originally created |
|
|
275
281
|
|
|
276
282
|
---
|
|
277
283
|
|
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-21T23:12:40.384Z
|
|
8
8
|
*
|
|
9
9
|
* To regenerate this file, run:
|
|
10
10
|
* npm run gen-api
|
|
@@ -315,12 +315,28 @@ export declare const HYPERCERTS_LEXICON_JSON: {
|
|
|
315
315
|
maxLength: number;
|
|
316
316
|
maxGraphemes: number;
|
|
317
317
|
};
|
|
318
|
+
shortDescriptionFacets: {
|
|
319
|
+
type: string;
|
|
320
|
+
description: string;
|
|
321
|
+
items: {
|
|
322
|
+
type: string;
|
|
323
|
+
ref: string;
|
|
324
|
+
};
|
|
325
|
+
};
|
|
318
326
|
description: {
|
|
319
327
|
type: string;
|
|
320
328
|
description: string;
|
|
321
329
|
maxLength: number;
|
|
322
330
|
maxGraphemes: number;
|
|
323
331
|
};
|
|
332
|
+
descriptionFacets: {
|
|
333
|
+
type: string;
|
|
334
|
+
description: string;
|
|
335
|
+
items: {
|
|
336
|
+
type: string;
|
|
337
|
+
ref: string;
|
|
338
|
+
};
|
|
339
|
+
};
|
|
324
340
|
image: {
|
|
325
341
|
type: string;
|
|
326
342
|
refs: string[];
|
|
@@ -374,12 +390,12 @@ export declare const HYPERCERTS_LEXICON_JSON: {
|
|
|
374
390
|
type: string;
|
|
375
391
|
required: string[];
|
|
376
392
|
properties: {
|
|
377
|
-
|
|
393
|
+
contributorIdentity: {
|
|
378
394
|
type: string;
|
|
379
395
|
refs: string[];
|
|
380
396
|
description: string;
|
|
381
397
|
};
|
|
382
|
-
|
|
398
|
+
contributionWeight: {
|
|
383
399
|
type: string;
|
|
384
400
|
description: string;
|
|
385
401
|
};
|
|
@@ -400,21 +416,6 @@ export declare const HYPERCERTS_LEXICON_JSON: {
|
|
|
400
416
|
maxLength: number;
|
|
401
417
|
maxGraphemes: number;
|
|
402
418
|
};
|
|
403
|
-
activityWeight: {
|
|
404
|
-
type: string;
|
|
405
|
-
required: string[];
|
|
406
|
-
properties: {
|
|
407
|
-
activity: {
|
|
408
|
-
type: string;
|
|
409
|
-
ref: string;
|
|
410
|
-
description: string;
|
|
411
|
-
};
|
|
412
|
-
weight: {
|
|
413
|
-
type: string;
|
|
414
|
-
description: string;
|
|
415
|
-
};
|
|
416
|
-
};
|
|
417
|
-
};
|
|
418
419
|
};
|
|
419
420
|
};
|
|
420
421
|
readonly COLLECTION: {
|
|
@@ -450,6 +451,16 @@ export declare const HYPERCERTS_LEXICON_JSON: {
|
|
|
450
451
|
ref: string;
|
|
451
452
|
description: string;
|
|
452
453
|
};
|
|
454
|
+
avatar: {
|
|
455
|
+
type: string;
|
|
456
|
+
refs: string[];
|
|
457
|
+
description: string;
|
|
458
|
+
};
|
|
459
|
+
banner: {
|
|
460
|
+
type: string;
|
|
461
|
+
refs: string[];
|
|
462
|
+
description: string;
|
|
463
|
+
};
|
|
453
464
|
items: {
|
|
454
465
|
type: string;
|
|
455
466
|
description: string;
|
|
@@ -466,6 +477,21 @@ export declare const HYPERCERTS_LEXICON_JSON: {
|
|
|
466
477
|
};
|
|
467
478
|
};
|
|
468
479
|
};
|
|
480
|
+
item: {
|
|
481
|
+
type: string;
|
|
482
|
+
required: string[];
|
|
483
|
+
properties: {
|
|
484
|
+
itemIdentifier: {
|
|
485
|
+
type: string;
|
|
486
|
+
ref: string;
|
|
487
|
+
description: string;
|
|
488
|
+
};
|
|
489
|
+
itemWeight: {
|
|
490
|
+
type: string;
|
|
491
|
+
description: string;
|
|
492
|
+
};
|
|
493
|
+
};
|
|
494
|
+
};
|
|
469
495
|
};
|
|
470
496
|
};
|
|
471
497
|
readonly CONTRIBUTIONDETAILS: {
|
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,sBAAsB,MAAM,6CAA6C,CAAC;AACjF,OAAO,qBAAqB,MAAM,gDAAgD,CAAC;AACnF,OAAO,uBAAuB,MAAM,kDAAkD,CAAC;AACvF,OAAO,gCAAgC,MAAM,2DAA2D,CAAC;AACzG,OAAO,mCAAmC,MAAM,8DAA8D,CAAC;AAC/G,OAAO,uBAAuB,MAAM,kDAAkD,CAAC;AACvF,OAAO,qBAAqB,MAAM,gDAAgD,CAAC;AACnF,OAAO,wBAAwB,MAAM,mDAAmD,CAAC;AACzF,OAAO,mBAAmB,MAAM,8CAA8C,CAAC;AAC/E,OAAO,4BAA4B,MAAM,sCAAsC,CAAC;AAChF,OAAO,4BAA4B,MAAM,iDAAiD,CAAC;AAG3F,OAAO,EACL,wBAAwB,EACxB,6BAA6B,EAC7B,2BAA2B,EAC3B,2BAA2B,EAC3B,qBAAqB,EACrB,sBAAsB,EACtB,qBAAqB,EACrB,uBAAuB,EACvB,gCAAgC,EAChC,mCAAmC,EACnC,uBAAuB,EACvB,qBAAqB,EACrB,wBAAwB,EACxB,mBAAmB,EACnB,4BAA4B,EAC5B,4BAA4B,GAC7B,CAAC;AAGF,OAAO,EACL,OAAO,IAAI,kBAAkB,EAC7B,UAAU,IAAI,sBAAsB,EACpC,QAAQ,EACR,QAAQ,EACR,GAAG,IAAI,wBAAwB,GAChC,MAAM,eAAe,CAAC;AAGvB,eAAO,MAAM,gBAAgB,EAAG,2BAAoC,CAAC;AACrE,eAAO,MAAM,qBAAqB,EAAG,gCAAyC,CAAC;AAC/E,eAAO,MAAM,mBAAmB,EAAG,8BAAuC,CAAC;AAC3E,eAAO,MAAM,mBAAmB,EAAG,oBAA6B,CAAC;AACjE,eAAO,MAAM,aAAa,EAAG,wBAAiC,CAAC;AAC/D,eAAO,MAAM,cAAc,EAAG,4BAAqC,CAAC;AACpE,eAAO,MAAM,aAAa,EAAG,+BAAwC,CAAC;AACtE,eAAO,MAAM,eAAe,EAAG,iCAA0C,CAAC;AAC1E,eAAO,MAAM,wBAAwB,EAAG,0CAAmD,CAAC;AAC5F,eAAO,MAAM,2BAA2B,EAAG,6CAAsD,CAAC;AAClG,eAAO,MAAM,eAAe,EAAG,iCAA0C,CAAC;AAC1E,eAAO,MAAM,aAAa,EAAG,+BAAwC,CAAC;AACtE,eAAO,MAAM,gBAAgB,EAAG,kCAA2C,CAAC;AAC5E,eAAO,MAAM,WAAW,EAAG,6BAAsC,CAAC;AAClE,eAAO,MAAM,oBAAoB,EAAG,qBAA8B,CAAC;AACnE,eAAO,MAAM,oBAAoB,EAAG,gCAAyC,CAAC;AAE9E;;;;;GAKG;AACH,eAAO,MAAM,gBAAgB;;;;;;;;;;;;;;;;;CAiBnB,CAAC;AAEX;;GAEG;AACH,eAAO,MAAM,uBAAuB
|
|
1
|
+
{"version":3,"file":"exports.d.ts","sourceRoot":"","sources":["../generated/exports.ts"],"names":[],"mappings":"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"}
|