@pushwoosh/rpc-v2-http-api-data 0.1.759 → 0.1.761
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
|
@@ -1297,6 +1297,13 @@ export const data = {
|
|
|
1297
1297
|
},
|
|
1298
1298
|
"accountId": {
|
|
1299
1299
|
"type": "number"
|
|
1300
|
+
},
|
|
1301
|
+
"applicationId": {
|
|
1302
|
+
"type": "number",
|
|
1303
|
+
"optional": true
|
|
1304
|
+
},
|
|
1305
|
+
"meta": {
|
|
1306
|
+
"type": "object"
|
|
1300
1307
|
}
|
|
1301
1308
|
},
|
|
1302
1309
|
"oneofs": {}
|
|
@@ -1340,6 +1347,13 @@ export const data = {
|
|
|
1340
1347
|
},
|
|
1341
1348
|
"email": {
|
|
1342
1349
|
"type": "pushwoosh.accounts.alerts.v1.AlertEmail"
|
|
1350
|
+
},
|
|
1351
|
+
"applicationId": {
|
|
1352
|
+
"type": "number",
|
|
1353
|
+
"optional": true
|
|
1354
|
+
},
|
|
1355
|
+
"meta": {
|
|
1356
|
+
"type": "object"
|
|
1343
1357
|
}
|
|
1344
1358
|
},
|
|
1345
1359
|
"oneofs": {}
|
|
@@ -10378,6 +10392,10 @@ export const data = {
|
|
|
10378
10392
|
},
|
|
10379
10393
|
"account": {
|
|
10380
10394
|
"type": "string"
|
|
10395
|
+
},
|
|
10396
|
+
"application": {
|
|
10397
|
+
"type": "string",
|
|
10398
|
+
"optional": true
|
|
10381
10399
|
}
|
|
10382
10400
|
},
|
|
10383
10401
|
"oneofs": {}
|
|
@@ -22369,6 +22387,9 @@ export const data = {
|
|
|
22369
22387
|
"values": {
|
|
22370
22388
|
"type": "number",
|
|
22371
22389
|
"array": true
|
|
22390
|
+
},
|
|
22391
|
+
"total": {
|
|
22392
|
+
"type": "number"
|
|
22372
22393
|
}
|
|
22373
22394
|
}
|
|
22374
22395
|
},
|
|
@@ -22413,6 +22434,9 @@ export const data = {
|
|
|
22413
22434
|
},
|
|
22414
22435
|
"value": {
|
|
22415
22436
|
"type": "number"
|
|
22437
|
+
},
|
|
22438
|
+
"total": {
|
|
22439
|
+
"type": "number"
|
|
22416
22440
|
}
|
|
22417
22441
|
}
|
|
22418
22442
|
},
|
package/internal_alerts.d.ts
CHANGED
package/package.json
CHANGED
|
@@ -37,6 +37,8 @@ export type ListResponse_Alert = {
|
|
|
37
37
|
expiry?: Date;
|
|
38
38
|
uuid: string;
|
|
39
39
|
accountId: number;
|
|
40
|
+
applicationId?: number;
|
|
41
|
+
meta: object;
|
|
40
42
|
};
|
|
41
43
|
export type ListResponse = {
|
|
42
44
|
alerts: ListResponse_Alert[];
|
|
@@ -51,6 +53,8 @@ export type SendRequest = {
|
|
|
51
53
|
expiry?: Date;
|
|
52
54
|
banner?: AlertBanner;
|
|
53
55
|
email?: AlertEmail;
|
|
56
|
+
applicationId?: number;
|
|
57
|
+
meta?: object;
|
|
54
58
|
};
|
|
55
59
|
export type UpdateStatusRequest_Alert = {
|
|
56
60
|
id: number;
|
|
@@ -144,6 +144,7 @@ export type GetLinearChartMetricsRequest = {
|
|
|
144
144
|
export type GetLinearChartMetricsResponse_Breakdown = {
|
|
145
145
|
breakdown: string;
|
|
146
146
|
values: number[];
|
|
147
|
+
total: number;
|
|
147
148
|
};
|
|
148
149
|
export type GetLinearChartMetricsResponse_Metric = {
|
|
149
150
|
metric: string;
|
|
@@ -159,6 +160,7 @@ export type GetTotalsChartMetricsRequest = {
|
|
|
159
160
|
export type GetTotalsChartMetricsResponse_Breakdown = {
|
|
160
161
|
breakdown: string;
|
|
161
162
|
value: number;
|
|
163
|
+
total: number;
|
|
162
164
|
};
|
|
163
165
|
export type GetTotalsChartMetricsResponse_Metric = {
|
|
164
166
|
metric: string;
|