@hypercerts-org/lexicon 0.11.2 → 0.13.0
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 +20 -0
- package/README.md +92 -9
- package/SCHEMAS.md +36 -18
- package/dist/exports.d.ts +49 -2
- package/dist/exports.d.ts.map +1 -1
- package/dist/generated/exports.d.ts +49 -2
- package/dist/generated/exports.d.ts.map +1 -1
- package/dist/generated/lexicons.d.ts +90 -6
- package/dist/generated/lexicons.d.ts.map +1 -1
- package/dist/generated/types/app/certified/actor/organization.d.ts +8 -0
- package/dist/generated/types/app/certified/actor/organization.d.ts.map +1 -1
- package/dist/generated/types/app/certified/graph/follow.d.ts +18 -0
- package/dist/generated/types/app/certified/graph/follow.d.ts.map +1 -0
- package/dist/generated/types/app/certified/location.d.ts +1 -1
- package/dist/generated/types/app/certified/location.d.ts.map +1 -1
- package/dist/generated/types/org/hypercerts/workscope/tag.d.ts +2 -2
- package/dist/generated/types/org/hypercerts/workscope/tag.d.ts.map +1 -1
- package/dist/index.cjs +350 -220
- package/dist/index.cjs.map +1 -1
- package/dist/index.mjs +342 -216
- package/dist/index.mjs.map +1 -1
- package/dist/lexicons.cjs +50 -3
- package/dist/lexicons.cjs.map +1 -1
- package/dist/lexicons.d.ts +90 -6
- package/dist/lexicons.d.ts.map +1 -1
- package/dist/lexicons.mjs +50 -3
- package/dist/lexicons.mjs.map +1 -1
- package/dist/types/app/certified/actor/organization.d.ts +8 -0
- package/dist/types/app/certified/actor/organization.d.ts.map +1 -1
- package/dist/types/app/certified/graph/follow.d.ts +18 -0
- package/dist/types/app/certified/graph/follow.d.ts.map +1 -0
- package/dist/types/app/certified/location.d.ts +1 -1
- package/dist/types/app/certified/location.d.ts.map +1 -1
- package/dist/types/org/hypercerts/workscope/tag.d.ts +2 -2
- package/dist/types/org/hypercerts/workscope/tag.d.ts.map +1 -1
- package/lexicons/app/certified/actor/organization.json +14 -0
- package/lexicons/app/certified/graph/follow.json +32 -0
- package/lexicons/app/certified/location.json +1 -1
- package/lexicons/org/hypercerts/workscope/tag.json +2 -2
- package/package.json +1 -1
package/dist/lexicons.d.ts
CHANGED
|
@@ -116,6 +116,16 @@ export declare const schemaDict: {
|
|
|
116
116
|
readonly format: "datetime";
|
|
117
117
|
readonly description: "When the organization was established. Stored as datetime per ATProto conventions (no date-only format exists). Clients should use midnight UTC (e.g., '2005-01-01T00:00:00.000Z'); consumers should treat only the date portion as canonical.";
|
|
118
118
|
};
|
|
119
|
+
readonly longDescription: {
|
|
120
|
+
readonly type: "union";
|
|
121
|
+
readonly refs: ["lex:org.hypercerts.defs#descriptionString", "lex:pub.leaflet.pages.linearDocument", "lex:com.atproto.repo.strongRef"];
|
|
122
|
+
readonly description: "Long-form description of the organization, such as its mission, history, or detailed project narrative. An inline string for plain text or markdown, a Leaflet linear document record embedded directly, or a strong reference to an existing document record.";
|
|
123
|
+
};
|
|
124
|
+
readonly visibility: {
|
|
125
|
+
readonly type: "string";
|
|
126
|
+
readonly knownValues: ["public", "unlisted"];
|
|
127
|
+
readonly description: "Controls whether the organization or project is publicly discoverable on platforms that honor this setting.";
|
|
128
|
+
};
|
|
119
129
|
readonly createdAt: {
|
|
120
130
|
readonly type: "string";
|
|
121
131
|
readonly format: "datetime";
|
|
@@ -355,6 +365,38 @@ export declare const schemaDict: {
|
|
|
355
365
|
};
|
|
356
366
|
};
|
|
357
367
|
};
|
|
368
|
+
readonly AppCertifiedGraphFollow: {
|
|
369
|
+
readonly lexicon: 1;
|
|
370
|
+
readonly id: "app.certified.graph.follow";
|
|
371
|
+
readonly defs: {
|
|
372
|
+
readonly main: {
|
|
373
|
+
readonly type: "record";
|
|
374
|
+
readonly description: "Record declaring a social 'follow' relationship of another account. Duplicate follows will be ignored by the AppView.";
|
|
375
|
+
readonly key: "tid";
|
|
376
|
+
readonly record: {
|
|
377
|
+
readonly type: "object";
|
|
378
|
+
readonly required: ["subject", "createdAt"];
|
|
379
|
+
readonly properties: {
|
|
380
|
+
readonly subject: {
|
|
381
|
+
readonly type: "string";
|
|
382
|
+
readonly format: "did";
|
|
383
|
+
readonly description: "DID of the account being followed.";
|
|
384
|
+
};
|
|
385
|
+
readonly createdAt: {
|
|
386
|
+
readonly type: "string";
|
|
387
|
+
readonly format: "datetime";
|
|
388
|
+
readonly description: "Client-declared timestamp when this record was originally created.";
|
|
389
|
+
};
|
|
390
|
+
readonly via: {
|
|
391
|
+
readonly type: "ref";
|
|
392
|
+
readonly ref: "lex:com.atproto.repo.strongRef";
|
|
393
|
+
readonly description: "Optional strong reference to a record that mediated this follow (e.g. a starter pack or other curated list). Mirrors the optional `via` field on app.bsky.graph.follow; the referenced record may conform with any lexicon.";
|
|
394
|
+
};
|
|
395
|
+
};
|
|
396
|
+
};
|
|
397
|
+
};
|
|
398
|
+
};
|
|
399
|
+
};
|
|
358
400
|
readonly AppCertifiedLinkEvm: {
|
|
359
401
|
readonly lexicon: 1;
|
|
360
402
|
readonly id: "app.certified.link.evm";
|
|
@@ -468,7 +510,7 @@ export declare const schemaDict: {
|
|
|
468
510
|
};
|
|
469
511
|
readonly locationType: {
|
|
470
512
|
readonly type: "string";
|
|
471
|
-
readonly description: "An identifier for the format of the location data
|
|
513
|
+
readonly description: "An identifier for the format of the location data. Use `geojson-point` for a single GeoJSON Point; use `geojson` as the catch-all for any other GeoJSON geometry (Polygon, MultiPolygon, FeatureCollection, etc.) — the inner payload's own GeoJSON `type` field carries the specifics. Values beyond the known set are permitted; see the Location Protocol spec for the canonical registry: https://spec.decentralizedgeo.org/specification/location-types/#location-type-registry";
|
|
472
514
|
readonly knownValues: ["coordinate-decimal", "geojson-point", "geojson", "h3", "geohash", "wkt", "address", "scaledCoordinates"];
|
|
473
515
|
readonly maxLength: 20;
|
|
474
516
|
};
|
|
@@ -1671,7 +1713,7 @@ export declare const schemaDict: {
|
|
|
1671
1713
|
};
|
|
1672
1714
|
readonly category: {
|
|
1673
1715
|
readonly type: "string";
|
|
1674
|
-
readonly description: "Category type of this scope.";
|
|
1716
|
+
readonly description: "Category type of this scope. Values beyond the known set are permitted.";
|
|
1675
1717
|
readonly knownValues: ["topic", "language", "domain", "method"];
|
|
1676
1718
|
readonly maxLength: 50;
|
|
1677
1719
|
};
|
|
@@ -1688,7 +1730,7 @@ export declare const schemaDict: {
|
|
|
1688
1730
|
};
|
|
1689
1731
|
readonly status: {
|
|
1690
1732
|
readonly type: "string";
|
|
1691
|
-
readonly description: "Lifecycle status of this tag. Communities propose tags, curators accept them, deprecated tags point to replacements via supersededBy.";
|
|
1733
|
+
readonly description: "Lifecycle status of this tag. Communities propose tags, curators accept them, deprecated tags point to replacements via supersededBy. Values beyond the known set are permitted.";
|
|
1692
1734
|
readonly knownValues: ["proposed", "accepted", "deprecated"];
|
|
1693
1735
|
readonly maxLength: 20;
|
|
1694
1736
|
};
|
|
@@ -2434,6 +2476,16 @@ export declare const schemas: ({
|
|
|
2434
2476
|
readonly format: "datetime";
|
|
2435
2477
|
readonly description: "When the organization was established. Stored as datetime per ATProto conventions (no date-only format exists). Clients should use midnight UTC (e.g., '2005-01-01T00:00:00.000Z'); consumers should treat only the date portion as canonical.";
|
|
2436
2478
|
};
|
|
2479
|
+
readonly longDescription: {
|
|
2480
|
+
readonly type: "union";
|
|
2481
|
+
readonly refs: ["lex:org.hypercerts.defs#descriptionString", "lex:pub.leaflet.pages.linearDocument", "lex:com.atproto.repo.strongRef"];
|
|
2482
|
+
readonly description: "Long-form description of the organization, such as its mission, history, or detailed project narrative. An inline string for plain text or markdown, a Leaflet linear document record embedded directly, or a strong reference to an existing document record.";
|
|
2483
|
+
};
|
|
2484
|
+
readonly visibility: {
|
|
2485
|
+
readonly type: "string";
|
|
2486
|
+
readonly knownValues: ["public", "unlisted"];
|
|
2487
|
+
readonly description: "Controls whether the organization or project is publicly discoverable on platforms that honor this setting.";
|
|
2488
|
+
};
|
|
2437
2489
|
readonly createdAt: {
|
|
2438
2490
|
readonly type: "string";
|
|
2439
2491
|
readonly format: "datetime";
|
|
@@ -2667,6 +2719,37 @@ export declare const schemas: ({
|
|
|
2667
2719
|
};
|
|
2668
2720
|
};
|
|
2669
2721
|
};
|
|
2722
|
+
} | {
|
|
2723
|
+
readonly lexicon: 1;
|
|
2724
|
+
readonly id: "app.certified.graph.follow";
|
|
2725
|
+
readonly defs: {
|
|
2726
|
+
readonly main: {
|
|
2727
|
+
readonly type: "record";
|
|
2728
|
+
readonly description: "Record declaring a social 'follow' relationship of another account. Duplicate follows will be ignored by the AppView.";
|
|
2729
|
+
readonly key: "tid";
|
|
2730
|
+
readonly record: {
|
|
2731
|
+
readonly type: "object";
|
|
2732
|
+
readonly required: ["subject", "createdAt"];
|
|
2733
|
+
readonly properties: {
|
|
2734
|
+
readonly subject: {
|
|
2735
|
+
readonly type: "string";
|
|
2736
|
+
readonly format: "did";
|
|
2737
|
+
readonly description: "DID of the account being followed.";
|
|
2738
|
+
};
|
|
2739
|
+
readonly createdAt: {
|
|
2740
|
+
readonly type: "string";
|
|
2741
|
+
readonly format: "datetime";
|
|
2742
|
+
readonly description: "Client-declared timestamp when this record was originally created.";
|
|
2743
|
+
};
|
|
2744
|
+
readonly via: {
|
|
2745
|
+
readonly type: "ref";
|
|
2746
|
+
readonly ref: "lex:com.atproto.repo.strongRef";
|
|
2747
|
+
readonly description: "Optional strong reference to a record that mediated this follow (e.g. a starter pack or other curated list). Mirrors the optional `via` field on app.bsky.graph.follow; the referenced record may conform with any lexicon.";
|
|
2748
|
+
};
|
|
2749
|
+
};
|
|
2750
|
+
};
|
|
2751
|
+
};
|
|
2752
|
+
};
|
|
2670
2753
|
} | {
|
|
2671
2754
|
readonly lexicon: 1;
|
|
2672
2755
|
readonly id: "app.certified.link.evm";
|
|
@@ -2779,7 +2862,7 @@ export declare const schemas: ({
|
|
|
2779
2862
|
};
|
|
2780
2863
|
readonly locationType: {
|
|
2781
2864
|
readonly type: "string";
|
|
2782
|
-
readonly description: "An identifier for the format of the location data
|
|
2865
|
+
readonly description: "An identifier for the format of the location data. Use `geojson-point` for a single GeoJSON Point; use `geojson` as the catch-all for any other GeoJSON geometry (Polygon, MultiPolygon, FeatureCollection, etc.) — the inner payload's own GeoJSON `type` field carries the specifics. Values beyond the known set are permitted; see the Location Protocol spec for the canonical registry: https://spec.decentralizedgeo.org/specification/location-types/#location-type-registry";
|
|
2783
2866
|
readonly knownValues: ["coordinate-decimal", "geojson-point", "geojson", "h3", "geohash", "wkt", "address", "scaledCoordinates"];
|
|
2784
2867
|
readonly maxLength: 20;
|
|
2785
2868
|
};
|
|
@@ -3966,7 +4049,7 @@ export declare const schemas: ({
|
|
|
3966
4049
|
};
|
|
3967
4050
|
readonly category: {
|
|
3968
4051
|
readonly type: "string";
|
|
3969
|
-
readonly description: "Category type of this scope.";
|
|
4052
|
+
readonly description: "Category type of this scope. Values beyond the known set are permitted.";
|
|
3970
4053
|
readonly knownValues: ["topic", "language", "domain", "method"];
|
|
3971
4054
|
readonly maxLength: 50;
|
|
3972
4055
|
};
|
|
@@ -3983,7 +4066,7 @@ export declare const schemas: ({
|
|
|
3983
4066
|
};
|
|
3984
4067
|
readonly status: {
|
|
3985
4068
|
readonly type: "string";
|
|
3986
|
-
readonly description: "Lifecycle status of this tag. Communities propose tags, curators accept them, deprecated tags point to replacements via supersededBy.";
|
|
4069
|
+
readonly description: "Lifecycle status of this tag. Communities propose tags, curators accept them, deprecated tags point to replacements via supersededBy. Values beyond the known set are permitted.";
|
|
3987
4070
|
readonly knownValues: ["proposed", "accepted", "deprecated"];
|
|
3988
4071
|
readonly maxLength: 20;
|
|
3989
4072
|
};
|
|
@@ -4614,6 +4697,7 @@ export declare const ids: {
|
|
|
4614
4697
|
readonly AppCertifiedBadgeDefinition: "app.certified.badge.definition";
|
|
4615
4698
|
readonly AppCertifiedBadgeResponse: "app.certified.badge.response";
|
|
4616
4699
|
readonly AppCertifiedDefs: "app.certified.defs";
|
|
4700
|
+
readonly AppCertifiedGraphFollow: "app.certified.graph.follow";
|
|
4617
4701
|
readonly AppCertifiedLinkEvm: "app.certified.link.evm";
|
|
4618
4702
|
readonly AppCertifiedLocation: "app.certified.location";
|
|
4619
4703
|
readonly ComAtprotoRepoStrongRef: "com.atproto.repo.strongRef";
|
package/dist/lexicons.d.ts.map
CHANGED
|
@@ -1 +1 @@
|
|
|
1
|
-
{"version":3,"file":"lexicons.d.ts","sourceRoot":"","sources":["../generated/lexicons.ts"],"names":[],"mappings":"AAAA;;GAEG;AACH,OAAO,EAEL,QAAQ,EAER,KAAK,gBAAgB,EACtB,MAAM,kBAAkB,CAAA;AAGzB,eAAO,MAAM,UAAU
|
|
1
|
+
{"version":3,"file":"lexicons.d.ts","sourceRoot":"","sources":["../generated/lexicons.ts"],"names":[],"mappings":"AAAA;;GAEG;AACH,OAAO,EAEL,QAAQ,EAER,KAAK,gBAAgB,EACtB,MAAM,kBAAkB,CAAA;AAGzB,eAAO,MAAM,UAAU;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;CAqrFwB,CAAA;AAC/C,eAAO,MAAM,OAAO;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;IAAmD,CAAA;AACvE,eAAO,MAAM,QAAQ,EAAE,QAAgC,CAAA;AAEvD,wBAAgB,QAAQ,CAAC,CAAC,SAAS;IAAE,KAAK,EAAE,MAAM,CAAA;CAAE,EAClD,CAAC,EAAE,OAAO,EACV,EAAE,EAAE,MAAM,EACV,IAAI,EAAE,MAAM,EACZ,YAAY,EAAE,IAAI,GACjB,gBAAgB,CAAC,CAAC,CAAC,CAAA;AACtB,wBAAgB,QAAQ,CAAC,CAAC,SAAS;IAAE,KAAK,CAAC,EAAE,MAAM,CAAA;CAAE,EACnD,CAAC,EAAE,OAAO,EACV,EAAE,EAAE,MAAM,EACV,IAAI,EAAE,MAAM,EACZ,YAAY,CAAC,EAAE,KAAK,GACnB,gBAAgB,CAAC,CAAC,CAAC,CAAA;AAiBtB,eAAO,MAAM,GAAG;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;CA6CN,CAAA"}
|
package/dist/lexicons.mjs
CHANGED
|
@@ -145,6 +145,20 @@ const schemaDict = {
|
|
|
145
145
|
format: 'datetime',
|
|
146
146
|
description: "When the organization was established. Stored as datetime per ATProto conventions (no date-only format exists). Clients should use midnight UTC (e.g., '2005-01-01T00:00:00.000Z'); consumers should treat only the date portion as canonical.",
|
|
147
147
|
},
|
|
148
|
+
longDescription: {
|
|
149
|
+
type: 'union',
|
|
150
|
+
refs: [
|
|
151
|
+
'lex:org.hypercerts.defs#descriptionString',
|
|
152
|
+
'lex:pub.leaflet.pages.linearDocument',
|
|
153
|
+
'lex:com.atproto.repo.strongRef',
|
|
154
|
+
],
|
|
155
|
+
description: 'Long-form description of the organization, such as its mission, history, or detailed project narrative. An inline string for plain text or markdown, a Leaflet linear document record embedded directly, or a strong reference to an existing document record.',
|
|
156
|
+
},
|
|
157
|
+
visibility: {
|
|
158
|
+
type: 'string',
|
|
159
|
+
knownValues: ['public', 'unlisted'],
|
|
160
|
+
description: 'Controls whether the organization or project is publicly discoverable on platforms that honor this setting.',
|
|
161
|
+
},
|
|
148
162
|
createdAt: {
|
|
149
163
|
type: 'string',
|
|
150
164
|
format: 'datetime',
|
|
@@ -405,6 +419,38 @@ const schemaDict = {
|
|
|
405
419
|
},
|
|
406
420
|
},
|
|
407
421
|
},
|
|
422
|
+
AppCertifiedGraphFollow: {
|
|
423
|
+
lexicon: 1,
|
|
424
|
+
id: 'app.certified.graph.follow',
|
|
425
|
+
defs: {
|
|
426
|
+
main: {
|
|
427
|
+
type: 'record',
|
|
428
|
+
description: "Record declaring a social 'follow' relationship of another account. Duplicate follows will be ignored by the AppView.",
|
|
429
|
+
key: 'tid',
|
|
430
|
+
record: {
|
|
431
|
+
type: 'object',
|
|
432
|
+
required: ['subject', 'createdAt'],
|
|
433
|
+
properties: {
|
|
434
|
+
subject: {
|
|
435
|
+
type: 'string',
|
|
436
|
+
format: 'did',
|
|
437
|
+
description: 'DID of the account being followed.',
|
|
438
|
+
},
|
|
439
|
+
createdAt: {
|
|
440
|
+
type: 'string',
|
|
441
|
+
format: 'datetime',
|
|
442
|
+
description: 'Client-declared timestamp when this record was originally created.',
|
|
443
|
+
},
|
|
444
|
+
via: {
|
|
445
|
+
type: 'ref',
|
|
446
|
+
ref: 'lex:com.atproto.repo.strongRef',
|
|
447
|
+
description: 'Optional strong reference to a record that mediated this follow (e.g. a starter pack or other curated list). Mirrors the optional `via` field on app.bsky.graph.follow; the referenced record may conform with any lexicon.',
|
|
448
|
+
},
|
|
449
|
+
},
|
|
450
|
+
},
|
|
451
|
+
},
|
|
452
|
+
},
|
|
453
|
+
},
|
|
408
454
|
AppCertifiedLinkEvm: {
|
|
409
455
|
lexicon: 1,
|
|
410
456
|
id: 'app.certified.link.evm',
|
|
@@ -524,7 +570,7 @@ const schemaDict = {
|
|
|
524
570
|
},
|
|
525
571
|
locationType: {
|
|
526
572
|
type: 'string',
|
|
527
|
-
description:
|
|
573
|
+
description: "An identifier for the format of the location data. Use `geojson-point` for a single GeoJSON Point; use `geojson` as the catch-all for any other GeoJSON geometry (Polygon, MultiPolygon, FeatureCollection, etc.) — the inner payload's own GeoJSON `type` field carries the specifics. Values beyond the known set are permitted; see the Location Protocol spec for the canonical registry: https://spec.decentralizedgeo.org/specification/location-types/#location-type-registry",
|
|
528
574
|
knownValues: [
|
|
529
575
|
'coordinate-decimal',
|
|
530
576
|
'geojson-point',
|
|
@@ -1828,7 +1874,7 @@ const schemaDict = {
|
|
|
1828
1874
|
},
|
|
1829
1875
|
category: {
|
|
1830
1876
|
type: 'string',
|
|
1831
|
-
description: 'Category type of this scope.',
|
|
1877
|
+
description: 'Category type of this scope. Values beyond the known set are permitted.',
|
|
1832
1878
|
knownValues: ['topic', 'language', 'domain', 'method'],
|
|
1833
1879
|
maxLength: 50,
|
|
1834
1880
|
},
|
|
@@ -1845,7 +1891,7 @@ const schemaDict = {
|
|
|
1845
1891
|
},
|
|
1846
1892
|
status: {
|
|
1847
1893
|
type: 'string',
|
|
1848
|
-
description: 'Lifecycle status of this tag. Communities propose tags, curators accept them, deprecated tags point to replacements via supersededBy.',
|
|
1894
|
+
description: 'Lifecycle status of this tag. Communities propose tags, curators accept them, deprecated tags point to replacements via supersededBy. Values beyond the known set are permitted.',
|
|
1849
1895
|
knownValues: ['proposed', 'accepted', 'deprecated'],
|
|
1850
1896
|
maxLength: 20,
|
|
1851
1897
|
},
|
|
@@ -2541,6 +2587,7 @@ const ids = {
|
|
|
2541
2587
|
AppCertifiedBadgeDefinition: 'app.certified.badge.definition',
|
|
2542
2588
|
AppCertifiedBadgeResponse: 'app.certified.badge.response',
|
|
2543
2589
|
AppCertifiedDefs: 'app.certified.defs',
|
|
2590
|
+
AppCertifiedGraphFollow: 'app.certified.graph.follow',
|
|
2544
2591
|
AppCertifiedLinkEvm: 'app.certified.link.evm',
|
|
2545
2592
|
AppCertifiedLocation: 'app.certified.location',
|
|
2546
2593
|
ComAtprotoRepoStrongRef: 'com.atproto.repo.strongRef',
|