@pushwoosh/rpc-gateway-statistics-api 1.3.732 → 1.3.733

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
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@pushwoosh/rpc-gateway-statistics-api",
3
- "version": "1.3.732",
3
+ "version": "1.3.733",
4
4
  "description": "Statistics API gateway HTTP API Types and Data",
5
5
  "main": "index.js",
6
6
  "module": "index.js",
@@ -885,12 +885,16 @@ export type InboundWebhookLogItem = {
885
885
  webhookUuid: string;
886
886
  /** Request identifier */
887
887
  identifier: string;
888
- /** Processing status */
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 = {