@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
|
@@ -53528,6 +53528,14 @@ var BoostValidator = mod.object({
|
|
|
53528
53528
|
status: LCNBoostStatus.optional(),
|
|
53529
53529
|
autoConnectRecipients: mod.boolean().optional()
|
|
53530
53530
|
});
|
|
53531
|
+
var BoostQueryValidator = mod.object({
|
|
53532
|
+
uri: mod.string().or(mod.object({ $in: mod.string().array() })),
|
|
53533
|
+
name: mod.string().or(mod.object({ $in: mod.string().array() })),
|
|
53534
|
+
type: mod.string().or(mod.object({ $in: mod.string().array() })),
|
|
53535
|
+
category: mod.string().or(mod.object({ $in: mod.string().array() })),
|
|
53536
|
+
status: LCNBoostStatus.or(mod.object({ $in: LCNBoostStatus.array() })),
|
|
53537
|
+
autoConnectRecipients: mod.boolean()
|
|
53538
|
+
}).partial();
|
|
53531
53539
|
var PaginatedBoostsValidator = PaginationResponseValidator.extend({
|
|
53532
53540
|
records: BoostValidator.array()
|
|
53533
53541
|
});
|