@learncard/learn-card-plugin 1.1.23 → 1.1.24
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/learn-card-plugin.cjs.development.js +27 -0
- package/dist/learn-card-plugin.cjs.development.js.map +2 -2
- package/dist/learn-card-plugin.cjs.production.min.js +1 -1
- package/dist/learn-card-plugin.cjs.production.min.js.map +3 -3
- package/dist/learn-card-plugin.esm.js +27 -0
- package/dist/learn-card-plugin.esm.js.map +2 -2
- package/package.json +4 -4
|
@@ -3829,6 +3829,32 @@ var LCNProfileConnectionStatusEnum = mod.enum([
|
|
|
3829
3829
|
"PENDING_REQUEST_RECEIVED",
|
|
3830
3830
|
"NOT_CONNECTED"
|
|
3831
3831
|
]);
|
|
3832
|
+
var LCNProfileManagerValidator = mod.object({
|
|
3833
|
+
id: mod.string(),
|
|
3834
|
+
created: mod.string(),
|
|
3835
|
+
displayName: mod.string().default("").optional(),
|
|
3836
|
+
shortBio: mod.string().default("").optional(),
|
|
3837
|
+
bio: mod.string().default("").optional(),
|
|
3838
|
+
email: mod.string().optional(),
|
|
3839
|
+
image: mod.string().optional(),
|
|
3840
|
+
heroImage: mod.string().optional()
|
|
3841
|
+
});
|
|
3842
|
+
var PaginatedLCNProfileManagersValidator = PaginationResponseValidator.extend({
|
|
3843
|
+
records: LCNProfileManagerValidator.extend({ did: mod.string() }).array()
|
|
3844
|
+
});
|
|
3845
|
+
var LCNProfileManagerQueryValidator = mod.object({
|
|
3846
|
+
id: StringQuery,
|
|
3847
|
+
displayName: StringQuery,
|
|
3848
|
+
shortBio: StringQuery,
|
|
3849
|
+
bio: StringQuery,
|
|
3850
|
+
email: StringQuery
|
|
3851
|
+
}).partial();
|
|
3852
|
+
var PaginatedLCNProfilesAndManagersValidator = PaginationResponseValidator.extend({
|
|
3853
|
+
records: mod.object({
|
|
3854
|
+
profile: LCNProfileValidator,
|
|
3855
|
+
manager: LCNProfileManagerValidator.extend({ did: mod.string() }).optional()
|
|
3856
|
+
}).array()
|
|
3857
|
+
});
|
|
3832
3858
|
var SentCredentialInfoValidator = mod.object({
|
|
3833
3859
|
uri: mod.string(),
|
|
3834
3860
|
to: mod.string(),
|
|
@@ -3847,6 +3873,7 @@ var BoostPermissionsValidator = mod.object({
|
|
|
3847
3873
|
canEditChildren: mod.string(),
|
|
3848
3874
|
canRevokeChildren: mod.string(),
|
|
3849
3875
|
canManageChildrenPermissions: mod.string(),
|
|
3876
|
+
canManageChildrenProfiles: mod.boolean().default(false).optional(),
|
|
3850
3877
|
canViewAnalytics: mod.boolean()
|
|
3851
3878
|
});
|
|
3852
3879
|
var LCNBoostStatus = mod.enum(["DRAFT", "LIVE"]);
|