@learncard/ceramic-plugin 1.0.27 → 1.0.29
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 +5 -5
- package/dist/ceramic-plugin.cjs.development.js +5 -1
- package/dist/ceramic-plugin.cjs.development.js.map +2 -2
- package/dist/ceramic-plugin.cjs.production.min.js +19 -19
- package/dist/ceramic-plugin.cjs.production.min.js.map +2 -2
- package/dist/ceramic-plugin.esm.js +5 -1
- package/dist/ceramic-plugin.esm.js.map +2 -2
- package/package.json +4 -4
package/README.md
CHANGED
|
@@ -1,12 +1,12 @@
|
|
|
1
1
|
[<img src="https://user-images.githubusercontent.com/2185016/190510561-294db809-09fd-4771-9749-6c0e0f4144fd.png" width="215"/>](https://learncard.com)
|
|
2
2
|
|
|
3
|
-
# @learncard/
|
|
3
|
+
# @learncard/ceramic-plugin
|
|
4
4
|
|
|
5
|
-
[](https://www.npmjs.com/package/@learncard/ceramic-plugin)
|
|
6
|
+
[](https://www.npmjs.com/package/@learncard/ceramic-plugin)
|
|
7
|
+
[](https://www.npmjs.com/package/@learncard/ceramic-plugin)
|
|
8
8
|
|
|
9
|
-
The
|
|
9
|
+
The Ceramic Plugin provides Ceramic Network integration for LearnCard, allowing for decentralized storage of Verifiable Credentials. Note: LearnCloud is now the recommended storage solution for LearnCard.
|
|
10
10
|
|
|
11
11
|
## Documentation
|
|
12
12
|
All LearnCard documentation can be found at:
|
|
@@ -53658,7 +53658,7 @@ var BoostPermissionsQueryValidator = mod.object({
|
|
|
53658
53658
|
canManageChildrenProfiles: mod.boolean(),
|
|
53659
53659
|
canViewAnalytics: mod.boolean()
|
|
53660
53660
|
}).partial();
|
|
53661
|
-
var ClaimHookTypeValidator = mod.enum(["GRANT_PERMISSIONS"]);
|
|
53661
|
+
var ClaimHookTypeValidator = mod.enum(["GRANT_PERMISSIONS", "ADD_ADMIN"]);
|
|
53662
53662
|
var ClaimHookValidator = mod.discriminatedUnion("type", [
|
|
53663
53663
|
mod.object({
|
|
53664
53664
|
type: mod.literal(ClaimHookTypeValidator.Values.GRANT_PERMISSIONS),
|
|
@@ -53667,6 +53667,10 @@ var ClaimHookValidator = mod.discriminatedUnion("type", [
|
|
|
53667
53667
|
targetUri: mod.string(),
|
|
53668
53668
|
permissions: BoostPermissionsValidator.partial()
|
|
53669
53669
|
})
|
|
53670
|
+
}),
|
|
53671
|
+
mod.object({
|
|
53672
|
+
type: mod.literal(ClaimHookTypeValidator.Values.ADD_ADMIN),
|
|
53673
|
+
data: mod.object({ claimUri: mod.string(), targetUri: mod.string() })
|
|
53670
53674
|
})
|
|
53671
53675
|
]);
|
|
53672
53676
|
var ClaimHookQueryValidator = mod.object({
|