@learncard/helpers 1.0.16 → 1.0.17
Sign up to get free protection for your applications and to get access to all the features.
package/dist/helpers.esm.js
CHANGED
@@ -54,6 +54,7 @@ var require_types_cjs_development = __commonJS({
|
|
54
54
|
AlignmentTargetTypeValidator: () => AlignmentTargetTypeValidator,
|
55
55
|
AlignmentValidator: () => AlignmentValidator,
|
56
56
|
BoostPermissionsValidator: () => BoostPermissionsValidator,
|
57
|
+
BoostQueryValidator: () => BoostQueryValidator,
|
57
58
|
BoostRecipientValidator: () => BoostRecipientValidator,
|
58
59
|
BoostValidator: () => BoostValidator,
|
59
60
|
ConsentFlowContractDataValidator: () => ConsentFlowContractDataValidator,
|
@@ -3913,6 +3914,14 @@ var require_types_cjs_development = __commonJS({
|
|
3913
3914
|
status: LCNBoostStatus.optional(),
|
3914
3915
|
autoConnectRecipients: mod.boolean().optional()
|
3915
3916
|
});
|
3917
|
+
var BoostQueryValidator = mod.object({
|
3918
|
+
uri: mod.string().or(mod.object({ $in: mod.string().array() })),
|
3919
|
+
name: mod.string().or(mod.object({ $in: mod.string().array() })),
|
3920
|
+
type: mod.string().or(mod.object({ $in: mod.string().array() })),
|
3921
|
+
category: mod.string().or(mod.object({ $in: mod.string().array() })),
|
3922
|
+
status: LCNBoostStatus.or(mod.object({ $in: LCNBoostStatus.array() })),
|
3923
|
+
autoConnectRecipients: mod.boolean()
|
3924
|
+
}).partial();
|
3916
3925
|
var PaginatedBoostsValidator = PaginationResponseValidator.extend({
|
3917
3926
|
records: BoostValidator.array()
|
3918
3927
|
});
|