@learncard/didkey-plugin 1.0.15 → 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 +9 -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 +9 -0
- package/dist/didkey-plugin.esm.js.map +2 -2
- package/package.json +4 -4
|
@@ -93,6 +93,7 @@ var require_types_cjs_development = __commonJS({
|
|
|
93
93
|
AlignmentTargetTypeValidator: () => AlignmentTargetTypeValidator,
|
|
94
94
|
AlignmentValidator: () => AlignmentValidator,
|
|
95
95
|
BoostPermissionsValidator: () => BoostPermissionsValidator,
|
|
96
|
+
BoostQueryValidator: () => BoostQueryValidator,
|
|
96
97
|
BoostRecipientValidator: () => BoostRecipientValidator,
|
|
97
98
|
BoostValidator: () => BoostValidator,
|
|
98
99
|
ConsentFlowContractDataValidator: () => ConsentFlowContractDataValidator,
|
|
@@ -3967,6 +3968,14 @@ var require_types_cjs_development = __commonJS({
|
|
|
3967
3968
|
status: LCNBoostStatus.optional(),
|
|
3968
3969
|
autoConnectRecipients: mod.boolean().optional()
|
|
3969
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();
|
|
3970
3979
|
var PaginatedBoostsValidator = PaginationResponseValidator.extend({
|
|
3971
3980
|
records: BoostValidator.array()
|
|
3972
3981
|
});
|