@learncard/didkey-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/didkey-plugin.cjs.development.js +32 -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 +32 -0
- package/dist/didkey-plugin.esm.js.map +2 -2
- package/package.json +4 -4
|
@@ -116,6 +116,8 @@ var require_types_cjs_development = __commonJS({
|
|
|
116
116
|
LCNNotificationValidator: () => LCNNotificationValidator,
|
|
117
117
|
LCNProfileConnectionStatusEnum: () => LCNProfileConnectionStatusEnum,
|
|
118
118
|
LCNProfileDisplayValidator: () => LCNProfileDisplayValidator,
|
|
119
|
+
LCNProfileManagerQueryValidator: () => LCNProfileManagerQueryValidator,
|
|
120
|
+
LCNProfileManagerValidator: () => LCNProfileManagerValidator,
|
|
119
121
|
LCNProfileQueryValidator: () => LCNProfileQueryValidator,
|
|
120
122
|
LCNProfileValidator: () => LCNProfileValidator,
|
|
121
123
|
LCNSigningAuthorityForUserValidator: () => LCNSigningAuthorityForUserValidator,
|
|
@@ -128,6 +130,8 @@ var require_types_cjs_development = __commonJS({
|
|
|
128
130
|
PaginatedConsentFlowTransactionsValidator: () => PaginatedConsentFlowTransactionsValidator,
|
|
129
131
|
PaginatedEncryptedCredentialRecordsValidator: () => PaginatedEncryptedCredentialRecordsValidator,
|
|
130
132
|
PaginatedEncryptedRecordsValidator: () => PaginatedEncryptedRecordsValidator,
|
|
133
|
+
PaginatedLCNProfileManagersValidator: () => PaginatedLCNProfileManagersValidator,
|
|
134
|
+
PaginatedLCNProfilesAndManagersValidator: () => PaginatedLCNProfilesAndManagersValidator,
|
|
131
135
|
PaginatedLCNProfilesValidator: () => PaginatedLCNProfilesValidator,
|
|
132
136
|
PaginationOptionsValidator: () => PaginationOptionsValidator,
|
|
133
137
|
PaginationResponseValidator: () => PaginationResponseValidator,
|
|
@@ -3983,6 +3987,32 @@ var require_types_cjs_development = __commonJS({
|
|
|
3983
3987
|
"PENDING_REQUEST_RECEIVED",
|
|
3984
3988
|
"NOT_CONNECTED"
|
|
3985
3989
|
]);
|
|
3990
|
+
var LCNProfileManagerValidator = mod.object({
|
|
3991
|
+
id: mod.string(),
|
|
3992
|
+
created: mod.string(),
|
|
3993
|
+
displayName: mod.string().default("").optional(),
|
|
3994
|
+
shortBio: mod.string().default("").optional(),
|
|
3995
|
+
bio: mod.string().default("").optional(),
|
|
3996
|
+
email: mod.string().optional(),
|
|
3997
|
+
image: mod.string().optional(),
|
|
3998
|
+
heroImage: mod.string().optional()
|
|
3999
|
+
});
|
|
4000
|
+
var PaginatedLCNProfileManagersValidator = PaginationResponseValidator.extend({
|
|
4001
|
+
records: LCNProfileManagerValidator.extend({ did: mod.string() }).array()
|
|
4002
|
+
});
|
|
4003
|
+
var LCNProfileManagerQueryValidator = mod.object({
|
|
4004
|
+
id: StringQuery,
|
|
4005
|
+
displayName: StringQuery,
|
|
4006
|
+
shortBio: StringQuery,
|
|
4007
|
+
bio: StringQuery,
|
|
4008
|
+
email: StringQuery
|
|
4009
|
+
}).partial();
|
|
4010
|
+
var PaginatedLCNProfilesAndManagersValidator = PaginationResponseValidator.extend({
|
|
4011
|
+
records: mod.object({
|
|
4012
|
+
profile: LCNProfileValidator,
|
|
4013
|
+
manager: LCNProfileManagerValidator.extend({ did: mod.string() }).optional()
|
|
4014
|
+
}).array()
|
|
4015
|
+
});
|
|
3986
4016
|
var SentCredentialInfoValidator = mod.object({
|
|
3987
4017
|
uri: mod.string(),
|
|
3988
4018
|
to: mod.string(),
|
|
@@ -4001,6 +4031,7 @@ var require_types_cjs_development = __commonJS({
|
|
|
4001
4031
|
canEditChildren: mod.string(),
|
|
4002
4032
|
canRevokeChildren: mod.string(),
|
|
4003
4033
|
canManageChildrenPermissions: mod.string(),
|
|
4034
|
+
canManageChildrenProfiles: mod.boolean().default(false).optional(),
|
|
4004
4035
|
canViewAnalytics: mod.boolean()
|
|
4005
4036
|
});
|
|
4006
4037
|
var LCNBoostStatus = mod.enum(["DRAFT", "LIVE"]);
|
|
@@ -4077,6 +4108,7 @@ var require_types_cjs_development = __commonJS({
|
|
|
4077
4108
|
reasonForAccessing: mod.string().optional(),
|
|
4078
4109
|
image: mod.string().optional(),
|
|
4079
4110
|
uri: mod.string(),
|
|
4111
|
+
needsGuardianConsent: mod.boolean().optional(),
|
|
4080
4112
|
createdAt: mod.string(),
|
|
4081
4113
|
updatedAt: mod.string(),
|
|
4082
4114
|
expiresAt: mod.string().optional()
|