@pushwoosh/rpc-v2-http-api-data 0.1.764 → 0.1.765

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
@@ -1182,6 +1182,10 @@ export const data = {
1182
1182
  "content": {
1183
1183
  "type": "string",
1184
1184
  "optional": true
1185
+ },
1186
+ "actionLink": {
1187
+ "type": "string",
1188
+ "optional": true
1185
1189
  }
1186
1190
  },
1187
1191
  "oneofs": {}
@@ -1303,7 +1307,12 @@ export const data = {
1303
1307
  "optional": true
1304
1308
  },
1305
1309
  "meta": {
1306
- "type": "object"
1310
+ "type": "object",
1311
+ "optional": true
1312
+ },
1313
+ "actionLink": {
1314
+ "type": "string",
1315
+ "optional": true
1307
1316
  }
1308
1317
  },
1309
1318
  "oneofs": {}
@@ -1353,7 +1362,8 @@ export const data = {
1353
1362
  "optional": true
1354
1363
  },
1355
1364
  "meta": {
1356
- "type": "object"
1365
+ "type": "object",
1366
+ "optional": true
1357
1367
  }
1358
1368
  },
1359
1369
  "oneofs": {}
@@ -10399,6 +10409,10 @@ export const data = {
10399
10409
  "application": {
10400
10410
  "type": "string",
10401
10411
  "optional": true
10412
+ },
10413
+ "actionLink": {
10414
+ "type": "string",
10415
+ "optional": true
10402
10416
  }
10403
10417
  },
10404
10418
  "oneofs": {}
@@ -28,6 +28,7 @@ export type Alert = {
28
28
  uuid: string;
29
29
  account: string;
30
30
  application?: string;
31
+ actionLink?: string;
31
32
  };
32
33
  export type ListResponse = {
33
34
  alerts: Alert[];
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@pushwoosh/rpc-v2-http-api-data",
3
- "version": "0.1.764",
3
+ "version": "0.1.765",
4
4
  "description": "RPC V2 HTTP API Types and Data",
5
5
  "main": "index.js",
6
6
  "module": "index.js",
@@ -7,6 +7,7 @@ export interface AlertsService {
7
7
  export type AlertBanner = {
8
8
  type: AlertType;
9
9
  content?: string;
10
+ actionLink?: string;
10
11
  };
11
12
  export type AlertEmail = {
12
13
  to: string;
@@ -38,7 +39,8 @@ export type ListResponse_Alert = {
38
39
  uuid: string;
39
40
  accountId: number;
40
41
  applicationId?: number;
41
- meta: object;
42
+ meta?: object;
43
+ actionLink?: string;
42
44
  };
43
45
  export type ListResponse = {
44
46
  alerts: ListResponse_Alert[];