@pushwoosh/rpc-gateway-statistics-api 1.3.702 → 1.3.704

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
@@ -325,6 +325,9 @@ export const data = {
325
325
  },
326
326
  "frequencyCappingSuppressions": {
327
327
  "type": "number"
328
+ },
329
+ "opensAmpp": {
330
+ "type": "number"
328
331
  }
329
332
  }
330
333
  },
@@ -3267,6 +3270,12 @@ export const data = {
3267
3270
  },
3268
3271
  "frequencyCappingSuppressions": {
3269
3272
  "type": "number"
3273
+ },
3274
+ "opensAmpp": {
3275
+ "type": "pushwoosh.statistics.statistics.v2.statistics.GetCampaignStatisticsResponse.PlatformTimeSeries"
3276
+ },
3277
+ "totalOpensAmpp": {
3278
+ "type": "pushwoosh.statistics.statistics.v2.statistics.GetCampaignStatisticsResponse.PlatformTimeSeries"
3270
3279
  }
3271
3280
  }
3272
3281
  },
@@ -3554,6 +3563,14 @@ export const data = {
3554
3563
  "totalDeliveries": {
3555
3564
  "type": "number",
3556
3565
  "array": true
3566
+ },
3567
+ "opensAmpp": {
3568
+ "type": "number",
3569
+ "array": true
3570
+ },
3571
+ "totalOpensAmpp": {
3572
+ "type": "number",
3573
+ "array": true
3557
3574
  }
3558
3575
  }
3559
3576
  },
@@ -3604,6 +3621,12 @@ export const data = {
3604
3621
  },
3605
3622
  "frequencyCappingSuppressions": {
3606
3623
  "type": "number"
3624
+ },
3625
+ "openedAmpp": {
3626
+ "type": "number"
3627
+ },
3628
+ "totalOpenedAmpp": {
3629
+ "type": "number"
3607
3630
  }
3608
3631
  }
3609
3632
  },
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@pushwoosh/rpc-gateway-statistics-api",
3
- "version": "1.3.702",
3
+ "version": "1.3.704",
4
4
  "description": "Statistics API gateway HTTP API Types and Data",
5
5
  "main": "index.js",
6
6
  "module": "index.js",
@@ -137,6 +137,8 @@ export type TotalEventCollection = {
137
137
  frequencyCappingUniqueUsers: number;
138
138
  /** Total skipped count by frequency capping */
139
139
  frequencyCappingSuppressions: number;
140
+ /** Unique opens attributed to Apple Mail Privacy Protection (AMPP) */
141
+ opensAmpp: number;
140
142
  };
141
143
  export type MessageDeliveryReportRequest = {
142
144
  messageId: number;
@@ -464,10 +466,17 @@ export type GetFrequencyCappingTotalStatisticsCPRequest = {
464
466
  applicationCode: string;
465
467
  timestampFrom: string;
466
468
  timestampTo: string;
469
+ interval: pushwoosh_statistics_types_TimeInterval;
470
+ };
471
+ export type FrequencyCappingMetricWithTimestamp = {
472
+ timestamp: string;
473
+ frequencyCappingSuppressions: number;
474
+ frequencyCappingUniqueUsers: number;
467
475
  };
468
476
  export type GetFrequencyCappingTotalStatisticsCPResponse = {
469
477
  frequencyCappingSuppressions: number;
470
478
  frequencyCappingUniqueUsers: number;
479
+ rows: FrequencyCappingMetricWithTimestamp[];
471
480
  };
472
481
  export type GetUsersPAEStatisticsCPRequest = {
473
482
  applicationCode: string;
@@ -198,6 +198,10 @@ export type GetCampaignStatisticsResponse_Metrics = {
198
198
  frequencyCappingUniqueUsers: number;
199
199
  /** Total skipped count by frequency capping */
200
200
  frequencyCappingSuppressions: number;
201
+ /** Unique opens by Apple MPP / machine clients (ampp), subset of opens */
202
+ opensAmpp: GetCampaignStatisticsResponse_PlatformTimeSeries;
203
+ /** Total opens by Apple MPP / machine clients (ampp), subset of total_opens */
204
+ totalOpensAmpp: GetCampaignStatisticsResponse_PlatformTimeSeries;
201
205
  };
202
206
  /** GetCampaignStatisticsResponse contains detailed campaign statistics with platform breakdowns */
203
207
  export type GetCampaignStatisticsResponse = {
@@ -384,6 +388,10 @@ export type GetJourneyMetricsResponse_ChannelMetrics = {
384
388
  totalOpens: number[];
385
389
  /** Total deliveries for each timestamp (including duplicates) */
386
390
  totalDeliveries: number[];
391
+ /** Unique ampp (Apple MPP / machine) opens for each timestamp, subset of opens */
392
+ opensAmpp: number[];
393
+ /** Total ampp (Apple MPP / machine) opens for each timestamp, subset of total_opens */
394
+ totalOpensAmpp: number[];
387
395
  };
388
396
  /** ChannelTotals contains totals for a specific channel */
389
397
  export type GetJourneyMetricsResponse_ChannelTotals = {
@@ -417,6 +425,10 @@ export type GetJourneyMetricsResponse_ChannelTotals = {
417
425
  frequencyCappingUniqueUsers: number;
418
426
  /** Total skipped count by frequency capping */
419
427
  frequencyCappingSuppressions: number;
428
+ /** Total unique ampp (Apple MPP / machine) opens for this channel, subset of opened */
429
+ openedAmpp: number;
430
+ /** Total ampp (Apple MPP / machine) opens for this channel, subset of total_opened */
431
+ totalOpenedAmpp: number;
420
432
  };
421
433
  /** GetJourneyMetricsResponse contains journey metrics with time series data and totals broken down by channels */
422
434
  export type GetJourneyMetricsResponse = {