@cueframe/studio-contracts 0.1.1 → 0.1.2

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.
Files changed (2) hide show
  1. package/dist/index.js +1 -1
  2. package/package.json +1 -1
package/dist/index.js CHANGED
@@ -1056,7 +1056,7 @@ var MediaFactPurchaseProjection = z11.object({
1056
1056
  quotedUsd: z11.number()
1057
1057
  });
1058
1058
  var ResourceSearchInput = z11.object({
1059
- query: z11.string().max(STUDIO_LIMITS.query),
1059
+ query: z11.string().trim().min(1).max(STUDIO_LIMITS.query),
1060
1060
  kind: z11.enum(["video", "photo", "gif", "sfx"]),
1061
1061
  limit: z11.number().int().positive().max(50)
1062
1062
  }).strict();
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@cueframe/studio-contracts",
3
- "version": "0.1.1",
3
+ "version": "0.1.2",
4
4
  "description": "Transport-neutral contracts for local and hosted CueFrame Studio implementations.",
5
5
  "type": "module",
6
6
  "license": "AGPL-3.0-only",