@pushwoosh/rpc-v2-http-api-data 0.1.760 → 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": {}
@@ -27,6 +27,7 @@ export type Alert = {
27
27
  expiry?: Date;
28
28
  uuid: string;
29
29
  account: string;
30
+ application?: string;
30
31
  };
31
32
  export type ListResponse = {
32
33
  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.760",
3
+ "version": "0.1.761",
4
4
  "description": "RPC V2 HTTP API Types and Data",
5
5
  "main": "index.js",
6
6
  "module": "index.js",
@@ -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;