@pushwoosh/rpc-v2-http-api-data 0.2.71 → 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/applications_email_froms.d.ts +6 -0
- package/data.js +12 -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;
|
|
@@ -49,6 +49,12 @@ export type EmailFooter = {
|
|
|
49
49
|
links: NavLink[];
|
|
50
50
|
social: SocialLink[];
|
|
51
51
|
appBadges: AppBadge[];
|
|
52
|
+
/** Brand logo shown at the top of the footer; absolute image URL, empty = no logo. */
|
|
53
|
+
logoUrl: string;
|
|
54
|
+
/** Rendered logo width in px; 0 = the renderer default. */
|
|
55
|
+
logoWidth: number;
|
|
56
|
+
/** Click-through URL for the logo; empty = plain image. */
|
|
57
|
+
logoLink: string;
|
|
52
58
|
};
|
|
53
59
|
export type GetEmailFooterRequest = {
|
|
54
60
|
/** Application code (format XXXXX-XXXXX) whose email footer to fetch. */
|
package/data.js
CHANGED
|
@@ -3426,6 +3426,15 @@ export const data = {
|
|
|
3426
3426
|
"appBadges": {
|
|
3427
3427
|
"type": "pushwoosh.rpc_v2.applications.email_froms.AppBadge",
|
|
3428
3428
|
"array": true
|
|
3429
|
+
},
|
|
3430
|
+
"logoUrl": {
|
|
3431
|
+
"type": "string"
|
|
3432
|
+
},
|
|
3433
|
+
"logoWidth": {
|
|
3434
|
+
"type": "number"
|
|
3435
|
+
},
|
|
3436
|
+
"logoLink": {
|
|
3437
|
+
"type": "string"
|
|
3429
3438
|
}
|
|
3430
3439
|
}
|
|
3431
3440
|
},
|
|
@@ -7578,6 +7587,9 @@ export const data = {
|
|
|
7578
7587
|
},
|
|
7579
7588
|
"previewSettings": {
|
|
7580
7589
|
"type": "object"
|
|
7590
|
+
},
|
|
7591
|
+
"system": {
|
|
7592
|
+
"type": "boolean"
|
|
7581
7593
|
}
|
|
7582
7594
|
}
|
|
7583
7595
|
},
|