@pushwoosh/rpc-gateway-statistics-api 1.3.740 → 1.3.741

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
@@ -4312,6 +4312,18 @@ export const data = {
4312
4312
  }
4313
4313
  }
4314
4314
  },
4315
+ "pushwoosh.statistics.statistics.v2.statistics.GetCampaignDeliveryFunnelRequest": {
4316
+ "type": "I",
4317
+ "fields": {
4318
+ "campaignCode": {
4319
+ "type": "string"
4320
+ },
4321
+ "platforms": {
4322
+ "type": "number",
4323
+ "array": true
4324
+ }
4325
+ }
4326
+ },
4315
4327
  "pushwoosh.statistics.statistics.v2.statistics.GetMessageDeliveryTimelineRequest": {
4316
4328
  "type": "I",
4317
4329
  "fields": {
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@pushwoosh/rpc-gateway-statistics-api",
3
- "version": "1.3.740",
3
+ "version": "1.3.741",
4
4
  "description": "Statistics API gateway HTTP API Types and Data",
5
5
  "main": "index.js",
6
6
  "module": "index.js",
@@ -735,6 +735,16 @@ export type GetMessageDeliveryFunnelResponse = {
735
735
  windowTo: Date;
736
736
  funnelState: GetMessageDeliveryFunnelResponse_FunnelState;
737
737
  };
738
+ /**
739
+ * GetCampaignDeliveryFunnelRequest asks for one campaign's funnel. No time range, for the
740
+ * same reason the message funnel has none: sends and confirmations sit on different axes.
741
+ */
742
+ export type GetCampaignDeliveryFunnelRequest = {
743
+ /** Campaign code, required */
744
+ campaignCode: string;
745
+ /** Optional platform ID filter */
746
+ platforms: number[];
747
+ };
738
748
  /**
739
749
  * GetMessageDeliveryTimelineRequest asks for one message's metrics over time. Unlike
740
750
  * the funnel it takes a window: a timeline has no stage arithmetic to break.