@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.
18 lines • 549 B
JavaScript
;
Object.defineProperty(exports, "__esModule", { value: true });
exports.Command = void 0;
/**
* Enum representing commands for controlling Verify requests.
*/
var Command;
(function (Command) {
/**
* Command to request cancellation of the verification process.
*/
Command["CANCEL"] = "cancel";
/**
* Command to trigger the next verification event (if any).
*/
Command["TRIGGER_NEXT_EVENT"] = "trigger_next_event";
})(Command || (exports.Command = Command = {}));
//# sourceMappingURL=Command.js.map