@learncard/ceramic-plugin 1.0.21 → 1.0.23
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 +28 -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 +28 -0
- package/dist/ceramic-plugin.esm.js.map +2 -2
- package/package.json +4 -4
|
@@ -53591,6 +53591,32 @@ var LCNProfileConnectionStatusEnum = mod.enum([
|
|
|
53591
53591
|
"PENDING_REQUEST_RECEIVED",
|
|
53592
53592
|
"NOT_CONNECTED"
|
|
53593
53593
|
]);
|
|
53594
|
+
var LCNProfileManagerValidator = mod.object({
|
|
53595
|
+
id: mod.string(),
|
|
53596
|
+
created: mod.string(),
|
|
53597
|
+
displayName: mod.string().default("").optional(),
|
|
53598
|
+
shortBio: mod.string().default("").optional(),
|
|
53599
|
+
bio: mod.string().default("").optional(),
|
|
53600
|
+
email: mod.string().optional(),
|
|
53601
|
+
image: mod.string().optional(),
|
|
53602
|
+
heroImage: mod.string().optional()
|
|
53603
|
+
});
|
|
53604
|
+
var PaginatedLCNProfileManagersValidator = PaginationResponseValidator.extend({
|
|
53605
|
+
records: LCNProfileManagerValidator.extend({ did: mod.string() }).array()
|
|
53606
|
+
});
|
|
53607
|
+
var LCNProfileManagerQueryValidator = mod.object({
|
|
53608
|
+
id: StringQuery,
|
|
53609
|
+
displayName: StringQuery,
|
|
53610
|
+
shortBio: StringQuery,
|
|
53611
|
+
bio: StringQuery,
|
|
53612
|
+
email: StringQuery
|
|
53613
|
+
}).partial();
|
|
53614
|
+
var PaginatedLCNProfilesAndManagersValidator = PaginationResponseValidator.extend({
|
|
53615
|
+
records: mod.object({
|
|
53616
|
+
profile: LCNProfileValidator,
|
|
53617
|
+
manager: LCNProfileManagerValidator.extend({ did: mod.string() }).optional()
|
|
53618
|
+
}).array()
|
|
53619
|
+
});
|
|
53594
53620
|
var SentCredentialInfoValidator = mod.object({
|
|
53595
53621
|
uri: mod.string(),
|
|
53596
53622
|
to: mod.string(),
|
|
@@ -53609,6 +53635,7 @@ var BoostPermissionsValidator = mod.object({
|
|
|
53609
53635
|
canEditChildren: mod.string(),
|
|
53610
53636
|
canRevokeChildren: mod.string(),
|
|
53611
53637
|
canManageChildrenPermissions: mod.string(),
|
|
53638
|
+
canManageChildrenProfiles: mod.boolean().default(false).optional(),
|
|
53612
53639
|
canViewAnalytics: mod.boolean()
|
|
53613
53640
|
});
|
|
53614
53641
|
var LCNBoostStatus = mod.enum(["DRAFT", "LIVE"]);
|
|
@@ -53685,6 +53712,7 @@ var ConsentFlowContractDetailsValidator = mod.object({
|
|
|
53685
53712
|
reasonForAccessing: mod.string().optional(),
|
|
53686
53713
|
image: mod.string().optional(),
|
|
53687
53714
|
uri: mod.string(),
|
|
53715
|
+
needsGuardianConsent: mod.boolean().optional(),
|
|
53688
53716
|
createdAt: mod.string(),
|
|
53689
53717
|
updatedAt: mod.string(),
|
|
53690
53718
|
expiresAt: mod.string().optional()
|