├── .circleci └── config.yml ├── .github ├── CODEOWNERS ├── ISSUE_TEMPLATE │ ├── bug_report.md │ └── feature_request.md └── PULL_REQUEST_TEMPLATE.md ├── .gitignore ├── .swiftlint.yml ├── AppSizer ├── AppSizer.xcodeproj │ ├── project.pbxproj │ ├── project.xcworkspace │ │ ├── contents.xcworkspacedata │ │ └── xcshareddata │ │ │ └── IDEWorkspaceChecks.plist │ └── xcshareddata │ │ └── xcschemes │ │ └── AppSizer.xcscheme └── AppSizer │ ├── AppDelegate.swift │ ├── Assets.xcassets │ ├── AppIcon.appiconset │ │ └── Contents.json │ └── Contents.json │ ├── Base.lproj │ ├── LaunchScreen.storyboard │ └── Main.storyboard │ ├── ExportOptions │ └── dev.plist │ ├── Info.plist │ └── ViewController.swift ├── CHANGELOG.md ├── CODE_OF_CONDUCT.md ├── CONTRIBUTING.md ├── DangerFile ├── Gemfile ├── Gemfile.lock ├── HostApp ├── AppDelegate.swift ├── Assets.xcassets │ ├── AppIcon.appiconset │ │ └── Contents.json │ └── Contents.json ├── Base.lproj │ ├── LaunchScreen.storyboard │ └── Main.storyboard ├── Info.plist └── ViewController.swift ├── LICENSE ├── Package.swift ├── README.md ├── Scripts ├── app-sizer.sh ├── bump-version.swift ├── certificate_setup.sh ├── change-base-url.swift ├── env.rb ├── env.sh ├── generate-docs.sh ├── generate-size-report.rb ├── run_tests.sh └── strip-frameworks.sh ├── TwilioVerify.podspec ├── TwilioVerify.xcworkspace ├── contents.xcworkspacedata └── xcshareddata │ └── IDEWorkspaceChecks.plist ├── TwilioVerifyDemo ├── TwilioVerifyDemo.xcodeproj │ ├── project.pbxproj │ ├── project.xcworkspace │ │ ├── contents.xcworkspacedata │ │ └── xcshareddata │ │ │ └── IDEWorkspaceChecks.plist │ └── xcshareddata │ │ └── xcschemes │ │ └── TwilioVerifyDemo.xcscheme ├── TwilioVerifyDemo │ ├── AccessToken │ │ ├── AccessTokenResponse.swift │ │ ├── AccessTokensAPI.swift │ │ └── EnrollmentAPI.swift │ ├── ChallengeDetail │ │ ├── Presenter │ │ │ └── ChallengeDetailPresenter.swift │ │ └── View │ │ │ └── ChallengeDetailViewController.swift │ ├── Common │ │ ├── AppDelegate.swift │ │ ├── AppModel.swift │ │ ├── Assets.xcassets │ │ │ ├── AppIcon.appiconset │ │ │ │ └── Contents.json │ │ │ └── Contents.json │ │ ├── Base.lproj │ │ │ └── LaunchScreen.storyboard │ │ ├── DIContainer.swift │ │ ├── Info.plist │ │ ├── PushChallengePayloadData.swift │ │ └── View │ │ │ └── Base.lproj │ │ │ └── Main.storyboard │ ├── CreateFactor │ │ ├── Presenter │ │ │ └── CreateFactorPresenter.swift │ │ └── View │ │ │ └── CreateFactorViewController.swift │ ├── Extensions │ │ ├── DateFormatter+Extensions.swift │ │ ├── UIColor+Extensions.swift │ │ └── UITextField+Extensions.swift │ ├── FactorDetail │ │ ├── Presenter │ │ │ └── FactorDetailPresenter.swift │ │ └── View │ │ │ ├── ChallengeTableViewCell.swift │ │ │ ├── ChallengeTableViewCell.xib │ │ │ └── FactorDetailViewController.swift │ ├── FactorList │ │ ├── Presenter │ │ │ └── FactorListPresenter.swift │ │ └── View │ │ │ ├── FactorListViewController.swift │ │ │ ├── FactorTableViewCell.swift │ │ │ └── FactorTableViewCell.xib │ ├── TwilioVerify │ │ └── TwilioVerifyAdapter.swift │ └── TwilioVerifyDemo.entitlements └── TwilioVerifyDemoTests │ ├── Info.plist │ └── TwilioVerifyDemoTests.swift ├── TwilioVerifySDK.xcodeproj ├── project.pbxproj ├── project.xcworkspace │ ├── contents.xcworkspacedata │ └── xcshareddata │ │ └── IDEWorkspaceChecks.plist └── xcshareddata │ └── xcschemes │ ├── HostApp.xcscheme │ ├── TwilioVerifySDK.xcscheme │ └── TwilioVerifySDKTests.xcscheme ├── TwilioVerifySDK ├── Info.plist ├── PrivacyInfo.xcprivacy ├── TwilioSecurity │ └── Sources │ │ ├── Key │ │ ├── KeyPair.swift │ │ ├── Signer │ │ │ └── ECSigner.swift │ │ └── Template │ │ │ ├── ECP256SignerTemplate.swift │ │ │ └── Template.swift │ │ ├── Keychain │ │ ├── KeyManager.swift │ │ ├── Keychain.swift │ │ └── KeychainQuery.swift │ │ └── Storage │ │ └── SecureStorage.swift └── TwilioVerify │ └── Sources │ ├── API │ ├── APIConstants.swift │ ├── BaseAPIClient.swift │ ├── ChallengeAPIClient.swift │ └── FactorAPIClient.swift │ ├── Data │ ├── DateProvider.swift │ ├── JWT │ │ ├── JwtGenerator.swift │ │ └── JwtSigner.swift │ ├── KeyStorage.swift │ ├── Migration.swift │ ├── Storage+AccessGroup.swift │ ├── Storage.swift │ └── StorageProvider.swift │ ├── Domain │ ├── Challenge │ │ ├── ChallengeFacade.swift │ │ ├── ChallengeListMapper.swift │ │ ├── ChallengeMapper.swift │ │ ├── ChallengeRepository.swift │ │ ├── Models │ │ │ ├── DTO │ │ │ │ ├── ChallengeDTO.swift │ │ │ │ └── ChallengeListDTO.swift │ │ │ └── FactorChallenge.swift │ │ └── PushChallengeProcessor.swift │ ├── Factor │ │ ├── FactorFacade.swift │ │ ├── FactorMapper.swift │ │ ├── FactorMigrations.swift │ │ ├── FactorRepository.swift │ │ ├── MapperError.swift │ │ ├── Models │ │ │ ├── DTOs │ │ │ │ └── PushFactorDTO.swift │ │ │ ├── FactorDataPayload.swift │ │ │ └── PushFactor.swift │ │ └── PushFactory.swift │ └── Manager │ │ ├── TwilioVerify.swift │ │ └── TwilioVerifyManager.swift │ ├── Errors │ ├── NetworkError.swift │ └── OperationErrors.swift │ ├── Extensions │ ├── DateFormatter+Extensions.swift │ └── StringInterpolation+Extensions.swift │ ├── Logger │ ├── DefaultLogger.swift │ ├── Logger.swift │ └── OSLogWrapper.swift │ ├── Models │ ├── Challenge.swift │ ├── ChallengeList.swift │ ├── ChallengeListPayload.swift │ ├── Factor.swift │ ├── FactorPayload.swift │ ├── Metadata.swift │ ├── UpdateChallengePayload.swift │ ├── UpdateFactorPayload.swift │ └── VerifyFactorPayload.swift │ ├── Networking │ ├── Authentication.swift │ ├── BasicAuthorization.swift │ ├── HTTPHeaders.swift │ ├── HTTPMethod.swift │ ├── MediaType.swift │ ├── NetworkAdapter.swift │ ├── NetworkProvider+Models.swift │ ├── Parameters.swift │ ├── RequestHelper.swift │ └── URLRequestBuilder.swift │ ├── TwilioVerifyConfig.swift │ ├── TwilioVerifyError.swift │ └── TwilioVerifySDK.h ├── TwilioVerifySDKTests ├── Error │ ├── EquatableError.swift │ └── TestError.swift ├── Info.plist ├── Plans │ ├── CompleteSuite.xctestplan │ └── IntegrationSuite.xctestplan ├── TwilioSecurity │ ├── KeyPair │ │ └── KeyPairFactory.swift │ └── Sources │ │ ├── Key │ │ ├── Signer │ │ │ └── ECSignerTests.swift │ │ └── Template │ │ │ └── ECP256SignerTemplateTests.swift │ │ ├── Keychain │ │ ├── KeyManagerTests.swift │ │ ├── KeychainQueryTests.swift │ │ ├── KeychainTests.swift │ │ └── Mocks │ │ │ ├── KeyManagerSecurityMock.swift │ │ │ └── KeychainMock.swift │ │ └── Storage │ │ └── SecureStorageTests.swift └── TwilioVerify │ └── Sources │ ├── API │ ├── ChallengeAPIClientTests.swift │ ├── FactorAPIClientTests.swift │ └── Mocks │ │ ├── AuthenticationMock.swift │ │ ├── ChallengeAPIClientMock.swift │ │ ├── FactorAPIClientMock.swift │ │ └── NetworkProviderMock.swift │ ├── Data │ ├── DateProviderTests.swift │ ├── JWT │ │ ├── JwtGeneratorTests.swift │ │ └── JwtSignerTests.swift │ ├── KeyStorageAdapterTests.swift │ ├── KeyStorageTests.swift │ ├── Mocks │ │ ├── JwtGeneratorMock.swift │ │ ├── JwtSignerMock.swift │ │ ├── KeyManagerMock.swift │ │ ├── KeyStorageMock.swift │ │ ├── MigrationMock.swift │ │ ├── SecureStorageMock.swift │ │ ├── SignerMock.swift │ │ ├── StorageProviderMock.swift │ │ └── UserDefaultsMock.swift │ ├── Storage+AccessGroupTests.swift │ └── StorageTests.swift │ ├── Domain │ ├── Challenge │ │ ├── ChallengeFacadeTests.swift │ │ ├── ChallengeListMapperTests.swift │ │ ├── ChallengeMapperTests.swift │ │ ├── ChallengeRepositoryTests.swift │ │ ├── Mocks │ │ │ ├── ChallengeListMapperMock.swift │ │ │ ├── ChallengeMapperMock.swift │ │ │ ├── ChallengeProviderMock.swift │ │ │ └── PushChallengeProcessorMock.swift │ │ └── PushChallengeProcessorTests.swift │ ├── Factor │ │ ├── FactorFacadeTests.swift │ │ ├── FactorMapperTests.swift │ │ ├── FactorRepositoryTests.swift │ │ ├── Mocks │ │ │ ├── FactorMapperMock.swift │ │ │ ├── FactorRepositoryMock.swift │ │ │ └── PushFactoryMock.swift │ │ └── PushFactoryTests.swift │ └── Manager │ │ ├── Mocks │ │ ├── ChallengeFacadeMock.swift │ │ └── FactorFacadeMock.swift │ │ └── TwilioVerifyManagerTests.swift │ ├── Integration │ ├── APIResponses │ │ ├── create_factor_valid_response.json │ │ ├── get_challenge_approved_valid_response.json │ │ ├── get_challenge_pending_valid_response.json │ │ ├── get_challenges_valid_response.json │ │ ├── invalid_response.json │ │ └── verify_factor_valid_response.json │ ├── BaseFactorTests.swift │ ├── CreateFactorTests.swift │ ├── DeleteFactorTests.swift │ ├── GetAllChallengesTests.swift │ ├── GetChallengeTests.swift │ ├── TwilioVerifyTests.swift │ ├── UpdateChallengeTests.swift │ ├── UpdateFactorTests.swift │ └── VerifyFactorTests.swift │ ├── Logger │ ├── DefaultLoggerTests.swift │ └── Mocks │ │ ├── LoggerServiceMock.swift │ │ ├── LoggerTests.swift │ │ └── OSLogWrapperMock.swift │ ├── Models │ └── Mocks │ │ ├── ChallengeMock.swift │ │ ├── FactorMock.swift │ │ └── FakeFactorPayload.swift │ └── Networking │ ├── AuthenticationProviderTests.swift │ ├── BasicAuthorizationTests.swift │ ├── HTTPHeadersTests.swift │ ├── Mocks │ ├── DateProviderMock.swift │ └── URLSessionMock.swift │ ├── NetworkAdapterTests.swift │ ├── NetworkErrorTests.swift │ ├── ParametersTests.swift │ ├── RequestHelperTests.swift │ └── URLRequestBuilderTests.swift ├── docs ├── 0.0.3 │ ├── Classes.html │ ├── Classes │ │ ├── TwilioVerifyBuilder.html │ │ └── TwilioVerifyManager.html │ ├── Enums.html │ ├── Enums │ │ ├── ChallengeStatus.html │ │ ├── FactorStatus.html │ │ ├── FactorType.html │ │ └── TwilioVerifyError.html │ ├── Protocols.html │ ├── Protocols │ │ ├── Challenge.html │ │ ├── ChallengeList.html │ │ ├── Factor.html │ │ ├── FactorPayload.html │ │ ├── Metadata.html │ │ ├── TwilioVerify.html │ │ ├── UpdateChallengePayload.html │ │ ├── UpdateFactorPayload.html │ │ └── VerifyFactorPayload.html │ ├── Structs.html │ ├── Structs │ │ ├── ChallengeDetails.html │ │ ├── ChallengeListPayload.html │ │ ├── Detail.html │ │ ├── PushFactorPayload.html │ │ ├── UpdatePushChallengePayload.html │ │ ├── UpdatePushFactorPayload.html │ │ └── VerifyPushFactorPayload.html │ ├── badge.svg │ ├── css │ │ ├── highlight.css │ │ └── jazzy.css │ ├── docsets │ │ ├── .docset │ │ │ └── Contents │ │ │ │ ├── Info.plist │ │ │ │ └── Resources │ │ │ │ ├── Documents │ │ │ │ ├── Classes.html │ │ │ │ ├── Classes │ │ │ │ │ ├── TwilioVerifyBuilder.html │ │ │ │ │ └── TwilioVerifyManager.html │ │ │ │ ├── Enums.html │ │ │ │ ├── Enums │ │ │ │ │ ├── ChallengeStatus.html │ │ │ │ │ ├── FactorStatus.html │ │ │ │ │ ├── FactorType.html │ │ │ │ │ └── TwilioVerifyError.html │ │ │ │ ├── Protocols.html │ │ │ │ ├── Protocols │ │ │ │ │ ├── Challenge.html │ │ │ │ │ ├── ChallengeList.html │ │ │ │ │ ├── Factor.html │ │ │ │ │ ├── FactorPayload.html │ │ │ │ │ ├── Metadata.html │ │ │ │ │ ├── TwilioVerify.html │ │ │ │ │ ├── UpdateChallengePayload.html │ │ │ │ │ ├── UpdateFactorPayload.html │ │ │ │ │ └── VerifyFactorPayload.html │ │ │ │ ├── Structs.html │ │ │ │ ├── Structs │ │ │ │ │ ├── ChallengeDetails.html │ │ │ │ │ ├── ChallengeListPayload.html │ │ │ │ │ ├── Detail.html │ │ │ │ │ ├── PushFactorPayload.html │ │ │ │ │ ├── UpdatePushChallengePayload.html │ │ │ │ │ ├── UpdatePushFactorPayload.html │ │ │ │ │ └── VerifyPushFactorPayload.html │ │ │ │ ├── badge.svg │ │ │ │ ├── css │ │ │ │ │ ├── highlight.css │ │ │ │ │ └── jazzy.css │ │ │ │ ├── img │ │ │ │ │ ├── carat.png │ │ │ │ │ ├── dash.png │ │ │ │ │ ├── gh.png │ │ │ │ │ └── spinner.gif │ │ │ │ ├── index.html │ │ │ │ ├── js │ │ │ │ │ ├── jazzy.js │ │ │ │ │ ├── jazzy.search.js │ │ │ │ │ ├── jquery.min.js │ │ │ │ │ ├── lunr.min.js │ │ │ │ │ └── typeahead.jquery.js │ │ │ │ ├── search.json │ │ │ │ └── undocumented.json │ │ │ │ └── docSet.dsidx │ │ └── .tgz │ ├── img │ │ ├── carat.png │ │ ├── dash.png │ │ ├── gh.png │ │ └── spinner.gif │ ├── index.html │ ├── js │ │ ├── jazzy.js │ │ ├── jazzy.search.js │ │ ├── jquery.min.js │ │ ├── lunr.min.js │ │ └── typeahead.jquery.js │ ├── search.json │ └── undocumented.json ├── 0.0.4 │ ├── Classes.html │ ├── Classes │ │ ├── TwilioVerifyBuilder.html │ │ └── TwilioVerifyManager.html │ ├── Enums.html │ ├── Enums │ │ ├── ChallengeStatus.html │ │ ├── FactorStatus.html │ │ ├── FactorType.html │ │ └── TwilioVerifyError.html │ ├── Protocols.html │ ├── Protocols │ │ ├── Challenge.html │ │ ├── ChallengeList.html │ │ ├── Factor.html │ │ ├── FactorPayload.html │ │ ├── Metadata.html │ │ ├── TwilioVerify.html │ │ ├── UpdateChallengePayload.html │ │ ├── UpdateFactorPayload.html │ │ └── VerifyFactorPayload.html │ ├── Structs.html │ ├── Structs │ │ ├── ChallengeDetails.html │ │ ├── ChallengeListPayload.html │ │ ├── Detail.html │ │ ├── PushFactorPayload.html │ │ ├── UpdatePushChallengePayload.html │ │ ├── UpdatePushFactorPayload.html │ │ └── VerifyPushFactorPayload.html │ ├── badge.svg │ ├── css │ │ ├── highlight.css │ │ └── jazzy.css │ ├── docsets │ │ ├── .docset │ │ │ └── Contents │ │ │ │ ├── Info.plist │ │ │ │ └── Resources │ │ │ │ ├── Documents │ │ │ │ ├── Classes.html │ │ │ │ ├── Classes │ │ │ │ │ ├── TwilioVerifyBuilder.html │ │ │ │ │ └── TwilioVerifyManager.html │ │ │ │ ├── Enums.html │ │ │ │ ├── Enums │ │ │ │ │ ├── ChallengeStatus.html │ │ │ │ │ ├── FactorStatus.html │ │ │ │ │ ├── FactorType.html │ │ │ │ │ └── TwilioVerifyError.html │ │ │ │ ├── Protocols.html │ │ │ │ ├── Protocols │ │ │ │ │ ├── Challenge.html │ │ │ │ │ ├── ChallengeList.html │ │ │ │ │ ├── Factor.html │ │ │ │ │ ├── FactorPayload.html │ │ │ │ │ ├── Metadata.html │ │ │ │ │ ├── TwilioVerify.html │ │ │ │ │ ├── UpdateChallengePayload.html │ │ │ │ │ ├── UpdateFactorPayload.html │ │ │ │ │ └── VerifyFactorPayload.html │ │ │ │ ├── Structs.html │ │ │ │ ├── Structs │ │ │ │ │ ├── ChallengeDetails.html │ │ │ │ │ ├── ChallengeListPayload.html │ │ │ │ │ ├── Detail.html │ │ │ │ │ ├── PushFactorPayload.html │ │ │ │ │ ├── UpdatePushChallengePayload.html │ │ │ │ │ ├── UpdatePushFactorPayload.html │ │ │ │ │ └── VerifyPushFactorPayload.html │ │ │ │ ├── css │ │ │ │ │ ├── highlight.css │ │ │ │ │ └── jazzy.css │ │ │ │ ├── img │ │ │ │ │ ├── carat.png │ │ │ │ │ ├── dash.png │ │ │ │ │ ├── gh.png │ │ │ │ │ └── spinner.gif │ │ │ │ ├── index.html │ │ │ │ ├── js │ │ │ │ │ ├── jazzy.js │ │ │ │ │ ├── jazzy.search.js │ │ │ │ │ ├── jquery.min.js │ │ │ │ │ ├── lunr.min.js │ │ │ │ │ └── typeahead.jquery.js │ │ │ │ └── search.json │ │ │ │ └── docSet.dsidx │ │ └── .tgz │ ├── img │ │ ├── carat.png │ │ ├── dash.png │ │ ├── gh.png │ │ └── spinner.gif │ ├── index.html │ ├── js │ │ ├── jazzy.js │ │ ├── jazzy.search.js │ │ ├── jquery.min.js │ │ ├── lunr.min.js │ │ └── typeahead.jquery.js │ ├── search.json │ └── undocumented.json ├── 0.1.0 │ ├── Classes.html │ ├── Classes │ │ ├── TwilioVerifyBuilder.html │ │ └── TwilioVerifyManager.html │ ├── Enums.html │ ├── Enums │ │ ├── ChallengeStatus.html │ │ ├── FactorStatus.html │ │ ├── FactorType.html │ │ └── TwilioVerifyError.html │ ├── Protocols.html │ ├── Protocols │ │ ├── Challenge.html │ │ ├── ChallengeList.html │ │ ├── Factor.html │ │ ├── FactorPayload.html │ │ ├── Metadata.html │ │ ├── TwilioVerify.html │ │ ├── UpdateChallengePayload.html │ │ ├── UpdateFactorPayload.html │ │ └── VerifyFactorPayload.html │ ├── Structs.html │ ├── Structs │ │ ├── ChallengeDetails.html │ │ ├── ChallengeListPayload.html │ │ ├── Detail.html │ │ ├── PushFactorPayload.html │ │ ├── UpdatePushChallengePayload.html │ │ ├── UpdatePushFactorPayload.html │ │ └── VerifyPushFactorPayload.html │ ├── badge.svg │ ├── css │ │ ├── highlight.css │ │ └── jazzy.css │ ├── docsets │ │ ├── TwilioVerify.docset │ │ │ └── Contents │ │ │ │ ├── Info.plist │ │ │ │ └── Resources │ │ │ │ ├── Documents │ │ │ │ ├── Classes.html │ │ │ │ ├── Classes │ │ │ │ │ ├── TwilioVerifyBuilder.html │ │ │ │ │ └── TwilioVerifyManager.html │ │ │ │ ├── Enums.html │ │ │ │ ├── Enums │ │ │ │ │ ├── ChallengeStatus.html │ │ │ │ │ ├── FactorStatus.html │ │ │ │ │ ├── FactorType.html │ │ │ │ │ └── TwilioVerifyError.html │ │ │ │ ├── Protocols.html │ │ │ │ ├── Protocols │ │ │ │ │ ├── Challenge.html │ │ │ │ │ ├── ChallengeList.html │ │ │ │ │ ├── Factor.html │ │ │ │ │ ├── FactorPayload.html │ │ │ │ │ ├── Metadata.html │ │ │ │ │ ├── TwilioVerify.html │ │ │ │ │ ├── UpdateChallengePayload.html │ │ │ │ │ ├── UpdateFactorPayload.html │ │ │ │ │ └── VerifyFactorPayload.html │ │ │ │ ├── Structs.html │ │ │ │ ├── Structs │ │ │ │ │ ├── ChallengeDetails.html │ │ │ │ │ ├── ChallengeListPayload.html │ │ │ │ │ ├── Detail.html │ │ │ │ │ ├── PushFactorPayload.html │ │ │ │ │ ├── UpdatePushChallengePayload.html │ │ │ │ │ ├── UpdatePushFactorPayload.html │ │ │ │ │ └── VerifyPushFactorPayload.html │ │ │ │ ├── css │ │ │ │ │ ├── highlight.css │ │ │ │ │ └── jazzy.css │ │ │ │ ├── img │ │ │ │ │ ├── carat.png │ │ │ │ │ ├── dash.png │ │ │ │ │ ├── gh.png │ │ │ │ │ └── spinner.gif │ │ │ │ ├── index.html │ │ │ │ ├── js │ │ │ │ │ ├── jazzy.js │ │ │ │ │ ├── jazzy.search.js │ │ │ │ │ ├── jquery.min.js │ │ │ │ │ ├── lunr.min.js │ │ │ │ │ └── typeahead.jquery.js │ │ │ │ └── search.json │ │ │ │ └── docSet.dsidx │ │ └── TwilioVerify.tgz │ ├── img │ │ ├── carat.png │ │ ├── dash.png │ │ ├── gh.png │ │ └── spinner.gif │ ├── index.html │ ├── js │ │ ├── jazzy.js │ │ ├── jazzy.search.js │ │ ├── jquery.min.js │ │ ├── lunr.min.js │ │ └── typeahead.jquery.js │ ├── search.json │ └── undocumented.json ├── 0.1.1 │ ├── Classes.html │ ├── Classes │ │ ├── TwilioVerifyBuilder.html │ │ └── TwilioVerifyManager.html │ ├── Enums.html │ ├── Enums │ │ ├── ChallengeStatus.html │ │ ├── FactorStatus.html │ │ ├── FactorType.html │ │ └── TwilioVerifyError.html │ ├── Protocols.html │ ├── Protocols │ │ ├── Challenge.html │ │ ├── ChallengeList.html │ │ ├── Factor.html │ │ ├── FactorPayload.html │ │ ├── Metadata.html │ │ ├── TwilioVerify.html │ │ ├── UpdateChallengePayload.html │ │ ├── UpdateFactorPayload.html │ │ └── VerifyFactorPayload.html │ ├── Structs.html │ ├── Structs │ │ ├── ChallengeDetails.html │ │ ├── ChallengeListPayload.html │ │ ├── Detail.html │ │ ├── PushFactorPayload.html │ │ ├── UpdatePushChallengePayload.html │ │ ├── UpdatePushFactorPayload.html │ │ └── VerifyPushFactorPayload.html │ ├── badge.svg │ ├── css │ │ ├── highlight.css │ │ └── jazzy.css │ ├── docsets │ │ ├── TwilioVerify.docset │ │ │ └── Contents │ │ │ │ ├── Info.plist │ │ │ │ └── Resources │ │ │ │ ├── Documents │ │ │ │ ├── Classes.html │ │ │ │ ├── Classes │ │ │ │ │ ├── TwilioVerifyBuilder.html │ │ │ │ │ └── TwilioVerifyManager.html │ │ │ │ ├── Enums.html │ │ │ │ ├── Enums │ │ │ │ │ ├── ChallengeStatus.html │ │ │ │ │ ├── FactorStatus.html │ │ │ │ │ ├── FactorType.html │ │ │ │ │ └── TwilioVerifyError.html │ │ │ │ ├── Protocols.html │ │ │ │ ├── Protocols │ │ │ │ │ ├── Challenge.html │ │ │ │ │ ├── ChallengeList.html │ │ │ │ │ ├── Factor.html │ │ │ │ │ ├── FactorPayload.html │ │ │ │ │ ├── Metadata.html │ │ │ │ │ ├── TwilioVerify.html │ │ │ │ │ ├── UpdateChallengePayload.html │ │ │ │ │ ├── UpdateFactorPayload.html │ │ │ │ │ └── VerifyFactorPayload.html │ │ │ │ ├── Structs.html │ │ │ │ ├── Structs │ │ │ │ │ ├── ChallengeDetails.html │ │ │ │ │ ├── ChallengeListPayload.html │ │ │ │ │ ├── Detail.html │ │ │ │ │ ├── PushFactorPayload.html │ │ │ │ │ ├── UpdatePushChallengePayload.html │ │ │ │ │ ├── UpdatePushFactorPayload.html │ │ │ │ │ └── VerifyPushFactorPayload.html │ │ │ │ ├── css │ │ │ │ │ ├── highlight.css │ │ │ │ │ └── jazzy.css │ │ │ │ ├── img │ │ │ │ │ ├── carat.png │ │ │ │ │ ├── dash.png │ │ │ │ │ ├── gh.png │ │ │ │ │ └── spinner.gif │ │ │ │ ├── index.html │ │ │ │ ├── js │ │ │ │ │ ├── jazzy.js │ │ │ │ │ ├── jazzy.search.js │ │ │ │ │ ├── jquery.min.js │ │ │ │ │ ├── lunr.min.js │ │ │ │ │ └── typeahead.jquery.js │ │ │ │ └── search.json │ │ │ │ └── docSet.dsidx │ │ └── TwilioVerify.tgz │ ├── img │ │ ├── carat.png │ │ ├── dash.png │ │ ├── gh.png │ │ └── spinner.gif │ ├── index.html │ ├── js │ │ ├── jazzy.js │ │ ├── jazzy.search.js │ │ ├── jquery.min.js │ │ ├── lunr.min.js │ │ └── typeahead.jquery.js │ ├── search.json │ └── undocumented.json ├── 0.2.0 │ ├── Classes.html │ ├── Classes │ │ ├── TwilioVerifyBuilder.html │ │ └── TwilioVerifyManager.html │ ├── Enums.html │ ├── Enums │ │ ├── ChallengeStatus.html │ │ ├── FactorStatus.html │ │ ├── FactorType.html │ │ └── TwilioVerifyError.html │ ├── Protocols.html │ ├── Protocols │ │ ├── Challenge.html │ │ ├── ChallengeList.html │ │ ├── Factor.html │ │ ├── FactorPayload.html │ │ ├── Metadata.html │ │ ├── TwilioVerify.html │ │ ├── UpdateChallengePayload.html │ │ ├── UpdateFactorPayload.html │ │ └── VerifyFactorPayload.html │ ├── Structs.html │ ├── Structs │ │ ├── ChallengeDetails.html │ │ ├── ChallengeListPayload.html │ │ ├── Detail.html │ │ ├── PushFactorPayload.html │ │ ├── UpdatePushChallengePayload.html │ │ ├── UpdatePushFactorPayload.html │ │ └── VerifyPushFactorPayload.html │ ├── badge.svg │ ├── css │ │ ├── highlight.css │ │ └── jazzy.css │ ├── docsets │ │ ├── TwilioVerify.docset │ │ │ └── Contents │ │ │ │ ├── Info.plist │ │ │ │ └── Resources │ │ │ │ ├── Documents │ │ │ │ ├── Classes.html │ │ │ │ ├── Classes │ │ │ │ │ ├── TwilioVerifyBuilder.html │ │ │ │ │ └── TwilioVerifyManager.html │ │ │ │ ├── Enums.html │ │ │ │ ├── Enums │ │ │ │ │ ├── ChallengeStatus.html │ │ │ │ │ ├── FactorStatus.html │ │ │ │ │ ├── FactorType.html │ │ │ │ │ └── TwilioVerifyError.html │ │ │ │ ├── Protocols.html │ │ │ │ ├── Protocols │ │ │ │ │ ├── Challenge.html │ │ │ │ │ ├── ChallengeList.html │ │ │ │ │ ├── Factor.html │ │ │ │ │ ├── FactorPayload.html │ │ │ │ │ ├── Metadata.html │ │ │ │ │ ├── TwilioVerify.html │ │ │ │ │ ├── UpdateChallengePayload.html │ │ │ │ │ ├── UpdateFactorPayload.html │ │ │ │ │ └── VerifyFactorPayload.html │ │ │ │ ├── Structs.html │ │ │ │ ├── Structs │ │ │ │ │ ├── ChallengeDetails.html │ │ │ │ │ ├── ChallengeListPayload.html │ │ │ │ │ ├── Detail.html │ │ │ │ │ ├── PushFactorPayload.html │ │ │ │ │ ├── UpdatePushChallengePayload.html │ │ │ │ │ ├── UpdatePushFactorPayload.html │ │ │ │ │ └── VerifyPushFactorPayload.html │ │ │ │ ├── css │ │ │ │ │ ├── highlight.css │ │ │ │ │ └── jazzy.css │ │ │ │ ├── img │ │ │ │ │ ├── carat.png │ │ │ │ │ ├── dash.png │ │ │ │ │ ├── gh.png │ │ │ │ │ └── spinner.gif │ │ │ │ ├── index.html │ │ │ │ ├── js │ │ │ │ │ ├── jazzy.js │ │ │ │ │ ├── jazzy.search.js │ │ │ │ │ ├── jquery.min.js │ │ │ │ │ ├── lunr.min.js │ │ │ │ │ └── typeahead.jquery.js │ │ │ │ └── search.json │ │ │ │ └── docSet.dsidx │ │ └── TwilioVerify.tgz │ ├── img │ │ ├── carat.png │ │ ├── dash.png │ │ ├── gh.png │ │ └── spinner.gif │ ├── index.html │ ├── js │ │ ├── jazzy.js │ │ ├── jazzy.search.js │ │ ├── jquery.min.js │ │ ├── lunr.min.js │ │ └── typeahead.jquery.js │ ├── search.json │ └── undocumented.json ├── 0.3.0 │ ├── Classes.html │ ├── Classes │ │ ├── TwilioVerifyBuilder.html │ │ └── TwilioVerifyManager.html │ ├── Enums.html │ ├── Enums │ │ ├── ChallengeStatus.html │ │ ├── FactorStatus.html │ │ ├── FactorType.html │ │ └── TwilioVerifyError.html │ ├── Protocols.html │ ├── Protocols │ │ ├── Challenge.html │ │ ├── ChallengeList.html │ │ ├── Factor.html │ │ ├── FactorPayload.html │ │ ├── Metadata.html │ │ ├── TwilioVerify.html │ │ ├── UpdateChallengePayload.html │ │ ├── UpdateFactorPayload.html │ │ └── VerifyFactorPayload.html │ ├── Structs.html │ ├── Structs │ │ ├── ChallengeDetails.html │ │ ├── ChallengeListPayload.html │ │ ├── Detail.html │ │ ├── PushFactorPayload.html │ │ ├── UpdatePushChallengePayload.html │ │ ├── UpdatePushFactorPayload.html │ │ └── VerifyPushFactorPayload.html │ ├── badge.svg │ ├── css │ │ ├── highlight.css │ │ └── jazzy.css │ ├── docsets │ │ ├── TwilioVerify.docset │ │ │ └── Contents │ │ │ │ ├── Info.plist │ │ │ │ └── Resources │ │ │ │ ├── Documents │ │ │ │ ├── Classes.html │ │ │ │ ├── Classes │ │ │ │ │ ├── TwilioVerifyBuilder.html │ │ │ │ │ └── TwilioVerifyManager.html │ │ │ │ ├── Enums.html │ │ │ │ ├── Enums │ │ │ │ │ ├── ChallengeStatus.html │ │ │ │ │ ├── FactorStatus.html │ │ │ │ │ ├── FactorType.html │ │ │ │ │ └── TwilioVerifyError.html │ │ │ │ ├── Protocols.html │ │ │ │ ├── Protocols │ │ │ │ │ ├── Challenge.html │ │ │ │ │ ├── ChallengeList.html │ │ │ │ │ ├── Factor.html │ │ │ │ │ ├── FactorPayload.html │ │ │ │ │ ├── Metadata.html │ │ │ │ │ ├── TwilioVerify.html │ │ │ │ │ ├── UpdateChallengePayload.html │ │ │ │ │ ├── UpdateFactorPayload.html │ │ │ │ │ └── VerifyFactorPayload.html │ │ │ │ ├── Structs.html │ │ │ │ ├── Structs │ │ │ │ │ ├── ChallengeDetails.html │ │ │ │ │ ├── ChallengeListPayload.html │ │ │ │ │ ├── Detail.html │ │ │ │ │ ├── PushFactorPayload.html │ │ │ │ │ ├── UpdatePushChallengePayload.html │ │ │ │ │ ├── UpdatePushFactorPayload.html │ │ │ │ │ └── VerifyPushFactorPayload.html │ │ │ │ ├── css │ │ │ │ │ ├── highlight.css │ │ │ │ │ └── jazzy.css │ │ │ │ ├── img │ │ │ │ │ ├── carat.png │ │ │ │ │ ├── dash.png │ │ │ │ │ ├── gh.png │ │ │ │ │ └── spinner.gif │ │ │ │ ├── index.html │ │ │ │ ├── js │ │ │ │ │ ├── jazzy.js │ │ │ │ │ ├── jazzy.search.js │ │ │ │ │ ├── jquery.min.js │ │ │ │ │ ├── lunr.min.js │ │ │ │ │ └── typeahead.jquery.js │ │ │ │ └── search.json │ │ │ │ └── docSet.dsidx │ │ └── TwilioVerify.tgz │ ├── img │ │ ├── carat.png │ │ ├── dash.png │ │ ├── gh.png │ │ └── spinner.gif │ ├── index.html │ ├── js │ │ ├── jazzy.js │ │ ├── jazzy.search.js │ │ ├── jquery.min.js │ │ ├── lunr.min.js │ │ └── typeahead.jquery.js │ ├── search.json │ └── undocumented.json ├── 0.3.1 │ ├── Classes.html │ ├── Classes │ │ ├── TwilioVerifyBuilder.html │ │ └── TwilioVerifyManager.html │ ├── Enums.html │ ├── Enums │ │ ├── ChallengeStatus.html │ │ ├── FactorStatus.html │ │ ├── FactorType.html │ │ └── TwilioVerifyError.html │ ├── Protocols.html │ ├── Protocols │ │ ├── Challenge.html │ │ ├── ChallengeList.html │ │ ├── Factor.html │ │ ├── FactorPayload.html │ │ ├── Metadata.html │ │ ├── TwilioVerify.html │ │ ├── UpdateChallengePayload.html │ │ ├── UpdateFactorPayload.html │ │ └── VerifyFactorPayload.html │ ├── Structs.html │ ├── Structs │ │ ├── ChallengeDetails.html │ │ ├── ChallengeListPayload.html │ │ ├── Detail.html │ │ ├── PushFactorPayload.html │ │ ├── UpdatePushChallengePayload.html │ │ ├── UpdatePushFactorPayload.html │ │ └── VerifyPushFactorPayload.html │ ├── badge.svg │ ├── css │ │ ├── highlight.css │ │ └── jazzy.css │ ├── docsets │ │ ├── TwilioVerify.docset │ │ │ └── Contents │ │ │ │ ├── Info.plist │ │ │ │ └── Resources │ │ │ │ ├── Documents │ │ │ │ ├── Classes.html │ │ │ │ ├── Classes │ │ │ │ │ ├── TwilioVerifyBuilder.html │ │ │ │ │ └── TwilioVerifyManager.html │ │ │ │ ├── Enums.html │ │ │ │ ├── Enums │ │ │ │ │ ├── ChallengeStatus.html │ │ │ │ │ ├── FactorStatus.html │ │ │ │ │ ├── FactorType.html │ │ │ │ │ └── TwilioVerifyError.html │ │ │ │ ├── Protocols.html │ │ │ │ ├── Protocols │ │ │ │ │ ├── Challenge.html │ │ │ │ │ ├── ChallengeList.html │ │ │ │ │ ├── Factor.html │ │ │ │ │ ├── FactorPayload.html │ │ │ │ │ ├── Metadata.html │ │ │ │ │ ├── TwilioVerify.html │ │ │ │ │ ├── UpdateChallengePayload.html │ │ │ │ │ ├── UpdateFactorPayload.html │ │ │ │ │ └── VerifyFactorPayload.html │ │ │ │ ├── Structs.html │ │ │ │ ├── Structs │ │ │ │ │ ├── ChallengeDetails.html │ │ │ │ │ ├── ChallengeListPayload.html │ │ │ │ │ ├── Detail.html │ │ │ │ │ ├── PushFactorPayload.html │ │ │ │ │ ├── UpdatePushChallengePayload.html │ │ │ │ │ ├── UpdatePushFactorPayload.html │ │ │ │ │ └── VerifyPushFactorPayload.html │ │ │ │ ├── css │ │ │ │ │ ├── highlight.css │ │ │ │ │ └── jazzy.css │ │ │ │ ├── img │ │ │ │ │ ├── carat.png │ │ │ │ │ ├── dash.png │ │ │ │ │ ├── gh.png │ │ │ │ │ └── spinner.gif │ │ │ │ ├── index.html │ │ │ │ ├── js │ │ │ │ │ ├── jazzy.js │ │ │ │ │ ├── jazzy.search.js │ │ │ │ │ ├── jquery.min.js │ │ │ │ │ ├── lunr.min.js │ │ │ │ │ └── typeahead.jquery.js │ │ │ │ └── search.json │ │ │ │ └── docSet.dsidx │ │ └── TwilioVerify.tgz │ ├── img │ │ ├── carat.png │ │ ├── dash.png │ │ ├── gh.png │ │ └── spinner.gif │ ├── index.html │ ├── js │ │ ├── jazzy.js │ │ ├── jazzy.search.js │ │ ├── jquery.min.js │ │ ├── lunr.min.js │ │ └── typeahead.jquery.js │ ├── search.json │ └── undocumented.json ├── 0.3.2 │ ├── Classes.html │ ├── Classes │ │ ├── TwilioVerifyBuilder.html │ │ └── TwilioVerifyManager.html │ ├── Enums.html │ ├── Enums │ │ ├── ChallengeStatus.html │ │ ├── FactorStatus.html │ │ ├── FactorType.html │ │ └── TwilioVerifyError.html │ ├── Protocols.html │ ├── Protocols │ │ ├── Challenge.html │ │ ├── ChallengeList.html │ │ ├── Factor.html │ │ ├── FactorPayload.html │ │ ├── Metadata.html │ │ ├── TwilioVerify.html │ │ ├── UpdateChallengePayload.html │ │ ├── UpdateFactorPayload.html │ │ └── VerifyFactorPayload.html │ ├── Structs.html │ ├── Structs │ │ ├── ChallengeDetails.html │ │ ├── ChallengeListPayload.html │ │ ├── Detail.html │ │ ├── PushFactorPayload.html │ │ ├── UpdatePushChallengePayload.html │ │ ├── UpdatePushFactorPayload.html │ │ └── VerifyPushFactorPayload.html │ ├── badge.svg │ ├── css │ │ ├── highlight.css │ │ └── jazzy.css │ ├── docsets │ │ ├── TwilioVerify.docset │ │ │ └── Contents │ │ │ │ ├── Info.plist │ │ │ │ └── Resources │ │ │ │ ├── Documents │ │ │ │ ├── Classes.html │ │ │ │ ├── Classes │ │ │ │ │ ├── TwilioVerifyBuilder.html │ │ │ │ │ └── TwilioVerifyManager.html │ │ │ │ ├── Enums.html │ │ │ │ ├── Enums │ │ │ │ │ ├── ChallengeStatus.html │ │ │ │ │ ├── FactorStatus.html │ │ │ │ │ ├── FactorType.html │ │ │ │ │ └── TwilioVerifyError.html │ │ │ │ ├── Protocols.html │ │ │ │ ├── Protocols │ │ │ │ │ ├── Challenge.html │ │ │ │ │ ├── ChallengeList.html │ │ │ │ │ ├── Factor.html │ │ │ │ │ ├── FactorPayload.html │ │ │ │ │ ├── Metadata.html │ │ │ │ │ ├── TwilioVerify.html │ │ │ │ │ ├── UpdateChallengePayload.html │ │ │ │ │ ├── UpdateFactorPayload.html │ │ │ │ │ └── VerifyFactorPayload.html │ │ │ │ ├── Structs.html │ │ │ │ ├── Structs │ │ │ │ │ ├── ChallengeDetails.html │ │ │ │ │ ├── ChallengeListPayload.html │ │ │ │ │ ├── Detail.html │ │ │ │ │ ├── PushFactorPayload.html │ │ │ │ │ ├── UpdatePushChallengePayload.html │ │ │ │ │ ├── UpdatePushFactorPayload.html │ │ │ │ │ └── VerifyPushFactorPayload.html │ │ │ │ ├── css │ │ │ │ │ ├── highlight.css │ │ │ │ │ └── jazzy.css │ │ │ │ ├── img │ │ │ │ │ ├── carat.png │ │ │ │ │ ├── dash.png │ │ │ │ │ ├── gh.png │ │ │ │ │ └── spinner.gif │ │ │ │ ├── index.html │ │ │ │ ├── js │ │ │ │ │ ├── jazzy.js │ │ │ │ │ ├── jazzy.search.js │ │ │ │ │ ├── jquery.min.js │ │ │ │ │ ├── lunr.min.js │ │ │ │ │ └── typeahead.jquery.js │ │ │ │ └── search.json │ │ │ │ └── docSet.dsidx │ │ └── TwilioVerify.tgz │ ├── img │ │ ├── carat.png │ │ ├── dash.png │ │ ├── gh.png │ │ └── spinner.gif │ ├── index.html │ ├── js │ │ ├── jazzy.js │ │ ├── jazzy.search.js │ │ ├── jquery.min.js │ │ ├── lunr.min.js │ │ └── typeahead.jquery.js │ ├── search.json │ └── undocumented.json ├── 0.4.0 │ ├── Classes.html │ ├── Classes │ │ ├── TwilioVerifyBuilder.html │ │ └── TwilioVerifyManager.html │ ├── Enums.html │ ├── Enums │ │ ├── ChallengeStatus.html │ │ ├── FactorStatus.html │ │ ├── FactorType.html │ │ ├── LogLevel.html │ │ └── TwilioVerifyError.html │ ├── Protocols.html │ ├── Protocols │ │ ├── Challenge.html │ │ ├── ChallengeList.html │ │ ├── Factor.html │ │ ├── FactorPayload.html │ │ ├── LoggerService.html │ │ ├── Metadata.html │ │ ├── TwilioVerify.html │ │ ├── UpdateChallengePayload.html │ │ ├── UpdateFactorPayload.html │ │ └── VerifyFactorPayload.html │ ├── Structs.html │ ├── Structs │ │ ├── ChallengeDetails.html │ │ ├── ChallengeListPayload.html │ │ ├── Detail.html │ │ ├── PushFactorPayload.html │ │ ├── UpdatePushChallengePayload.html │ │ ├── UpdatePushFactorPayload.html │ │ └── VerifyPushFactorPayload.html │ ├── badge.svg │ ├── css │ │ ├── highlight.css │ │ └── jazzy.css │ ├── docsets │ │ ├── TwilioVerify.docset │ │ │ └── Contents │ │ │ │ ├── Info.plist │ │ │ │ └── Resources │ │ │ │ ├── Documents │ │ │ │ ├── Classes.html │ │ │ │ ├── Classes │ │ │ │ │ ├── TwilioVerifyBuilder.html │ │ │ │ │ └── TwilioVerifyManager.html │ │ │ │ ├── Enums.html │ │ │ │ ├── Enums │ │ │ │ │ ├── ChallengeStatus.html │ │ │ │ │ ├── FactorStatus.html │ │ │ │ │ ├── FactorType.html │ │ │ │ │ ├── LogLevel.html │ │ │ │ │ └── TwilioVerifyError.html │ │ │ │ ├── Protocols.html │ │ │ │ ├── Protocols │ │ │ │ │ ├── Challenge.html │ │ │ │ │ ├── ChallengeList.html │ │ │ │ │ ├── Factor.html │ │ │ │ │ ├── FactorPayload.html │ │ │ │ │ ├── LoggerService.html │ │ │ │ │ ├── Metadata.html │ │ │ │ │ ├── TwilioVerify.html │ │ │ │ │ ├── UpdateChallengePayload.html │ │ │ │ │ ├── UpdateFactorPayload.html │ │ │ │ │ └── VerifyFactorPayload.html │ │ │ │ ├── Structs.html │ │ │ │ ├── Structs │ │ │ │ │ ├── ChallengeDetails.html │ │ │ │ │ ├── ChallengeListPayload.html │ │ │ │ │ ├── Detail.html │ │ │ │ │ ├── PushFactorPayload.html │ │ │ │ │ ├── UpdatePushChallengePayload.html │ │ │ │ │ ├── UpdatePushFactorPayload.html │ │ │ │ │ └── VerifyPushFactorPayload.html │ │ │ │ ├── css │ │ │ │ │ ├── highlight.css │ │ │ │ │ └── jazzy.css │ │ │ │ ├── img │ │ │ │ │ ├── carat.png │ │ │ │ │ ├── dash.png │ │ │ │ │ ├── gh.png │ │ │ │ │ └── spinner.gif │ │ │ │ ├── index.html │ │ │ │ ├── js │ │ │ │ │ ├── jazzy.js │ │ │ │ │ ├── jazzy.search.js │ │ │ │ │ ├── jquery.min.js │ │ │ │ │ ├── lunr.min.js │ │ │ │ │ └── typeahead.jquery.js │ │ │ │ └── search.json │ │ │ │ └── docSet.dsidx │ │ └── TwilioVerify.tgz │ ├── img │ │ ├── carat.png │ │ ├── dash.png │ │ ├── gh.png │ │ └── spinner.gif │ ├── index.html │ ├── js │ │ ├── jazzy.js │ │ ├── jazzy.search.js │ │ ├── jquery.min.js │ │ ├── lunr.min.js │ │ └── typeahead.jquery.js │ ├── search.json │ └── undocumented.json ├── 1.0.0 │ ├── Classes.html │ ├── Classes │ │ ├── TwilioVerifyBuilder.html │ │ └── TwilioVerifyManager.html │ ├── Enums.html │ ├── Enums │ │ ├── ChallengeStatus.html │ │ ├── FactorStatus.html │ │ ├── FactorType.html │ │ ├── LogLevel.html │ │ └── TwilioVerifyError.html │ ├── Protocols.html │ ├── Protocols │ │ ├── Challenge.html │ │ ├── ChallengeList.html │ │ ├── Factor.html │ │ ├── FactorPayload.html │ │ ├── LoggerService.html │ │ ├── Metadata.html │ │ ├── NetworkProvider.html │ │ ├── TwilioVerify.html │ │ ├── UpdateChallengePayload.html │ │ ├── UpdateFactorPayload.html │ │ └── VerifyFactorPayload.html │ ├── Structs.html │ ├── Structs │ │ ├── ChallengeDetails.html │ │ ├── ChallengeListPayload.html │ │ ├── Detail.html │ │ ├── PushFactorPayload.html │ │ ├── UpdatePushChallengePayload.html │ │ ├── UpdatePushFactorPayload.html │ │ └── VerifyPushFactorPayload.html │ ├── Typealiases.html │ ├── badge.svg │ ├── css │ │ ├── highlight.css │ │ └── jazzy.css │ ├── docsets │ │ ├── TwilioVerifySDK.docset │ │ │ └── Contents │ │ │ │ ├── Info.plist │ │ │ │ └── Resources │ │ │ │ ├── Documents │ │ │ │ ├── Classes.html │ │ │ │ ├── Classes │ │ │ │ │ ├── TwilioVerifyBuilder.html │ │ │ │ │ └── TwilioVerifyManager.html │ │ │ │ ├── Enums.html │ │ │ │ ├── Enums │ │ │ │ │ ├── ChallengeStatus.html │ │ │ │ │ ├── FactorStatus.html │ │ │ │ │ ├── FactorType.html │ │ │ │ │ ├── LogLevel.html │ │ │ │ │ └── TwilioVerifyError.html │ │ │ │ ├── Protocols.html │ │ │ │ ├── Protocols │ │ │ │ │ ├── Challenge.html │ │ │ │ │ ├── ChallengeList.html │ │ │ │ │ ├── Factor.html │ │ │ │ │ ├── FactorPayload.html │ │ │ │ │ ├── LoggerService.html │ │ │ │ │ ├── Metadata.html │ │ │ │ │ ├── NetworkProvider.html │ │ │ │ │ ├── TwilioVerify.html │ │ │ │ │ ├── UpdateChallengePayload.html │ │ │ │ │ ├── UpdateFactorPayload.html │ │ │ │ │ └── VerifyFactorPayload.html │ │ │ │ ├── Structs.html │ │ │ │ ├── Structs │ │ │ │ │ ├── ChallengeDetails.html │ │ │ │ │ ├── ChallengeListPayload.html │ │ │ │ │ ├── Detail.html │ │ │ │ │ ├── PushFactorPayload.html │ │ │ │ │ ├── UpdatePushChallengePayload.html │ │ │ │ │ ├── UpdatePushFactorPayload.html │ │ │ │ │ └── VerifyPushFactorPayload.html │ │ │ │ ├── Typealiases.html │ │ │ │ ├── badge.svg │ │ │ │ ├── css │ │ │ │ │ ├── highlight.css │ │ │ │ │ └── jazzy.css │ │ │ │ ├── img │ │ │ │ │ ├── carat.png │ │ │ │ │ ├── dash.png │ │ │ │ │ ├── gh.png │ │ │ │ │ └── spinner.gif │ │ │ │ ├── index.html │ │ │ │ ├── js │ │ │ │ │ ├── jazzy.js │ │ │ │ │ ├── jazzy.search.js │ │ │ │ │ ├── jquery.min.js │ │ │ │ │ ├── lunr.min.js │ │ │ │ │ └── typeahead.jquery.js │ │ │ │ ├── search.json │ │ │ │ └── undocumented.json │ │ │ │ └── docSet.dsidx │ │ └── TwilioVerifySDK.tgz │ ├── img │ │ ├── carat.png │ │ ├── dash.png │ │ ├── gh.png │ │ └── spinner.gif │ ├── index.html │ ├── js │ │ ├── jazzy.js │ │ ├── jazzy.search.js │ │ ├── jquery.min.js │ │ ├── lunr.min.js │ │ └── typeahead.jquery.js │ ├── search.json │ └── undocumented.json ├── 1.1.0 │ ├── Classes.html │ ├── Classes │ │ ├── TwilioVerifyBuilder.html │ │ └── TwilioVerifyManager.html │ ├── Enums.html │ ├── Enums │ │ ├── ChallengeListOrder.html │ │ ├── ChallengeStatus.html │ │ ├── FactorStatus.html │ │ ├── FactorType.html │ │ ├── LogLevel.html │ │ └── TwilioVerifyError.html │ ├── Protocols.html │ ├── Protocols │ │ ├── Challenge.html │ │ ├── ChallengeList.html │ │ ├── Factor.html │ │ ├── FactorPayload.html │ │ ├── LoggerService.html │ │ ├── Metadata.html │ │ ├── NetworkProvider.html │ │ ├── TwilioVerify.html │ │ ├── UpdateChallengePayload.html │ │ ├── UpdateFactorPayload.html │ │ └── VerifyFactorPayload.html │ ├── Structs.html │ ├── Structs │ │ ├── ChallengeDetails.html │ │ ├── ChallengeListPayload.html │ │ ├── Detail.html │ │ ├── PushFactorPayload.html │ │ ├── UpdatePushChallengePayload.html │ │ ├── UpdatePushFactorPayload.html │ │ └── VerifyPushFactorPayload.html │ ├── Typealiases.html │ ├── badge.svg │ ├── css │ │ ├── highlight.css │ │ └── jazzy.css │ ├── docsets │ │ ├── TwilioVerifySDK.docset │ │ │ └── Contents │ │ │ │ ├── Info.plist │ │ │ │ └── Resources │ │ │ │ ├── Documents │ │ │ │ ├── Classes.html │ │ │ │ ├── Classes │ │ │ │ │ ├── TwilioVerifyBuilder.html │ │ │ │ │ └── TwilioVerifyManager.html │ │ │ │ ├── Enums.html │ │ │ │ ├── Enums │ │ │ │ │ ├── ChallengeListOrder.html │ │ │ │ │ ├── ChallengeStatus.html │ │ │ │ │ ├── FactorStatus.html │ │ │ │ │ ├── FactorType.html │ │ │ │ │ ├── LogLevel.html │ │ │ │ │ └── TwilioVerifyError.html │ │ │ │ ├── Protocols.html │ │ │ │ ├── Protocols │ │ │ │ │ ├── Challenge.html │ │ │ │ │ ├── ChallengeList.html │ │ │ │ │ ├── Factor.html │ │ │ │ │ ├── FactorPayload.html │ │ │ │ │ ├── LoggerService.html │ │ │ │ │ ├── Metadata.html │ │ │ │ │ ├── NetworkProvider.html │ │ │ │ │ ├── TwilioVerify.html │ │ │ │ │ ├── UpdateChallengePayload.html │ │ │ │ │ ├── UpdateFactorPayload.html │ │ │ │ │ └── VerifyFactorPayload.html │ │ │ │ ├── Structs.html │ │ │ │ ├── Structs │ │ │ │ │ ├── ChallengeDetails.html │ │ │ │ │ ├── ChallengeListPayload.html │ │ │ │ │ ├── Detail.html │ │ │ │ │ ├── PushFactorPayload.html │ │ │ │ │ ├── UpdatePushChallengePayload.html │ │ │ │ │ ├── UpdatePushFactorPayload.html │ │ │ │ │ └── VerifyPushFactorPayload.html │ │ │ │ ├── Typealiases.html │ │ │ │ ├── css │ │ │ │ │ ├── highlight.css │ │ │ │ │ └── jazzy.css │ │ │ │ ├── img │ │ │ │ │ ├── carat.png │ │ │ │ │ ├── dash.png │ │ │ │ │ ├── gh.png │ │ │ │ │ └── spinner.gif │ │ │ │ ├── index.html │ │ │ │ ├── js │ │ │ │ │ ├── jazzy.js │ │ │ │ │ ├── jazzy.search.js │ │ │ │ │ ├── jquery.min.js │ │ │ │ │ ├── lunr.min.js │ │ │ │ │ └── typeahead.jquery.js │ │ │ │ └── search.json │ │ │ │ └── docSet.dsidx │ │ └── TwilioVerifySDK.tgz │ ├── img │ │ ├── carat.png │ │ ├── dash.png │ │ ├── gh.png │ │ └── spinner.gif │ ├── index.html │ ├── js │ │ ├── jazzy.js │ │ ├── jazzy.search.js │ │ ├── jquery.min.js │ │ ├── lunr.min.js │ │ └── typeahead.jquery.js │ ├── search.json │ └── undocumented.json ├── 1.2.0 │ ├── Classes.html │ ├── Classes │ │ ├── TwilioVerifyBuilder.html │ │ └── TwilioVerifyManager.html │ ├── Enums.html │ ├── Enums │ │ ├── ChallengeListOrder.html │ │ ├── ChallengeStatus.html │ │ ├── FactorStatus.html │ │ ├── FactorType.html │ │ ├── LogLevel.html │ │ └── TwilioVerifyError.html │ ├── Protocols.html │ ├── Protocols │ │ ├── Challenge.html │ │ ├── ChallengeList.html │ │ ├── Factor.html │ │ ├── FactorPayload.html │ │ ├── LoggerService.html │ │ ├── Metadata.html │ │ ├── NetworkProvider.html │ │ ├── TwilioVerify.html │ │ ├── UpdateChallengePayload.html │ │ ├── UpdateFactorPayload.html │ │ └── VerifyFactorPayload.html │ ├── Structs.html │ ├── Structs │ │ ├── ChallengeDetails.html │ │ ├── ChallengeListPayload.html │ │ ├── Detail.html │ │ ├── PushFactorPayload.html │ │ ├── UpdatePushChallengePayload.html │ │ ├── UpdatePushFactorPayload.html │ │ └── VerifyPushFactorPayload.html │ ├── Typealiases.html │ ├── badge.svg │ ├── css │ │ ├── highlight.css │ │ └── jazzy.css │ ├── docsets │ │ ├── TwilioVerifySDK.docset │ │ │ └── Contents │ │ │ │ ├── Info.plist │ │ │ │ └── Resources │ │ │ │ ├── Documents │ │ │ │ ├── Classes.html │ │ │ │ ├── Classes │ │ │ │ │ ├── TwilioVerifyBuilder.html │ │ │ │ │ └── TwilioVerifyManager.html │ │ │ │ ├── Enums.html │ │ │ │ ├── Enums │ │ │ │ │ ├── ChallengeListOrder.html │ │ │ │ │ ├── ChallengeStatus.html │ │ │ │ │ ├── FactorStatus.html │ │ │ │ │ ├── FactorType.html │ │ │ │ │ ├── LogLevel.html │ │ │ │ │ └── TwilioVerifyError.html │ │ │ │ ├── Protocols.html │ │ │ │ ├── Protocols │ │ │ │ │ ├── Challenge.html │ │ │ │ │ ├── ChallengeList.html │ │ │ │ │ ├── Factor.html │ │ │ │ │ ├── FactorPayload.html │ │ │ │ │ ├── LoggerService.html │ │ │ │ │ ├── Metadata.html │ │ │ │ │ ├── NetworkProvider.html │ │ │ │ │ ├── TwilioVerify.html │ │ │ │ │ ├── UpdateChallengePayload.html │ │ │ │ │ ├── UpdateFactorPayload.html │ │ │ │ │ └── VerifyFactorPayload.html │ │ │ │ ├── Structs.html │ │ │ │ ├── Structs │ │ │ │ │ ├── ChallengeDetails.html │ │ │ │ │ ├── ChallengeListPayload.html │ │ │ │ │ ├── Detail.html │ │ │ │ │ ├── PushFactorPayload.html │ │ │ │ │ ├── UpdatePushChallengePayload.html │ │ │ │ │ ├── UpdatePushFactorPayload.html │ │ │ │ │ └── VerifyPushFactorPayload.html │ │ │ │ ├── Typealiases.html │ │ │ │ ├── css │ │ │ │ │ ├── highlight.css │ │ │ │ │ └── jazzy.css │ │ │ │ ├── img │ │ │ │ │ ├── carat.png │ │ │ │ │ ├── dash.png │ │ │ │ │ ├── gh.png │ │ │ │ │ └── spinner.gif │ │ │ │ ├── index.html │ │ │ │ ├── js │ │ │ │ │ ├── jazzy.js │ │ │ │ │ ├── jazzy.search.js │ │ │ │ │ ├── jquery.min.js │ │ │ │ │ ├── lunr.min.js │ │ │ │ │ └── typeahead.jquery.js │ │ │ │ └── search.json │ │ │ │ └── docSet.dsidx │ │ └── TwilioVerifySDK.tgz │ ├── img │ │ ├── carat.png │ │ ├── dash.png │ │ ├── gh.png │ │ └── spinner.gif │ ├── index.html │ ├── js │ │ ├── jazzy.js │ │ ├── jazzy.search.js │ │ ├── jquery.min.js │ │ ├── lunr.min.js │ │ └── typeahead.jquery.js │ ├── search.json │ └── undocumented.json ├── 1.3.0 │ ├── Classes.html │ ├── Classes │ │ ├── TwilioVerifyBuilder.html │ │ └── TwilioVerifyManager.html │ ├── Enums.html │ ├── Enums │ │ ├── ChallengeListOrder.html │ │ ├── ChallengeStatus.html │ │ ├── FactorStatus.html │ │ ├── FactorType.html │ │ ├── LogLevel.html │ │ ├── NotificationPlatform.html │ │ └── TwilioVerifyError.html │ ├── Protocols.html │ ├── Protocols │ │ ├── Challenge.html │ │ ├── ChallengeList.html │ │ ├── Factor.html │ │ ├── FactorPayload.html │ │ ├── LoggerService.html │ │ ├── Metadata.html │ │ ├── NetworkProvider.html │ │ ├── TwilioVerify.html │ │ ├── UpdateChallengePayload.html │ │ ├── UpdateFactorPayload.html │ │ └── VerifyFactorPayload.html │ ├── Structs.html │ ├── Structs │ │ ├── ChallengeDetails.html │ │ ├── ChallengeListPayload.html │ │ ├── Detail.html │ │ ├── PushFactorPayload.html │ │ ├── UpdatePushChallengePayload.html │ │ ├── UpdatePushFactorPayload.html │ │ └── VerifyPushFactorPayload.html │ ├── Typealiases.html │ ├── badge.svg │ ├── css │ │ ├── highlight.css │ │ └── jazzy.css │ ├── docsets │ │ ├── TwilioVerifySDK.docset │ │ │ └── Contents │ │ │ │ ├── Info.plist │ │ │ │ └── Resources │ │ │ │ ├── Documents │ │ │ │ ├── Classes.html │ │ │ │ ├── Classes │ │ │ │ │ ├── TwilioVerifyBuilder.html │ │ │ │ │ └── TwilioVerifyManager.html │ │ │ │ ├── Enums.html │ │ │ │ ├── Enums │ │ │ │ │ ├── ChallengeListOrder.html │ │ │ │ │ ├── ChallengeStatus.html │ │ │ │ │ ├── FactorStatus.html │ │ │ │ │ ├── FactorType.html │ │ │ │ │ ├── LogLevel.html │ │ │ │ │ ├── NotificationPlatform.html │ │ │ │ │ └── TwilioVerifyError.html │ │ │ │ ├── Protocols.html │ │ │ │ ├── Protocols │ │ │ │ │ ├── Challenge.html │ │ │ │ │ ├── ChallengeList.html │ │ │ │ │ ├── Factor.html │ │ │ │ │ ├── FactorPayload.html │ │ │ │ │ ├── LoggerService.html │ │ │ │ │ ├── Metadata.html │ │ │ │ │ ├── NetworkProvider.html │ │ │ │ │ ├── TwilioVerify.html │ │ │ │ │ ├── UpdateChallengePayload.html │ │ │ │ │ ├── UpdateFactorPayload.html │ │ │ │ │ └── VerifyFactorPayload.html │ │ │ │ ├── Structs.html │ │ │ │ ├── Structs │ │ │ │ │ ├── ChallengeDetails.html │ │ │ │ │ ├── ChallengeListPayload.html │ │ │ │ │ ├── Detail.html │ │ │ │ │ ├── PushFactorPayload.html │ │ │ │ │ ├── UpdatePushChallengePayload.html │ │ │ │ │ ├── UpdatePushFactorPayload.html │ │ │ │ │ └── VerifyPushFactorPayload.html │ │ │ │ ├── Typealiases.html │ │ │ │ ├── css │ │ │ │ │ ├── highlight.css │ │ │ │ │ └── jazzy.css │ │ │ │ ├── img │ │ │ │ │ ├── carat.png │ │ │ │ │ ├── dash.png │ │ │ │ │ ├── gh.png │ │ │ │ │ └── spinner.gif │ │ │ │ ├── index.html │ │ │ │ ├── js │ │ │ │ │ ├── jazzy.js │ │ │ │ │ ├── jazzy.search.js │ │ │ │ │ ├── jquery.min.js │ │ │ │ │ ├── lunr.min.js │ │ │ │ │ └── typeahead.jquery.js │ │ │ │ └── search.json │ │ │ │ └── docSet.dsidx │ │ └── TwilioVerifySDK.tgz │ ├── img │ │ ├── carat.png │ │ ├── dash.png │ │ ├── gh.png │ │ └── spinner.gif │ ├── index.html │ ├── js │ │ ├── jazzy.js │ │ ├── jazzy.search.js │ │ ├── jquery.min.js │ │ ├── lunr.min.js │ │ └── typeahead.jquery.js │ ├── search.json │ └── undocumented.json ├── 2.0.0 │ ├── Classes.html │ ├── Classes │ │ ├── TwilioVerifyBuilder.html │ │ └── TwilioVerifyManager.html │ ├── Enums.html │ ├── Enums │ │ ├── ChallengeListOrder.html │ │ ├── ChallengeStatus.html │ │ ├── FactorStatus.html │ │ ├── FactorType.html │ │ ├── LogLevel.html │ │ ├── NetworkError.html │ │ ├── NotificationPlatform.html │ │ └── TwilioVerifyError.html │ ├── Protocols.html │ ├── Protocols │ │ ├── Challenge.html │ │ ├── ChallengeList.html │ │ ├── Factor.html │ │ ├── FactorPayload.html │ │ ├── LoggerService.html │ │ ├── Metadata.html │ │ ├── NetworkProvider.html │ │ ├── TwilioVerify.html │ │ ├── UpdateChallengePayload.html │ │ ├── UpdateFactorPayload.html │ │ └── VerifyFactorPayload.html │ ├── Structs.html │ ├── Structs │ │ ├── APIError.html │ │ ├── ChallengeDetails.html │ │ ├── ChallengeListPayload.html │ │ ├── Detail.html │ │ ├── FailureResponse.html │ │ ├── PushFactorPayload.html │ │ ├── UpdatePushChallengePayload.html │ │ ├── UpdatePushFactorPayload.html │ │ └── VerifyPushFactorPayload.html │ ├── Typealiases.html │ ├── badge.svg │ ├── css │ │ ├── highlight.css │ │ └── jazzy.css │ ├── docsets │ │ ├── TwilioVerifySDK.docset │ │ │ └── Contents │ │ │ │ ├── Info.plist │ │ │ │ └── Resources │ │ │ │ ├── Documents │ │ │ │ ├── Classes.html │ │ │ │ ├── Classes │ │ │ │ │ ├── TwilioVerifyBuilder.html │ │ │ │ │ └── TwilioVerifyManager.html │ │ │ │ ├── Enums.html │ │ │ │ ├── Enums │ │ │ │ │ ├── ChallengeListOrder.html │ │ │ │ │ ├── ChallengeStatus.html │ │ │ │ │ ├── FactorStatus.html │ │ │ │ │ ├── FactorType.html │ │ │ │ │ ├── LogLevel.html │ │ │ │ │ ├── NetworkError.html │ │ │ │ │ ├── NotificationPlatform.html │ │ │ │ │ └── TwilioVerifyError.html │ │ │ │ ├── Protocols.html │ │ │ │ ├── Protocols │ │ │ │ │ ├── Challenge.html │ │ │ │ │ ├── ChallengeList.html │ │ │ │ │ ├── Factor.html │ │ │ │ │ ├── FactorPayload.html │ │ │ │ │ ├── LoggerService.html │ │ │ │ │ ├── Metadata.html │ │ │ │ │ ├── NetworkProvider.html │ │ │ │ │ ├── TwilioVerify.html │ │ │ │ │ ├── UpdateChallengePayload.html │ │ │ │ │ ├── UpdateFactorPayload.html │ │ │ │ │ └── VerifyFactorPayload.html │ │ │ │ ├── Structs.html │ │ │ │ ├── Structs │ │ │ │ │ ├── APIError.html │ │ │ │ │ ├── ChallengeDetails.html │ │ │ │ │ ├── ChallengeListPayload.html │ │ │ │ │ ├── Detail.html │ │ │ │ │ ├── FailureResponse.html │ │ │ │ │ ├── PushFactorPayload.html │ │ │ │ │ ├── UpdatePushChallengePayload.html │ │ │ │ │ ├── UpdatePushFactorPayload.html │ │ │ │ │ └── VerifyPushFactorPayload.html │ │ │ │ ├── Typealiases.html │ │ │ │ ├── css │ │ │ │ │ ├── highlight.css │ │ │ │ │ └── jazzy.css │ │ │ │ ├── img │ │ │ │ │ ├── carat.png │ │ │ │ │ ├── dash.png │ │ │ │ │ ├── gh.png │ │ │ │ │ └── spinner.gif │ │ │ │ ├── index.html │ │ │ │ ├── js │ │ │ │ │ ├── jazzy.js │ │ │ │ │ ├── jazzy.search.js │ │ │ │ │ ├── jquery.min.js │ │ │ │ │ ├── lunr.min.js │ │ │ │ │ └── typeahead.jquery.js │ │ │ │ └── search.json │ │ │ │ └── docSet.dsidx │ │ └── TwilioVerifySDK.tgz │ ├── img │ │ ├── carat.png │ │ ├── dash.png │ │ ├── gh.png │ │ └── spinner.gif │ ├── index.html │ ├── js │ │ ├── jazzy.js │ │ ├── jazzy.search.js │ │ ├── jquery.min.js │ │ ├── lunr.min.js │ │ └── typeahead.jquery.js │ ├── search.json │ └── undocumented.json ├── 2.1.0 │ ├── Classes.html │ ├── Classes │ │ ├── TwilioVerifyBuilder.html │ │ └── TwilioVerifyManager.html │ ├── Enums.html │ ├── Enums │ │ ├── ChallengeListOrder.html │ │ ├── ChallengeStatus.html │ │ ├── FactorStatus.html │ │ ├── FactorType.html │ │ ├── InputError.html │ │ ├── LogLevel.html │ │ ├── NetworkError.html │ │ ├── NotificationPlatform.html │ │ └── TwilioVerifyError.html │ ├── Protocols.html │ ├── Protocols │ │ ├── Challenge.html │ │ ├── ChallengeList.html │ │ ├── Factor.html │ │ ├── FactorPayload.html │ │ ├── LoggerService.html │ │ ├── Metadata.html │ │ ├── NetworkProvider.html │ │ ├── TwilioVerify.html │ │ ├── UpdateChallengePayload.html │ │ ├── UpdateFactorPayload.html │ │ └── VerifyFactorPayload.html │ ├── Structs.html │ ├── Structs │ │ ├── APIError.html │ │ ├── ChallengeDetails.html │ │ ├── ChallengeListPayload.html │ │ ├── Detail.html │ │ ├── FailureResponse.html │ │ ├── NetworkResponse.html │ │ ├── PushFactorPayload.html │ │ ├── UpdatePushChallengePayload.html │ │ ├── UpdatePushFactorPayload.html │ │ └── VerifyPushFactorPayload.html │ ├── Typealiases.html │ ├── badge.svg │ ├── css │ │ ├── highlight.css │ │ └── jazzy.css │ ├── docsets │ │ ├── TwilioVerifySDK.docset │ │ │ └── Contents │ │ │ │ ├── Info.plist │ │ │ │ └── Resources │ │ │ │ ├── Documents │ │ │ │ ├── Classes.html │ │ │ │ ├── Classes │ │ │ │ │ ├── TwilioVerifyBuilder.html │ │ │ │ │ └── TwilioVerifyManager.html │ │ │ │ ├── Enums.html │ │ │ │ ├── Enums │ │ │ │ │ ├── ChallengeListOrder.html │ │ │ │ │ ├── ChallengeStatus.html │ │ │ │ │ ├── FactorStatus.html │ │ │ │ │ ├── FactorType.html │ │ │ │ │ ├── InputError.html │ │ │ │ │ ├── LogLevel.html │ │ │ │ │ ├── NetworkError.html │ │ │ │ │ ├── NotificationPlatform.html │ │ │ │ │ └── TwilioVerifyError.html │ │ │ │ ├── Protocols.html │ │ │ │ ├── Protocols │ │ │ │ │ ├── Challenge.html │ │ │ │ │ ├── ChallengeList.html │ │ │ │ │ ├── Factor.html │ │ │ │ │ ├── FactorPayload.html │ │ │ │ │ ├── LoggerService.html │ │ │ │ │ ├── Metadata.html │ │ │ │ │ ├── NetworkProvider.html │ │ │ │ │ ├── TwilioVerify.html │ │ │ │ │ ├── UpdateChallengePayload.html │ │ │ │ │ ├── UpdateFactorPayload.html │ │ │ │ │ └── VerifyFactorPayload.html │ │ │ │ ├── Structs.html │ │ │ │ ├── Structs │ │ │ │ │ ├── APIError.html │ │ │ │ │ ├── ChallengeDetails.html │ │ │ │ │ ├── ChallengeListPayload.html │ │ │ │ │ ├── Detail.html │ │ │ │ │ ├── FailureResponse.html │ │ │ │ │ ├── NetworkResponse.html │ │ │ │ │ ├── PushFactorPayload.html │ │ │ │ │ ├── UpdatePushChallengePayload.html │ │ │ │ │ ├── UpdatePushFactorPayload.html │ │ │ │ │ └── VerifyPushFactorPayload.html │ │ │ │ ├── Typealiases.html │ │ │ │ ├── css │ │ │ │ │ ├── highlight.css │ │ │ │ │ └── jazzy.css │ │ │ │ ├── img │ │ │ │ │ ├── carat.png │ │ │ │ │ ├── dash.png │ │ │ │ │ ├── gh.png │ │ │ │ │ └── spinner.gif │ │ │ │ ├── index.html │ │ │ │ ├── js │ │ │ │ │ ├── jazzy.js │ │ │ │ │ ├── jazzy.search.js │ │ │ │ │ ├── jquery.min.js │ │ │ │ │ ├── lunr.min.js │ │ │ │ │ └── typeahead.jquery.js │ │ │ │ └── search.json │ │ │ │ └── docSet.dsidx │ │ └── TwilioVerifySDK.tgz │ ├── img │ │ ├── carat.png │ │ ├── dash.png │ │ ├── gh.png │ │ └── spinner.gif │ ├── index.html │ ├── js │ │ ├── jazzy.js │ │ ├── jazzy.search.js │ │ ├── jquery.min.js │ │ ├── lunr.min.js │ │ └── typeahead.jquery.js │ ├── search.json │ └── undocumented.json ├── 2.2.0 │ ├── Classes.html │ ├── Classes │ │ ├── TwilioVerifyBuilder.html │ │ └── TwilioVerifyManager.html │ ├── Enums.html │ ├── Enums │ │ ├── ChallengeListOrder.html │ │ ├── ChallengeStatus.html │ │ ├── FactorStatus.html │ │ ├── FactorType.html │ │ ├── InputError.html │ │ ├── LogLevel.html │ │ ├── NetworkError.html │ │ ├── NotificationPlatform.html │ │ └── TwilioVerifyError.html │ ├── Protocols.html │ ├── Protocols │ │ ├── Challenge.html │ │ ├── ChallengeList.html │ │ ├── Factor.html │ │ ├── FactorPayload.html │ │ ├── LoggerService.html │ │ ├── Metadata.html │ │ ├── NetworkProvider.html │ │ ├── TwilioVerify.html │ │ ├── UpdateChallengePayload.html │ │ ├── UpdateFactorPayload.html │ │ └── VerifyFactorPayload.html │ ├── Structs.html │ ├── Structs │ │ ├── APIError.html │ │ ├── ChallengeDetails.html │ │ ├── ChallengeListPayload.html │ │ ├── Detail.html │ │ ├── FailureResponse.html │ │ ├── NetworkResponse.html │ │ ├── PushFactorPayload.html │ │ ├── UpdatePushChallengePayload.html │ │ ├── UpdatePushFactorPayload.html │ │ └── VerifyPushFactorPayload.html │ ├── Typealiases.html │ ├── badge.svg │ ├── css │ │ ├── highlight.css │ │ └── jazzy.css │ ├── docsets │ │ ├── TwilioVerifySDK.docset │ │ │ └── Contents │ │ │ │ ├── Info.plist │ │ │ │ └── Resources │ │ │ │ ├── Documents │ │ │ │ ├── Classes.html │ │ │ │ ├── Classes │ │ │ │ │ ├── TwilioVerifyBuilder.html │ │ │ │ │ └── TwilioVerifyManager.html │ │ │ │ ├── Enums.html │ │ │ │ ├── Enums │ │ │ │ │ ├── ChallengeListOrder.html │ │ │ │ │ ├── ChallengeStatus.html │ │ │ │ │ ├── FactorStatus.html │ │ │ │ │ ├── FactorType.html │ │ │ │ │ ├── InputError.html │ │ │ │ │ ├── LogLevel.html │ │ │ │ │ ├── NetworkError.html │ │ │ │ │ ├── NotificationPlatform.html │ │ │ │ │ └── TwilioVerifyError.html │ │ │ │ ├── Protocols.html │ │ │ │ ├── Protocols │ │ │ │ │ ├── Challenge.html │ │ │ │ │ ├── ChallengeList.html │ │ │ │ │ ├── Factor.html │ │ │ │ │ ├── FactorPayload.html │ │ │ │ │ ├── LoggerService.html │ │ │ │ │ ├── Metadata.html │ │ │ │ │ ├── NetworkProvider.html │ │ │ │ │ ├── TwilioVerify.html │ │ │ │ │ ├── UpdateChallengePayload.html │ │ │ │ │ ├── UpdateFactorPayload.html │ │ │ │ │ └── VerifyFactorPayload.html │ │ │ │ ├── Structs.html │ │ │ │ ├── Structs │ │ │ │ │ ├── APIError.html │ │ │ │ │ ├── ChallengeDetails.html │ │ │ │ │ ├── ChallengeListPayload.html │ │ │ │ │ ├── Detail.html │ │ │ │ │ ├── FailureResponse.html │ │ │ │ │ ├── NetworkResponse.html │ │ │ │ │ ├── PushFactorPayload.html │ │ │ │ │ ├── UpdatePushChallengePayload.html │ │ │ │ │ ├── UpdatePushFactorPayload.html │ │ │ │ │ └── VerifyPushFactorPayload.html │ │ │ │ ├── Typealiases.html │ │ │ │ ├── css │ │ │ │ │ ├── highlight.css │ │ │ │ │ └── jazzy.css │ │ │ │ ├── img │ │ │ │ │ ├── carat.png │ │ │ │ │ ├── dash.png │ │ │ │ │ └── spinner.gif │ │ │ │ ├── index.html │ │ │ │ ├── js │ │ │ │ │ ├── jazzy.js │ │ │ │ │ ├── jazzy.search.js │ │ │ │ │ ├── jquery.min.js │ │ │ │ │ ├── lunr.min.js │ │ │ │ │ └── typeahead.jquery.js │ │ │ │ └── search.json │ │ │ │ └── docSet.dsidx │ │ └── TwilioVerifySDK.tgz │ ├── img │ │ ├── carat.png │ │ ├── dash.png │ │ └── spinner.gif │ ├── index.html │ ├── js │ │ ├── jazzy.js │ │ ├── jazzy.search.js │ │ ├── jquery.min.js │ │ ├── lunr.min.js │ │ └── typeahead.jquery.js │ ├── search.json │ └── undocumented.json ├── 2.2.1 │ ├── Classes.html │ ├── Classes │ │ ├── TwilioVerifyBuilder.html │ │ └── TwilioVerifyManager.html │ ├── Enums.html │ ├── Enums │ │ ├── ChallengeListOrder.html │ │ ├── ChallengeStatus.html │ │ ├── FactorStatus.html │ │ ├── FactorType.html │ │ ├── InputError.html │ │ ├── KeyManagerError.html │ │ ├── LogLevel.html │ │ ├── NetworkError.html │ │ ├── NotificationPlatform.html │ │ ├── SecureStorageError.html │ │ └── TwilioVerifyError.html │ ├── Protocols.html │ ├── Protocols │ │ ├── Challenge.html │ │ ├── ChallengeList.html │ │ ├── Factor.html │ │ ├── FactorPayload.html │ │ ├── LoggerService.html │ │ ├── Metadata.html │ │ ├── NetworkProvider.html │ │ ├── OperationError.html │ │ ├── TwilioVerify.html │ │ ├── UpdateChallengePayload.html │ │ ├── UpdateFactorPayload.html │ │ └── VerifyFactorPayload.html │ ├── Structs.html │ ├── Structs │ │ ├── APIError.html │ │ ├── ChallengeDetails.html │ │ ├── ChallengeListPayload.html │ │ ├── Detail.html │ │ ├── FailureResponse.html │ │ ├── NetworkResponse.html │ │ ├── PushFactorPayload.html │ │ ├── UpdatePushChallengePayload.html │ │ ├── UpdatePushFactorPayload.html │ │ └── VerifyPushFactorPayload.html │ ├── Typealiases.html │ ├── badge.svg │ ├── css │ │ ├── highlight.css │ │ └── jazzy.css │ ├── docsets │ │ ├── TwilioVerifySDK.docset │ │ │ └── Contents │ │ │ │ ├── Info.plist │ │ │ │ └── Resources │ │ │ │ ├── Documents │ │ │ │ ├── Classes.html │ │ │ │ ├── Classes │ │ │ │ │ ├── TwilioVerifyBuilder.html │ │ │ │ │ └── TwilioVerifyManager.html │ │ │ │ ├── Enums.html │ │ │ │ ├── Enums │ │ │ │ │ ├── ChallengeListOrder.html │ │ │ │ │ ├── ChallengeStatus.html │ │ │ │ │ ├── FactorStatus.html │ │ │ │ │ ├── FactorType.html │ │ │ │ │ ├── InputError.html │ │ │ │ │ ├── KeyManagerError.html │ │ │ │ │ ├── LogLevel.html │ │ │ │ │ ├── NetworkError.html │ │ │ │ │ ├── NotificationPlatform.html │ │ │ │ │ ├── SecureStorageError.html │ │ │ │ │ └── TwilioVerifyError.html │ │ │ │ ├── Protocols.html │ │ │ │ ├── Protocols │ │ │ │ │ ├── Challenge.html │ │ │ │ │ ├── ChallengeList.html │ │ │ │ │ ├── Factor.html │ │ │ │ │ ├── FactorPayload.html │ │ │ │ │ ├── LoggerService.html │ │ │ │ │ ├── Metadata.html │ │ │ │ │ ├── NetworkProvider.html │ │ │ │ │ ├── OperationError.html │ │ │ │ │ ├── TwilioVerify.html │ │ │ │ │ ├── UpdateChallengePayload.html │ │ │ │ │ ├── UpdateFactorPayload.html │ │ │ │ │ └── VerifyFactorPayload.html │ │ │ │ ├── Structs.html │ │ │ │ ├── Structs │ │ │ │ │ ├── APIError.html │ │ │ │ │ ├── ChallengeDetails.html │ │ │ │ │ ├── ChallengeListPayload.html │ │ │ │ │ ├── Detail.html │ │ │ │ │ ├── FailureResponse.html │ │ │ │ │ ├── NetworkResponse.html │ │ │ │ │ ├── PushFactorPayload.html │ │ │ │ │ ├── UpdatePushChallengePayload.html │ │ │ │ │ ├── UpdatePushFactorPayload.html │ │ │ │ │ └── VerifyPushFactorPayload.html │ │ │ │ ├── Typealiases.html │ │ │ │ ├── css │ │ │ │ │ ├── highlight.css │ │ │ │ │ └── jazzy.css │ │ │ │ ├── img │ │ │ │ │ ├── carat.png │ │ │ │ │ ├── dash.png │ │ │ │ │ └── spinner.gif │ │ │ │ ├── index.html │ │ │ │ ├── js │ │ │ │ │ ├── jazzy.js │ │ │ │ │ ├── jazzy.search.js │ │ │ │ │ ├── jquery.min.js │ │ │ │ │ ├── lunr.min.js │ │ │ │ │ └── typeahead.jquery.js │ │ │ │ └── search.json │ │ │ │ └── docSet.dsidx │ │ └── TwilioVerifySDK.tgz │ ├── img │ │ ├── carat.png │ │ ├── dash.png │ │ └── spinner.gif │ ├── index.html │ ├── js │ │ ├── jazzy.js │ │ ├── jazzy.search.js │ │ ├── jquery.min.js │ │ ├── lunr.min.js │ │ └── typeahead.jquery.js │ ├── search.json │ └── undocumented.json ├── 2.2.2 │ ├── Classes.html │ ├── Classes │ │ ├── TwilioVerifyBuilder.html │ │ └── TwilioVerifyManager.html │ ├── Enums.html │ ├── Enums │ │ ├── ChallengeListOrder.html │ │ ├── ChallengeStatus.html │ │ ├── FactorStatus.html │ │ ├── FactorType.html │ │ ├── InputError.html │ │ ├── KeyManagerError.html │ │ ├── LogLevel.html │ │ ├── NetworkError.html │ │ ├── NotificationPlatform.html │ │ ├── SecureStorageError.html │ │ └── TwilioVerifyError.html │ ├── Protocols.html │ ├── Protocols │ │ ├── Challenge.html │ │ ├── ChallengeList.html │ │ ├── Factor.html │ │ ├── FactorPayload.html │ │ ├── LoggerService.html │ │ ├── Metadata.html │ │ ├── NetworkProvider.html │ │ ├── OperationError.html │ │ ├── TwilioVerify.html │ │ ├── UpdateChallengePayload.html │ │ ├── UpdateFactorPayload.html │ │ └── VerifyFactorPayload.html │ ├── Structs.html │ ├── Structs │ │ ├── APIError.html │ │ ├── ChallengeDetails.html │ │ ├── ChallengeListPayload.html │ │ ├── Detail.html │ │ ├── FailureResponse.html │ │ ├── NetworkResponse.html │ │ ├── PushFactorPayload.html │ │ ├── UpdatePushChallengePayload.html │ │ ├── UpdatePushFactorPayload.html │ │ └── VerifyPushFactorPayload.html │ ├── Typealiases.html │ ├── badge.svg │ ├── css │ │ ├── highlight.css │ │ └── jazzy.css │ ├── docsets │ │ ├── TwilioVerifySDK.docset │ │ │ └── Contents │ │ │ │ ├── Info.plist │ │ │ │ └── Resources │ │ │ │ ├── Documents │ │ │ │ ├── Classes.html │ │ │ │ ├── Classes │ │ │ │ │ ├── TwilioVerifyBuilder.html │ │ │ │ │ └── TwilioVerifyManager.html │ │ │ │ ├── Enums.html │ │ │ │ ├── Enums │ │ │ │ │ ├── ChallengeListOrder.html │ │ │ │ │ ├── ChallengeStatus.html │ │ │ │ │ ├── FactorStatus.html │ │ │ │ │ ├── FactorType.html │ │ │ │ │ ├── InputError.html │ │ │ │ │ ├── KeyManagerError.html │ │ │ │ │ ├── LogLevel.html │ │ │ │ │ ├── NetworkError.html │ │ │ │ │ ├── NotificationPlatform.html │ │ │ │ │ ├── SecureStorageError.html │ │ │ │ │ └── TwilioVerifyError.html │ │ │ │ ├── Protocols.html │ │ │ │ ├── Protocols │ │ │ │ │ ├── Challenge.html │ │ │ │ │ ├── ChallengeList.html │ │ │ │ │ ├── Factor.html │ │ │ │ │ ├── FactorPayload.html │ │ │ │ │ ├── LoggerService.html │ │ │ │ │ ├── Metadata.html │ │ │ │ │ ├── NetworkProvider.html │ │ │ │ │ ├── OperationError.html │ │ │ │ │ ├── TwilioVerify.html │ │ │ │ │ ├── UpdateChallengePayload.html │ │ │ │ │ ├── UpdateFactorPayload.html │ │ │ │ │ └── VerifyFactorPayload.html │ │ │ │ ├── Structs.html │ │ │ │ ├── Structs │ │ │ │ │ ├── APIError.html │ │ │ │ │ ├── ChallengeDetails.html │ │ │ │ │ ├── ChallengeListPayload.html │ │ │ │ │ ├── Detail.html │ │ │ │ │ ├── FailureResponse.html │ │ │ │ │ ├── NetworkResponse.html │ │ │ │ │ ├── PushFactorPayload.html │ │ │ │ │ ├── UpdatePushChallengePayload.html │ │ │ │ │ ├── UpdatePushFactorPayload.html │ │ │ │ │ └── VerifyPushFactorPayload.html │ │ │ │ ├── Typealiases.html │ │ │ │ ├── css │ │ │ │ │ ├── highlight.css │ │ │ │ │ └── jazzy.css │ │ │ │ ├── img │ │ │ │ │ ├── carat.png │ │ │ │ │ ├── dash.png │ │ │ │ │ └── spinner.gif │ │ │ │ ├── index.html │ │ │ │ ├── js │ │ │ │ │ ├── jazzy.js │ │ │ │ │ ├── jazzy.search.js │ │ │ │ │ ├── jquery.min.js │ │ │ │ │ ├── lunr.min.js │ │ │ │ │ └── typeahead.jquery.js │ │ │ │ └── search.json │ │ │ │ └── docSet.dsidx │ │ └── TwilioVerifySDK.tgz │ ├── img │ │ ├── carat.png │ │ ├── dash.png │ │ └── spinner.gif │ ├── index.html │ ├── js │ │ ├── jazzy.js │ │ ├── jazzy.search.js │ │ ├── jquery.min.js │ │ ├── lunr.min.js │ │ └── typeahead.jquery.js │ ├── search.json │ └── undocumented.json ├── 3.0.0 │ ├── Classes.html │ ├── Classes │ │ ├── TwilioVerifyBuilder.html │ │ └── TwilioVerifyManager.html │ ├── Enums.html │ ├── Enums │ │ ├── ChallengeListOrder.html │ │ ├── ChallengeStatus.html │ │ ├── FactorStatus.html │ │ ├── FactorType.html │ │ ├── InputError.html │ │ ├── KeyManagerError.html │ │ ├── LogLevel.html │ │ ├── NetworkError.html │ │ ├── NotificationPlatform.html │ │ ├── SecureStorageError.html │ │ └── TwilioVerifyError.html │ ├── Protocols.html │ ├── Protocols │ │ ├── Challenge.html │ │ ├── ChallengeList.html │ │ ├── Factor.html │ │ ├── FactorPayload.html │ │ ├── LoggerService.html │ │ ├── Metadata.html │ │ ├── NetworkProvider.html │ │ ├── OperationError.html │ │ ├── TwilioVerify.html │ │ ├── UpdateChallengePayload.html │ │ ├── UpdateFactorPayload.html │ │ └── VerifyFactorPayload.html │ ├── Structs.html │ ├── Structs │ │ ├── APIError.html │ │ ├── ChallengeDetails.html │ │ ├── ChallengeListPayload.html │ │ ├── Detail.html │ │ ├── FailureResponse.html │ │ ├── NetworkResponse.html │ │ ├── PushFactorPayload.html │ │ ├── UpdatePushChallengePayload.html │ │ ├── UpdatePushFactorPayload.html │ │ └── VerifyPushFactorPayload.html │ ├── Typealiases.html │ ├── badge.svg │ ├── css │ │ ├── highlight.css │ │ └── jazzy.css │ ├── docsets │ │ ├── TwilioVerifySDK.docset │ │ │ └── Contents │ │ │ │ ├── Info.plist │ │ │ │ └── Resources │ │ │ │ ├── Documents │ │ │ │ ├── Classes.html │ │ │ │ ├── Classes │ │ │ │ │ ├── TwilioVerifyBuilder.html │ │ │ │ │ └── TwilioVerifyManager.html │ │ │ │ ├── Enums.html │ │ │ │ ├── Enums │ │ │ │ │ ├── ChallengeListOrder.html │ │ │ │ │ ├── ChallengeStatus.html │ │ │ │ │ ├── FactorStatus.html │ │ │ │ │ ├── FactorType.html │ │ │ │ │ ├── InputError.html │ │ │ │ │ ├── KeyManagerError.html │ │ │ │ │ ├── LogLevel.html │ │ │ │ │ ├── NetworkError.html │ │ │ │ │ ├── NotificationPlatform.html │ │ │ │ │ ├── SecureStorageError.html │ │ │ │ │ └── TwilioVerifyError.html │ │ │ │ ├── Protocols.html │ │ │ │ ├── Protocols │ │ │ │ │ ├── Challenge.html │ │ │ │ │ ├── ChallengeList.html │ │ │ │ │ ├── Factor.html │ │ │ │ │ ├── FactorPayload.html │ │ │ │ │ ├── LoggerService.html │ │ │ │ │ ├── Metadata.html │ │ │ │ │ ├── NetworkProvider.html │ │ │ │ │ ├── OperationError.html │ │ │ │ │ ├── TwilioVerify.html │ │ │ │ │ ├── UpdateChallengePayload.html │ │ │ │ │ ├── UpdateFactorPayload.html │ │ │ │ │ └── VerifyFactorPayload.html │ │ │ │ ├── Structs.html │ │ │ │ ├── Structs │ │ │ │ │ ├── APIError.html │ │ │ │ │ ├── ChallengeDetails.html │ │ │ │ │ ├── ChallengeListPayload.html │ │ │ │ │ ├── Detail.html │ │ │ │ │ ├── FailureResponse.html │ │ │ │ │ ├── NetworkResponse.html │ │ │ │ │ ├── PushFactorPayload.html │ │ │ │ │ ├── UpdatePushChallengePayload.html │ │ │ │ │ ├── UpdatePushFactorPayload.html │ │ │ │ │ └── VerifyPushFactorPayload.html │ │ │ │ ├── Typealiases.html │ │ │ │ ├── css │ │ │ │ │ ├── highlight.css │ │ │ │ │ └── jazzy.css │ │ │ │ ├── img │ │ │ │ │ ├── carat.png │ │ │ │ │ ├── dash.png │ │ │ │ │ └── spinner.gif │ │ │ │ ├── index.html │ │ │ │ ├── js │ │ │ │ │ ├── jazzy.js │ │ │ │ │ ├── jazzy.search.js │ │ │ │ │ ├── jquery.min.js │ │ │ │ │ ├── lunr.min.js │ │ │ │ │ └── typeahead.jquery.js │ │ │ │ └── search.json │ │ │ │ └── docSet.dsidx │ │ └── TwilioVerifySDK.tgz │ ├── img │ │ ├── carat.png │ │ ├── dash.png │ │ └── spinner.gif │ ├── index.html │ ├── js │ │ ├── jazzy.js │ │ ├── jazzy.search.js │ │ ├── jquery.min.js │ │ ├── lunr.min.js │ │ └── typeahead.jquery.js │ ├── search.json │ └── undocumented.json ├── 3.0.1 │ ├── Classes.html │ ├── Classes │ │ ├── TwilioVerifyBuilder.html │ │ └── TwilioVerifyManager.html │ ├── Enums.html │ ├── Enums │ │ ├── ChallengeListOrder.html │ │ ├── ChallengeStatus.html │ │ ├── FactorStatus.html │ │ ├── FactorType.html │ │ ├── InputError.html │ │ ├── KeyManagerError.html │ │ ├── LogLevel.html │ │ ├── NetworkError.html │ │ ├── NotificationPlatform.html │ │ ├── SecureStorageError.html │ │ └── TwilioVerifyError.html │ ├── Protocols.html │ ├── Protocols │ │ ├── Challenge.html │ │ ├── ChallengeList.html │ │ ├── Factor.html │ │ ├── FactorPayload.html │ │ ├── LoggerService.html │ │ ├── Metadata.html │ │ ├── NetworkProvider.html │ │ ├── OperationError.html │ │ ├── TwilioVerify.html │ │ ├── UpdateChallengePayload.html │ │ ├── UpdateFactorPayload.html │ │ └── VerifyFactorPayload.html │ ├── Structs.html │ ├── Structs │ │ ├── APIError.html │ │ ├── ChallengeDetails.html │ │ ├── ChallengeListPayload.html │ │ ├── Detail.html │ │ ├── FailureResponse.html │ │ ├── NetworkResponse.html │ │ ├── PushFactorPayload.html │ │ ├── UpdatePushChallengePayload.html │ │ ├── UpdatePushFactorPayload.html │ │ └── VerifyPushFactorPayload.html │ ├── Typealiases.html │ ├── badge.svg │ ├── css │ │ ├── highlight.css │ │ └── jazzy.css │ ├── docsets │ │ ├── TwilioVerifySDK.docset │ │ │ └── Contents │ │ │ │ ├── Info.plist │ │ │ │ └── Resources │ │ │ │ ├── Documents │ │ │ │ ├── Classes.html │ │ │ │ ├── Classes │ │ │ │ │ ├── TwilioVerifyBuilder.html │ │ │ │ │ └── TwilioVerifyManager.html │ │ │ │ ├── Enums.html │ │ │ │ ├── Enums │ │ │ │ │ ├── ChallengeListOrder.html │ │ │ │ │ ├── ChallengeStatus.html │ │ │ │ │ ├── FactorStatus.html │ │ │ │ │ ├── FactorType.html │ │ │ │ │ ├── InputError.html │ │ │ │ │ ├── KeyManagerError.html │ │ │ │ │ ├── LogLevel.html │ │ │ │ │ ├── NetworkError.html │ │ │ │ │ ├── NotificationPlatform.html │ │ │ │ │ ├── SecureStorageError.html │ │ │ │ │ └── TwilioVerifyError.html │ │ │ │ ├── Protocols.html │ │ │ │ ├── Protocols │ │ │ │ │ ├── Challenge.html │ │ │ │ │ ├── ChallengeList.html │ │ │ │ │ ├── Factor.html │ │ │ │ │ ├── FactorPayload.html │ │ │ │ │ ├── LoggerService.html │ │ │ │ │ ├── Metadata.html │ │ │ │ │ ├── NetworkProvider.html │ │ │ │ │ ├── OperationError.html │ │ │ │ │ ├── TwilioVerify.html │ │ │ │ │ ├── UpdateChallengePayload.html │ │ │ │ │ ├── UpdateFactorPayload.html │ │ │ │ │ └── VerifyFactorPayload.html │ │ │ │ ├── Structs.html │ │ │ │ ├── Structs │ │ │ │ │ ├── APIError.html │ │ │ │ │ ├── ChallengeDetails.html │ │ │ │ │ ├── ChallengeListPayload.html │ │ │ │ │ ├── Detail.html │ │ │ │ │ ├── FailureResponse.html │ │ │ │ │ ├── NetworkResponse.html │ │ │ │ │ ├── PushFactorPayload.html │ │ │ │ │ ├── UpdatePushChallengePayload.html │ │ │ │ │ ├── UpdatePushFactorPayload.html │ │ │ │ │ └── VerifyPushFactorPayload.html │ │ │ │ ├── Typealiases.html │ │ │ │ ├── css │ │ │ │ │ ├── highlight.css │ │ │ │ │ └── jazzy.css │ │ │ │ ├── img │ │ │ │ │ ├── carat.png │ │ │ │ │ ├── dash.png │ │ │ │ │ └── spinner.gif │ │ │ │ ├── index.html │ │ │ │ ├── js │ │ │ │ │ ├── jazzy.js │ │ │ │ │ ├── jazzy.search.js │ │ │ │ │ ├── jquery.min.js │ │ │ │ │ ├── lunr.min.js │ │ │ │ │ └── typeahead.jquery.js │ │ │ │ └── search.json │ │ │ │ └── docSet.dsidx │ │ └── TwilioVerifySDK.tgz │ ├── img │ │ ├── carat.png │ │ ├── dash.png │ │ └── spinner.gif │ ├── index.html │ ├── js │ │ ├── jazzy.js │ │ ├── jazzy.search.js │ │ ├── jquery.min.js │ │ ├── lunr.min.js │ │ └── typeahead.jquery.js │ ├── search.json │ └── undocumented.json └── latest └── fastlane ├── Fastfile ├── Pluginfile └── README.md /.circleci/config.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/twilio/twilio-verify-ios/HEAD/.circleci/config.yml -------------------------------------------------------------------------------- /.github/CODEOWNERS: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/twilio/twilio-verify-ios/HEAD/.github/CODEOWNERS -------------------------------------------------------------------------------- /.github/ISSUE_TEMPLATE/bug_report.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/twilio/twilio-verify-ios/HEAD/.github/ISSUE_TEMPLATE/bug_report.md -------------------------------------------------------------------------------- /.github/ISSUE_TEMPLATE/feature_request.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/twilio/twilio-verify-ios/HEAD/.github/ISSUE_TEMPLATE/feature_request.md -------------------------------------------------------------------------------- /.github/PULL_REQUEST_TEMPLATE.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/twilio/twilio-verify-ios/HEAD/.github/PULL_REQUEST_TEMPLATE.md -------------------------------------------------------------------------------- /.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/twilio/twilio-verify-ios/HEAD/.gitignore -------------------------------------------------------------------------------- /.swiftlint.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/twilio/twilio-verify-ios/HEAD/.swiftlint.yml -------------------------------------------------------------------------------- /AppSizer/AppSizer.xcodeproj/project.pbxproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/twilio/twilio-verify-ios/HEAD/AppSizer/AppSizer.xcodeproj/project.pbxproj -------------------------------------------------------------------------------- /AppSizer/AppSizer/AppDelegate.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/twilio/twilio-verify-ios/HEAD/AppSizer/AppSizer/AppDelegate.swift -------------------------------------------------------------------------------- /AppSizer/AppSizer/Base.lproj/Main.storyboard: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/twilio/twilio-verify-ios/HEAD/AppSizer/AppSizer/Base.lproj/Main.storyboard -------------------------------------------------------------------------------- /AppSizer/AppSizer/ExportOptions/dev.plist: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/twilio/twilio-verify-ios/HEAD/AppSizer/AppSizer/ExportOptions/dev.plist -------------------------------------------------------------------------------- /AppSizer/AppSizer/Info.plist: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/twilio/twilio-verify-ios/HEAD/AppSizer/AppSizer/Info.plist -------------------------------------------------------------------------------- /AppSizer/AppSizer/ViewController.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/twilio/twilio-verify-ios/HEAD/AppSizer/AppSizer/ViewController.swift -------------------------------------------------------------------------------- /CHANGELOG.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/twilio/twilio-verify-ios/HEAD/CHANGELOG.md -------------------------------------------------------------------------------- /CODE_OF_CONDUCT.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/twilio/twilio-verify-ios/HEAD/CODE_OF_CONDUCT.md -------------------------------------------------------------------------------- /CONTRIBUTING.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/twilio/twilio-verify-ios/HEAD/CONTRIBUTING.md -------------------------------------------------------------------------------- /DangerFile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/twilio/twilio-verify-ios/HEAD/DangerFile -------------------------------------------------------------------------------- /Gemfile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/twilio/twilio-verify-ios/HEAD/Gemfile -------------------------------------------------------------------------------- /Gemfile.lock: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/twilio/twilio-verify-ios/HEAD/Gemfile.lock -------------------------------------------------------------------------------- /HostApp/AppDelegate.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/twilio/twilio-verify-ios/HEAD/HostApp/AppDelegate.swift -------------------------------------------------------------------------------- /HostApp/Assets.xcassets/Contents.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/twilio/twilio-verify-ios/HEAD/HostApp/Assets.xcassets/Contents.json -------------------------------------------------------------------------------- /HostApp/Base.lproj/LaunchScreen.storyboard: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/twilio/twilio-verify-ios/HEAD/HostApp/Base.lproj/LaunchScreen.storyboard -------------------------------------------------------------------------------- /HostApp/Base.lproj/Main.storyboard: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/twilio/twilio-verify-ios/HEAD/HostApp/Base.lproj/Main.storyboard -------------------------------------------------------------------------------- /HostApp/Info.plist: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/twilio/twilio-verify-ios/HEAD/HostApp/Info.plist -------------------------------------------------------------------------------- /HostApp/ViewController.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/twilio/twilio-verify-ios/HEAD/HostApp/ViewController.swift -------------------------------------------------------------------------------- /LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/twilio/twilio-verify-ios/HEAD/LICENSE -------------------------------------------------------------------------------- /Package.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/twilio/twilio-verify-ios/HEAD/Package.swift -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/twilio/twilio-verify-ios/HEAD/README.md -------------------------------------------------------------------------------- /Scripts/app-sizer.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/twilio/twilio-verify-ios/HEAD/Scripts/app-sizer.sh -------------------------------------------------------------------------------- /Scripts/bump-version.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/twilio/twilio-verify-ios/HEAD/Scripts/bump-version.swift -------------------------------------------------------------------------------- /Scripts/certificate_setup.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/twilio/twilio-verify-ios/HEAD/Scripts/certificate_setup.sh -------------------------------------------------------------------------------- /Scripts/change-base-url.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/twilio/twilio-verify-ios/HEAD/Scripts/change-base-url.swift -------------------------------------------------------------------------------- /Scripts/env.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/twilio/twilio-verify-ios/HEAD/Scripts/env.rb -------------------------------------------------------------------------------- /Scripts/env.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/twilio/twilio-verify-ios/HEAD/Scripts/env.sh -------------------------------------------------------------------------------- /Scripts/generate-docs.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/twilio/twilio-verify-ios/HEAD/Scripts/generate-docs.sh -------------------------------------------------------------------------------- /Scripts/generate-size-report.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/twilio/twilio-verify-ios/HEAD/Scripts/generate-size-report.rb -------------------------------------------------------------------------------- /Scripts/run_tests.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/twilio/twilio-verify-ios/HEAD/Scripts/run_tests.sh -------------------------------------------------------------------------------- /Scripts/strip-frameworks.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/twilio/twilio-verify-ios/HEAD/Scripts/strip-frameworks.sh -------------------------------------------------------------------------------- /TwilioVerify.podspec: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/twilio/twilio-verify-ios/HEAD/TwilioVerify.podspec -------------------------------------------------------------------------------- /TwilioVerifySDK.xcodeproj/project.pbxproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/twilio/twilio-verify-ios/HEAD/TwilioVerifySDK.xcodeproj/project.pbxproj -------------------------------------------------------------------------------- /TwilioVerifySDK/Info.plist: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/twilio/twilio-verify-ios/HEAD/TwilioVerifySDK/Info.plist -------------------------------------------------------------------------------- /TwilioVerifySDK/PrivacyInfo.xcprivacy: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/twilio/twilio-verify-ios/HEAD/TwilioVerifySDK/PrivacyInfo.xcprivacy -------------------------------------------------------------------------------- /TwilioVerifySDKTests/Error/TestError.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/twilio/twilio-verify-ios/HEAD/TwilioVerifySDKTests/Error/TestError.swift -------------------------------------------------------------------------------- /TwilioVerifySDKTests/Info.plist: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/twilio/twilio-verify-ios/HEAD/TwilioVerifySDKTests/Info.plist -------------------------------------------------------------------------------- /docs/0.0.3/Classes.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/twilio/twilio-verify-ios/HEAD/docs/0.0.3/Classes.html -------------------------------------------------------------------------------- /docs/0.0.3/Classes/TwilioVerifyBuilder.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/twilio/twilio-verify-ios/HEAD/docs/0.0.3/Classes/TwilioVerifyBuilder.html -------------------------------------------------------------------------------- /docs/0.0.3/Classes/TwilioVerifyManager.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/twilio/twilio-verify-ios/HEAD/docs/0.0.3/Classes/TwilioVerifyManager.html -------------------------------------------------------------------------------- /docs/0.0.3/Enums.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/twilio/twilio-verify-ios/HEAD/docs/0.0.3/Enums.html -------------------------------------------------------------------------------- /docs/0.0.3/Enums/ChallengeStatus.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/twilio/twilio-verify-ios/HEAD/docs/0.0.3/Enums/ChallengeStatus.html -------------------------------------------------------------------------------- /docs/0.0.3/Enums/FactorStatus.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/twilio/twilio-verify-ios/HEAD/docs/0.0.3/Enums/FactorStatus.html -------------------------------------------------------------------------------- /docs/0.0.3/Enums/FactorType.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/twilio/twilio-verify-ios/HEAD/docs/0.0.3/Enums/FactorType.html -------------------------------------------------------------------------------- /docs/0.0.3/Enums/TwilioVerifyError.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/twilio/twilio-verify-ios/HEAD/docs/0.0.3/Enums/TwilioVerifyError.html -------------------------------------------------------------------------------- /docs/0.0.3/Protocols.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/twilio/twilio-verify-ios/HEAD/docs/0.0.3/Protocols.html -------------------------------------------------------------------------------- /docs/0.0.3/Protocols/Challenge.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/twilio/twilio-verify-ios/HEAD/docs/0.0.3/Protocols/Challenge.html -------------------------------------------------------------------------------- /docs/0.0.3/Protocols/ChallengeList.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/twilio/twilio-verify-ios/HEAD/docs/0.0.3/Protocols/ChallengeList.html -------------------------------------------------------------------------------- /docs/0.0.3/Protocols/Factor.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/twilio/twilio-verify-ios/HEAD/docs/0.0.3/Protocols/Factor.html -------------------------------------------------------------------------------- /docs/0.0.3/Protocols/FactorPayload.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/twilio/twilio-verify-ios/HEAD/docs/0.0.3/Protocols/FactorPayload.html -------------------------------------------------------------------------------- /docs/0.0.3/Protocols/Metadata.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/twilio/twilio-verify-ios/HEAD/docs/0.0.3/Protocols/Metadata.html -------------------------------------------------------------------------------- /docs/0.0.3/Protocols/TwilioVerify.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/twilio/twilio-verify-ios/HEAD/docs/0.0.3/Protocols/TwilioVerify.html -------------------------------------------------------------------------------- /docs/0.0.3/Structs.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/twilio/twilio-verify-ios/HEAD/docs/0.0.3/Structs.html -------------------------------------------------------------------------------- /docs/0.0.3/Structs/ChallengeDetails.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/twilio/twilio-verify-ios/HEAD/docs/0.0.3/Structs/ChallengeDetails.html -------------------------------------------------------------------------------- /docs/0.0.3/Structs/ChallengeListPayload.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/twilio/twilio-verify-ios/HEAD/docs/0.0.3/Structs/ChallengeListPayload.html -------------------------------------------------------------------------------- /docs/0.0.3/Structs/Detail.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/twilio/twilio-verify-ios/HEAD/docs/0.0.3/Structs/Detail.html -------------------------------------------------------------------------------- /docs/0.0.3/Structs/PushFactorPayload.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/twilio/twilio-verify-ios/HEAD/docs/0.0.3/Structs/PushFactorPayload.html -------------------------------------------------------------------------------- /docs/0.0.3/badge.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/twilio/twilio-verify-ios/HEAD/docs/0.0.3/badge.svg -------------------------------------------------------------------------------- /docs/0.0.3/css/highlight.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/twilio/twilio-verify-ios/HEAD/docs/0.0.3/css/highlight.css -------------------------------------------------------------------------------- /docs/0.0.3/css/jazzy.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/twilio/twilio-verify-ios/HEAD/docs/0.0.3/css/jazzy.css -------------------------------------------------------------------------------- /docs/0.0.3/docsets/.tgz: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/twilio/twilio-verify-ios/HEAD/docs/0.0.3/docsets/.tgz -------------------------------------------------------------------------------- /docs/0.0.3/img/carat.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/twilio/twilio-verify-ios/HEAD/docs/0.0.3/img/carat.png -------------------------------------------------------------------------------- /docs/0.0.3/img/dash.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/twilio/twilio-verify-ios/HEAD/docs/0.0.3/img/dash.png -------------------------------------------------------------------------------- /docs/0.0.3/img/gh.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/twilio/twilio-verify-ios/HEAD/docs/0.0.3/img/gh.png -------------------------------------------------------------------------------- /docs/0.0.3/img/spinner.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/twilio/twilio-verify-ios/HEAD/docs/0.0.3/img/spinner.gif -------------------------------------------------------------------------------- /docs/0.0.3/index.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/twilio/twilio-verify-ios/HEAD/docs/0.0.3/index.html -------------------------------------------------------------------------------- /docs/0.0.3/js/jazzy.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/twilio/twilio-verify-ios/HEAD/docs/0.0.3/js/jazzy.js -------------------------------------------------------------------------------- /docs/0.0.3/js/jazzy.search.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/twilio/twilio-verify-ios/HEAD/docs/0.0.3/js/jazzy.search.js -------------------------------------------------------------------------------- /docs/0.0.3/js/jquery.min.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/twilio/twilio-verify-ios/HEAD/docs/0.0.3/js/jquery.min.js -------------------------------------------------------------------------------- /docs/0.0.3/js/lunr.min.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/twilio/twilio-verify-ios/HEAD/docs/0.0.3/js/lunr.min.js -------------------------------------------------------------------------------- /docs/0.0.3/js/typeahead.jquery.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/twilio/twilio-verify-ios/HEAD/docs/0.0.3/js/typeahead.jquery.js -------------------------------------------------------------------------------- /docs/0.0.3/search.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/twilio/twilio-verify-ios/HEAD/docs/0.0.3/search.json -------------------------------------------------------------------------------- /docs/0.0.3/undocumented.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/twilio/twilio-verify-ios/HEAD/docs/0.0.3/undocumented.json -------------------------------------------------------------------------------- /docs/0.0.4/Classes.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/twilio/twilio-verify-ios/HEAD/docs/0.0.4/Classes.html -------------------------------------------------------------------------------- /docs/0.0.4/Classes/TwilioVerifyBuilder.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/twilio/twilio-verify-ios/HEAD/docs/0.0.4/Classes/TwilioVerifyBuilder.html -------------------------------------------------------------------------------- /docs/0.0.4/Classes/TwilioVerifyManager.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/twilio/twilio-verify-ios/HEAD/docs/0.0.4/Classes/TwilioVerifyManager.html -------------------------------------------------------------------------------- /docs/0.0.4/Enums.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/twilio/twilio-verify-ios/HEAD/docs/0.0.4/Enums.html -------------------------------------------------------------------------------- /docs/0.0.4/Enums/ChallengeStatus.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/twilio/twilio-verify-ios/HEAD/docs/0.0.4/Enums/ChallengeStatus.html -------------------------------------------------------------------------------- /docs/0.0.4/Enums/FactorStatus.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/twilio/twilio-verify-ios/HEAD/docs/0.0.4/Enums/FactorStatus.html -------------------------------------------------------------------------------- /docs/0.0.4/Enums/FactorType.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/twilio/twilio-verify-ios/HEAD/docs/0.0.4/Enums/FactorType.html -------------------------------------------------------------------------------- /docs/0.0.4/Enums/TwilioVerifyError.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/twilio/twilio-verify-ios/HEAD/docs/0.0.4/Enums/TwilioVerifyError.html -------------------------------------------------------------------------------- /docs/0.0.4/Protocols.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/twilio/twilio-verify-ios/HEAD/docs/0.0.4/Protocols.html -------------------------------------------------------------------------------- /docs/0.0.4/Protocols/Challenge.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/twilio/twilio-verify-ios/HEAD/docs/0.0.4/Protocols/Challenge.html -------------------------------------------------------------------------------- /docs/0.0.4/Protocols/ChallengeList.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/twilio/twilio-verify-ios/HEAD/docs/0.0.4/Protocols/ChallengeList.html -------------------------------------------------------------------------------- /docs/0.0.4/Protocols/Factor.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/twilio/twilio-verify-ios/HEAD/docs/0.0.4/Protocols/Factor.html -------------------------------------------------------------------------------- /docs/0.0.4/Protocols/FactorPayload.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/twilio/twilio-verify-ios/HEAD/docs/0.0.4/Protocols/FactorPayload.html -------------------------------------------------------------------------------- /docs/0.0.4/Protocols/Metadata.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/twilio/twilio-verify-ios/HEAD/docs/0.0.4/Protocols/Metadata.html -------------------------------------------------------------------------------- /docs/0.0.4/Protocols/TwilioVerify.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/twilio/twilio-verify-ios/HEAD/docs/0.0.4/Protocols/TwilioVerify.html -------------------------------------------------------------------------------- /docs/0.0.4/Structs.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/twilio/twilio-verify-ios/HEAD/docs/0.0.4/Structs.html -------------------------------------------------------------------------------- /docs/0.0.4/Structs/ChallengeDetails.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/twilio/twilio-verify-ios/HEAD/docs/0.0.4/Structs/ChallengeDetails.html -------------------------------------------------------------------------------- /docs/0.0.4/Structs/ChallengeListPayload.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/twilio/twilio-verify-ios/HEAD/docs/0.0.4/Structs/ChallengeListPayload.html -------------------------------------------------------------------------------- /docs/0.0.4/Structs/Detail.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/twilio/twilio-verify-ios/HEAD/docs/0.0.4/Structs/Detail.html -------------------------------------------------------------------------------- /docs/0.0.4/Structs/PushFactorPayload.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/twilio/twilio-verify-ios/HEAD/docs/0.0.4/Structs/PushFactorPayload.html -------------------------------------------------------------------------------- /docs/0.0.4/badge.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/twilio/twilio-verify-ios/HEAD/docs/0.0.4/badge.svg -------------------------------------------------------------------------------- /docs/0.0.4/css/highlight.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/twilio/twilio-verify-ios/HEAD/docs/0.0.4/css/highlight.css -------------------------------------------------------------------------------- /docs/0.0.4/css/jazzy.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/twilio/twilio-verify-ios/HEAD/docs/0.0.4/css/jazzy.css -------------------------------------------------------------------------------- /docs/0.0.4/docsets/.tgz: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/twilio/twilio-verify-ios/HEAD/docs/0.0.4/docsets/.tgz -------------------------------------------------------------------------------- /docs/0.0.4/img/carat.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/twilio/twilio-verify-ios/HEAD/docs/0.0.4/img/carat.png -------------------------------------------------------------------------------- /docs/0.0.4/img/dash.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/twilio/twilio-verify-ios/HEAD/docs/0.0.4/img/dash.png -------------------------------------------------------------------------------- /docs/0.0.4/img/gh.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/twilio/twilio-verify-ios/HEAD/docs/0.0.4/img/gh.png -------------------------------------------------------------------------------- /docs/0.0.4/img/spinner.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/twilio/twilio-verify-ios/HEAD/docs/0.0.4/img/spinner.gif -------------------------------------------------------------------------------- /docs/0.0.4/index.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/twilio/twilio-verify-ios/HEAD/docs/0.0.4/index.html -------------------------------------------------------------------------------- /docs/0.0.4/js/jazzy.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/twilio/twilio-verify-ios/HEAD/docs/0.0.4/js/jazzy.js -------------------------------------------------------------------------------- /docs/0.0.4/js/jazzy.search.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/twilio/twilio-verify-ios/HEAD/docs/0.0.4/js/jazzy.search.js -------------------------------------------------------------------------------- /docs/0.0.4/js/jquery.min.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/twilio/twilio-verify-ios/HEAD/docs/0.0.4/js/jquery.min.js -------------------------------------------------------------------------------- /docs/0.0.4/js/lunr.min.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/twilio/twilio-verify-ios/HEAD/docs/0.0.4/js/lunr.min.js -------------------------------------------------------------------------------- /docs/0.0.4/js/typeahead.jquery.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/twilio/twilio-verify-ios/HEAD/docs/0.0.4/js/typeahead.jquery.js -------------------------------------------------------------------------------- /docs/0.0.4/search.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/twilio/twilio-verify-ios/HEAD/docs/0.0.4/search.json -------------------------------------------------------------------------------- /docs/0.0.4/undocumented.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/twilio/twilio-verify-ios/HEAD/docs/0.0.4/undocumented.json -------------------------------------------------------------------------------- /docs/0.1.0/Classes.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/twilio/twilio-verify-ios/HEAD/docs/0.1.0/Classes.html -------------------------------------------------------------------------------- /docs/0.1.0/Classes/TwilioVerifyBuilder.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/twilio/twilio-verify-ios/HEAD/docs/0.1.0/Classes/TwilioVerifyBuilder.html -------------------------------------------------------------------------------- /docs/0.1.0/Classes/TwilioVerifyManager.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/twilio/twilio-verify-ios/HEAD/docs/0.1.0/Classes/TwilioVerifyManager.html -------------------------------------------------------------------------------- /docs/0.1.0/Enums.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/twilio/twilio-verify-ios/HEAD/docs/0.1.0/Enums.html -------------------------------------------------------------------------------- /docs/0.1.0/Enums/ChallengeStatus.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/twilio/twilio-verify-ios/HEAD/docs/0.1.0/Enums/ChallengeStatus.html -------------------------------------------------------------------------------- /docs/0.1.0/Enums/FactorStatus.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/twilio/twilio-verify-ios/HEAD/docs/0.1.0/Enums/FactorStatus.html -------------------------------------------------------------------------------- /docs/0.1.0/Enums/FactorType.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/twilio/twilio-verify-ios/HEAD/docs/0.1.0/Enums/FactorType.html -------------------------------------------------------------------------------- /docs/0.1.0/Enums/TwilioVerifyError.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/twilio/twilio-verify-ios/HEAD/docs/0.1.0/Enums/TwilioVerifyError.html -------------------------------------------------------------------------------- /docs/0.1.0/Protocols.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/twilio/twilio-verify-ios/HEAD/docs/0.1.0/Protocols.html -------------------------------------------------------------------------------- /docs/0.1.0/Protocols/Challenge.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/twilio/twilio-verify-ios/HEAD/docs/0.1.0/Protocols/Challenge.html -------------------------------------------------------------------------------- /docs/0.1.0/Protocols/ChallengeList.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/twilio/twilio-verify-ios/HEAD/docs/0.1.0/Protocols/ChallengeList.html -------------------------------------------------------------------------------- /docs/0.1.0/Protocols/Factor.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/twilio/twilio-verify-ios/HEAD/docs/0.1.0/Protocols/Factor.html -------------------------------------------------------------------------------- /docs/0.1.0/Protocols/FactorPayload.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/twilio/twilio-verify-ios/HEAD/docs/0.1.0/Protocols/FactorPayload.html -------------------------------------------------------------------------------- /docs/0.1.0/Protocols/Metadata.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/twilio/twilio-verify-ios/HEAD/docs/0.1.0/Protocols/Metadata.html -------------------------------------------------------------------------------- /docs/0.1.0/Protocols/TwilioVerify.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/twilio/twilio-verify-ios/HEAD/docs/0.1.0/Protocols/TwilioVerify.html -------------------------------------------------------------------------------- /docs/0.1.0/Structs.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/twilio/twilio-verify-ios/HEAD/docs/0.1.0/Structs.html -------------------------------------------------------------------------------- /docs/0.1.0/Structs/ChallengeDetails.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/twilio/twilio-verify-ios/HEAD/docs/0.1.0/Structs/ChallengeDetails.html -------------------------------------------------------------------------------- /docs/0.1.0/Structs/ChallengeListPayload.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/twilio/twilio-verify-ios/HEAD/docs/0.1.0/Structs/ChallengeListPayload.html -------------------------------------------------------------------------------- /docs/0.1.0/Structs/Detail.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/twilio/twilio-verify-ios/HEAD/docs/0.1.0/Structs/Detail.html -------------------------------------------------------------------------------- /docs/0.1.0/Structs/PushFactorPayload.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/twilio/twilio-verify-ios/HEAD/docs/0.1.0/Structs/PushFactorPayload.html -------------------------------------------------------------------------------- /docs/0.1.0/badge.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/twilio/twilio-verify-ios/HEAD/docs/0.1.0/badge.svg -------------------------------------------------------------------------------- /docs/0.1.0/css/highlight.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/twilio/twilio-verify-ios/HEAD/docs/0.1.0/css/highlight.css -------------------------------------------------------------------------------- /docs/0.1.0/css/jazzy.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/twilio/twilio-verify-ios/HEAD/docs/0.1.0/css/jazzy.css -------------------------------------------------------------------------------- /docs/0.1.0/docsets/TwilioVerify.tgz: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/twilio/twilio-verify-ios/HEAD/docs/0.1.0/docsets/TwilioVerify.tgz -------------------------------------------------------------------------------- /docs/0.1.0/img/carat.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/twilio/twilio-verify-ios/HEAD/docs/0.1.0/img/carat.png -------------------------------------------------------------------------------- /docs/0.1.0/img/dash.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/twilio/twilio-verify-ios/HEAD/docs/0.1.0/img/dash.png -------------------------------------------------------------------------------- /docs/0.1.0/img/gh.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/twilio/twilio-verify-ios/HEAD/docs/0.1.0/img/gh.png -------------------------------------------------------------------------------- /docs/0.1.0/img/spinner.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/twilio/twilio-verify-ios/HEAD/docs/0.1.0/img/spinner.gif -------------------------------------------------------------------------------- /docs/0.1.0/index.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/twilio/twilio-verify-ios/HEAD/docs/0.1.0/index.html -------------------------------------------------------------------------------- /docs/0.1.0/js/jazzy.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/twilio/twilio-verify-ios/HEAD/docs/0.1.0/js/jazzy.js -------------------------------------------------------------------------------- /docs/0.1.0/js/jazzy.search.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/twilio/twilio-verify-ios/HEAD/docs/0.1.0/js/jazzy.search.js -------------------------------------------------------------------------------- /docs/0.1.0/js/jquery.min.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/twilio/twilio-verify-ios/HEAD/docs/0.1.0/js/jquery.min.js -------------------------------------------------------------------------------- /docs/0.1.0/js/lunr.min.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/twilio/twilio-verify-ios/HEAD/docs/0.1.0/js/lunr.min.js -------------------------------------------------------------------------------- /docs/0.1.0/js/typeahead.jquery.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/twilio/twilio-verify-ios/HEAD/docs/0.1.0/js/typeahead.jquery.js -------------------------------------------------------------------------------- /docs/0.1.0/search.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/twilio/twilio-verify-ios/HEAD/docs/0.1.0/search.json -------------------------------------------------------------------------------- /docs/0.1.0/undocumented.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/twilio/twilio-verify-ios/HEAD/docs/0.1.0/undocumented.json -------------------------------------------------------------------------------- /docs/0.1.1/Classes.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/twilio/twilio-verify-ios/HEAD/docs/0.1.1/Classes.html -------------------------------------------------------------------------------- /docs/0.1.1/Classes/TwilioVerifyBuilder.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/twilio/twilio-verify-ios/HEAD/docs/0.1.1/Classes/TwilioVerifyBuilder.html -------------------------------------------------------------------------------- /docs/0.1.1/Classes/TwilioVerifyManager.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/twilio/twilio-verify-ios/HEAD/docs/0.1.1/Classes/TwilioVerifyManager.html -------------------------------------------------------------------------------- /docs/0.1.1/Enums.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/twilio/twilio-verify-ios/HEAD/docs/0.1.1/Enums.html -------------------------------------------------------------------------------- /docs/0.1.1/Enums/ChallengeStatus.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/twilio/twilio-verify-ios/HEAD/docs/0.1.1/Enums/ChallengeStatus.html -------------------------------------------------------------------------------- /docs/0.1.1/Enums/FactorStatus.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/twilio/twilio-verify-ios/HEAD/docs/0.1.1/Enums/FactorStatus.html -------------------------------------------------------------------------------- /docs/0.1.1/Enums/FactorType.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/twilio/twilio-verify-ios/HEAD/docs/0.1.1/Enums/FactorType.html -------------------------------------------------------------------------------- /docs/0.1.1/Enums/TwilioVerifyError.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/twilio/twilio-verify-ios/HEAD/docs/0.1.1/Enums/TwilioVerifyError.html -------------------------------------------------------------------------------- /docs/0.1.1/Protocols.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/twilio/twilio-verify-ios/HEAD/docs/0.1.1/Protocols.html -------------------------------------------------------------------------------- /docs/0.1.1/Protocols/Challenge.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/twilio/twilio-verify-ios/HEAD/docs/0.1.1/Protocols/Challenge.html -------------------------------------------------------------------------------- /docs/0.1.1/Protocols/ChallengeList.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/twilio/twilio-verify-ios/HEAD/docs/0.1.1/Protocols/ChallengeList.html -------------------------------------------------------------------------------- /docs/0.1.1/Protocols/Factor.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/twilio/twilio-verify-ios/HEAD/docs/0.1.1/Protocols/Factor.html -------------------------------------------------------------------------------- /docs/0.1.1/Protocols/FactorPayload.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/twilio/twilio-verify-ios/HEAD/docs/0.1.1/Protocols/FactorPayload.html -------------------------------------------------------------------------------- /docs/0.1.1/Protocols/Metadata.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/twilio/twilio-verify-ios/HEAD/docs/0.1.1/Protocols/Metadata.html -------------------------------------------------------------------------------- /docs/0.1.1/Protocols/TwilioVerify.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/twilio/twilio-verify-ios/HEAD/docs/0.1.1/Protocols/TwilioVerify.html -------------------------------------------------------------------------------- /docs/0.1.1/Structs.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/twilio/twilio-verify-ios/HEAD/docs/0.1.1/Structs.html -------------------------------------------------------------------------------- /docs/0.1.1/Structs/ChallengeDetails.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/twilio/twilio-verify-ios/HEAD/docs/0.1.1/Structs/ChallengeDetails.html -------------------------------------------------------------------------------- /docs/0.1.1/Structs/ChallengeListPayload.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/twilio/twilio-verify-ios/HEAD/docs/0.1.1/Structs/ChallengeListPayload.html -------------------------------------------------------------------------------- /docs/0.1.1/Structs/Detail.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/twilio/twilio-verify-ios/HEAD/docs/0.1.1/Structs/Detail.html -------------------------------------------------------------------------------- /docs/0.1.1/Structs/PushFactorPayload.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/twilio/twilio-verify-ios/HEAD/docs/0.1.1/Structs/PushFactorPayload.html -------------------------------------------------------------------------------- /docs/0.1.1/badge.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/twilio/twilio-verify-ios/HEAD/docs/0.1.1/badge.svg -------------------------------------------------------------------------------- /docs/0.1.1/css/highlight.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/twilio/twilio-verify-ios/HEAD/docs/0.1.1/css/highlight.css -------------------------------------------------------------------------------- /docs/0.1.1/css/jazzy.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/twilio/twilio-verify-ios/HEAD/docs/0.1.1/css/jazzy.css -------------------------------------------------------------------------------- /docs/0.1.1/docsets/TwilioVerify.tgz: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/twilio/twilio-verify-ios/HEAD/docs/0.1.1/docsets/TwilioVerify.tgz -------------------------------------------------------------------------------- /docs/0.1.1/img/carat.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/twilio/twilio-verify-ios/HEAD/docs/0.1.1/img/carat.png -------------------------------------------------------------------------------- /docs/0.1.1/img/dash.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/twilio/twilio-verify-ios/HEAD/docs/0.1.1/img/dash.png -------------------------------------------------------------------------------- /docs/0.1.1/img/gh.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/twilio/twilio-verify-ios/HEAD/docs/0.1.1/img/gh.png -------------------------------------------------------------------------------- /docs/0.1.1/img/spinner.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/twilio/twilio-verify-ios/HEAD/docs/0.1.1/img/spinner.gif -------------------------------------------------------------------------------- /docs/0.1.1/index.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/twilio/twilio-verify-ios/HEAD/docs/0.1.1/index.html -------------------------------------------------------------------------------- /docs/0.1.1/js/jazzy.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/twilio/twilio-verify-ios/HEAD/docs/0.1.1/js/jazzy.js -------------------------------------------------------------------------------- /docs/0.1.1/js/jazzy.search.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/twilio/twilio-verify-ios/HEAD/docs/0.1.1/js/jazzy.search.js -------------------------------------------------------------------------------- /docs/0.1.1/js/jquery.min.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/twilio/twilio-verify-ios/HEAD/docs/0.1.1/js/jquery.min.js -------------------------------------------------------------------------------- /docs/0.1.1/js/lunr.min.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/twilio/twilio-verify-ios/HEAD/docs/0.1.1/js/lunr.min.js -------------------------------------------------------------------------------- /docs/0.1.1/js/typeahead.jquery.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/twilio/twilio-verify-ios/HEAD/docs/0.1.1/js/typeahead.jquery.js -------------------------------------------------------------------------------- /docs/0.1.1/search.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/twilio/twilio-verify-ios/HEAD/docs/0.1.1/search.json -------------------------------------------------------------------------------- /docs/0.1.1/undocumented.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/twilio/twilio-verify-ios/HEAD/docs/0.1.1/undocumented.json -------------------------------------------------------------------------------- /docs/0.2.0/Classes.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/twilio/twilio-verify-ios/HEAD/docs/0.2.0/Classes.html -------------------------------------------------------------------------------- /docs/0.2.0/Classes/TwilioVerifyBuilder.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/twilio/twilio-verify-ios/HEAD/docs/0.2.0/Classes/TwilioVerifyBuilder.html -------------------------------------------------------------------------------- /docs/0.2.0/Classes/TwilioVerifyManager.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/twilio/twilio-verify-ios/HEAD/docs/0.2.0/Classes/TwilioVerifyManager.html -------------------------------------------------------------------------------- /docs/0.2.0/Enums.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/twilio/twilio-verify-ios/HEAD/docs/0.2.0/Enums.html -------------------------------------------------------------------------------- /docs/0.2.0/Enums/ChallengeStatus.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/twilio/twilio-verify-ios/HEAD/docs/0.2.0/Enums/ChallengeStatus.html -------------------------------------------------------------------------------- /docs/0.2.0/Enums/FactorStatus.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/twilio/twilio-verify-ios/HEAD/docs/0.2.0/Enums/FactorStatus.html -------------------------------------------------------------------------------- /docs/0.2.0/Enums/FactorType.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/twilio/twilio-verify-ios/HEAD/docs/0.2.0/Enums/FactorType.html -------------------------------------------------------------------------------- /docs/0.2.0/Enums/TwilioVerifyError.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/twilio/twilio-verify-ios/HEAD/docs/0.2.0/Enums/TwilioVerifyError.html -------------------------------------------------------------------------------- /docs/0.2.0/Protocols.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/twilio/twilio-verify-ios/HEAD/docs/0.2.0/Protocols.html -------------------------------------------------------------------------------- /docs/0.2.0/Protocols/Challenge.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/twilio/twilio-verify-ios/HEAD/docs/0.2.0/Protocols/Challenge.html -------------------------------------------------------------------------------- /docs/0.2.0/Protocols/ChallengeList.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/twilio/twilio-verify-ios/HEAD/docs/0.2.0/Protocols/ChallengeList.html -------------------------------------------------------------------------------- /docs/0.2.0/Protocols/Factor.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/twilio/twilio-verify-ios/HEAD/docs/0.2.0/Protocols/Factor.html -------------------------------------------------------------------------------- /docs/0.2.0/Protocols/FactorPayload.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/twilio/twilio-verify-ios/HEAD/docs/0.2.0/Protocols/FactorPayload.html -------------------------------------------------------------------------------- /docs/0.2.0/Protocols/Metadata.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/twilio/twilio-verify-ios/HEAD/docs/0.2.0/Protocols/Metadata.html -------------------------------------------------------------------------------- /docs/0.2.0/Protocols/TwilioVerify.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/twilio/twilio-verify-ios/HEAD/docs/0.2.0/Protocols/TwilioVerify.html -------------------------------------------------------------------------------- /docs/0.2.0/Structs.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/twilio/twilio-verify-ios/HEAD/docs/0.2.0/Structs.html -------------------------------------------------------------------------------- /docs/0.2.0/Structs/ChallengeDetails.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/twilio/twilio-verify-ios/HEAD/docs/0.2.0/Structs/ChallengeDetails.html -------------------------------------------------------------------------------- /docs/0.2.0/Structs/ChallengeListPayload.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/twilio/twilio-verify-ios/HEAD/docs/0.2.0/Structs/ChallengeListPayload.html -------------------------------------------------------------------------------- /docs/0.2.0/Structs/Detail.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/twilio/twilio-verify-ios/HEAD/docs/0.2.0/Structs/Detail.html -------------------------------------------------------------------------------- /docs/0.2.0/Structs/PushFactorPayload.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/twilio/twilio-verify-ios/HEAD/docs/0.2.0/Structs/PushFactorPayload.html -------------------------------------------------------------------------------- /docs/0.2.0/badge.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/twilio/twilio-verify-ios/HEAD/docs/0.2.0/badge.svg -------------------------------------------------------------------------------- /docs/0.2.0/css/highlight.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/twilio/twilio-verify-ios/HEAD/docs/0.2.0/css/highlight.css -------------------------------------------------------------------------------- /docs/0.2.0/css/jazzy.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/twilio/twilio-verify-ios/HEAD/docs/0.2.0/css/jazzy.css -------------------------------------------------------------------------------- /docs/0.2.0/docsets/TwilioVerify.tgz: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/twilio/twilio-verify-ios/HEAD/docs/0.2.0/docsets/TwilioVerify.tgz -------------------------------------------------------------------------------- /docs/0.2.0/img/carat.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/twilio/twilio-verify-ios/HEAD/docs/0.2.0/img/carat.png -------------------------------------------------------------------------------- /docs/0.2.0/img/dash.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/twilio/twilio-verify-ios/HEAD/docs/0.2.0/img/dash.png -------------------------------------------------------------------------------- /docs/0.2.0/img/gh.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/twilio/twilio-verify-ios/HEAD/docs/0.2.0/img/gh.png -------------------------------------------------------------------------------- /docs/0.2.0/img/spinner.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/twilio/twilio-verify-ios/HEAD/docs/0.2.0/img/spinner.gif -------------------------------------------------------------------------------- /docs/0.2.0/index.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/twilio/twilio-verify-ios/HEAD/docs/0.2.0/index.html -------------------------------------------------------------------------------- /docs/0.2.0/js/jazzy.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/twilio/twilio-verify-ios/HEAD/docs/0.2.0/js/jazzy.js -------------------------------------------------------------------------------- /docs/0.2.0/js/jazzy.search.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/twilio/twilio-verify-ios/HEAD/docs/0.2.0/js/jazzy.search.js -------------------------------------------------------------------------------- /docs/0.2.0/js/jquery.min.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/twilio/twilio-verify-ios/HEAD/docs/0.2.0/js/jquery.min.js -------------------------------------------------------------------------------- /docs/0.2.0/js/lunr.min.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/twilio/twilio-verify-ios/HEAD/docs/0.2.0/js/lunr.min.js -------------------------------------------------------------------------------- /docs/0.2.0/js/typeahead.jquery.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/twilio/twilio-verify-ios/HEAD/docs/0.2.0/js/typeahead.jquery.js -------------------------------------------------------------------------------- /docs/0.2.0/search.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/twilio/twilio-verify-ios/HEAD/docs/0.2.0/search.json -------------------------------------------------------------------------------- /docs/0.2.0/undocumented.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/twilio/twilio-verify-ios/HEAD/docs/0.2.0/undocumented.json -------------------------------------------------------------------------------- /docs/0.3.0/Classes.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/twilio/twilio-verify-ios/HEAD/docs/0.3.0/Classes.html -------------------------------------------------------------------------------- /docs/0.3.0/Classes/TwilioVerifyBuilder.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/twilio/twilio-verify-ios/HEAD/docs/0.3.0/Classes/TwilioVerifyBuilder.html -------------------------------------------------------------------------------- /docs/0.3.0/Classes/TwilioVerifyManager.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/twilio/twilio-verify-ios/HEAD/docs/0.3.0/Classes/TwilioVerifyManager.html -------------------------------------------------------------------------------- /docs/0.3.0/Enums.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/twilio/twilio-verify-ios/HEAD/docs/0.3.0/Enums.html -------------------------------------------------------------------------------- /docs/0.3.0/Enums/ChallengeStatus.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/twilio/twilio-verify-ios/HEAD/docs/0.3.0/Enums/ChallengeStatus.html -------------------------------------------------------------------------------- /docs/0.3.0/Enums/FactorStatus.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/twilio/twilio-verify-ios/HEAD/docs/0.3.0/Enums/FactorStatus.html -------------------------------------------------------------------------------- /docs/0.3.0/Enums/FactorType.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/twilio/twilio-verify-ios/HEAD/docs/0.3.0/Enums/FactorType.html -------------------------------------------------------------------------------- /docs/0.3.0/Enums/TwilioVerifyError.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/twilio/twilio-verify-ios/HEAD/docs/0.3.0/Enums/TwilioVerifyError.html -------------------------------------------------------------------------------- /docs/0.3.0/Protocols.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/twilio/twilio-verify-ios/HEAD/docs/0.3.0/Protocols.html -------------------------------------------------------------------------------- /docs/0.3.0/Protocols/Challenge.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/twilio/twilio-verify-ios/HEAD/docs/0.3.0/Protocols/Challenge.html -------------------------------------------------------------------------------- /docs/0.3.0/Protocols/ChallengeList.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/twilio/twilio-verify-ios/HEAD/docs/0.3.0/Protocols/ChallengeList.html -------------------------------------------------------------------------------- /docs/0.3.0/Protocols/Factor.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/twilio/twilio-verify-ios/HEAD/docs/0.3.0/Protocols/Factor.html -------------------------------------------------------------------------------- /docs/0.3.0/Protocols/FactorPayload.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/twilio/twilio-verify-ios/HEAD/docs/0.3.0/Protocols/FactorPayload.html -------------------------------------------------------------------------------- /docs/0.3.0/Protocols/Metadata.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/twilio/twilio-verify-ios/HEAD/docs/0.3.0/Protocols/Metadata.html -------------------------------------------------------------------------------- /docs/0.3.0/Protocols/TwilioVerify.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/twilio/twilio-verify-ios/HEAD/docs/0.3.0/Protocols/TwilioVerify.html -------------------------------------------------------------------------------- /docs/0.3.0/Structs.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/twilio/twilio-verify-ios/HEAD/docs/0.3.0/Structs.html -------------------------------------------------------------------------------- /docs/0.3.0/Structs/ChallengeDetails.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/twilio/twilio-verify-ios/HEAD/docs/0.3.0/Structs/ChallengeDetails.html -------------------------------------------------------------------------------- /docs/0.3.0/Structs/ChallengeListPayload.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/twilio/twilio-verify-ios/HEAD/docs/0.3.0/Structs/ChallengeListPayload.html -------------------------------------------------------------------------------- /docs/0.3.0/Structs/Detail.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/twilio/twilio-verify-ios/HEAD/docs/0.3.0/Structs/Detail.html -------------------------------------------------------------------------------- /docs/0.3.0/Structs/PushFactorPayload.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/twilio/twilio-verify-ios/HEAD/docs/0.3.0/Structs/PushFactorPayload.html -------------------------------------------------------------------------------- /docs/0.3.0/badge.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/twilio/twilio-verify-ios/HEAD/docs/0.3.0/badge.svg -------------------------------------------------------------------------------- /docs/0.3.0/css/highlight.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/twilio/twilio-verify-ios/HEAD/docs/0.3.0/css/highlight.css -------------------------------------------------------------------------------- /docs/0.3.0/css/jazzy.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/twilio/twilio-verify-ios/HEAD/docs/0.3.0/css/jazzy.css -------------------------------------------------------------------------------- /docs/0.3.0/docsets/TwilioVerify.tgz: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/twilio/twilio-verify-ios/HEAD/docs/0.3.0/docsets/TwilioVerify.tgz -------------------------------------------------------------------------------- /docs/0.3.0/img/carat.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/twilio/twilio-verify-ios/HEAD/docs/0.3.0/img/carat.png -------------------------------------------------------------------------------- /docs/0.3.0/img/dash.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/twilio/twilio-verify-ios/HEAD/docs/0.3.0/img/dash.png -------------------------------------------------------------------------------- /docs/0.3.0/img/gh.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/twilio/twilio-verify-ios/HEAD/docs/0.3.0/img/gh.png -------------------------------------------------------------------------------- /docs/0.3.0/img/spinner.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/twilio/twilio-verify-ios/HEAD/docs/0.3.0/img/spinner.gif -------------------------------------------------------------------------------- /docs/0.3.0/index.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/twilio/twilio-verify-ios/HEAD/docs/0.3.0/index.html -------------------------------------------------------------------------------- /docs/0.3.0/js/jazzy.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/twilio/twilio-verify-ios/HEAD/docs/0.3.0/js/jazzy.js -------------------------------------------------------------------------------- /docs/0.3.0/js/jazzy.search.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/twilio/twilio-verify-ios/HEAD/docs/0.3.0/js/jazzy.search.js -------------------------------------------------------------------------------- /docs/0.3.0/js/jquery.min.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/twilio/twilio-verify-ios/HEAD/docs/0.3.0/js/jquery.min.js -------------------------------------------------------------------------------- /docs/0.3.0/js/lunr.min.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/twilio/twilio-verify-ios/HEAD/docs/0.3.0/js/lunr.min.js -------------------------------------------------------------------------------- /docs/0.3.0/js/typeahead.jquery.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/twilio/twilio-verify-ios/HEAD/docs/0.3.0/js/typeahead.jquery.js -------------------------------------------------------------------------------- /docs/0.3.0/search.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/twilio/twilio-verify-ios/HEAD/docs/0.3.0/search.json -------------------------------------------------------------------------------- /docs/0.3.0/undocumented.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/twilio/twilio-verify-ios/HEAD/docs/0.3.0/undocumented.json -------------------------------------------------------------------------------- /docs/0.3.1/Classes.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/twilio/twilio-verify-ios/HEAD/docs/0.3.1/Classes.html -------------------------------------------------------------------------------- /docs/0.3.1/Classes/TwilioVerifyBuilder.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/twilio/twilio-verify-ios/HEAD/docs/0.3.1/Classes/TwilioVerifyBuilder.html -------------------------------------------------------------------------------- /docs/0.3.1/Classes/TwilioVerifyManager.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/twilio/twilio-verify-ios/HEAD/docs/0.3.1/Classes/TwilioVerifyManager.html -------------------------------------------------------------------------------- /docs/0.3.1/Enums.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/twilio/twilio-verify-ios/HEAD/docs/0.3.1/Enums.html -------------------------------------------------------------------------------- /docs/0.3.1/Enums/ChallengeStatus.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/twilio/twilio-verify-ios/HEAD/docs/0.3.1/Enums/ChallengeStatus.html -------------------------------------------------------------------------------- /docs/0.3.1/Enums/FactorStatus.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/twilio/twilio-verify-ios/HEAD/docs/0.3.1/Enums/FactorStatus.html -------------------------------------------------------------------------------- /docs/0.3.1/Enums/FactorType.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/twilio/twilio-verify-ios/HEAD/docs/0.3.1/Enums/FactorType.html -------------------------------------------------------------------------------- /docs/0.3.1/Enums/TwilioVerifyError.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/twilio/twilio-verify-ios/HEAD/docs/0.3.1/Enums/TwilioVerifyError.html -------------------------------------------------------------------------------- /docs/0.3.1/Protocols.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/twilio/twilio-verify-ios/HEAD/docs/0.3.1/Protocols.html -------------------------------------------------------------------------------- /docs/0.3.1/Protocols/Challenge.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/twilio/twilio-verify-ios/HEAD/docs/0.3.1/Protocols/Challenge.html -------------------------------------------------------------------------------- /docs/0.3.1/Protocols/ChallengeList.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/twilio/twilio-verify-ios/HEAD/docs/0.3.1/Protocols/ChallengeList.html -------------------------------------------------------------------------------- /docs/0.3.1/Protocols/Factor.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/twilio/twilio-verify-ios/HEAD/docs/0.3.1/Protocols/Factor.html -------------------------------------------------------------------------------- /docs/0.3.1/Protocols/FactorPayload.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/twilio/twilio-verify-ios/HEAD/docs/0.3.1/Protocols/FactorPayload.html -------------------------------------------------------------------------------- /docs/0.3.1/Protocols/Metadata.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/twilio/twilio-verify-ios/HEAD/docs/0.3.1/Protocols/Metadata.html -------------------------------------------------------------------------------- /docs/0.3.1/Protocols/TwilioVerify.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/twilio/twilio-verify-ios/HEAD/docs/0.3.1/Protocols/TwilioVerify.html -------------------------------------------------------------------------------- /docs/0.3.1/Structs.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/twilio/twilio-verify-ios/HEAD/docs/0.3.1/Structs.html -------------------------------------------------------------------------------- /docs/0.3.1/Structs/ChallengeDetails.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/twilio/twilio-verify-ios/HEAD/docs/0.3.1/Structs/ChallengeDetails.html -------------------------------------------------------------------------------- /docs/0.3.1/Structs/ChallengeListPayload.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/twilio/twilio-verify-ios/HEAD/docs/0.3.1/Structs/ChallengeListPayload.html -------------------------------------------------------------------------------- /docs/0.3.1/Structs/Detail.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/twilio/twilio-verify-ios/HEAD/docs/0.3.1/Structs/Detail.html -------------------------------------------------------------------------------- /docs/0.3.1/Structs/PushFactorPayload.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/twilio/twilio-verify-ios/HEAD/docs/0.3.1/Structs/PushFactorPayload.html -------------------------------------------------------------------------------- /docs/0.3.1/badge.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/twilio/twilio-verify-ios/HEAD/docs/0.3.1/badge.svg -------------------------------------------------------------------------------- /docs/0.3.1/css/highlight.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/twilio/twilio-verify-ios/HEAD/docs/0.3.1/css/highlight.css -------------------------------------------------------------------------------- /docs/0.3.1/css/jazzy.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/twilio/twilio-verify-ios/HEAD/docs/0.3.1/css/jazzy.css -------------------------------------------------------------------------------- /docs/0.3.1/docsets/TwilioVerify.tgz: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/twilio/twilio-verify-ios/HEAD/docs/0.3.1/docsets/TwilioVerify.tgz -------------------------------------------------------------------------------- /docs/0.3.1/img/carat.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/twilio/twilio-verify-ios/HEAD/docs/0.3.1/img/carat.png -------------------------------------------------------------------------------- /docs/0.3.1/img/dash.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/twilio/twilio-verify-ios/HEAD/docs/0.3.1/img/dash.png -------------------------------------------------------------------------------- /docs/0.3.1/img/gh.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/twilio/twilio-verify-ios/HEAD/docs/0.3.1/img/gh.png -------------------------------------------------------------------------------- /docs/0.3.1/img/spinner.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/twilio/twilio-verify-ios/HEAD/docs/0.3.1/img/spinner.gif -------------------------------------------------------------------------------- /docs/0.3.1/index.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/twilio/twilio-verify-ios/HEAD/docs/0.3.1/index.html -------------------------------------------------------------------------------- /docs/0.3.1/js/jazzy.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/twilio/twilio-verify-ios/HEAD/docs/0.3.1/js/jazzy.js -------------------------------------------------------------------------------- /docs/0.3.1/js/jazzy.search.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/twilio/twilio-verify-ios/HEAD/docs/0.3.1/js/jazzy.search.js -------------------------------------------------------------------------------- /docs/0.3.1/js/jquery.min.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/twilio/twilio-verify-ios/HEAD/docs/0.3.1/js/jquery.min.js -------------------------------------------------------------------------------- /docs/0.3.1/js/lunr.min.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/twilio/twilio-verify-ios/HEAD/docs/0.3.1/js/lunr.min.js -------------------------------------------------------------------------------- /docs/0.3.1/js/typeahead.jquery.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/twilio/twilio-verify-ios/HEAD/docs/0.3.1/js/typeahead.jquery.js -------------------------------------------------------------------------------- /docs/0.3.1/search.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/twilio/twilio-verify-ios/HEAD/docs/0.3.1/search.json -------------------------------------------------------------------------------- /docs/0.3.1/undocumented.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/twilio/twilio-verify-ios/HEAD/docs/0.3.1/undocumented.json -------------------------------------------------------------------------------- /docs/0.3.2/Classes.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/twilio/twilio-verify-ios/HEAD/docs/0.3.2/Classes.html -------------------------------------------------------------------------------- /docs/0.3.2/Classes/TwilioVerifyBuilder.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/twilio/twilio-verify-ios/HEAD/docs/0.3.2/Classes/TwilioVerifyBuilder.html -------------------------------------------------------------------------------- /docs/0.3.2/Classes/TwilioVerifyManager.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/twilio/twilio-verify-ios/HEAD/docs/0.3.2/Classes/TwilioVerifyManager.html -------------------------------------------------------------------------------- /docs/0.3.2/Enums.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/twilio/twilio-verify-ios/HEAD/docs/0.3.2/Enums.html -------------------------------------------------------------------------------- /docs/0.3.2/Enums/ChallengeStatus.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/twilio/twilio-verify-ios/HEAD/docs/0.3.2/Enums/ChallengeStatus.html -------------------------------------------------------------------------------- /docs/0.3.2/Enums/FactorStatus.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/twilio/twilio-verify-ios/HEAD/docs/0.3.2/Enums/FactorStatus.html -------------------------------------------------------------------------------- /docs/0.3.2/Enums/FactorType.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/twilio/twilio-verify-ios/HEAD/docs/0.3.2/Enums/FactorType.html -------------------------------------------------------------------------------- /docs/0.3.2/Enums/TwilioVerifyError.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/twilio/twilio-verify-ios/HEAD/docs/0.3.2/Enums/TwilioVerifyError.html -------------------------------------------------------------------------------- /docs/0.3.2/Protocols.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/twilio/twilio-verify-ios/HEAD/docs/0.3.2/Protocols.html -------------------------------------------------------------------------------- /docs/0.3.2/Protocols/Challenge.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/twilio/twilio-verify-ios/HEAD/docs/0.3.2/Protocols/Challenge.html -------------------------------------------------------------------------------- /docs/0.3.2/Protocols/ChallengeList.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/twilio/twilio-verify-ios/HEAD/docs/0.3.2/Protocols/ChallengeList.html -------------------------------------------------------------------------------- /docs/0.3.2/Protocols/Factor.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/twilio/twilio-verify-ios/HEAD/docs/0.3.2/Protocols/Factor.html -------------------------------------------------------------------------------- /docs/0.3.2/Protocols/FactorPayload.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/twilio/twilio-verify-ios/HEAD/docs/0.3.2/Protocols/FactorPayload.html -------------------------------------------------------------------------------- /docs/0.3.2/Protocols/Metadata.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/twilio/twilio-verify-ios/HEAD/docs/0.3.2/Protocols/Metadata.html -------------------------------------------------------------------------------- /docs/0.3.2/Protocols/TwilioVerify.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/twilio/twilio-verify-ios/HEAD/docs/0.3.2/Protocols/TwilioVerify.html -------------------------------------------------------------------------------- /docs/0.3.2/Structs.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/twilio/twilio-verify-ios/HEAD/docs/0.3.2/Structs.html -------------------------------------------------------------------------------- /docs/0.3.2/Structs/ChallengeDetails.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/twilio/twilio-verify-ios/HEAD/docs/0.3.2/Structs/ChallengeDetails.html -------------------------------------------------------------------------------- /docs/0.3.2/Structs/ChallengeListPayload.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/twilio/twilio-verify-ios/HEAD/docs/0.3.2/Structs/ChallengeListPayload.html -------------------------------------------------------------------------------- /docs/0.3.2/Structs/Detail.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/twilio/twilio-verify-ios/HEAD/docs/0.3.2/Structs/Detail.html -------------------------------------------------------------------------------- /docs/0.3.2/Structs/PushFactorPayload.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/twilio/twilio-verify-ios/HEAD/docs/0.3.2/Structs/PushFactorPayload.html -------------------------------------------------------------------------------- /docs/0.3.2/badge.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/twilio/twilio-verify-ios/HEAD/docs/0.3.2/badge.svg -------------------------------------------------------------------------------- /docs/0.3.2/css/highlight.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/twilio/twilio-verify-ios/HEAD/docs/0.3.2/css/highlight.css -------------------------------------------------------------------------------- /docs/0.3.2/css/jazzy.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/twilio/twilio-verify-ios/HEAD/docs/0.3.2/css/jazzy.css -------------------------------------------------------------------------------- /docs/0.3.2/docsets/TwilioVerify.tgz: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/twilio/twilio-verify-ios/HEAD/docs/0.3.2/docsets/TwilioVerify.tgz -------------------------------------------------------------------------------- /docs/0.3.2/img/carat.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/twilio/twilio-verify-ios/HEAD/docs/0.3.2/img/carat.png -------------------------------------------------------------------------------- /docs/0.3.2/img/dash.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/twilio/twilio-verify-ios/HEAD/docs/0.3.2/img/dash.png -------------------------------------------------------------------------------- /docs/0.3.2/img/gh.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/twilio/twilio-verify-ios/HEAD/docs/0.3.2/img/gh.png -------------------------------------------------------------------------------- /docs/0.3.2/img/spinner.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/twilio/twilio-verify-ios/HEAD/docs/0.3.2/img/spinner.gif -------------------------------------------------------------------------------- /docs/0.3.2/index.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/twilio/twilio-verify-ios/HEAD/docs/0.3.2/index.html -------------------------------------------------------------------------------- /docs/0.3.2/js/jazzy.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/twilio/twilio-verify-ios/HEAD/docs/0.3.2/js/jazzy.js -------------------------------------------------------------------------------- /docs/0.3.2/js/jazzy.search.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/twilio/twilio-verify-ios/HEAD/docs/0.3.2/js/jazzy.search.js -------------------------------------------------------------------------------- /docs/0.3.2/js/jquery.min.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/twilio/twilio-verify-ios/HEAD/docs/0.3.2/js/jquery.min.js -------------------------------------------------------------------------------- /docs/0.3.2/js/lunr.min.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/twilio/twilio-verify-ios/HEAD/docs/0.3.2/js/lunr.min.js -------------------------------------------------------------------------------- /docs/0.3.2/js/typeahead.jquery.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/twilio/twilio-verify-ios/HEAD/docs/0.3.2/js/typeahead.jquery.js -------------------------------------------------------------------------------- /docs/0.3.2/search.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/twilio/twilio-verify-ios/HEAD/docs/0.3.2/search.json -------------------------------------------------------------------------------- /docs/0.3.2/undocumented.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/twilio/twilio-verify-ios/HEAD/docs/0.3.2/undocumented.json -------------------------------------------------------------------------------- /docs/0.4.0/Classes.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/twilio/twilio-verify-ios/HEAD/docs/0.4.0/Classes.html -------------------------------------------------------------------------------- /docs/0.4.0/Classes/TwilioVerifyBuilder.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/twilio/twilio-verify-ios/HEAD/docs/0.4.0/Classes/TwilioVerifyBuilder.html -------------------------------------------------------------------------------- /docs/0.4.0/Classes/TwilioVerifyManager.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/twilio/twilio-verify-ios/HEAD/docs/0.4.0/Classes/TwilioVerifyManager.html -------------------------------------------------------------------------------- /docs/0.4.0/Enums.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/twilio/twilio-verify-ios/HEAD/docs/0.4.0/Enums.html -------------------------------------------------------------------------------- /docs/0.4.0/Enums/ChallengeStatus.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/twilio/twilio-verify-ios/HEAD/docs/0.4.0/Enums/ChallengeStatus.html -------------------------------------------------------------------------------- /docs/0.4.0/Enums/FactorStatus.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/twilio/twilio-verify-ios/HEAD/docs/0.4.0/Enums/FactorStatus.html -------------------------------------------------------------------------------- /docs/0.4.0/Enums/FactorType.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/twilio/twilio-verify-ios/HEAD/docs/0.4.0/Enums/FactorType.html -------------------------------------------------------------------------------- /docs/0.4.0/Enums/LogLevel.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/twilio/twilio-verify-ios/HEAD/docs/0.4.0/Enums/LogLevel.html -------------------------------------------------------------------------------- /docs/0.4.0/Enums/TwilioVerifyError.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/twilio/twilio-verify-ios/HEAD/docs/0.4.0/Enums/TwilioVerifyError.html -------------------------------------------------------------------------------- /docs/0.4.0/Protocols.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/twilio/twilio-verify-ios/HEAD/docs/0.4.0/Protocols.html -------------------------------------------------------------------------------- /docs/0.4.0/Protocols/Challenge.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/twilio/twilio-verify-ios/HEAD/docs/0.4.0/Protocols/Challenge.html -------------------------------------------------------------------------------- /docs/0.4.0/Protocols/ChallengeList.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/twilio/twilio-verify-ios/HEAD/docs/0.4.0/Protocols/ChallengeList.html -------------------------------------------------------------------------------- /docs/0.4.0/Protocols/Factor.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/twilio/twilio-verify-ios/HEAD/docs/0.4.0/Protocols/Factor.html -------------------------------------------------------------------------------- /docs/0.4.0/Protocols/FactorPayload.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/twilio/twilio-verify-ios/HEAD/docs/0.4.0/Protocols/FactorPayload.html -------------------------------------------------------------------------------- /docs/0.4.0/Protocols/LoggerService.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/twilio/twilio-verify-ios/HEAD/docs/0.4.0/Protocols/LoggerService.html -------------------------------------------------------------------------------- /docs/0.4.0/Protocols/Metadata.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/twilio/twilio-verify-ios/HEAD/docs/0.4.0/Protocols/Metadata.html -------------------------------------------------------------------------------- /docs/0.4.0/Protocols/TwilioVerify.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/twilio/twilio-verify-ios/HEAD/docs/0.4.0/Protocols/TwilioVerify.html -------------------------------------------------------------------------------- /docs/0.4.0/Structs.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/twilio/twilio-verify-ios/HEAD/docs/0.4.0/Structs.html -------------------------------------------------------------------------------- /docs/0.4.0/Structs/ChallengeDetails.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/twilio/twilio-verify-ios/HEAD/docs/0.4.0/Structs/ChallengeDetails.html -------------------------------------------------------------------------------- /docs/0.4.0/Structs/ChallengeListPayload.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/twilio/twilio-verify-ios/HEAD/docs/0.4.0/Structs/ChallengeListPayload.html -------------------------------------------------------------------------------- /docs/0.4.0/Structs/Detail.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/twilio/twilio-verify-ios/HEAD/docs/0.4.0/Structs/Detail.html -------------------------------------------------------------------------------- /docs/0.4.0/Structs/PushFactorPayload.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/twilio/twilio-verify-ios/HEAD/docs/0.4.0/Structs/PushFactorPayload.html -------------------------------------------------------------------------------- /docs/0.4.0/badge.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/twilio/twilio-verify-ios/HEAD/docs/0.4.0/badge.svg -------------------------------------------------------------------------------- /docs/0.4.0/css/highlight.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/twilio/twilio-verify-ios/HEAD/docs/0.4.0/css/highlight.css -------------------------------------------------------------------------------- /docs/0.4.0/css/jazzy.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/twilio/twilio-verify-ios/HEAD/docs/0.4.0/css/jazzy.css -------------------------------------------------------------------------------- /docs/0.4.0/docsets/TwilioVerify.tgz: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/twilio/twilio-verify-ios/HEAD/docs/0.4.0/docsets/TwilioVerify.tgz -------------------------------------------------------------------------------- /docs/0.4.0/img/carat.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/twilio/twilio-verify-ios/HEAD/docs/0.4.0/img/carat.png -------------------------------------------------------------------------------- /docs/0.4.0/img/dash.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/twilio/twilio-verify-ios/HEAD/docs/0.4.0/img/dash.png -------------------------------------------------------------------------------- /docs/0.4.0/img/gh.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/twilio/twilio-verify-ios/HEAD/docs/0.4.0/img/gh.png -------------------------------------------------------------------------------- /docs/0.4.0/img/spinner.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/twilio/twilio-verify-ios/HEAD/docs/0.4.0/img/spinner.gif -------------------------------------------------------------------------------- /docs/0.4.0/index.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/twilio/twilio-verify-ios/HEAD/docs/0.4.0/index.html -------------------------------------------------------------------------------- /docs/0.4.0/js/jazzy.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/twilio/twilio-verify-ios/HEAD/docs/0.4.0/js/jazzy.js -------------------------------------------------------------------------------- /docs/0.4.0/js/jazzy.search.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/twilio/twilio-verify-ios/HEAD/docs/0.4.0/js/jazzy.search.js -------------------------------------------------------------------------------- /docs/0.4.0/js/jquery.min.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/twilio/twilio-verify-ios/HEAD/docs/0.4.0/js/jquery.min.js -------------------------------------------------------------------------------- /docs/0.4.0/js/lunr.min.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/twilio/twilio-verify-ios/HEAD/docs/0.4.0/js/lunr.min.js -------------------------------------------------------------------------------- /docs/0.4.0/js/typeahead.jquery.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/twilio/twilio-verify-ios/HEAD/docs/0.4.0/js/typeahead.jquery.js -------------------------------------------------------------------------------- /docs/0.4.0/search.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/twilio/twilio-verify-ios/HEAD/docs/0.4.0/search.json -------------------------------------------------------------------------------- /docs/0.4.0/undocumented.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/twilio/twilio-verify-ios/HEAD/docs/0.4.0/undocumented.json -------------------------------------------------------------------------------- /docs/1.0.0/Classes.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/twilio/twilio-verify-ios/HEAD/docs/1.0.0/Classes.html -------------------------------------------------------------------------------- /docs/1.0.0/Classes/TwilioVerifyBuilder.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/twilio/twilio-verify-ios/HEAD/docs/1.0.0/Classes/TwilioVerifyBuilder.html -------------------------------------------------------------------------------- /docs/1.0.0/Classes/TwilioVerifyManager.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/twilio/twilio-verify-ios/HEAD/docs/1.0.0/Classes/TwilioVerifyManager.html -------------------------------------------------------------------------------- /docs/1.0.0/Enums.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/twilio/twilio-verify-ios/HEAD/docs/1.0.0/Enums.html -------------------------------------------------------------------------------- /docs/1.0.0/Enums/ChallengeStatus.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/twilio/twilio-verify-ios/HEAD/docs/1.0.0/Enums/ChallengeStatus.html -------------------------------------------------------------------------------- /docs/1.0.0/Enums/FactorStatus.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/twilio/twilio-verify-ios/HEAD/docs/1.0.0/Enums/FactorStatus.html -------------------------------------------------------------------------------- /docs/1.0.0/Enums/FactorType.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/twilio/twilio-verify-ios/HEAD/docs/1.0.0/Enums/FactorType.html -------------------------------------------------------------------------------- /docs/1.0.0/Enums/LogLevel.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/twilio/twilio-verify-ios/HEAD/docs/1.0.0/Enums/LogLevel.html -------------------------------------------------------------------------------- /docs/1.0.0/Enums/TwilioVerifyError.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/twilio/twilio-verify-ios/HEAD/docs/1.0.0/Enums/TwilioVerifyError.html -------------------------------------------------------------------------------- /docs/1.0.0/Protocols.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/twilio/twilio-verify-ios/HEAD/docs/1.0.0/Protocols.html -------------------------------------------------------------------------------- /docs/1.0.0/Protocols/Challenge.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/twilio/twilio-verify-ios/HEAD/docs/1.0.0/Protocols/Challenge.html -------------------------------------------------------------------------------- /docs/1.0.0/Protocols/ChallengeList.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/twilio/twilio-verify-ios/HEAD/docs/1.0.0/Protocols/ChallengeList.html -------------------------------------------------------------------------------- /docs/1.0.0/Protocols/Factor.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/twilio/twilio-verify-ios/HEAD/docs/1.0.0/Protocols/Factor.html -------------------------------------------------------------------------------- /docs/1.0.0/Protocols/FactorPayload.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/twilio/twilio-verify-ios/HEAD/docs/1.0.0/Protocols/FactorPayload.html -------------------------------------------------------------------------------- /docs/1.0.0/Protocols/LoggerService.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/twilio/twilio-verify-ios/HEAD/docs/1.0.0/Protocols/LoggerService.html -------------------------------------------------------------------------------- /docs/1.0.0/Protocols/Metadata.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/twilio/twilio-verify-ios/HEAD/docs/1.0.0/Protocols/Metadata.html -------------------------------------------------------------------------------- /docs/1.0.0/Protocols/NetworkProvider.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/twilio/twilio-verify-ios/HEAD/docs/1.0.0/Protocols/NetworkProvider.html -------------------------------------------------------------------------------- /docs/1.0.0/Protocols/TwilioVerify.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/twilio/twilio-verify-ios/HEAD/docs/1.0.0/Protocols/TwilioVerify.html -------------------------------------------------------------------------------- /docs/1.0.0/Structs.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/twilio/twilio-verify-ios/HEAD/docs/1.0.0/Structs.html -------------------------------------------------------------------------------- /docs/1.0.0/Structs/ChallengeDetails.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/twilio/twilio-verify-ios/HEAD/docs/1.0.0/Structs/ChallengeDetails.html -------------------------------------------------------------------------------- /docs/1.0.0/Structs/ChallengeListPayload.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/twilio/twilio-verify-ios/HEAD/docs/1.0.0/Structs/ChallengeListPayload.html -------------------------------------------------------------------------------- /docs/1.0.0/Structs/Detail.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/twilio/twilio-verify-ios/HEAD/docs/1.0.0/Structs/Detail.html -------------------------------------------------------------------------------- /docs/1.0.0/Structs/PushFactorPayload.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/twilio/twilio-verify-ios/HEAD/docs/1.0.0/Structs/PushFactorPayload.html -------------------------------------------------------------------------------- /docs/1.0.0/Typealiases.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/twilio/twilio-verify-ios/HEAD/docs/1.0.0/Typealiases.html -------------------------------------------------------------------------------- /docs/1.0.0/badge.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/twilio/twilio-verify-ios/HEAD/docs/1.0.0/badge.svg -------------------------------------------------------------------------------- /docs/1.0.0/css/highlight.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/twilio/twilio-verify-ios/HEAD/docs/1.0.0/css/highlight.css -------------------------------------------------------------------------------- /docs/1.0.0/css/jazzy.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/twilio/twilio-verify-ios/HEAD/docs/1.0.0/css/jazzy.css -------------------------------------------------------------------------------- /docs/1.0.0/docsets/TwilioVerifySDK.tgz: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/twilio/twilio-verify-ios/HEAD/docs/1.0.0/docsets/TwilioVerifySDK.tgz -------------------------------------------------------------------------------- /docs/1.0.0/img/carat.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/twilio/twilio-verify-ios/HEAD/docs/1.0.0/img/carat.png -------------------------------------------------------------------------------- /docs/1.0.0/img/dash.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/twilio/twilio-verify-ios/HEAD/docs/1.0.0/img/dash.png -------------------------------------------------------------------------------- /docs/1.0.0/img/gh.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/twilio/twilio-verify-ios/HEAD/docs/1.0.0/img/gh.png -------------------------------------------------------------------------------- /docs/1.0.0/img/spinner.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/twilio/twilio-verify-ios/HEAD/docs/1.0.0/img/spinner.gif -------------------------------------------------------------------------------- /docs/1.0.0/index.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/twilio/twilio-verify-ios/HEAD/docs/1.0.0/index.html -------------------------------------------------------------------------------- /docs/1.0.0/js/jazzy.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/twilio/twilio-verify-ios/HEAD/docs/1.0.0/js/jazzy.js -------------------------------------------------------------------------------- /docs/1.0.0/js/jazzy.search.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/twilio/twilio-verify-ios/HEAD/docs/1.0.0/js/jazzy.search.js -------------------------------------------------------------------------------- /docs/1.0.0/js/jquery.min.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/twilio/twilio-verify-ios/HEAD/docs/1.0.0/js/jquery.min.js -------------------------------------------------------------------------------- /docs/1.0.0/js/lunr.min.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/twilio/twilio-verify-ios/HEAD/docs/1.0.0/js/lunr.min.js -------------------------------------------------------------------------------- /docs/1.0.0/js/typeahead.jquery.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/twilio/twilio-verify-ios/HEAD/docs/1.0.0/js/typeahead.jquery.js -------------------------------------------------------------------------------- /docs/1.0.0/search.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/twilio/twilio-verify-ios/HEAD/docs/1.0.0/search.json -------------------------------------------------------------------------------- /docs/1.0.0/undocumented.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/twilio/twilio-verify-ios/HEAD/docs/1.0.0/undocumented.json -------------------------------------------------------------------------------- /docs/1.1.0/Classes.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/twilio/twilio-verify-ios/HEAD/docs/1.1.0/Classes.html -------------------------------------------------------------------------------- /docs/1.1.0/Classes/TwilioVerifyBuilder.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/twilio/twilio-verify-ios/HEAD/docs/1.1.0/Classes/TwilioVerifyBuilder.html -------------------------------------------------------------------------------- /docs/1.1.0/Classes/TwilioVerifyManager.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/twilio/twilio-verify-ios/HEAD/docs/1.1.0/Classes/TwilioVerifyManager.html -------------------------------------------------------------------------------- /docs/1.1.0/Enums.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/twilio/twilio-verify-ios/HEAD/docs/1.1.0/Enums.html -------------------------------------------------------------------------------- /docs/1.1.0/Enums/ChallengeListOrder.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/twilio/twilio-verify-ios/HEAD/docs/1.1.0/Enums/ChallengeListOrder.html -------------------------------------------------------------------------------- /docs/1.1.0/Enums/ChallengeStatus.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/twilio/twilio-verify-ios/HEAD/docs/1.1.0/Enums/ChallengeStatus.html -------------------------------------------------------------------------------- /docs/1.1.0/Enums/FactorStatus.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/twilio/twilio-verify-ios/HEAD/docs/1.1.0/Enums/FactorStatus.html -------------------------------------------------------------------------------- /docs/1.1.0/Enums/FactorType.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/twilio/twilio-verify-ios/HEAD/docs/1.1.0/Enums/FactorType.html -------------------------------------------------------------------------------- /docs/1.1.0/Enums/LogLevel.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/twilio/twilio-verify-ios/HEAD/docs/1.1.0/Enums/LogLevel.html -------------------------------------------------------------------------------- /docs/1.1.0/Enums/TwilioVerifyError.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/twilio/twilio-verify-ios/HEAD/docs/1.1.0/Enums/TwilioVerifyError.html -------------------------------------------------------------------------------- /docs/1.1.0/Protocols.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/twilio/twilio-verify-ios/HEAD/docs/1.1.0/Protocols.html -------------------------------------------------------------------------------- /docs/1.1.0/Protocols/Challenge.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/twilio/twilio-verify-ios/HEAD/docs/1.1.0/Protocols/Challenge.html -------------------------------------------------------------------------------- /docs/1.1.0/Protocols/ChallengeList.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/twilio/twilio-verify-ios/HEAD/docs/1.1.0/Protocols/ChallengeList.html -------------------------------------------------------------------------------- /docs/1.1.0/Protocols/Factor.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/twilio/twilio-verify-ios/HEAD/docs/1.1.0/Protocols/Factor.html -------------------------------------------------------------------------------- /docs/1.1.0/Protocols/FactorPayload.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/twilio/twilio-verify-ios/HEAD/docs/1.1.0/Protocols/FactorPayload.html -------------------------------------------------------------------------------- /docs/1.1.0/Protocols/LoggerService.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/twilio/twilio-verify-ios/HEAD/docs/1.1.0/Protocols/LoggerService.html -------------------------------------------------------------------------------- /docs/1.1.0/Protocols/Metadata.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/twilio/twilio-verify-ios/HEAD/docs/1.1.0/Protocols/Metadata.html -------------------------------------------------------------------------------- /docs/1.1.0/Protocols/NetworkProvider.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/twilio/twilio-verify-ios/HEAD/docs/1.1.0/Protocols/NetworkProvider.html -------------------------------------------------------------------------------- /docs/1.1.0/Protocols/TwilioVerify.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/twilio/twilio-verify-ios/HEAD/docs/1.1.0/Protocols/TwilioVerify.html -------------------------------------------------------------------------------- /docs/1.1.0/Structs.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/twilio/twilio-verify-ios/HEAD/docs/1.1.0/Structs.html -------------------------------------------------------------------------------- /docs/1.1.0/Structs/ChallengeDetails.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/twilio/twilio-verify-ios/HEAD/docs/1.1.0/Structs/ChallengeDetails.html -------------------------------------------------------------------------------- /docs/1.1.0/Structs/ChallengeListPayload.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/twilio/twilio-verify-ios/HEAD/docs/1.1.0/Structs/ChallengeListPayload.html -------------------------------------------------------------------------------- /docs/1.1.0/Structs/Detail.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/twilio/twilio-verify-ios/HEAD/docs/1.1.0/Structs/Detail.html -------------------------------------------------------------------------------- /docs/1.1.0/Structs/PushFactorPayload.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/twilio/twilio-verify-ios/HEAD/docs/1.1.0/Structs/PushFactorPayload.html -------------------------------------------------------------------------------- /docs/1.1.0/Typealiases.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/twilio/twilio-verify-ios/HEAD/docs/1.1.0/Typealiases.html -------------------------------------------------------------------------------- /docs/1.1.0/badge.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/twilio/twilio-verify-ios/HEAD/docs/1.1.0/badge.svg -------------------------------------------------------------------------------- /docs/1.1.0/css/highlight.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/twilio/twilio-verify-ios/HEAD/docs/1.1.0/css/highlight.css -------------------------------------------------------------------------------- /docs/1.1.0/css/jazzy.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/twilio/twilio-verify-ios/HEAD/docs/1.1.0/css/jazzy.css -------------------------------------------------------------------------------- /docs/1.1.0/docsets/TwilioVerifySDK.tgz: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/twilio/twilio-verify-ios/HEAD/docs/1.1.0/docsets/TwilioVerifySDK.tgz -------------------------------------------------------------------------------- /docs/1.1.0/img/carat.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/twilio/twilio-verify-ios/HEAD/docs/1.1.0/img/carat.png -------------------------------------------------------------------------------- /docs/1.1.0/img/dash.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/twilio/twilio-verify-ios/HEAD/docs/1.1.0/img/dash.png -------------------------------------------------------------------------------- /docs/1.1.0/img/gh.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/twilio/twilio-verify-ios/HEAD/docs/1.1.0/img/gh.png -------------------------------------------------------------------------------- /docs/1.1.0/img/spinner.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/twilio/twilio-verify-ios/HEAD/docs/1.1.0/img/spinner.gif -------------------------------------------------------------------------------- /docs/1.1.0/index.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/twilio/twilio-verify-ios/HEAD/docs/1.1.0/index.html -------------------------------------------------------------------------------- /docs/1.1.0/js/jazzy.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/twilio/twilio-verify-ios/HEAD/docs/1.1.0/js/jazzy.js -------------------------------------------------------------------------------- /docs/1.1.0/js/jazzy.search.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/twilio/twilio-verify-ios/HEAD/docs/1.1.0/js/jazzy.search.js -------------------------------------------------------------------------------- /docs/1.1.0/js/jquery.min.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/twilio/twilio-verify-ios/HEAD/docs/1.1.0/js/jquery.min.js -------------------------------------------------------------------------------- /docs/1.1.0/js/lunr.min.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/twilio/twilio-verify-ios/HEAD/docs/1.1.0/js/lunr.min.js -------------------------------------------------------------------------------- /docs/1.1.0/js/typeahead.jquery.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/twilio/twilio-verify-ios/HEAD/docs/1.1.0/js/typeahead.jquery.js -------------------------------------------------------------------------------- /docs/1.1.0/search.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/twilio/twilio-verify-ios/HEAD/docs/1.1.0/search.json -------------------------------------------------------------------------------- /docs/1.1.0/undocumented.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/twilio/twilio-verify-ios/HEAD/docs/1.1.0/undocumented.json -------------------------------------------------------------------------------- /docs/1.2.0/Classes.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/twilio/twilio-verify-ios/HEAD/docs/1.2.0/Classes.html -------------------------------------------------------------------------------- /docs/1.2.0/Classes/TwilioVerifyBuilder.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/twilio/twilio-verify-ios/HEAD/docs/1.2.0/Classes/TwilioVerifyBuilder.html -------------------------------------------------------------------------------- /docs/1.2.0/Classes/TwilioVerifyManager.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/twilio/twilio-verify-ios/HEAD/docs/1.2.0/Classes/TwilioVerifyManager.html -------------------------------------------------------------------------------- /docs/1.2.0/Enums.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/twilio/twilio-verify-ios/HEAD/docs/1.2.0/Enums.html -------------------------------------------------------------------------------- /docs/1.2.0/Enums/ChallengeListOrder.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/twilio/twilio-verify-ios/HEAD/docs/1.2.0/Enums/ChallengeListOrder.html -------------------------------------------------------------------------------- /docs/1.2.0/Enums/ChallengeStatus.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/twilio/twilio-verify-ios/HEAD/docs/1.2.0/Enums/ChallengeStatus.html -------------------------------------------------------------------------------- /docs/1.2.0/Enums/FactorStatus.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/twilio/twilio-verify-ios/HEAD/docs/1.2.0/Enums/FactorStatus.html -------------------------------------------------------------------------------- /docs/1.2.0/Enums/FactorType.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/twilio/twilio-verify-ios/HEAD/docs/1.2.0/Enums/FactorType.html -------------------------------------------------------------------------------- /docs/1.2.0/Enums/LogLevel.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/twilio/twilio-verify-ios/HEAD/docs/1.2.0/Enums/LogLevel.html -------------------------------------------------------------------------------- /docs/1.2.0/Enums/TwilioVerifyError.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/twilio/twilio-verify-ios/HEAD/docs/1.2.0/Enums/TwilioVerifyError.html -------------------------------------------------------------------------------- /docs/1.2.0/Protocols.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/twilio/twilio-verify-ios/HEAD/docs/1.2.0/Protocols.html -------------------------------------------------------------------------------- /docs/1.2.0/Protocols/Challenge.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/twilio/twilio-verify-ios/HEAD/docs/1.2.0/Protocols/Challenge.html -------------------------------------------------------------------------------- /docs/1.2.0/Protocols/ChallengeList.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/twilio/twilio-verify-ios/HEAD/docs/1.2.0/Protocols/ChallengeList.html -------------------------------------------------------------------------------- /docs/1.2.0/Protocols/Factor.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/twilio/twilio-verify-ios/HEAD/docs/1.2.0/Protocols/Factor.html -------------------------------------------------------------------------------- /docs/1.2.0/Protocols/FactorPayload.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/twilio/twilio-verify-ios/HEAD/docs/1.2.0/Protocols/FactorPayload.html -------------------------------------------------------------------------------- /docs/1.2.0/Protocols/LoggerService.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/twilio/twilio-verify-ios/HEAD/docs/1.2.0/Protocols/LoggerService.html -------------------------------------------------------------------------------- /docs/1.2.0/Protocols/Metadata.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/twilio/twilio-verify-ios/HEAD/docs/1.2.0/Protocols/Metadata.html -------------------------------------------------------------------------------- /docs/1.2.0/Protocols/NetworkProvider.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/twilio/twilio-verify-ios/HEAD/docs/1.2.0/Protocols/NetworkProvider.html -------------------------------------------------------------------------------- /docs/1.2.0/Protocols/TwilioVerify.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/twilio/twilio-verify-ios/HEAD/docs/1.2.0/Protocols/TwilioVerify.html -------------------------------------------------------------------------------- /docs/1.2.0/Structs.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/twilio/twilio-verify-ios/HEAD/docs/1.2.0/Structs.html -------------------------------------------------------------------------------- /docs/1.2.0/Structs/ChallengeDetails.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/twilio/twilio-verify-ios/HEAD/docs/1.2.0/Structs/ChallengeDetails.html -------------------------------------------------------------------------------- /docs/1.2.0/Structs/ChallengeListPayload.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/twilio/twilio-verify-ios/HEAD/docs/1.2.0/Structs/ChallengeListPayload.html -------------------------------------------------------------------------------- /docs/1.2.0/Structs/Detail.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/twilio/twilio-verify-ios/HEAD/docs/1.2.0/Structs/Detail.html -------------------------------------------------------------------------------- /docs/1.2.0/Structs/PushFactorPayload.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/twilio/twilio-verify-ios/HEAD/docs/1.2.0/Structs/PushFactorPayload.html -------------------------------------------------------------------------------- /docs/1.2.0/Typealiases.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/twilio/twilio-verify-ios/HEAD/docs/1.2.0/Typealiases.html -------------------------------------------------------------------------------- /docs/1.2.0/badge.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/twilio/twilio-verify-ios/HEAD/docs/1.2.0/badge.svg -------------------------------------------------------------------------------- /docs/1.2.0/css/highlight.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/twilio/twilio-verify-ios/HEAD/docs/1.2.0/css/highlight.css -------------------------------------------------------------------------------- /docs/1.2.0/css/jazzy.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/twilio/twilio-verify-ios/HEAD/docs/1.2.0/css/jazzy.css -------------------------------------------------------------------------------- /docs/1.2.0/docsets/TwilioVerifySDK.tgz: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/twilio/twilio-verify-ios/HEAD/docs/1.2.0/docsets/TwilioVerifySDK.tgz -------------------------------------------------------------------------------- /docs/1.2.0/img/carat.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/twilio/twilio-verify-ios/HEAD/docs/1.2.0/img/carat.png -------------------------------------------------------------------------------- /docs/1.2.0/img/dash.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/twilio/twilio-verify-ios/HEAD/docs/1.2.0/img/dash.png -------------------------------------------------------------------------------- /docs/1.2.0/img/gh.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/twilio/twilio-verify-ios/HEAD/docs/1.2.0/img/gh.png -------------------------------------------------------------------------------- /docs/1.2.0/img/spinner.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/twilio/twilio-verify-ios/HEAD/docs/1.2.0/img/spinner.gif -------------------------------------------------------------------------------- /docs/1.2.0/index.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/twilio/twilio-verify-ios/HEAD/docs/1.2.0/index.html -------------------------------------------------------------------------------- /docs/1.2.0/js/jazzy.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/twilio/twilio-verify-ios/HEAD/docs/1.2.0/js/jazzy.js -------------------------------------------------------------------------------- /docs/1.2.0/js/jazzy.search.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/twilio/twilio-verify-ios/HEAD/docs/1.2.0/js/jazzy.search.js -------------------------------------------------------------------------------- /docs/1.2.0/js/jquery.min.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/twilio/twilio-verify-ios/HEAD/docs/1.2.0/js/jquery.min.js -------------------------------------------------------------------------------- /docs/1.2.0/js/lunr.min.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/twilio/twilio-verify-ios/HEAD/docs/1.2.0/js/lunr.min.js -------------------------------------------------------------------------------- /docs/1.2.0/js/typeahead.jquery.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/twilio/twilio-verify-ios/HEAD/docs/1.2.0/js/typeahead.jquery.js -------------------------------------------------------------------------------- /docs/1.2.0/search.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/twilio/twilio-verify-ios/HEAD/docs/1.2.0/search.json -------------------------------------------------------------------------------- /docs/1.2.0/undocumented.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/twilio/twilio-verify-ios/HEAD/docs/1.2.0/undocumented.json -------------------------------------------------------------------------------- /docs/1.3.0/Classes.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/twilio/twilio-verify-ios/HEAD/docs/1.3.0/Classes.html -------------------------------------------------------------------------------- /docs/1.3.0/Classes/TwilioVerifyBuilder.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/twilio/twilio-verify-ios/HEAD/docs/1.3.0/Classes/TwilioVerifyBuilder.html -------------------------------------------------------------------------------- /docs/1.3.0/Classes/TwilioVerifyManager.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/twilio/twilio-verify-ios/HEAD/docs/1.3.0/Classes/TwilioVerifyManager.html -------------------------------------------------------------------------------- /docs/1.3.0/Enums.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/twilio/twilio-verify-ios/HEAD/docs/1.3.0/Enums.html -------------------------------------------------------------------------------- /docs/1.3.0/Enums/ChallengeListOrder.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/twilio/twilio-verify-ios/HEAD/docs/1.3.0/Enums/ChallengeListOrder.html -------------------------------------------------------------------------------- /docs/1.3.0/Enums/ChallengeStatus.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/twilio/twilio-verify-ios/HEAD/docs/1.3.0/Enums/ChallengeStatus.html -------------------------------------------------------------------------------- /docs/1.3.0/Enums/FactorStatus.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/twilio/twilio-verify-ios/HEAD/docs/1.3.0/Enums/FactorStatus.html -------------------------------------------------------------------------------- /docs/1.3.0/Enums/FactorType.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/twilio/twilio-verify-ios/HEAD/docs/1.3.0/Enums/FactorType.html -------------------------------------------------------------------------------- /docs/1.3.0/Enums/LogLevel.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/twilio/twilio-verify-ios/HEAD/docs/1.3.0/Enums/LogLevel.html -------------------------------------------------------------------------------- /docs/1.3.0/Enums/NotificationPlatform.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/twilio/twilio-verify-ios/HEAD/docs/1.3.0/Enums/NotificationPlatform.html -------------------------------------------------------------------------------- /docs/1.3.0/Enums/TwilioVerifyError.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/twilio/twilio-verify-ios/HEAD/docs/1.3.0/Enums/TwilioVerifyError.html -------------------------------------------------------------------------------- /docs/1.3.0/Protocols.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/twilio/twilio-verify-ios/HEAD/docs/1.3.0/Protocols.html -------------------------------------------------------------------------------- /docs/1.3.0/Protocols/Challenge.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/twilio/twilio-verify-ios/HEAD/docs/1.3.0/Protocols/Challenge.html -------------------------------------------------------------------------------- /docs/1.3.0/Protocols/ChallengeList.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/twilio/twilio-verify-ios/HEAD/docs/1.3.0/Protocols/ChallengeList.html -------------------------------------------------------------------------------- /docs/1.3.0/Protocols/Factor.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/twilio/twilio-verify-ios/HEAD/docs/1.3.0/Protocols/Factor.html -------------------------------------------------------------------------------- /docs/1.3.0/Protocols/FactorPayload.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/twilio/twilio-verify-ios/HEAD/docs/1.3.0/Protocols/FactorPayload.html -------------------------------------------------------------------------------- /docs/1.3.0/Protocols/LoggerService.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/twilio/twilio-verify-ios/HEAD/docs/1.3.0/Protocols/LoggerService.html -------------------------------------------------------------------------------- /docs/1.3.0/Protocols/Metadata.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/twilio/twilio-verify-ios/HEAD/docs/1.3.0/Protocols/Metadata.html -------------------------------------------------------------------------------- /docs/1.3.0/Protocols/NetworkProvider.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/twilio/twilio-verify-ios/HEAD/docs/1.3.0/Protocols/NetworkProvider.html -------------------------------------------------------------------------------- /docs/1.3.0/Protocols/TwilioVerify.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/twilio/twilio-verify-ios/HEAD/docs/1.3.0/Protocols/TwilioVerify.html -------------------------------------------------------------------------------- /docs/1.3.0/Structs.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/twilio/twilio-verify-ios/HEAD/docs/1.3.0/Structs.html -------------------------------------------------------------------------------- /docs/1.3.0/Structs/ChallengeDetails.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/twilio/twilio-verify-ios/HEAD/docs/1.3.0/Structs/ChallengeDetails.html -------------------------------------------------------------------------------- /docs/1.3.0/Structs/ChallengeListPayload.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/twilio/twilio-verify-ios/HEAD/docs/1.3.0/Structs/ChallengeListPayload.html -------------------------------------------------------------------------------- /docs/1.3.0/Structs/Detail.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/twilio/twilio-verify-ios/HEAD/docs/1.3.0/Structs/Detail.html -------------------------------------------------------------------------------- /docs/1.3.0/Structs/PushFactorPayload.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/twilio/twilio-verify-ios/HEAD/docs/1.3.0/Structs/PushFactorPayload.html -------------------------------------------------------------------------------- /docs/1.3.0/Typealiases.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/twilio/twilio-verify-ios/HEAD/docs/1.3.0/Typealiases.html -------------------------------------------------------------------------------- /docs/1.3.0/badge.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/twilio/twilio-verify-ios/HEAD/docs/1.3.0/badge.svg -------------------------------------------------------------------------------- /docs/1.3.0/css/highlight.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/twilio/twilio-verify-ios/HEAD/docs/1.3.0/css/highlight.css -------------------------------------------------------------------------------- /docs/1.3.0/css/jazzy.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/twilio/twilio-verify-ios/HEAD/docs/1.3.0/css/jazzy.css -------------------------------------------------------------------------------- /docs/1.3.0/docsets/TwilioVerifySDK.tgz: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/twilio/twilio-verify-ios/HEAD/docs/1.3.0/docsets/TwilioVerifySDK.tgz -------------------------------------------------------------------------------- /docs/1.3.0/img/carat.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/twilio/twilio-verify-ios/HEAD/docs/1.3.0/img/carat.png -------------------------------------------------------------------------------- /docs/1.3.0/img/dash.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/twilio/twilio-verify-ios/HEAD/docs/1.3.0/img/dash.png -------------------------------------------------------------------------------- /docs/1.3.0/img/gh.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/twilio/twilio-verify-ios/HEAD/docs/1.3.0/img/gh.png -------------------------------------------------------------------------------- /docs/1.3.0/img/spinner.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/twilio/twilio-verify-ios/HEAD/docs/1.3.0/img/spinner.gif -------------------------------------------------------------------------------- /docs/1.3.0/index.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/twilio/twilio-verify-ios/HEAD/docs/1.3.0/index.html -------------------------------------------------------------------------------- /docs/1.3.0/js/jazzy.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/twilio/twilio-verify-ios/HEAD/docs/1.3.0/js/jazzy.js -------------------------------------------------------------------------------- /docs/1.3.0/js/jazzy.search.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/twilio/twilio-verify-ios/HEAD/docs/1.3.0/js/jazzy.search.js -------------------------------------------------------------------------------- /docs/1.3.0/js/jquery.min.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/twilio/twilio-verify-ios/HEAD/docs/1.3.0/js/jquery.min.js -------------------------------------------------------------------------------- /docs/1.3.0/js/lunr.min.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/twilio/twilio-verify-ios/HEAD/docs/1.3.0/js/lunr.min.js -------------------------------------------------------------------------------- /docs/1.3.0/js/typeahead.jquery.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/twilio/twilio-verify-ios/HEAD/docs/1.3.0/js/typeahead.jquery.js -------------------------------------------------------------------------------- /docs/1.3.0/search.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/twilio/twilio-verify-ios/HEAD/docs/1.3.0/search.json -------------------------------------------------------------------------------- /docs/1.3.0/undocumented.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/twilio/twilio-verify-ios/HEAD/docs/1.3.0/undocumented.json -------------------------------------------------------------------------------- /docs/2.0.0/Classes.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/twilio/twilio-verify-ios/HEAD/docs/2.0.0/Classes.html -------------------------------------------------------------------------------- /docs/2.0.0/Classes/TwilioVerifyBuilder.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/twilio/twilio-verify-ios/HEAD/docs/2.0.0/Classes/TwilioVerifyBuilder.html -------------------------------------------------------------------------------- /docs/2.0.0/Classes/TwilioVerifyManager.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/twilio/twilio-verify-ios/HEAD/docs/2.0.0/Classes/TwilioVerifyManager.html -------------------------------------------------------------------------------- /docs/2.0.0/Enums.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/twilio/twilio-verify-ios/HEAD/docs/2.0.0/Enums.html -------------------------------------------------------------------------------- /docs/2.0.0/Enums/ChallengeListOrder.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/twilio/twilio-verify-ios/HEAD/docs/2.0.0/Enums/ChallengeListOrder.html -------------------------------------------------------------------------------- /docs/2.0.0/Enums/ChallengeStatus.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/twilio/twilio-verify-ios/HEAD/docs/2.0.0/Enums/ChallengeStatus.html -------------------------------------------------------------------------------- /docs/2.0.0/Enums/FactorStatus.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/twilio/twilio-verify-ios/HEAD/docs/2.0.0/Enums/FactorStatus.html -------------------------------------------------------------------------------- /docs/2.0.0/Enums/FactorType.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/twilio/twilio-verify-ios/HEAD/docs/2.0.0/Enums/FactorType.html -------------------------------------------------------------------------------- /docs/2.0.0/Enums/LogLevel.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/twilio/twilio-verify-ios/HEAD/docs/2.0.0/Enums/LogLevel.html -------------------------------------------------------------------------------- /docs/2.0.0/Enums/NetworkError.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/twilio/twilio-verify-ios/HEAD/docs/2.0.0/Enums/NetworkError.html -------------------------------------------------------------------------------- /docs/2.0.0/Enums/NotificationPlatform.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/twilio/twilio-verify-ios/HEAD/docs/2.0.0/Enums/NotificationPlatform.html -------------------------------------------------------------------------------- /docs/2.0.0/Enums/TwilioVerifyError.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/twilio/twilio-verify-ios/HEAD/docs/2.0.0/Enums/TwilioVerifyError.html -------------------------------------------------------------------------------- /docs/2.0.0/Protocols.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/twilio/twilio-verify-ios/HEAD/docs/2.0.0/Protocols.html -------------------------------------------------------------------------------- /docs/2.0.0/Protocols/Challenge.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/twilio/twilio-verify-ios/HEAD/docs/2.0.0/Protocols/Challenge.html -------------------------------------------------------------------------------- /docs/2.0.0/Protocols/ChallengeList.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/twilio/twilio-verify-ios/HEAD/docs/2.0.0/Protocols/ChallengeList.html -------------------------------------------------------------------------------- /docs/2.0.0/Protocols/Factor.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/twilio/twilio-verify-ios/HEAD/docs/2.0.0/Protocols/Factor.html -------------------------------------------------------------------------------- /docs/2.0.0/Protocols/FactorPayload.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/twilio/twilio-verify-ios/HEAD/docs/2.0.0/Protocols/FactorPayload.html -------------------------------------------------------------------------------- /docs/2.0.0/Protocols/LoggerService.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/twilio/twilio-verify-ios/HEAD/docs/2.0.0/Protocols/LoggerService.html -------------------------------------------------------------------------------- /docs/2.0.0/Protocols/Metadata.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/twilio/twilio-verify-ios/HEAD/docs/2.0.0/Protocols/Metadata.html -------------------------------------------------------------------------------- /docs/2.0.0/Protocols/NetworkProvider.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/twilio/twilio-verify-ios/HEAD/docs/2.0.0/Protocols/NetworkProvider.html -------------------------------------------------------------------------------- /docs/2.0.0/Protocols/TwilioVerify.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/twilio/twilio-verify-ios/HEAD/docs/2.0.0/Protocols/TwilioVerify.html -------------------------------------------------------------------------------- /docs/2.0.0/Structs.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/twilio/twilio-verify-ios/HEAD/docs/2.0.0/Structs.html -------------------------------------------------------------------------------- /docs/2.0.0/Structs/APIError.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/twilio/twilio-verify-ios/HEAD/docs/2.0.0/Structs/APIError.html -------------------------------------------------------------------------------- /docs/2.0.0/Structs/ChallengeDetails.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/twilio/twilio-verify-ios/HEAD/docs/2.0.0/Structs/ChallengeDetails.html -------------------------------------------------------------------------------- /docs/2.0.0/Structs/Detail.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/twilio/twilio-verify-ios/HEAD/docs/2.0.0/Structs/Detail.html -------------------------------------------------------------------------------- /docs/2.0.0/Structs/FailureResponse.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/twilio/twilio-verify-ios/HEAD/docs/2.0.0/Structs/FailureResponse.html -------------------------------------------------------------------------------- /docs/2.0.0/Structs/PushFactorPayload.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/twilio/twilio-verify-ios/HEAD/docs/2.0.0/Structs/PushFactorPayload.html -------------------------------------------------------------------------------- /docs/2.0.0/Typealiases.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/twilio/twilio-verify-ios/HEAD/docs/2.0.0/Typealiases.html -------------------------------------------------------------------------------- /docs/2.0.0/badge.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/twilio/twilio-verify-ios/HEAD/docs/2.0.0/badge.svg -------------------------------------------------------------------------------- /docs/2.0.0/css/highlight.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/twilio/twilio-verify-ios/HEAD/docs/2.0.0/css/highlight.css -------------------------------------------------------------------------------- /docs/2.0.0/css/jazzy.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/twilio/twilio-verify-ios/HEAD/docs/2.0.0/css/jazzy.css -------------------------------------------------------------------------------- /docs/2.0.0/docsets/TwilioVerifySDK.tgz: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/twilio/twilio-verify-ios/HEAD/docs/2.0.0/docsets/TwilioVerifySDK.tgz -------------------------------------------------------------------------------- /docs/2.0.0/img/carat.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/twilio/twilio-verify-ios/HEAD/docs/2.0.0/img/carat.png -------------------------------------------------------------------------------- /docs/2.0.0/img/dash.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/twilio/twilio-verify-ios/HEAD/docs/2.0.0/img/dash.png -------------------------------------------------------------------------------- /docs/2.0.0/img/gh.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/twilio/twilio-verify-ios/HEAD/docs/2.0.0/img/gh.png -------------------------------------------------------------------------------- /docs/2.0.0/img/spinner.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/twilio/twilio-verify-ios/HEAD/docs/2.0.0/img/spinner.gif -------------------------------------------------------------------------------- /docs/2.0.0/index.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/twilio/twilio-verify-ios/HEAD/docs/2.0.0/index.html -------------------------------------------------------------------------------- /docs/2.0.0/js/jazzy.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/twilio/twilio-verify-ios/HEAD/docs/2.0.0/js/jazzy.js -------------------------------------------------------------------------------- /docs/2.0.0/js/jazzy.search.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/twilio/twilio-verify-ios/HEAD/docs/2.0.0/js/jazzy.search.js -------------------------------------------------------------------------------- /docs/2.0.0/js/jquery.min.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/twilio/twilio-verify-ios/HEAD/docs/2.0.0/js/jquery.min.js -------------------------------------------------------------------------------- /docs/2.0.0/js/lunr.min.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/twilio/twilio-verify-ios/HEAD/docs/2.0.0/js/lunr.min.js -------------------------------------------------------------------------------- /docs/2.0.0/js/typeahead.jquery.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/twilio/twilio-verify-ios/HEAD/docs/2.0.0/js/typeahead.jquery.js -------------------------------------------------------------------------------- /docs/2.0.0/search.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/twilio/twilio-verify-ios/HEAD/docs/2.0.0/search.json -------------------------------------------------------------------------------- /docs/2.0.0/undocumented.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/twilio/twilio-verify-ios/HEAD/docs/2.0.0/undocumented.json -------------------------------------------------------------------------------- /docs/2.1.0/Classes.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/twilio/twilio-verify-ios/HEAD/docs/2.1.0/Classes.html -------------------------------------------------------------------------------- /docs/2.1.0/Enums.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/twilio/twilio-verify-ios/HEAD/docs/2.1.0/Enums.html -------------------------------------------------------------------------------- /docs/2.1.0/Enums/ChallengeListOrder.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/twilio/twilio-verify-ios/HEAD/docs/2.1.0/Enums/ChallengeListOrder.html -------------------------------------------------------------------------------- /docs/2.1.0/Enums/ChallengeStatus.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/twilio/twilio-verify-ios/HEAD/docs/2.1.0/Enums/ChallengeStatus.html -------------------------------------------------------------------------------- /docs/2.1.0/Enums/FactorStatus.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/twilio/twilio-verify-ios/HEAD/docs/2.1.0/Enums/FactorStatus.html -------------------------------------------------------------------------------- /docs/2.1.0/Enums/FactorType.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/twilio/twilio-verify-ios/HEAD/docs/2.1.0/Enums/FactorType.html -------------------------------------------------------------------------------- /docs/2.1.0/Enums/InputError.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/twilio/twilio-verify-ios/HEAD/docs/2.1.0/Enums/InputError.html -------------------------------------------------------------------------------- /docs/2.1.0/Enums/LogLevel.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/twilio/twilio-verify-ios/HEAD/docs/2.1.0/Enums/LogLevel.html -------------------------------------------------------------------------------- /docs/2.1.0/Enums/NetworkError.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/twilio/twilio-verify-ios/HEAD/docs/2.1.0/Enums/NetworkError.html -------------------------------------------------------------------------------- /docs/2.1.0/Enums/TwilioVerifyError.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/twilio/twilio-verify-ios/HEAD/docs/2.1.0/Enums/TwilioVerifyError.html -------------------------------------------------------------------------------- /docs/2.1.0/Protocols.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/twilio/twilio-verify-ios/HEAD/docs/2.1.0/Protocols.html -------------------------------------------------------------------------------- /docs/2.1.0/Protocols/Challenge.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/twilio/twilio-verify-ios/HEAD/docs/2.1.0/Protocols/Challenge.html -------------------------------------------------------------------------------- /docs/2.1.0/Protocols/ChallengeList.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/twilio/twilio-verify-ios/HEAD/docs/2.1.0/Protocols/ChallengeList.html -------------------------------------------------------------------------------- /docs/2.1.0/Protocols/Factor.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/twilio/twilio-verify-ios/HEAD/docs/2.1.0/Protocols/Factor.html -------------------------------------------------------------------------------- /docs/2.1.0/Protocols/FactorPayload.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/twilio/twilio-verify-ios/HEAD/docs/2.1.0/Protocols/FactorPayload.html -------------------------------------------------------------------------------- /docs/2.1.0/Protocols/LoggerService.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/twilio/twilio-verify-ios/HEAD/docs/2.1.0/Protocols/LoggerService.html -------------------------------------------------------------------------------- /docs/2.1.0/Protocols/Metadata.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/twilio/twilio-verify-ios/HEAD/docs/2.1.0/Protocols/Metadata.html -------------------------------------------------------------------------------- /docs/2.1.0/Protocols/NetworkProvider.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/twilio/twilio-verify-ios/HEAD/docs/2.1.0/Protocols/NetworkProvider.html -------------------------------------------------------------------------------- /docs/2.1.0/Protocols/TwilioVerify.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/twilio/twilio-verify-ios/HEAD/docs/2.1.0/Protocols/TwilioVerify.html -------------------------------------------------------------------------------- /docs/2.1.0/Structs.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/twilio/twilio-verify-ios/HEAD/docs/2.1.0/Structs.html -------------------------------------------------------------------------------- /docs/2.1.0/Structs/APIError.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/twilio/twilio-verify-ios/HEAD/docs/2.1.0/Structs/APIError.html -------------------------------------------------------------------------------- /docs/2.1.0/Structs/ChallengeDetails.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/twilio/twilio-verify-ios/HEAD/docs/2.1.0/Structs/ChallengeDetails.html -------------------------------------------------------------------------------- /docs/2.1.0/Structs/Detail.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/twilio/twilio-verify-ios/HEAD/docs/2.1.0/Structs/Detail.html -------------------------------------------------------------------------------- /docs/2.1.0/Structs/FailureResponse.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/twilio/twilio-verify-ios/HEAD/docs/2.1.0/Structs/FailureResponse.html -------------------------------------------------------------------------------- /docs/2.1.0/Structs/NetworkResponse.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/twilio/twilio-verify-ios/HEAD/docs/2.1.0/Structs/NetworkResponse.html -------------------------------------------------------------------------------- /docs/2.1.0/Structs/PushFactorPayload.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/twilio/twilio-verify-ios/HEAD/docs/2.1.0/Structs/PushFactorPayload.html -------------------------------------------------------------------------------- /docs/2.1.0/Typealiases.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/twilio/twilio-verify-ios/HEAD/docs/2.1.0/Typealiases.html -------------------------------------------------------------------------------- /docs/2.1.0/badge.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/twilio/twilio-verify-ios/HEAD/docs/2.1.0/badge.svg -------------------------------------------------------------------------------- /docs/2.1.0/css/highlight.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/twilio/twilio-verify-ios/HEAD/docs/2.1.0/css/highlight.css -------------------------------------------------------------------------------- /docs/2.1.0/css/jazzy.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/twilio/twilio-verify-ios/HEAD/docs/2.1.0/css/jazzy.css -------------------------------------------------------------------------------- /docs/2.1.0/docsets/TwilioVerifySDK.tgz: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/twilio/twilio-verify-ios/HEAD/docs/2.1.0/docsets/TwilioVerifySDK.tgz -------------------------------------------------------------------------------- /docs/2.1.0/img/carat.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/twilio/twilio-verify-ios/HEAD/docs/2.1.0/img/carat.png -------------------------------------------------------------------------------- /docs/2.1.0/img/dash.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/twilio/twilio-verify-ios/HEAD/docs/2.1.0/img/dash.png -------------------------------------------------------------------------------- /docs/2.1.0/img/gh.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/twilio/twilio-verify-ios/HEAD/docs/2.1.0/img/gh.png -------------------------------------------------------------------------------- /docs/2.1.0/img/spinner.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/twilio/twilio-verify-ios/HEAD/docs/2.1.0/img/spinner.gif -------------------------------------------------------------------------------- /docs/2.1.0/index.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/twilio/twilio-verify-ios/HEAD/docs/2.1.0/index.html -------------------------------------------------------------------------------- /docs/2.1.0/js/jazzy.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/twilio/twilio-verify-ios/HEAD/docs/2.1.0/js/jazzy.js -------------------------------------------------------------------------------- /docs/2.1.0/js/jazzy.search.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/twilio/twilio-verify-ios/HEAD/docs/2.1.0/js/jazzy.search.js -------------------------------------------------------------------------------- /docs/2.1.0/js/jquery.min.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/twilio/twilio-verify-ios/HEAD/docs/2.1.0/js/jquery.min.js -------------------------------------------------------------------------------- /docs/2.1.0/js/lunr.min.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/twilio/twilio-verify-ios/HEAD/docs/2.1.0/js/lunr.min.js -------------------------------------------------------------------------------- /docs/2.1.0/js/typeahead.jquery.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/twilio/twilio-verify-ios/HEAD/docs/2.1.0/js/typeahead.jquery.js -------------------------------------------------------------------------------- /docs/2.1.0/search.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/twilio/twilio-verify-ios/HEAD/docs/2.1.0/search.json -------------------------------------------------------------------------------- /docs/2.1.0/undocumented.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/twilio/twilio-verify-ios/HEAD/docs/2.1.0/undocumented.json -------------------------------------------------------------------------------- /docs/2.2.0/Classes.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/twilio/twilio-verify-ios/HEAD/docs/2.2.0/Classes.html -------------------------------------------------------------------------------- /docs/2.2.0/Enums.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/twilio/twilio-verify-ios/HEAD/docs/2.2.0/Enums.html -------------------------------------------------------------------------------- /docs/2.2.0/Enums/ChallengeListOrder.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/twilio/twilio-verify-ios/HEAD/docs/2.2.0/Enums/ChallengeListOrder.html -------------------------------------------------------------------------------- /docs/2.2.0/Enums/ChallengeStatus.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/twilio/twilio-verify-ios/HEAD/docs/2.2.0/Enums/ChallengeStatus.html -------------------------------------------------------------------------------- /docs/2.2.0/Enums/FactorStatus.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/twilio/twilio-verify-ios/HEAD/docs/2.2.0/Enums/FactorStatus.html -------------------------------------------------------------------------------- /docs/2.2.0/Enums/FactorType.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/twilio/twilio-verify-ios/HEAD/docs/2.2.0/Enums/FactorType.html -------------------------------------------------------------------------------- /docs/2.2.0/Enums/InputError.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/twilio/twilio-verify-ios/HEAD/docs/2.2.0/Enums/InputError.html -------------------------------------------------------------------------------- /docs/2.2.0/Enums/LogLevel.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/twilio/twilio-verify-ios/HEAD/docs/2.2.0/Enums/LogLevel.html -------------------------------------------------------------------------------- /docs/2.2.0/Enums/NetworkError.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/twilio/twilio-verify-ios/HEAD/docs/2.2.0/Enums/NetworkError.html -------------------------------------------------------------------------------- /docs/2.2.0/Enums/TwilioVerifyError.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/twilio/twilio-verify-ios/HEAD/docs/2.2.0/Enums/TwilioVerifyError.html -------------------------------------------------------------------------------- /docs/2.2.0/Protocols.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/twilio/twilio-verify-ios/HEAD/docs/2.2.0/Protocols.html -------------------------------------------------------------------------------- /docs/2.2.0/Protocols/Challenge.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/twilio/twilio-verify-ios/HEAD/docs/2.2.0/Protocols/Challenge.html -------------------------------------------------------------------------------- /docs/2.2.0/Protocols/ChallengeList.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/twilio/twilio-verify-ios/HEAD/docs/2.2.0/Protocols/ChallengeList.html -------------------------------------------------------------------------------- /docs/2.2.0/Protocols/Factor.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/twilio/twilio-verify-ios/HEAD/docs/2.2.0/Protocols/Factor.html -------------------------------------------------------------------------------- /docs/2.2.0/Protocols/FactorPayload.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/twilio/twilio-verify-ios/HEAD/docs/2.2.0/Protocols/FactorPayload.html -------------------------------------------------------------------------------- /docs/2.2.0/Protocols/LoggerService.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/twilio/twilio-verify-ios/HEAD/docs/2.2.0/Protocols/LoggerService.html -------------------------------------------------------------------------------- /docs/2.2.0/Protocols/Metadata.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/twilio/twilio-verify-ios/HEAD/docs/2.2.0/Protocols/Metadata.html -------------------------------------------------------------------------------- /docs/2.2.0/Protocols/NetworkProvider.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/twilio/twilio-verify-ios/HEAD/docs/2.2.0/Protocols/NetworkProvider.html -------------------------------------------------------------------------------- /docs/2.2.0/Protocols/TwilioVerify.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/twilio/twilio-verify-ios/HEAD/docs/2.2.0/Protocols/TwilioVerify.html -------------------------------------------------------------------------------- /docs/2.2.0/Structs.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/twilio/twilio-verify-ios/HEAD/docs/2.2.0/Structs.html -------------------------------------------------------------------------------- /docs/2.2.0/Structs/APIError.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/twilio/twilio-verify-ios/HEAD/docs/2.2.0/Structs/APIError.html -------------------------------------------------------------------------------- /docs/2.2.0/Structs/ChallengeDetails.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/twilio/twilio-verify-ios/HEAD/docs/2.2.0/Structs/ChallengeDetails.html -------------------------------------------------------------------------------- /docs/2.2.0/Structs/Detail.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/twilio/twilio-verify-ios/HEAD/docs/2.2.0/Structs/Detail.html -------------------------------------------------------------------------------- /docs/2.2.0/Structs/FailureResponse.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/twilio/twilio-verify-ios/HEAD/docs/2.2.0/Structs/FailureResponse.html -------------------------------------------------------------------------------- /docs/2.2.0/Structs/NetworkResponse.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/twilio/twilio-verify-ios/HEAD/docs/2.2.0/Structs/NetworkResponse.html -------------------------------------------------------------------------------- /docs/2.2.0/Structs/PushFactorPayload.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/twilio/twilio-verify-ios/HEAD/docs/2.2.0/Structs/PushFactorPayload.html -------------------------------------------------------------------------------- /docs/2.2.0/Typealiases.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/twilio/twilio-verify-ios/HEAD/docs/2.2.0/Typealiases.html -------------------------------------------------------------------------------- /docs/2.2.0/badge.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/twilio/twilio-verify-ios/HEAD/docs/2.2.0/badge.svg -------------------------------------------------------------------------------- /docs/2.2.0/css/highlight.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/twilio/twilio-verify-ios/HEAD/docs/2.2.0/css/highlight.css -------------------------------------------------------------------------------- /docs/2.2.0/css/jazzy.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/twilio/twilio-verify-ios/HEAD/docs/2.2.0/css/jazzy.css -------------------------------------------------------------------------------- /docs/2.2.0/docsets/TwilioVerifySDK.tgz: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/twilio/twilio-verify-ios/HEAD/docs/2.2.0/docsets/TwilioVerifySDK.tgz -------------------------------------------------------------------------------- /docs/2.2.0/img/carat.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/twilio/twilio-verify-ios/HEAD/docs/2.2.0/img/carat.png -------------------------------------------------------------------------------- /docs/2.2.0/img/dash.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/twilio/twilio-verify-ios/HEAD/docs/2.2.0/img/dash.png -------------------------------------------------------------------------------- /docs/2.2.0/img/spinner.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/twilio/twilio-verify-ios/HEAD/docs/2.2.0/img/spinner.gif -------------------------------------------------------------------------------- /docs/2.2.0/index.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/twilio/twilio-verify-ios/HEAD/docs/2.2.0/index.html -------------------------------------------------------------------------------- /docs/2.2.0/js/jazzy.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/twilio/twilio-verify-ios/HEAD/docs/2.2.0/js/jazzy.js -------------------------------------------------------------------------------- /docs/2.2.0/js/jazzy.search.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/twilio/twilio-verify-ios/HEAD/docs/2.2.0/js/jazzy.search.js -------------------------------------------------------------------------------- /docs/2.2.0/js/jquery.min.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/twilio/twilio-verify-ios/HEAD/docs/2.2.0/js/jquery.min.js -------------------------------------------------------------------------------- /docs/2.2.0/js/lunr.min.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/twilio/twilio-verify-ios/HEAD/docs/2.2.0/js/lunr.min.js -------------------------------------------------------------------------------- /docs/2.2.0/js/typeahead.jquery.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/twilio/twilio-verify-ios/HEAD/docs/2.2.0/js/typeahead.jquery.js -------------------------------------------------------------------------------- /docs/2.2.0/search.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/twilio/twilio-verify-ios/HEAD/docs/2.2.0/search.json -------------------------------------------------------------------------------- /docs/2.2.0/undocumented.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/twilio/twilio-verify-ios/HEAD/docs/2.2.0/undocumented.json -------------------------------------------------------------------------------- /docs/2.2.1/Classes.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/twilio/twilio-verify-ios/HEAD/docs/2.2.1/Classes.html -------------------------------------------------------------------------------- /docs/2.2.1/Enums.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/twilio/twilio-verify-ios/HEAD/docs/2.2.1/Enums.html -------------------------------------------------------------------------------- /docs/2.2.1/Enums/ChallengeListOrder.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/twilio/twilio-verify-ios/HEAD/docs/2.2.1/Enums/ChallengeListOrder.html -------------------------------------------------------------------------------- /docs/2.2.1/Enums/ChallengeStatus.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/twilio/twilio-verify-ios/HEAD/docs/2.2.1/Enums/ChallengeStatus.html -------------------------------------------------------------------------------- /docs/2.2.1/Enums/FactorStatus.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/twilio/twilio-verify-ios/HEAD/docs/2.2.1/Enums/FactorStatus.html -------------------------------------------------------------------------------- /docs/2.2.1/Enums/FactorType.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/twilio/twilio-verify-ios/HEAD/docs/2.2.1/Enums/FactorType.html -------------------------------------------------------------------------------- /docs/2.2.1/Enums/InputError.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/twilio/twilio-verify-ios/HEAD/docs/2.2.1/Enums/InputError.html -------------------------------------------------------------------------------- /docs/2.2.1/Enums/KeyManagerError.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/twilio/twilio-verify-ios/HEAD/docs/2.2.1/Enums/KeyManagerError.html -------------------------------------------------------------------------------- /docs/2.2.1/Enums/LogLevel.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/twilio/twilio-verify-ios/HEAD/docs/2.2.1/Enums/LogLevel.html -------------------------------------------------------------------------------- /docs/2.2.1/Enums/NetworkError.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/twilio/twilio-verify-ios/HEAD/docs/2.2.1/Enums/NetworkError.html -------------------------------------------------------------------------------- /docs/2.2.1/Enums/SecureStorageError.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/twilio/twilio-verify-ios/HEAD/docs/2.2.1/Enums/SecureStorageError.html -------------------------------------------------------------------------------- /docs/2.2.1/Enums/TwilioVerifyError.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/twilio/twilio-verify-ios/HEAD/docs/2.2.1/Enums/TwilioVerifyError.html -------------------------------------------------------------------------------- /docs/2.2.1/Protocols.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/twilio/twilio-verify-ios/HEAD/docs/2.2.1/Protocols.html -------------------------------------------------------------------------------- /docs/2.2.1/Protocols/Challenge.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/twilio/twilio-verify-ios/HEAD/docs/2.2.1/Protocols/Challenge.html -------------------------------------------------------------------------------- /docs/2.2.1/Protocols/ChallengeList.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/twilio/twilio-verify-ios/HEAD/docs/2.2.1/Protocols/ChallengeList.html -------------------------------------------------------------------------------- /docs/2.2.1/Protocols/Factor.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/twilio/twilio-verify-ios/HEAD/docs/2.2.1/Protocols/Factor.html -------------------------------------------------------------------------------- /docs/2.2.1/Protocols/FactorPayload.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/twilio/twilio-verify-ios/HEAD/docs/2.2.1/Protocols/FactorPayload.html -------------------------------------------------------------------------------- /docs/2.2.1/Protocols/LoggerService.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/twilio/twilio-verify-ios/HEAD/docs/2.2.1/Protocols/LoggerService.html -------------------------------------------------------------------------------- /docs/2.2.1/Protocols/Metadata.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/twilio/twilio-verify-ios/HEAD/docs/2.2.1/Protocols/Metadata.html -------------------------------------------------------------------------------- /docs/2.2.1/Protocols/NetworkProvider.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/twilio/twilio-verify-ios/HEAD/docs/2.2.1/Protocols/NetworkProvider.html -------------------------------------------------------------------------------- /docs/2.2.1/Protocols/OperationError.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/twilio/twilio-verify-ios/HEAD/docs/2.2.1/Protocols/OperationError.html -------------------------------------------------------------------------------- /docs/2.2.1/Protocols/TwilioVerify.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/twilio/twilio-verify-ios/HEAD/docs/2.2.1/Protocols/TwilioVerify.html -------------------------------------------------------------------------------- /docs/2.2.1/Structs.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/twilio/twilio-verify-ios/HEAD/docs/2.2.1/Structs.html -------------------------------------------------------------------------------- /docs/2.2.1/Structs/APIError.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/twilio/twilio-verify-ios/HEAD/docs/2.2.1/Structs/APIError.html -------------------------------------------------------------------------------- /docs/2.2.1/Structs/ChallengeDetails.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/twilio/twilio-verify-ios/HEAD/docs/2.2.1/Structs/ChallengeDetails.html -------------------------------------------------------------------------------- /docs/2.2.1/Structs/Detail.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/twilio/twilio-verify-ios/HEAD/docs/2.2.1/Structs/Detail.html -------------------------------------------------------------------------------- /docs/2.2.1/Structs/FailureResponse.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/twilio/twilio-verify-ios/HEAD/docs/2.2.1/Structs/FailureResponse.html -------------------------------------------------------------------------------- /docs/2.2.1/Structs/NetworkResponse.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/twilio/twilio-verify-ios/HEAD/docs/2.2.1/Structs/NetworkResponse.html -------------------------------------------------------------------------------- /docs/2.2.1/Structs/PushFactorPayload.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/twilio/twilio-verify-ios/HEAD/docs/2.2.1/Structs/PushFactorPayload.html -------------------------------------------------------------------------------- /docs/2.2.1/Typealiases.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/twilio/twilio-verify-ios/HEAD/docs/2.2.1/Typealiases.html -------------------------------------------------------------------------------- /docs/2.2.1/badge.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/twilio/twilio-verify-ios/HEAD/docs/2.2.1/badge.svg -------------------------------------------------------------------------------- /docs/2.2.1/css/highlight.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/twilio/twilio-verify-ios/HEAD/docs/2.2.1/css/highlight.css -------------------------------------------------------------------------------- /docs/2.2.1/css/jazzy.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/twilio/twilio-verify-ios/HEAD/docs/2.2.1/css/jazzy.css -------------------------------------------------------------------------------- /docs/2.2.1/docsets/TwilioVerifySDK.tgz: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/twilio/twilio-verify-ios/HEAD/docs/2.2.1/docsets/TwilioVerifySDK.tgz -------------------------------------------------------------------------------- /docs/2.2.1/img/carat.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/twilio/twilio-verify-ios/HEAD/docs/2.2.1/img/carat.png -------------------------------------------------------------------------------- /docs/2.2.1/img/dash.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/twilio/twilio-verify-ios/HEAD/docs/2.2.1/img/dash.png -------------------------------------------------------------------------------- /docs/2.2.1/img/spinner.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/twilio/twilio-verify-ios/HEAD/docs/2.2.1/img/spinner.gif -------------------------------------------------------------------------------- /docs/2.2.1/index.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/twilio/twilio-verify-ios/HEAD/docs/2.2.1/index.html -------------------------------------------------------------------------------- /docs/2.2.1/js/jazzy.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/twilio/twilio-verify-ios/HEAD/docs/2.2.1/js/jazzy.js -------------------------------------------------------------------------------- /docs/2.2.1/js/jazzy.search.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/twilio/twilio-verify-ios/HEAD/docs/2.2.1/js/jazzy.search.js -------------------------------------------------------------------------------- /docs/2.2.1/js/jquery.min.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/twilio/twilio-verify-ios/HEAD/docs/2.2.1/js/jquery.min.js -------------------------------------------------------------------------------- /docs/2.2.1/js/lunr.min.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/twilio/twilio-verify-ios/HEAD/docs/2.2.1/js/lunr.min.js -------------------------------------------------------------------------------- /docs/2.2.1/js/typeahead.jquery.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/twilio/twilio-verify-ios/HEAD/docs/2.2.1/js/typeahead.jquery.js -------------------------------------------------------------------------------- /docs/2.2.1/search.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/twilio/twilio-verify-ios/HEAD/docs/2.2.1/search.json -------------------------------------------------------------------------------- /docs/2.2.1/undocumented.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/twilio/twilio-verify-ios/HEAD/docs/2.2.1/undocumented.json -------------------------------------------------------------------------------- /docs/2.2.2/Classes.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/twilio/twilio-verify-ios/HEAD/docs/2.2.2/Classes.html -------------------------------------------------------------------------------- /docs/2.2.2/Enums.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/twilio/twilio-verify-ios/HEAD/docs/2.2.2/Enums.html -------------------------------------------------------------------------------- /docs/2.2.2/Enums/ChallengeListOrder.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/twilio/twilio-verify-ios/HEAD/docs/2.2.2/Enums/ChallengeListOrder.html -------------------------------------------------------------------------------- /docs/2.2.2/Enums/ChallengeStatus.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/twilio/twilio-verify-ios/HEAD/docs/2.2.2/Enums/ChallengeStatus.html -------------------------------------------------------------------------------- /docs/2.2.2/Enums/FactorStatus.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/twilio/twilio-verify-ios/HEAD/docs/2.2.2/Enums/FactorStatus.html -------------------------------------------------------------------------------- /docs/2.2.2/Enums/FactorType.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/twilio/twilio-verify-ios/HEAD/docs/2.2.2/Enums/FactorType.html -------------------------------------------------------------------------------- /docs/2.2.2/Enums/InputError.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/twilio/twilio-verify-ios/HEAD/docs/2.2.2/Enums/InputError.html -------------------------------------------------------------------------------- /docs/2.2.2/Enums/KeyManagerError.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/twilio/twilio-verify-ios/HEAD/docs/2.2.2/Enums/KeyManagerError.html -------------------------------------------------------------------------------- /docs/2.2.2/Enums/LogLevel.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/twilio/twilio-verify-ios/HEAD/docs/2.2.2/Enums/LogLevel.html -------------------------------------------------------------------------------- /docs/2.2.2/Enums/NetworkError.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/twilio/twilio-verify-ios/HEAD/docs/2.2.2/Enums/NetworkError.html -------------------------------------------------------------------------------- /docs/2.2.2/Enums/SecureStorageError.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/twilio/twilio-verify-ios/HEAD/docs/2.2.2/Enums/SecureStorageError.html -------------------------------------------------------------------------------- /docs/2.2.2/Enums/TwilioVerifyError.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/twilio/twilio-verify-ios/HEAD/docs/2.2.2/Enums/TwilioVerifyError.html -------------------------------------------------------------------------------- /docs/2.2.2/Protocols.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/twilio/twilio-verify-ios/HEAD/docs/2.2.2/Protocols.html -------------------------------------------------------------------------------- /docs/2.2.2/Protocols/Challenge.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/twilio/twilio-verify-ios/HEAD/docs/2.2.2/Protocols/Challenge.html -------------------------------------------------------------------------------- /docs/2.2.2/Protocols/ChallengeList.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/twilio/twilio-verify-ios/HEAD/docs/2.2.2/Protocols/ChallengeList.html -------------------------------------------------------------------------------- /docs/2.2.2/Protocols/Factor.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/twilio/twilio-verify-ios/HEAD/docs/2.2.2/Protocols/Factor.html -------------------------------------------------------------------------------- /docs/2.2.2/Protocols/FactorPayload.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/twilio/twilio-verify-ios/HEAD/docs/2.2.2/Protocols/FactorPayload.html -------------------------------------------------------------------------------- /docs/2.2.2/Protocols/LoggerService.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/twilio/twilio-verify-ios/HEAD/docs/2.2.2/Protocols/LoggerService.html -------------------------------------------------------------------------------- /docs/2.2.2/Protocols/Metadata.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/twilio/twilio-verify-ios/HEAD/docs/2.2.2/Protocols/Metadata.html -------------------------------------------------------------------------------- /docs/2.2.2/Protocols/NetworkProvider.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/twilio/twilio-verify-ios/HEAD/docs/2.2.2/Protocols/NetworkProvider.html -------------------------------------------------------------------------------- /docs/2.2.2/Protocols/OperationError.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/twilio/twilio-verify-ios/HEAD/docs/2.2.2/Protocols/OperationError.html -------------------------------------------------------------------------------- /docs/2.2.2/Protocols/TwilioVerify.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/twilio/twilio-verify-ios/HEAD/docs/2.2.2/Protocols/TwilioVerify.html -------------------------------------------------------------------------------- /docs/2.2.2/Structs.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/twilio/twilio-verify-ios/HEAD/docs/2.2.2/Structs.html -------------------------------------------------------------------------------- /docs/2.2.2/Structs/APIError.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/twilio/twilio-verify-ios/HEAD/docs/2.2.2/Structs/APIError.html -------------------------------------------------------------------------------- /docs/2.2.2/Structs/ChallengeDetails.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/twilio/twilio-verify-ios/HEAD/docs/2.2.2/Structs/ChallengeDetails.html -------------------------------------------------------------------------------- /docs/2.2.2/Structs/Detail.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/twilio/twilio-verify-ios/HEAD/docs/2.2.2/Structs/Detail.html -------------------------------------------------------------------------------- /docs/2.2.2/Structs/FailureResponse.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/twilio/twilio-verify-ios/HEAD/docs/2.2.2/Structs/FailureResponse.html -------------------------------------------------------------------------------- /docs/2.2.2/Structs/NetworkResponse.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/twilio/twilio-verify-ios/HEAD/docs/2.2.2/Structs/NetworkResponse.html -------------------------------------------------------------------------------- /docs/2.2.2/Structs/PushFactorPayload.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/twilio/twilio-verify-ios/HEAD/docs/2.2.2/Structs/PushFactorPayload.html -------------------------------------------------------------------------------- /docs/2.2.2/Typealiases.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/twilio/twilio-verify-ios/HEAD/docs/2.2.2/Typealiases.html -------------------------------------------------------------------------------- /docs/2.2.2/badge.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/twilio/twilio-verify-ios/HEAD/docs/2.2.2/badge.svg -------------------------------------------------------------------------------- /docs/2.2.2/css/highlight.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/twilio/twilio-verify-ios/HEAD/docs/2.2.2/css/highlight.css -------------------------------------------------------------------------------- /docs/2.2.2/css/jazzy.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/twilio/twilio-verify-ios/HEAD/docs/2.2.2/css/jazzy.css -------------------------------------------------------------------------------- /docs/2.2.2/docsets/TwilioVerifySDK.tgz: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/twilio/twilio-verify-ios/HEAD/docs/2.2.2/docsets/TwilioVerifySDK.tgz -------------------------------------------------------------------------------- /docs/2.2.2/img/carat.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/twilio/twilio-verify-ios/HEAD/docs/2.2.2/img/carat.png -------------------------------------------------------------------------------- /docs/2.2.2/img/dash.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/twilio/twilio-verify-ios/HEAD/docs/2.2.2/img/dash.png -------------------------------------------------------------------------------- /docs/2.2.2/img/spinner.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/twilio/twilio-verify-ios/HEAD/docs/2.2.2/img/spinner.gif -------------------------------------------------------------------------------- /docs/2.2.2/index.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/twilio/twilio-verify-ios/HEAD/docs/2.2.2/index.html -------------------------------------------------------------------------------- /docs/2.2.2/js/jazzy.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/twilio/twilio-verify-ios/HEAD/docs/2.2.2/js/jazzy.js -------------------------------------------------------------------------------- /docs/2.2.2/js/jazzy.search.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/twilio/twilio-verify-ios/HEAD/docs/2.2.2/js/jazzy.search.js -------------------------------------------------------------------------------- /docs/2.2.2/js/jquery.min.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/twilio/twilio-verify-ios/HEAD/docs/2.2.2/js/jquery.min.js -------------------------------------------------------------------------------- /docs/2.2.2/js/lunr.min.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/twilio/twilio-verify-ios/HEAD/docs/2.2.2/js/lunr.min.js -------------------------------------------------------------------------------- /docs/2.2.2/js/typeahead.jquery.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/twilio/twilio-verify-ios/HEAD/docs/2.2.2/js/typeahead.jquery.js -------------------------------------------------------------------------------- /docs/2.2.2/search.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/twilio/twilio-verify-ios/HEAD/docs/2.2.2/search.json -------------------------------------------------------------------------------- /docs/2.2.2/undocumented.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/twilio/twilio-verify-ios/HEAD/docs/2.2.2/undocumented.json -------------------------------------------------------------------------------- /docs/3.0.0/Classes.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/twilio/twilio-verify-ios/HEAD/docs/3.0.0/Classes.html -------------------------------------------------------------------------------- /docs/3.0.0/Enums.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/twilio/twilio-verify-ios/HEAD/docs/3.0.0/Enums.html -------------------------------------------------------------------------------- /docs/3.0.0/Enums/ChallengeListOrder.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/twilio/twilio-verify-ios/HEAD/docs/3.0.0/Enums/ChallengeListOrder.html -------------------------------------------------------------------------------- /docs/3.0.0/Enums/ChallengeStatus.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/twilio/twilio-verify-ios/HEAD/docs/3.0.0/Enums/ChallengeStatus.html -------------------------------------------------------------------------------- /docs/3.0.0/Enums/FactorStatus.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/twilio/twilio-verify-ios/HEAD/docs/3.0.0/Enums/FactorStatus.html -------------------------------------------------------------------------------- /docs/3.0.0/Enums/FactorType.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/twilio/twilio-verify-ios/HEAD/docs/3.0.0/Enums/FactorType.html -------------------------------------------------------------------------------- /docs/3.0.0/Enums/InputError.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/twilio/twilio-verify-ios/HEAD/docs/3.0.0/Enums/InputError.html -------------------------------------------------------------------------------- /docs/3.0.0/Enums/KeyManagerError.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/twilio/twilio-verify-ios/HEAD/docs/3.0.0/Enums/KeyManagerError.html -------------------------------------------------------------------------------- /docs/3.0.0/Enums/LogLevel.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/twilio/twilio-verify-ios/HEAD/docs/3.0.0/Enums/LogLevel.html -------------------------------------------------------------------------------- /docs/3.0.0/Enums/NetworkError.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/twilio/twilio-verify-ios/HEAD/docs/3.0.0/Enums/NetworkError.html -------------------------------------------------------------------------------- /docs/3.0.0/Enums/SecureStorageError.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/twilio/twilio-verify-ios/HEAD/docs/3.0.0/Enums/SecureStorageError.html -------------------------------------------------------------------------------- /docs/3.0.0/Enums/TwilioVerifyError.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/twilio/twilio-verify-ios/HEAD/docs/3.0.0/Enums/TwilioVerifyError.html -------------------------------------------------------------------------------- /docs/3.0.0/Protocols.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/twilio/twilio-verify-ios/HEAD/docs/3.0.0/Protocols.html -------------------------------------------------------------------------------- /docs/3.0.0/Protocols/Challenge.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/twilio/twilio-verify-ios/HEAD/docs/3.0.0/Protocols/Challenge.html -------------------------------------------------------------------------------- /docs/3.0.0/Protocols/ChallengeList.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/twilio/twilio-verify-ios/HEAD/docs/3.0.0/Protocols/ChallengeList.html -------------------------------------------------------------------------------- /docs/3.0.0/Protocols/Factor.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/twilio/twilio-verify-ios/HEAD/docs/3.0.0/Protocols/Factor.html -------------------------------------------------------------------------------- /docs/3.0.0/Protocols/FactorPayload.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/twilio/twilio-verify-ios/HEAD/docs/3.0.0/Protocols/FactorPayload.html -------------------------------------------------------------------------------- /docs/3.0.0/Protocols/LoggerService.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/twilio/twilio-verify-ios/HEAD/docs/3.0.0/Protocols/LoggerService.html -------------------------------------------------------------------------------- /docs/3.0.0/Protocols/Metadata.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/twilio/twilio-verify-ios/HEAD/docs/3.0.0/Protocols/Metadata.html -------------------------------------------------------------------------------- /docs/3.0.0/Protocols/NetworkProvider.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/twilio/twilio-verify-ios/HEAD/docs/3.0.0/Protocols/NetworkProvider.html -------------------------------------------------------------------------------- /docs/3.0.0/Protocols/OperationError.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/twilio/twilio-verify-ios/HEAD/docs/3.0.0/Protocols/OperationError.html -------------------------------------------------------------------------------- /docs/3.0.0/Protocols/TwilioVerify.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/twilio/twilio-verify-ios/HEAD/docs/3.0.0/Protocols/TwilioVerify.html -------------------------------------------------------------------------------- /docs/3.0.0/Structs.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/twilio/twilio-verify-ios/HEAD/docs/3.0.0/Structs.html -------------------------------------------------------------------------------- /docs/3.0.0/Structs/APIError.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/twilio/twilio-verify-ios/HEAD/docs/3.0.0/Structs/APIError.html -------------------------------------------------------------------------------- /docs/3.0.0/Structs/ChallengeDetails.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/twilio/twilio-verify-ios/HEAD/docs/3.0.0/Structs/ChallengeDetails.html -------------------------------------------------------------------------------- /docs/3.0.0/Structs/Detail.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/twilio/twilio-verify-ios/HEAD/docs/3.0.0/Structs/Detail.html -------------------------------------------------------------------------------- /docs/3.0.0/Structs/FailureResponse.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/twilio/twilio-verify-ios/HEAD/docs/3.0.0/Structs/FailureResponse.html -------------------------------------------------------------------------------- /docs/3.0.0/Structs/NetworkResponse.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/twilio/twilio-verify-ios/HEAD/docs/3.0.0/Structs/NetworkResponse.html -------------------------------------------------------------------------------- /docs/3.0.0/Structs/PushFactorPayload.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/twilio/twilio-verify-ios/HEAD/docs/3.0.0/Structs/PushFactorPayload.html -------------------------------------------------------------------------------- /docs/3.0.0/Typealiases.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/twilio/twilio-verify-ios/HEAD/docs/3.0.0/Typealiases.html -------------------------------------------------------------------------------- /docs/3.0.0/badge.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/twilio/twilio-verify-ios/HEAD/docs/3.0.0/badge.svg -------------------------------------------------------------------------------- /docs/3.0.0/css/highlight.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/twilio/twilio-verify-ios/HEAD/docs/3.0.0/css/highlight.css -------------------------------------------------------------------------------- /docs/3.0.0/css/jazzy.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/twilio/twilio-verify-ios/HEAD/docs/3.0.0/css/jazzy.css -------------------------------------------------------------------------------- /docs/3.0.0/docsets/TwilioVerifySDK.tgz: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/twilio/twilio-verify-ios/HEAD/docs/3.0.0/docsets/TwilioVerifySDK.tgz -------------------------------------------------------------------------------- /docs/3.0.0/img/carat.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/twilio/twilio-verify-ios/HEAD/docs/3.0.0/img/carat.png -------------------------------------------------------------------------------- /docs/3.0.0/img/dash.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/twilio/twilio-verify-ios/HEAD/docs/3.0.0/img/dash.png -------------------------------------------------------------------------------- /docs/3.0.0/img/spinner.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/twilio/twilio-verify-ios/HEAD/docs/3.0.0/img/spinner.gif -------------------------------------------------------------------------------- /docs/3.0.0/index.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/twilio/twilio-verify-ios/HEAD/docs/3.0.0/index.html -------------------------------------------------------------------------------- /docs/3.0.0/js/jazzy.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/twilio/twilio-verify-ios/HEAD/docs/3.0.0/js/jazzy.js -------------------------------------------------------------------------------- /docs/3.0.0/js/jazzy.search.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/twilio/twilio-verify-ios/HEAD/docs/3.0.0/js/jazzy.search.js -------------------------------------------------------------------------------- /docs/3.0.0/js/jquery.min.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/twilio/twilio-verify-ios/HEAD/docs/3.0.0/js/jquery.min.js -------------------------------------------------------------------------------- /docs/3.0.0/js/lunr.min.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/twilio/twilio-verify-ios/HEAD/docs/3.0.0/js/lunr.min.js -------------------------------------------------------------------------------- /docs/3.0.0/js/typeahead.jquery.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/twilio/twilio-verify-ios/HEAD/docs/3.0.0/js/typeahead.jquery.js -------------------------------------------------------------------------------- /docs/3.0.0/search.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/twilio/twilio-verify-ios/HEAD/docs/3.0.0/search.json -------------------------------------------------------------------------------- /docs/3.0.0/undocumented.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/twilio/twilio-verify-ios/HEAD/docs/3.0.0/undocumented.json -------------------------------------------------------------------------------- /docs/3.0.1/Classes.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/twilio/twilio-verify-ios/HEAD/docs/3.0.1/Classes.html -------------------------------------------------------------------------------- /docs/3.0.1/Enums.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/twilio/twilio-verify-ios/HEAD/docs/3.0.1/Enums.html -------------------------------------------------------------------------------- /docs/3.0.1/Enums/ChallengeListOrder.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/twilio/twilio-verify-ios/HEAD/docs/3.0.1/Enums/ChallengeListOrder.html -------------------------------------------------------------------------------- /docs/3.0.1/Enums/ChallengeStatus.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/twilio/twilio-verify-ios/HEAD/docs/3.0.1/Enums/ChallengeStatus.html -------------------------------------------------------------------------------- /docs/3.0.1/Enums/FactorStatus.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/twilio/twilio-verify-ios/HEAD/docs/3.0.1/Enums/FactorStatus.html -------------------------------------------------------------------------------- /docs/3.0.1/Enums/FactorType.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/twilio/twilio-verify-ios/HEAD/docs/3.0.1/Enums/FactorType.html -------------------------------------------------------------------------------- /docs/3.0.1/Enums/InputError.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/twilio/twilio-verify-ios/HEAD/docs/3.0.1/Enums/InputError.html -------------------------------------------------------------------------------- /docs/3.0.1/Enums/KeyManagerError.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/twilio/twilio-verify-ios/HEAD/docs/3.0.1/Enums/KeyManagerError.html -------------------------------------------------------------------------------- /docs/3.0.1/Enums/LogLevel.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/twilio/twilio-verify-ios/HEAD/docs/3.0.1/Enums/LogLevel.html -------------------------------------------------------------------------------- /docs/3.0.1/Enums/NetworkError.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/twilio/twilio-verify-ios/HEAD/docs/3.0.1/Enums/NetworkError.html -------------------------------------------------------------------------------- /docs/3.0.1/Enums/SecureStorageError.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/twilio/twilio-verify-ios/HEAD/docs/3.0.1/Enums/SecureStorageError.html -------------------------------------------------------------------------------- /docs/3.0.1/Enums/TwilioVerifyError.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/twilio/twilio-verify-ios/HEAD/docs/3.0.1/Enums/TwilioVerifyError.html -------------------------------------------------------------------------------- /docs/3.0.1/Protocols.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/twilio/twilio-verify-ios/HEAD/docs/3.0.1/Protocols.html -------------------------------------------------------------------------------- /docs/3.0.1/Protocols/Challenge.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/twilio/twilio-verify-ios/HEAD/docs/3.0.1/Protocols/Challenge.html -------------------------------------------------------------------------------- /docs/3.0.1/Protocols/ChallengeList.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/twilio/twilio-verify-ios/HEAD/docs/3.0.1/Protocols/ChallengeList.html -------------------------------------------------------------------------------- /docs/3.0.1/Protocols/Factor.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/twilio/twilio-verify-ios/HEAD/docs/3.0.1/Protocols/Factor.html -------------------------------------------------------------------------------- /docs/3.0.1/Protocols/FactorPayload.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/twilio/twilio-verify-ios/HEAD/docs/3.0.1/Protocols/FactorPayload.html -------------------------------------------------------------------------------- /docs/3.0.1/Protocols/LoggerService.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/twilio/twilio-verify-ios/HEAD/docs/3.0.1/Protocols/LoggerService.html -------------------------------------------------------------------------------- /docs/3.0.1/Protocols/Metadata.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/twilio/twilio-verify-ios/HEAD/docs/3.0.1/Protocols/Metadata.html -------------------------------------------------------------------------------- /docs/3.0.1/Protocols/NetworkProvider.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/twilio/twilio-verify-ios/HEAD/docs/3.0.1/Protocols/NetworkProvider.html -------------------------------------------------------------------------------- /docs/3.0.1/Protocols/OperationError.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/twilio/twilio-verify-ios/HEAD/docs/3.0.1/Protocols/OperationError.html -------------------------------------------------------------------------------- /docs/3.0.1/Protocols/TwilioVerify.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/twilio/twilio-verify-ios/HEAD/docs/3.0.1/Protocols/TwilioVerify.html -------------------------------------------------------------------------------- /docs/3.0.1/Structs.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/twilio/twilio-verify-ios/HEAD/docs/3.0.1/Structs.html -------------------------------------------------------------------------------- /docs/3.0.1/Structs/APIError.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/twilio/twilio-verify-ios/HEAD/docs/3.0.1/Structs/APIError.html -------------------------------------------------------------------------------- /docs/3.0.1/Structs/ChallengeDetails.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/twilio/twilio-verify-ios/HEAD/docs/3.0.1/Structs/ChallengeDetails.html -------------------------------------------------------------------------------- /docs/3.0.1/Structs/Detail.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/twilio/twilio-verify-ios/HEAD/docs/3.0.1/Structs/Detail.html -------------------------------------------------------------------------------- /docs/3.0.1/Structs/FailureResponse.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/twilio/twilio-verify-ios/HEAD/docs/3.0.1/Structs/FailureResponse.html -------------------------------------------------------------------------------- /docs/3.0.1/Structs/NetworkResponse.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/twilio/twilio-verify-ios/HEAD/docs/3.0.1/Structs/NetworkResponse.html -------------------------------------------------------------------------------- /docs/3.0.1/Structs/PushFactorPayload.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/twilio/twilio-verify-ios/HEAD/docs/3.0.1/Structs/PushFactorPayload.html -------------------------------------------------------------------------------- /docs/3.0.1/Typealiases.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/twilio/twilio-verify-ios/HEAD/docs/3.0.1/Typealiases.html -------------------------------------------------------------------------------- /docs/3.0.1/badge.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/twilio/twilio-verify-ios/HEAD/docs/3.0.1/badge.svg -------------------------------------------------------------------------------- /docs/3.0.1/css/highlight.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/twilio/twilio-verify-ios/HEAD/docs/3.0.1/css/highlight.css -------------------------------------------------------------------------------- /docs/3.0.1/css/jazzy.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/twilio/twilio-verify-ios/HEAD/docs/3.0.1/css/jazzy.css -------------------------------------------------------------------------------- /docs/3.0.1/docsets/TwilioVerifySDK.tgz: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/twilio/twilio-verify-ios/HEAD/docs/3.0.1/docsets/TwilioVerifySDK.tgz -------------------------------------------------------------------------------- /docs/3.0.1/img/carat.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/twilio/twilio-verify-ios/HEAD/docs/3.0.1/img/carat.png -------------------------------------------------------------------------------- /docs/3.0.1/img/dash.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/twilio/twilio-verify-ios/HEAD/docs/3.0.1/img/dash.png -------------------------------------------------------------------------------- /docs/3.0.1/img/spinner.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/twilio/twilio-verify-ios/HEAD/docs/3.0.1/img/spinner.gif -------------------------------------------------------------------------------- /docs/3.0.1/index.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/twilio/twilio-verify-ios/HEAD/docs/3.0.1/index.html -------------------------------------------------------------------------------- /docs/3.0.1/js/jazzy.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/twilio/twilio-verify-ios/HEAD/docs/3.0.1/js/jazzy.js -------------------------------------------------------------------------------- /docs/3.0.1/js/jazzy.search.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/twilio/twilio-verify-ios/HEAD/docs/3.0.1/js/jazzy.search.js -------------------------------------------------------------------------------- /docs/3.0.1/js/jquery.min.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/twilio/twilio-verify-ios/HEAD/docs/3.0.1/js/jquery.min.js -------------------------------------------------------------------------------- /docs/3.0.1/js/lunr.min.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/twilio/twilio-verify-ios/HEAD/docs/3.0.1/js/lunr.min.js -------------------------------------------------------------------------------- /docs/3.0.1/js/typeahead.jquery.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/twilio/twilio-verify-ios/HEAD/docs/3.0.1/js/typeahead.jquery.js -------------------------------------------------------------------------------- /docs/3.0.1/search.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/twilio/twilio-verify-ios/HEAD/docs/3.0.1/search.json -------------------------------------------------------------------------------- /docs/3.0.1/undocumented.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/twilio/twilio-verify-ios/HEAD/docs/3.0.1/undocumented.json -------------------------------------------------------------------------------- /docs/latest: -------------------------------------------------------------------------------- 1 | 3.0.1 -------------------------------------------------------------------------------- /fastlane/Fastfile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/twilio/twilio-verify-ios/HEAD/fastlane/Fastfile -------------------------------------------------------------------------------- /fastlane/Pluginfile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/twilio/twilio-verify-ios/HEAD/fastlane/Pluginfile -------------------------------------------------------------------------------- /fastlane/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/twilio/twilio-verify-ios/HEAD/fastlane/README.md --------------------------------------------------------------------------------