@pushwoosh/rpc-v2-http-api-data 0.2.123 → 0.2.125

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 CHANGED
@@ -529,6 +529,8 @@ export type RebakeEmailTemplatesResponse = {
529
529
  results: RebakeEmailTemplateResult[];
530
530
  /** Templates a dry run would have rewritten. */
531
531
  wouldChange: number;
532
+ /** Templates whose dialect carried keys the typed document cannot hold. */
533
+ withDroppedKeys: number;
532
534
  };
533
535
  export type RebakeEmailTemplateResult = {
534
536
  code: string;
@@ -537,4 +539,9 @@ export type RebakeEmailTemplateResult = {
537
539
  error: string;
538
540
  htmlBytesBefore: number;
539
541
  htmlBytesAfter: number;
542
+ /**
543
+ * Editor keys the typed document cannot hold, named by the renderer. Empty on
544
+ * every template is the second half of the AIDEV-925 zero criterion.
545
+ */
546
+ droppedFeKeys: string[];
540
547
  };
package/data.js CHANGED
@@ -10158,6 +10158,9 @@ export const data = {
10158
10158
  },
10159
10159
  "wouldChange": {
10160
10160
  "type": "number"
10161
+ },
10162
+ "withDroppedKeys": {
10163
+ "type": "number"
10161
10164
  }
10162
10165
  }
10163
10166
  },
@@ -10178,6 +10181,10 @@ export const data = {
10178
10181
  },
10179
10182
  "htmlBytesAfter": {
10180
10183
  "type": "number"
10184
+ },
10185
+ "droppedFeKeys": {
10186
+ "type": "string",
10187
+ "array": true
10181
10188
  }
10182
10189
  }
10183
10190
  },
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@pushwoosh/rpc-v2-http-api-data",
3
- "version": "0.2.123",
3
+ "version": "0.2.125",
4
4
  "description": "RPC V2 HTTP API Types and Data",
5
5
  "main": "index.js",
6
6
  "module": "index.js",