@learncard/didkey-plugin 1.0.14 → 1.0.16
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 +23 -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 +23 -0
- package/dist/didkey-plugin.esm.js.map +2 -2
- package/package.json +4 -4
@@ -92,6 +92,8 @@ var require_types_cjs_development = __commonJS({
|
|
92
92
|
AddressValidator: () => AddressValidator,
|
93
93
|
AlignmentTargetTypeValidator: () => AlignmentTargetTypeValidator,
|
94
94
|
AlignmentValidator: () => AlignmentValidator,
|
95
|
+
BoostPermissionsValidator: () => BoostPermissionsValidator,
|
96
|
+
BoostQueryValidator: () => BoostQueryValidator,
|
95
97
|
BoostRecipientValidator: () => BoostRecipientValidator,
|
96
98
|
BoostValidator: () => BoostValidator,
|
97
99
|
ConsentFlowContractDataValidator: () => ConsentFlowContractDataValidator,
|
@@ -3966,6 +3968,14 @@ var require_types_cjs_development = __commonJS({
|
|
3966
3968
|
status: LCNBoostStatus.optional(),
|
3967
3969
|
autoConnectRecipients: mod.boolean().optional()
|
3968
3970
|
});
|
3971
|
+
var BoostQueryValidator = mod.object({
|
3972
|
+
uri: mod.string().or(mod.object({ $in: mod.string().array() })),
|
3973
|
+
name: mod.string().or(mod.object({ $in: mod.string().array() })),
|
3974
|
+
type: mod.string().or(mod.object({ $in: mod.string().array() })),
|
3975
|
+
category: mod.string().or(mod.object({ $in: mod.string().array() })),
|
3976
|
+
status: LCNBoostStatus.or(mod.object({ $in: LCNBoostStatus.array() })),
|
3977
|
+
autoConnectRecipients: mod.boolean()
|
3978
|
+
}).partial();
|
3969
3979
|
var PaginatedBoostsValidator = PaginationResponseValidator.extend({
|
3970
3980
|
records: BoostValidator.array()
|
3971
3981
|
});
|
@@ -3986,6 +3996,19 @@ var require_types_cjs_development = __commonJS({
|
|
3986
3996
|
ttlSeconds: mod.number().optional(),
|
3987
3997
|
totalUses: mod.number().optional()
|
3988
3998
|
});
|
3999
|
+
var BoostPermissionsValidator = mod.object({
|
4000
|
+
role: mod.string(),
|
4001
|
+
canEdit: mod.boolean(),
|
4002
|
+
canIssue: mod.boolean(),
|
4003
|
+
canRevoke: mod.boolean(),
|
4004
|
+
canManagePermissions: mod.boolean(),
|
4005
|
+
canIssueChildren: mod.string(),
|
4006
|
+
canCreateChildren: mod.string(),
|
4007
|
+
canEditChildren: mod.string(),
|
4008
|
+
canRevokeChildren: mod.string(),
|
4009
|
+
canManageChildrenPermissions: mod.string(),
|
4010
|
+
canViewAnalytics: mod.boolean()
|
4011
|
+
});
|
3989
4012
|
var LCNSigningAuthorityValidator = mod.object({
|
3990
4013
|
endpoint: mod.string()
|
3991
4014
|
});
|