@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 +18 -0
- package/internal_alerts.d.ts +1 -0
- package/package.json +1 -1
- package/pushwoosh_accounts_alerts_v1.d.ts +4 -0
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": {}
|
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;
|