@pushwoosh/rpc-v2-http-api-data 0.1.825 → 0.1.827
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 +11 -1
- package/data.js +22 -1
- package/package.json +1 -1
package/accounts.d.ts
CHANGED
|
@@ -285,6 +285,12 @@ export type EmailContent_Pushwoosh = {
|
|
|
285
285
|
export type EmailContent_Raw = {
|
|
286
286
|
html: Record<string, string>;
|
|
287
287
|
};
|
|
288
|
+
export type EmailContent_Mjml = {
|
|
289
|
+
html: string;
|
|
290
|
+
localizationData: object;
|
|
291
|
+
mjml: string;
|
|
292
|
+
settings: object;
|
|
293
|
+
};
|
|
288
294
|
export type EmailContent_kind_unlayer = {
|
|
289
295
|
type: 'unlayer';
|
|
290
296
|
data: EmailContent_Unlayer;
|
|
@@ -297,7 +303,11 @@ export type EmailContent_kind_raw = {
|
|
|
297
303
|
type: 'raw';
|
|
298
304
|
data: EmailContent_Raw;
|
|
299
305
|
};
|
|
300
|
-
export type
|
|
306
|
+
export type EmailContent_kind_mjml = {
|
|
307
|
+
type: 'mjml';
|
|
308
|
+
data: EmailContent_Mjml;
|
|
309
|
+
};
|
|
310
|
+
export type EmailContent_kind = EmailContent_kind_unlayer | EmailContent_kind_pushwoosh | EmailContent_kind_raw | EmailContent_kind_mjml;
|
|
301
311
|
export type EmailContent = {
|
|
302
312
|
senderInfo: EmailContent_SenderInfo;
|
|
303
313
|
subject: Record<string, string>;
|
package/data.js
CHANGED
|
@@ -6420,6 +6420,23 @@ export const data = {
|
|
|
6420
6420
|
}
|
|
6421
6421
|
}
|
|
6422
6422
|
},
|
|
6423
|
+
"pushwoosh.rpc_v2.accounts.EmailContent.Mjml": {
|
|
6424
|
+
"type": "I",
|
|
6425
|
+
"fields": {
|
|
6426
|
+
"html": {
|
|
6427
|
+
"type": "string"
|
|
6428
|
+
},
|
|
6429
|
+
"localizationData": {
|
|
6430
|
+
"type": "object"
|
|
6431
|
+
},
|
|
6432
|
+
"mjml": {
|
|
6433
|
+
"type": "string"
|
|
6434
|
+
},
|
|
6435
|
+
"settings": {
|
|
6436
|
+
"type": "object"
|
|
6437
|
+
}
|
|
6438
|
+
}
|
|
6439
|
+
},
|
|
6423
6440
|
"pushwoosh.rpc_v2.accounts.EmailContent": {
|
|
6424
6441
|
"type": "I",
|
|
6425
6442
|
"fields": {
|
|
@@ -6438,6 +6455,9 @@ export const data = {
|
|
|
6438
6455
|
},
|
|
6439
6456
|
"raw": {
|
|
6440
6457
|
"type": "pushwoosh.rpc_v2.accounts.EmailContent.Raw"
|
|
6458
|
+
},
|
|
6459
|
+
"mjml": {
|
|
6460
|
+
"type": "pushwoosh.rpc_v2.accounts.EmailContent.Mjml"
|
|
6441
6461
|
}
|
|
6442
6462
|
},
|
|
6443
6463
|
"oneofs": {
|
|
@@ -6445,7 +6465,8 @@ export const data = {
|
|
|
6445
6465
|
"oneof": [
|
|
6446
6466
|
"unlayer",
|
|
6447
6467
|
"pushwoosh",
|
|
6448
|
-
"raw"
|
|
6468
|
+
"raw",
|
|
6469
|
+
"mjml"
|
|
6449
6470
|
]
|
|
6450
6471
|
}
|
|
6451
6472
|
}
|