@hypercerts-org/lexicon 0.11.2 → 0.12.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 +10 -0
- package/README.md +9 -9
- package/SCHEMAS.md +9 -7
- package/dist/exports.d.ts +11 -1
- package/dist/exports.d.ts.map +1 -1
- package/dist/generated/exports.d.ts +11 -1
- package/dist/generated/exports.d.ts.map +1 -1
- package/dist/generated/lexicons.d.ts +20 -0
- 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/index.cjs +32 -1
- package/dist/index.cjs.map +1 -1
- package/dist/index.mjs +32 -1
- package/dist/index.mjs.map +1 -1
- package/dist/lexicons.cjs +14 -0
- package/dist/lexicons.cjs.map +1 -1
- package/dist/lexicons.d.ts +20 -0
- package/dist/lexicons.d.ts.map +1 -1
- package/dist/lexicons.mjs +14 -0
- 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/lexicons/app/certified/actor/organization.json +14 -0
- package/package.json +1 -1
package/dist/index.mjs
CHANGED
|
@@ -154,6 +154,20 @@ const schemaDict = {
|
|
|
154
154
|
format: 'datetime',
|
|
155
155
|
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.",
|
|
156
156
|
},
|
|
157
|
+
longDescription: {
|
|
158
|
+
type: 'union',
|
|
159
|
+
refs: [
|
|
160
|
+
'lex:org.hypercerts.defs#descriptionString',
|
|
161
|
+
'lex:pub.leaflet.pages.linearDocument',
|
|
162
|
+
'lex:com.atproto.repo.strongRef',
|
|
163
|
+
],
|
|
164
|
+
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.',
|
|
165
|
+
},
|
|
166
|
+
visibility: {
|
|
167
|
+
type: 'string',
|
|
168
|
+
knownValues: ['public', 'unlisted'],
|
|
169
|
+
description: 'Controls whether the organization or project is publicly discoverable on platforms that honor this setting.',
|
|
170
|
+
},
|
|
157
171
|
createdAt: {
|
|
158
172
|
type: 'string',
|
|
159
173
|
format: 'datetime',
|
|
@@ -2721,6 +2735,23 @@ var defs$G = {
|
|
|
2721
2735
|
format: "datetime",
|
|
2722
2736
|
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."
|
|
2723
2737
|
},
|
|
2738
|
+
longDescription: {
|
|
2739
|
+
type: "union",
|
|
2740
|
+
refs: [
|
|
2741
|
+
"org.hypercerts.defs#descriptionString",
|
|
2742
|
+
"pub.leaflet.pages.linearDocument",
|
|
2743
|
+
"com.atproto.repo.strongRef"
|
|
2744
|
+
],
|
|
2745
|
+
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."
|
|
2746
|
+
},
|
|
2747
|
+
visibility: {
|
|
2748
|
+
type: "string",
|
|
2749
|
+
knownValues: [
|
|
2750
|
+
"public",
|
|
2751
|
+
"unlisted"
|
|
2752
|
+
],
|
|
2753
|
+
description: "Controls whether the organization or project is publicly discoverable on platforms that honor this setting."
|
|
2754
|
+
},
|
|
2724
2755
|
createdAt: {
|
|
2725
2756
|
type: "string",
|
|
2726
2757
|
format: "datetime",
|
|
@@ -6608,7 +6639,7 @@ var facet = /*#__PURE__*/Object.freeze({
|
|
|
6608
6639
|
* ⚠️ DO NOT EDIT THIS FILE MANUALLY ⚠️
|
|
6609
6640
|
*
|
|
6610
6641
|
* This file is automatically generated by scripts/generate-exports.js
|
|
6611
|
-
* Generated: 2026-04-
|
|
6642
|
+
* Generated: 2026-04-29T07:40:01.346Z
|
|
6612
6643
|
*
|
|
6613
6644
|
* To regenerate this file, run:
|
|
6614
6645
|
* npm run gen-api
|