@learncard/ceramic-plugin 1.0.21 → 1.0.22
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 +27 -0
- package/dist/ceramic-plugin.cjs.development.js.map +2 -2
- package/dist/ceramic-plugin.cjs.production.min.js +61 -61
- package/dist/ceramic-plugin.cjs.production.min.js.map +3 -3
- package/dist/ceramic-plugin.esm.js +27 -0
- package/dist/ceramic-plugin.esm.js.map +2 -2
- package/package.json +4 -4
|
@@ -53595,6 +53595,32 @@ var LCNProfileConnectionStatusEnum = mod.enum([
|
|
|
53595
53595
|
"PENDING_REQUEST_RECEIVED",
|
|
53596
53596
|
"NOT_CONNECTED"
|
|
53597
53597
|
]);
|
|
53598
|
+
var LCNProfileManagerValidator = mod.object({
|
|
53599
|
+
id: mod.string(),
|
|
53600
|
+
created: mod.string(),
|
|
53601
|
+
displayName: mod.string().default("").optional(),
|
|
53602
|
+
shortBio: mod.string().default("").optional(),
|
|
53603
|
+
bio: mod.string().default("").optional(),
|
|
53604
|
+
email: mod.string().optional(),
|
|
53605
|
+
image: mod.string().optional(),
|
|
53606
|
+
heroImage: mod.string().optional()
|
|
53607
|
+
});
|
|
53608
|
+
var PaginatedLCNProfileManagersValidator = PaginationResponseValidator.extend({
|
|
53609
|
+
records: LCNProfileManagerValidator.extend({ did: mod.string() }).array()
|
|
53610
|
+
});
|
|
53611
|
+
var LCNProfileManagerQueryValidator = mod.object({
|
|
53612
|
+
id: StringQuery,
|
|
53613
|
+
displayName: StringQuery,
|
|
53614
|
+
shortBio: StringQuery,
|
|
53615
|
+
bio: StringQuery,
|
|
53616
|
+
email: StringQuery
|
|
53617
|
+
}).partial();
|
|
53618
|
+
var PaginatedLCNProfilesAndManagersValidator = PaginationResponseValidator.extend({
|
|
53619
|
+
records: mod.object({
|
|
53620
|
+
profile: LCNProfileValidator,
|
|
53621
|
+
manager: LCNProfileManagerValidator.extend({ did: mod.string() }).optional()
|
|
53622
|
+
}).array()
|
|
53623
|
+
});
|
|
53598
53624
|
var SentCredentialInfoValidator = mod.object({
|
|
53599
53625
|
uri: mod.string(),
|
|
53600
53626
|
to: mod.string(),
|
|
@@ -53613,6 +53639,7 @@ var BoostPermissionsValidator = mod.object({
|
|
|
53613
53639
|
canEditChildren: mod.string(),
|
|
53614
53640
|
canRevokeChildren: mod.string(),
|
|
53615
53641
|
canManageChildrenPermissions: mod.string(),
|
|
53642
|
+
canManageChildrenProfiles: mod.boolean().default(false).optional(),
|
|
53616
53643
|
canViewAnalytics: mod.boolean()
|
|
53617
53644
|
});
|
|
53618
53645
|
var LCNBoostStatus = mod.enum(["DRAFT", "LIVE"]);
|