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.
package/lib/typeDefinitions.d.ts
CHANGED
|
@@ -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
package/src/typeDefinitions.ts
CHANGED
|
@@ -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},
|