@learncard/didkey-plugin 1.0.14 → 1.0.16
Sign up to get free protection for your applications and to get access to all the features.
- 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
@@ -68,6 +68,8 @@ var require_types_cjs_development = __commonJS({
|
|
68
68
|
AddressValidator: () => AddressValidator,
|
69
69
|
AlignmentTargetTypeValidator: () => AlignmentTargetTypeValidator,
|
70
70
|
AlignmentValidator: () => AlignmentValidator,
|
71
|
+
BoostPermissionsValidator: () => BoostPermissionsValidator,
|
72
|
+
BoostQueryValidator: () => BoostQueryValidator,
|
71
73
|
BoostRecipientValidator: () => BoostRecipientValidator,
|
72
74
|
BoostValidator: () => BoostValidator,
|
73
75
|
ConsentFlowContractDataValidator: () => ConsentFlowContractDataValidator,
|
@@ -3942,6 +3944,14 @@ var require_types_cjs_development = __commonJS({
|
|
3942
3944
|
status: LCNBoostStatus.optional(),
|
3943
3945
|
autoConnectRecipients: mod.boolean().optional()
|
3944
3946
|
});
|
3947
|
+
var BoostQueryValidator = mod.object({
|
3948
|
+
uri: mod.string().or(mod.object({ $in: mod.string().array() })),
|
3949
|
+
name: mod.string().or(mod.object({ $in: mod.string().array() })),
|
3950
|
+
type: mod.string().or(mod.object({ $in: mod.string().array() })),
|
3951
|
+
category: mod.string().or(mod.object({ $in: mod.string().array() })),
|
3952
|
+
status: LCNBoostStatus.or(mod.object({ $in: LCNBoostStatus.array() })),
|
3953
|
+
autoConnectRecipients: mod.boolean()
|
3954
|
+
}).partial();
|
3945
3955
|
var PaginatedBoostsValidator = PaginationResponseValidator.extend({
|
3946
3956
|
records: BoostValidator.array()
|
3947
3957
|
});
|
@@ -3962,6 +3972,19 @@ var require_types_cjs_development = __commonJS({
|
|
3962
3972
|
ttlSeconds: mod.number().optional(),
|
3963
3973
|
totalUses: mod.number().optional()
|
3964
3974
|
});
|
3975
|
+
var BoostPermissionsValidator = mod.object({
|
3976
|
+
role: mod.string(),
|
3977
|
+
canEdit: mod.boolean(),
|
3978
|
+
canIssue: mod.boolean(),
|
3979
|
+
canRevoke: mod.boolean(),
|
3980
|
+
canManagePermissions: mod.boolean(),
|
3981
|
+
canIssueChildren: mod.string(),
|
3982
|
+
canCreateChildren: mod.string(),
|
3983
|
+
canEditChildren: mod.string(),
|
3984
|
+
canRevokeChildren: mod.string(),
|
3985
|
+
canManageChildrenPermissions: mod.string(),
|
3986
|
+
canViewAnalytics: mod.boolean()
|
3987
|
+
});
|
3965
3988
|
var LCNSigningAuthorityValidator = mod.object({
|
3966
3989
|
endpoint: mod.string()
|
3967
3990
|
});
|