@vonage/verify
Version:
Verify API provides a choice of routes for sending a code to a user. You can use this to confirm a user's contact information, as a second factor when authenticating users, or for step-up authentication.
25 lines (23 loc) • 841 B
JavaScript
// lib/enums/CheckStatus.ts
var CheckStatus = /* @__PURE__ */ ((CheckStatus2) => {
CheckStatus2["SUCCESS"] = "0";
CheckStatus2["THROTTLED"] = "1";
CheckStatus2["MISSING_REQUIRED_PARAM"] = "2";
CheckStatus2["INVALID_PARAM"] = "3";
CheckStatus2["INVALID_CREDENTIALS"] = "4";
CheckStatus2["INTERNAL_ERROR"] = "5";
CheckStatus2["FAILED_TO_PROCESS"] = "6";
CheckStatus2["BARRED_API_KEY"] = "8";
CheckStatus2["PARTNER_QUOTA_EXCEEDED"] = "9";
CheckStatus2["CONCURRENT_VERIFICATIONS"] = "10";
CheckStatus2["UNSUPPORTED_NETWORK"] = "15";
CheckStatus2["CODE_MISMATCH"] = "16";
CheckStatus2["INVALID_CODE"] = "17";
CheckStatus2["DELIVERY_FAILED"] = "19";
CheckStatus2["PIN_NOT_SUPPORTED"] = "20";
CheckStatus2["NON_PERMITTED_DESTINATION"] = "29";
return CheckStatus2;
})(CheckStatus || {});
export {
CheckStatus
};