@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.
@@ -59,6 +59,7 @@ var require_types_cjs_development = __commonJS({
|
|
59
59
|
AlignmentTargetTypeValidator: () => AlignmentTargetTypeValidator,
|
60
60
|
AlignmentValidator: () => AlignmentValidator,
|
61
61
|
BoostPermissionsValidator: () => BoostPermissionsValidator,
|
62
|
+
BoostQueryValidator: () => BoostQueryValidator,
|
62
63
|
BoostRecipientValidator: () => BoostRecipientValidator,
|
63
64
|
BoostValidator: () => BoostValidator,
|
64
65
|
ConsentFlowContractDataValidator: () => ConsentFlowContractDataValidator,
|
@@ -3918,6 +3919,14 @@ var require_types_cjs_development = __commonJS({
|
|
3918
3919
|
status: LCNBoostStatus.optional(),
|
3919
3920
|
autoConnectRecipients: mod.boolean().optional()
|
3920
3921
|
});
|
3922
|
+
var BoostQueryValidator = mod.object({
|
3923
|
+
uri: mod.string().or(mod.object({ $in: mod.string().array() })),
|
3924
|
+
name: mod.string().or(mod.object({ $in: mod.string().array() })),
|
3925
|
+
type: mod.string().or(mod.object({ $in: mod.string().array() })),
|
3926
|
+
category: mod.string().or(mod.object({ $in: mod.string().array() })),
|
3927
|
+
status: LCNBoostStatus.or(mod.object({ $in: LCNBoostStatus.array() })),
|
3928
|
+
autoConnectRecipients: mod.boolean()
|
3929
|
+
}).partial();
|
3921
3930
|
var PaginatedBoostsValidator = PaginationResponseValidator.extend({
|
3922
3931
|
records: BoostValidator.array()
|
3923
3932
|
});
|