@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
|
@@ -140,6 +140,7 @@ var require_types_cjs_development = __commonJS({
|
|
|
140
140
|
RubricCriterionValidator: () => RubricCriterionValidator,
|
|
141
141
|
SentCredentialInfoValidator: () => SentCredentialInfoValidator,
|
|
142
142
|
ServiceValidator: () => ServiceValidator,
|
|
143
|
+
StringQuery: () => StringQuery,
|
|
143
144
|
UnsignedAchievementCredentialValidator: () => UnsignedAchievementCredentialValidator,
|
|
144
145
|
UnsignedVCValidator: () => UnsignedVCValidator,
|
|
145
146
|
UnsignedVPValidator: () => UnsignedVPValidator,
|
|
@@ -3956,13 +3957,16 @@ var require_types_cjs_development = __commonJS({
|
|
|
3956
3957
|
category: mod.string().optional(),
|
|
3957
3958
|
status: LCNBoostStatus.optional(),
|
|
3958
3959
|
autoConnectRecipients: mod.boolean().optional(),
|
|
3960
|
+
meta: mod.record(mod.any()).optional(),
|
|
3959
3961
|
claimPermissions: BoostPermissionsValidator.optional()
|
|
3960
3962
|
});
|
|
3963
|
+
var StringQuery = mod.string().or(mod.object({ $in: mod.string().array() })).or(mod.object({ $regex: mod.instanceof(RegExp) }));
|
|
3961
3964
|
var BoostQueryValidator = mod.object({
|
|
3962
|
-
uri:
|
|
3963
|
-
name:
|
|
3964
|
-
type:
|
|
3965
|
-
category:
|
|
3965
|
+
uri: StringQuery,
|
|
3966
|
+
name: StringQuery,
|
|
3967
|
+
type: StringQuery,
|
|
3968
|
+
category: StringQuery,
|
|
3969
|
+
meta: mod.record(StringQuery),
|
|
3966
3970
|
status: LCNBoostStatus.or(mod.object({ $in: LCNBoostStatus.array() })),
|
|
3967
3971
|
autoConnectRecipients: mod.boolean()
|
|
3968
3972
|
}).partial();
|