@pushwoosh/rpc-v2-http-api-data 0.2.120 → 0.2.121
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/accounts.d.ts +6 -3
- package/package.json +1 -1
package/accounts.d.ts
CHANGED
|
@@ -371,11 +371,14 @@ export type EmailContent_Mjml = {
|
|
|
371
371
|
settings: object;
|
|
372
372
|
};
|
|
373
373
|
export type EmailContent_Smartcards = {
|
|
374
|
-
/**
|
|
374
|
+
/**
|
|
375
|
+
* Deprecated: ignored on write. The server renders the html from `content`
|
|
376
|
+
* and stores what it rendered; sent values are dropped. Still returned on read.
|
|
377
|
+
*/
|
|
375
378
|
html: string;
|
|
376
|
-
/**
|
|
379
|
+
/** Deprecated: ignored on write, derived from `content` with the html. */
|
|
377
380
|
localizationData: object;
|
|
378
|
-
/** Smartcards editor content */
|
|
381
|
+
/** Smartcards editor content — the document, and the only input that counts. */
|
|
379
382
|
content: object;
|
|
380
383
|
};
|
|
381
384
|
export type EmailContent_Vibeblocks = {
|