placementt-core 1.400.753 → 1.400.754

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.
@@ -2147,7 +2147,7 @@ export type EmailContentObject = {
2147
2147
  senderName?: string;
2148
2148
  params?: EmailTemplateConfig;
2149
2149
  data?: {
2150
- [key: string]: string | undefined;
2150
+ [key: string]: string | Buffer<ArrayBufferLike> | undefined;
2151
2151
  };
2152
2152
  primaryImage?: string;
2153
2153
  sectionData?: {
package/package.json CHANGED
@@ -2,7 +2,7 @@
2
2
  "private": false,
3
3
  "name": "placementt-core",
4
4
  "author": "Placementt",
5
- "version": "1.400.753",
5
+ "version": "1.400.754",
6
6
  "main": "lib/index.js",
7
7
  "types": "lib/index.d.ts",
8
8
  "scripts": {
@@ -2020,7 +2020,7 @@ export type EmailContentObject = {
2020
2020
  senderName?: string;
2021
2021
  params?: EmailTemplateConfig;
2022
2022
  data?: {
2023
- [key: string]: string|undefined;
2023
+ [key: string]: string|Buffer<ArrayBufferLike>|undefined;
2024
2024
  };
2025
2025
  primaryImage?: string,
2026
2026
  sectionData?: {[sectionId: string]: EmailSectionRenderProps},