placementt-core 1.400.744 → 1.400.747

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.
@@ -1339,6 +1339,7 @@ export type EmailSectionConfig = {
1339
1339
  id: string;
1340
1340
  title: string;
1341
1341
  description: string;
1342
+ emailInput?: Descendant[];
1342
1343
  forTemplates: string[];
1343
1344
  render: (props: EmailSectionRenderProps) => string;
1344
1345
  };
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.744",
5
+ "version": "1.400.747",
6
6
  "main": "lib/index.js",
7
7
  "types": "lib/index.d.ts",
8
8
  "scripts": {
@@ -1313,6 +1313,7 @@ export type EmailSectionConfig = {
1313
1313
  id: string,
1314
1314
  title: string,
1315
1315
  description: string,
1316
+ emailInput?: Descendant[],
1316
1317
  forTemplates: string[],
1317
1318
  render: (props: EmailSectionRenderProps) => string,
1318
1319
  }