@pushwoosh/rpc-v2-http-api-data 0.2.71 → 0.2.72
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/applications_email_froms.d.ts +6 -0
- package/data.js +9 -0
- package/package.json +1 -1
|
@@ -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
|
},
|