@hypercerts-org/lexicon 0.10.0-beta.13 → 0.10.0-beta.15
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 +51 -0
- package/README.md +69 -2
- package/SCHEMAS.md +73 -9
- package/dist/exports.d.ts +140 -7
- package/dist/exports.d.ts.map +1 -1
- package/dist/generated/exports.d.ts +140 -7
- package/dist/generated/exports.d.ts.map +1 -1
- package/dist/generated/lexicons.d.ts +268 -22
- 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 +2 -2
- package/dist/generated/types/app/certified/location.d.ts.map +1 -1
- package/dist/generated/types/org/hypercerts/acknowledgement.d.ts +21 -0
- package/dist/generated/types/org/hypercerts/acknowledgement.d.ts.map +1 -0
- 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/index.cjs +530 -141
- package/dist/index.cjs.map +1 -1
- package/dist/index.mjs +518 -137
- package/dist/index.mjs.map +1 -1
- package/dist/lexicons.cjs +151 -11
- package/dist/lexicons.cjs.map +1 -1
- package/dist/lexicons.d.ts +268 -22
- package/dist/lexicons.d.ts.map +1 -1
- package/dist/lexicons.mjs +151 -11
- 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 +2 -2
- package/dist/types/app/certified/location.d.ts.map +1 -1
- package/dist/types/org/hypercerts/acknowledgement.d.ts +21 -0
- package/dist/types/org/hypercerts/acknowledgement.d.ts.map +1 -0
- package/dist/types/org/hypercerts/claim/activity.d.ts +21 -3
- package/dist/types/org/hypercerts/claim/activity.d.ts.map +1 -1
- package/lexicons/app/certified/actor/profile.json +51 -0
- package/lexicons/app/certified/defs.json +11 -3
- package/lexicons/app/certified/location.json +11 -2
- package/lexicons/org/hypercerts/acknowledgement.json +41 -0
- package/lexicons/org/hypercerts/claim/activity.json +31 -8
- package/package.json +1 -1
package/CHANGELOG.md
CHANGED
|
@@ -1,5 +1,56 @@
|
|
|
1
1
|
# @hypercerts-org/lexicon
|
|
2
2
|
|
|
3
|
+
## 0.10.0-beta.15
|
|
4
|
+
|
|
5
|
+
### Minor Changes
|
|
6
|
+
|
|
7
|
+
- [#76](https://github.com/hypercerts-org/hypercerts-lexicon/pull/76) [`3044e22`](https://github.com/hypercerts-org/hypercerts-lexicon/commit/3044e22c1345b3cd5764e3c6c3714b21e6911663) Thanks [@s-adamantine](https://github.com/s-adamantine)! - Add org.hypercerts.acknowledgement lexicon for bidirectional inclusion links between records across PDS repos
|
|
8
|
+
|
|
9
|
+
- [#136](https://github.com/hypercerts-org/hypercerts-lexicon/pull/136) [`062fbde`](https://github.com/hypercerts-org/hypercerts-lexicon/commit/062fbde905dbd939f75c366760be1c02bb8a0412) Thanks [@copilot-swe-agent](https://github.com/apps/copilot-swe-agent)! - Expand locationType knownValues to include geojson, h3, geohash, wkt, address, and scaledCoordinates from the [Location Protocol spec](https://spec.decentralizedgeo.org/specification/location-types/#location-type-registry)
|
|
10
|
+
|
|
11
|
+
## 0.10.0-beta.14
|
|
12
|
+
|
|
13
|
+
### Minor Changes
|
|
14
|
+
|
|
15
|
+
- [#133](https://github.com/hypercerts-org/hypercerts-lexicon/pull/133) [`6752cad`](https://github.com/hypercerts-org/hypercerts-lexicon/commit/6752cad3c9e58b9a8e1a3ca17f2ea7a4a68dba81) Thanks [@Kzoeps](https://github.com/Kzoeps)! - Add profile lexicon for Hypercert account profiles with support for display name, description, pronouns, website, avatar, banner.
|
|
16
|
+
|
|
17
|
+
- [#132](https://github.com/hypercerts-org/hypercerts-lexicon/pull/132) [`da481e0`](https://github.com/hypercerts-org/hypercerts-lexicon/commit/da481e09f5bd1a8e62e388f2c6001896d76b1fbf) Thanks [@aspiers](https://github.com/aspiers)! - Convert app.certified.defs#did to object type
|
|
18
|
+
|
|
19
|
+
The did definition in app.certified.defs has been converted from a primitive
|
|
20
|
+
string type to an object type to comply with the ATProto specification
|
|
21
|
+
requirement that all union variants must be object or record types.
|
|
22
|
+
|
|
23
|
+
This change was necessary because app.certified.badge.award uses this
|
|
24
|
+
definition in a union for the subject property.
|
|
25
|
+
|
|
26
|
+
Breaking changes:
|
|
27
|
+
- `app.certified.defs#did`: Now an object with `did` string property (maxLength 256)
|
|
28
|
+
- Code using this type must now access the `.did` property instead of using the value directly
|
|
29
|
+
|
|
30
|
+
- [#132](https://github.com/hypercerts-org/hypercerts-lexicon/pull/132) [`e134b26`](https://github.com/hypercerts-org/hypercerts-lexicon/commit/e134b26c43a70c0a9ae04cc12b8a3bd05990c470) Thanks [@aspiers](https://github.com/aspiers)! - Convert union string definitions to object types in activity lexicon
|
|
31
|
+
|
|
32
|
+
The contributorIdentity, contributorRole, and workScopeString definitions
|
|
33
|
+
in org.hypercerts.claim.activity have been converted from primitive string
|
|
34
|
+
types to object types to comply with the ATProto specification requirement
|
|
35
|
+
that all union variants must be object or record types.
|
|
36
|
+
|
|
37
|
+
Additionally, maximum length constraints have been reduced to more reasonable
|
|
38
|
+
values:
|
|
39
|
+
- `contributorIdentity.identity`: maxLength 1000, maxGraphemes 100 (previously no limits)
|
|
40
|
+
- `contributorRole.role`: maxLength 1000, maxGraphemes 100 (previously maxLength 10000, maxGraphemes 1000)
|
|
41
|
+
- `workScopeString.scope`: maxLength 1000, maxGraphemes 100 (previously maxLength 10000, maxGraphemes 1000)
|
|
42
|
+
|
|
43
|
+
Breaking changes:
|
|
44
|
+
- `contributorIdentity`: Now an object with `identity` string property
|
|
45
|
+
- `contributorRole`: Now an object with `role` string property
|
|
46
|
+
- `workScopeString`: Now an object with `scope` string property
|
|
47
|
+
- Reduced maximum lengths may affect existing records with longer values
|
|
48
|
+
|
|
49
|
+
This requires updating code that uses these union types to access the nested
|
|
50
|
+
property instead of using the value directly.
|
|
51
|
+
|
|
52
|
+
- [#135](https://github.com/hypercerts-org/hypercerts-lexicon/pull/135) [`806cfbc`](https://github.com/hypercerts-org/hypercerts-lexicon/commit/806cfbca7cbcd3674a5f8e97a6b6dd87ba806c08) Thanks [@Kzoeps](https://github.com/Kzoeps)! - Move profile lexicon from app.certified.profile to app.certified.actor.profile namespace, requiring migration of existing profile records
|
|
53
|
+
|
|
3
54
|
## 0.10.0-beta.13
|
|
4
55
|
|
|
5
56
|
### Minor Changes
|
package/README.md
CHANGED
|
@@ -102,7 +102,7 @@ const locationRecord = {
|
|
|
102
102
|
$type: LOCATION_NSID,
|
|
103
103
|
lpVersion: "1.0", // Location Protocol version
|
|
104
104
|
srs: "http://www.opengis.net/def/crs/OGC/1.3/CRS84", // Spatial Reference System
|
|
105
|
-
locationType: "coordinate-decimal", // or "geojson-point"
|
|
105
|
+
locationType: "coordinate-decimal", // or "geojson-point", "geojson", "h3", "geohash", "wkt", "address", etc.
|
|
106
106
|
location: {
|
|
107
107
|
uri: "https://example.com/location-data.geojson",
|
|
108
108
|
},
|
|
@@ -115,7 +115,7 @@ const locationRecord = {
|
|
|
115
115
|
|
|
116
116
|
- `lpVersion` (required): Version of the Location Protocol specification
|
|
117
117
|
- `srs` (required): Spatial Reference System URI defining the coordinate system
|
|
118
|
-
- `locationType` (required): Format identifier (e.g., "coordinate-decimal", "geojson-point")
|
|
118
|
+
- `locationType` (required): Format identifier (e.g., "coordinate-decimal", "geojson-point", "geojson", "h3", "geohash", "wkt", "address", "scaledCoordinates"). See the [Location Protocol spec](https://spec.decentralizedgeo.org/specification/location-types/#location-type-registry) for the full registry.
|
|
119
119
|
- `location` (required): Location data as URI, blob, or string
|
|
120
120
|
- `name` (optional): Human-readable name for the location
|
|
121
121
|
- `description` (optional): Additional context about the location
|
|
@@ -373,6 +373,73 @@ const collectionRecord = {
|
|
|
373
373
|
are optional and support either embedded image blobs or URI references to
|
|
374
374
|
external images.
|
|
375
375
|
|
|
376
|
+
### Acknowledging Inclusion
|
|
377
|
+
|
|
378
|
+
The `org.hypercerts.acknowledgement` record enables bidirectional
|
|
379
|
+
linking between records that live in different PDS repositories. When
|
|
380
|
+
one user includes another user's record (e.g. adding an activity to a
|
|
381
|
+
collection), the owner of the included record can create an
|
|
382
|
+
acknowledgement to confirm or reject the inclusion. This forms a
|
|
383
|
+
two-way link that an AppView can verify.
|
|
384
|
+
|
|
385
|
+
Each acknowledgement uses `com.atproto.repo.strongRef` fields to
|
|
386
|
+
reference both the **subject** (the record being included) and the
|
|
387
|
+
**context** (the record it's being included in).
|
|
388
|
+
|
|
389
|
+
See [SCHEMAS.md](SCHEMAS.md) for the full property reference.
|
|
390
|
+
|
|
391
|
+
#### Use Case: Activity Included in a Collection
|
|
392
|
+
|
|
393
|
+
A project organizer (Alice) creates a collection and adds Bob's
|
|
394
|
+
activity to it via a `strongRef` in the collection's `items[]` array.
|
|
395
|
+
Bob then creates an acknowledgement in his own repo to confirm:
|
|
396
|
+
|
|
397
|
+
```typescript
|
|
398
|
+
import { ACKNOWLEDGEMENT_NSID } from "@hypercerts-org/lexicon";
|
|
399
|
+
|
|
400
|
+
// Bob acknowledges that his activity is included in Alice's collection
|
|
401
|
+
const ack = {
|
|
402
|
+
$type: ACKNOWLEDGEMENT_NSID,
|
|
403
|
+
subject: {
|
|
404
|
+
uri: "at://did:plc:bob/org.hypercerts.claim.activity/3k2abc",
|
|
405
|
+
cid: "bafy...",
|
|
406
|
+
},
|
|
407
|
+
context: {
|
|
408
|
+
uri: "at://did:plc:alice/org.hypercerts.claim.collection/7x9def",
|
|
409
|
+
cid: "bafy...",
|
|
410
|
+
},
|
|
411
|
+
acknowledged: true,
|
|
412
|
+
createdAt: new Date().toISOString(),
|
|
413
|
+
};
|
|
414
|
+
```
|
|
415
|
+
|
|
416
|
+
#### Use Case: Contributor Included in an Activity
|
|
417
|
+
|
|
418
|
+
Alice creates an activity that lists Bob as a contributor. Bob creates
|
|
419
|
+
an acknowledgement in his own repo to confirm his participation:
|
|
420
|
+
|
|
421
|
+
```typescript
|
|
422
|
+
const ack = {
|
|
423
|
+
$type: ACKNOWLEDGEMENT_NSID,
|
|
424
|
+
subject: {
|
|
425
|
+
// Bob's contributor information record
|
|
426
|
+
uri: "at://did:plc:bob/org.hypercerts.claim.contributorInformation/abc123",
|
|
427
|
+
cid: "bafy...",
|
|
428
|
+
},
|
|
429
|
+
context: {
|
|
430
|
+
// Alice's activity that lists Bob as contributor
|
|
431
|
+
uri: "at://did:plc:alice/org.hypercerts.claim.activity/3k2abc",
|
|
432
|
+
cid: "bafy...",
|
|
433
|
+
},
|
|
434
|
+
acknowledged: true,
|
|
435
|
+
comment: "Confirming my contribution to this reforestation project",
|
|
436
|
+
createdAt: new Date().toISOString(),
|
|
437
|
+
};
|
|
438
|
+
```
|
|
439
|
+
|
|
440
|
+
Setting `acknowledged: false` explicitly rejects inclusion, which an
|
|
441
|
+
AppView can use to flag disputed associations.
|
|
442
|
+
|
|
376
443
|
### Adding Locations to Activities
|
|
377
444
|
|
|
378
445
|
The `locations` field in activity records is an array of strong references
|
package/SCHEMAS.md
CHANGED
|
@@ -7,6 +7,24 @@
|
|
|
7
7
|
|
|
8
8
|
Hypercerts-specific lexicons for tracking impact work and claims.
|
|
9
9
|
|
|
10
|
+
### `org.hypercerts.acknowledgement`
|
|
11
|
+
|
|
12
|
+
**Description:** Acknowledges the inclusion of one record (subject) within another (context). Typically created in the subject owner's repo to form a bidirectional link. For example, a contributor acknowledging inclusion in an activity, or an activity owner acknowledging inclusion in a collection.
|
|
13
|
+
|
|
14
|
+
**Key:** `tid`
|
|
15
|
+
|
|
16
|
+
#### Properties
|
|
17
|
+
|
|
18
|
+
| Property | Type | Required | Description | Comments |
|
|
19
|
+
| -------------- | --------- | -------- | --------------------------------------------------------------------------------------------------------------------------------------- | --------------- |
|
|
20
|
+
| `subject` | `ref` | ✅ | The record whose inclusion is being acknowledged (e.g. an activity, a contributor information record). | |
|
|
21
|
+
| `context` | `ref` | ✅ | The record that includes the subject (e.g. a collection/project that includes an activity, or an activity that includes a contributor). | |
|
|
22
|
+
| `acknowledged` | `boolean` | ✅ | Whether inclusion is acknowledged (true) or rejected (false). | |
|
|
23
|
+
| `comment` | `string` | ❌ | Optional comment providing additional context or reasoning. | maxLength: 1000 |
|
|
24
|
+
| `createdAt` | `string` | ✅ | Client-declared timestamp when this record was originally created. | |
|
|
25
|
+
|
|
26
|
+
---
|
|
27
|
+
|
|
10
28
|
### `org.hypercerts.claim.activity`
|
|
11
29
|
|
|
12
30
|
**Description:** A hypercert record tracking impact work.
|
|
@@ -41,6 +59,24 @@ Hypercerts-specific lexicons for tracking impact work and claims.
|
|
|
41
59
|
| `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
60
|
| `contributionDetails` | `union` | ❌ | Contribution details as a string via org.hypercerts.claim.activity#contributorRole, or a strong reference to a contribution details record. |
|
|
43
61
|
|
|
62
|
+
##### `org.hypercerts.claim.activity#contributorIdentity`
|
|
63
|
+
|
|
64
|
+
| Property | Type | Required | Description |
|
|
65
|
+
| ---------- | -------- | -------- | ---------------------------------------------------- |
|
|
66
|
+
| `identity` | `string` | ✅ | The contributor identity string (DID or identifier). |
|
|
67
|
+
|
|
68
|
+
##### `org.hypercerts.claim.activity#contributorRole`
|
|
69
|
+
|
|
70
|
+
| Property | Type | Required | Description |
|
|
71
|
+
| -------- | -------- | -------- | --------------------------------- |
|
|
72
|
+
| `role` | `string` | ✅ | The contribution role or details. |
|
|
73
|
+
|
|
74
|
+
##### `org.hypercerts.claim.activity#workScopeString`
|
|
75
|
+
|
|
76
|
+
| Property | Type | Required | Description |
|
|
77
|
+
| -------- | -------- | -------- | ---------------------------------- |
|
|
78
|
+
| `scope` | `string` | ✅ | The work scope description string. |
|
|
79
|
+
|
|
44
80
|
---
|
|
45
81
|
|
|
46
82
|
### `org.hypercerts.claim.attachment`
|
|
@@ -265,15 +301,15 @@ Certified lexicons are common/shared lexicons that can be used across multiple p
|
|
|
265
301
|
|
|
266
302
|
#### Properties
|
|
267
303
|
|
|
268
|
-
| Property | Type | Required | Description
|
|
269
|
-
| -------------- | -------- | -------- |
|
|
270
|
-
| `lpVersion` | `string` | ✅ | The version of the Location Protocol
|
|
271
|
-
| `srs` | `string` | ✅ | The Spatial Reference System URI (e.g., http://www.opengis.net/def/crs/OGC/1.3/CRS84) that defines the coordinate system.
|
|
272
|
-
| `locationType` | `string` | ✅ | An identifier for the format of the location data (e.g., coordinate-decimal, geojson-point)
|
|
273
|
-
| `location` | `union` | ✅ | The location of where the work was performed as a URI, blob, or inline string.
|
|
274
|
-
| `name` | `string` | ❌ | Optional name for this location
|
|
275
|
-
| `description` | `string` | ❌ | Optional description for this location
|
|
276
|
-
| `createdAt` | `string` | ✅ | Client-declared timestamp when this record was originally created
|
|
304
|
+
| Property | Type | Required | Description | Comments |
|
|
305
|
+
| -------------- | -------- | -------- | ----------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------- | ------------------------------------------------------------------------------------------------------------------------------------- |
|
|
306
|
+
| `lpVersion` | `string` | ✅ | The version of the Location Protocol | maxLength: 10 |
|
|
307
|
+
| `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 |
|
|
308
|
+
| `locationType` | `string` | ✅ | An identifier for the format of the location data (e.g., coordinate-decimal, geojson-point). See the Location Protocol spec for the full registry: https://spec.decentralizedgeo.org/specification/location-types/#location-type-registry | maxLength: 20, Known values: `coordinate-decimal`, `geojson-point`, `geojson`, `h3`, `geohash`, `wkt`, `address`, `scaledCoordinates` |
|
|
309
|
+
| `location` | `union` | ✅ | The location of where the work was performed as a URI, blob, or inline string. | |
|
|
310
|
+
| `name` | `string` | ❌ | Optional name for this location | maxLength: 1000, maxGraphemes: 100 |
|
|
311
|
+
| `description` | `string` | ❌ | Optional description for this location | maxLength: 2000, maxGraphemes: 500 |
|
|
312
|
+
| `createdAt` | `string` | ✅ | Client-declared timestamp when this record was originally created | |
|
|
277
313
|
|
|
278
314
|
#### Defs
|
|
279
315
|
|
|
@@ -338,10 +374,38 @@ Certified lexicons are common/shared lexicons that can be used across multiple p
|
|
|
338
374
|
|
|
339
375
|
---
|
|
340
376
|
|
|
377
|
+
### `app.certified.actor.profile`
|
|
378
|
+
|
|
379
|
+
**Description:** A declaration of a Hypercert account profile.
|
|
380
|
+
|
|
381
|
+
**Key:** `literal:self`
|
|
382
|
+
|
|
383
|
+
#### Properties
|
|
384
|
+
|
|
385
|
+
| Property | Type | Required | Description | Comments |
|
|
386
|
+
| ------------- | -------- | -------- | ------------------------------------------------------------------------------ | ---------------------------------- |
|
|
387
|
+
| `displayName` | `string` | ❌ | | maxLength: 640, maxGraphemes: 64 |
|
|
388
|
+
| `description` | `string` | ❌ | Free-form profile description text. | maxLength: 2560, maxGraphemes: 256 |
|
|
389
|
+
| `pronouns` | `string` | ❌ | Free-form pronouns text. | maxLength: 200, maxGraphemes: 20 |
|
|
390
|
+
| `website` | `string` | ❌ | | |
|
|
391
|
+
| `avatar` | `union` | ❌ | Small image to be displayed next to posts from account. AKA, 'profile picture' | |
|
|
392
|
+
| `banner` | `union` | ❌ | Larger horizontal image to display behind profile view. | |
|
|
393
|
+
| `createdAt` | `string` | ❌ | | |
|
|
394
|
+
|
|
395
|
+
---
|
|
396
|
+
|
|
341
397
|
### `app.certified.defs`
|
|
342
398
|
|
|
343
399
|
**Description:** Common type definitions used across certified protocols.
|
|
344
400
|
|
|
401
|
+
#### Defs
|
|
402
|
+
|
|
403
|
+
##### `app.certified.defs#did`
|
|
404
|
+
|
|
405
|
+
| Property | Type | Required | Description |
|
|
406
|
+
| -------- | -------- | -------- | --------------------- |
|
|
407
|
+
| `did` | `string` | ✅ | The DID string value. |
|
|
408
|
+
|
|
345
409
|
---
|
|
346
410
|
|
|
347
411
|
## Type Definitions
|
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-
|
|
7
|
+
* Generated: 2026-02-12T03:41:04.097Z
|
|
8
8
|
*
|
|
9
9
|
* To regenerate this file, run:
|
|
10
10
|
* npm run gen-api
|
|
@@ -21,12 +21,14 @@
|
|
|
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";
|
|
27
28
|
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";
|
|
31
|
+
import HYPERCERTS_ACKNOWLEDGEMENT_LEXICON_JSON from "../lexicons/org/hypercerts/acknowledgement.json";
|
|
30
32
|
import ACTIVITY_LEXICON_JSON from "../lexicons/org/hypercerts/claim/activity.json";
|
|
31
33
|
import ATTACHMENT_LEXICON_JSON from "../lexicons/org/hypercerts/claim/attachment.json";
|
|
32
34
|
import COLLECTION_LEXICON_JSON from "../lexicons/org/hypercerts/claim/collection.json";
|
|
@@ -38,14 +40,16 @@ import RIGHTS_LEXICON_JSON from "../lexicons/org/hypercerts/claim/rights.json";
|
|
|
38
40
|
import HYPERCERTS_DEFS_LEXICON_JSON from "../lexicons/org/hypercerts/defs.json";
|
|
39
41
|
import FUNDING_RECEIPT_LEXICON_JSON from "../lexicons/org/hypercerts/funding/receipt.json";
|
|
40
42
|
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, 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, };
|
|
43
|
+
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, HYPERCERTS_ACKNOWLEDGEMENT_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
44
|
export { schemas as HYPERCERTS_SCHEMAS, schemaDict as HYPERCERTS_SCHEMA_DICT, lexicons, validate, ids as HYPERCERTS_NSIDS_BY_TYPE, } from "./lexicons.js";
|
|
45
|
+
export declare const ACTOR_PROFILE_NSID: "app.certified.actor.profile";
|
|
43
46
|
export declare const BADGE_AWARD_NSID: "app.certified.badge.award";
|
|
44
47
|
export declare const BADGE_DEFINITION_NSID: "app.certified.badge.definition";
|
|
45
48
|
export declare const BADGE_RESPONSE_NSID: "app.certified.badge.response";
|
|
46
49
|
export declare const CERTIFIED_DEFS_NSID: "app.certified.defs";
|
|
47
50
|
export declare const LOCATION_NSID: "app.certified.location";
|
|
48
51
|
export declare const STRONG_REF_NSID: "com.atproto.repo.strongRef";
|
|
52
|
+
export declare const HYPERCERTS_ACKNOWLEDGEMENT_NSID: "org.hypercerts.acknowledgement";
|
|
49
53
|
export declare const ACTIVITY_NSID: "org.hypercerts.claim.activity";
|
|
50
54
|
export declare const ATTACHMENT_NSID: "org.hypercerts.claim.attachment";
|
|
51
55
|
export declare const COLLECTION_NSID: "org.hypercerts.claim.collection";
|
|
@@ -64,12 +68,14 @@ export declare const WORK_SCOPE_TAG_NSID: "org.hypercerts.helper.workScopeTag";
|
|
|
64
68
|
* correct collection names.
|
|
65
69
|
*/
|
|
66
70
|
export declare const HYPERCERTS_NSIDS: {
|
|
71
|
+
readonly ACTOR_PROFILE: "app.certified.actor.profile";
|
|
67
72
|
readonly BADGE_AWARD: "app.certified.badge.award";
|
|
68
73
|
readonly BADGE_DEFINITION: "app.certified.badge.definition";
|
|
69
74
|
readonly BADGE_RESPONSE: "app.certified.badge.response";
|
|
70
75
|
readonly CERTIFIED_DEFS: "app.certified.defs";
|
|
71
76
|
readonly LOCATION: "app.certified.location";
|
|
72
77
|
readonly STRONG_REF: "com.atproto.repo.strongRef";
|
|
78
|
+
readonly HYPERCERTS_ACKNOWLEDGEMENT: "org.hypercerts.acknowledgement";
|
|
73
79
|
readonly ACTIVITY: "org.hypercerts.claim.activity";
|
|
74
80
|
readonly ATTACHMENT: "org.hypercerts.claim.attachment";
|
|
75
81
|
readonly COLLECTION: "org.hypercerts.claim.collection";
|
|
@@ -86,6 +92,57 @@ export declare const HYPERCERTS_NSIDS: {
|
|
|
86
92
|
* Lexicon JSON objects organized by semantic record type.
|
|
87
93
|
*/
|
|
88
94
|
export declare const HYPERCERTS_LEXICON_JSON: {
|
|
95
|
+
readonly ACTOR_PROFILE: {
|
|
96
|
+
lexicon: number;
|
|
97
|
+
id: string;
|
|
98
|
+
defs: {
|
|
99
|
+
main: {
|
|
100
|
+
type: string;
|
|
101
|
+
description: string;
|
|
102
|
+
key: string;
|
|
103
|
+
record: {
|
|
104
|
+
type: string;
|
|
105
|
+
properties: {
|
|
106
|
+
displayName: {
|
|
107
|
+
type: string;
|
|
108
|
+
maxGraphemes: number;
|
|
109
|
+
maxLength: number;
|
|
110
|
+
};
|
|
111
|
+
description: {
|
|
112
|
+
type: string;
|
|
113
|
+
description: string;
|
|
114
|
+
maxGraphemes: number;
|
|
115
|
+
maxLength: number;
|
|
116
|
+
};
|
|
117
|
+
pronouns: {
|
|
118
|
+
type: string;
|
|
119
|
+
description: string;
|
|
120
|
+
maxGraphemes: number;
|
|
121
|
+
maxLength: number;
|
|
122
|
+
};
|
|
123
|
+
website: {
|
|
124
|
+
type: string;
|
|
125
|
+
format: string;
|
|
126
|
+
};
|
|
127
|
+
avatar: {
|
|
128
|
+
type: string;
|
|
129
|
+
refs: string[];
|
|
130
|
+
description: string;
|
|
131
|
+
};
|
|
132
|
+
banner: {
|
|
133
|
+
type: string;
|
|
134
|
+
refs: string[];
|
|
135
|
+
description: string;
|
|
136
|
+
};
|
|
137
|
+
createdAt: {
|
|
138
|
+
type: string;
|
|
139
|
+
format: string;
|
|
140
|
+
};
|
|
141
|
+
};
|
|
142
|
+
};
|
|
143
|
+
};
|
|
144
|
+
};
|
|
145
|
+
};
|
|
89
146
|
readonly BADGE_AWARD: {
|
|
90
147
|
lexicon: number;
|
|
91
148
|
id: string;
|
|
@@ -213,8 +270,16 @@ export declare const HYPERCERTS_LEXICON_JSON: {
|
|
|
213
270
|
defs: {
|
|
214
271
|
did: {
|
|
215
272
|
type: string;
|
|
216
|
-
format: string;
|
|
217
273
|
description: string;
|
|
274
|
+
required: string[];
|
|
275
|
+
properties: {
|
|
276
|
+
did: {
|
|
277
|
+
type: string;
|
|
278
|
+
format: string;
|
|
279
|
+
description: string;
|
|
280
|
+
maxLength: number;
|
|
281
|
+
};
|
|
282
|
+
};
|
|
218
283
|
};
|
|
219
284
|
};
|
|
220
285
|
};
|
|
@@ -308,6 +373,47 @@ export declare const HYPERCERTS_LEXICON_JSON: {
|
|
|
308
373
|
};
|
|
309
374
|
};
|
|
310
375
|
};
|
|
376
|
+
readonly HYPERCERTS_ACKNOWLEDGEMENT: {
|
|
377
|
+
lexicon: number;
|
|
378
|
+
id: string;
|
|
379
|
+
defs: {
|
|
380
|
+
main: {
|
|
381
|
+
type: string;
|
|
382
|
+
description: string;
|
|
383
|
+
key: string;
|
|
384
|
+
record: {
|
|
385
|
+
type: string;
|
|
386
|
+
required: string[];
|
|
387
|
+
properties: {
|
|
388
|
+
subject: {
|
|
389
|
+
type: string;
|
|
390
|
+
ref: string;
|
|
391
|
+
description: string;
|
|
392
|
+
};
|
|
393
|
+
context: {
|
|
394
|
+
type: string;
|
|
395
|
+
ref: string;
|
|
396
|
+
description: string;
|
|
397
|
+
};
|
|
398
|
+
acknowledged: {
|
|
399
|
+
type: string;
|
|
400
|
+
description: string;
|
|
401
|
+
};
|
|
402
|
+
comment: {
|
|
403
|
+
type: string;
|
|
404
|
+
description: string;
|
|
405
|
+
maxLength: number;
|
|
406
|
+
};
|
|
407
|
+
createdAt: {
|
|
408
|
+
type: string;
|
|
409
|
+
format: string;
|
|
410
|
+
description: string;
|
|
411
|
+
};
|
|
412
|
+
};
|
|
413
|
+
};
|
|
414
|
+
};
|
|
415
|
+
};
|
|
416
|
+
};
|
|
311
417
|
readonly ACTIVITY: {
|
|
312
418
|
lexicon: number;
|
|
313
419
|
id: string;
|
|
@@ -425,18 +531,41 @@ export declare const HYPERCERTS_LEXICON_JSON: {
|
|
|
425
531
|
contributorIdentity: {
|
|
426
532
|
type: string;
|
|
427
533
|
description: string;
|
|
534
|
+
required: string[];
|
|
535
|
+
properties: {
|
|
536
|
+
identity: {
|
|
537
|
+
type: string;
|
|
538
|
+
description: string;
|
|
539
|
+
maxLength: number;
|
|
540
|
+
maxGraphemes: number;
|
|
541
|
+
};
|
|
542
|
+
};
|
|
428
543
|
};
|
|
429
544
|
contributorRole: {
|
|
430
545
|
type: string;
|
|
431
546
|
description: string;
|
|
432
|
-
|
|
433
|
-
|
|
547
|
+
required: string[];
|
|
548
|
+
properties: {
|
|
549
|
+
role: {
|
|
550
|
+
type: string;
|
|
551
|
+
description: string;
|
|
552
|
+
maxLength: number;
|
|
553
|
+
maxGraphemes: number;
|
|
554
|
+
};
|
|
555
|
+
};
|
|
434
556
|
};
|
|
435
557
|
workScopeString: {
|
|
436
558
|
type: string;
|
|
437
559
|
description: string;
|
|
438
|
-
|
|
439
|
-
|
|
560
|
+
required: string[];
|
|
561
|
+
properties: {
|
|
562
|
+
scope: {
|
|
563
|
+
type: string;
|
|
564
|
+
description: string;
|
|
565
|
+
maxLength: number;
|
|
566
|
+
maxGraphemes: number;
|
|
567
|
+
};
|
|
568
|
+
};
|
|
440
569
|
};
|
|
441
570
|
};
|
|
442
571
|
};
|
|
@@ -1116,12 +1245,14 @@ export declare const HYPERCERTS_LEXICON_JSON: {
|
|
|
1116
1245
|
};
|
|
1117
1246
|
};
|
|
1118
1247
|
};
|
|
1248
|
+
export declare const ACTOR_PROFILE_LEXICON_DOC: LexiconDoc;
|
|
1119
1249
|
export declare const BADGE_AWARD_LEXICON_DOC: LexiconDoc;
|
|
1120
1250
|
export declare const BADGE_DEFINITION_LEXICON_DOC: LexiconDoc;
|
|
1121
1251
|
export declare const BADGE_RESPONSE_LEXICON_DOC: LexiconDoc;
|
|
1122
1252
|
export declare const CERTIFIED_DEFS_LEXICON_DOC: LexiconDoc;
|
|
1123
1253
|
export declare const LOCATION_LEXICON_DOC: LexiconDoc;
|
|
1124
1254
|
export declare const STRONG_REF_LEXICON_DOC: LexiconDoc;
|
|
1255
|
+
export declare const HYPERCERTS_ACKNOWLEDGEMENT_LEXICON_DOC: LexiconDoc;
|
|
1125
1256
|
export declare const ACTIVITY_LEXICON_DOC: LexiconDoc;
|
|
1126
1257
|
export declare const ATTACHMENT_LEXICON_DOC: LexiconDoc;
|
|
1127
1258
|
export declare const COLLECTION_LEXICON_DOC: LexiconDoc;
|
|
@@ -1137,12 +1268,14 @@ export declare const WORK_SCOPE_TAG_LEXICON_DOC: LexiconDoc;
|
|
|
1137
1268
|
* Lexicon document objects organized by semantic record type.
|
|
1138
1269
|
*/
|
|
1139
1270
|
export declare const HYPERCERTS_LEXICON_DOC: Record<string, LexiconDoc>;
|
|
1271
|
+
export * as AppCertifiedActorProfile from "./types/app/certified/actor/profile.js";
|
|
1140
1272
|
export * as AppCertifiedBadgeAward from "./types/app/certified/badge/award.js";
|
|
1141
1273
|
export * as AppCertifiedBadgeDefinition from "./types/app/certified/badge/definition.js";
|
|
1142
1274
|
export * as AppCertifiedBadgeResponse from "./types/app/certified/badge/response.js";
|
|
1143
1275
|
export * as AppCertifiedDefs from "./types/app/certified/defs.js";
|
|
1144
1276
|
export * as AppCertifiedLocation from "./types/app/certified/location.js";
|
|
1145
1277
|
export * as ComAtprotoRepoStrongRef from "./types/com/atproto/repo/strongRef.js";
|
|
1278
|
+
export * as OrgHypercertsAcknowledgement from "./types/org/hypercerts/acknowledgement.js";
|
|
1146
1279
|
export * as OrgHypercertsClaimActivity from "./types/org/hypercerts/claim/activity.js";
|
|
1147
1280
|
export * as OrgHypercertsClaimAttachment from "./types/org/hypercerts/claim/attachment.js";
|
|
1148
1281
|
export * as OrgHypercertsClaimCollection from "./types/org/hypercerts/claim/collection.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,uBAAuB,MAAM,kDAAkD,CAAC;AACvF,OAAO,iCAAiC,MAAM,2DAA2D,CAAC;AAC1G,OAAO,oCAAoC,MAAM,8DAA8D,CAAC;AAChH,OAAO,uBAAuB,MAAM,kDAAkD,CAAC;AACvF,OAAO,wBAAwB,MAAM,mDAAmD,CAAC;AACzF,OAAO,mBAAmB,MAAM,8CAA8C,CAAC;AAC/E,OAAO,4BAA4B,MAAM,sCAAsC,CAAC;AAChF,OAAO,4BAA4B,MAAM,iDAAiD,CAAC;AAC3F,OAAO,2BAA2B,MAAM,qDAAqD,CAAC;AAG9F,OAAO,EACL,wBAAwB,EACxB,6BAA6B,EAC7B,2BAA2B,EAC3B,2BAA2B,EAC3B,qBAAqB,EACrB,uBAAuB,EACvB,qBAAqB,EACrB,uBAAuB,EACvB,uBAAuB,EACvB,iCAAiC,EACjC,oCAAoC,EACpC,uBAAuB,EACvB,wBAAwB,EACxB,mBAAmB,EACnB,4BAA4B,EAC5B,4BAA4B,EAC5B,2BAA2B,GAC5B,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,eAAe,EAAG,4BAAqC,CAAC;AACrE,eAAO,MAAM,aAAa,EAAG,+BAAwC,CAAC;AACtE,eAAO,MAAM,eAAe,EAAG,iCAA0C,CAAC;AAC1E,eAAO,MAAM,eAAe,EAAG,iCAA0C,CAAC;AAC1E,eAAO,MAAM,yBAAyB,EAAG,0CAAmD,CAAC;AAC7F,eAAO,MAAM,4BAA4B,EAAG,6CAAsD,CAAC;AACnG,eAAO,MAAM,eAAe,EAAG,iCAA0C,CAAC;AAC1E,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;AAC9E,eAAO,MAAM,mBAAmB,EAAG,oCAA6C,CAAC;AAEjF;;;;;GAKG;AACH,eAAO,MAAM,gBAAgB
|
|
1
|
+
{"version":3,"file":"exports.d.ts","sourceRoot":"","sources":["../generated/exports.ts"],"names":[],"mappings":"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"}
|