@influenzanet/case-web-app-core 2.9.9-staging → 2.9.11-staging
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/build/api/errorMessages.d.ts +1 -1
- package/build/index.es.js +265 -103
- package/build/index.es.js.map +1 -1
- package/build/index.js +265 -103
- package/build/index.js.map +1 -1
- package/package.json +3 -3
|
@@ -17,5 +17,5 @@ export declare const BACKEND_ERRORS: {
|
|
|
17
17
|
readonly RECIPIENT_NOT_ALLOWED: "phone number not enabled to receive WhatsApp messages";
|
|
18
18
|
};
|
|
19
19
|
export declare const logRequestFailure: (context: string, error: unknown) => void;
|
|
20
|
-
export declare type PhoneErrorKind = "rateLimited" | "recipientNotAllowed" | "invalidCode" | "codeExpired" | "tooManyAttempts" | "cooldown" | "noPendingVerification" | "unknown";
|
|
20
|
+
export declare type PhoneErrorKind = "rateLimited" | "recipientNotAllowed" | "invalidCode" | "codeExpired" | "tooManyAttempts" | "cooldown" | "noPendingVerification" | "sendFailed" | "alreadyVerified" | "noPhone" | "whatsAppUnavailable" | "unknown";
|
|
21
21
|
export declare const classifyPhoneError: (error: unknown) => PhoneErrorKind;
|