@pushwoosh/rpc-v2-http-api-data 0.1.750 → 0.1.752
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 +5 -8
- package/package.json +1 -1
- package/pushwoosh_accounts_alerts_v1.d.ts +3 -3
package/data.js
CHANGED
|
@@ -1196,8 +1196,7 @@ export const data = {
|
|
|
1196
1196
|
"values": [
|
|
1197
1197
|
"ALERT_TYPE_UNSPECIFIED",
|
|
1198
1198
|
"ALERT_TYPE_BLOCKING",
|
|
1199
|
-
"ALERT_TYPE_DISMISSABLE"
|
|
1200
|
-
"ALERT_TYPE_INBOX"
|
|
1199
|
+
"ALERT_TYPE_DISMISSABLE"
|
|
1201
1200
|
]
|
|
1202
1201
|
},
|
|
1203
1202
|
"pushwoosh.accounts.alerts.v1.AlertStatus": {
|
|
@@ -1212,18 +1211,16 @@ export const data = {
|
|
|
1212
1211
|
"type": "E",
|
|
1213
1212
|
"values": [
|
|
1214
1213
|
"ALERT_SEVERITY_UNSPECIFIED",
|
|
1215
|
-
"
|
|
1216
|
-
"
|
|
1217
|
-
"ALERT_SEVERITY_CRITICAL"
|
|
1218
|
-
"ALERT_SEVERITY_FATAL"
|
|
1214
|
+
"ALERT_SEVERITY_INFO",
|
|
1215
|
+
"ALERT_SEVERITY_WARNING",
|
|
1216
|
+
"ALERT_SEVERITY_CRITICAL"
|
|
1219
1217
|
]
|
|
1220
1218
|
},
|
|
1221
1219
|
"pushwoosh.accounts.alerts.v1.OrderBy": {
|
|
1222
1220
|
"type": "E",
|
|
1223
1221
|
"values": [
|
|
1224
1222
|
"ORDER_BY_CREATED",
|
|
1225
|
-
"ORDER_BY_SEVERITY"
|
|
1226
|
-
"ORDER_BY_EXPIRY"
|
|
1223
|
+
"ORDER_BY_SEVERITY"
|
|
1227
1224
|
]
|
|
1228
1225
|
},
|
|
1229
1226
|
"pushwoosh.accounts.alerts.v1.OrderDirection": {
|
package/package.json
CHANGED
|
@@ -11,10 +11,10 @@ export type AlertEmail = {
|
|
|
11
11
|
to: string;
|
|
12
12
|
template: string;
|
|
13
13
|
};
|
|
14
|
-
export type AlertType = 'ALERT_TYPE_UNSPECIFIED' | 'ALERT_TYPE_BLOCKING' | 'ALERT_TYPE_DISMISSABLE'
|
|
14
|
+
export type AlertType = 'ALERT_TYPE_UNSPECIFIED' | 'ALERT_TYPE_BLOCKING' | 'ALERT_TYPE_DISMISSABLE';
|
|
15
15
|
export type AlertStatus = 'ALERT_STATUS_UNSPECIFIED' | 'ALERT_STATUS_READ' | 'ALERT_STATUS_UNREAD';
|
|
16
|
-
export type AlertSeverity = 'ALERT_SEVERITY_UNSPECIFIED' | '
|
|
17
|
-
export type OrderBy = 'ORDER_BY_CREATED' | 'ORDER_BY_SEVERITY'
|
|
16
|
+
export type AlertSeverity = 'ALERT_SEVERITY_UNSPECIFIED' | 'ALERT_SEVERITY_INFO' | 'ALERT_SEVERITY_WARNING' | 'ALERT_SEVERITY_CRITICAL';
|
|
17
|
+
export type OrderBy = 'ORDER_BY_CREATED' | 'ORDER_BY_SEVERITY';
|
|
18
18
|
export type OrderDirection = 'ORDER_DIRECTION_DESC' | 'ORDER_DIRECTION_ASC';
|
|
19
19
|
export type ListRequest = {
|
|
20
20
|
type?: AlertType;
|