@pushwoosh/rpc-v2-http-api-data 0.2.72 → 0.2.73
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 +2 -0
- package/data.js +3 -0
- package/package.json +1 -1
package/accounts.d.ts
CHANGED
|
@@ -328,6 +328,8 @@ export type CreateEmailTemplateRequest = {
|
|
|
328
328
|
label?: string;
|
|
329
329
|
categories?: string[];
|
|
330
330
|
previewSettings?: object;
|
|
331
|
+
/** System templates are feature internals (e.g. synced-block fragments): hidden from List/labels, still reachable by code. */
|
|
332
|
+
system?: boolean;
|
|
331
333
|
};
|
|
332
334
|
export type CreateEmailTemplateResponse = {
|
|
333
335
|
emailTemplate: EmailTemplate;
|
package/data.js
CHANGED