@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/lexicons.cjs
CHANGED
|
@@ -147,6 +147,20 @@ const schemaDict = {
|
|
|
147
147
|
format: 'datetime',
|
|
148
148
|
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.",
|
|
149
149
|
},
|
|
150
|
+
longDescription: {
|
|
151
|
+
type: 'union',
|
|
152
|
+
refs: [
|
|
153
|
+
'lex:org.hypercerts.defs#descriptionString',
|
|
154
|
+
'lex:pub.leaflet.pages.linearDocument',
|
|
155
|
+
'lex:com.atproto.repo.strongRef',
|
|
156
|
+
],
|
|
157
|
+
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.',
|
|
158
|
+
},
|
|
159
|
+
visibility: {
|
|
160
|
+
type: 'string',
|
|
161
|
+
knownValues: ['public', 'unlisted'],
|
|
162
|
+
description: 'Controls whether the organization or project is publicly discoverable on platforms that honor this setting.',
|
|
163
|
+
},
|
|
150
164
|
createdAt: {
|
|
151
165
|
type: 'string',
|
|
152
166
|
format: 'datetime',
|