@pushwoosh/rpc-v2-http-api-data 0.2.120 → 0.2.122
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 +6 -3
- package/data.js +6 -0
- package/inbound_webhooks.d.ts +3 -0
- package/package.json +1 -1
package/accounts.d.ts
CHANGED
|
@@ -371,11 +371,14 @@ export type EmailContent_Mjml = {
|
|
|
371
371
|
settings: object;
|
|
372
372
|
};
|
|
373
373
|
export type EmailContent_Smartcards = {
|
|
374
|
-
/**
|
|
374
|
+
/**
|
|
375
|
+
* Deprecated: ignored on write. The server renders the html from `content`
|
|
376
|
+
* and stores what it rendered; sent values are dropped. Still returned on read.
|
|
377
|
+
*/
|
|
375
378
|
html: string;
|
|
376
|
-
/**
|
|
379
|
+
/** Deprecated: ignored on write, derived from `content` with the html. */
|
|
377
380
|
localizationData: object;
|
|
378
|
-
/** Smartcards editor content */
|
|
381
|
+
/** Smartcards editor content — the document, and the only input that counts. */
|
|
379
382
|
content: object;
|
|
380
383
|
};
|
|
381
384
|
export type EmailContent_Vibeblocks = {
|
package/data.js
CHANGED
|
@@ -13448,6 +13448,9 @@ export const data = {
|
|
|
13448
13448
|
},
|
|
13449
13449
|
"perPage": {
|
|
13450
13450
|
"type": "number"
|
|
13451
|
+
},
|
|
13452
|
+
"groupStatus": {
|
|
13453
|
+
"type": "string"
|
|
13451
13454
|
}
|
|
13452
13455
|
}
|
|
13453
13456
|
},
|
|
@@ -13475,6 +13478,9 @@ export const data = {
|
|
|
13475
13478
|
},
|
|
13476
13479
|
"totalFailed": {
|
|
13477
13480
|
"type": "number"
|
|
13481
|
+
},
|
|
13482
|
+
"totalWarning": {
|
|
13483
|
+
"type": "number"
|
|
13478
13484
|
}
|
|
13479
13485
|
}
|
|
13480
13486
|
},
|
package/inbound_webhooks.d.ts
CHANGED
|
@@ -165,6 +165,7 @@ export type GetActivityLogRequest = {
|
|
|
165
165
|
application?: string;
|
|
166
166
|
page?: number;
|
|
167
167
|
perPage?: number;
|
|
168
|
+
groupStatus?: string;
|
|
168
169
|
};
|
|
169
170
|
export type GetActivityLogResponse = {
|
|
170
171
|
/** List of webhook log entries for current page */
|
|
@@ -181,4 +182,6 @@ export type GetActivityLogResponse = {
|
|
|
181
182
|
totalSuccess: number;
|
|
182
183
|
/** Total number of failed webhook calls */
|
|
183
184
|
totalFailed: number;
|
|
185
|
+
/** Total number of webhook calls with a partial failure */
|
|
186
|
+
totalWarning: number;
|
|
184
187
|
};
|