@pushwoosh/rpc-v2-http-api-data 0.2.121 → 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/data.js +6 -0
- package/inbound_webhooks.d.ts +3 -0
- package/package.json +1 -1
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
|
};
|