@pushwoosh/rpc-gateway-statistics-api 1.3.732 → 1.3.734
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
|
@@ -4544,6 +4544,18 @@ export const data = {
|
|
|
4544
4544
|
},
|
|
4545
4545
|
"rawRequest": {
|
|
4546
4546
|
"type": "string"
|
|
4547
|
+
},
|
|
4548
|
+
"statusIdentity": {
|
|
4549
|
+
"type": "string"
|
|
4550
|
+
},
|
|
4551
|
+
"statusEvent": {
|
|
4552
|
+
"type": "string"
|
|
4553
|
+
},
|
|
4554
|
+
"statusTags": {
|
|
4555
|
+
"type": "string"
|
|
4556
|
+
},
|
|
4557
|
+
"userCreated": {
|
|
4558
|
+
"type": "boolean"
|
|
4547
4559
|
}
|
|
4548
4560
|
}
|
|
4549
4561
|
},
|
package/package.json
CHANGED
|
@@ -885,12 +885,16 @@ export type InboundWebhookLogItem = {
|
|
|
885
885
|
webhookUuid: string;
|
|
886
886
|
/** Request identifier */
|
|
887
887
|
identifier: string;
|
|
888
|
-
/**
|
|
888
|
+
/** Overall processing status */
|
|
889
889
|
status: WebhookLogStatus;
|
|
890
890
|
/** Status message or error description */
|
|
891
891
|
message: string;
|
|
892
892
|
/** Raw request data */
|
|
893
893
|
rawRequest: string;
|
|
894
|
+
statusIdentity: string;
|
|
895
|
+
statusEvent: string;
|
|
896
|
+
statusTags: string;
|
|
897
|
+
userCreated: boolean;
|
|
894
898
|
};
|
|
895
899
|
/** GetInboundWebhookActivityLogResponse contains the list of webhook log entries and totals */
|
|
896
900
|
export type GetInboundWebhookActivityLogResponse = {
|