@hypercerts-org/lexicon 0.13.0 → 1.0.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 +30 -0
- package/SCHEMAS.md +95 -95
- package/dist/exports.d.ts +1 -1
- package/dist/generated/exports.d.ts +1 -1
- package/dist/generated/lexicons.d.ts +4 -4
- package/dist/index.cjs +5 -5
- package/dist/index.cjs.map +1 -1
- package/dist/index.mjs +5 -5
- package/dist/index.mjs.map +1 -1
- package/dist/lexicons.cjs +2 -2
- package/dist/lexicons.cjs.map +1 -1
- package/dist/lexicons.d.ts +4 -4
- package/dist/lexicons.mjs +2 -2
- package/dist/lexicons.mjs.map +1 -1
- package/lexicons/org/hypercerts/claim/activity.json +2 -2
- package/package.json +1 -1
package/dist/lexicons.d.ts
CHANGED
|
@@ -921,8 +921,8 @@ export declare const schemaDict: {
|
|
|
921
921
|
readonly scope: {
|
|
922
922
|
readonly type: "string";
|
|
923
923
|
readonly description: "The work scope description string.";
|
|
924
|
-
readonly maxLength:
|
|
925
|
-
readonly maxGraphemes:
|
|
924
|
+
readonly maxLength: 10000;
|
|
925
|
+
readonly maxGraphemes: 1000;
|
|
926
926
|
};
|
|
927
927
|
};
|
|
928
928
|
};
|
|
@@ -3269,8 +3269,8 @@ export declare const schemas: ({
|
|
|
3269
3269
|
readonly scope: {
|
|
3270
3270
|
readonly type: "string";
|
|
3271
3271
|
readonly description: "The work scope description string.";
|
|
3272
|
-
readonly maxLength:
|
|
3273
|
-
readonly maxGraphemes:
|
|
3272
|
+
readonly maxLength: 10000;
|
|
3273
|
+
readonly maxGraphemes: 1000;
|
|
3274
3274
|
};
|
|
3275
3275
|
};
|
|
3276
3276
|
};
|
package/dist/lexicons.mjs
CHANGED