@pushwoosh/rpc-v2-http-api-data 0.1.631 → 0.1.632
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/applications_alerts.d.ts +1 -1
- package/data.js +3 -1
- package/package.json +1 -1
package/applications_alerts.d.ts
CHANGED
|
@@ -2,7 +2,7 @@ export interface ApplicationsAlertsService {
|
|
|
2
2
|
List(request: ListRequest): Promise<ListResponse>;
|
|
3
3
|
}
|
|
4
4
|
export type AlertType = 'INFO' | 'WARNING' | 'ERROR';
|
|
5
|
-
export type AlertError = 'ALERT_ERROR_UNSPECIFIED' | 'SUBSCRIBERS_QUOTA_ALMOST_REACHED' | 'EMAIL_QUOTA_ALMOST_REACHED' | 'EMAIL_QUOTA_REACHED' | 'SUSPENDED_ACCOUNT' | 'MANUALLY_SUSPENDED_ACCOUNT' | 'APPLE_CERTIFICATE_EXPIRED' | 'PAYMENT_FAILED' | 'PLATFORM_DISABLED' | 'PAYMENT_OVERDUE' | 'PAYMENT_ATTEMPT_FAILED' | 'EMAIL_CONFIGURATION_NOT_COMPLETED';
|
|
5
|
+
export type AlertError = 'ALERT_ERROR_UNSPECIFIED' | 'SUBSCRIBERS_QUOTA_ALMOST_REACHED' | 'EMAIL_QUOTA_ALMOST_REACHED' | 'EMAIL_QUOTA_REACHED' | 'SUSPENDED_ACCOUNT' | 'MANUALLY_SUSPENDED_ACCOUNT' | 'APPLE_CERTIFICATE_EXPIRED' | 'PAYMENT_FAILED' | 'PLATFORM_DISABLED' | 'PAYMENT_OVERDUE' | 'PAYMENT_ATTEMPT_FAILED' | 'EMAIL_CONFIGURATION_NOT_COMPLETED' | 'SDK_INTEGRATION' | 'THIRD_PARTY_INTEGRATION';
|
|
6
6
|
export type Alert = {
|
|
7
7
|
name: string;
|
|
8
8
|
description: string;
|
package/data.js
CHANGED
|
@@ -2167,7 +2167,9 @@ export const data = {
|
|
|
2167
2167
|
"PLATFORM_DISABLED",
|
|
2168
2168
|
"PAYMENT_OVERDUE",
|
|
2169
2169
|
"PAYMENT_ATTEMPT_FAILED",
|
|
2170
|
-
"EMAIL_CONFIGURATION_NOT_COMPLETED"
|
|
2170
|
+
"EMAIL_CONFIGURATION_NOT_COMPLETED",
|
|
2171
|
+
"SDK_INTEGRATION",
|
|
2172
|
+
"THIRD_PARTY_INTEGRATION"
|
|
2171
2173
|
]
|
|
2172
2174
|
},
|
|
2173
2175
|
"pushwoosh.rpc_v2.applications_alerts.Alert": {
|