@learncard/ceramic-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/ceramic-plugin.cjs.development.js +8 -0
- package/dist/ceramic-plugin.cjs.development.js.map +2 -2
- package/dist/ceramic-plugin.cjs.production.min.js +35 -35
- package/dist/ceramic-plugin.cjs.production.min.js.map +3 -3
- package/dist/ceramic-plugin.esm.js +8 -0
- package/dist/ceramic-plugin.esm.js.map +2 -2
- package/package.json +4 -4
|
@@ -53524,6 +53524,14 @@ var BoostValidator = mod.object({
|
|
|
53524
53524
|
status: LCNBoostStatus.optional(),
|
|
53525
53525
|
autoConnectRecipients: mod.boolean().optional()
|
|
53526
53526
|
});
|
|
53527
|
+
var BoostQueryValidator = mod.object({
|
|
53528
|
+
uri: mod.string().or(mod.object({ $in: mod.string().array() })),
|
|
53529
|
+
name: mod.string().or(mod.object({ $in: mod.string().array() })),
|
|
53530
|
+
type: mod.string().or(mod.object({ $in: mod.string().array() })),
|
|
53531
|
+
category: mod.string().or(mod.object({ $in: mod.string().array() })),
|
|
53532
|
+
status: LCNBoostStatus.or(mod.object({ $in: LCNBoostStatus.array() })),
|
|
53533
|
+
autoConnectRecipients: mod.boolean()
|
|
53534
|
+
}).partial();
|
|
53527
53535
|
var PaginatedBoostsValidator = PaginationResponseValidator.extend({
|
|
53528
53536
|
records: BoostValidator.array()
|
|
53529
53537
|
});
|