@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/lcn.d.ts +2 -0
- package/dist/lcn.d.ts.map +1 -1
- package/dist/types.cjs.development.js +2 -1
- package/dist/types.cjs.development.js.map +2 -2
- package/dist/types.cjs.production.min.js +1 -1
- package/dist/types.cjs.production.min.js.map +2 -2
- package/dist/types.esm.js +2 -1
- package/dist/types.esm.js.map +2 -2
- package/package.json +1 -1
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"]
|