@hypercerts-org/sdk-core 0.8.0-beta.0 → 0.9.0-beta.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/README.md +125 -8
- package/dist/index.cjs +3 -5
- package/dist/index.cjs.map +1 -1
- package/dist/index.d.ts +5 -5
- package/dist/index.mjs +3 -5
- package/dist/index.mjs.map +1 -1
- package/dist/types.d.ts +5 -5
- package/package.json +2 -2
package/dist/types.d.ts
CHANGED
|
@@ -1332,13 +1332,13 @@ interface CreateHypercertParams {
|
|
|
1332
1332
|
*
|
|
1333
1333
|
* ISO 8601 date format (YYYY-MM-DD).
|
|
1334
1334
|
*/
|
|
1335
|
-
|
|
1335
|
+
workTimeFrameFrom: string;
|
|
1336
1336
|
/**
|
|
1337
1337
|
* End date of the work period.
|
|
1338
1338
|
*
|
|
1339
1339
|
* ISO 8601 date format (YYYY-MM-DD).
|
|
1340
1340
|
*/
|
|
1341
|
-
|
|
1341
|
+
workTimeFrameTo: string;
|
|
1342
1342
|
/**
|
|
1343
1343
|
* Rights associated with the hypercert.
|
|
1344
1344
|
*/
|
|
@@ -1363,11 +1363,11 @@ interface CreateHypercertParams {
|
|
|
1363
1363
|
description: string;
|
|
1364
1364
|
};
|
|
1365
1365
|
/**
|
|
1366
|
-
*
|
|
1366
|
+
* Short description for display in lists/cards.
|
|
1367
1367
|
*
|
|
1368
|
-
* Should be under
|
|
1368
|
+
* Required field. Should be under 300 characters.
|
|
1369
1369
|
*/
|
|
1370
|
-
shortDescription
|
|
1370
|
+
shortDescription: string;
|
|
1371
1371
|
/**
|
|
1372
1372
|
* Optional cover image for the hypercert.
|
|
1373
1373
|
*
|
package/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@hypercerts-org/sdk-core",
|
|
3
|
-
"version": "0.
|
|
3
|
+
"version": "0.9.0-beta.0",
|
|
4
4
|
"description": "Framework-agnostic ATProto SDK core for authentication, repository operations, and lexicon management",
|
|
5
5
|
"main": "dist/index.cjs",
|
|
6
6
|
"repository": {
|
|
@@ -79,7 +79,7 @@
|
|
|
79
79
|
"@atproto/oauth-client-node": "^0.3.12",
|
|
80
80
|
"eventemitter3": "^5.0.1",
|
|
81
81
|
"zod": "^3.24.4",
|
|
82
|
-
"@hypercerts-org/lexicon": "0.
|
|
82
|
+
"@hypercerts-org/lexicon": "0.9.0-beta.0"
|
|
83
83
|
},
|
|
84
84
|
"scripts": {
|
|
85
85
|
"test": "vitest",
|