@superatomai/sdk-web 0.0.21 → 0.0.22

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/index.cjs CHANGED
@@ -276,7 +276,7 @@ var UserPromptRequestMessageSchema = zod.z.object({
276
276
  payload: UserPromptRequestPayloadSchema
277
277
  });
278
278
  var ComponentPropsSchema = zod.z.object({
279
- query: zod.z.string().optional(),
279
+ query: zod.z.string().or(zod.z.record(zod.z.string(), zod.z.unknown())).optional(),
280
280
  title: zod.z.string().optional(),
281
281
  description: zod.z.string().optional(),
282
282
  config: zod.z.record(zod.z.string(), zod.z.unknown()).optional()