@pushwoosh/rpc-v2-http-api-data 0.1.850 → 0.1.852
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 +10 -1
- package/data.js +19 -1
- package/package.json +1 -1
package/accounts.d.ts
CHANGED
|
@@ -291,6 +291,11 @@ export type EmailContent_Mjml = {
|
|
|
291
291
|
mjml: string;
|
|
292
292
|
settings: object;
|
|
293
293
|
};
|
|
294
|
+
export type EmailContent_Smartcards = {
|
|
295
|
+
html: string;
|
|
296
|
+
localizationData: object;
|
|
297
|
+
content: object;
|
|
298
|
+
};
|
|
294
299
|
export type EmailContent_kind_unlayer = {
|
|
295
300
|
type: 'unlayer';
|
|
296
301
|
data: EmailContent_Unlayer;
|
|
@@ -307,7 +312,11 @@ export type EmailContent_kind_mjml = {
|
|
|
307
312
|
type: 'mjml';
|
|
308
313
|
data: EmailContent_Mjml;
|
|
309
314
|
};
|
|
310
|
-
export type
|
|
315
|
+
export type EmailContent_kind_smartcards = {
|
|
316
|
+
type: 'smartcards';
|
|
317
|
+
data: EmailContent_Smartcards;
|
|
318
|
+
};
|
|
319
|
+
export type EmailContent_kind = EmailContent_kind_unlayer | EmailContent_kind_pushwoosh | EmailContent_kind_raw | EmailContent_kind_mjml | EmailContent_kind_smartcards;
|
|
311
320
|
export type EmailContent = {
|
|
312
321
|
senderInfo: EmailContent_SenderInfo;
|
|
313
322
|
subject: Record<string, string>;
|
package/data.js
CHANGED
|
@@ -6540,6 +6540,20 @@ export const data = {
|
|
|
6540
6540
|
}
|
|
6541
6541
|
}
|
|
6542
6542
|
},
|
|
6543
|
+
"pushwoosh.rpc_v2.accounts.EmailContent.Smartcards": {
|
|
6544
|
+
"type": "I",
|
|
6545
|
+
"fields": {
|
|
6546
|
+
"html": {
|
|
6547
|
+
"type": "string"
|
|
6548
|
+
},
|
|
6549
|
+
"localizationData": {
|
|
6550
|
+
"type": "object"
|
|
6551
|
+
},
|
|
6552
|
+
"content": {
|
|
6553
|
+
"type": "object"
|
|
6554
|
+
}
|
|
6555
|
+
}
|
|
6556
|
+
},
|
|
6543
6557
|
"pushwoosh.rpc_v2.accounts.EmailContent": {
|
|
6544
6558
|
"type": "I",
|
|
6545
6559
|
"fields": {
|
|
@@ -6561,6 +6575,9 @@ export const data = {
|
|
|
6561
6575
|
},
|
|
6562
6576
|
"mjml": {
|
|
6563
6577
|
"type": "pushwoosh.rpc_v2.accounts.EmailContent.Mjml"
|
|
6578
|
+
},
|
|
6579
|
+
"smartcards": {
|
|
6580
|
+
"type": "pushwoosh.rpc_v2.accounts.EmailContent.Smartcards"
|
|
6564
6581
|
}
|
|
6565
6582
|
},
|
|
6566
6583
|
"oneofs": {
|
|
@@ -6569,7 +6586,8 @@ export const data = {
|
|
|
6569
6586
|
"unlayer",
|
|
6570
6587
|
"pushwoosh",
|
|
6571
6588
|
"raw",
|
|
6572
|
-
"mjml"
|
|
6589
|
+
"mjml",
|
|
6590
|
+
"smartcards"
|
|
6573
6591
|
]
|
|
6574
6592
|
}
|
|
6575
6593
|
}
|