@learncard/types 5.11.0 → 5.11.1

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
@@ -731,7 +731,8 @@ var SendBoostInputValidator = z9.object({
731
731
  contractUri: z9.string().optional(),
732
732
  templateUri: z9.string().optional(),
733
733
  template: SendBoostTemplateValidator.optional(),
734
- signedCredential: VCValidator.optional()
734
+ signedCredential: VCValidator.optional(),
735
+ templateData: z9.record(z9.string(), z9.unknown()).optional()
735
736
  }).refine((data) => data.templateUri || data.template, {
736
737
  message: "Either templateUri or template creation data must be provided.",
737
738
  path: ["templateUri"]