@pushwoosh/rpc-v2-http-api-data 0.2.121 → 0.2.123
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 +13 -3
- package/data.js +1883 -0
- package/inbound_webhooks.d.ts +3 -0
- package/package.json +1 -1
- package/pushwoosh_aibuilder_v1.d.ts +1491 -0
- package/pushwoosh_aibuilder_v1.js +3 -0
- package/pushwoosh_llm_v1.d.ts +68 -0
- package/pushwoosh_llm_v1.js +3 -0
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
|
};
|