@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.
Files changed (2) hide show
  1. package/accounts.d.ts +6 -3
  2. 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
- /** Raw html */
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
- /** Localization map {"en": {"variable":"value"}...} */
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 = {
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@pushwoosh/rpc-v2-http-api-data",
3
- "version": "0.2.120",
3
+ "version": "0.2.121",
4
4
  "description": "RPC V2 HTTP API Types and Data",
5
5
  "main": "index.js",
6
6
  "module": "index.js",