@pushwoosh/rpc-gateway-statistics-api 1.3.734 → 1.3.736
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
CHANGED
|
@@ -4521,6 +4521,9 @@ export const data = {
|
|
|
4521
4521
|
},
|
|
4522
4522
|
"offset": {
|
|
4523
4523
|
"type": "number"
|
|
4524
|
+
},
|
|
4525
|
+
"groupStatus": {
|
|
4526
|
+
"type": "string"
|
|
4524
4527
|
}
|
|
4525
4528
|
}
|
|
4526
4529
|
},
|
|
@@ -4574,6 +4577,9 @@ export const data = {
|
|
|
4574
4577
|
},
|
|
4575
4578
|
"totalFailed": {
|
|
4576
4579
|
"type": "number"
|
|
4580
|
+
},
|
|
4581
|
+
"totalWarning": {
|
|
4582
|
+
"type": "number"
|
|
4577
4583
|
}
|
|
4578
4584
|
}
|
|
4579
4585
|
},
|
package/package.json
CHANGED
|
@@ -876,6 +876,7 @@ export type GetInboundWebhookActivityLogRequest = {
|
|
|
876
876
|
limit: number;
|
|
877
877
|
/** Number of records to skip for pagination */
|
|
878
878
|
offset: number;
|
|
879
|
+
groupStatus: string;
|
|
879
880
|
};
|
|
880
881
|
/** InboundWebhookLogItem represents a single log entry for inbound webhook processing */
|
|
881
882
|
export type InboundWebhookLogItem = {
|
|
@@ -906,6 +907,7 @@ export type GetInboundWebhookActivityLogResponse = {
|
|
|
906
907
|
totalSuccess: number;
|
|
907
908
|
/** Total number of failed webhook calls */
|
|
908
909
|
totalFailed: number;
|
|
910
|
+
totalWarning: number;
|
|
909
911
|
};
|
|
910
912
|
/** GetInboundWebhooksStatusRequest represents a request to get status of webhooks by their UUIDs */
|
|
911
913
|
export type GetInboundWebhooksStatusRequest = {
|