@learncard/didkey-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/didkey-plugin.cjs.development.js +31 -0
- package/dist/didkey-plugin.cjs.development.js.map +2 -2
- package/dist/didkey-plugin.cjs.production.min.js +1 -1
- package/dist/didkey-plugin.cjs.production.min.js.map +3 -3
- package/dist/didkey-plugin.esm.js +31 -0
- package/dist/didkey-plugin.esm.js.map +2 -2
- package/package.json +4 -4
|
@@ -140,6 +140,8 @@ var require_types_cjs_development = __commonJS({
|
|
|
140
140
|
LCNNotificationValidator: () => LCNNotificationValidator,
|
|
141
141
|
LCNProfileConnectionStatusEnum: () => LCNProfileConnectionStatusEnum,
|
|
142
142
|
LCNProfileDisplayValidator: () => LCNProfileDisplayValidator,
|
|
143
|
+
LCNProfileManagerQueryValidator: () => LCNProfileManagerQueryValidator,
|
|
144
|
+
LCNProfileManagerValidator: () => LCNProfileManagerValidator,
|
|
143
145
|
LCNProfileQueryValidator: () => LCNProfileQueryValidator,
|
|
144
146
|
LCNProfileValidator: () => LCNProfileValidator,
|
|
145
147
|
LCNSigningAuthorityForUserValidator: () => LCNSigningAuthorityForUserValidator,
|
|
@@ -152,6 +154,8 @@ var require_types_cjs_development = __commonJS({
|
|
|
152
154
|
PaginatedConsentFlowTransactionsValidator: () => PaginatedConsentFlowTransactionsValidator,
|
|
153
155
|
PaginatedEncryptedCredentialRecordsValidator: () => PaginatedEncryptedCredentialRecordsValidator,
|
|
154
156
|
PaginatedEncryptedRecordsValidator: () => PaginatedEncryptedRecordsValidator,
|
|
157
|
+
PaginatedLCNProfileManagersValidator: () => PaginatedLCNProfileManagersValidator,
|
|
158
|
+
PaginatedLCNProfilesAndManagersValidator: () => PaginatedLCNProfilesAndManagersValidator,
|
|
155
159
|
PaginatedLCNProfilesValidator: () => PaginatedLCNProfilesValidator,
|
|
156
160
|
PaginationOptionsValidator: () => PaginationOptionsValidator,
|
|
157
161
|
PaginationResponseValidator: () => PaginationResponseValidator,
|
|
@@ -4007,6 +4011,32 @@ var require_types_cjs_development = __commonJS({
|
|
|
4007
4011
|
"PENDING_REQUEST_RECEIVED",
|
|
4008
4012
|
"NOT_CONNECTED"
|
|
4009
4013
|
]);
|
|
4014
|
+
var LCNProfileManagerValidator = mod.object({
|
|
4015
|
+
id: mod.string(),
|
|
4016
|
+
created: mod.string(),
|
|
4017
|
+
displayName: mod.string().default("").optional(),
|
|
4018
|
+
shortBio: mod.string().default("").optional(),
|
|
4019
|
+
bio: mod.string().default("").optional(),
|
|
4020
|
+
email: mod.string().optional(),
|
|
4021
|
+
image: mod.string().optional(),
|
|
4022
|
+
heroImage: mod.string().optional()
|
|
4023
|
+
});
|
|
4024
|
+
var PaginatedLCNProfileManagersValidator = PaginationResponseValidator.extend({
|
|
4025
|
+
records: LCNProfileManagerValidator.extend({ did: mod.string() }).array()
|
|
4026
|
+
});
|
|
4027
|
+
var LCNProfileManagerQueryValidator = mod.object({
|
|
4028
|
+
id: StringQuery,
|
|
4029
|
+
displayName: StringQuery,
|
|
4030
|
+
shortBio: StringQuery,
|
|
4031
|
+
bio: StringQuery,
|
|
4032
|
+
email: StringQuery
|
|
4033
|
+
}).partial();
|
|
4034
|
+
var PaginatedLCNProfilesAndManagersValidator = PaginationResponseValidator.extend({
|
|
4035
|
+
records: mod.object({
|
|
4036
|
+
profile: LCNProfileValidator,
|
|
4037
|
+
manager: LCNProfileManagerValidator.extend({ did: mod.string() }).optional()
|
|
4038
|
+
}).array()
|
|
4039
|
+
});
|
|
4010
4040
|
var SentCredentialInfoValidator = mod.object({
|
|
4011
4041
|
uri: mod.string(),
|
|
4012
4042
|
to: mod.string(),
|
|
@@ -4025,6 +4055,7 @@ var require_types_cjs_development = __commonJS({
|
|
|
4025
4055
|
canEditChildren: mod.string(),
|
|
4026
4056
|
canRevokeChildren: mod.string(),
|
|
4027
4057
|
canManageChildrenPermissions: mod.string(),
|
|
4058
|
+
canManageChildrenProfiles: mod.boolean().default(false).optional(),
|
|
4028
4059
|
canViewAnalytics: mod.boolean()
|
|
4029
4060
|
});
|
|
4030
4061
|
var LCNBoostStatus = mod.enum(["DRAFT", "LIVE"]);
|