@learncard/didkey-plugin 1.0.17 → 1.0.18
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 +8 -4
- 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 +8 -4
- package/dist/didkey-plugin.esm.js.map +2 -2
- package/package.json +4 -4
|
@@ -164,6 +164,7 @@ var require_types_cjs_development = __commonJS({
|
|
|
164
164
|
RubricCriterionValidator: () => RubricCriterionValidator,
|
|
165
165
|
SentCredentialInfoValidator: () => SentCredentialInfoValidator,
|
|
166
166
|
ServiceValidator: () => ServiceValidator,
|
|
167
|
+
StringQuery: () => StringQuery,
|
|
167
168
|
UnsignedAchievementCredentialValidator: () => UnsignedAchievementCredentialValidator,
|
|
168
169
|
UnsignedVCValidator: () => UnsignedVCValidator,
|
|
169
170
|
UnsignedVPValidator: () => UnsignedVPValidator,
|
|
@@ -3980,13 +3981,16 @@ var require_types_cjs_development = __commonJS({
|
|
|
3980
3981
|
category: mod.string().optional(),
|
|
3981
3982
|
status: LCNBoostStatus.optional(),
|
|
3982
3983
|
autoConnectRecipients: mod.boolean().optional(),
|
|
3984
|
+
meta: mod.record(mod.any()).optional(),
|
|
3983
3985
|
claimPermissions: BoostPermissionsValidator.optional()
|
|
3984
3986
|
});
|
|
3987
|
+
var StringQuery = mod.string().or(mod.object({ $in: mod.string().array() })).or(mod.object({ $regex: mod.instanceof(RegExp) }));
|
|
3985
3988
|
var BoostQueryValidator = mod.object({
|
|
3986
|
-
uri:
|
|
3987
|
-
name:
|
|
3988
|
-
type:
|
|
3989
|
-
category:
|
|
3989
|
+
uri: StringQuery,
|
|
3990
|
+
name: StringQuery,
|
|
3991
|
+
type: StringQuery,
|
|
3992
|
+
category: StringQuery,
|
|
3993
|
+
meta: mod.record(StringQuery),
|
|
3990
3994
|
status: LCNBoostStatus.or(mod.object({ $in: LCNBoostStatus.array() })),
|
|
3991
3995
|
autoConnectRecipients: mod.boolean()
|
|
3992
3996
|
}).partial();
|