@learncard/types 5.13.3 → 5.13.4

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/types.esm.js CHANGED
@@ -790,8 +790,8 @@ var SendBoostInputValidator = z9.object({
790
790
  ),
791
791
  templateData: z9.record(z9.string(), z9.unknown()).optional(),
792
792
  integrationId: z9.string().optional().describe("Integration ID for activity tracking")
793
- }).refine((data) => data.templateUri || data.template, {
794
- message: "Either templateUri or template creation data must be provided.",
793
+ }).refine((data) => data.templateUri || data.template || data.signedCredential, {
794
+ message: "Either templateUri, template, or signedCredential must be provided.",
795
795
  path: ["templateUri"]
796
796
  });
797
797
  var SendInboxResponseValidator = z9.object({