@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 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/core
3
+ # @learncard/ceramic-plugin
4
4
 
5
- [![npm version](https://img.shields.io/npm/v/@learncard/core)](https://www.npmjs.com/package/@learncard/core)
6
- [![npm downloads](https://img.shields.io/npm/dw/@learncard/core)](https://www.npmjs.com/package/@learncard/core)
7
- [![vulnerabilities](https://img.shields.io/snyk/vulnerabilities/npm/@learncard/core)](https://www.npmjs.com/package/@learncard/core)
5
+ [![npm version](https://img.shields.io/npm/v/@learncard/ceramic-plugin)](https://www.npmjs.com/package/@learncard/ceramic-plugin)
6
+ [![npm downloads](https://img.shields.io/npm/dw/@learncard/ceramic-plugin)](https://www.npmjs.com/package/@learncard/ceramic-plugin)
7
+ [![vulnerabilities](https://img.shields.io/snyk/vulnerabilities/npm/@learncard/ceramic-plugin)](https://www.npmjs.com/package/@learncard/ceramic-plugin)
8
8
 
9
- The LearnCard Core is a pluggable, open-source, universal digital wallet to enable any individual or organization to seamlessly **issue, earn, store, share, and spend currency and credentials** built for the future of education and work.
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({