@pushwoosh/rpc-gateway-statistics-api 1.3.766 → 1.3.767

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
@@ -213,12 +213,6 @@ export const data = {
213
213
  "method": "post",
214
214
  "path": "/api/v2/statistics/audience/getEmailEventTriggeredPerformance"
215
215
  },
216
- "GetEmailCategoryPerformanceCP": {
217
- "request": "pushwoosh.statistics.statistics.v1.GetEmailCategoryPerformanceCPRequest",
218
- "response": "pushwoosh.statistics.statistics.v1.GetEmailCategoryPerformanceCPResponse",
219
- "method": "post",
220
- "path": "/api/v2/statistics/audience/getEmailCategoryPerformance"
221
- },
222
216
  "GetEmailFrequencyCappingCP": {
223
217
  "request": "pushwoosh.statistics.statistics.v1.GetEmailFrequencyCappingCPRequest",
224
218
  "response": "pushwoosh.statistics.statistics.v1.GetEmailFrequencyCappingCPResponse",
@@ -1282,58 +1276,6 @@ export const data = {
1282
1276
  }
1283
1277
  }
1284
1278
  },
1285
- "pushwoosh.statistics.statistics.v1.GetEmailCategoryPerformanceCPRequest": {
1286
- "type": "I",
1287
- "fields": {
1288
- "applicationCode": {
1289
- "type": "string"
1290
- },
1291
- "timestampFrom": {
1292
- "type": "string"
1293
- },
1294
- "timestampTo": {
1295
- "type": "string"
1296
- }
1297
- }
1298
- },
1299
- "pushwoosh.statistics.statistics.v1.EmailCategoryPerformance": {
1300
- "type": "I",
1301
- "fields": {
1302
- "categoryCode": {
1303
- "type": "string"
1304
- },
1305
- "categoryName": {
1306
- "type": "string"
1307
- },
1308
- "sends": {
1309
- "type": "number"
1310
- },
1311
- "opens": {
1312
- "type": "number"
1313
- },
1314
- "clicks": {
1315
- "type": "number"
1316
- },
1317
- "unsubscribes": {
1318
- "type": "number"
1319
- }
1320
- }
1321
- },
1322
- "pushwoosh.statistics.statistics.v1.GetEmailCategoryPerformanceCPResponse": {
1323
- "type": "I",
1324
- "fields": {
1325
- "rows": {
1326
- "type": "pushwoosh.statistics.statistics.v1.EmailCategoryPerformance",
1327
- "array": true
1328
- },
1329
- "windowFrom": {
1330
- "type": "string"
1331
- },
1332
- "windowTo": {
1333
- "type": "string"
1334
- }
1335
- }
1336
- },
1337
1279
  "pushwoosh.statistics.statistics.v1.GetEmailFrequencyCappingCPRequest": {
1338
1280
  "type": "I",
1339
1281
  "fields": {
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@pushwoosh/rpc-gateway-statistics-api",
3
- "version": "1.3.766",
3
+ "version": "1.3.767",
4
4
  "description": "Statistics API gateway HTTP API Types and Data",
5
5
  "main": "index.js",
6
6
  "module": "index.js",
@@ -23,7 +23,6 @@ export type StatisticsService_GetSubscribersTotalStatisticsCP = RpcMethod<GetSub
23
23
  export type StatisticsService_GetSubscribersDailyStatisticsCP = RpcMethod<GetSubscribersDailyStatisticsCPRequest, GetSubscribersDailyStatisticsCPResponse>;
24
24
  export type StatisticsService_GetEmailActivityDistributionCP = RpcMethod<GetEmailActivityDistributionCPRequest, GetEmailActivityDistributionCPResponse>;
25
25
  export type StatisticsService_GetEmailEventTriggeredPerformanceCP = RpcMethod<GetEmailEventTriggeredPerformanceCPRequest, GetEmailEventTriggeredPerformanceCPResponse>;
26
- export type StatisticsService_GetEmailCategoryPerformanceCP = RpcMethod<GetEmailCategoryPerformanceCPRequest, GetEmailCategoryPerformanceCPResponse>;
27
26
  export type StatisticsService_GetEmailFrequencyCappingCP = RpcMethod<GetEmailFrequencyCappingCPRequest, GetEmailFrequencyCappingCPResponse>;
28
27
  export type StatisticsService_GetEmailUnsubscribeByFrequencyCP = RpcMethod<GetEmailUnsubscribeByFrequencyCPRequest, GetEmailUnsubscribeByFrequencyCPResponse>;
29
28
  export type StatisticsService_GetRetentionTotalStatisticsCP = RpcMethod<GetRetentionTotalStatisticsCPRequest, GetRetentionTotalStatisticsCPResponse>;
@@ -76,8 +75,6 @@ export interface StatisticsService {
76
75
  GetEmailActivityDistributionCP: StatisticsService_GetEmailActivityDistributionCP;
77
76
  /** GetEmailEventTriggeredPerformanceCP returns performance of event-triggered emails for control panel */
78
77
  GetEmailEventTriggeredPerformanceCP: StatisticsService_GetEmailEventTriggeredPerformanceCP;
79
- /** GetEmailCategoryPerformanceCP returns per-email-category performance for control panel */
80
- GetEmailCategoryPerformanceCP: StatisticsService_GetEmailCategoryPerformanceCP;
81
78
  /** GetEmailFrequencyCappingCP returns email sends suppressed by frequency capping for control panel */
82
79
  GetEmailFrequencyCappingCP: StatisticsService_GetEmailFrequencyCappingCP;
83
80
  /** GetEmailUnsubscribeByFrequencyCP returns the unsubscribe rate by how many letters an address got */
@@ -506,27 +503,6 @@ export type GetEmailEventTriggeredPerformanceCPResponse = {
506
503
  windowFrom: string;
507
504
  windowTo: string;
508
505
  };
509
- export type GetEmailCategoryPerformanceCPRequest = {
510
- applicationCode: string;
511
- timestampFrom: string;
512
- timestampTo: string;
513
- };
514
- export type EmailCategoryPerformance = {
515
- categoryCode: string;
516
- categoryName: string;
517
- sends: number;
518
- opens: number;
519
- clicks: number;
520
- /** Unsubscribes from this very category, not from the whole mailing. */
521
- unsubscribes: number;
522
- };
523
- /** One row per email category of the application, including categories nothing was sent to. */
524
- export type GetEmailCategoryPerformanceCPResponse = {
525
- rows: EmailCategoryPerformance[];
526
- /** The window actually read, clamped to the event log retention. */
527
- windowFrom: string;
528
- windowTo: string;
529
- };
530
506
  export type GetEmailFrequencyCappingCPRequest = {
531
507
  applicationCode: string;
532
508
  timestampFrom: string;