@learncard/ceramic-plugin 1.0.28 → 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/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
|
@@ -53654,7 +53654,7 @@ var BoostPermissionsQueryValidator = mod.object({
|
|
|
53654
53654
|
canManageChildrenProfiles: mod.boolean(),
|
|
53655
53655
|
canViewAnalytics: mod.boolean()
|
|
53656
53656
|
}).partial();
|
|
53657
|
-
var ClaimHookTypeValidator = mod.enum(["GRANT_PERMISSIONS"]);
|
|
53657
|
+
var ClaimHookTypeValidator = mod.enum(["GRANT_PERMISSIONS", "ADD_ADMIN"]);
|
|
53658
53658
|
var ClaimHookValidator = mod.discriminatedUnion("type", [
|
|
53659
53659
|
mod.object({
|
|
53660
53660
|
type: mod.literal(ClaimHookTypeValidator.Values.GRANT_PERMISSIONS),
|
|
@@ -53663,6 +53663,10 @@ var ClaimHookValidator = mod.discriminatedUnion("type", [
|
|
|
53663
53663
|
targetUri: mod.string(),
|
|
53664
53664
|
permissions: BoostPermissionsValidator.partial()
|
|
53665
53665
|
})
|
|
53666
|
+
}),
|
|
53667
|
+
mod.object({
|
|
53668
|
+
type: mod.literal(ClaimHookTypeValidator.Values.ADD_ADMIN),
|
|
53669
|
+
data: mod.object({ claimUri: mod.string(), targetUri: mod.string() })
|
|
53666
53670
|
})
|
|
53667
53671
|
]);
|
|
53668
53672
|
var ClaimHookQueryValidator = mod.object({
|