├── .gitignore ├── LICENSE ├── README.md ├── box-aspnet-mvc-skeleton-app ├── BasicMvcSample.sln ├── BasicMvcSample │ ├── App_Start │ │ ├── BundleConfig.cs │ │ ├── FilterConfig.cs │ │ ├── RouteConfig.cs │ │ └── Startup.Auth.cs │ ├── Assets │ │ └── test.txt │ ├── BasicMvcSample.csproj │ ├── Content │ │ ├── Site.css │ │ ├── bootstrap-theme.css │ │ ├── bootstrap-theme.css.map │ │ ├── bootstrap-theme.min.css │ │ ├── bootstrap.css │ │ ├── bootstrap.css.map │ │ └── bootstrap.min.css │ ├── Controllers │ │ ├── AccountController.cs │ │ ├── AppController.cs │ │ ├── Auth0AccountController.cs │ │ └── HomeController.cs │ ├── Global.asax │ ├── Global.asax.cs │ ├── Helpers │ │ ├── BoxHelper.cs │ │ └── CacheHelper.cs │ ├── Project_Readme.html │ ├── Properties │ │ └── AssemblyInfo.cs │ ├── Scripts │ │ ├── _references.js │ │ ├── bootstrap.js │ │ ├── bootstrap.min.js │ │ ├── jquery-2.1.3.intellisense.js │ │ ├── jquery-2.1.3.js │ │ ├── jquery-2.1.3.min.js │ │ ├── jquery-2.1.3.min.map │ │ ├── jquery.validate-vsdoc.js │ │ ├── jquery.validate.js │ │ ├── jquery.validate.min.js │ │ ├── jquery.validate.unobtrusive.js │ │ ├── jquery.validate.unobtrusive.min.js │ │ ├── modernizr-2.8.3.js │ │ ├── npm.js │ │ ├── respond.js │ │ ├── respond.matchmedia.addListener.js │ │ ├── respond.matchmedia.addListener.min.js │ │ └── respond.min.js │ ├── Startup.cs │ ├── Views │ │ ├── Account │ │ │ └── Login.cshtml │ │ ├── App │ │ │ ├── Doc.cshtml │ │ │ └── Index.cshtml │ │ ├── Home │ │ │ ├── About.cshtml │ │ │ ├── Contact.cshtml │ │ │ └── Index.cshtml │ │ ├── Shared │ │ │ ├── Error.cshtml │ │ │ ├── _Layout.cshtml │ │ │ └── _LoginPartial.cshtml │ │ ├── Web.config │ │ └── _ViewStart.cshtml │ ├── Web.Debug.config │ ├── Web.Release.config │ ├── Web.config │ ├── favicon.ico │ ├── fonts │ │ ├── glyphicons-halflings-regular.eot │ │ ├── glyphicons-halflings-regular.svg │ │ ├── glyphicons-halflings-regular.ttf │ │ ├── glyphicons-halflings-regular.woff │ │ └── glyphicons-halflings-regular.woff2 │ └── packages.config ├── LICENSE └── README.md ├── box-auth0-angular1-skeleton-app-sample ├── .gitignore ├── LICENSE ├── README.md ├── app.js ├── bin │ └── www ├── package.json ├── public │ ├── assets │ │ ├── app.css │ │ └── svg │ │ │ ├── avatar-1.svg │ │ │ ├── avatar-4.svg │ │ │ ├── avatars.svg │ │ │ ├── google_plus.svg │ │ │ ├── hangouts.svg │ │ │ ├── mail.svg │ │ │ ├── menu.svg │ │ │ ├── phone.svg │ │ │ ├── share.svg │ │ │ └── twitter.svg │ └── js │ │ ├── app-config.js │ │ ├── app-constants.js │ │ ├── app.controller.js │ │ ├── app.css │ │ ├── app.js │ │ ├── app.run.js │ │ ├── components │ │ ├── loading │ │ │ └── loading.html │ │ ├── previewModal │ │ │ ├── previewModal.css │ │ │ └── previewModal.html │ │ ├── toolbar │ │ │ ├── toolbar.html │ │ │ └── toolbar.js │ │ └── upload │ │ │ └── upload.html │ │ ├── home │ │ ├── home.css │ │ ├── home.html │ │ └── home.js │ │ ├── libs │ │ ├── BoxSdk.map │ │ ├── BoxSdk.min.js │ │ └── angular-auth0.js │ │ ├── package.json │ │ ├── services │ │ ├── authenticate.js │ │ ├── boxApiService.js │ │ └── boxTokenService.js │ │ └── splash │ │ └── splash.html ├── routes │ └── index.js └── views │ ├── error.ejs │ └── index.ejs ├── box-auth0-angular2-skeleton-app-sample ├── .angular-cli.json ├── .editorconfig ├── .gitignore ├── README.md ├── e2e │ ├── app.e2e-spec.ts │ ├── app.po.ts │ └── tsconfig.e2e.json ├── karma.conf.js ├── package.json ├── protractor.conf.js ├── src │ ├── app │ │ ├── app-routing.module.ts │ │ ├── app.module.ts │ │ ├── components │ │ │ ├── add-new-folder │ │ │ │ ├── add-new-folder.component.css │ │ │ │ ├── add-new-folder.component.html │ │ │ │ ├── add-new-folder.component.spec.ts │ │ │ │ └── add-new-folder.component.ts │ │ │ ├── app-view │ │ │ │ ├── app-view.component.css │ │ │ │ ├── app-view.component.html │ │ │ │ ├── app-view.component.spec.ts │ │ │ │ └── app-view.component.ts │ │ │ ├── box-explorer │ │ │ │ ├── box-explorer.component.css │ │ │ │ ├── box-explorer.component.html │ │ │ │ ├── box-explorer.component.spec.ts │ │ │ │ └── box-explorer.component.ts │ │ │ ├── callback │ │ │ │ ├── callback.component.css │ │ │ │ ├── callback.component.html │ │ │ │ ├── callback.component.spec.ts │ │ │ │ └── callback.component.ts │ │ │ ├── file-detail-view │ │ │ │ ├── file-detail-view.component.css │ │ │ │ ├── file-detail-view.component.html │ │ │ │ └── file-detail-view.component.ts │ │ │ ├── file-upload │ │ │ │ ├── file-upload.component.css │ │ │ │ ├── file-upload.component.html │ │ │ │ ├── file-upload.component.spec.ts │ │ │ │ └── file-upload.component.ts │ │ │ ├── file-view │ │ │ │ ├── file-view.component.css │ │ │ │ ├── file-view.component.html │ │ │ │ ├── file-view.component.spec.ts │ │ │ │ └── file-view.component.ts │ │ │ ├── folder-path │ │ │ │ ├── folder-path.component.css │ │ │ │ ├── folder-path.component.html │ │ │ │ ├── folder-path.component.spec.ts │ │ │ │ └── folder-path.component.ts │ │ │ ├── folder-view │ │ │ │ ├── folder-view.component.css │ │ │ │ ├── folder-view.component.html │ │ │ │ ├── folder-view.component.spec.ts │ │ │ │ └── folder-view.component.ts │ │ │ ├── preview-modal │ │ │ │ ├── preview-modal.component.css │ │ │ │ ├── preview-modal.component.html │ │ │ │ └── preview-modal.component.ts │ │ │ ├── user-view │ │ │ │ ├── user-view.component.css │ │ │ │ ├── user-view.component.html │ │ │ │ ├── user-view.component.spec.ts │ │ │ │ └── user-view.component.ts │ │ │ └── welcome-view │ │ │ │ ├── welcome-view.component.css │ │ │ │ ├── welcome-view.component.html │ │ │ │ ├── welcome-view.component.spec.ts │ │ │ │ └── welcome-view.component.ts │ │ ├── config │ │ │ ├── auth │ │ │ │ └── auth.config.ts │ │ │ └── box │ │ │ │ └── box.config.ts │ │ ├── models │ │ │ └── box │ │ │ │ ├── box-create-folder.model.ts │ │ │ │ ├── box-file.model.ts │ │ │ │ ├── box-folder.model.ts │ │ │ │ ├── box-item-collection.model.ts │ │ │ │ ├── box-item.model.ts │ │ │ │ └── box-user-stub.model.ts │ │ └── services │ │ │ ├── auth │ │ │ ├── auth.guard.ts │ │ │ ├── auth.service.spec.ts │ │ │ └── auth.service.ts │ │ │ └── box │ │ │ ├── box-client.service.ts │ │ │ ├── box-file-service.ts │ │ │ └── box-folder-service.ts │ ├── assets │ │ ├── .gitkeep │ │ ├── img │ │ │ └── box_blue.png │ │ └── loading.svg │ ├── environments │ │ ├── environment.prod.ts │ │ └── environment.ts │ ├── favicon.ico │ ├── index.html │ ├── main.ts │ ├── polyfills.ts │ ├── styles.css │ ├── test.ts │ ├── tsconfig.app.json │ ├── tsconfig.spec.json │ └── typings.d.ts ├── tsconfig.json ├── tslint.json └── yarn.lock ├── box-auth0-swift-skeleton-app-sample ├── .gitignore ├── BoxPlatformSample.xcodeproj │ ├── project.pbxproj │ └── project.xcworkspace │ │ └── contents.xcworkspacedata ├── BoxPlatformSample │ ├── AppDelegate.swift │ ├── Assets.xcassets │ │ └── AppIcon.appiconset │ │ │ └── Contents.json │ ├── Auth0.plist │ ├── Base.lproj │ │ ├── LaunchScreen.storyboard │ │ └── Main.storyboard │ ├── BoxAccessTokenDelegate.swift │ ├── HomeViewController.swift │ ├── Info.plist │ ├── ProfileViewController.swift │ ├── SessionManager.swift │ └── UIAlertControllerExtension.swift ├── BoxPlatformSampleTests │ ├── BoxPlatformSampleTests.swift │ └── Info.plist ├── BoxPlatformSampleUITests │ ├── BoxPlatformSampleUITests.swift │ └── Info.plist ├── Cartfile ├── Cartfile.resolved ├── Carthage │ └── Checkouts │ │ ├── Auth0.swift │ │ ├── .gitignore │ │ ├── .ruby-version │ │ ├── .swift-version │ │ ├── .swiftlint.yml │ │ ├── App │ │ │ ├── AppDelegate.swift │ │ │ ├── Assets.xcassets │ │ │ │ └── AppIcon.appiconset │ │ │ │ │ └── Contents.json │ │ │ ├── Base.lproj │ │ │ │ ├── LaunchScreen.storyboard │ │ │ │ └── Main.storyboard │ │ │ ├── Info.plist │ │ │ └── ViewController.swift │ │ ├── Auth0.podspec │ │ ├── Auth0.xcodeproj │ │ │ ├── project.pbxproj │ │ │ ├── project.xcworkspace │ │ │ │ └── contents.xcworkspacedata │ │ │ └── xcshareddata │ │ │ │ └── xcschemes │ │ │ │ ├── Auth0.iOS.xcscheme │ │ │ │ ├── Auth0.macOS.xcscheme │ │ │ │ ├── Auth0.tvOS.xcscheme │ │ │ │ └── OAuth2.iOS.xcscheme │ │ ├── Auth0 │ │ │ ├── A0ChallengeGenerator.h │ │ │ ├── A0ChallengeGenerator.m │ │ │ ├── Auth0.h │ │ │ ├── Auth0.swift │ │ │ ├── Auth0Authentication.swift │ │ │ ├── Auth0Error.swift │ │ │ ├── AuthProvider.swift │ │ │ ├── AuthTransaction.swift │ │ │ ├── Authentication.swift │ │ │ ├── AuthenticationError.swift │ │ │ ├── ControllerModalPresenter.swift │ │ │ ├── Credentials.swift │ │ │ ├── CredentialsManager.swift │ │ │ ├── CredentialsManagerError.swift │ │ │ ├── Date.swift │ │ │ ├── Handlers.swift │ │ │ ├── Identity.swift │ │ │ ├── Info-tvOS.plist │ │ │ ├── Info.plist │ │ │ ├── JSONObjectPayload.swift │ │ │ ├── Loggable.swift │ │ │ ├── Logger.swift │ │ │ ├── Management.swift │ │ │ ├── ManagementError.swift │ │ │ ├── NSData+URLSafe.swift │ │ │ ├── NSError+Helper.swift │ │ │ ├── NSURL+Auth0.swift │ │ │ ├── NSURLComponents+OAuth2.swift │ │ │ ├── NativeAuth.swift │ │ │ ├── OAuth2Grant.swift │ │ │ ├── Profile.swift │ │ │ ├── Request.swift │ │ │ ├── Requestable.swift │ │ │ ├── Response.swift │ │ │ ├── ResponseType.swift │ │ │ ├── Result.swift │ │ │ ├── SafariSession.swift │ │ │ ├── SafariWebAuth.swift │ │ │ ├── SilentSafariViewController.swift │ │ │ ├── Telemetry.swift │ │ │ ├── TouchAuthentication.swift │ │ │ ├── TransactionStore.swift │ │ │ ├── UserInfo.swift │ │ │ ├── UserPatchAttributes.swift │ │ │ ├── Users.swift │ │ │ ├── WebAuth.swift │ │ │ ├── WebAuthError.swift │ │ │ ├── _ObjectiveAuthenticationAPI.swift │ │ │ ├── _ObjectiveManagementAPI.swift │ │ │ └── _ObjectiveWebAuth.swift │ │ ├── Auth0Tests │ │ │ ├── A0WebAuthSpec.m │ │ │ ├── Auth0.plist │ │ │ ├── Auth0Spec.swift │ │ │ ├── Auth0Tests.OSX-Bridging-Header.h │ │ │ ├── Auth0Tests.iOS-Bridging-Header.h │ │ │ ├── AuthenticationAPISpec.m │ │ │ ├── AuthenticationErrorSpec.swift │ │ │ ├── AuthenticationSpec.swift │ │ │ ├── ChallengeGeneratorSpec.swift │ │ │ ├── ControllerModalPresenterSpec.swift │ │ │ ├── CredentialsManagerSpec.swift │ │ │ ├── CredentialsSpec.swift │ │ │ ├── IdentitySpec.swift │ │ │ ├── Info.plist │ │ │ ├── LoggerSpec.swift │ │ │ ├── ManagementSpec.swift │ │ │ ├── Matchers.swift │ │ │ ├── NativeAuthSpec.swift │ │ │ ├── OAuth2GrantSpec.swift │ │ │ ├── ProfileSpec.swift │ │ │ ├── ResponseSpec.swift │ │ │ ├── Responses.swift │ │ │ ├── SafariSessionSpec.swift │ │ │ ├── TelemetrySpec.swift │ │ │ ├── TouchAuthenticationSpec.swift │ │ │ ├── TransactionStoreSpec.swift │ │ │ ├── UserInfoSpec.swift │ │ │ ├── UserPatchAttributesSpec.swift │ │ │ ├── UsersSpec.swift │ │ │ ├── WebAuthErrorSpec.swift │ │ │ └── WebAuthSpec.swift │ │ ├── CHANGELOG.md │ │ ├── Cartfile │ │ ├── Cartfile.private │ │ ├── Cartfile.resolved │ │ ├── Gemfile │ │ ├── Gemfile.lock │ │ ├── LICENSE │ │ ├── README.md │ │ ├── circle.yml │ │ ├── codecov.yml │ │ └── fastlane │ │ │ ├── Appfile │ │ │ ├── Fastfile │ │ │ ├── Matchfile │ │ │ ├── Pluginfile │ │ │ ├── README.md │ │ │ └── Scanfile │ │ ├── Lock.swift │ │ ├── .github │ │ │ ├── ISSUE_TEMPLATE.md │ │ │ └── PULL_REQUEST_TEMPLATE.md │ │ ├── .gitignore │ │ ├── .swift-version │ │ ├── .swiftlint.yml │ │ ├── App │ │ │ ├── AppDelegate.swift │ │ │ ├── Assets.xcassets │ │ │ │ ├── AppIcon.appiconset │ │ │ │ │ └── Contents.json │ │ │ │ ├── Contents.json │ │ │ │ ├── ic_slack.imageset │ │ │ │ │ ├── Contents.json │ │ │ │ │ └── ic_slack.pdf │ │ │ │ ├── icn_phantom.imageset │ │ │ │ │ ├── Contents.json │ │ │ │ │ └── fabrikam.pdf │ │ │ │ ├── icn_phantom_back.imageset │ │ │ │ │ ├── Contents.json │ │ │ │ │ └── icn_phantom_back.pdf │ │ │ │ └── icn_phantom_exit.imageset │ │ │ │ │ ├── Contents.json │ │ │ │ │ └── icn_phantom_exit.pdf │ │ │ ├── Base.lproj │ │ │ │ ├── LaunchScreen.storyboard │ │ │ │ └── Main.storyboard │ │ │ ├── Info.plist │ │ │ └── ViewController.swift │ │ ├── CHANGELOG.md │ │ ├── Cartfile │ │ ├── Cartfile.private │ │ ├── Cartfile.resolved │ │ ├── Gemfile │ │ ├── Gemfile.lock │ │ ├── LICENSE │ │ ├── Lock.podspec │ │ ├── Lock.xcodeproj │ │ │ ├── project.pbxproj │ │ │ ├── project.xcworkspace │ │ │ │ └── contents.xcworkspacedata │ │ │ └── xcshareddata │ │ │ │ └── xcschemes │ │ │ │ └── Lock.xcscheme │ │ ├── Lock │ │ │ ├── Auth0OAuth2Interactor.swift │ │ │ ├── AuthButton.swift │ │ │ ├── AuthCollectionView.swift │ │ │ ├── AuthPresenter.swift │ │ │ ├── AuthStyle.swift │ │ │ ├── BannerMessagePresenter.swift │ │ │ ├── Base.lproj │ │ │ │ └── Lock.strings │ │ │ ├── CDNLoaderInteractor.swift │ │ │ ├── ClassicRouter.swift │ │ │ ├── Colors.swift │ │ │ ├── ConnectionBuildable.swift │ │ │ ├── ConnectionLoadingPresenter.swift │ │ │ ├── Connections.swift │ │ │ ├── CountryCodes.swift │ │ │ ├── CountryTableViewController.swift │ │ │ ├── CredentialAuth.swift │ │ │ ├── CredentialAuthError.swift │ │ │ ├── CredentialView.swift │ │ │ ├── CustomTextField.swift │ │ │ ├── DatabaseAuthenticable.swift │ │ │ ├── DatabaseConstants.swift │ │ │ ├── DatabaseForgotPasswordPresenter.swift │ │ │ ├── DatabaseForgotPasswordView.swift │ │ │ ├── DatabaseInteractor.swift │ │ │ ├── DatabaseModeSwitcher.swift │ │ │ ├── DatabaseOnlyView.swift │ │ │ ├── DatabasePasswordInteractor.swift │ │ │ ├── DatabasePresenter.swift │ │ │ ├── DatabaseUserCreator.swift │ │ │ ├── DatabaseUserCreatorError.swift │ │ │ ├── DatabaseView.swift │ │ │ ├── EnterpriseActiveAuthInteractor.swift │ │ │ ├── EnterpriseActiveAuthPresenter.swift │ │ │ ├── EnterpriseActiveAuthView.swift │ │ │ ├── EnterpriseDomainInteractor.swift │ │ │ ├── EnterpriseDomainPresenter.swift │ │ │ ├── EnterpriseDomainView.swift │ │ │ ├── Extensions.swift │ │ │ ├── Form.swift │ │ │ ├── HRDAuthenticatable.swift │ │ │ ├── HeaderView.swift │ │ │ ├── IconButton.swift │ │ │ ├── Info.plist │ │ │ ├── InfoBarView.swift │ │ │ ├── InputField.swift │ │ │ ├── InputValidationError.swift │ │ │ ├── InternationalPhoneInputView.swift │ │ │ ├── Layout.swift │ │ │ ├── LazyImage.swift │ │ │ ├── LoadingView.swift │ │ │ ├── Lock.h │ │ │ ├── Lock.swift │ │ │ ├── Lock.xcassets │ │ │ │ ├── Contents.json │ │ │ │ ├── Social │ │ │ │ │ ├── Contents.json │ │ │ │ │ ├── ic_auth_amazon.imageset │ │ │ │ │ │ ├── Contents.json │ │ │ │ │ │ └── ic_auth_amazon.pdf │ │ │ │ │ ├── ic_auth_aol.imageset │ │ │ │ │ │ ├── Contents.json │ │ │ │ │ │ └── ic_auth_aol.pdf │ │ │ │ │ ├── ic_auth_auth0.imageset │ │ │ │ │ │ ├── Contents.json │ │ │ │ │ │ └── ic_auth_auth0.pdf │ │ │ │ │ ├── ic_auth_baidu.imageset │ │ │ │ │ │ ├── Contents.json │ │ │ │ │ │ └── ic_auth_baidu.pdf │ │ │ │ │ ├── ic_auth_bitbucket.imageset │ │ │ │ │ │ ├── Contents.json │ │ │ │ │ │ └── ic_auth_bitbucket.pdf │ │ │ │ │ ├── ic_auth_box.imageset │ │ │ │ │ │ ├── Contents.json │ │ │ │ │ │ └── ic_auth_box.pdf │ │ │ │ │ ├── ic_auth_dropbox.imageset │ │ │ │ │ │ ├── Contents.json │ │ │ │ │ │ └── ic_auth_dropbox.pdf │ │ │ │ │ ├── ic_auth_dwolla.imageset │ │ │ │ │ │ ├── Contents.json │ │ │ │ │ │ └── ic_auth_dwolla.pdf │ │ │ │ │ ├── ic_auth_ebay.imageset │ │ │ │ │ │ ├── Contents.json │ │ │ │ │ │ └── ic_auth_ebay.pdf │ │ │ │ │ ├── ic_auth_evernote.imageset │ │ │ │ │ │ ├── Contents.json │ │ │ │ │ │ └── ic_auth_evernote.pdf │ │ │ │ │ ├── ic_auth_exact.imageset │ │ │ │ │ │ ├── Contents.json │ │ │ │ │ │ └── ic_auth_exact.pdf │ │ │ │ │ ├── ic_auth_facebook.imageset │ │ │ │ │ │ ├── Contents.json │ │ │ │ │ │ └── ic_auth_facebook.pdf │ │ │ │ │ ├── ic_auth_fitbit.imageset │ │ │ │ │ │ ├── Contents.json │ │ │ │ │ │ └── ic_auth_fitbit.pdf │ │ │ │ │ ├── ic_auth_github.imageset │ │ │ │ │ │ ├── Contents.json │ │ │ │ │ │ └── ic_auth_github.pdf │ │ │ │ │ ├── ic_auth_google.imageset │ │ │ │ │ │ ├── Contents.json │ │ │ │ │ │ └── ic_auth_google.pdf │ │ │ │ │ ├── ic_auth_instagram.imageset │ │ │ │ │ │ ├── Contents.json │ │ │ │ │ │ └── ic_auth_instagram.pdf │ │ │ │ │ ├── ic_auth_linkedin.imageset │ │ │ │ │ │ ├── Contents.json │ │ │ │ │ │ └── ic_auth_linkedin.pdf │ │ │ │ │ ├── ic_auth_microsoft.imageset │ │ │ │ │ │ ├── Contents.json │ │ │ │ │ │ └── ic_auth_windows.pdf │ │ │ │ │ ├── ic_auth_miicard.imageset │ │ │ │ │ │ ├── Contents.json │ │ │ │ │ │ └── ic_auth_miicard.pdf │ │ │ │ │ ├── ic_auth_paypal.imageset │ │ │ │ │ │ ├── Contents.json │ │ │ │ │ │ └── ic_auth_paypal.pdf │ │ │ │ │ ├── ic_auth_planningcenter.imageset │ │ │ │ │ │ ├── Contents.json │ │ │ │ │ │ └── ic_auth_planningcenter.pdf │ │ │ │ │ ├── ic_auth_renren.imageset │ │ │ │ │ │ ├── Contents.json │ │ │ │ │ │ └── ic_auth_renren.pdf │ │ │ │ │ ├── ic_auth_salesforce.imageset │ │ │ │ │ │ ├── Contents.json │ │ │ │ │ │ └── ic_auth_salesforce.pdf │ │ │ │ │ ├── ic_auth_shopify.imageset │ │ │ │ │ │ ├── Contents.json │ │ │ │ │ │ └── ic_auth_shopify.pdf │ │ │ │ │ ├── ic_auth_soundcloud.imageset │ │ │ │ │ │ ├── Contents.json │ │ │ │ │ │ └── ic_auth_soundcloud.pdf │ │ │ │ │ ├── ic_auth_thecity.imageset │ │ │ │ │ │ ├── Contents.json │ │ │ │ │ │ └── ic_auth_thecity.pdf │ │ │ │ │ ├── ic_auth_thirtysevensignals.imageset │ │ │ │ │ │ ├── Contents.json │ │ │ │ │ │ └── ic_auth_thirtysevensignals.pdf │ │ │ │ │ ├── ic_auth_twitter.imageset │ │ │ │ │ │ ├── Contents.json │ │ │ │ │ │ └── ic_auth_twitter.pdf │ │ │ │ │ ├── ic_auth_vk.imageset │ │ │ │ │ │ ├── Contents.json │ │ │ │ │ │ └── ic_auth_vk.pdf │ │ │ │ │ ├── ic_auth_weibo.imageset │ │ │ │ │ │ ├── Contents.json │ │ │ │ │ │ └── ic_auth_weibo.pdf │ │ │ │ │ ├── ic_auth_wordpress.imageset │ │ │ │ │ │ ├── Contents.json │ │ │ │ │ │ └── ic_auth_wordpress.pdf │ │ │ │ │ ├── ic_auth_yahoo.imageset │ │ │ │ │ │ ├── Contents.json │ │ │ │ │ │ └── ic_auth_yahoo.pdf │ │ │ │ │ ├── ic_auth_yammer.imageset │ │ │ │ │ │ ├── Contents.json │ │ │ │ │ │ └── ic_auth_yammer.pdf │ │ │ │ │ └── ic_auth_yandex.imageset │ │ │ │ │ │ ├── Contents.json │ │ │ │ │ │ └── ic_auth_yandex.pdf │ │ │ │ ├── ic_auth0.imageset │ │ │ │ │ ├── Contents.json │ │ │ │ │ └── ic_auth0.pdf │ │ │ │ ├── ic_back.imageset │ │ │ │ │ ├── Contents.json │ │ │ │ │ └── ic_back.pdf │ │ │ │ ├── ic_chevron_right.imageset │ │ │ │ │ ├── Contents.json │ │ │ │ │ └── ic_chevron.pdf │ │ │ │ ├── ic_close.imageset │ │ │ │ │ ├── Contents.json │ │ │ │ │ └── ic_close.pdf │ │ │ │ ├── ic_connection_error.imageset │ │ │ │ │ ├── Contents.json │ │ │ │ │ └── ic_connection_error.pdf │ │ │ │ ├── ic_email_sent.imageset │ │ │ │ │ ├── Contents.json │ │ │ │ │ └── ic_email_sent.pdf │ │ │ │ ├── ic_globe.imageset │ │ │ │ │ ├── Contents.json │ │ │ │ │ └── ic_globe.pdf │ │ │ │ ├── ic_lock.imageset │ │ │ │ │ ├── Contents.json │ │ │ │ │ └── ic_lock.pdf │ │ │ │ ├── ic_lock_full.imageset │ │ │ │ │ ├── Contents.json │ │ │ │ │ └── ic_lock_full.pdf │ │ │ │ ├── ic_mail.imageset │ │ │ │ │ ├── Contents.json │ │ │ │ │ └── ic_mail.pdf │ │ │ │ ├── ic_onepassword.imageset │ │ │ │ │ ├── Contents.json │ │ │ │ │ └── ic_onepassword.pdf │ │ │ │ ├── ic_person.imageset │ │ │ │ │ ├── Contents.json │ │ │ │ │ └── ic_person.pdf │ │ │ │ ├── ic_phone.imageset │ │ │ │ │ ├── Contents.json │ │ │ │ │ └── ic_phone.pdf │ │ │ │ ├── ic_pwd_policy_error.imageset │ │ │ │ │ ├── Contents.json │ │ │ │ │ └── ic_pwd_policy_error.pdf │ │ │ │ ├── ic_pwd_policy_none.imageset │ │ │ │ │ ├── Contents.json │ │ │ │ │ └── ic_pwd_policy_none.pdf │ │ │ │ ├── ic_pwd_policy_ok.imageset │ │ │ │ │ ├── Contents.json │ │ │ │ │ └── ic_pwd_policy_ok.pdf │ │ │ │ ├── ic_show_password_hidden.imageset │ │ │ │ │ ├── Contents.json │ │ │ │ │ └── ic_show_password_hidden.pdf │ │ │ │ ├── ic_show_password_visible.imageset │ │ │ │ │ ├── Contents.json │ │ │ │ │ └── ic_show_password_visible.pdf │ │ │ │ ├── ic_submit.imageset │ │ │ │ │ ├── Contents.json │ │ │ │ │ └── ic_submit.pdf │ │ │ │ ├── ic_switcher_both.imageset │ │ │ │ │ ├── Contents.json │ │ │ │ │ └── ic_switcher_both.pdf │ │ │ │ ├── ic_switcher_left.imageset │ │ │ │ │ ├── Contents.json │ │ │ │ │ └── ic_switcher_left.pdf │ │ │ │ ├── ic_switcher_none.imageset │ │ │ │ │ ├── Contents.json │ │ │ │ │ └── ic_switcher_none.pdf │ │ │ │ ├── ic_switcher_normal.imageset │ │ │ │ │ ├── Contents.json │ │ │ │ │ └── ic_switcher_normal.pdf │ │ │ │ ├── ic_switcher_right.imageset │ │ │ │ │ ├── Contents.json │ │ │ │ │ └── ic_switcher_right.pdf │ │ │ │ └── ic_switcher_selected.imageset │ │ │ │ │ ├── Contents.json │ │ │ │ │ └── ic_switcher_selected.pdf │ │ │ ├── LockOptions.swift │ │ │ ├── LockViewController.swift │ │ │ ├── Logger.swift │ │ │ ├── MessagePresenter.swift │ │ │ ├── MessageView.swift │ │ │ ├── MultifactorAuthenticatable.swift │ │ │ ├── MultifactorCodeView.swift │ │ │ ├── MultifactorInteractor.swift │ │ │ ├── MultifactorPresenter.swift │ │ │ ├── NativeHandler.swift │ │ │ ├── Navigable.swift │ │ │ ├── NotificationStatus.swift │ │ │ ├── OAuth2Authenticatable.swift │ │ │ ├── ObserverStore.swift │ │ │ ├── OfflineConnections.swift │ │ │ ├── OnePassword.swift │ │ │ ├── OnePasswordExtension.h │ │ │ ├── OnePasswordExtension.m │ │ │ ├── Operations.swift │ │ │ ├── OptionBuildable.swift │ │ │ ├── Options.swift │ │ │ ├── PasswordPolicy.swift │ │ │ ├── PasswordRecoverable.swift │ │ │ ├── Passwordless.swift │ │ │ ├── PasswordlessActivity.swift │ │ │ ├── PasswordlessAuthTransaction.swift │ │ │ ├── PasswordlessAuthenticatable.swift │ │ │ ├── PasswordlessAuthenticatableError.swift │ │ │ ├── PasswordlessInteractor.swift │ │ │ ├── PasswordlessPresenter.swift │ │ │ ├── PasswordlessRouter.swift │ │ │ ├── PasswordlessView.swift │ │ │ ├── PolicyView.swift │ │ │ ├── Presentable.swift │ │ │ ├── PrimaryButton.swift │ │ │ ├── Queue.swift │ │ │ ├── RemoteConnectionLoader.swift │ │ │ ├── Resources.swift │ │ │ ├── Router.swift │ │ │ ├── Routes.swift │ │ │ ├── Rule.swift │ │ │ ├── SecondaryButton.swift │ │ │ ├── SignUpView.swift │ │ │ ├── SingleInputView.swift │ │ │ ├── Style.swift │ │ │ ├── UnrecoverableError.swift │ │ │ ├── UnrecoverableErrorPresenter.swift │ │ │ ├── UnrecoverableErrorView.swift │ │ │ ├── User.swift │ │ │ ├── UserAttribute.swift │ │ │ ├── Validators.swift │ │ │ ├── View.swift │ │ │ ├── i18n.swift │ │ │ └── passwordless_country_codes.plist │ │ ├── LockTests │ │ │ ├── AuthCollectionViewSpec.swift │ │ │ ├── CountryTableViewControllerSpec.swift │ │ │ ├── CredentialAuthErrorSpec.swift │ │ │ ├── DatabaseUserCreatorErrorSpec.swift │ │ │ ├── EmailValidatorSpec.swift │ │ │ ├── Info.plist │ │ │ ├── InputValidationErrorSpec.swift │ │ │ ├── Interactors │ │ │ │ ├── Auth0OAuth2InteractorSpec.swift │ │ │ │ ├── CDNLoaderInteractorSpec.swift │ │ │ │ ├── DatabaseInteractorSpec.swift │ │ │ │ ├── DatabasePasswordInteractorSpec.swift │ │ │ │ ├── EnterpriseActiveAuthInteractorSpec.swift │ │ │ │ ├── EnterpriseDomainInteractorSpec.swift │ │ │ │ ├── MultifactorInteractorSpec.swift │ │ │ │ └── PasswordlessInteractorSpec.swift │ │ │ ├── LazyImageSpec.swift │ │ │ ├── LockSpec.swift │ │ │ ├── LockViewControllerSpec.swift │ │ │ ├── LoggerSpec.swift │ │ │ ├── Models │ │ │ │ ├── AuthStyleSpec.swift │ │ │ │ ├── CountryCodesSpec.swift │ │ │ │ ├── ObserverStoreSpec.swift │ │ │ │ ├── OfflineConnectionsSpec.swift │ │ │ │ ├── PasswordPolicySpec.swift │ │ │ │ ├── RuleSpec.swift │ │ │ │ └── UserSpec.swift │ │ │ ├── OnePasswordSpec.swift │ │ │ ├── OptionsSpec.swift │ │ │ ├── PasswordPolicyValidatorSpec.swift │ │ │ ├── PasswordlessActivitySpec.swift │ │ │ ├── PasswordlessAuthenticatableErrorSpec.swift │ │ │ ├── PolicyViewSpec.swift │ │ │ ├── Presenters │ │ │ │ ├── AuthPresenterSpec.swift │ │ │ │ ├── BannerMessagePresenterSpec.swift │ │ │ │ ├── ConnectionLoadingPresenterSpec.swift │ │ │ │ ├── DatabaseForgotPasswordPresenterSpec.swift │ │ │ │ ├── DatabasePresenterSpec.swift │ │ │ │ ├── EnterpriseActiveAuthPresenterSpec.swift │ │ │ │ ├── EnterpriseDomainPresenterSpec.swift │ │ │ │ ├── MultifactorPresenterSpec.swift │ │ │ │ ├── PasswordlessPresenterSpec.swift │ │ │ │ └── UnrecoverableErrorPresenterSpec.swift │ │ │ ├── Router │ │ │ │ ├── ClassicRouterSpec.swift │ │ │ │ └── PasswordlessRouterSpec.swift │ │ │ ├── StyleSpec.swift │ │ │ ├── UnrecoverableErrorSpec.swift │ │ │ ├── UsernameValidatorSpec.swift │ │ │ └── Utils │ │ │ │ ├── Constants.swift │ │ │ │ ├── Matchers.swift │ │ │ │ ├── Mocks.swift │ │ │ │ └── NetworkStub.swift │ │ ├── LockUITests │ │ │ ├── Info.plist │ │ │ ├── LockUITests.swift │ │ │ └── SnapshotHelper.swift │ │ ├── MIGRATION.md │ │ ├── README.md │ │ ├── circle.yml │ │ ├── codecov.yml │ │ ├── fastlane │ │ │ ├── Appfile │ │ │ ├── Fastfile │ │ │ ├── Pluginfile │ │ │ ├── README.md │ │ │ ├── Scanfile │ │ │ └── Snapfile │ │ └── script │ │ │ ├── bootstrap │ │ │ ├── build │ │ │ ├── carthage │ │ │ ├── cibuild │ │ │ ├── common │ │ │ ├── carthage │ │ │ ├── homebrew │ │ │ ├── install_carthage │ │ │ ├── install_swiftlint │ │ │ └── swiftlint │ │ │ ├── git_hooks │ │ │ └── pre-push │ │ │ ├── script_hooks │ │ │ ├── .gitkeep │ │ │ ├── bootstrap │ │ │ ├── destinations │ │ │ └── schemes │ │ │ ├── test │ │ │ └── update │ │ ├── MBProgressHUD │ │ ├── .gitignore │ │ ├── .travis.yml │ │ ├── CHANGELOG.mdown │ │ ├── Carthage │ │ │ └── Build │ │ ├── Demo │ │ │ ├── HudDemo.xcodeproj │ │ │ │ ├── project.pbxproj │ │ │ │ ├── project.xcworkspace │ │ │ │ │ └── contents.xcworkspacedata │ │ │ │ └── xcshareddata │ │ │ │ │ └── xcschemes │ │ │ │ │ ├── HudDemo.xcscheme │ │ │ │ │ ├── HudDemoTV.xcscheme │ │ │ │ │ └── HudTests.xcscheme │ │ │ ├── HudDemo │ │ │ │ ├── Images.xcassets │ │ │ │ │ ├── AppIcon.appiconset │ │ │ │ │ │ ├── Contents.json │ │ │ │ │ │ ├── Icon-167.png │ │ │ │ │ │ ├── Icon-60@2x.png │ │ │ │ │ │ ├── Icon-60@3x.png │ │ │ │ │ │ ├── Icon-72.png │ │ │ │ │ │ ├── Icon-72@2x.png │ │ │ │ │ │ ├── Icon-76.png │ │ │ │ │ │ ├── Icon-76@2x.png │ │ │ │ │ │ ├── Icon-Small-1.png │ │ │ │ │ │ ├── Icon-Small-40.png │ │ │ │ │ │ ├── Icon-Small-40@2x-1.png │ │ │ │ │ │ ├── Icon-Small-40@2x.png │ │ │ │ │ │ ├── Icon-Small-40@3x.png │ │ │ │ │ │ ├── Icon-Small-50.png │ │ │ │ │ │ ├── Icon-Small-50@2x.png │ │ │ │ │ │ ├── Icon-Small.png │ │ │ │ │ │ ├── Icon-Small@2x-1.png │ │ │ │ │ │ ├── Icon-Small@2x.png │ │ │ │ │ │ ├── Icon-Small@3x.png │ │ │ │ │ │ ├── Icon.png │ │ │ │ │ │ └── Icon@2x.png │ │ │ │ │ ├── Checkmark.imageset │ │ │ │ │ │ ├── Checkmark.png │ │ │ │ │ │ ├── Checkmark@2x.png │ │ │ │ │ │ ├── Checkmark@3x.png │ │ │ │ │ │ └── Contents.json │ │ │ │ │ └── Contents.json │ │ │ │ ├── Info.plist │ │ │ │ ├── MBHudDemoAppDelegate.h │ │ │ │ ├── MBHudDemoAppDelegate.m │ │ │ │ ├── MBHudDemoViewController.h │ │ │ │ ├── MBHudDemoViewController.m │ │ │ │ ├── en.lproj │ │ │ │ │ ├── Launch.storyboard │ │ │ │ │ └── Main.storyboard │ │ │ │ └── main.m │ │ │ ├── HudDemoTV │ │ │ │ ├── Base.lproj │ │ │ │ │ └── Main.storyboard │ │ │ │ ├── Images.xcassets │ │ │ │ │ ├── Contents.json │ │ │ │ │ ├── Icons.brandassets │ │ │ │ │ │ ├── App Icon - Large.imagestack │ │ │ │ │ │ │ ├── Back.imagestacklayer │ │ │ │ │ │ │ │ ├── Content.imageset │ │ │ │ │ │ │ │ │ ├── Contents.json │ │ │ │ │ │ │ │ │ └── gradient-fill-6-copy.png │ │ │ │ │ │ │ │ └── Contents.json │ │ │ │ │ │ │ ├── Contents.json │ │ │ │ │ │ │ └── Front.imagestacklayer │ │ │ │ │ │ │ │ ├── Content.imageset │ │ │ │ │ │ │ │ ├── Contents.json │ │ │ │ │ │ │ │ └── vector-smart-object.png │ │ │ │ │ │ │ │ └── Contents.json │ │ │ │ │ │ ├── App Icon - Small.imagestack │ │ │ │ │ │ │ ├── Back.imagestacklayer │ │ │ │ │ │ │ │ ├── Content.imageset │ │ │ │ │ │ │ │ │ ├── Contents.json │ │ │ │ │ │ │ │ │ └── gradient-fill-6-copy.png │ │ │ │ │ │ │ │ └── Contents.json │ │ │ │ │ │ │ ├── Contents.json │ │ │ │ │ │ │ └── Front.imagestacklayer │ │ │ │ │ │ │ │ ├── Content.imageset │ │ │ │ │ │ │ │ ├── Contents.json │ │ │ │ │ │ │ │ └── vector-smart-object.png │ │ │ │ │ │ │ │ └── Contents.json │ │ │ │ │ │ ├── Contents.json │ │ │ │ │ │ └── Top Shelf Image.imageset │ │ │ │ │ │ │ ├── AppleTV-TopShelf-1920x720.png │ │ │ │ │ │ │ └── Contents.json │ │ │ │ │ └── LaunchImage.launchimage │ │ │ │ │ │ ├── AppleTV-Launch.png │ │ │ │ │ │ └── Contents.json │ │ │ │ ├── Info.plist │ │ │ │ ├── MBHudDemoTVAppDelegate.h │ │ │ │ ├── MBHudDemoTVAppDelegate.m │ │ │ │ ├── MBHudDemoTVViewController.h │ │ │ │ ├── MBHudDemoTVViewController.m │ │ │ │ └── main.m │ │ │ └── HudTests │ │ │ │ ├── HudTests.m │ │ │ │ └── Info.plist │ │ ├── Framework-Info.plist │ │ ├── LICENSE │ │ ├── MBProgressHUD.h │ │ ├── MBProgressHUD.m │ │ ├── MBProgressHUD.podspec │ │ ├── MBProgressHUD.xcodeproj │ │ │ ├── project.pbxproj │ │ │ ├── project.xcworkspace │ │ │ │ └── contents.xcworkspacedata │ │ │ └── xcshareddata │ │ │ │ └── xcschemes │ │ │ │ ├── MBProgressHUD Framework.xcscheme │ │ │ │ └── MBProgressHUD.xcscheme │ │ ├── MBProgressHUD.xcworkspace │ │ │ └── contents.xcworkspacedata │ │ └── README.mdown │ │ ├── Masonry │ │ ├── .gitignore │ │ ├── .travis.yml │ │ ├── CHANGELOG.md │ │ ├── Carthage │ │ │ └── Build │ │ ├── CodeSnippets │ │ │ ├── Masonry Constraint Make.codesnippet │ │ │ ├── Masonry Constraint Remake.codesnippet │ │ │ └── Masonry Constraint Update.codesnippet │ │ ├── Examples │ │ │ ├── Default-568h@2x.png │ │ │ ├── Masonry iOS Examples.xcodeproj │ │ │ │ ├── project.pbxproj │ │ │ │ ├── project.xcworkspace │ │ │ │ │ └── contents.xcworkspacedata │ │ │ │ └── xcshareddata │ │ │ │ │ └── xcschemes │ │ │ │ │ └── Masonry iOS Examples.xcscheme │ │ │ └── Masonry iOS Examples │ │ │ │ ├── Images.xcassets │ │ │ │ └── LaunchImage.launchimage │ │ │ │ │ ├── Contents.json │ │ │ │ │ ├── Default-568h@2x.png │ │ │ │ │ ├── Default-667h@2x.png │ │ │ │ │ ├── Default-736h@3x.png │ │ │ │ │ ├── Default@2x.png │ │ │ │ │ ├── Default_iOS6-568h@2x.png │ │ │ │ │ ├── Default_iOS6.png │ │ │ │ │ └── Default_iOS6@2x.png │ │ │ │ ├── MASAppDelegate.h │ │ │ │ ├── MASAppDelegate.m │ │ │ │ ├── MASExampleAnimatedView.h │ │ │ │ ├── MASExampleAnimatedView.m │ │ │ │ ├── MASExampleArrayView.h │ │ │ │ ├── MASExampleArrayView.m │ │ │ │ ├── MASExampleAspectFitView.h │ │ │ │ ├── MASExampleAspectFitView.m │ │ │ │ ├── MASExampleAttributeChainingView.h │ │ │ │ ├── MASExampleAttributeChainingView.m │ │ │ │ ├── MASExampleBasicView.h │ │ │ │ ├── MASExampleBasicView.m │ │ │ │ ├── MASExampleConstantsView.h │ │ │ │ ├── MASExampleConstantsView.m │ │ │ │ ├── MASExampleDebuggingView.h │ │ │ │ ├── MASExampleDebuggingView.m │ │ │ │ ├── MASExampleDistributeView.h │ │ │ │ ├── MASExampleDistributeView.m │ │ │ │ ├── MASExampleLabelView.h │ │ │ │ ├── MASExampleLabelView.m │ │ │ │ ├── MASExampleLayoutGuideViewController.h │ │ │ │ ├── MASExampleLayoutGuideViewController.m │ │ │ │ ├── MASExampleListViewController.h │ │ │ │ ├── MASExampleListViewController.m │ │ │ │ ├── MASExampleMarginView.h │ │ │ │ ├── MASExampleMarginView.m │ │ │ │ ├── MASExampleRemakeView.h │ │ │ │ ├── MASExampleRemakeView.m │ │ │ │ ├── MASExampleScrollView.h │ │ │ │ ├── MASExampleScrollView.m │ │ │ │ ├── MASExampleSidesView.h │ │ │ │ ├── MASExampleSidesView.m │ │ │ │ ├── MASExampleUpdateView.h │ │ │ │ ├── MASExampleUpdateView.m │ │ │ │ ├── MASExampleViewController.h │ │ │ │ ├── MASExampleViewController.m │ │ │ │ ├── Masonry iOS Examples-Info.plist │ │ │ │ ├── en.lproj │ │ │ │ └── InfoPlist.strings │ │ │ │ └── main.m │ │ ├── LICENSE │ │ ├── Masonry.podspec │ │ ├── Masonry.xcodeproj │ │ │ ├── project.pbxproj │ │ │ ├── project.xcworkspace │ │ │ │ └── contents.xcworkspacedata │ │ │ └── xcshareddata │ │ │ │ └── xcschemes │ │ │ │ ├── Masonry OSX.xcscheme │ │ │ │ └── Masonry iOS.xcscheme │ │ ├── Masonry.xcworkspace │ │ │ └── contents.xcworkspacedata │ │ ├── Masonry │ │ │ ├── Info.plist │ │ │ ├── MASCompositeConstraint.h │ │ │ ├── MASCompositeConstraint.m │ │ │ ├── MASConstraint+Private.h │ │ │ ├── MASConstraint.h │ │ │ ├── MASConstraint.m │ │ │ ├── MASConstraintMaker.h │ │ │ ├── MASConstraintMaker.m │ │ │ ├── MASLayoutConstraint.h │ │ │ ├── MASLayoutConstraint.m │ │ │ ├── MASUtilities.h │ │ │ ├── MASViewAttribute.h │ │ │ ├── MASViewAttribute.m │ │ │ ├── MASViewConstraint.h │ │ │ ├── MASViewConstraint.m │ │ │ ├── Masonry.h │ │ │ ├── NSArray+MASAdditions.h │ │ │ ├── NSArray+MASAdditions.m │ │ │ ├── NSArray+MASShorthandAdditions.h │ │ │ ├── NSLayoutConstraint+MASDebugAdditions.h │ │ │ ├── NSLayoutConstraint+MASDebugAdditions.m │ │ │ ├── View+MASAdditions.h │ │ │ ├── View+MASAdditions.m │ │ │ ├── View+MASShorthandAdditions.h │ │ │ ├── ViewController+MASAdditions.h │ │ │ └── ViewController+MASAdditions.m │ │ ├── Podfile │ │ ├── Podfile.lock │ │ ├── Pods │ │ │ ├── Expecta │ │ │ │ ├── Expecta │ │ │ │ │ ├── EXPBlockDefinedMatcher.h │ │ │ │ │ ├── EXPBlockDefinedMatcher.m │ │ │ │ │ ├── EXPDefines.h │ │ │ │ │ ├── EXPDoubleTuple.h │ │ │ │ │ ├── EXPDoubleTuple.m │ │ │ │ │ ├── EXPExpect.h │ │ │ │ │ ├── EXPExpect.m │ │ │ │ │ ├── EXPFloatTuple.h │ │ │ │ │ ├── EXPFloatTuple.m │ │ │ │ │ ├── EXPMatcher.h │ │ │ │ │ ├── EXPUnsupportedObject.h │ │ │ │ │ ├── EXPUnsupportedObject.m │ │ │ │ │ ├── Expecta.h │ │ │ │ │ ├── ExpectaObject.h │ │ │ │ │ ├── ExpectaObject.m │ │ │ │ │ ├── ExpectaSupport.h │ │ │ │ │ ├── ExpectaSupport.m │ │ │ │ │ ├── Matchers │ │ │ │ │ │ ├── EXPMatcherHelpers.h │ │ │ │ │ │ ├── EXPMatcherHelpers.m │ │ │ │ │ │ ├── EXPMatchers+beCloseTo.h │ │ │ │ │ │ ├── EXPMatchers+beCloseTo.m │ │ │ │ │ │ ├── EXPMatchers+beFalsy.h │ │ │ │ │ │ ├── EXPMatchers+beFalsy.m │ │ │ │ │ │ ├── EXPMatchers+beGreaterThan.h │ │ │ │ │ │ ├── EXPMatchers+beGreaterThan.m │ │ │ │ │ │ ├── EXPMatchers+beGreaterThanOrEqualTo.h │ │ │ │ │ │ ├── EXPMatchers+beGreaterThanOrEqualTo.m │ │ │ │ │ │ ├── EXPMatchers+beIdenticalTo.h │ │ │ │ │ │ ├── EXPMatchers+beIdenticalTo.m │ │ │ │ │ │ ├── EXPMatchers+beInTheRangeOf.h │ │ │ │ │ │ ├── EXPMatchers+beInTheRangeOf.m │ │ │ │ │ │ ├── EXPMatchers+beInstanceOf.h │ │ │ │ │ │ ├── EXPMatchers+beInstanceOf.m │ │ │ │ │ │ ├── EXPMatchers+beKindOf.h │ │ │ │ │ │ ├── EXPMatchers+beKindOf.m │ │ │ │ │ │ ├── EXPMatchers+beLessThan.h │ │ │ │ │ │ ├── EXPMatchers+beLessThan.m │ │ │ │ │ │ ├── EXPMatchers+beLessThanOrEqualTo.h │ │ │ │ │ │ ├── EXPMatchers+beLessThanOrEqualTo.m │ │ │ │ │ │ ├── EXPMatchers+beNil.h │ │ │ │ │ │ ├── EXPMatchers+beNil.m │ │ │ │ │ │ ├── EXPMatchers+beSubclassOf.h │ │ │ │ │ │ ├── EXPMatchers+beSubclassOf.m │ │ │ │ │ │ ├── EXPMatchers+beSupersetOf.h │ │ │ │ │ │ ├── EXPMatchers+beSupersetOf.m │ │ │ │ │ │ ├── EXPMatchers+beTruthy.h │ │ │ │ │ │ ├── EXPMatchers+beTruthy.m │ │ │ │ │ │ ├── EXPMatchers+beginWith.h │ │ │ │ │ │ ├── EXPMatchers+beginWith.m │ │ │ │ │ │ ├── EXPMatchers+conformTo.h │ │ │ │ │ │ ├── EXPMatchers+conformTo.m │ │ │ │ │ │ ├── EXPMatchers+contain.h │ │ │ │ │ │ ├── EXPMatchers+contain.m │ │ │ │ │ │ ├── EXPMatchers+endWith.h │ │ │ │ │ │ ├── EXPMatchers+endWith.m │ │ │ │ │ │ ├── EXPMatchers+equal.h │ │ │ │ │ │ ├── EXPMatchers+equal.m │ │ │ │ │ │ ├── EXPMatchers+haveCountOf.h │ │ │ │ │ │ ├── EXPMatchers+haveCountOf.m │ │ │ │ │ │ ├── EXPMatchers+match.h │ │ │ │ │ │ ├── EXPMatchers+match.m │ │ │ │ │ │ ├── EXPMatchers+postNotification.h │ │ │ │ │ │ ├── EXPMatchers+postNotification.m │ │ │ │ │ │ ├── EXPMatchers+raise.h │ │ │ │ │ │ ├── EXPMatchers+raise.m │ │ │ │ │ │ ├── EXPMatchers+raiseWithReason.h │ │ │ │ │ │ ├── EXPMatchers+raiseWithReason.m │ │ │ │ │ │ ├── EXPMatchers+respondTo.h │ │ │ │ │ │ ├── EXPMatchers+respondTo.m │ │ │ │ │ │ └── EXPMatchers.h │ │ │ │ │ ├── NSObject+Expecta.h │ │ │ │ │ ├── NSValue+Expecta.h │ │ │ │ │ └── NSValue+Expecta.m │ │ │ │ ├── LICENSE │ │ │ │ └── README.md │ │ │ ├── Headers │ │ │ │ ├── Private │ │ │ │ │ ├── Expecta │ │ │ │ │ │ ├── EXPBlockDefinedMatcher.h │ │ │ │ │ │ ├── EXPDefines.h │ │ │ │ │ │ ├── EXPDoubleTuple.h │ │ │ │ │ │ ├── EXPExpect.h │ │ │ │ │ │ ├── EXPFloatTuple.h │ │ │ │ │ │ ├── EXPMatcher.h │ │ │ │ │ │ ├── EXPMatcherHelpers.h │ │ │ │ │ │ ├── EXPMatchers+beCloseTo.h │ │ │ │ │ │ ├── EXPMatchers+beFalsy.h │ │ │ │ │ │ ├── EXPMatchers+beGreaterThan.h │ │ │ │ │ │ ├── EXPMatchers+beGreaterThanOrEqualTo.h │ │ │ │ │ │ ├── EXPMatchers+beIdenticalTo.h │ │ │ │ │ │ ├── EXPMatchers+beInTheRangeOf.h │ │ │ │ │ │ ├── EXPMatchers+beInstanceOf.h │ │ │ │ │ │ ├── EXPMatchers+beKindOf.h │ │ │ │ │ │ ├── EXPMatchers+beLessThan.h │ │ │ │ │ │ ├── EXPMatchers+beLessThanOrEqualTo.h │ │ │ │ │ │ ├── EXPMatchers+beNil.h │ │ │ │ │ │ ├── EXPMatchers+beSubclassOf.h │ │ │ │ │ │ ├── EXPMatchers+beSupersetOf.h │ │ │ │ │ │ ├── EXPMatchers+beTruthy.h │ │ │ │ │ │ ├── EXPMatchers+beginWith.h │ │ │ │ │ │ ├── EXPMatchers+conformTo.h │ │ │ │ │ │ ├── EXPMatchers+contain.h │ │ │ │ │ │ ├── EXPMatchers+endWith.h │ │ │ │ │ │ ├── EXPMatchers+equal.h │ │ │ │ │ │ ├── EXPMatchers+haveCountOf.h │ │ │ │ │ │ ├── EXPMatchers+match.h │ │ │ │ │ │ ├── EXPMatchers+postNotification.h │ │ │ │ │ │ ├── EXPMatchers+raise.h │ │ │ │ │ │ ├── EXPMatchers+raiseWithReason.h │ │ │ │ │ │ ├── EXPMatchers+respondTo.h │ │ │ │ │ │ ├── EXPMatchers.h │ │ │ │ │ │ ├── EXPUnsupportedObject.h │ │ │ │ │ │ ├── Expecta.h │ │ │ │ │ │ ├── ExpectaObject.h │ │ │ │ │ │ ├── ExpectaSupport.h │ │ │ │ │ │ ├── NSObject+Expecta.h │ │ │ │ │ │ └── NSValue+Expecta.h │ │ │ │ │ └── Masonry │ │ │ │ │ │ ├── MASCompositeConstraint.h │ │ │ │ │ │ ├── MASConstraint+Private.h │ │ │ │ │ │ ├── MASConstraint.h │ │ │ │ │ │ ├── MASConstraintMaker.h │ │ │ │ │ │ ├── MASLayoutConstraint.h │ │ │ │ │ │ ├── MASUtilities.h │ │ │ │ │ │ ├── MASViewAttribute.h │ │ │ │ │ │ ├── MASViewConstraint.h │ │ │ │ │ │ ├── Masonry.h │ │ │ │ │ │ ├── NSArray+MASAdditions.h │ │ │ │ │ │ ├── NSArray+MASShorthandAdditions.h │ │ │ │ │ │ ├── NSLayoutConstraint+MASDebugAdditions.h │ │ │ │ │ │ ├── View+MASAdditions.h │ │ │ │ │ │ ├── View+MASShorthandAdditions.h │ │ │ │ │ │ └── ViewController+MASAdditions.h │ │ │ │ └── Public │ │ │ │ │ ├── Expecta │ │ │ │ │ ├── EXPBlockDefinedMatcher.h │ │ │ │ │ ├── EXPDefines.h │ │ │ │ │ ├── EXPDoubleTuple.h │ │ │ │ │ ├── EXPExpect.h │ │ │ │ │ ├── EXPFloatTuple.h │ │ │ │ │ ├── EXPMatcher.h │ │ │ │ │ ├── EXPMatcherHelpers.h │ │ │ │ │ ├── EXPMatchers+beCloseTo.h │ │ │ │ │ ├── EXPMatchers+beFalsy.h │ │ │ │ │ ├── EXPMatchers+beGreaterThan.h │ │ │ │ │ ├── EXPMatchers+beGreaterThanOrEqualTo.h │ │ │ │ │ ├── EXPMatchers+beIdenticalTo.h │ │ │ │ │ ├── EXPMatchers+beInTheRangeOf.h │ │ │ │ │ ├── EXPMatchers+beInstanceOf.h │ │ │ │ │ ├── EXPMatchers+beKindOf.h │ │ │ │ │ ├── EXPMatchers+beLessThan.h │ │ │ │ │ ├── EXPMatchers+beLessThanOrEqualTo.h │ │ │ │ │ ├── EXPMatchers+beNil.h │ │ │ │ │ ├── EXPMatchers+beSubclassOf.h │ │ │ │ │ ├── EXPMatchers+beSupersetOf.h │ │ │ │ │ ├── EXPMatchers+beTruthy.h │ │ │ │ │ ├── EXPMatchers+beginWith.h │ │ │ │ │ ├── EXPMatchers+conformTo.h │ │ │ │ │ ├── EXPMatchers+contain.h │ │ │ │ │ ├── EXPMatchers+endWith.h │ │ │ │ │ ├── EXPMatchers+equal.h │ │ │ │ │ ├── EXPMatchers+haveCountOf.h │ │ │ │ │ ├── EXPMatchers+match.h │ │ │ │ │ ├── EXPMatchers+postNotification.h │ │ │ │ │ ├── EXPMatchers+raise.h │ │ │ │ │ ├── EXPMatchers+raiseWithReason.h │ │ │ │ │ ├── EXPMatchers+respondTo.h │ │ │ │ │ ├── EXPMatchers.h │ │ │ │ │ ├── EXPUnsupportedObject.h │ │ │ │ │ ├── Expecta.h │ │ │ │ │ ├── ExpectaObject.h │ │ │ │ │ ├── ExpectaSupport.h │ │ │ │ │ ├── NSObject+Expecta.h │ │ │ │ │ └── NSValue+Expecta.h │ │ │ │ │ └── Masonry │ │ │ │ │ ├── MASCompositeConstraint.h │ │ │ │ │ ├── MASConstraint+Private.h │ │ │ │ │ ├── MASConstraint.h │ │ │ │ │ ├── MASConstraintMaker.h │ │ │ │ │ ├── MASLayoutConstraint.h │ │ │ │ │ ├── MASUtilities.h │ │ │ │ │ ├── MASViewAttribute.h │ │ │ │ │ ├── MASViewConstraint.h │ │ │ │ │ ├── Masonry.h │ │ │ │ │ ├── NSArray+MASAdditions.h │ │ │ │ │ ├── NSArray+MASShorthandAdditions.h │ │ │ │ │ ├── NSLayoutConstraint+MASDebugAdditions.h │ │ │ │ │ ├── View+MASAdditions.h │ │ │ │ │ ├── View+MASShorthandAdditions.h │ │ │ │ │ └── ViewController+MASAdditions.h │ │ │ ├── Local Podspecs │ │ │ │ └── Masonry.podspec.json │ │ │ ├── Manifest.lock │ │ │ ├── ObjectiveC.gcda │ │ │ ├── ObjectiveC.gcno │ │ │ ├── Pods.xcodeproj │ │ │ │ ├── project.pbxproj │ │ │ │ └── xcshareddata │ │ │ │ │ └── xcschemes │ │ │ │ │ └── Masonry.xcscheme │ │ │ └── Target Support Files │ │ │ │ ├── Expecta │ │ │ │ ├── Expecta-dummy.m │ │ │ │ └── Expecta.xcconfig │ │ │ │ ├── Masonry │ │ │ │ ├── Masonry-dummy.m │ │ │ │ └── Masonry.xcconfig │ │ │ │ ├── Pods-Masonry iOS Examples │ │ │ │ ├── Pods-Masonry iOS Examples-acknowledgements.markdown │ │ │ │ ├── Pods-Masonry iOS Examples-acknowledgements.plist │ │ │ │ ├── Pods-Masonry iOS Examples-dummy.m │ │ │ │ ├── Pods-Masonry iOS Examples-frameworks.sh │ │ │ │ ├── Pods-Masonry iOS Examples-resources.sh │ │ │ │ ├── Pods-Masonry iOS Examples.debug.xcconfig │ │ │ │ └── Pods-Masonry iOS Examples.release.xcconfig │ │ │ │ ├── Pods-Masonry iOS Tests │ │ │ │ ├── Pods-Masonry iOS Tests-acknowledgements.markdown │ │ │ │ ├── Pods-Masonry iOS Tests-acknowledgements.plist │ │ │ │ ├── Pods-Masonry iOS Tests-dummy.m │ │ │ │ ├── Pods-Masonry iOS Tests-frameworks.sh │ │ │ │ ├── Pods-Masonry iOS Tests-resources.sh │ │ │ │ ├── Pods-Masonry iOS Tests.debug.xcconfig │ │ │ │ └── Pods-Masonry iOS Tests.release.xcconfig │ │ │ │ └── Pods-MasonryTestsLoader │ │ │ │ ├── Pods-MasonryTestsLoader-acknowledgements.markdown │ │ │ │ ├── Pods-MasonryTestsLoader-acknowledgements.plist │ │ │ │ ├── Pods-MasonryTestsLoader-dummy.m │ │ │ │ ├── Pods-MasonryTestsLoader-frameworks.sh │ │ │ │ ├── Pods-MasonryTestsLoader-resources.sh │ │ │ │ ├── Pods-MasonryTestsLoader.debug.xcconfig │ │ │ │ └── Pods-MasonryTestsLoader.release.xcconfig │ │ ├── README.md │ │ ├── Tests │ │ │ ├── GcovTestObserver.m │ │ │ ├── Masonry Tests.xcodeproj │ │ │ │ ├── project.pbxproj │ │ │ │ └── xcshareddata │ │ │ │ │ └── xcschemes │ │ │ │ │ └── Masonry iOS Tests.xcscheme │ │ │ ├── MasonryTests-Info.plist │ │ │ ├── MasonryTestsLoader │ │ │ │ ├── CASAppDelegate.h │ │ │ │ ├── CASAppDelegate.m │ │ │ │ ├── Images.xcassets │ │ │ │ │ ├── AppIcon.appiconset │ │ │ │ │ │ └── Contents.json │ │ │ │ │ └── LaunchImage.launchimage │ │ │ │ │ │ └── Contents.json │ │ │ │ ├── MasonryTestsLoader-Info.plist │ │ │ │ ├── en.lproj │ │ │ │ │ └── InfoPlist.strings │ │ │ │ └── main.m │ │ │ ├── NSObject+MASSubscriptSupport.h │ │ │ ├── Specs │ │ │ │ ├── MASCompositeConstraintSpec.m │ │ │ │ ├── MASConstraintDelegateMock.h │ │ │ │ ├── MASConstraintDelegateMock.m │ │ │ │ ├── MASConstraintMakerSpec.m │ │ │ │ ├── MASViewAttributeSpec.m │ │ │ │ ├── MASViewConstraintSpec.m │ │ │ │ ├── NSArray+MASAdditionsSpec.m │ │ │ │ ├── NSLayoutConstraint+MASDebugAdditionsSpec.m │ │ │ │ ├── View+MASAdditionsSpec.m │ │ │ │ └── ViewController+MASAdditionsSpec.m │ │ │ └── XCTest+Spec.h │ │ └── script │ │ │ ├── coveralls.sh │ │ │ └── exportenv.sh │ │ ├── SimpleKeychain │ │ ├── .gitignore │ │ ├── .travis.yml │ │ ├── CHANGELOG.md │ │ ├── Cartfile.private │ │ ├── Cartfile.resolved │ │ ├── Gemfile │ │ ├── Gemfile.lock │ │ ├── LICENSE │ │ ├── README.md │ │ ├── SimpleKeychain.podspec │ │ ├── SimpleKeychain.xcodeproj │ │ │ ├── project.pbxproj │ │ │ ├── project.xcworkspace │ │ │ │ └── contents.xcworkspacedata │ │ │ └── xcshareddata │ │ │ │ └── xcschemes │ │ │ │ ├── SimpleKeychain-OSX.xcscheme │ │ │ │ ├── SimpleKeychain-iOS.xcscheme │ │ │ │ ├── SimpleKeychain-tvOS.xcscheme │ │ │ │ └── SimpleKeychain-watchOS.xcscheme │ │ ├── SimpleKeychain │ │ │ ├── A0SimpleKeychain+KeyPair.h │ │ │ ├── A0SimpleKeychain+KeyPair.m │ │ │ ├── A0SimpleKeychain.h │ │ │ ├── A0SimpleKeychain.m │ │ │ ├── Info.plist │ │ │ └── SimpleKeychain.h │ │ ├── SimpleKeychainApp │ │ │ ├── AppDelegate.swift │ │ │ ├── Base.lproj │ │ │ │ └── LaunchScreen.xib │ │ │ ├── Images.xcassets │ │ │ │ └── AppIcon.appiconset │ │ │ │ │ └── Contents.json │ │ │ └── Info.plist │ │ ├── SimpleKeychainTests │ │ │ ├── Info.plist │ │ │ └── SimpleKeychainSpec.swift │ │ └── fastlane │ │ │ ├── Appfile │ │ │ ├── Fastfile │ │ │ ├── Pluginfile │ │ │ ├── README.md │ │ │ └── Scanfile │ │ ├── box-ios-browse-sdk │ │ ├── .gitignore │ │ ├── BoxBrowseSDK │ │ │ ├── BoxBrowseSDK.xcodeproj │ │ │ │ ├── project.pbxproj │ │ │ │ ├── project.xcworkspace │ │ │ │ │ └── contents.xcworkspacedata │ │ │ │ └── xcshareddata │ │ │ │ │ └── xcschemes │ │ │ │ │ └── BoxBrowseSDK.xcscheme │ │ │ ├── BoxBrowseSDK.xcworkspace │ │ │ │ └── contents.xcworkspacedata │ │ │ ├── BoxBrowseSDK │ │ │ │ ├── BOXBrowseSDKConstants.h │ │ │ │ ├── BOXThumbnailCache.h │ │ │ │ ├── BOXThumbnailCache.m │ │ │ │ ├── BoxBrowseSDK.h │ │ │ │ ├── Categories │ │ │ │ │ ├── BOXItem+BOXBrowseSDKAdditions.h │ │ │ │ │ ├── BOXItem+BOXBrowseSDKAdditions.m │ │ │ │ │ ├── NSBundle+BOXBrowseSDKAdditions.h │ │ │ │ │ ├── NSBundle+BOXBrowseSDKAdditions.m │ │ │ │ │ ├── UIImage+BOXBrowseSDKAdditions.h │ │ │ │ │ └── UIImage+BOXBrowseSDKAdditions.m │ │ │ │ ├── Controllers │ │ │ │ │ ├── BOXCreateFolderViewController.h │ │ │ │ │ ├── BOXCreateFolderViewController.m │ │ │ │ │ ├── BOXFolderViewController.h │ │ │ │ │ ├── BOXFolderViewController.m │ │ │ │ │ ├── BOXItemsViewController.h │ │ │ │ │ ├── BOXItemsViewController.m │ │ │ │ │ ├── BOXSearchResultsViewController.h │ │ │ │ │ └── BOXSearchResultsViewController.m │ │ │ │ ├── DummyStrings.h │ │ │ │ ├── DummyStrings.m │ │ │ │ ├── Helpers │ │ │ │ │ ├── BOXBrowseSDKFileTypeHelper.h │ │ │ │ │ ├── BOXBrowseSDKFileTypeHelper.m │ │ │ │ │ ├── BOXBrowseSDKResourceLocator.h │ │ │ │ │ └── BOXBrowseSDKResourceLocator.m │ │ │ │ └── Views │ │ │ │ │ └── Cells │ │ │ │ │ ├── BOXItemCell.h │ │ │ │ │ └── BOXItemCell.m │ │ │ ├── BoxBrowseSDKFramework │ │ │ │ ├── BoxBrowseSDKFramework.h │ │ │ │ └── Info.plist │ │ │ ├── BoxBrowseSDKTests │ │ │ │ └── Info.plist │ │ │ └── Resource │ │ │ │ ├── Icons │ │ │ │ ├── audio.png │ │ │ │ ├── audio@2x.png │ │ │ │ ├── audio@3x.png │ │ │ │ ├── boxnote.png │ │ │ │ ├── boxnote@2x.png │ │ │ │ ├── boxnote@3x.png │ │ │ │ ├── code.png │ │ │ │ ├── code@2x.png │ │ │ │ ├── code@3x.png │ │ │ │ ├── database.png │ │ │ │ ├── database@2x.png │ │ │ │ ├── database@3x.png │ │ │ │ ├── document.png │ │ │ │ ├── document@2x.png │ │ │ │ ├── document@3x.png │ │ │ │ ├── external_folder.png │ │ │ │ ├── external_folder@2x.png │ │ │ │ ├── external_folder@3x.png │ │ │ │ ├── generic.png │ │ │ │ ├── generic@2x.png │ │ │ │ ├── generic@3x.png │ │ │ │ ├── icon.png │ │ │ │ ├── icon@2x.png │ │ │ │ ├── icon@3x.png │ │ │ │ ├── illustrator.png │ │ │ │ ├── illustrator@2x.png │ │ │ │ ├── illustrator@3x.png │ │ │ │ ├── image.png │ │ │ │ ├── image@2x.png │ │ │ │ ├── image@3x.png │ │ │ │ ├── inDesign.png │ │ │ │ ├── inDesign@2x.png │ │ │ │ ├── inDesign@3x.png │ │ │ │ ├── link.png │ │ │ │ ├── link@2x.png │ │ │ │ ├── link@3x.png │ │ │ │ ├── lock.png │ │ │ │ ├── lock@2x.png │ │ │ │ ├── lock@3x.png │ │ │ │ ├── pdf.png │ │ │ │ ├── pdf@2x.png │ │ │ │ ├── pdf@3x.png │ │ │ │ ├── personal_folder.png │ │ │ │ ├── personal_folder@2x.png │ │ │ │ ├── personal_folder@3x.png │ │ │ │ ├── photoshop.png │ │ │ │ ├── photoshop@2x.png │ │ │ │ ├── photoshop@3x.png │ │ │ │ ├── presentation.png │ │ │ │ ├── presentation@2x.png │ │ │ │ ├── presentation@3x.png │ │ │ │ ├── shared_folder.png │ │ │ │ ├── shared_folder@2x.png │ │ │ │ ├── shared_folder@3x.png │ │ │ │ ├── sketch.png │ │ │ │ ├── sketch@2x.png │ │ │ │ ├── sketch@3x.png │ │ │ │ ├── small_audio.png │ │ │ │ ├── small_audio@2x.png │ │ │ │ ├── small_audio@3x.png │ │ │ │ ├── small_boxnote.png │ │ │ │ ├── small_boxnote@2x.png │ │ │ │ ├── small_boxnote@3x.png │ │ │ │ ├── small_code.png │ │ │ │ ├── small_code@2x.png │ │ │ │ ├── small_code@3x.png │ │ │ │ ├── small_database.png │ │ │ │ ├── small_database@2x.png │ │ │ │ ├── small_database@3x.png │ │ │ │ ├── small_document.png │ │ │ │ ├── small_document@2x.png │ │ │ │ ├── small_document@3x.png │ │ │ │ ├── small_external_folder.png │ │ │ │ ├── small_external_folder@2x.png │ │ │ │ ├── small_external_folder@3x.png │ │ │ │ ├── small_generic.png │ │ │ │ ├── small_generic@2x.png │ │ │ │ ├── small_generic@3x.png │ │ │ │ ├── small_icon.png │ │ │ │ ├── small_icon@2x.png │ │ │ │ ├── small_icon@3x.png │ │ │ │ ├── small_illustrator.png │ │ │ │ ├── small_illustrator@2x.png │ │ │ │ ├── small_illustrator@3x.png │ │ │ │ ├── small_image.png │ │ │ │ ├── small_image@2x.png │ │ │ │ ├── small_image@3x.png │ │ │ │ ├── small_inDesign.png │ │ │ │ ├── small_inDesign@2x.png │ │ │ │ ├── small_inDesign@3x.png │ │ │ │ ├── small_link.png │ │ │ │ ├── small_link@2x.png │ │ │ │ ├── small_link@3x.png │ │ │ │ ├── small_lock.png │ │ │ │ ├── small_lock@2x.png │ │ │ │ ├── small_lock@3x.png │ │ │ │ ├── small_pdf.png │ │ │ │ ├── small_pdf@2x.png │ │ │ │ ├── small_pdf@3x.png │ │ │ │ ├── small_personal_folder.png │ │ │ │ ├── small_personal_folder@2x.png │ │ │ │ ├── small_personal_folder@3x.png │ │ │ │ ├── small_photoshop.png │ │ │ │ ├── small_photoshop@2x.png │ │ │ │ ├── small_photoshop@3x.png │ │ │ │ ├── small_presentation.png │ │ │ │ ├── small_presentation@2x.png │ │ │ │ ├── small_presentation@3x.png │ │ │ │ ├── small_shared_folder.png │ │ │ │ ├── small_shared_folder@2x.png │ │ │ │ ├── small_shared_folder@3x.png │ │ │ │ ├── small_sketch.png │ │ │ │ ├── small_sketch@2x.png │ │ │ │ ├── small_sketch@3x.png │ │ │ │ ├── small_spreadsheet.png │ │ │ │ ├── small_spreadsheet@2x.png │ │ │ │ ├── small_spreadsheet@3x.png │ │ │ │ ├── small_text.png │ │ │ │ ├── small_text@2x.png │ │ │ │ ├── small_text@3x.png │ │ │ │ ├── small_vector.png │ │ │ │ ├── small_vector@2x.png │ │ │ │ ├── small_vector@3x.png │ │ │ │ ├── small_video.png │ │ │ │ ├── small_video@2x.png │ │ │ │ ├── small_video@3x.png │ │ │ │ ├── small_zip.png │ │ │ │ ├── small_zip@2x.png │ │ │ │ ├── small_zip@3x.png │ │ │ │ ├── spreadsheet.png │ │ │ │ ├── spreadsheet@2x.png │ │ │ │ ├── spreadsheet@3x.png │ │ │ │ ├── text.png │ │ │ │ ├── text@2x.png │ │ │ │ ├── text@3x.png │ │ │ │ ├── vector.png │ │ │ │ ├── vector@2x.png │ │ │ │ ├── vector@3x.png │ │ │ │ ├── video.png │ │ │ │ ├── video@2x.png │ │ │ │ ├── video@3x.png │ │ │ │ ├── zip.png │ │ │ │ ├── zip@2x.png │ │ │ │ └── zip@3x.png │ │ │ │ └── Info.plist │ │ ├── BoxBrowseSDKSampleApp │ │ │ ├── BoxBrowseSDKSampleApp.xcodeproj │ │ │ │ ├── project.pbxproj │ │ │ │ └── project.xcworkspace │ │ │ │ │ └── contents.xcworkspacedata │ │ │ ├── BoxBrowseSDKSampleApp.xcworkspace │ │ │ │ └── contents.xcworkspacedata │ │ │ ├── BoxBrowseSDKSampleApp │ │ │ │ ├── AppDelegate.h │ │ │ │ ├── AppDelegate.m │ │ │ │ ├── Base.lproj │ │ │ │ │ ├── LaunchScreen.xib │ │ │ │ │ └── Main.storyboard │ │ │ │ ├── Images.xcassets │ │ │ │ │ └── AppIcon.appiconset │ │ │ │ │ │ └── Contents.json │ │ │ │ ├── Info.plist │ │ │ │ ├── ViewController.h │ │ │ │ ├── ViewController.m │ │ │ │ └── main.m │ │ │ ├── BoxBrowseSDKSampleAppTests │ │ │ │ ├── BoxBrowseSDKSampleAppTests.m │ │ │ │ └── Info.plist │ │ │ └── Cartfile │ │ ├── CONTRIBUTING.md │ │ ├── Cartfile │ │ ├── LICENSE │ │ └── README.md │ │ └── box-ios-sdk │ │ ├── .gitignore │ │ ├── .travis.yml │ │ ├── BoxContentSDK │ │ ├── BOXContentSDKTestFramework │ │ │ ├── BOXContentSDKTestFramework.h │ │ │ └── Info.plist │ │ ├── BoxContentSDK.xcodeproj │ │ │ ├── project.pbxproj │ │ │ ├── project.xcworkspace │ │ │ │ └── contents.xcworkspacedata │ │ │ └── xcshareddata │ │ │ │ └── xcschemes │ │ │ │ ├── BoxContentSDK.xcscheme │ │ │ │ └── BoxContentSDKTests.xcscheme │ │ ├── BoxContentSDK │ │ │ ├── AppToApp │ │ │ │ ├── BOXAppToAppAnnotationBuilder.h │ │ │ │ ├── BOXAppToAppAnnotationBuilder.m │ │ │ │ ├── BOXAppToAppAnnotationKeys.h │ │ │ │ ├── BOXAppToAppApplication.h │ │ │ │ ├── BOXAppToAppApplication.m │ │ │ │ ├── BOXAppToAppFileMetadata.h │ │ │ │ ├── BOXAppToAppFileMetadata.m │ │ │ │ ├── BOXAppToAppMessage.h │ │ │ │ └── BOXAppToAppMessage.m │ │ │ ├── BOXContentSDK.h │ │ │ ├── BOXContentSDKConstants.h │ │ │ ├── BOXContentSDKConstants.m │ │ │ ├── BOXContentSDKErrors.h │ │ │ ├── BOXContentSDKErrors.m │ │ │ ├── BOXLog.h │ │ │ ├── BOXURLRequestSerialization.h │ │ │ ├── BOXURLRequestSerialization.m │ │ │ ├── BOXURLSessionCacheClient.h │ │ │ ├── BOXURLSessionCacheClient.m │ │ │ ├── BOXURLSessionManager.h │ │ │ ├── BOXURLSessionManager.m │ │ │ ├── BOXURLSessionManager_Private.h │ │ │ ├── Categories │ │ │ │ ├── NSDate+BOXContentSDKAdditions.h │ │ │ │ ├── NSDate+BOXContentSDKAdditions.m │ │ │ │ ├── NSError+BOXContentSDKAdditions.h │ │ │ │ ├── NSError+BOXContentSDKAdditions.m │ │ │ │ ├── NSJSONSerialization+BOXContentSDKAdditions.h │ │ │ │ ├── NSJSONSerialization+BOXContentSDKAdditions.m │ │ │ │ ├── NSString+BOXContentSDKAdditions.h │ │ │ │ ├── NSString+BOXContentSDKAdditions.m │ │ │ │ ├── NSURL+BOXURLHelper.h │ │ │ │ ├── NSURL+BOXURLHelper.m │ │ │ │ ├── UIApplication+ExtensionSafeAdditions.h │ │ │ │ ├── UIApplication+ExtensionSafeAdditions.m │ │ │ │ ├── UIDevice+BOXContentSDKAdditions.h │ │ │ │ └── UIDevice+BOXContentSDKAdditions.m │ │ │ ├── Clients │ │ │ │ ├── BOXContentClient+Authentication.h │ │ │ │ ├── BOXContentClient+Authentication.m │ │ │ │ ├── BOXContentClient+Bookmark.h │ │ │ │ ├── BOXContentClient+Bookmark.m │ │ │ │ ├── BOXContentClient+Collaboration.h │ │ │ │ ├── BOXContentClient+Collaboration.m │ │ │ │ ├── BOXContentClient+Collection.h │ │ │ │ ├── BOXContentClient+Collection.m │ │ │ │ ├── BOXContentClient+Comment.h │ │ │ │ ├── BOXContentClient+Comment.m │ │ │ │ ├── BOXContentClient+Event.h │ │ │ │ ├── BOXContentClient+Event.m │ │ │ │ ├── BOXContentClient+File.h │ │ │ │ ├── BOXContentClient+File.m │ │ │ │ ├── BOXContentClient+FileVersion.h │ │ │ │ ├── BOXContentClient+FileVersion.m │ │ │ │ ├── BOXContentClient+Folder.h │ │ │ │ ├── BOXContentClient+Folder.m │ │ │ │ ├── BOXContentClient+Metadata.h │ │ │ │ ├── BOXContentClient+Metadata.m │ │ │ │ ├── BOXContentClient+RecentItems.h │ │ │ │ ├── BOXContentClient+RecentItems.m │ │ │ │ ├── BOXContentClient+Search.h │ │ │ │ ├── BOXContentClient+Search.m │ │ │ │ ├── BOXContentClient+SharedLink.h │ │ │ │ ├── BOXContentClient+SharedLink.m │ │ │ │ ├── BOXContentClient+User.h │ │ │ │ ├── BOXContentClient+User.m │ │ │ │ ├── BOXContentClient.h │ │ │ │ ├── BOXContentClient.m │ │ │ │ └── BOXContentClient_Private.h │ │ │ ├── External │ │ │ │ ├── HashHelper │ │ │ │ │ ├── BOXHashHelper.h │ │ │ │ │ └── BOXHashHelper.m │ │ │ │ ├── ISO8601DateFormatter │ │ │ │ │ ├── BOXISO8601DateFormatter.h │ │ │ │ │ ├── BOXISO8601DateFormatter.m │ │ │ │ │ ├── CHANGES.md │ │ │ │ │ ├── LICENSE.txt │ │ │ │ │ └── README.md │ │ │ │ └── KeychainItemWrapper │ │ │ │ │ ├── BOXKeychainItemWrapper.h │ │ │ │ │ └── BOXKeychainItemWrapper.m │ │ │ ├── Helper │ │ │ │ ├── BOXDispatchHelper.h │ │ │ │ ├── BOXDispatchHelper.m │ │ │ │ ├── BOXSharedLinkHeadersHelper.h │ │ │ │ └── BOXSharedLinkHeadersHelper.m │ │ │ ├── Models │ │ │ │ ├── BOXBookmark.h │ │ │ │ ├── BOXBookmark.m │ │ │ │ ├── BOXCollaboration.h │ │ │ │ ├── BOXCollaboration.m │ │ │ │ ├── BOXCollection.h │ │ │ │ ├── BOXCollection.m │ │ │ │ ├── BOXComment.h │ │ │ │ ├── BOXComment.m │ │ │ │ ├── BOXEnterprise.h │ │ │ │ ├── BOXEnterprise.m │ │ │ │ ├── BOXEvent.h │ │ │ │ ├── BOXEvent.m │ │ │ │ ├── BOXFile.h │ │ │ │ ├── BOXFile.m │ │ │ │ ├── BOXFileLock.h │ │ │ │ ├── BOXFileLock.m │ │ │ │ ├── BOXFileVersion.h │ │ │ │ ├── BOXFileVersion.m │ │ │ │ ├── BOXFolder.h │ │ │ │ ├── BOXFolder.m │ │ │ │ ├── BOXGroup.h │ │ │ │ ├── BOXGroup.m │ │ │ │ ├── BOXItem.h │ │ │ │ ├── BOXItem.m │ │ │ │ ├── BOXMetadata.h │ │ │ │ ├── BOXMetadata.m │ │ │ │ ├── BOXMetadataKeyValue.h │ │ │ │ ├── BOXMetadataKeyValue.m │ │ │ │ ├── BOXMetadataTemplate.h │ │ │ │ ├── BOXMetadataTemplate.m │ │ │ │ ├── BOXMetadataTemplateField.h │ │ │ │ ├── BOXMetadataTemplateField.m │ │ │ │ ├── BOXMetadataUpdateTask.h │ │ │ │ ├── BOXMetadataUpdateTask.m │ │ │ │ ├── BOXModel.h │ │ │ │ ├── BOXModel.m │ │ │ │ ├── BOXRecentItem.h │ │ │ │ ├── BOXRecentItem.m │ │ │ │ ├── BOXRepresentation.h │ │ │ │ ├── BOXRepresentation.m │ │ │ │ ├── BOXSharedLink.h │ │ │ │ ├── BOXSharedLink.m │ │ │ │ ├── BOXUser.h │ │ │ │ ├── BOXUser.m │ │ │ │ └── BOXUser_Private.h │ │ │ ├── OAuth2 │ │ │ │ ├── BOXAbstractSession.h │ │ │ │ ├── BOXAbstractSession.m │ │ │ │ ├── BOXAbstractSession_Private.h │ │ │ │ ├── BOXAppUserSession.h │ │ │ │ ├── BOXAppUserSession.m │ │ │ │ ├── BOXAuthorizationViewController.h │ │ │ │ ├── BOXAuthorizationViewController.m │ │ │ │ ├── BOXOAuth2Session.h │ │ │ │ ├── BOXOAuth2Session.m │ │ │ │ ├── BOXParallelOAuth2Session.h │ │ │ │ └── BOXParallelOAuth2Session.m │ │ │ ├── Operations │ │ │ │ ├── BOXAPIAppUsersAuthOperation.h │ │ │ │ ├── BOXAPIAppUsersAuthOperation.m │ │ │ │ ├── BOXAPIAuthenticatedOperation.h │ │ │ │ ├── BOXAPIAuthenticatedOperation.m │ │ │ │ ├── BOXAPIDataOperation.h │ │ │ │ ├── BOXAPIDataOperation.m │ │ │ │ ├── BOXAPIJSONOperation.h │ │ │ │ ├── BOXAPIJSONOperation.m │ │ │ │ ├── BOXAPIJSONPatchOperation.h │ │ │ │ ├── BOXAPIJSONPatchOperation.m │ │ │ │ ├── BOXAPIMultipartToJSONOperation.h │ │ │ │ ├── BOXAPIMultipartToJSONOperation.m │ │ │ │ ├── BOXAPIOAuth2ToJSONOperation.h │ │ │ │ ├── BOXAPIOAuth2ToJSONOperation.m │ │ │ │ ├── BOXAPIOperation.h │ │ │ │ ├── BOXAPIOperation.m │ │ │ │ ├── BOXAPIOperation_Private.h │ │ │ │ ├── BOXStreamOperation.h │ │ │ │ └── BOXStreamOperation.m │ │ │ ├── Protocols │ │ │ │ ├── BOXContentCacheClientProtocol.h │ │ │ │ ├── BOXSharedLinkHeadersDefaultManager.h │ │ │ │ ├── BOXSharedLinkHeadersDefaultManager.m │ │ │ │ ├── BOXSharedLinkItemSource.h │ │ │ │ └── BOXSharedLinkStorageProtocol.h │ │ │ ├── QueueManagers │ │ │ │ ├── BOXAPIAccessTokenDelegate.h │ │ │ │ ├── BOXAPIQueueManager.h │ │ │ │ ├── BOXAPIQueueManager.m │ │ │ │ ├── BOXParallelAPIQueueManager.h │ │ │ │ ├── BOXParallelAPIQueueManager.m │ │ │ │ ├── BOXSerialAPIQueueManager.h │ │ │ │ └── BOXSerialAPIQueueManager.m │ │ │ └── Requests │ │ │ │ ├── BOXAPIHeadOperation.h │ │ │ │ ├── BOXAPIHeadOperation.m │ │ │ │ ├── BOXBookmarkCommentsRequest.h │ │ │ │ ├── BOXBookmarkCommentsRequest.m │ │ │ │ ├── BOXBookmarkCopyRequest.h │ │ │ │ ├── BOXBookmarkCopyRequest.m │ │ │ │ ├── BOXBookmarkCreateRequest.h │ │ │ │ ├── BOXBookmarkCreateRequest.m │ │ │ │ ├── BOXBookmarkDeleteRequest.h │ │ │ │ ├── BOXBookmarkDeleteRequest.m │ │ │ │ ├── BOXBookmarkRequest.h │ │ │ │ ├── BOXBookmarkRequest.m │ │ │ │ ├── BOXBookmarkShareRequest.h │ │ │ │ ├── BOXBookmarkShareRequest.m │ │ │ │ ├── BOXBookmarkUnshareRequest.h │ │ │ │ ├── BOXBookmarkUnshareRequest.m │ │ │ │ ├── BOXBookmarkUpdateRequest.h │ │ │ │ ├── BOXBookmarkUpdateRequest.m │ │ │ │ ├── BOXCollaborationCreateRequest.h │ │ │ │ ├── BOXCollaborationCreateRequest.m │ │ │ │ ├── BOXCollaborationPendingRequest.h │ │ │ │ ├── BOXCollaborationPendingRequest.m │ │ │ │ ├── BOXCollaborationRemoveRequest.h │ │ │ │ ├── BOXCollaborationRemoveRequest.m │ │ │ │ ├── BOXCollaborationRequest.h │ │ │ │ ├── BOXCollaborationRequest.m │ │ │ │ ├── BOXCollaborationUpdateRequest.h │ │ │ │ ├── BOXCollaborationUpdateRequest.m │ │ │ │ ├── BOXCollectionFavoritesRequest.h │ │ │ │ ├── BOXCollectionFavoritesRequest.m │ │ │ │ ├── BOXCollectionItemsRequest.h │ │ │ │ ├── BOXCollectionItemsRequest.m │ │ │ │ ├── BOXCollectionListRequest.h │ │ │ │ ├── BOXCollectionListRequest.m │ │ │ │ ├── BOXCommentAddRequest.h │ │ │ │ ├── BOXCommentAddRequest.m │ │ │ │ ├── BOXCommentDeleteRequest.h │ │ │ │ ├── BOXCommentDeleteRequest.m │ │ │ │ ├── BOXCommentRequest.h │ │ │ │ ├── BOXCommentRequest.m │ │ │ │ ├── BOXCommentUpdateRequest.h │ │ │ │ ├── BOXCommentUpdateRequest.m │ │ │ │ ├── BOXEventsAdminLogsRequest.h │ │ │ │ ├── BOXEventsAdminLogsRequest.m │ │ │ │ ├── BOXEventsRequest.h │ │ │ │ ├── BOXEventsRequest.m │ │ │ │ ├── BOXFileCollaborationsRequest.h │ │ │ │ ├── BOXFileCollaborationsRequest.m │ │ │ │ ├── BOXFileCommentsRequest.h │ │ │ │ ├── BOXFileCommentsRequest.m │ │ │ │ ├── BOXFileCopyRequest.h │ │ │ │ ├── BOXFileCopyRequest.m │ │ │ │ ├── BOXFileDeleteRequest.h │ │ │ │ ├── BOXFileDeleteRequest.m │ │ │ │ ├── BOXFileDownloadRequest.h │ │ │ │ ├── BOXFileDownloadRequest.m │ │ │ │ ├── BOXFileRepresentationDownloadRequest.h │ │ │ │ ├── BOXFileRepresentationDownloadRequest.m │ │ │ │ ├── BOXFileRequest.h │ │ │ │ ├── BOXFileRequest.m │ │ │ │ ├── BOXFileShareRequest.h │ │ │ │ ├── BOXFileShareRequest.m │ │ │ │ ├── BOXFileThumbnailRequest.h │ │ │ │ ├── BOXFileThumbnailRequest.m │ │ │ │ ├── BOXFileUnshareRequest.h │ │ │ │ ├── BOXFileUnshareRequest.m │ │ │ │ ├── BOXFileUpdateRequest.h │ │ │ │ ├── BOXFileUpdateRequest.m │ │ │ │ ├── BOXFileUploadNewVersionRequest.h │ │ │ │ ├── BOXFileUploadNewVersionRequest.m │ │ │ │ ├── BOXFileUploadRequest.h │ │ │ │ ├── BOXFileUploadRequest.m │ │ │ │ ├── BOXFileVersionPromoteRequest.h │ │ │ │ ├── BOXFileVersionPromoteRequest.m │ │ │ │ ├── BOXFileVersionsRequest.h │ │ │ │ ├── BOXFileVersionsRequest.m │ │ │ │ ├── BOXFolderCollaborationsRequest.h │ │ │ │ ├── BOXFolderCollaborationsRequest.m │ │ │ │ ├── BOXFolderCopyRequest.h │ │ │ │ ├── BOXFolderCopyRequest.m │ │ │ │ ├── BOXFolderCreateRequest.h │ │ │ │ ├── BOXFolderCreateRequest.m │ │ │ │ ├── BOXFolderDeleteRequest.h │ │ │ │ ├── BOXFolderDeleteRequest.m │ │ │ │ ├── BOXFolderItemsRequest.h │ │ │ │ ├── BOXFolderItemsRequest.m │ │ │ │ ├── BOXFolderPaginatedItemsRequest.h │ │ │ │ ├── BOXFolderPaginatedItemsRequest.m │ │ │ │ ├── BOXFolderPaginatedItemsRequest_Private.h │ │ │ │ ├── BOXFolderRequest.h │ │ │ │ ├── BOXFolderRequest.m │ │ │ │ ├── BOXFolderShareRequest.h │ │ │ │ ├── BOXFolderShareRequest.m │ │ │ │ ├── BOXFolderUnshareRequest.h │ │ │ │ ├── BOXFolderUnshareRequest.m │ │ │ │ ├── BOXFolderUpdateRequest.h │ │ │ │ ├── BOXFolderUpdateRequest.m │ │ │ │ ├── BOXItemArrayRequest.h │ │ │ │ ├── BOXItemArrayRequest.m │ │ │ │ ├── BOXItemSetCollectionsRequest.h │ │ │ │ ├── BOXItemSetCollectionsRequest.m │ │ │ │ ├── BOXItemShareRequest.h │ │ │ │ ├── BOXItemShareRequest.m │ │ │ │ ├── BOXMetadataCreateRequest.h │ │ │ │ ├── BOXMetadataCreateRequest.m │ │ │ │ ├── BOXMetadataDeleteRequest.h │ │ │ │ ├── BOXMetadataDeleteRequest.m │ │ │ │ ├── BOXMetadataRequest.h │ │ │ │ ├── BOXMetadataRequest.m │ │ │ │ ├── BOXMetadataTemplateRequest.h │ │ │ │ ├── BOXMetadataTemplateRequest.m │ │ │ │ ├── BOXMetadataUpdateRequest.h │ │ │ │ ├── BOXMetadataUpdateRequest.m │ │ │ │ ├── BOXPreflightCheckRequest.h │ │ │ │ ├── BOXPreflightCheckRequest.m │ │ │ │ ├── BOXRecentItemsRequest.h │ │ │ │ ├── BOXRecentItemsRequest.m │ │ │ │ ├── BOXRequest+Metadata.h │ │ │ │ ├── BOXRequest+Metadata.m │ │ │ │ ├── BOXRequest.h │ │ │ │ ├── BOXRequest.m │ │ │ │ ├── BOXRequestWithSharedLinkHeader.h │ │ │ │ ├── BOXRequestWithSharedLinkHeader.m │ │ │ │ ├── BOXRequest_Private.h │ │ │ │ ├── BOXSearchRequest.h │ │ │ │ ├── BOXSearchRequest.m │ │ │ │ ├── BOXSharedItemRequest.h │ │ │ │ ├── BOXSharedItemRequest.m │ │ │ │ ├── BOXTrashedFileRestoreRequest.h │ │ │ │ ├── BOXTrashedFileRestoreRequest.m │ │ │ │ ├── BOXTrashedFolderRestoreRequest.h │ │ │ │ ├── BOXTrashedFolderRestoreRequest.m │ │ │ │ ├── BOXTrashedItemArrayRequest.h │ │ │ │ ├── BOXTrashedItemArrayRequest.m │ │ │ │ ├── BOXUserAvatarRequest.h │ │ │ │ ├── BOXUserAvatarRequest.m │ │ │ │ ├── BOXUserRequest.h │ │ │ │ └── BOXUserRequest.m │ │ ├── BoxContentSDKFramework │ │ │ ├── BoxContentSDKFramework.h │ │ │ └── Info.plist │ │ ├── BoxContentSDKResources │ │ │ ├── BoxContentSDKResources-Info.plist │ │ │ └── en.lproj │ │ │ │ └── InfoPlist.strings │ │ ├── BoxContentSDKTests │ │ │ ├── BOXAppUserSessionTests.m │ │ │ ├── BOXBookmarkCommentsRequestTests.m │ │ │ ├── BOXBookmarkCopyRequestTests.m │ │ │ ├── BOXBookmarkCreateRequestTests.m │ │ │ ├── BOXBookmarkDeleteRequestTests.m │ │ │ ├── BOXBookmarkRequestTests.m │ │ │ ├── BOXBookmarkShareRequestTests.m │ │ │ ├── BOXBookmarkTests.m │ │ │ ├── BOXBookmarkUnshareRequestTests.m │ │ │ ├── BOXBookmarkUpdateRequestTests.m │ │ │ ├── BOXCannedResponse.h │ │ │ ├── BOXCannedResponse.m │ │ │ ├── BOXCannedURLProtocol.h │ │ │ ├── BOXCannedURLProtocol.m │ │ │ ├── BOXCollaborationCreateRequestTests.m │ │ │ ├── BOXCollaborationPendingRequestTests.m │ │ │ ├── BOXCollaborationRemoveRequestTests.m │ │ │ ├── BOXCollaborationRequestTests.m │ │ │ ├── BOXCollaborationTests.m │ │ │ ├── BOXCollaborationUpdateRequestTests.m │ │ │ ├── BOXCollectionItemOperationRequestTests.m │ │ │ ├── BOXCollectionItemsRequestTests.m │ │ │ ├── BOXCollectionListRequestTests.m │ │ │ ├── BOXCollectionTests.m │ │ │ ├── BOXCommentAddRequestTests.m │ │ │ ├── BOXCommentDeleteRequestTests.m │ │ │ ├── BOXCommentRequestTests.m │ │ │ ├── BOXCommentTests.m │ │ │ ├── BOXCommentUpdateRequestTests.m │ │ │ ├── BOXContentCacheTestClient.h │ │ │ ├── BOXContentCacheTestClient.m │ │ │ ├── BOXContentClientSessionTests.m │ │ │ ├── BOXContentClientTestCase.h │ │ │ ├── BOXContentClientTestCase.m │ │ │ ├── BOXContentSDKTestCase.h │ │ │ ├── BOXContentSDKTestCase.m │ │ │ ├── BOXEventAdminLogsRequestTests.m │ │ │ ├── BOXEventTests.m │ │ │ ├── BOXEventsRequestTests.m │ │ │ ├── BOXFileCollaborationsRequestTests.m │ │ │ ├── BOXFileCommentsRequestTests.m │ │ │ ├── BOXFileCopyRequestTests.m │ │ │ ├── BOXFileDeleteRequestTests.m │ │ │ ├── BOXFileDownloadRequestTests.m │ │ │ ├── BOXFileRepresentationDownloadRequestTests.m │ │ │ ├── BOXFileRequestTests.m │ │ │ ├── BOXFileShareRequestTests.m │ │ │ ├── BOXFileTests.m │ │ │ ├── BOXFileThumbnailRequestTests.m │ │ │ ├── BOXFileUnshareRequestTests.m │ │ │ ├── BOXFileUpdateRequestTests.m │ │ │ ├── BOXFileUploadNewVersionRequestTests.m │ │ │ ├── BOXFileUploadRequestTests.m │ │ │ ├── BOXFileVersionPromoteRequestTests.m │ │ │ ├── BOXFileVersionTests.m │ │ │ ├── BOXFileVersionsRequestTests.m │ │ │ ├── BOXFolderCollaborationsRequestTests.m │ │ │ ├── BOXFolderCopyRequestTests.m │ │ │ ├── BOXFolderCreateRequestTests.m │ │ │ ├── BOXFolderDeleteRequestTests.m │ │ │ ├── BOXFolderItemsRequestTests.m │ │ │ ├── BOXFolderPaginatedItemsRequestTests.m │ │ │ ├── BOXFolderRequestTests.m │ │ │ ├── BOXFolderShareRequestTests.m │ │ │ ├── BOXFolderTests.m │ │ │ ├── BOXFolderUnshareRequestTests.m │ │ │ ├── BOXFolderUpdateRequestTests.m │ │ │ ├── BOXMetadataRequestTests.m │ │ │ ├── BOXModelTestCase.h │ │ │ ├── BOXModelTestCase.m │ │ │ ├── BOXModelTests.m │ │ │ ├── BOXOauth2SessionTests.m │ │ │ ├── BOXPreflightCheckRequestTests.m │ │ │ ├── BOXRecentItemTests.m │ │ │ ├── BOXRecentItemsRequestTests.m │ │ │ ├── BOXRequestTestCase.h │ │ │ ├── BOXRequestTestCase.m │ │ │ ├── BOXRequestTests.m │ │ │ ├── BOXRequestWithSharedLinkHeadersTests.m │ │ │ ├── BOXSearchRequestTests.m │ │ │ ├── BOXSharedItemRequestTests.m │ │ │ ├── BOXSharedLinkTests.m │ │ │ ├── BOXTrashedFileRestoreRequestTests.m │ │ │ ├── BOXTrashedFolderRestoreRequestTests.m │ │ │ ├── BOXTrashedItemArrayRequestTests.m │ │ │ ├── BOXUserAvatarRequestTests.m │ │ │ ├── BOXUserRequestTests.m │ │ │ ├── BOXUserTests.m │ │ │ ├── Info.plist │ │ │ ├── Libraries │ │ │ │ ├── OCMock │ │ │ │ │ ├── NSNotificationCenter+OCMAdditions.h │ │ │ │ │ ├── OCMArg.h │ │ │ │ │ ├── OCMConstraint.h │ │ │ │ │ ├── OCMLocation.h │ │ │ │ │ ├── OCMMacroState.h │ │ │ │ │ ├── OCMRecorder.h │ │ │ │ │ ├── OCMStubRecorder.h │ │ │ │ │ ├── OCMock.h │ │ │ │ │ └── OCMockObject.h │ │ │ │ └── libOCMock.a │ │ │ ├── NSStringBoxContentSDKAdditionsTests.m │ │ │ ├── account_deactivated.json │ │ │ ├── bookmark_all_fields.json │ │ │ ├── bookmark_default_fields.json │ │ │ ├── bookmark_default_fields_not_shared.json │ │ │ ├── bookmark_default_fields_shared.json │ │ │ ├── bookmark_mini_fields.json │ │ │ ├── collaboration.json │ │ │ ├── collaborations_pending.json │ │ │ ├── collection_all_fields.json │ │ │ ├── collections.json │ │ │ ├── comment_all_fields.json │ │ │ ├── empty.json │ │ │ ├── enterprise_metadata.json │ │ │ ├── enterprise_metadatas.json │ │ │ ├── event_all_fields.json │ │ │ ├── events.json │ │ │ ├── exceeded_device_limits.json │ │ │ ├── file_all_fields.json │ │ │ ├── file_all_fields_representations.json │ │ │ ├── file_default_fields.json │ │ │ ├── file_default_fields_not_shared.json │ │ │ ├── file_default_fields_shared.json │ │ │ ├── file_mini_fields.json │ │ │ ├── file_version.json │ │ │ ├── file_versions.json │ │ │ ├── folder_all_fields.json │ │ │ ├── folder_default_fields.json │ │ │ ├── folder_default_fields_not_shared.json │ │ │ ├── folder_default_fields_shared.json │ │ │ ├── folder_mini_fields.json │ │ │ ├── get_comments.json │ │ │ ├── get_items.json │ │ │ ├── get_items_0_2.json │ │ │ ├── get_items_3_5.json │ │ │ ├── get_items_3_5_duped.json │ │ │ ├── invalid_grant.json │ │ │ ├── invalid_token.json │ │ │ ├── item_search_results.json │ │ │ ├── metadata.json │ │ │ ├── metadata_template.json │ │ │ ├── metadata_templates.json │ │ │ ├── missing_device_id.json │ │ │ ├── model.json │ │ │ ├── preflight_check_conflict.json │ │ │ ├── preflight_check_success.json │ │ │ ├── recent_item_default_fields.json │ │ │ ├── recent_item_default_fields_shared.json │ │ │ ├── recent_items.json │ │ │ ├── representations.json │ │ │ ├── shared_link.json │ │ │ ├── trashed_items.json │ │ │ ├── unauthorized_device.json │ │ │ ├── unsupported_device_pinning_runtime.json │ │ │ ├── updated_enterprise_metadata.json │ │ │ ├── user_all_fields.json │ │ │ ├── user_all_fields_null_enterprise.json │ │ │ ├── user_default_fields.json │ │ │ └── user_mini_fields.json │ │ └── LICENSE │ │ ├── BoxContentSDKSampleApp │ │ ├── BoxContentSDKSampleApp.xcodeproj │ │ │ ├── project.pbxproj │ │ │ └── project.xcworkspace │ │ │ │ └── contents.xcworkspacedata │ │ ├── BoxContentSDKSampleApp.xcworkspace │ │ │ └── contents.xcworkspacedata │ │ ├── BoxContentSDKSampleApp │ │ │ ├── BOXAuthenticationPickerViewController.h │ │ │ ├── BOXAuthenticationPickerViewController.m │ │ │ ├── BOXFileRepresentionListViewControllerTableViewController.h │ │ │ ├── BOXFileRepresentionListViewControllerTableViewController.m │ │ │ ├── BOXItemCollectionService.h │ │ │ ├── BOXItemCollectionService.m │ │ │ ├── BOXSampleAccountsViewController.h │ │ │ ├── BOXSampleAccountsViewController.m │ │ │ ├── BOXSampleAppDelegate.h │ │ │ ├── BOXSampleAppDelegate.m │ │ │ ├── BOXSampleAppSessionManager.h │ │ │ ├── BOXSampleAppSessionManager.m │ │ │ ├── BOXSampleFileDetailsController.h │ │ │ ├── BOXSampleFileDetailsController.m │ │ │ ├── BOXSampleFolderViewController.h │ │ │ ├── BOXSampleFolderViewController.m │ │ │ ├── BOXSampleItemCell.h │ │ │ ├── BOXSampleItemCell.m │ │ │ ├── BOXSampleLibraryAssetViewController.h │ │ │ ├── BOXSampleLibraryAssetViewController.m │ │ │ ├── BOXSampleProgressView.h │ │ │ ├── BOXSampleProgressView.m │ │ │ ├── BOXSampleThumbnailsHelper.h │ │ │ ├── BOXSampleThumbnailsHelper.m │ │ │ ├── Base.lproj │ │ │ │ ├── LaunchScreen.xib │ │ │ │ └── Main.storyboard │ │ │ ├── BoxContentSDKSampleApp.entitlements │ │ │ ├── Images.xcassets │ │ │ │ └── AppIcon.appiconset │ │ │ │ │ └── Contents.json │ │ │ ├── Info.plist │ │ │ ├── Ressources │ │ │ │ ├── Logo_Box_Blue_Whitebg_480x480.jpg │ │ │ │ ├── icon-file-generic.png │ │ │ │ ├── icon-file-generic@2x.png │ │ │ │ ├── icon-folder-external.png │ │ │ │ ├── icon-folder-external@2x.png │ │ │ │ ├── icon-folder-shared.png │ │ │ │ ├── icon-folder-shared@2x.png │ │ │ │ ├── icon-folder.png │ │ │ │ └── icon-folder@2x.png │ │ │ └── main.m │ │ ├── BoxContentSDKSampleAppTests │ │ │ ├── BoxSDKSampleAppTests.m │ │ │ └── Info.plist │ │ └── shareExtension │ │ │ ├── Base.lproj │ │ │ └── MainInterface.storyboard │ │ │ ├── Info.plist │ │ │ ├── ShareViewController.h │ │ │ ├── ShareViewController.m │ │ │ └── shareExtension.entitlements │ │ ├── CONTRIBUTING.md │ │ ├── LICENSE │ │ ├── README.md │ │ └── doc │ │ ├── AppUsers.md │ │ ├── Authentication.md │ │ ├── Collaborations.md │ │ ├── Comments.md │ │ ├── Events.md │ │ ├── Files.md │ │ ├── Folders.md │ │ ├── Search.md │ │ ├── Setup.md │ │ ├── Users.md │ │ └── metadata.md ├── LICENSE └── README.md ├── box-aws-cognito-angular2-skeleton-app-sample ├── .angular-cli.json ├── .editorconfig ├── .gitignore ├── LICENSE ├── README.md ├── e2e │ ├── app.e2e-spec.ts │ ├── app.po.ts │ └── tsconfig.e2e.json ├── karma.conf.js ├── package.json ├── protractor.conf.js ├── src │ ├── app │ │ ├── app-routing.module.ts │ │ ├── app.module.ts │ │ ├── components │ │ │ ├── add-new-folder │ │ │ │ ├── add-new-folder.component.css │ │ │ │ ├── add-new-folder.component.html │ │ │ │ ├── add-new-folder.component.spec.ts │ │ │ │ └── add-new-folder.component.ts │ │ │ ├── app-view │ │ │ │ ├── app-view.component.css │ │ │ │ ├── app-view.component.html │ │ │ │ ├── app-view.component.spec.ts │ │ │ │ └── app-view.component.ts │ │ │ ├── auth │ │ │ │ ├── confirm │ │ │ │ │ ├── confirmRegistration.component.ts │ │ │ │ │ └── confirmRegistration.html │ │ │ │ ├── forgot │ │ │ │ │ ├── forgotPassword.component.ts │ │ │ │ │ ├── forgotPassword.html │ │ │ │ │ └── forgotPasswordStep2.html │ │ │ │ ├── login │ │ │ │ │ ├── login.component.ts │ │ │ │ │ └── login.html │ │ │ │ ├── register │ │ │ │ │ ├── registration.component.ts │ │ │ │ │ └── registration.html │ │ │ │ └── resend │ │ │ │ │ ├── resendCode.component.ts │ │ │ │ │ └── resendCode.html │ │ │ ├── box-explorer │ │ │ │ ├── box-explorer.component.css │ │ │ │ ├── box-explorer.component.html │ │ │ │ ├── box-explorer.component.spec.ts │ │ │ │ └── box-explorer.component.ts │ │ │ ├── file-detail-view │ │ │ │ ├── file-detail-view.component.css │ │ │ │ ├── file-detail-view.component.html │ │ │ │ └── file-detail-view.component.ts │ │ │ ├── file-upload │ │ │ │ ├── file-upload.component.css │ │ │ │ ├── file-upload.component.html │ │ │ │ ├── file-upload.component.spec.ts │ │ │ │ └── file-upload.component.ts │ │ │ ├── file-view │ │ │ │ ├── file-view.component.css │ │ │ │ ├── file-view.component.html │ │ │ │ ├── file-view.component.spec.ts │ │ │ │ └── file-view.component.ts │ │ │ ├── folder-path │ │ │ │ ├── folder-path.component.css │ │ │ │ ├── folder-path.component.html │ │ │ │ ├── folder-path.component.spec.ts │ │ │ │ └── folder-path.component.ts │ │ │ ├── folder-view │ │ │ │ ├── folder-view.component.css │ │ │ │ ├── folder-view.component.html │ │ │ │ ├── folder-view.component.spec.ts │ │ │ │ └── folder-view.component.ts │ │ │ ├── preview-modal │ │ │ │ ├── preview-modal.component.css │ │ │ │ ├── preview-modal.component.html │ │ │ │ └── preview-modal.component.ts │ │ │ └── welcome-view │ │ │ │ ├── welcome-view.component.css │ │ │ │ ├── welcome-view.component.html │ │ │ │ ├── welcome-view.component.spec.ts │ │ │ │ └── welcome-view.component.ts │ │ ├── config │ │ │ └── box │ │ │ │ └── box.config.ts │ │ ├── models │ │ │ ├── auth │ │ │ │ └── registration-user.model.ts │ │ │ └── box │ │ │ │ ├── box-create-folder.model.ts │ │ │ │ ├── box-file.model.ts │ │ │ │ ├── box-folder.model.ts │ │ │ │ ├── box-item-collection.model.ts │ │ │ │ ├── box-item.model.ts │ │ │ │ └── box-user-stub.model.ts │ │ └── services │ │ │ ├── auth │ │ │ ├── auth.guard.ts │ │ │ ├── auth.service.spec.ts │ │ │ └── auth.service.ts │ │ │ ├── aws │ │ │ ├── aws.service.ts │ │ │ └── cognito.service.ts │ │ │ └── box │ │ │ ├── box-client.service.ts │ │ │ ├── box-file-service.ts │ │ │ └── box-folder-service.ts │ ├── assets │ │ ├── .gitkeep │ │ ├── img │ │ │ └── box_blue.png │ │ ├── js │ │ │ ├── amazon-cognito-identity.min.js │ │ │ ├── aws-cognito-sdk.min.js │ │ │ ├── aws-sdk-2.7.13.min.js │ │ │ ├── aws-sdk-mobile-analytics.min.js │ │ │ ├── aws-sdk-s3.min.js │ │ │ ├── jsbn.js │ │ │ ├── jsbn2.js │ │ │ └── sjcl.js │ │ └── loading.svg │ ├── environments │ │ ├── environment.prod.ts │ │ └── environment.ts │ ├── favicon.ico │ ├── index.html │ ├── main.ts │ ├── polyfills.ts │ ├── styles.css │ ├── test.ts │ ├── tsconfig.app.json │ ├── tsconfig.spec.json │ └── typings.d.ts ├── tsconfig.json ├── tslint.json └── yarn.lock ├── box-java-servlet-skeleton-app ├── .classpath ├── .project ├── .settings │ ├── org.eclipse.jdt.core.prefs │ └── org.eclipse.m2e.core.prefs ├── Dockerfile ├── LICENSE ├── README.md ├── UnlimitedJCEPolicyJDK8 │ └── README.txt ├── docker-compose.yml ├── pom.xml └── src │ └── main │ ├── java │ └── com │ │ ├── box │ │ └── example │ │ │ ├── Auth0Filter.java │ │ │ ├── AuthenticationControllerProvider.java │ │ │ ├── CallbackServlet.java │ │ │ ├── ContentPickerServlet.java │ │ │ ├── ContentTreeServlet.java │ │ │ ├── ContentUploaderServlet.java │ │ │ ├── DashboardServlet.java │ │ │ ├── LoginServlet.java │ │ │ └── LogoutServlet.java │ │ └── helpers │ │ └── BoxHelper.java │ └── webapp │ ├── WEB-INF │ └── web.xml │ ├── assets │ └── test.txt │ ├── bottom.jsp │ ├── boxUIElements.jsp │ ├── contentPicker.jsp │ ├── contentTree.jsp │ ├── contentUploader.jsp │ ├── dashboard.jsp │ ├── nav.jsp │ └── top.jsp ├── box-node-cognito-lambdas-sample ├── .gitignore ├── LICENSE ├── README.md ├── createAppUser │ ├── README.md │ ├── boxManager.js │ ├── errorHandlers.js │ ├── index.js │ ├── package-lock.json │ └── package.json ├── swagger.yaml └── tokenExchange │ ├── README.md │ ├── boxManager.js │ ├── index.js │ ├── package-lock.json │ └── package.json ├── box-node-custom-skills-sample ├── .babelrc ├── .eslintrc ├── .gitignore ├── LICENSE ├── README.md ├── error-parser.js ├── index.js ├── metadata-card-adaptor.js ├── package.json ├── serverless.yml ├── skills-kit.js └── test │ └── skills-kit.test.js ├── box-node-express-skeleton-app ├── LICENSE ├── README.md ├── app │ ├── .dockerignore │ ├── .eslintrc │ ├── Dockerfile │ ├── app-web │ │ ├── controllers │ │ │ ├── contentPickerController.js │ │ │ ├── contentTreeController.js │ │ │ ├── contentUploaderController.js │ │ │ ├── indexController.js │ │ │ ├── loginController.js │ │ │ ├── logoutController.js │ │ │ └── usersController.js │ │ ├── public │ │ │ └── css │ │ │ │ └── box.css │ │ ├── routes │ │ │ └── index.js │ │ └── views │ │ │ ├── pages │ │ │ ├── content-picker.ejs │ │ │ ├── content-tree.ejs │ │ │ ├── content-uploader.ejs │ │ │ ├── error.ejs │ │ │ ├── login.ejs │ │ │ └── user.ejs │ │ │ └── partials │ │ │ ├── box │ │ │ ├── box-ui-scripts.ejs │ │ │ └── box-ui-selectors.ejs │ │ │ └── common │ │ │ ├── display-header.ejs │ │ │ ├── footer.ejs │ │ │ └── header.ejs │ ├── app.js │ ├── bin │ │ └── www │ ├── box-service │ │ ├── boxClientService.js │ │ ├── boxConfig.js │ │ └── boxTokenCache.js │ ├── cache-service │ │ └── cacheService.js │ ├── config │ │ └── default.js │ ├── gulpfile.js │ ├── identity-service │ │ └── passport-strategies │ │ │ └── auth0-strategy.js │ ├── package.json │ └── processes.json └── docker-compose.yml ├── box-node-lambda-sample ├── .eslintrc.json ├── LICENSE ├── README.md ├── index.js ├── lambda.json └── package.json ├── box-node-rekognition-lambdas-sample ├── .eslintrc.json ├── LICENSE ├── README.md ├── rekognition │ ├── README.md │ ├── index.js │ └── package.json └── webhook │ ├── README.md │ ├── index.js │ └── package.json └── box-node-webhook-to-lambda-sample ├── .eslintrc.json ├── LICENSE ├── README.md ├── curl-test.json ├── index.js ├── lambda-test.json ├── lambda.json └── package.json /.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/box/samples/HEAD/.gitignore -------------------------------------------------------------------------------- /LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/box/samples/HEAD/LICENSE -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/box/samples/HEAD/README.md -------------------------------------------------------------------------------- /box-aspnet-mvc-skeleton-app/BasicMvcSample.sln: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/box/samples/HEAD/box-aspnet-mvc-skeleton-app/BasicMvcSample.sln -------------------------------------------------------------------------------- /box-aspnet-mvc-skeleton-app/BasicMvcSample/App_Start/BundleConfig.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/box/samples/HEAD/box-aspnet-mvc-skeleton-app/BasicMvcSample/App_Start/BundleConfig.cs -------------------------------------------------------------------------------- /box-aspnet-mvc-skeleton-app/BasicMvcSample/App_Start/FilterConfig.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/box/samples/HEAD/box-aspnet-mvc-skeleton-app/BasicMvcSample/App_Start/FilterConfig.cs -------------------------------------------------------------------------------- /box-aspnet-mvc-skeleton-app/BasicMvcSample/App_Start/RouteConfig.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/box/samples/HEAD/box-aspnet-mvc-skeleton-app/BasicMvcSample/App_Start/RouteConfig.cs -------------------------------------------------------------------------------- /box-aspnet-mvc-skeleton-app/BasicMvcSample/App_Start/Startup.Auth.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/box/samples/HEAD/box-aspnet-mvc-skeleton-app/BasicMvcSample/App_Start/Startup.Auth.cs -------------------------------------------------------------------------------- /box-aspnet-mvc-skeleton-app/BasicMvcSample/Assets/test.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/box/samples/HEAD/box-aspnet-mvc-skeleton-app/BasicMvcSample/Assets/test.txt -------------------------------------------------------------------------------- /box-aspnet-mvc-skeleton-app/BasicMvcSample/BasicMvcSample.csproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/box/samples/HEAD/box-aspnet-mvc-skeleton-app/BasicMvcSample/BasicMvcSample.csproj -------------------------------------------------------------------------------- /box-aspnet-mvc-skeleton-app/BasicMvcSample/Content/Site.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/box/samples/HEAD/box-aspnet-mvc-skeleton-app/BasicMvcSample/Content/Site.css -------------------------------------------------------------------------------- /box-aspnet-mvc-skeleton-app/BasicMvcSample/Content/bootstrap-theme.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/box/samples/HEAD/box-aspnet-mvc-skeleton-app/BasicMvcSample/Content/bootstrap-theme.css -------------------------------------------------------------------------------- /box-aspnet-mvc-skeleton-app/BasicMvcSample/Content/bootstrap-theme.css.map: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/box/samples/HEAD/box-aspnet-mvc-skeleton-app/BasicMvcSample/Content/bootstrap-theme.css.map -------------------------------------------------------------------------------- /box-aspnet-mvc-skeleton-app/BasicMvcSample/Content/bootstrap-theme.min.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/box/samples/HEAD/box-aspnet-mvc-skeleton-app/BasicMvcSample/Content/bootstrap-theme.min.css -------------------------------------------------------------------------------- /box-aspnet-mvc-skeleton-app/BasicMvcSample/Content/bootstrap.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/box/samples/HEAD/box-aspnet-mvc-skeleton-app/BasicMvcSample/Content/bootstrap.css -------------------------------------------------------------------------------- /box-aspnet-mvc-skeleton-app/BasicMvcSample/Content/bootstrap.css.map: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/box/samples/HEAD/box-aspnet-mvc-skeleton-app/BasicMvcSample/Content/bootstrap.css.map -------------------------------------------------------------------------------- /box-aspnet-mvc-skeleton-app/BasicMvcSample/Content/bootstrap.min.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/box/samples/HEAD/box-aspnet-mvc-skeleton-app/BasicMvcSample/Content/bootstrap.min.css -------------------------------------------------------------------------------- /box-aspnet-mvc-skeleton-app/BasicMvcSample/Controllers/AccountController.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/box/samples/HEAD/box-aspnet-mvc-skeleton-app/BasicMvcSample/Controllers/AccountController.cs -------------------------------------------------------------------------------- /box-aspnet-mvc-skeleton-app/BasicMvcSample/Controllers/AppController.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/box/samples/HEAD/box-aspnet-mvc-skeleton-app/BasicMvcSample/Controllers/AppController.cs -------------------------------------------------------------------------------- /box-aspnet-mvc-skeleton-app/BasicMvcSample/Controllers/Auth0AccountController.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/box/samples/HEAD/box-aspnet-mvc-skeleton-app/BasicMvcSample/Controllers/Auth0AccountController.cs -------------------------------------------------------------------------------- /box-aspnet-mvc-skeleton-app/BasicMvcSample/Controllers/HomeController.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/box/samples/HEAD/box-aspnet-mvc-skeleton-app/BasicMvcSample/Controllers/HomeController.cs -------------------------------------------------------------------------------- /box-aspnet-mvc-skeleton-app/BasicMvcSample/Global.asax: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/box/samples/HEAD/box-aspnet-mvc-skeleton-app/BasicMvcSample/Global.asax -------------------------------------------------------------------------------- /box-aspnet-mvc-skeleton-app/BasicMvcSample/Global.asax.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/box/samples/HEAD/box-aspnet-mvc-skeleton-app/BasicMvcSample/Global.asax.cs -------------------------------------------------------------------------------- /box-aspnet-mvc-skeleton-app/BasicMvcSample/Helpers/BoxHelper.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/box/samples/HEAD/box-aspnet-mvc-skeleton-app/BasicMvcSample/Helpers/BoxHelper.cs -------------------------------------------------------------------------------- /box-aspnet-mvc-skeleton-app/BasicMvcSample/Helpers/CacheHelper.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/box/samples/HEAD/box-aspnet-mvc-skeleton-app/BasicMvcSample/Helpers/CacheHelper.cs -------------------------------------------------------------------------------- /box-aspnet-mvc-skeleton-app/BasicMvcSample/Project_Readme.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/box/samples/HEAD/box-aspnet-mvc-skeleton-app/BasicMvcSample/Project_Readme.html -------------------------------------------------------------------------------- /box-aspnet-mvc-skeleton-app/BasicMvcSample/Properties/AssemblyInfo.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/box/samples/HEAD/box-aspnet-mvc-skeleton-app/BasicMvcSample/Properties/AssemblyInfo.cs -------------------------------------------------------------------------------- /box-aspnet-mvc-skeleton-app/BasicMvcSample/Scripts/_references.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/box/samples/HEAD/box-aspnet-mvc-skeleton-app/BasicMvcSample/Scripts/_references.js -------------------------------------------------------------------------------- /box-aspnet-mvc-skeleton-app/BasicMvcSample/Scripts/bootstrap.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/box/samples/HEAD/box-aspnet-mvc-skeleton-app/BasicMvcSample/Scripts/bootstrap.js -------------------------------------------------------------------------------- /box-aspnet-mvc-skeleton-app/BasicMvcSample/Scripts/bootstrap.min.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/box/samples/HEAD/box-aspnet-mvc-skeleton-app/BasicMvcSample/Scripts/bootstrap.min.js -------------------------------------------------------------------------------- /box-aspnet-mvc-skeleton-app/BasicMvcSample/Scripts/jquery-2.1.3.intellisense.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/box/samples/HEAD/box-aspnet-mvc-skeleton-app/BasicMvcSample/Scripts/jquery-2.1.3.intellisense.js -------------------------------------------------------------------------------- /box-aspnet-mvc-skeleton-app/BasicMvcSample/Scripts/jquery-2.1.3.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/box/samples/HEAD/box-aspnet-mvc-skeleton-app/BasicMvcSample/Scripts/jquery-2.1.3.js -------------------------------------------------------------------------------- /box-aspnet-mvc-skeleton-app/BasicMvcSample/Scripts/jquery-2.1.3.min.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/box/samples/HEAD/box-aspnet-mvc-skeleton-app/BasicMvcSample/Scripts/jquery-2.1.3.min.js -------------------------------------------------------------------------------- /box-aspnet-mvc-skeleton-app/BasicMvcSample/Scripts/jquery-2.1.3.min.map: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/box/samples/HEAD/box-aspnet-mvc-skeleton-app/BasicMvcSample/Scripts/jquery-2.1.3.min.map -------------------------------------------------------------------------------- /box-aspnet-mvc-skeleton-app/BasicMvcSample/Scripts/jquery.validate-vsdoc.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/box/samples/HEAD/box-aspnet-mvc-skeleton-app/BasicMvcSample/Scripts/jquery.validate-vsdoc.js -------------------------------------------------------------------------------- /box-aspnet-mvc-skeleton-app/BasicMvcSample/Scripts/jquery.validate.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/box/samples/HEAD/box-aspnet-mvc-skeleton-app/BasicMvcSample/Scripts/jquery.validate.js -------------------------------------------------------------------------------- /box-aspnet-mvc-skeleton-app/BasicMvcSample/Scripts/jquery.validate.min.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/box/samples/HEAD/box-aspnet-mvc-skeleton-app/BasicMvcSample/Scripts/jquery.validate.min.js -------------------------------------------------------------------------------- /box-aspnet-mvc-skeleton-app/BasicMvcSample/Scripts/jquery.validate.unobtrusive.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/box/samples/HEAD/box-aspnet-mvc-skeleton-app/BasicMvcSample/Scripts/jquery.validate.unobtrusive.js -------------------------------------------------------------------------------- /box-aspnet-mvc-skeleton-app/BasicMvcSample/Scripts/jquery.validate.unobtrusive.min.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/box/samples/HEAD/box-aspnet-mvc-skeleton-app/BasicMvcSample/Scripts/jquery.validate.unobtrusive.min.js -------------------------------------------------------------------------------- /box-aspnet-mvc-skeleton-app/BasicMvcSample/Scripts/modernizr-2.8.3.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/box/samples/HEAD/box-aspnet-mvc-skeleton-app/BasicMvcSample/Scripts/modernizr-2.8.3.js -------------------------------------------------------------------------------- /box-aspnet-mvc-skeleton-app/BasicMvcSample/Scripts/npm.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/box/samples/HEAD/box-aspnet-mvc-skeleton-app/BasicMvcSample/Scripts/npm.js -------------------------------------------------------------------------------- /box-aspnet-mvc-skeleton-app/BasicMvcSample/Scripts/respond.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/box/samples/HEAD/box-aspnet-mvc-skeleton-app/BasicMvcSample/Scripts/respond.js -------------------------------------------------------------------------------- /box-aspnet-mvc-skeleton-app/BasicMvcSample/Scripts/respond.matchmedia.addListener.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/box/samples/HEAD/box-aspnet-mvc-skeleton-app/BasicMvcSample/Scripts/respond.matchmedia.addListener.js -------------------------------------------------------------------------------- /box-aspnet-mvc-skeleton-app/BasicMvcSample/Scripts/respond.matchmedia.addListener.min.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/box/samples/HEAD/box-aspnet-mvc-skeleton-app/BasicMvcSample/Scripts/respond.matchmedia.addListener.min.js -------------------------------------------------------------------------------- /box-aspnet-mvc-skeleton-app/BasicMvcSample/Scripts/respond.min.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/box/samples/HEAD/box-aspnet-mvc-skeleton-app/BasicMvcSample/Scripts/respond.min.js -------------------------------------------------------------------------------- /box-aspnet-mvc-skeleton-app/BasicMvcSample/Startup.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/box/samples/HEAD/box-aspnet-mvc-skeleton-app/BasicMvcSample/Startup.cs -------------------------------------------------------------------------------- /box-aspnet-mvc-skeleton-app/BasicMvcSample/Views/Account/Login.cshtml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/box/samples/HEAD/box-aspnet-mvc-skeleton-app/BasicMvcSample/Views/Account/Login.cshtml -------------------------------------------------------------------------------- /box-aspnet-mvc-skeleton-app/BasicMvcSample/Views/App/Doc.cshtml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/box/samples/HEAD/box-aspnet-mvc-skeleton-app/BasicMvcSample/Views/App/Doc.cshtml -------------------------------------------------------------------------------- /box-aspnet-mvc-skeleton-app/BasicMvcSample/Views/App/Index.cshtml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/box/samples/HEAD/box-aspnet-mvc-skeleton-app/BasicMvcSample/Views/App/Index.cshtml -------------------------------------------------------------------------------- /box-aspnet-mvc-skeleton-app/BasicMvcSample/Views/Home/About.cshtml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/box/samples/HEAD/box-aspnet-mvc-skeleton-app/BasicMvcSample/Views/Home/About.cshtml -------------------------------------------------------------------------------- /box-aspnet-mvc-skeleton-app/BasicMvcSample/Views/Home/Contact.cshtml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/box/samples/HEAD/box-aspnet-mvc-skeleton-app/BasicMvcSample/Views/Home/Contact.cshtml -------------------------------------------------------------------------------- /box-aspnet-mvc-skeleton-app/BasicMvcSample/Views/Home/Index.cshtml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/box/samples/HEAD/box-aspnet-mvc-skeleton-app/BasicMvcSample/Views/Home/Index.cshtml -------------------------------------------------------------------------------- /box-aspnet-mvc-skeleton-app/BasicMvcSample/Views/Shared/Error.cshtml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/box/samples/HEAD/box-aspnet-mvc-skeleton-app/BasicMvcSample/Views/Shared/Error.cshtml -------------------------------------------------------------------------------- /box-aspnet-mvc-skeleton-app/BasicMvcSample/Views/Shared/_Layout.cshtml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/box/samples/HEAD/box-aspnet-mvc-skeleton-app/BasicMvcSample/Views/Shared/_Layout.cshtml -------------------------------------------------------------------------------- /box-aspnet-mvc-skeleton-app/BasicMvcSample/Views/Shared/_LoginPartial.cshtml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/box/samples/HEAD/box-aspnet-mvc-skeleton-app/BasicMvcSample/Views/Shared/_LoginPartial.cshtml -------------------------------------------------------------------------------- /box-aspnet-mvc-skeleton-app/BasicMvcSample/Views/Web.config: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/box/samples/HEAD/box-aspnet-mvc-skeleton-app/BasicMvcSample/Views/Web.config -------------------------------------------------------------------------------- /box-aspnet-mvc-skeleton-app/BasicMvcSample/Views/_ViewStart.cshtml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/box/samples/HEAD/box-aspnet-mvc-skeleton-app/BasicMvcSample/Views/_ViewStart.cshtml -------------------------------------------------------------------------------- /box-aspnet-mvc-skeleton-app/BasicMvcSample/Web.Debug.config: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/box/samples/HEAD/box-aspnet-mvc-skeleton-app/BasicMvcSample/Web.Debug.config -------------------------------------------------------------------------------- /box-aspnet-mvc-skeleton-app/BasicMvcSample/Web.Release.config: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/box/samples/HEAD/box-aspnet-mvc-skeleton-app/BasicMvcSample/Web.Release.config -------------------------------------------------------------------------------- /box-aspnet-mvc-skeleton-app/BasicMvcSample/Web.config: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/box/samples/HEAD/box-aspnet-mvc-skeleton-app/BasicMvcSample/Web.config -------------------------------------------------------------------------------- /box-aspnet-mvc-skeleton-app/BasicMvcSample/favicon.ico: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/box/samples/HEAD/box-aspnet-mvc-skeleton-app/BasicMvcSample/favicon.ico -------------------------------------------------------------------------------- /box-aspnet-mvc-skeleton-app/BasicMvcSample/fonts/glyphicons-halflings-regular.eot: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/box/samples/HEAD/box-aspnet-mvc-skeleton-app/BasicMvcSample/fonts/glyphicons-halflings-regular.eot -------------------------------------------------------------------------------- /box-aspnet-mvc-skeleton-app/BasicMvcSample/fonts/glyphicons-halflings-regular.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/box/samples/HEAD/box-aspnet-mvc-skeleton-app/BasicMvcSample/fonts/glyphicons-halflings-regular.svg -------------------------------------------------------------------------------- /box-aspnet-mvc-skeleton-app/BasicMvcSample/fonts/glyphicons-halflings-regular.ttf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/box/samples/HEAD/box-aspnet-mvc-skeleton-app/BasicMvcSample/fonts/glyphicons-halflings-regular.ttf -------------------------------------------------------------------------------- /box-aspnet-mvc-skeleton-app/BasicMvcSample/fonts/glyphicons-halflings-regular.woff: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/box/samples/HEAD/box-aspnet-mvc-skeleton-app/BasicMvcSample/fonts/glyphicons-halflings-regular.woff -------------------------------------------------------------------------------- /box-aspnet-mvc-skeleton-app/BasicMvcSample/fonts/glyphicons-halflings-regular.woff2: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/box/samples/HEAD/box-aspnet-mvc-skeleton-app/BasicMvcSample/fonts/glyphicons-halflings-regular.woff2 -------------------------------------------------------------------------------- /box-aspnet-mvc-skeleton-app/BasicMvcSample/packages.config: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/box/samples/HEAD/box-aspnet-mvc-skeleton-app/BasicMvcSample/packages.config -------------------------------------------------------------------------------- /box-aspnet-mvc-skeleton-app/LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/box/samples/HEAD/box-aspnet-mvc-skeleton-app/LICENSE -------------------------------------------------------------------------------- /box-aspnet-mvc-skeleton-app/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/box/samples/HEAD/box-aspnet-mvc-skeleton-app/README.md -------------------------------------------------------------------------------- /box-auth0-angular1-skeleton-app-sample/.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/box/samples/HEAD/box-auth0-angular1-skeleton-app-sample/.gitignore -------------------------------------------------------------------------------- /box-auth0-angular1-skeleton-app-sample/LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/box/samples/HEAD/box-auth0-angular1-skeleton-app-sample/LICENSE -------------------------------------------------------------------------------- /box-auth0-angular1-skeleton-app-sample/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/box/samples/HEAD/box-auth0-angular1-skeleton-app-sample/README.md -------------------------------------------------------------------------------- /box-auth0-angular1-skeleton-app-sample/app.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/box/samples/HEAD/box-auth0-angular1-skeleton-app-sample/app.js -------------------------------------------------------------------------------- /box-auth0-angular1-skeleton-app-sample/bin/www: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/box/samples/HEAD/box-auth0-angular1-skeleton-app-sample/bin/www -------------------------------------------------------------------------------- /box-auth0-angular1-skeleton-app-sample/package.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/box/samples/HEAD/box-auth0-angular1-skeleton-app-sample/package.json -------------------------------------------------------------------------------- /box-auth0-angular1-skeleton-app-sample/public/assets/app.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/box/samples/HEAD/box-auth0-angular1-skeleton-app-sample/public/assets/app.css -------------------------------------------------------------------------------- /box-auth0-angular1-skeleton-app-sample/public/assets/svg/avatar-1.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/box/samples/HEAD/box-auth0-angular1-skeleton-app-sample/public/assets/svg/avatar-1.svg -------------------------------------------------------------------------------- /box-auth0-angular1-skeleton-app-sample/public/assets/svg/avatar-4.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/box/samples/HEAD/box-auth0-angular1-skeleton-app-sample/public/assets/svg/avatar-4.svg -------------------------------------------------------------------------------- /box-auth0-angular1-skeleton-app-sample/public/assets/svg/avatars.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/box/samples/HEAD/box-auth0-angular1-skeleton-app-sample/public/assets/svg/avatars.svg -------------------------------------------------------------------------------- /box-auth0-angular1-skeleton-app-sample/public/assets/svg/google_plus.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/box/samples/HEAD/box-auth0-angular1-skeleton-app-sample/public/assets/svg/google_plus.svg -------------------------------------------------------------------------------- /box-auth0-angular1-skeleton-app-sample/public/assets/svg/hangouts.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/box/samples/HEAD/box-auth0-angular1-skeleton-app-sample/public/assets/svg/hangouts.svg -------------------------------------------------------------------------------- /box-auth0-angular1-skeleton-app-sample/public/assets/svg/mail.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/box/samples/HEAD/box-auth0-angular1-skeleton-app-sample/public/assets/svg/mail.svg -------------------------------------------------------------------------------- /box-auth0-angular1-skeleton-app-sample/public/assets/svg/menu.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/box/samples/HEAD/box-auth0-angular1-skeleton-app-sample/public/assets/svg/menu.svg -------------------------------------------------------------------------------- /box-auth0-angular1-skeleton-app-sample/public/assets/svg/phone.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/box/samples/HEAD/box-auth0-angular1-skeleton-app-sample/public/assets/svg/phone.svg -------------------------------------------------------------------------------- /box-auth0-angular1-skeleton-app-sample/public/assets/svg/share.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/box/samples/HEAD/box-auth0-angular1-skeleton-app-sample/public/assets/svg/share.svg -------------------------------------------------------------------------------- /box-auth0-angular1-skeleton-app-sample/public/assets/svg/twitter.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/box/samples/HEAD/box-auth0-angular1-skeleton-app-sample/public/assets/svg/twitter.svg -------------------------------------------------------------------------------- /box-auth0-angular1-skeleton-app-sample/public/js/app-config.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/box/samples/HEAD/box-auth0-angular1-skeleton-app-sample/public/js/app-config.js -------------------------------------------------------------------------------- /box-auth0-angular1-skeleton-app-sample/public/js/app-constants.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/box/samples/HEAD/box-auth0-angular1-skeleton-app-sample/public/js/app-constants.js -------------------------------------------------------------------------------- /box-auth0-angular1-skeleton-app-sample/public/js/app.controller.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/box/samples/HEAD/box-auth0-angular1-skeleton-app-sample/public/js/app.controller.js -------------------------------------------------------------------------------- /box-auth0-angular1-skeleton-app-sample/public/js/app.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/box/samples/HEAD/box-auth0-angular1-skeleton-app-sample/public/js/app.css -------------------------------------------------------------------------------- /box-auth0-angular1-skeleton-app-sample/public/js/app.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/box/samples/HEAD/box-auth0-angular1-skeleton-app-sample/public/js/app.js -------------------------------------------------------------------------------- /box-auth0-angular1-skeleton-app-sample/public/js/app.run.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/box/samples/HEAD/box-auth0-angular1-skeleton-app-sample/public/js/app.run.js -------------------------------------------------------------------------------- /box-auth0-angular1-skeleton-app-sample/public/js/components/loading/loading.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/box/samples/HEAD/box-auth0-angular1-skeleton-app-sample/public/js/components/loading/loading.html -------------------------------------------------------------------------------- /box-auth0-angular1-skeleton-app-sample/public/js/components/previewModal/previewModal.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/box/samples/HEAD/box-auth0-angular1-skeleton-app-sample/public/js/components/previewModal/previewModal.css -------------------------------------------------------------------------------- /box-auth0-angular1-skeleton-app-sample/public/js/components/previewModal/previewModal.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/box/samples/HEAD/box-auth0-angular1-skeleton-app-sample/public/js/components/previewModal/previewModal.html -------------------------------------------------------------------------------- /box-auth0-angular1-skeleton-app-sample/public/js/components/toolbar/toolbar.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/box/samples/HEAD/box-auth0-angular1-skeleton-app-sample/public/js/components/toolbar/toolbar.html -------------------------------------------------------------------------------- /box-auth0-angular1-skeleton-app-sample/public/js/components/toolbar/toolbar.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/box/samples/HEAD/box-auth0-angular1-skeleton-app-sample/public/js/components/toolbar/toolbar.js -------------------------------------------------------------------------------- /box-auth0-angular1-skeleton-app-sample/public/js/components/upload/upload.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/box/samples/HEAD/box-auth0-angular1-skeleton-app-sample/public/js/components/upload/upload.html -------------------------------------------------------------------------------- /box-auth0-angular1-skeleton-app-sample/public/js/home/home.css: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /box-auth0-angular1-skeleton-app-sample/public/js/home/home.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/box/samples/HEAD/box-auth0-angular1-skeleton-app-sample/public/js/home/home.html -------------------------------------------------------------------------------- /box-auth0-angular1-skeleton-app-sample/public/js/home/home.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/box/samples/HEAD/box-auth0-angular1-skeleton-app-sample/public/js/home/home.js -------------------------------------------------------------------------------- /box-auth0-angular1-skeleton-app-sample/public/js/libs/BoxSdk.map: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/box/samples/HEAD/box-auth0-angular1-skeleton-app-sample/public/js/libs/BoxSdk.map -------------------------------------------------------------------------------- /box-auth0-angular1-skeleton-app-sample/public/js/libs/BoxSdk.min.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/box/samples/HEAD/box-auth0-angular1-skeleton-app-sample/public/js/libs/BoxSdk.min.js -------------------------------------------------------------------------------- /box-auth0-angular1-skeleton-app-sample/public/js/libs/angular-auth0.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/box/samples/HEAD/box-auth0-angular1-skeleton-app-sample/public/js/libs/angular-auth0.js -------------------------------------------------------------------------------- /box-auth0-angular1-skeleton-app-sample/public/js/package.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/box/samples/HEAD/box-auth0-angular1-skeleton-app-sample/public/js/package.json -------------------------------------------------------------------------------- /box-auth0-angular1-skeleton-app-sample/public/js/services/authenticate.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/box/samples/HEAD/box-auth0-angular1-skeleton-app-sample/public/js/services/authenticate.js -------------------------------------------------------------------------------- /box-auth0-angular1-skeleton-app-sample/public/js/services/boxApiService.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/box/samples/HEAD/box-auth0-angular1-skeleton-app-sample/public/js/services/boxApiService.js -------------------------------------------------------------------------------- /box-auth0-angular1-skeleton-app-sample/public/js/services/boxTokenService.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/box/samples/HEAD/box-auth0-angular1-skeleton-app-sample/public/js/services/boxTokenService.js -------------------------------------------------------------------------------- /box-auth0-angular1-skeleton-app-sample/public/js/splash/splash.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/box/samples/HEAD/box-auth0-angular1-skeleton-app-sample/public/js/splash/splash.html -------------------------------------------------------------------------------- /box-auth0-angular1-skeleton-app-sample/routes/index.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/box/samples/HEAD/box-auth0-angular1-skeleton-app-sample/routes/index.js -------------------------------------------------------------------------------- /box-auth0-angular1-skeleton-app-sample/views/error.ejs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/box/samples/HEAD/box-auth0-angular1-skeleton-app-sample/views/error.ejs -------------------------------------------------------------------------------- /box-auth0-angular1-skeleton-app-sample/views/index.ejs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/box/samples/HEAD/box-auth0-angular1-skeleton-app-sample/views/index.ejs -------------------------------------------------------------------------------- /box-auth0-angular2-skeleton-app-sample/.angular-cli.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/box/samples/HEAD/box-auth0-angular2-skeleton-app-sample/.angular-cli.json -------------------------------------------------------------------------------- /box-auth0-angular2-skeleton-app-sample/.editorconfig: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/box/samples/HEAD/box-auth0-angular2-skeleton-app-sample/.editorconfig -------------------------------------------------------------------------------- /box-auth0-angular2-skeleton-app-sample/.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/box/samples/HEAD/box-auth0-angular2-skeleton-app-sample/.gitignore -------------------------------------------------------------------------------- /box-auth0-angular2-skeleton-app-sample/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/box/samples/HEAD/box-auth0-angular2-skeleton-app-sample/README.md -------------------------------------------------------------------------------- /box-auth0-angular2-skeleton-app-sample/e2e/app.e2e-spec.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/box/samples/HEAD/box-auth0-angular2-skeleton-app-sample/e2e/app.e2e-spec.ts -------------------------------------------------------------------------------- /box-auth0-angular2-skeleton-app-sample/e2e/app.po.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/box/samples/HEAD/box-auth0-angular2-skeleton-app-sample/e2e/app.po.ts -------------------------------------------------------------------------------- /box-auth0-angular2-skeleton-app-sample/e2e/tsconfig.e2e.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/box/samples/HEAD/box-auth0-angular2-skeleton-app-sample/e2e/tsconfig.e2e.json -------------------------------------------------------------------------------- /box-auth0-angular2-skeleton-app-sample/karma.conf.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/box/samples/HEAD/box-auth0-angular2-skeleton-app-sample/karma.conf.js -------------------------------------------------------------------------------- /box-auth0-angular2-skeleton-app-sample/package.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/box/samples/HEAD/box-auth0-angular2-skeleton-app-sample/package.json -------------------------------------------------------------------------------- /box-auth0-angular2-skeleton-app-sample/protractor.conf.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/box/samples/HEAD/box-auth0-angular2-skeleton-app-sample/protractor.conf.js -------------------------------------------------------------------------------- /box-auth0-angular2-skeleton-app-sample/src/app/app-routing.module.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/box/samples/HEAD/box-auth0-angular2-skeleton-app-sample/src/app/app-routing.module.ts -------------------------------------------------------------------------------- /box-auth0-angular2-skeleton-app-sample/src/app/app.module.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/box/samples/HEAD/box-auth0-angular2-skeleton-app-sample/src/app/app.module.ts -------------------------------------------------------------------------------- /box-auth0-angular2-skeleton-app-sample/src/app/components/add-new-folder/add-new-folder.component.css: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /box-auth0-angular2-skeleton-app-sample/src/app/components/app-view/app-view.component.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/box/samples/HEAD/box-auth0-angular2-skeleton-app-sample/src/app/components/app-view/app-view.component.css -------------------------------------------------------------------------------- /box-auth0-angular2-skeleton-app-sample/src/app/components/app-view/app-view.component.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/box/samples/HEAD/box-auth0-angular2-skeleton-app-sample/src/app/components/app-view/app-view.component.html -------------------------------------------------------------------------------- /box-auth0-angular2-skeleton-app-sample/src/app/components/app-view/app-view.component.spec.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/box/samples/HEAD/box-auth0-angular2-skeleton-app-sample/src/app/components/app-view/app-view.component.spec.ts -------------------------------------------------------------------------------- /box-auth0-angular2-skeleton-app-sample/src/app/components/app-view/app-view.component.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/box/samples/HEAD/box-auth0-angular2-skeleton-app-sample/src/app/components/app-view/app-view.component.ts -------------------------------------------------------------------------------- /box-auth0-angular2-skeleton-app-sample/src/app/components/box-explorer/box-explorer.component.css: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /box-auth0-angular2-skeleton-app-sample/src/app/components/callback/callback.component.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/box/samples/HEAD/box-auth0-angular2-skeleton-app-sample/src/app/components/callback/callback.component.css -------------------------------------------------------------------------------- /box-auth0-angular2-skeleton-app-sample/src/app/components/callback/callback.component.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/box/samples/HEAD/box-auth0-angular2-skeleton-app-sample/src/app/components/callback/callback.component.html -------------------------------------------------------------------------------- /box-auth0-angular2-skeleton-app-sample/src/app/components/callback/callback.component.spec.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/box/samples/HEAD/box-auth0-angular2-skeleton-app-sample/src/app/components/callback/callback.component.spec.ts -------------------------------------------------------------------------------- /box-auth0-angular2-skeleton-app-sample/src/app/components/callback/callback.component.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/box/samples/HEAD/box-auth0-angular2-skeleton-app-sample/src/app/components/callback/callback.component.ts -------------------------------------------------------------------------------- /box-auth0-angular2-skeleton-app-sample/src/app/components/file-detail-view/file-detail-view.component.css: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /box-auth0-angular2-skeleton-app-sample/src/app/components/file-upload/file-upload.component.css: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /box-auth0-angular2-skeleton-app-sample/src/app/components/file-view/file-view.component.css: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /box-auth0-angular2-skeleton-app-sample/src/app/components/file-view/file-view.component.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/box/samples/HEAD/box-auth0-angular2-skeleton-app-sample/src/app/components/file-view/file-view.component.html -------------------------------------------------------------------------------- /box-auth0-angular2-skeleton-app-sample/src/app/components/file-view/file-view.component.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/box/samples/HEAD/box-auth0-angular2-skeleton-app-sample/src/app/components/file-view/file-view.component.ts -------------------------------------------------------------------------------- /box-auth0-angular2-skeleton-app-sample/src/app/components/folder-path/folder-path.component.css: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /box-auth0-angular2-skeleton-app-sample/src/app/components/folder-view/folder-view.component.css: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /box-auth0-angular2-skeleton-app-sample/src/app/components/preview-modal/preview-modal.component.css: -------------------------------------------------------------------------------- 1 | .boxPreviewSelector { 2 | height: 400px; 3 | } -------------------------------------------------------------------------------- /box-auth0-angular2-skeleton-app-sample/src/app/components/user-view/user-view.component.css: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /box-auth0-angular2-skeleton-app-sample/src/app/components/user-view/user-view.component.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/box/samples/HEAD/box-auth0-angular2-skeleton-app-sample/src/app/components/user-view/user-view.component.html -------------------------------------------------------------------------------- /box-auth0-angular2-skeleton-app-sample/src/app/components/user-view/user-view.component.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/box/samples/HEAD/box-auth0-angular2-skeleton-app-sample/src/app/components/user-view/user-view.component.ts -------------------------------------------------------------------------------- /box-auth0-angular2-skeleton-app-sample/src/app/components/welcome-view/welcome-view.component.css: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /box-auth0-angular2-skeleton-app-sample/src/app/config/auth/auth.config.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/box/samples/HEAD/box-auth0-angular2-skeleton-app-sample/src/app/config/auth/auth.config.ts -------------------------------------------------------------------------------- /box-auth0-angular2-skeleton-app-sample/src/app/config/box/box.config.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/box/samples/HEAD/box-auth0-angular2-skeleton-app-sample/src/app/config/box/box.config.ts -------------------------------------------------------------------------------- /box-auth0-angular2-skeleton-app-sample/src/app/models/box/box-create-folder.model.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/box/samples/HEAD/box-auth0-angular2-skeleton-app-sample/src/app/models/box/box-create-folder.model.ts -------------------------------------------------------------------------------- /box-auth0-angular2-skeleton-app-sample/src/app/models/box/box-file.model.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/box/samples/HEAD/box-auth0-angular2-skeleton-app-sample/src/app/models/box/box-file.model.ts -------------------------------------------------------------------------------- /box-auth0-angular2-skeleton-app-sample/src/app/models/box/box-folder.model.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/box/samples/HEAD/box-auth0-angular2-skeleton-app-sample/src/app/models/box/box-folder.model.ts -------------------------------------------------------------------------------- /box-auth0-angular2-skeleton-app-sample/src/app/models/box/box-item-collection.model.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/box/samples/HEAD/box-auth0-angular2-skeleton-app-sample/src/app/models/box/box-item-collection.model.ts -------------------------------------------------------------------------------- /box-auth0-angular2-skeleton-app-sample/src/app/models/box/box-item.model.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/box/samples/HEAD/box-auth0-angular2-skeleton-app-sample/src/app/models/box/box-item.model.ts -------------------------------------------------------------------------------- /box-auth0-angular2-skeleton-app-sample/src/app/models/box/box-user-stub.model.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/box/samples/HEAD/box-auth0-angular2-skeleton-app-sample/src/app/models/box/box-user-stub.model.ts -------------------------------------------------------------------------------- /box-auth0-angular2-skeleton-app-sample/src/app/services/auth/auth.guard.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/box/samples/HEAD/box-auth0-angular2-skeleton-app-sample/src/app/services/auth/auth.guard.ts -------------------------------------------------------------------------------- /box-auth0-angular2-skeleton-app-sample/src/app/services/auth/auth.service.spec.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/box/samples/HEAD/box-auth0-angular2-skeleton-app-sample/src/app/services/auth/auth.service.spec.ts -------------------------------------------------------------------------------- /box-auth0-angular2-skeleton-app-sample/src/app/services/auth/auth.service.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/box/samples/HEAD/box-auth0-angular2-skeleton-app-sample/src/app/services/auth/auth.service.ts -------------------------------------------------------------------------------- /box-auth0-angular2-skeleton-app-sample/src/app/services/box/box-client.service.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/box/samples/HEAD/box-auth0-angular2-skeleton-app-sample/src/app/services/box/box-client.service.ts -------------------------------------------------------------------------------- /box-auth0-angular2-skeleton-app-sample/src/app/services/box/box-file-service.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/box/samples/HEAD/box-auth0-angular2-skeleton-app-sample/src/app/services/box/box-file-service.ts -------------------------------------------------------------------------------- /box-auth0-angular2-skeleton-app-sample/src/app/services/box/box-folder-service.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/box/samples/HEAD/box-auth0-angular2-skeleton-app-sample/src/app/services/box/box-folder-service.ts -------------------------------------------------------------------------------- /box-auth0-angular2-skeleton-app-sample/src/assets/.gitkeep: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /box-auth0-angular2-skeleton-app-sample/src/assets/img/box_blue.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/box/samples/HEAD/box-auth0-angular2-skeleton-app-sample/src/assets/img/box_blue.png -------------------------------------------------------------------------------- /box-auth0-angular2-skeleton-app-sample/src/assets/loading.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/box/samples/HEAD/box-auth0-angular2-skeleton-app-sample/src/assets/loading.svg -------------------------------------------------------------------------------- /box-auth0-angular2-skeleton-app-sample/src/environments/environment.prod.ts: -------------------------------------------------------------------------------- 1 | export const environment = { 2 | production: true 3 | }; 4 | -------------------------------------------------------------------------------- /box-auth0-angular2-skeleton-app-sample/src/environments/environment.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/box/samples/HEAD/box-auth0-angular2-skeleton-app-sample/src/environments/environment.ts -------------------------------------------------------------------------------- /box-auth0-angular2-skeleton-app-sample/src/favicon.ico: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/box/samples/HEAD/box-auth0-angular2-skeleton-app-sample/src/favicon.ico -------------------------------------------------------------------------------- /box-auth0-angular2-skeleton-app-sample/src/index.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/box/samples/HEAD/box-auth0-angular2-skeleton-app-sample/src/index.html -------------------------------------------------------------------------------- /box-auth0-angular2-skeleton-app-sample/src/main.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/box/samples/HEAD/box-auth0-angular2-skeleton-app-sample/src/main.ts -------------------------------------------------------------------------------- /box-auth0-angular2-skeleton-app-sample/src/polyfills.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/box/samples/HEAD/box-auth0-angular2-skeleton-app-sample/src/polyfills.ts -------------------------------------------------------------------------------- /box-auth0-angular2-skeleton-app-sample/src/styles.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/box/samples/HEAD/box-auth0-angular2-skeleton-app-sample/src/styles.css -------------------------------------------------------------------------------- /box-auth0-angular2-skeleton-app-sample/src/test.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/box/samples/HEAD/box-auth0-angular2-skeleton-app-sample/src/test.ts -------------------------------------------------------------------------------- /box-auth0-angular2-skeleton-app-sample/src/tsconfig.app.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/box/samples/HEAD/box-auth0-angular2-skeleton-app-sample/src/tsconfig.app.json -------------------------------------------------------------------------------- /box-auth0-angular2-skeleton-app-sample/src/tsconfig.spec.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/box/samples/HEAD/box-auth0-angular2-skeleton-app-sample/src/tsconfig.spec.json -------------------------------------------------------------------------------- /box-auth0-angular2-skeleton-app-sample/src/typings.d.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/box/samples/HEAD/box-auth0-angular2-skeleton-app-sample/src/typings.d.ts -------------------------------------------------------------------------------- /box-auth0-angular2-skeleton-app-sample/tsconfig.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/box/samples/HEAD/box-auth0-angular2-skeleton-app-sample/tsconfig.json -------------------------------------------------------------------------------- /box-auth0-angular2-skeleton-app-sample/tslint.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/box/samples/HEAD/box-auth0-angular2-skeleton-app-sample/tslint.json -------------------------------------------------------------------------------- /box-auth0-angular2-skeleton-app-sample/yarn.lock: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/box/samples/HEAD/box-auth0-angular2-skeleton-app-sample/yarn.lock -------------------------------------------------------------------------------- /box-auth0-swift-skeleton-app-sample/.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/box/samples/HEAD/box-auth0-swift-skeleton-app-sample/.gitignore -------------------------------------------------------------------------------- /box-auth0-swift-skeleton-app-sample/BoxPlatformSample.xcodeproj/project.pbxproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/box/samples/HEAD/box-auth0-swift-skeleton-app-sample/BoxPlatformSample.xcodeproj/project.pbxproj -------------------------------------------------------------------------------- /box-auth0-swift-skeleton-app-sample/BoxPlatformSample/AppDelegate.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/box/samples/HEAD/box-auth0-swift-skeleton-app-sample/BoxPlatformSample/AppDelegate.swift -------------------------------------------------------------------------------- /box-auth0-swift-skeleton-app-sample/BoxPlatformSample/Auth0.plist: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/box/samples/HEAD/box-auth0-swift-skeleton-app-sample/BoxPlatformSample/Auth0.plist -------------------------------------------------------------------------------- /box-auth0-swift-skeleton-app-sample/BoxPlatformSample/Base.lproj/LaunchScreen.storyboard: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/box/samples/HEAD/box-auth0-swift-skeleton-app-sample/BoxPlatformSample/Base.lproj/LaunchScreen.storyboard -------------------------------------------------------------------------------- /box-auth0-swift-skeleton-app-sample/BoxPlatformSample/Base.lproj/Main.storyboard: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/box/samples/HEAD/box-auth0-swift-skeleton-app-sample/BoxPlatformSample/Base.lproj/Main.storyboard -------------------------------------------------------------------------------- /box-auth0-swift-skeleton-app-sample/BoxPlatformSample/BoxAccessTokenDelegate.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/box/samples/HEAD/box-auth0-swift-skeleton-app-sample/BoxPlatformSample/BoxAccessTokenDelegate.swift -------------------------------------------------------------------------------- /box-auth0-swift-skeleton-app-sample/BoxPlatformSample/HomeViewController.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/box/samples/HEAD/box-auth0-swift-skeleton-app-sample/BoxPlatformSample/HomeViewController.swift -------------------------------------------------------------------------------- /box-auth0-swift-skeleton-app-sample/BoxPlatformSample/Info.plist: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/box/samples/HEAD/box-auth0-swift-skeleton-app-sample/BoxPlatformSample/Info.plist -------------------------------------------------------------------------------- /box-auth0-swift-skeleton-app-sample/BoxPlatformSample/ProfileViewController.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/box/samples/HEAD/box-auth0-swift-skeleton-app-sample/BoxPlatformSample/ProfileViewController.swift -------------------------------------------------------------------------------- /box-auth0-swift-skeleton-app-sample/BoxPlatformSample/SessionManager.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/box/samples/HEAD/box-auth0-swift-skeleton-app-sample/BoxPlatformSample/SessionManager.swift -------------------------------------------------------------------------------- /box-auth0-swift-skeleton-app-sample/BoxPlatformSample/UIAlertControllerExtension.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/box/samples/HEAD/box-auth0-swift-skeleton-app-sample/BoxPlatformSample/UIAlertControllerExtension.swift -------------------------------------------------------------------------------- /box-auth0-swift-skeleton-app-sample/BoxPlatformSampleTests/BoxPlatformSampleTests.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/box/samples/HEAD/box-auth0-swift-skeleton-app-sample/BoxPlatformSampleTests/BoxPlatformSampleTests.swift -------------------------------------------------------------------------------- /box-auth0-swift-skeleton-app-sample/BoxPlatformSampleTests/Info.plist: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/box/samples/HEAD/box-auth0-swift-skeleton-app-sample/BoxPlatformSampleTests/Info.plist -------------------------------------------------------------------------------- /box-auth0-swift-skeleton-app-sample/BoxPlatformSampleUITests/BoxPlatformSampleUITests.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/box/samples/HEAD/box-auth0-swift-skeleton-app-sample/BoxPlatformSampleUITests/BoxPlatformSampleUITests.swift -------------------------------------------------------------------------------- /box-auth0-swift-skeleton-app-sample/BoxPlatformSampleUITests/Info.plist: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/box/samples/HEAD/box-auth0-swift-skeleton-app-sample/BoxPlatformSampleUITests/Info.plist -------------------------------------------------------------------------------- /box-auth0-swift-skeleton-app-sample/Cartfile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/box/samples/HEAD/box-auth0-swift-skeleton-app-sample/Cartfile -------------------------------------------------------------------------------- /box-auth0-swift-skeleton-app-sample/Cartfile.resolved: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/box/samples/HEAD/box-auth0-swift-skeleton-app-sample/Cartfile.resolved -------------------------------------------------------------------------------- /box-auth0-swift-skeleton-app-sample/Carthage/Checkouts/Auth0.swift/.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/box/samples/HEAD/box-auth0-swift-skeleton-app-sample/Carthage/Checkouts/Auth0.swift/.gitignore -------------------------------------------------------------------------------- /box-auth0-swift-skeleton-app-sample/Carthage/Checkouts/Auth0.swift/.ruby-version: -------------------------------------------------------------------------------- 1 | ruby-2.3.1 2 | -------------------------------------------------------------------------------- /box-auth0-swift-skeleton-app-sample/Carthage/Checkouts/Auth0.swift/.swift-version: -------------------------------------------------------------------------------- 1 | 3.2 2 | -------------------------------------------------------------------------------- /box-auth0-swift-skeleton-app-sample/Carthage/Checkouts/Auth0.swift/.swiftlint.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/box/samples/HEAD/box-auth0-swift-skeleton-app-sample/Carthage/Checkouts/Auth0.swift/.swiftlint.yml -------------------------------------------------------------------------------- /box-auth0-swift-skeleton-app-sample/Carthage/Checkouts/Auth0.swift/App/AppDelegate.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/box/samples/HEAD/box-auth0-swift-skeleton-app-sample/Carthage/Checkouts/Auth0.swift/App/AppDelegate.swift -------------------------------------------------------------------------------- /box-auth0-swift-skeleton-app-sample/Carthage/Checkouts/Auth0.swift/App/Info.plist: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/box/samples/HEAD/box-auth0-swift-skeleton-app-sample/Carthage/Checkouts/Auth0.swift/App/Info.plist -------------------------------------------------------------------------------- /box-auth0-swift-skeleton-app-sample/Carthage/Checkouts/Auth0.swift/App/ViewController.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/box/samples/HEAD/box-auth0-swift-skeleton-app-sample/Carthage/Checkouts/Auth0.swift/App/ViewController.swift -------------------------------------------------------------------------------- /box-auth0-swift-skeleton-app-sample/Carthage/Checkouts/Auth0.swift/Auth0.podspec: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/box/samples/HEAD/box-auth0-swift-skeleton-app-sample/Carthage/Checkouts/Auth0.swift/Auth0.podspec -------------------------------------------------------------------------------- /box-auth0-swift-skeleton-app-sample/Carthage/Checkouts/Auth0.swift/Auth0/Auth0.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/box/samples/HEAD/box-auth0-swift-skeleton-app-sample/Carthage/Checkouts/Auth0.swift/Auth0/Auth0.h -------------------------------------------------------------------------------- /box-auth0-swift-skeleton-app-sample/Carthage/Checkouts/Auth0.swift/Auth0/Auth0.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/box/samples/HEAD/box-auth0-swift-skeleton-app-sample/Carthage/Checkouts/Auth0.swift/Auth0/Auth0.swift -------------------------------------------------------------------------------- /box-auth0-swift-skeleton-app-sample/Carthage/Checkouts/Auth0.swift/Auth0/Auth0Error.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/box/samples/HEAD/box-auth0-swift-skeleton-app-sample/Carthage/Checkouts/Auth0.swift/Auth0/Auth0Error.swift -------------------------------------------------------------------------------- /box-auth0-swift-skeleton-app-sample/Carthage/Checkouts/Auth0.swift/Auth0/AuthProvider.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/box/samples/HEAD/box-auth0-swift-skeleton-app-sample/Carthage/Checkouts/Auth0.swift/Auth0/AuthProvider.swift -------------------------------------------------------------------------------- /box-auth0-swift-skeleton-app-sample/Carthage/Checkouts/Auth0.swift/Auth0/Authentication.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/box/samples/HEAD/box-auth0-swift-skeleton-app-sample/Carthage/Checkouts/Auth0.swift/Auth0/Authentication.swift -------------------------------------------------------------------------------- /box-auth0-swift-skeleton-app-sample/Carthage/Checkouts/Auth0.swift/Auth0/Credentials.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/box/samples/HEAD/box-auth0-swift-skeleton-app-sample/Carthage/Checkouts/Auth0.swift/Auth0/Credentials.swift -------------------------------------------------------------------------------- /box-auth0-swift-skeleton-app-sample/Carthage/Checkouts/Auth0.swift/Auth0/Date.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/box/samples/HEAD/box-auth0-swift-skeleton-app-sample/Carthage/Checkouts/Auth0.swift/Auth0/Date.swift -------------------------------------------------------------------------------- /box-auth0-swift-skeleton-app-sample/Carthage/Checkouts/Auth0.swift/Auth0/Handlers.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/box/samples/HEAD/box-auth0-swift-skeleton-app-sample/Carthage/Checkouts/Auth0.swift/Auth0/Handlers.swift -------------------------------------------------------------------------------- /box-auth0-swift-skeleton-app-sample/Carthage/Checkouts/Auth0.swift/Auth0/Identity.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/box/samples/HEAD/box-auth0-swift-skeleton-app-sample/Carthage/Checkouts/Auth0.swift/Auth0/Identity.swift -------------------------------------------------------------------------------- /box-auth0-swift-skeleton-app-sample/Carthage/Checkouts/Auth0.swift/Auth0/Info-tvOS.plist: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/box/samples/HEAD/box-auth0-swift-skeleton-app-sample/Carthage/Checkouts/Auth0.swift/Auth0/Info-tvOS.plist -------------------------------------------------------------------------------- /box-auth0-swift-skeleton-app-sample/Carthage/Checkouts/Auth0.swift/Auth0/Info.plist: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/box/samples/HEAD/box-auth0-swift-skeleton-app-sample/Carthage/Checkouts/Auth0.swift/Auth0/Info.plist -------------------------------------------------------------------------------- /box-auth0-swift-skeleton-app-sample/Carthage/Checkouts/Auth0.swift/Auth0/Loggable.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/box/samples/HEAD/box-auth0-swift-skeleton-app-sample/Carthage/Checkouts/Auth0.swift/Auth0/Loggable.swift -------------------------------------------------------------------------------- /box-auth0-swift-skeleton-app-sample/Carthage/Checkouts/Auth0.swift/Auth0/Logger.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/box/samples/HEAD/box-auth0-swift-skeleton-app-sample/Carthage/Checkouts/Auth0.swift/Auth0/Logger.swift -------------------------------------------------------------------------------- /box-auth0-swift-skeleton-app-sample/Carthage/Checkouts/Auth0.swift/Auth0/Management.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/box/samples/HEAD/box-auth0-swift-skeleton-app-sample/Carthage/Checkouts/Auth0.swift/Auth0/Management.swift -------------------------------------------------------------------------------- /box-auth0-swift-skeleton-app-sample/Carthage/Checkouts/Auth0.swift/Auth0/NSData+URLSafe.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/box/samples/HEAD/box-auth0-swift-skeleton-app-sample/Carthage/Checkouts/Auth0.swift/Auth0/NSData+URLSafe.swift -------------------------------------------------------------------------------- /box-auth0-swift-skeleton-app-sample/Carthage/Checkouts/Auth0.swift/Auth0/NSError+Helper.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/box/samples/HEAD/box-auth0-swift-skeleton-app-sample/Carthage/Checkouts/Auth0.swift/Auth0/NSError+Helper.swift -------------------------------------------------------------------------------- /box-auth0-swift-skeleton-app-sample/Carthage/Checkouts/Auth0.swift/Auth0/NSURL+Auth0.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/box/samples/HEAD/box-auth0-swift-skeleton-app-sample/Carthage/Checkouts/Auth0.swift/Auth0/NSURL+Auth0.swift -------------------------------------------------------------------------------- /box-auth0-swift-skeleton-app-sample/Carthage/Checkouts/Auth0.swift/Auth0/NativeAuth.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/box/samples/HEAD/box-auth0-swift-skeleton-app-sample/Carthage/Checkouts/Auth0.swift/Auth0/NativeAuth.swift -------------------------------------------------------------------------------- /box-auth0-swift-skeleton-app-sample/Carthage/Checkouts/Auth0.swift/Auth0/OAuth2Grant.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/box/samples/HEAD/box-auth0-swift-skeleton-app-sample/Carthage/Checkouts/Auth0.swift/Auth0/OAuth2Grant.swift -------------------------------------------------------------------------------- /box-auth0-swift-skeleton-app-sample/Carthage/Checkouts/Auth0.swift/Auth0/Profile.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/box/samples/HEAD/box-auth0-swift-skeleton-app-sample/Carthage/Checkouts/Auth0.swift/Auth0/Profile.swift -------------------------------------------------------------------------------- /box-auth0-swift-skeleton-app-sample/Carthage/Checkouts/Auth0.swift/Auth0/Request.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/box/samples/HEAD/box-auth0-swift-skeleton-app-sample/Carthage/Checkouts/Auth0.swift/Auth0/Request.swift -------------------------------------------------------------------------------- /box-auth0-swift-skeleton-app-sample/Carthage/Checkouts/Auth0.swift/Auth0/Requestable.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/box/samples/HEAD/box-auth0-swift-skeleton-app-sample/Carthage/Checkouts/Auth0.swift/Auth0/Requestable.swift -------------------------------------------------------------------------------- /box-auth0-swift-skeleton-app-sample/Carthage/Checkouts/Auth0.swift/Auth0/Response.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/box/samples/HEAD/box-auth0-swift-skeleton-app-sample/Carthage/Checkouts/Auth0.swift/Auth0/Response.swift -------------------------------------------------------------------------------- /box-auth0-swift-skeleton-app-sample/Carthage/Checkouts/Auth0.swift/Auth0/ResponseType.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/box/samples/HEAD/box-auth0-swift-skeleton-app-sample/Carthage/Checkouts/Auth0.swift/Auth0/ResponseType.swift -------------------------------------------------------------------------------- /box-auth0-swift-skeleton-app-sample/Carthage/Checkouts/Auth0.swift/Auth0/Result.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/box/samples/HEAD/box-auth0-swift-skeleton-app-sample/Carthage/Checkouts/Auth0.swift/Auth0/Result.swift -------------------------------------------------------------------------------- /box-auth0-swift-skeleton-app-sample/Carthage/Checkouts/Auth0.swift/Auth0/SafariSession.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/box/samples/HEAD/box-auth0-swift-skeleton-app-sample/Carthage/Checkouts/Auth0.swift/Auth0/SafariSession.swift -------------------------------------------------------------------------------- /box-auth0-swift-skeleton-app-sample/Carthage/Checkouts/Auth0.swift/Auth0/Telemetry.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/box/samples/HEAD/box-auth0-swift-skeleton-app-sample/Carthage/Checkouts/Auth0.swift/Auth0/Telemetry.swift -------------------------------------------------------------------------------- /box-auth0-swift-skeleton-app-sample/Carthage/Checkouts/Auth0.swift/Auth0/UserInfo.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/box/samples/HEAD/box-auth0-swift-skeleton-app-sample/Carthage/Checkouts/Auth0.swift/Auth0/UserInfo.swift -------------------------------------------------------------------------------- /box-auth0-swift-skeleton-app-sample/Carthage/Checkouts/Auth0.swift/Auth0/Users.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/box/samples/HEAD/box-auth0-swift-skeleton-app-sample/Carthage/Checkouts/Auth0.swift/Auth0/Users.swift -------------------------------------------------------------------------------- /box-auth0-swift-skeleton-app-sample/Carthage/Checkouts/Auth0.swift/Auth0/WebAuth.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/box/samples/HEAD/box-auth0-swift-skeleton-app-sample/Carthage/Checkouts/Auth0.swift/Auth0/WebAuth.swift -------------------------------------------------------------------------------- /box-auth0-swift-skeleton-app-sample/Carthage/Checkouts/Auth0.swift/Auth0Tests/Auth0.plist: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/box/samples/HEAD/box-auth0-swift-skeleton-app-sample/Carthage/Checkouts/Auth0.swift/Auth0Tests/Auth0.plist -------------------------------------------------------------------------------- /box-auth0-swift-skeleton-app-sample/Carthage/Checkouts/Auth0.swift/Auth0Tests/Info.plist: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/box/samples/HEAD/box-auth0-swift-skeleton-app-sample/Carthage/Checkouts/Auth0.swift/Auth0Tests/Info.plist -------------------------------------------------------------------------------- /box-auth0-swift-skeleton-app-sample/Carthage/Checkouts/Auth0.swift/CHANGELOG.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/box/samples/HEAD/box-auth0-swift-skeleton-app-sample/Carthage/Checkouts/Auth0.swift/CHANGELOG.md -------------------------------------------------------------------------------- /box-auth0-swift-skeleton-app-sample/Carthage/Checkouts/Auth0.swift/Cartfile: -------------------------------------------------------------------------------- 1 | github "auth0/SimpleKeychain" 2 | -------------------------------------------------------------------------------- /box-auth0-swift-skeleton-app-sample/Carthage/Checkouts/Auth0.swift/Cartfile.private: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/box/samples/HEAD/box-auth0-swift-skeleton-app-sample/Carthage/Checkouts/Auth0.swift/Cartfile.private -------------------------------------------------------------------------------- /box-auth0-swift-skeleton-app-sample/Carthage/Checkouts/Auth0.swift/Cartfile.resolved: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/box/samples/HEAD/box-auth0-swift-skeleton-app-sample/Carthage/Checkouts/Auth0.swift/Cartfile.resolved -------------------------------------------------------------------------------- /box-auth0-swift-skeleton-app-sample/Carthage/Checkouts/Auth0.swift/Gemfile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/box/samples/HEAD/box-auth0-swift-skeleton-app-sample/Carthage/Checkouts/Auth0.swift/Gemfile -------------------------------------------------------------------------------- /box-auth0-swift-skeleton-app-sample/Carthage/Checkouts/Auth0.swift/Gemfile.lock: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/box/samples/HEAD/box-auth0-swift-skeleton-app-sample/Carthage/Checkouts/Auth0.swift/Gemfile.lock -------------------------------------------------------------------------------- /box-auth0-swift-skeleton-app-sample/Carthage/Checkouts/Auth0.swift/LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/box/samples/HEAD/box-auth0-swift-skeleton-app-sample/Carthage/Checkouts/Auth0.swift/LICENSE -------------------------------------------------------------------------------- /box-auth0-swift-skeleton-app-sample/Carthage/Checkouts/Auth0.swift/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/box/samples/HEAD/box-auth0-swift-skeleton-app-sample/Carthage/Checkouts/Auth0.swift/README.md -------------------------------------------------------------------------------- /box-auth0-swift-skeleton-app-sample/Carthage/Checkouts/Auth0.swift/circle.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/box/samples/HEAD/box-auth0-swift-skeleton-app-sample/Carthage/Checkouts/Auth0.swift/circle.yml -------------------------------------------------------------------------------- /box-auth0-swift-skeleton-app-sample/Carthage/Checkouts/Auth0.swift/codecov.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/box/samples/HEAD/box-auth0-swift-skeleton-app-sample/Carthage/Checkouts/Auth0.swift/codecov.yml -------------------------------------------------------------------------------- /box-auth0-swift-skeleton-app-sample/Carthage/Checkouts/Auth0.swift/fastlane/Appfile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/box/samples/HEAD/box-auth0-swift-skeleton-app-sample/Carthage/Checkouts/Auth0.swift/fastlane/Appfile -------------------------------------------------------------------------------- /box-auth0-swift-skeleton-app-sample/Carthage/Checkouts/Auth0.swift/fastlane/Fastfile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/box/samples/HEAD/box-auth0-swift-skeleton-app-sample/Carthage/Checkouts/Auth0.swift/fastlane/Fastfile -------------------------------------------------------------------------------- /box-auth0-swift-skeleton-app-sample/Carthage/Checkouts/Auth0.swift/fastlane/Matchfile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/box/samples/HEAD/box-auth0-swift-skeleton-app-sample/Carthage/Checkouts/Auth0.swift/fastlane/Matchfile -------------------------------------------------------------------------------- /box-auth0-swift-skeleton-app-sample/Carthage/Checkouts/Auth0.swift/fastlane/Pluginfile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/box/samples/HEAD/box-auth0-swift-skeleton-app-sample/Carthage/Checkouts/Auth0.swift/fastlane/Pluginfile -------------------------------------------------------------------------------- /box-auth0-swift-skeleton-app-sample/Carthage/Checkouts/Auth0.swift/fastlane/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/box/samples/HEAD/box-auth0-swift-skeleton-app-sample/Carthage/Checkouts/Auth0.swift/fastlane/README.md -------------------------------------------------------------------------------- /box-auth0-swift-skeleton-app-sample/Carthage/Checkouts/Auth0.swift/fastlane/Scanfile: -------------------------------------------------------------------------------- 1 | scheme "Auth0.iOS" 2 | devices ["iPhone 8"] 3 | 4 | clean true 5 | 6 | output_types "html" 7 | -------------------------------------------------------------------------------- /box-auth0-swift-skeleton-app-sample/Carthage/Checkouts/Lock.swift/.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/box/samples/HEAD/box-auth0-swift-skeleton-app-sample/Carthage/Checkouts/Lock.swift/.gitignore -------------------------------------------------------------------------------- /box-auth0-swift-skeleton-app-sample/Carthage/Checkouts/Lock.swift/.swift-version: -------------------------------------------------------------------------------- 1 | 3.0 2 | -------------------------------------------------------------------------------- /box-auth0-swift-skeleton-app-sample/Carthage/Checkouts/Lock.swift/.swiftlint.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/box/samples/HEAD/box-auth0-swift-skeleton-app-sample/Carthage/Checkouts/Lock.swift/.swiftlint.yml -------------------------------------------------------------------------------- /box-auth0-swift-skeleton-app-sample/Carthage/Checkouts/Lock.swift/App/AppDelegate.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/box/samples/HEAD/box-auth0-swift-skeleton-app-sample/Carthage/Checkouts/Lock.swift/App/AppDelegate.swift -------------------------------------------------------------------------------- /box-auth0-swift-skeleton-app-sample/Carthage/Checkouts/Lock.swift/App/Info.plist: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/box/samples/HEAD/box-auth0-swift-skeleton-app-sample/Carthage/Checkouts/Lock.swift/App/Info.plist -------------------------------------------------------------------------------- /box-auth0-swift-skeleton-app-sample/Carthage/Checkouts/Lock.swift/App/ViewController.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/box/samples/HEAD/box-auth0-swift-skeleton-app-sample/Carthage/Checkouts/Lock.swift/App/ViewController.swift -------------------------------------------------------------------------------- /box-auth0-swift-skeleton-app-sample/Carthage/Checkouts/Lock.swift/CHANGELOG.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/box/samples/HEAD/box-auth0-swift-skeleton-app-sample/Carthage/Checkouts/Lock.swift/CHANGELOG.md -------------------------------------------------------------------------------- /box-auth0-swift-skeleton-app-sample/Carthage/Checkouts/Lock.swift/Cartfile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/box/samples/HEAD/box-auth0-swift-skeleton-app-sample/Carthage/Checkouts/Lock.swift/Cartfile -------------------------------------------------------------------------------- /box-auth0-swift-skeleton-app-sample/Carthage/Checkouts/Lock.swift/Cartfile.private: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/box/samples/HEAD/box-auth0-swift-skeleton-app-sample/Carthage/Checkouts/Lock.swift/Cartfile.private -------------------------------------------------------------------------------- /box-auth0-swift-skeleton-app-sample/Carthage/Checkouts/Lock.swift/Cartfile.resolved: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/box/samples/HEAD/box-auth0-swift-skeleton-app-sample/Carthage/Checkouts/Lock.swift/Cartfile.resolved -------------------------------------------------------------------------------- /box-auth0-swift-skeleton-app-sample/Carthage/Checkouts/Lock.swift/Gemfile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/box/samples/HEAD/box-auth0-swift-skeleton-app-sample/Carthage/Checkouts/Lock.swift/Gemfile -------------------------------------------------------------------------------- /box-auth0-swift-skeleton-app-sample/Carthage/Checkouts/Lock.swift/Gemfile.lock: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/box/samples/HEAD/box-auth0-swift-skeleton-app-sample/Carthage/Checkouts/Lock.swift/Gemfile.lock -------------------------------------------------------------------------------- /box-auth0-swift-skeleton-app-sample/Carthage/Checkouts/Lock.swift/LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/box/samples/HEAD/box-auth0-swift-skeleton-app-sample/Carthage/Checkouts/Lock.swift/LICENSE -------------------------------------------------------------------------------- /box-auth0-swift-skeleton-app-sample/Carthage/Checkouts/Lock.swift/Lock.podspec: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/box/samples/HEAD/box-auth0-swift-skeleton-app-sample/Carthage/Checkouts/Lock.swift/Lock.podspec -------------------------------------------------------------------------------- /box-auth0-swift-skeleton-app-sample/Carthage/Checkouts/Lock.swift/Lock/AuthButton.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/box/samples/HEAD/box-auth0-swift-skeleton-app-sample/Carthage/Checkouts/Lock.swift/Lock/AuthButton.swift -------------------------------------------------------------------------------- /box-auth0-swift-skeleton-app-sample/Carthage/Checkouts/Lock.swift/Lock/AuthPresenter.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/box/samples/HEAD/box-auth0-swift-skeleton-app-sample/Carthage/Checkouts/Lock.swift/Lock/AuthPresenter.swift -------------------------------------------------------------------------------- /box-auth0-swift-skeleton-app-sample/Carthage/Checkouts/Lock.swift/Lock/AuthStyle.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/box/samples/HEAD/box-auth0-swift-skeleton-app-sample/Carthage/Checkouts/Lock.swift/Lock/AuthStyle.swift -------------------------------------------------------------------------------- /box-auth0-swift-skeleton-app-sample/Carthage/Checkouts/Lock.swift/Lock/ClassicRouter.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/box/samples/HEAD/box-auth0-swift-skeleton-app-sample/Carthage/Checkouts/Lock.swift/Lock/ClassicRouter.swift -------------------------------------------------------------------------------- /box-auth0-swift-skeleton-app-sample/Carthage/Checkouts/Lock.swift/Lock/Colors.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/box/samples/HEAD/box-auth0-swift-skeleton-app-sample/Carthage/Checkouts/Lock.swift/Lock/Colors.swift -------------------------------------------------------------------------------- /box-auth0-swift-skeleton-app-sample/Carthage/Checkouts/Lock.swift/Lock/Connections.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/box/samples/HEAD/box-auth0-swift-skeleton-app-sample/Carthage/Checkouts/Lock.swift/Lock/Connections.swift -------------------------------------------------------------------------------- /box-auth0-swift-skeleton-app-sample/Carthage/Checkouts/Lock.swift/Lock/CountryCodes.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/box/samples/HEAD/box-auth0-swift-skeleton-app-sample/Carthage/Checkouts/Lock.swift/Lock/CountryCodes.swift -------------------------------------------------------------------------------- /box-auth0-swift-skeleton-app-sample/Carthage/Checkouts/Lock.swift/Lock/DatabaseView.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/box/samples/HEAD/box-auth0-swift-skeleton-app-sample/Carthage/Checkouts/Lock.swift/Lock/DatabaseView.swift -------------------------------------------------------------------------------- /box-auth0-swift-skeleton-app-sample/Carthage/Checkouts/Lock.swift/Lock/Extensions.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/box/samples/HEAD/box-auth0-swift-skeleton-app-sample/Carthage/Checkouts/Lock.swift/Lock/Extensions.swift -------------------------------------------------------------------------------- /box-auth0-swift-skeleton-app-sample/Carthage/Checkouts/Lock.swift/Lock/Form.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/box/samples/HEAD/box-auth0-swift-skeleton-app-sample/Carthage/Checkouts/Lock.swift/Lock/Form.swift -------------------------------------------------------------------------------- /box-auth0-swift-skeleton-app-sample/Carthage/Checkouts/Lock.swift/Lock/HeaderView.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/box/samples/HEAD/box-auth0-swift-skeleton-app-sample/Carthage/Checkouts/Lock.swift/Lock/HeaderView.swift -------------------------------------------------------------------------------- /box-auth0-swift-skeleton-app-sample/Carthage/Checkouts/Lock.swift/Lock/IconButton.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/box/samples/HEAD/box-auth0-swift-skeleton-app-sample/Carthage/Checkouts/Lock.swift/Lock/IconButton.swift -------------------------------------------------------------------------------- /box-auth0-swift-skeleton-app-sample/Carthage/Checkouts/Lock.swift/Lock/Info.plist: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/box/samples/HEAD/box-auth0-swift-skeleton-app-sample/Carthage/Checkouts/Lock.swift/Lock/Info.plist -------------------------------------------------------------------------------- /box-auth0-swift-skeleton-app-sample/Carthage/Checkouts/Lock.swift/Lock/InfoBarView.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/box/samples/HEAD/box-auth0-swift-skeleton-app-sample/Carthage/Checkouts/Lock.swift/Lock/InfoBarView.swift -------------------------------------------------------------------------------- /box-auth0-swift-skeleton-app-sample/Carthage/Checkouts/Lock.swift/Lock/InputField.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/box/samples/HEAD/box-auth0-swift-skeleton-app-sample/Carthage/Checkouts/Lock.swift/Lock/InputField.swift -------------------------------------------------------------------------------- /box-auth0-swift-skeleton-app-sample/Carthage/Checkouts/Lock.swift/Lock/Layout.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/box/samples/HEAD/box-auth0-swift-skeleton-app-sample/Carthage/Checkouts/Lock.swift/Lock/Layout.swift -------------------------------------------------------------------------------- /box-auth0-swift-skeleton-app-sample/Carthage/Checkouts/Lock.swift/Lock/LazyImage.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/box/samples/HEAD/box-auth0-swift-skeleton-app-sample/Carthage/Checkouts/Lock.swift/Lock/LazyImage.swift -------------------------------------------------------------------------------- /box-auth0-swift-skeleton-app-sample/Carthage/Checkouts/Lock.swift/Lock/LoadingView.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/box/samples/HEAD/box-auth0-swift-skeleton-app-sample/Carthage/Checkouts/Lock.swift/Lock/LoadingView.swift -------------------------------------------------------------------------------- /box-auth0-swift-skeleton-app-sample/Carthage/Checkouts/Lock.swift/Lock/Lock.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/box/samples/HEAD/box-auth0-swift-skeleton-app-sample/Carthage/Checkouts/Lock.swift/Lock/Lock.h -------------------------------------------------------------------------------- /box-auth0-swift-skeleton-app-sample/Carthage/Checkouts/Lock.swift/Lock/Lock.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/box/samples/HEAD/box-auth0-swift-skeleton-app-sample/Carthage/Checkouts/Lock.swift/Lock/Lock.swift -------------------------------------------------------------------------------- /box-auth0-swift-skeleton-app-sample/Carthage/Checkouts/Lock.swift/Lock/LockOptions.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/box/samples/HEAD/box-auth0-swift-skeleton-app-sample/Carthage/Checkouts/Lock.swift/Lock/LockOptions.swift -------------------------------------------------------------------------------- /box-auth0-swift-skeleton-app-sample/Carthage/Checkouts/Lock.swift/Lock/Logger.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/box/samples/HEAD/box-auth0-swift-skeleton-app-sample/Carthage/Checkouts/Lock.swift/Lock/Logger.swift -------------------------------------------------------------------------------- /box-auth0-swift-skeleton-app-sample/Carthage/Checkouts/Lock.swift/Lock/MessageView.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/box/samples/HEAD/box-auth0-swift-skeleton-app-sample/Carthage/Checkouts/Lock.swift/Lock/MessageView.swift -------------------------------------------------------------------------------- /box-auth0-swift-skeleton-app-sample/Carthage/Checkouts/Lock.swift/Lock/NativeHandler.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/box/samples/HEAD/box-auth0-swift-skeleton-app-sample/Carthage/Checkouts/Lock.swift/Lock/NativeHandler.swift -------------------------------------------------------------------------------- /box-auth0-swift-skeleton-app-sample/Carthage/Checkouts/Lock.swift/Lock/Navigable.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/box/samples/HEAD/box-auth0-swift-skeleton-app-sample/Carthage/Checkouts/Lock.swift/Lock/Navigable.swift -------------------------------------------------------------------------------- /box-auth0-swift-skeleton-app-sample/Carthage/Checkouts/Lock.swift/Lock/ObserverStore.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/box/samples/HEAD/box-auth0-swift-skeleton-app-sample/Carthage/Checkouts/Lock.swift/Lock/ObserverStore.swift -------------------------------------------------------------------------------- /box-auth0-swift-skeleton-app-sample/Carthage/Checkouts/Lock.swift/Lock/OnePassword.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/box/samples/HEAD/box-auth0-swift-skeleton-app-sample/Carthage/Checkouts/Lock.swift/Lock/OnePassword.swift -------------------------------------------------------------------------------- /box-auth0-swift-skeleton-app-sample/Carthage/Checkouts/Lock.swift/Lock/Operations.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/box/samples/HEAD/box-auth0-swift-skeleton-app-sample/Carthage/Checkouts/Lock.swift/Lock/Operations.swift -------------------------------------------------------------------------------- /box-auth0-swift-skeleton-app-sample/Carthage/Checkouts/Lock.swift/Lock/Options.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/box/samples/HEAD/box-auth0-swift-skeleton-app-sample/Carthage/Checkouts/Lock.swift/Lock/Options.swift -------------------------------------------------------------------------------- /box-auth0-swift-skeleton-app-sample/Carthage/Checkouts/Lock.swift/Lock/Passwordless.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/box/samples/HEAD/box-auth0-swift-skeleton-app-sample/Carthage/Checkouts/Lock.swift/Lock/Passwordless.swift -------------------------------------------------------------------------------- /box-auth0-swift-skeleton-app-sample/Carthage/Checkouts/Lock.swift/Lock/PolicyView.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/box/samples/HEAD/box-auth0-swift-skeleton-app-sample/Carthage/Checkouts/Lock.swift/Lock/PolicyView.swift -------------------------------------------------------------------------------- /box-auth0-swift-skeleton-app-sample/Carthage/Checkouts/Lock.swift/Lock/Presentable.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/box/samples/HEAD/box-auth0-swift-skeleton-app-sample/Carthage/Checkouts/Lock.swift/Lock/Presentable.swift -------------------------------------------------------------------------------- /box-auth0-swift-skeleton-app-sample/Carthage/Checkouts/Lock.swift/Lock/PrimaryButton.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/box/samples/HEAD/box-auth0-swift-skeleton-app-sample/Carthage/Checkouts/Lock.swift/Lock/PrimaryButton.swift -------------------------------------------------------------------------------- /box-auth0-swift-skeleton-app-sample/Carthage/Checkouts/Lock.swift/Lock/Queue.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/box/samples/HEAD/box-auth0-swift-skeleton-app-sample/Carthage/Checkouts/Lock.swift/Lock/Queue.swift -------------------------------------------------------------------------------- /box-auth0-swift-skeleton-app-sample/Carthage/Checkouts/Lock.swift/Lock/Resources.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/box/samples/HEAD/box-auth0-swift-skeleton-app-sample/Carthage/Checkouts/Lock.swift/Lock/Resources.swift -------------------------------------------------------------------------------- /box-auth0-swift-skeleton-app-sample/Carthage/Checkouts/Lock.swift/Lock/Router.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/box/samples/HEAD/box-auth0-swift-skeleton-app-sample/Carthage/Checkouts/Lock.swift/Lock/Router.swift -------------------------------------------------------------------------------- /box-auth0-swift-skeleton-app-sample/Carthage/Checkouts/Lock.swift/Lock/Routes.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/box/samples/HEAD/box-auth0-swift-skeleton-app-sample/Carthage/Checkouts/Lock.swift/Lock/Routes.swift -------------------------------------------------------------------------------- /box-auth0-swift-skeleton-app-sample/Carthage/Checkouts/Lock.swift/Lock/Rule.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/box/samples/HEAD/box-auth0-swift-skeleton-app-sample/Carthage/Checkouts/Lock.swift/Lock/Rule.swift -------------------------------------------------------------------------------- /box-auth0-swift-skeleton-app-sample/Carthage/Checkouts/Lock.swift/Lock/SignUpView.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/box/samples/HEAD/box-auth0-swift-skeleton-app-sample/Carthage/Checkouts/Lock.swift/Lock/SignUpView.swift -------------------------------------------------------------------------------- /box-auth0-swift-skeleton-app-sample/Carthage/Checkouts/Lock.swift/Lock/Style.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/box/samples/HEAD/box-auth0-swift-skeleton-app-sample/Carthage/Checkouts/Lock.swift/Lock/Style.swift -------------------------------------------------------------------------------- /box-auth0-swift-skeleton-app-sample/Carthage/Checkouts/Lock.swift/Lock/User.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/box/samples/HEAD/box-auth0-swift-skeleton-app-sample/Carthage/Checkouts/Lock.swift/Lock/User.swift -------------------------------------------------------------------------------- /box-auth0-swift-skeleton-app-sample/Carthage/Checkouts/Lock.swift/Lock/UserAttribute.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/box/samples/HEAD/box-auth0-swift-skeleton-app-sample/Carthage/Checkouts/Lock.swift/Lock/UserAttribute.swift -------------------------------------------------------------------------------- /box-auth0-swift-skeleton-app-sample/Carthage/Checkouts/Lock.swift/Lock/Validators.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/box/samples/HEAD/box-auth0-swift-skeleton-app-sample/Carthage/Checkouts/Lock.swift/Lock/Validators.swift -------------------------------------------------------------------------------- /box-auth0-swift-skeleton-app-sample/Carthage/Checkouts/Lock.swift/Lock/View.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/box/samples/HEAD/box-auth0-swift-skeleton-app-sample/Carthage/Checkouts/Lock.swift/Lock/View.swift -------------------------------------------------------------------------------- /box-auth0-swift-skeleton-app-sample/Carthage/Checkouts/Lock.swift/Lock/i18n.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/box/samples/HEAD/box-auth0-swift-skeleton-app-sample/Carthage/Checkouts/Lock.swift/Lock/i18n.swift -------------------------------------------------------------------------------- /box-auth0-swift-skeleton-app-sample/Carthage/Checkouts/Lock.swift/LockTests/Info.plist: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/box/samples/HEAD/box-auth0-swift-skeleton-app-sample/Carthage/Checkouts/Lock.swift/LockTests/Info.plist -------------------------------------------------------------------------------- /box-auth0-swift-skeleton-app-sample/Carthage/Checkouts/Lock.swift/LockTests/LockSpec.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/box/samples/HEAD/box-auth0-swift-skeleton-app-sample/Carthage/Checkouts/Lock.swift/LockTests/LockSpec.swift -------------------------------------------------------------------------------- /box-auth0-swift-skeleton-app-sample/Carthage/Checkouts/Lock.swift/LockUITests/Info.plist: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/box/samples/HEAD/box-auth0-swift-skeleton-app-sample/Carthage/Checkouts/Lock.swift/LockUITests/Info.plist -------------------------------------------------------------------------------- /box-auth0-swift-skeleton-app-sample/Carthage/Checkouts/Lock.swift/MIGRATION.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/box/samples/HEAD/box-auth0-swift-skeleton-app-sample/Carthage/Checkouts/Lock.swift/MIGRATION.md -------------------------------------------------------------------------------- /box-auth0-swift-skeleton-app-sample/Carthage/Checkouts/Lock.swift/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/box/samples/HEAD/box-auth0-swift-skeleton-app-sample/Carthage/Checkouts/Lock.swift/README.md -------------------------------------------------------------------------------- /box-auth0-swift-skeleton-app-sample/Carthage/Checkouts/Lock.swift/circle.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/box/samples/HEAD/box-auth0-swift-skeleton-app-sample/Carthage/Checkouts/Lock.swift/circle.yml -------------------------------------------------------------------------------- /box-auth0-swift-skeleton-app-sample/Carthage/Checkouts/Lock.swift/codecov.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/box/samples/HEAD/box-auth0-swift-skeleton-app-sample/Carthage/Checkouts/Lock.swift/codecov.yml -------------------------------------------------------------------------------- /box-auth0-swift-skeleton-app-sample/Carthage/Checkouts/Lock.swift/fastlane/Appfile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/box/samples/HEAD/box-auth0-swift-skeleton-app-sample/Carthage/Checkouts/Lock.swift/fastlane/Appfile -------------------------------------------------------------------------------- /box-auth0-swift-skeleton-app-sample/Carthage/Checkouts/Lock.swift/fastlane/Fastfile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/box/samples/HEAD/box-auth0-swift-skeleton-app-sample/Carthage/Checkouts/Lock.swift/fastlane/Fastfile -------------------------------------------------------------------------------- /box-auth0-swift-skeleton-app-sample/Carthage/Checkouts/Lock.swift/fastlane/Pluginfile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/box/samples/HEAD/box-auth0-swift-skeleton-app-sample/Carthage/Checkouts/Lock.swift/fastlane/Pluginfile -------------------------------------------------------------------------------- /box-auth0-swift-skeleton-app-sample/Carthage/Checkouts/Lock.swift/fastlane/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/box/samples/HEAD/box-auth0-swift-skeleton-app-sample/Carthage/Checkouts/Lock.swift/fastlane/README.md -------------------------------------------------------------------------------- /box-auth0-swift-skeleton-app-sample/Carthage/Checkouts/Lock.swift/fastlane/Scanfile: -------------------------------------------------------------------------------- 1 | scheme "Lock" 2 | device "iPhone 8" 3 | 4 | clean true 5 | 6 | output_types "html" 7 | -------------------------------------------------------------------------------- /box-auth0-swift-skeleton-app-sample/Carthage/Checkouts/Lock.swift/fastlane/Snapfile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/box/samples/HEAD/box-auth0-swift-skeleton-app-sample/Carthage/Checkouts/Lock.swift/fastlane/Snapfile -------------------------------------------------------------------------------- /box-auth0-swift-skeleton-app-sample/Carthage/Checkouts/Lock.swift/script/bootstrap: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/box/samples/HEAD/box-auth0-swift-skeleton-app-sample/Carthage/Checkouts/Lock.swift/script/bootstrap -------------------------------------------------------------------------------- /box-auth0-swift-skeleton-app-sample/Carthage/Checkouts/Lock.swift/script/build: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/box/samples/HEAD/box-auth0-swift-skeleton-app-sample/Carthage/Checkouts/Lock.swift/script/build -------------------------------------------------------------------------------- /box-auth0-swift-skeleton-app-sample/Carthage/Checkouts/Lock.swift/script/carthage: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/box/samples/HEAD/box-auth0-swift-skeleton-app-sample/Carthage/Checkouts/Lock.swift/script/carthage -------------------------------------------------------------------------------- /box-auth0-swift-skeleton-app-sample/Carthage/Checkouts/Lock.swift/script/cibuild: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/box/samples/HEAD/box-auth0-swift-skeleton-app-sample/Carthage/Checkouts/Lock.swift/script/cibuild -------------------------------------------------------------------------------- /box-auth0-swift-skeleton-app-sample/Carthage/Checkouts/Lock.swift/script/common/carthage: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/box/samples/HEAD/box-auth0-swift-skeleton-app-sample/Carthage/Checkouts/Lock.swift/script/common/carthage -------------------------------------------------------------------------------- /box-auth0-swift-skeleton-app-sample/Carthage/Checkouts/Lock.swift/script/common/homebrew: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/box/samples/HEAD/box-auth0-swift-skeleton-app-sample/Carthage/Checkouts/Lock.swift/script/common/homebrew -------------------------------------------------------------------------------- /box-auth0-swift-skeleton-app-sample/Carthage/Checkouts/Lock.swift/script/common/swiftlint: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/box/samples/HEAD/box-auth0-swift-skeleton-app-sample/Carthage/Checkouts/Lock.swift/script/common/swiftlint -------------------------------------------------------------------------------- /box-auth0-swift-skeleton-app-sample/Carthage/Checkouts/Lock.swift/script/script_hooks/.gitkeep: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /box-auth0-swift-skeleton-app-sample/Carthage/Checkouts/Lock.swift/script/test: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/box/samples/HEAD/box-auth0-swift-skeleton-app-sample/Carthage/Checkouts/Lock.swift/script/test -------------------------------------------------------------------------------- /box-auth0-swift-skeleton-app-sample/Carthage/Checkouts/Lock.swift/script/update: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/box/samples/HEAD/box-auth0-swift-skeleton-app-sample/Carthage/Checkouts/Lock.swift/script/update -------------------------------------------------------------------------------- /box-auth0-swift-skeleton-app-sample/Carthage/Checkouts/MBProgressHUD/.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/box/samples/HEAD/box-auth0-swift-skeleton-app-sample/Carthage/Checkouts/MBProgressHUD/.gitignore -------------------------------------------------------------------------------- /box-auth0-swift-skeleton-app-sample/Carthage/Checkouts/MBProgressHUD/.travis.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/box/samples/HEAD/box-auth0-swift-skeleton-app-sample/Carthage/Checkouts/MBProgressHUD/.travis.yml -------------------------------------------------------------------------------- /box-auth0-swift-skeleton-app-sample/Carthage/Checkouts/MBProgressHUD/CHANGELOG.mdown: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/box/samples/HEAD/box-auth0-swift-skeleton-app-sample/Carthage/Checkouts/MBProgressHUD/CHANGELOG.mdown -------------------------------------------------------------------------------- /box-auth0-swift-skeleton-app-sample/Carthage/Checkouts/MBProgressHUD/Carthage/Build: -------------------------------------------------------------------------------- 1 | ../../../../Carthage/Build -------------------------------------------------------------------------------- /box-auth0-swift-skeleton-app-sample/Carthage/Checkouts/MBProgressHUD/Demo/HudDemo/main.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/box/samples/HEAD/box-auth0-swift-skeleton-app-sample/Carthage/Checkouts/MBProgressHUD/Demo/HudDemo/main.m -------------------------------------------------------------------------------- /box-auth0-swift-skeleton-app-sample/Carthage/Checkouts/MBProgressHUD/Demo/HudDemoTV/main.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/box/samples/HEAD/box-auth0-swift-skeleton-app-sample/Carthage/Checkouts/MBProgressHUD/Demo/HudDemoTV/main.m -------------------------------------------------------------------------------- /box-auth0-swift-skeleton-app-sample/Carthage/Checkouts/MBProgressHUD/Framework-Info.plist: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/box/samples/HEAD/box-auth0-swift-skeleton-app-sample/Carthage/Checkouts/MBProgressHUD/Framework-Info.plist -------------------------------------------------------------------------------- /box-auth0-swift-skeleton-app-sample/Carthage/Checkouts/MBProgressHUD/LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/box/samples/HEAD/box-auth0-swift-skeleton-app-sample/Carthage/Checkouts/MBProgressHUD/LICENSE -------------------------------------------------------------------------------- /box-auth0-swift-skeleton-app-sample/Carthage/Checkouts/MBProgressHUD/MBProgressHUD.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/box/samples/HEAD/box-auth0-swift-skeleton-app-sample/Carthage/Checkouts/MBProgressHUD/MBProgressHUD.h -------------------------------------------------------------------------------- /box-auth0-swift-skeleton-app-sample/Carthage/Checkouts/MBProgressHUD/MBProgressHUD.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/box/samples/HEAD/box-auth0-swift-skeleton-app-sample/Carthage/Checkouts/MBProgressHUD/MBProgressHUD.m -------------------------------------------------------------------------------- /box-auth0-swift-skeleton-app-sample/Carthage/Checkouts/MBProgressHUD/MBProgressHUD.podspec: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/box/samples/HEAD/box-auth0-swift-skeleton-app-sample/Carthage/Checkouts/MBProgressHUD/MBProgressHUD.podspec -------------------------------------------------------------------------------- /box-auth0-swift-skeleton-app-sample/Carthage/Checkouts/MBProgressHUD/README.mdown: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/box/samples/HEAD/box-auth0-swift-skeleton-app-sample/Carthage/Checkouts/MBProgressHUD/README.mdown -------------------------------------------------------------------------------- /box-auth0-swift-skeleton-app-sample/Carthage/Checkouts/Masonry/.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/box/samples/HEAD/box-auth0-swift-skeleton-app-sample/Carthage/Checkouts/Masonry/.gitignore -------------------------------------------------------------------------------- /box-auth0-swift-skeleton-app-sample/Carthage/Checkouts/Masonry/.travis.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/box/samples/HEAD/box-auth0-swift-skeleton-app-sample/Carthage/Checkouts/Masonry/.travis.yml -------------------------------------------------------------------------------- /box-auth0-swift-skeleton-app-sample/Carthage/Checkouts/Masonry/CHANGELOG.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/box/samples/HEAD/box-auth0-swift-skeleton-app-sample/Carthage/Checkouts/Masonry/CHANGELOG.md -------------------------------------------------------------------------------- /box-auth0-swift-skeleton-app-sample/Carthage/Checkouts/Masonry/Carthage/Build: -------------------------------------------------------------------------------- 1 | ../../../../Carthage/Build -------------------------------------------------------------------------------- /box-auth0-swift-skeleton-app-sample/Carthage/Checkouts/Masonry/Examples/Masonry iOS Examples/en.lproj/InfoPlist.strings: -------------------------------------------------------------------------------- 1 | /* Localized versions of Info.plist keys */ 2 | 3 | -------------------------------------------------------------------------------- /box-auth0-swift-skeleton-app-sample/Carthage/Checkouts/Masonry/LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/box/samples/HEAD/box-auth0-swift-skeleton-app-sample/Carthage/Checkouts/Masonry/LICENSE -------------------------------------------------------------------------------- /box-auth0-swift-skeleton-app-sample/Carthage/Checkouts/Masonry/Masonry.podspec: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/box/samples/HEAD/box-auth0-swift-skeleton-app-sample/Carthage/Checkouts/Masonry/Masonry.podspec -------------------------------------------------------------------------------- /box-auth0-swift-skeleton-app-sample/Carthage/Checkouts/Masonry/Masonry/Info.plist: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/box/samples/HEAD/box-auth0-swift-skeleton-app-sample/Carthage/Checkouts/Masonry/Masonry/Info.plist -------------------------------------------------------------------------------- /box-auth0-swift-skeleton-app-sample/Carthage/Checkouts/Masonry/Masonry/MASConstraint.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/box/samples/HEAD/box-auth0-swift-skeleton-app-sample/Carthage/Checkouts/Masonry/Masonry/MASConstraint.h -------------------------------------------------------------------------------- /box-auth0-swift-skeleton-app-sample/Carthage/Checkouts/Masonry/Masonry/MASConstraint.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/box/samples/HEAD/box-auth0-swift-skeleton-app-sample/Carthage/Checkouts/Masonry/Masonry/MASConstraint.m -------------------------------------------------------------------------------- /box-auth0-swift-skeleton-app-sample/Carthage/Checkouts/Masonry/Masonry/MASUtilities.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/box/samples/HEAD/box-auth0-swift-skeleton-app-sample/Carthage/Checkouts/Masonry/Masonry/MASUtilities.h -------------------------------------------------------------------------------- /box-auth0-swift-skeleton-app-sample/Carthage/Checkouts/Masonry/Masonry/MASViewAttribute.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/box/samples/HEAD/box-auth0-swift-skeleton-app-sample/Carthage/Checkouts/Masonry/Masonry/MASViewAttribute.h -------------------------------------------------------------------------------- /box-auth0-swift-skeleton-app-sample/Carthage/Checkouts/Masonry/Masonry/MASViewAttribute.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/box/samples/HEAD/box-auth0-swift-skeleton-app-sample/Carthage/Checkouts/Masonry/Masonry/MASViewAttribute.m -------------------------------------------------------------------------------- /box-auth0-swift-skeleton-app-sample/Carthage/Checkouts/Masonry/Masonry/MASViewConstraint.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/box/samples/HEAD/box-auth0-swift-skeleton-app-sample/Carthage/Checkouts/Masonry/Masonry/MASViewConstraint.h -------------------------------------------------------------------------------- /box-auth0-swift-skeleton-app-sample/Carthage/Checkouts/Masonry/Masonry/MASViewConstraint.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/box/samples/HEAD/box-auth0-swift-skeleton-app-sample/Carthage/Checkouts/Masonry/Masonry/MASViewConstraint.m -------------------------------------------------------------------------------- /box-auth0-swift-skeleton-app-sample/Carthage/Checkouts/Masonry/Masonry/Masonry.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/box/samples/HEAD/box-auth0-swift-skeleton-app-sample/Carthage/Checkouts/Masonry/Masonry/Masonry.h -------------------------------------------------------------------------------- /box-auth0-swift-skeleton-app-sample/Carthage/Checkouts/Masonry/Masonry/View+MASAdditions.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/box/samples/HEAD/box-auth0-swift-skeleton-app-sample/Carthage/Checkouts/Masonry/Masonry/View+MASAdditions.h -------------------------------------------------------------------------------- /box-auth0-swift-skeleton-app-sample/Carthage/Checkouts/Masonry/Masonry/View+MASAdditions.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/box/samples/HEAD/box-auth0-swift-skeleton-app-sample/Carthage/Checkouts/Masonry/Masonry/View+MASAdditions.m -------------------------------------------------------------------------------- /box-auth0-swift-skeleton-app-sample/Carthage/Checkouts/Masonry/Podfile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/box/samples/HEAD/box-auth0-swift-skeleton-app-sample/Carthage/Checkouts/Masonry/Podfile -------------------------------------------------------------------------------- /box-auth0-swift-skeleton-app-sample/Carthage/Checkouts/Masonry/Podfile.lock: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/box/samples/HEAD/box-auth0-swift-skeleton-app-sample/Carthage/Checkouts/Masonry/Podfile.lock -------------------------------------------------------------------------------- /box-auth0-swift-skeleton-app-sample/Carthage/Checkouts/Masonry/Pods/Expecta/Expecta/Matchers/EXPMatchers+beFalsy.h: -------------------------------------------------------------------------------- 1 | #import "Expecta.h" 2 | 3 | EXPMatcherInterface(beFalsy, (void)); 4 | -------------------------------------------------------------------------------- /box-auth0-swift-skeleton-app-sample/Carthage/Checkouts/Masonry/Pods/Expecta/Expecta/Matchers/EXPMatchers+beSupersetOf.h: -------------------------------------------------------------------------------- 1 | #import "Expecta.h" 2 | 3 | EXPMatcherInterface(beSupersetOf, (id subset)); 4 | 5 | -------------------------------------------------------------------------------- /box-auth0-swift-skeleton-app-sample/Carthage/Checkouts/Masonry/Pods/Expecta/Expecta/Matchers/EXPMatchers+beTruthy.h: -------------------------------------------------------------------------------- 1 | #import "Expecta.h" 2 | 3 | EXPMatcherInterface(beTruthy, (void)); 4 | -------------------------------------------------------------------------------- /box-auth0-swift-skeleton-app-sample/Carthage/Checkouts/Masonry/Pods/Expecta/LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/box/samples/HEAD/box-auth0-swift-skeleton-app-sample/Carthage/Checkouts/Masonry/Pods/Expecta/LICENSE -------------------------------------------------------------------------------- /box-auth0-swift-skeleton-app-sample/Carthage/Checkouts/Masonry/Pods/Expecta/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/box/samples/HEAD/box-auth0-swift-skeleton-app-sample/Carthage/Checkouts/Masonry/Pods/Expecta/README.md -------------------------------------------------------------------------------- /box-auth0-swift-skeleton-app-sample/Carthage/Checkouts/Masonry/Pods/Headers/Private/Expecta/EXPBlockDefinedMatcher.h: -------------------------------------------------------------------------------- 1 | ../../../Expecta/Expecta/EXPBlockDefinedMatcher.h -------------------------------------------------------------------------------- /box-auth0-swift-skeleton-app-sample/Carthage/Checkouts/Masonry/Pods/Headers/Private/Expecta/EXPDefines.h: -------------------------------------------------------------------------------- 1 | ../../../Expecta/Expecta/EXPDefines.h -------------------------------------------------------------------------------- /box-auth0-swift-skeleton-app-sample/Carthage/Checkouts/Masonry/Pods/Headers/Private/Expecta/EXPDoubleTuple.h: -------------------------------------------------------------------------------- 1 | ../../../Expecta/Expecta/EXPDoubleTuple.h -------------------------------------------------------------------------------- /box-auth0-swift-skeleton-app-sample/Carthage/Checkouts/Masonry/Pods/Headers/Private/Expecta/EXPExpect.h: -------------------------------------------------------------------------------- 1 | ../../../Expecta/Expecta/EXPExpect.h -------------------------------------------------------------------------------- /box-auth0-swift-skeleton-app-sample/Carthage/Checkouts/Masonry/Pods/Headers/Private/Expecta/EXPFloatTuple.h: -------------------------------------------------------------------------------- 1 | ../../../Expecta/Expecta/EXPFloatTuple.h -------------------------------------------------------------------------------- /box-auth0-swift-skeleton-app-sample/Carthage/Checkouts/Masonry/Pods/Headers/Private/Expecta/EXPMatcher.h: -------------------------------------------------------------------------------- 1 | ../../../Expecta/Expecta/EXPMatcher.h -------------------------------------------------------------------------------- /box-auth0-swift-skeleton-app-sample/Carthage/Checkouts/Masonry/Pods/Headers/Private/Expecta/EXPMatcherHelpers.h: -------------------------------------------------------------------------------- 1 | ../../../Expecta/Expecta/Matchers/EXPMatcherHelpers.h -------------------------------------------------------------------------------- /box-auth0-swift-skeleton-app-sample/Carthage/Checkouts/Masonry/Pods/Headers/Private/Expecta/EXPMatchers+beCloseTo.h: -------------------------------------------------------------------------------- 1 | ../../../Expecta/Expecta/Matchers/EXPMatchers+beCloseTo.h -------------------------------------------------------------------------------- /box-auth0-swift-skeleton-app-sample/Carthage/Checkouts/Masonry/Pods/Headers/Private/Expecta/EXPMatchers+beFalsy.h: -------------------------------------------------------------------------------- 1 | ../../../Expecta/Expecta/Matchers/EXPMatchers+beFalsy.h -------------------------------------------------------------------------------- /box-auth0-swift-skeleton-app-sample/Carthage/Checkouts/Masonry/Pods/Headers/Private/Expecta/EXPMatchers+beGreaterThan.h: -------------------------------------------------------------------------------- 1 | ../../../Expecta/Expecta/Matchers/EXPMatchers+beGreaterThan.h -------------------------------------------------------------------------------- /box-auth0-swift-skeleton-app-sample/Carthage/Checkouts/Masonry/Pods/Headers/Private/Expecta/EXPMatchers+beGreaterThanOrEqualTo.h: -------------------------------------------------------------------------------- 1 | ../../../Expecta/Expecta/Matchers/EXPMatchers+beGreaterThanOrEqualTo.h -------------------------------------------------------------------------------- /box-auth0-swift-skeleton-app-sample/Carthage/Checkouts/Masonry/Pods/Headers/Private/Expecta/EXPMatchers+beIdenticalTo.h: -------------------------------------------------------------------------------- 1 | ../../../Expecta/Expecta/Matchers/EXPMatchers+beIdenticalTo.h -------------------------------------------------------------------------------- /box-auth0-swift-skeleton-app-sample/Carthage/Checkouts/Masonry/Pods/Headers/Private/Expecta/EXPMatchers+beInTheRangeOf.h: -------------------------------------------------------------------------------- 1 | ../../../Expecta/Expecta/Matchers/EXPMatchers+beInTheRangeOf.h -------------------------------------------------------------------------------- /box-auth0-swift-skeleton-app-sample/Carthage/Checkouts/Masonry/Pods/Headers/Private/Expecta/EXPMatchers+beInstanceOf.h: -------------------------------------------------------------------------------- 1 | ../../../Expecta/Expecta/Matchers/EXPMatchers+beInstanceOf.h -------------------------------------------------------------------------------- /box-auth0-swift-skeleton-app-sample/Carthage/Checkouts/Masonry/Pods/Headers/Private/Expecta/EXPMatchers+beKindOf.h: -------------------------------------------------------------------------------- 1 | ../../../Expecta/Expecta/Matchers/EXPMatchers+beKindOf.h -------------------------------------------------------------------------------- /box-auth0-swift-skeleton-app-sample/Carthage/Checkouts/Masonry/Pods/Headers/Private/Expecta/EXPMatchers+beLessThan.h: -------------------------------------------------------------------------------- 1 | ../../../Expecta/Expecta/Matchers/EXPMatchers+beLessThan.h -------------------------------------------------------------------------------- /box-auth0-swift-skeleton-app-sample/Carthage/Checkouts/Masonry/Pods/Headers/Private/Expecta/EXPMatchers+beLessThanOrEqualTo.h: -------------------------------------------------------------------------------- 1 | ../../../Expecta/Expecta/Matchers/EXPMatchers+beLessThanOrEqualTo.h -------------------------------------------------------------------------------- /box-auth0-swift-skeleton-app-sample/Carthage/Checkouts/Masonry/Pods/Headers/Private/Expecta/EXPMatchers+beNil.h: -------------------------------------------------------------------------------- 1 | ../../../Expecta/Expecta/Matchers/EXPMatchers+beNil.h -------------------------------------------------------------------------------- /box-auth0-swift-skeleton-app-sample/Carthage/Checkouts/Masonry/Pods/Headers/Private/Expecta/EXPMatchers+beSubclassOf.h: -------------------------------------------------------------------------------- 1 | ../../../Expecta/Expecta/Matchers/EXPMatchers+beSubclassOf.h -------------------------------------------------------------------------------- /box-auth0-swift-skeleton-app-sample/Carthage/Checkouts/Masonry/Pods/Headers/Private/Expecta/EXPMatchers+beSupersetOf.h: -------------------------------------------------------------------------------- 1 | ../../../Expecta/Expecta/Matchers/EXPMatchers+beSupersetOf.h -------------------------------------------------------------------------------- /box-auth0-swift-skeleton-app-sample/Carthage/Checkouts/Masonry/Pods/Headers/Private/Expecta/EXPMatchers+beTruthy.h: -------------------------------------------------------------------------------- 1 | ../../../Expecta/Expecta/Matchers/EXPMatchers+beTruthy.h -------------------------------------------------------------------------------- /box-auth0-swift-skeleton-app-sample/Carthage/Checkouts/Masonry/Pods/Headers/Private/Expecta/EXPMatchers+beginWith.h: -------------------------------------------------------------------------------- 1 | ../../../Expecta/Expecta/Matchers/EXPMatchers+beginWith.h -------------------------------------------------------------------------------- /box-auth0-swift-skeleton-app-sample/Carthage/Checkouts/Masonry/Pods/Headers/Private/Expecta/EXPMatchers+conformTo.h: -------------------------------------------------------------------------------- 1 | ../../../Expecta/Expecta/Matchers/EXPMatchers+conformTo.h -------------------------------------------------------------------------------- /box-auth0-swift-skeleton-app-sample/Carthage/Checkouts/Masonry/Pods/Headers/Private/Expecta/EXPMatchers+contain.h: -------------------------------------------------------------------------------- 1 | ../../../Expecta/Expecta/Matchers/EXPMatchers+contain.h -------------------------------------------------------------------------------- /box-auth0-swift-skeleton-app-sample/Carthage/Checkouts/Masonry/Pods/Headers/Private/Expecta/EXPMatchers+endWith.h: -------------------------------------------------------------------------------- 1 | ../../../Expecta/Expecta/Matchers/EXPMatchers+endWith.h -------------------------------------------------------------------------------- /box-auth0-swift-skeleton-app-sample/Carthage/Checkouts/Masonry/Pods/Headers/Private/Expecta/EXPMatchers+equal.h: -------------------------------------------------------------------------------- 1 | ../../../Expecta/Expecta/Matchers/EXPMatchers+equal.h -------------------------------------------------------------------------------- /box-auth0-swift-skeleton-app-sample/Carthage/Checkouts/Masonry/Pods/Headers/Private/Expecta/EXPMatchers+haveCountOf.h: -------------------------------------------------------------------------------- 1 | ../../../Expecta/Expecta/Matchers/EXPMatchers+haveCountOf.h -------------------------------------------------------------------------------- /box-auth0-swift-skeleton-app-sample/Carthage/Checkouts/Masonry/Pods/Headers/Private/Expecta/EXPMatchers+match.h: -------------------------------------------------------------------------------- 1 | ../../../Expecta/Expecta/Matchers/EXPMatchers+match.h -------------------------------------------------------------------------------- /box-auth0-swift-skeleton-app-sample/Carthage/Checkouts/Masonry/Pods/Headers/Private/Expecta/EXPMatchers+postNotification.h: -------------------------------------------------------------------------------- 1 | ../../../Expecta/Expecta/Matchers/EXPMatchers+postNotification.h -------------------------------------------------------------------------------- /box-auth0-swift-skeleton-app-sample/Carthage/Checkouts/Masonry/Pods/Headers/Private/Expecta/EXPMatchers+raise.h: -------------------------------------------------------------------------------- 1 | ../../../Expecta/Expecta/Matchers/EXPMatchers+raise.h -------------------------------------------------------------------------------- /box-auth0-swift-skeleton-app-sample/Carthage/Checkouts/Masonry/Pods/Headers/Private/Expecta/EXPMatchers+raiseWithReason.h: -------------------------------------------------------------------------------- 1 | ../../../Expecta/Expecta/Matchers/EXPMatchers+raiseWithReason.h -------------------------------------------------------------------------------- /box-auth0-swift-skeleton-app-sample/Carthage/Checkouts/Masonry/Pods/Headers/Private/Expecta/EXPMatchers+respondTo.h: -------------------------------------------------------------------------------- 1 | ../../../Expecta/Expecta/Matchers/EXPMatchers+respondTo.h -------------------------------------------------------------------------------- /box-auth0-swift-skeleton-app-sample/Carthage/Checkouts/Masonry/Pods/Headers/Private/Expecta/EXPMatchers.h: -------------------------------------------------------------------------------- 1 | ../../../Expecta/Expecta/Matchers/EXPMatchers.h -------------------------------------------------------------------------------- /box-auth0-swift-skeleton-app-sample/Carthage/Checkouts/Masonry/Pods/Headers/Private/Expecta/EXPUnsupportedObject.h: -------------------------------------------------------------------------------- 1 | ../../../Expecta/Expecta/EXPUnsupportedObject.h -------------------------------------------------------------------------------- /box-auth0-swift-skeleton-app-sample/Carthage/Checkouts/Masonry/Pods/Headers/Private/Expecta/Expecta.h: -------------------------------------------------------------------------------- 1 | ../../../Expecta/Expecta/Expecta.h -------------------------------------------------------------------------------- /box-auth0-swift-skeleton-app-sample/Carthage/Checkouts/Masonry/Pods/Headers/Private/Expecta/ExpectaObject.h: -------------------------------------------------------------------------------- 1 | ../../../Expecta/Expecta/ExpectaObject.h -------------------------------------------------------------------------------- /box-auth0-swift-skeleton-app-sample/Carthage/Checkouts/Masonry/Pods/Headers/Private/Expecta/ExpectaSupport.h: -------------------------------------------------------------------------------- 1 | ../../../Expecta/Expecta/ExpectaSupport.h -------------------------------------------------------------------------------- /box-auth0-swift-skeleton-app-sample/Carthage/Checkouts/Masonry/Pods/Headers/Private/Expecta/NSObject+Expecta.h: -------------------------------------------------------------------------------- 1 | ../../../Expecta/Expecta/NSObject+Expecta.h -------------------------------------------------------------------------------- /box-auth0-swift-skeleton-app-sample/Carthage/Checkouts/Masonry/Pods/Headers/Private/Expecta/NSValue+Expecta.h: -------------------------------------------------------------------------------- 1 | ../../../Expecta/Expecta/NSValue+Expecta.h -------------------------------------------------------------------------------- /box-auth0-swift-skeleton-app-sample/Carthage/Checkouts/Masonry/Pods/Headers/Private/Masonry/MASCompositeConstraint.h: -------------------------------------------------------------------------------- 1 | ../../../../Masonry/MASCompositeConstraint.h -------------------------------------------------------------------------------- /box-auth0-swift-skeleton-app-sample/Carthage/Checkouts/Masonry/Pods/Headers/Private/Masonry/MASConstraint+Private.h: -------------------------------------------------------------------------------- 1 | ../../../../Masonry/MASConstraint+Private.h -------------------------------------------------------------------------------- /box-auth0-swift-skeleton-app-sample/Carthage/Checkouts/Masonry/Pods/Headers/Private/Masonry/MASConstraint.h: -------------------------------------------------------------------------------- 1 | ../../../../Masonry/MASConstraint.h -------------------------------------------------------------------------------- /box-auth0-swift-skeleton-app-sample/Carthage/Checkouts/Masonry/Pods/Headers/Private/Masonry/MASConstraintMaker.h: -------------------------------------------------------------------------------- 1 | ../../../../Masonry/MASConstraintMaker.h -------------------------------------------------------------------------------- /box-auth0-swift-skeleton-app-sample/Carthage/Checkouts/Masonry/Pods/Headers/Private/Masonry/MASLayoutConstraint.h: -------------------------------------------------------------------------------- 1 | ../../../../Masonry/MASLayoutConstraint.h -------------------------------------------------------------------------------- /box-auth0-swift-skeleton-app-sample/Carthage/Checkouts/Masonry/Pods/Headers/Private/Masonry/MASUtilities.h: -------------------------------------------------------------------------------- 1 | ../../../../Masonry/MASUtilities.h -------------------------------------------------------------------------------- /box-auth0-swift-skeleton-app-sample/Carthage/Checkouts/Masonry/Pods/Headers/Private/Masonry/MASViewAttribute.h: -------------------------------------------------------------------------------- 1 | ../../../../Masonry/MASViewAttribute.h -------------------------------------------------------------------------------- /box-auth0-swift-skeleton-app-sample/Carthage/Checkouts/Masonry/Pods/Headers/Private/Masonry/MASViewConstraint.h: -------------------------------------------------------------------------------- 1 | ../../../../Masonry/MASViewConstraint.h -------------------------------------------------------------------------------- /box-auth0-swift-skeleton-app-sample/Carthage/Checkouts/Masonry/Pods/Headers/Private/Masonry/Masonry.h: -------------------------------------------------------------------------------- 1 | ../../../../Masonry/Masonry.h -------------------------------------------------------------------------------- /box-auth0-swift-skeleton-app-sample/Carthage/Checkouts/Masonry/Pods/Headers/Private/Masonry/NSArray+MASAdditions.h: -------------------------------------------------------------------------------- 1 | ../../../../Masonry/NSArray+MASAdditions.h -------------------------------------------------------------------------------- /box-auth0-swift-skeleton-app-sample/Carthage/Checkouts/Masonry/Pods/Headers/Private/Masonry/NSArray+MASShorthandAdditions.h: -------------------------------------------------------------------------------- 1 | ../../../../Masonry/NSArray+MASShorthandAdditions.h -------------------------------------------------------------------------------- /box-auth0-swift-skeleton-app-sample/Carthage/Checkouts/Masonry/Pods/Headers/Private/Masonry/NSLayoutConstraint+MASDebugAdditions.h: -------------------------------------------------------------------------------- 1 | ../../../../Masonry/NSLayoutConstraint+MASDebugAdditions.h -------------------------------------------------------------------------------- /box-auth0-swift-skeleton-app-sample/Carthage/Checkouts/Masonry/Pods/Headers/Private/Masonry/View+MASAdditions.h: -------------------------------------------------------------------------------- 1 | ../../../../Masonry/View+MASAdditions.h -------------------------------------------------------------------------------- /box-auth0-swift-skeleton-app-sample/Carthage/Checkouts/Masonry/Pods/Headers/Private/Masonry/View+MASShorthandAdditions.h: -------------------------------------------------------------------------------- 1 | ../../../../Masonry/View+MASShorthandAdditions.h -------------------------------------------------------------------------------- /box-auth0-swift-skeleton-app-sample/Carthage/Checkouts/Masonry/Pods/Headers/Private/Masonry/ViewController+MASAdditions.h: -------------------------------------------------------------------------------- 1 | ../../../../Masonry/ViewController+MASAdditions.h -------------------------------------------------------------------------------- /box-auth0-swift-skeleton-app-sample/Carthage/Checkouts/Masonry/Pods/Headers/Public/Expecta/EXPBlockDefinedMatcher.h: -------------------------------------------------------------------------------- 1 | ../../../Expecta/Expecta/EXPBlockDefinedMatcher.h -------------------------------------------------------------------------------- /box-auth0-swift-skeleton-app-sample/Carthage/Checkouts/Masonry/Pods/Headers/Public/Expecta/EXPDefines.h: -------------------------------------------------------------------------------- 1 | ../../../Expecta/Expecta/EXPDefines.h -------------------------------------------------------------------------------- /box-auth0-swift-skeleton-app-sample/Carthage/Checkouts/Masonry/Pods/Headers/Public/Expecta/EXPDoubleTuple.h: -------------------------------------------------------------------------------- 1 | ../../../Expecta/Expecta/EXPDoubleTuple.h -------------------------------------------------------------------------------- /box-auth0-swift-skeleton-app-sample/Carthage/Checkouts/Masonry/Pods/Headers/Public/Expecta/EXPExpect.h: -------------------------------------------------------------------------------- 1 | ../../../Expecta/Expecta/EXPExpect.h -------------------------------------------------------------------------------- /box-auth0-swift-skeleton-app-sample/Carthage/Checkouts/Masonry/Pods/Headers/Public/Expecta/EXPFloatTuple.h: -------------------------------------------------------------------------------- 1 | ../../../Expecta/Expecta/EXPFloatTuple.h -------------------------------------------------------------------------------- /box-auth0-swift-skeleton-app-sample/Carthage/Checkouts/Masonry/Pods/Headers/Public/Expecta/EXPMatcher.h: -------------------------------------------------------------------------------- 1 | ../../../Expecta/Expecta/EXPMatcher.h -------------------------------------------------------------------------------- /box-auth0-swift-skeleton-app-sample/Carthage/Checkouts/Masonry/Pods/Headers/Public/Expecta/EXPMatcherHelpers.h: -------------------------------------------------------------------------------- 1 | ../../../Expecta/Expecta/Matchers/EXPMatcherHelpers.h -------------------------------------------------------------------------------- /box-auth0-swift-skeleton-app-sample/Carthage/Checkouts/Masonry/Pods/Headers/Public/Expecta/EXPMatchers+beCloseTo.h: -------------------------------------------------------------------------------- 1 | ../../../Expecta/Expecta/Matchers/EXPMatchers+beCloseTo.h -------------------------------------------------------------------------------- /box-auth0-swift-skeleton-app-sample/Carthage/Checkouts/Masonry/Pods/Headers/Public/Expecta/EXPMatchers+beFalsy.h: -------------------------------------------------------------------------------- 1 | ../../../Expecta/Expecta/Matchers/EXPMatchers+beFalsy.h -------------------------------------------------------------------------------- /box-auth0-swift-skeleton-app-sample/Carthage/Checkouts/Masonry/Pods/Headers/Public/Expecta/EXPMatchers+beGreaterThan.h: -------------------------------------------------------------------------------- 1 | ../../../Expecta/Expecta/Matchers/EXPMatchers+beGreaterThan.h -------------------------------------------------------------------------------- /box-auth0-swift-skeleton-app-sample/Carthage/Checkouts/Masonry/Pods/Headers/Public/Expecta/EXPMatchers+beGreaterThanOrEqualTo.h: -------------------------------------------------------------------------------- 1 | ../../../Expecta/Expecta/Matchers/EXPMatchers+beGreaterThanOrEqualTo.h -------------------------------------------------------------------------------- /box-auth0-swift-skeleton-app-sample/Carthage/Checkouts/Masonry/Pods/Headers/Public/Expecta/EXPMatchers+beIdenticalTo.h: -------------------------------------------------------------------------------- 1 | ../../../Expecta/Expecta/Matchers/EXPMatchers+beIdenticalTo.h -------------------------------------------------------------------------------- /box-auth0-swift-skeleton-app-sample/Carthage/Checkouts/Masonry/Pods/Headers/Public/Expecta/EXPMatchers+beInTheRangeOf.h: -------------------------------------------------------------------------------- 1 | ../../../Expecta/Expecta/Matchers/EXPMatchers+beInTheRangeOf.h -------------------------------------------------------------------------------- /box-auth0-swift-skeleton-app-sample/Carthage/Checkouts/Masonry/Pods/Headers/Public/Expecta/EXPMatchers+beInstanceOf.h: -------------------------------------------------------------------------------- 1 | ../../../Expecta/Expecta/Matchers/EXPMatchers+beInstanceOf.h -------------------------------------------------------------------------------- /box-auth0-swift-skeleton-app-sample/Carthage/Checkouts/Masonry/Pods/Headers/Public/Expecta/EXPMatchers+beKindOf.h: -------------------------------------------------------------------------------- 1 | ../../../Expecta/Expecta/Matchers/EXPMatchers+beKindOf.h -------------------------------------------------------------------------------- /box-auth0-swift-skeleton-app-sample/Carthage/Checkouts/Masonry/Pods/Headers/Public/Expecta/EXPMatchers+beLessThan.h: -------------------------------------------------------------------------------- 1 | ../../../Expecta/Expecta/Matchers/EXPMatchers+beLessThan.h -------------------------------------------------------------------------------- /box-auth0-swift-skeleton-app-sample/Carthage/Checkouts/Masonry/Pods/Headers/Public/Expecta/EXPMatchers+beLessThanOrEqualTo.h: -------------------------------------------------------------------------------- 1 | ../../../Expecta/Expecta/Matchers/EXPMatchers+beLessThanOrEqualTo.h -------------------------------------------------------------------------------- /box-auth0-swift-skeleton-app-sample/Carthage/Checkouts/Masonry/Pods/Headers/Public/Expecta/EXPMatchers+beNil.h: -------------------------------------------------------------------------------- 1 | ../../../Expecta/Expecta/Matchers/EXPMatchers+beNil.h -------------------------------------------------------------------------------- /box-auth0-swift-skeleton-app-sample/Carthage/Checkouts/Masonry/Pods/Headers/Public/Expecta/EXPMatchers+beSubclassOf.h: -------------------------------------------------------------------------------- 1 | ../../../Expecta/Expecta/Matchers/EXPMatchers+beSubclassOf.h -------------------------------------------------------------------------------- /box-auth0-swift-skeleton-app-sample/Carthage/Checkouts/Masonry/Pods/Headers/Public/Expecta/EXPMatchers+beSupersetOf.h: -------------------------------------------------------------------------------- 1 | ../../../Expecta/Expecta/Matchers/EXPMatchers+beSupersetOf.h -------------------------------------------------------------------------------- /box-auth0-swift-skeleton-app-sample/Carthage/Checkouts/Masonry/Pods/Headers/Public/Expecta/EXPMatchers+beTruthy.h: -------------------------------------------------------------------------------- 1 | ../../../Expecta/Expecta/Matchers/EXPMatchers+beTruthy.h -------------------------------------------------------------------------------- /box-auth0-swift-skeleton-app-sample/Carthage/Checkouts/Masonry/Pods/Headers/Public/Expecta/EXPMatchers+beginWith.h: -------------------------------------------------------------------------------- 1 | ../../../Expecta/Expecta/Matchers/EXPMatchers+beginWith.h -------------------------------------------------------------------------------- /box-auth0-swift-skeleton-app-sample/Carthage/Checkouts/Masonry/Pods/Headers/Public/Expecta/EXPMatchers+conformTo.h: -------------------------------------------------------------------------------- 1 | ../../../Expecta/Expecta/Matchers/EXPMatchers+conformTo.h -------------------------------------------------------------------------------- /box-auth0-swift-skeleton-app-sample/Carthage/Checkouts/Masonry/Pods/Headers/Public/Expecta/EXPMatchers+contain.h: -------------------------------------------------------------------------------- 1 | ../../../Expecta/Expecta/Matchers/EXPMatchers+contain.h -------------------------------------------------------------------------------- /box-auth0-swift-skeleton-app-sample/Carthage/Checkouts/Masonry/Pods/Headers/Public/Expecta/EXPMatchers+endWith.h: -------------------------------------------------------------------------------- 1 | ../../../Expecta/Expecta/Matchers/EXPMatchers+endWith.h -------------------------------------------------------------------------------- /box-auth0-swift-skeleton-app-sample/Carthage/Checkouts/Masonry/Pods/Headers/Public/Expecta/EXPMatchers+equal.h: -------------------------------------------------------------------------------- 1 | ../../../Expecta/Expecta/Matchers/EXPMatchers+equal.h -------------------------------------------------------------------------------- /box-auth0-swift-skeleton-app-sample/Carthage/Checkouts/Masonry/Pods/Headers/Public/Expecta/EXPMatchers+haveCountOf.h: -------------------------------------------------------------------------------- 1 | ../../../Expecta/Expecta/Matchers/EXPMatchers+haveCountOf.h -------------------------------------------------------------------------------- /box-auth0-swift-skeleton-app-sample/Carthage/Checkouts/Masonry/Pods/Headers/Public/Expecta/EXPMatchers+match.h: -------------------------------------------------------------------------------- 1 | ../../../Expecta/Expecta/Matchers/EXPMatchers+match.h -------------------------------------------------------------------------------- /box-auth0-swift-skeleton-app-sample/Carthage/Checkouts/Masonry/Pods/Headers/Public/Expecta/EXPMatchers+postNotification.h: -------------------------------------------------------------------------------- 1 | ../../../Expecta/Expecta/Matchers/EXPMatchers+postNotification.h -------------------------------------------------------------------------------- /box-auth0-swift-skeleton-app-sample/Carthage/Checkouts/Masonry/Pods/Headers/Public/Expecta/EXPMatchers+raise.h: -------------------------------------------------------------------------------- 1 | ../../../Expecta/Expecta/Matchers/EXPMatchers+raise.h -------------------------------------------------------------------------------- /box-auth0-swift-skeleton-app-sample/Carthage/Checkouts/Masonry/Pods/Headers/Public/Expecta/EXPMatchers+raiseWithReason.h: -------------------------------------------------------------------------------- 1 | ../../../Expecta/Expecta/Matchers/EXPMatchers+raiseWithReason.h -------------------------------------------------------------------------------- /box-auth0-swift-skeleton-app-sample/Carthage/Checkouts/Masonry/Pods/Headers/Public/Expecta/EXPMatchers+respondTo.h: -------------------------------------------------------------------------------- 1 | ../../../Expecta/Expecta/Matchers/EXPMatchers+respondTo.h -------------------------------------------------------------------------------- /box-auth0-swift-skeleton-app-sample/Carthage/Checkouts/Masonry/Pods/Headers/Public/Expecta/EXPMatchers.h: -------------------------------------------------------------------------------- 1 | ../../../Expecta/Expecta/Matchers/EXPMatchers.h -------------------------------------------------------------------------------- /box-auth0-swift-skeleton-app-sample/Carthage/Checkouts/Masonry/Pods/Headers/Public/Expecta/EXPUnsupportedObject.h: -------------------------------------------------------------------------------- 1 | ../../../Expecta/Expecta/EXPUnsupportedObject.h -------------------------------------------------------------------------------- /box-auth0-swift-skeleton-app-sample/Carthage/Checkouts/Masonry/Pods/Headers/Public/Expecta/Expecta.h: -------------------------------------------------------------------------------- 1 | ../../../Expecta/Expecta/Expecta.h -------------------------------------------------------------------------------- /box-auth0-swift-skeleton-app-sample/Carthage/Checkouts/Masonry/Pods/Headers/Public/Expecta/ExpectaObject.h: -------------------------------------------------------------------------------- 1 | ../../../Expecta/Expecta/ExpectaObject.h -------------------------------------------------------------------------------- /box-auth0-swift-skeleton-app-sample/Carthage/Checkouts/Masonry/Pods/Headers/Public/Expecta/ExpectaSupport.h: -------------------------------------------------------------------------------- 1 | ../../../Expecta/Expecta/ExpectaSupport.h -------------------------------------------------------------------------------- /box-auth0-swift-skeleton-app-sample/Carthage/Checkouts/Masonry/Pods/Headers/Public/Expecta/NSObject+Expecta.h: -------------------------------------------------------------------------------- 1 | ../../../Expecta/Expecta/NSObject+Expecta.h -------------------------------------------------------------------------------- /box-auth0-swift-skeleton-app-sample/Carthage/Checkouts/Masonry/Pods/Headers/Public/Expecta/NSValue+Expecta.h: -------------------------------------------------------------------------------- 1 | ../../../Expecta/Expecta/NSValue+Expecta.h -------------------------------------------------------------------------------- /box-auth0-swift-skeleton-app-sample/Carthage/Checkouts/Masonry/Pods/Headers/Public/Masonry/MASCompositeConstraint.h: -------------------------------------------------------------------------------- 1 | ../../../../Masonry/MASCompositeConstraint.h -------------------------------------------------------------------------------- /box-auth0-swift-skeleton-app-sample/Carthage/Checkouts/Masonry/Pods/Headers/Public/Masonry/MASConstraint+Private.h: -------------------------------------------------------------------------------- 1 | ../../../../Masonry/MASConstraint+Private.h -------------------------------------------------------------------------------- /box-auth0-swift-skeleton-app-sample/Carthage/Checkouts/Masonry/Pods/Headers/Public/Masonry/MASConstraint.h: -------------------------------------------------------------------------------- 1 | ../../../../Masonry/MASConstraint.h -------------------------------------------------------------------------------- /box-auth0-swift-skeleton-app-sample/Carthage/Checkouts/Masonry/Pods/Headers/Public/Masonry/MASConstraintMaker.h: -------------------------------------------------------------------------------- 1 | ../../../../Masonry/MASConstraintMaker.h -------------------------------------------------------------------------------- /box-auth0-swift-skeleton-app-sample/Carthage/Checkouts/Masonry/Pods/Headers/Public/Masonry/MASLayoutConstraint.h: -------------------------------------------------------------------------------- 1 | ../../../../Masonry/MASLayoutConstraint.h -------------------------------------------------------------------------------- /box-auth0-swift-skeleton-app-sample/Carthage/Checkouts/Masonry/Pods/Headers/Public/Masonry/MASUtilities.h: -------------------------------------------------------------------------------- 1 | ../../../../Masonry/MASUtilities.h -------------------------------------------------------------------------------- /box-auth0-swift-skeleton-app-sample/Carthage/Checkouts/Masonry/Pods/Headers/Public/Masonry/MASViewAttribute.h: -------------------------------------------------------------------------------- 1 | ../../../../Masonry/MASViewAttribute.h -------------------------------------------------------------------------------- /box-auth0-swift-skeleton-app-sample/Carthage/Checkouts/Masonry/Pods/Headers/Public/Masonry/MASViewConstraint.h: -------------------------------------------------------------------------------- 1 | ../../../../Masonry/MASViewConstraint.h -------------------------------------------------------------------------------- /box-auth0-swift-skeleton-app-sample/Carthage/Checkouts/Masonry/Pods/Headers/Public/Masonry/Masonry.h: -------------------------------------------------------------------------------- 1 | ../../../../Masonry/Masonry.h -------------------------------------------------------------------------------- /box-auth0-swift-skeleton-app-sample/Carthage/Checkouts/Masonry/Pods/Headers/Public/Masonry/NSArray+MASAdditions.h: -------------------------------------------------------------------------------- 1 | ../../../../Masonry/NSArray+MASAdditions.h -------------------------------------------------------------------------------- /box-auth0-swift-skeleton-app-sample/Carthage/Checkouts/Masonry/Pods/Headers/Public/Masonry/NSArray+MASShorthandAdditions.h: -------------------------------------------------------------------------------- 1 | ../../../../Masonry/NSArray+MASShorthandAdditions.h -------------------------------------------------------------------------------- /box-auth0-swift-skeleton-app-sample/Carthage/Checkouts/Masonry/Pods/Headers/Public/Masonry/NSLayoutConstraint+MASDebugAdditions.h: -------------------------------------------------------------------------------- 1 | ../../../../Masonry/NSLayoutConstraint+MASDebugAdditions.h -------------------------------------------------------------------------------- /box-auth0-swift-skeleton-app-sample/Carthage/Checkouts/Masonry/Pods/Headers/Public/Masonry/View+MASAdditions.h: -------------------------------------------------------------------------------- 1 | ../../../../Masonry/View+MASAdditions.h -------------------------------------------------------------------------------- /box-auth0-swift-skeleton-app-sample/Carthage/Checkouts/Masonry/Pods/Headers/Public/Masonry/View+MASShorthandAdditions.h: -------------------------------------------------------------------------------- 1 | ../../../../Masonry/View+MASShorthandAdditions.h -------------------------------------------------------------------------------- /box-auth0-swift-skeleton-app-sample/Carthage/Checkouts/Masonry/Pods/Headers/Public/Masonry/ViewController+MASAdditions.h: -------------------------------------------------------------------------------- 1 | ../../../../Masonry/ViewController+MASAdditions.h -------------------------------------------------------------------------------- /box-auth0-swift-skeleton-app-sample/Carthage/Checkouts/Masonry/Pods/Manifest.lock: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/box/samples/HEAD/box-auth0-swift-skeleton-app-sample/Carthage/Checkouts/Masonry/Pods/Manifest.lock -------------------------------------------------------------------------------- /box-auth0-swift-skeleton-app-sample/Carthage/Checkouts/Masonry/Pods/ObjectiveC.gcda: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/box/samples/HEAD/box-auth0-swift-skeleton-app-sample/Carthage/Checkouts/Masonry/Pods/ObjectiveC.gcda -------------------------------------------------------------------------------- /box-auth0-swift-skeleton-app-sample/Carthage/Checkouts/Masonry/Pods/ObjectiveC.gcno: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/box/samples/HEAD/box-auth0-swift-skeleton-app-sample/Carthage/Checkouts/Masonry/Pods/ObjectiveC.gcno -------------------------------------------------------------------------------- /box-auth0-swift-skeleton-app-sample/Carthage/Checkouts/Masonry/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/box/samples/HEAD/box-auth0-swift-skeleton-app-sample/Carthage/Checkouts/Masonry/README.md -------------------------------------------------------------------------------- /box-auth0-swift-skeleton-app-sample/Carthage/Checkouts/Masonry/Tests/GcovTestObserver.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/box/samples/HEAD/box-auth0-swift-skeleton-app-sample/Carthage/Checkouts/Masonry/Tests/GcovTestObserver.m -------------------------------------------------------------------------------- /box-auth0-swift-skeleton-app-sample/Carthage/Checkouts/Masonry/Tests/MasonryTestsLoader/en.lproj/InfoPlist.strings: -------------------------------------------------------------------------------- 1 | /* Localized versions of Info.plist keys */ 2 | 3 | -------------------------------------------------------------------------------- /box-auth0-swift-skeleton-app-sample/Carthage/Checkouts/Masonry/Tests/XCTest+Spec.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/box/samples/HEAD/box-auth0-swift-skeleton-app-sample/Carthage/Checkouts/Masonry/Tests/XCTest+Spec.h -------------------------------------------------------------------------------- /box-auth0-swift-skeleton-app-sample/Carthage/Checkouts/Masonry/script/coveralls.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/box/samples/HEAD/box-auth0-swift-skeleton-app-sample/Carthage/Checkouts/Masonry/script/coveralls.sh -------------------------------------------------------------------------------- /box-auth0-swift-skeleton-app-sample/Carthage/Checkouts/Masonry/script/exportenv.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/box/samples/HEAD/box-auth0-swift-skeleton-app-sample/Carthage/Checkouts/Masonry/script/exportenv.sh -------------------------------------------------------------------------------- /box-auth0-swift-skeleton-app-sample/Carthage/Checkouts/SimpleKeychain/.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/box/samples/HEAD/box-auth0-swift-skeleton-app-sample/Carthage/Checkouts/SimpleKeychain/.gitignore -------------------------------------------------------------------------------- /box-auth0-swift-skeleton-app-sample/Carthage/Checkouts/SimpleKeychain/.travis.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/box/samples/HEAD/box-auth0-swift-skeleton-app-sample/Carthage/Checkouts/SimpleKeychain/.travis.yml -------------------------------------------------------------------------------- /box-auth0-swift-skeleton-app-sample/Carthage/Checkouts/SimpleKeychain/CHANGELOG.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/box/samples/HEAD/box-auth0-swift-skeleton-app-sample/Carthage/Checkouts/SimpleKeychain/CHANGELOG.md -------------------------------------------------------------------------------- /box-auth0-swift-skeleton-app-sample/Carthage/Checkouts/SimpleKeychain/Cartfile.private: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/box/samples/HEAD/box-auth0-swift-skeleton-app-sample/Carthage/Checkouts/SimpleKeychain/Cartfile.private -------------------------------------------------------------------------------- /box-auth0-swift-skeleton-app-sample/Carthage/Checkouts/SimpleKeychain/Cartfile.resolved: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/box/samples/HEAD/box-auth0-swift-skeleton-app-sample/Carthage/Checkouts/SimpleKeychain/Cartfile.resolved -------------------------------------------------------------------------------- /box-auth0-swift-skeleton-app-sample/Carthage/Checkouts/SimpleKeychain/Gemfile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/box/samples/HEAD/box-auth0-swift-skeleton-app-sample/Carthage/Checkouts/SimpleKeychain/Gemfile -------------------------------------------------------------------------------- /box-auth0-swift-skeleton-app-sample/Carthage/Checkouts/SimpleKeychain/Gemfile.lock: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/box/samples/HEAD/box-auth0-swift-skeleton-app-sample/Carthage/Checkouts/SimpleKeychain/Gemfile.lock -------------------------------------------------------------------------------- /box-auth0-swift-skeleton-app-sample/Carthage/Checkouts/SimpleKeychain/LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/box/samples/HEAD/box-auth0-swift-skeleton-app-sample/Carthage/Checkouts/SimpleKeychain/LICENSE -------------------------------------------------------------------------------- /box-auth0-swift-skeleton-app-sample/Carthage/Checkouts/SimpleKeychain/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/box/samples/HEAD/box-auth0-swift-skeleton-app-sample/Carthage/Checkouts/SimpleKeychain/README.md -------------------------------------------------------------------------------- /box-auth0-swift-skeleton-app-sample/Carthage/Checkouts/SimpleKeychain/fastlane/Appfile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/box/samples/HEAD/box-auth0-swift-skeleton-app-sample/Carthage/Checkouts/SimpleKeychain/fastlane/Appfile -------------------------------------------------------------------------------- /box-auth0-swift-skeleton-app-sample/Carthage/Checkouts/SimpleKeychain/fastlane/Fastfile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/box/samples/HEAD/box-auth0-swift-skeleton-app-sample/Carthage/Checkouts/SimpleKeychain/fastlane/Fastfile -------------------------------------------------------------------------------- /box-auth0-swift-skeleton-app-sample/Carthage/Checkouts/SimpleKeychain/fastlane/Pluginfile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/box/samples/HEAD/box-auth0-swift-skeleton-app-sample/Carthage/Checkouts/SimpleKeychain/fastlane/Pluginfile -------------------------------------------------------------------------------- /box-auth0-swift-skeleton-app-sample/Carthage/Checkouts/SimpleKeychain/fastlane/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/box/samples/HEAD/box-auth0-swift-skeleton-app-sample/Carthage/Checkouts/SimpleKeychain/fastlane/README.md -------------------------------------------------------------------------------- /box-auth0-swift-skeleton-app-sample/Carthage/Checkouts/SimpleKeychain/fastlane/Scanfile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/box/samples/HEAD/box-auth0-swift-skeleton-app-sample/Carthage/Checkouts/SimpleKeychain/fastlane/Scanfile -------------------------------------------------------------------------------- /box-auth0-swift-skeleton-app-sample/Carthage/Checkouts/box-ios-browse-sdk/.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/box/samples/HEAD/box-auth0-swift-skeleton-app-sample/Carthage/Checkouts/box-ios-browse-sdk/.gitignore -------------------------------------------------------------------------------- /box-auth0-swift-skeleton-app-sample/Carthage/Checkouts/box-ios-browse-sdk/CONTRIBUTING.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/box/samples/HEAD/box-auth0-swift-skeleton-app-sample/Carthage/Checkouts/box-ios-browse-sdk/CONTRIBUTING.md -------------------------------------------------------------------------------- /box-auth0-swift-skeleton-app-sample/Carthage/Checkouts/box-ios-browse-sdk/Cartfile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/box/samples/HEAD/box-auth0-swift-skeleton-app-sample/Carthage/Checkouts/box-ios-browse-sdk/Cartfile -------------------------------------------------------------------------------- /box-auth0-swift-skeleton-app-sample/Carthage/Checkouts/box-ios-browse-sdk/LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/box/samples/HEAD/box-auth0-swift-skeleton-app-sample/Carthage/Checkouts/box-ios-browse-sdk/LICENSE -------------------------------------------------------------------------------- /box-auth0-swift-skeleton-app-sample/Carthage/Checkouts/box-ios-browse-sdk/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/box/samples/HEAD/box-auth0-swift-skeleton-app-sample/Carthage/Checkouts/box-ios-browse-sdk/README.md -------------------------------------------------------------------------------- /box-auth0-swift-skeleton-app-sample/Carthage/Checkouts/box-ios-sdk/.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/box/samples/HEAD/box-auth0-swift-skeleton-app-sample/Carthage/Checkouts/box-ios-sdk/.gitignore -------------------------------------------------------------------------------- /box-auth0-swift-skeleton-app-sample/Carthage/Checkouts/box-ios-sdk/.travis.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/box/samples/HEAD/box-auth0-swift-skeleton-app-sample/Carthage/Checkouts/box-ios-sdk/.travis.yml -------------------------------------------------------------------------------- /box-auth0-swift-skeleton-app-sample/Carthage/Checkouts/box-ios-sdk/BoxContentSDK/BoxContentSDKResources/en.lproj/InfoPlist.strings: -------------------------------------------------------------------------------- 1 | /* Localized versions of Info.plist keys */ 2 | 3 | -------------------------------------------------------------------------------- /box-auth0-swift-skeleton-app-sample/Carthage/Checkouts/box-ios-sdk/BoxContentSDK/BoxContentSDKTests/empty.json: -------------------------------------------------------------------------------- 1 | { 2 | } -------------------------------------------------------------------------------- /box-auth0-swift-skeleton-app-sample/Carthage/Checkouts/box-ios-sdk/BoxContentSDK/LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/box/samples/HEAD/box-auth0-swift-skeleton-app-sample/Carthage/Checkouts/box-ios-sdk/BoxContentSDK/LICENSE -------------------------------------------------------------------------------- /box-auth0-swift-skeleton-app-sample/Carthage/Checkouts/box-ios-sdk/CONTRIBUTING.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/box/samples/HEAD/box-auth0-swift-skeleton-app-sample/Carthage/Checkouts/box-ios-sdk/CONTRIBUTING.md -------------------------------------------------------------------------------- /box-auth0-swift-skeleton-app-sample/Carthage/Checkouts/box-ios-sdk/LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/box/samples/HEAD/box-auth0-swift-skeleton-app-sample/Carthage/Checkouts/box-ios-sdk/LICENSE -------------------------------------------------------------------------------- /box-auth0-swift-skeleton-app-sample/Carthage/Checkouts/box-ios-sdk/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/box/samples/HEAD/box-auth0-swift-skeleton-app-sample/Carthage/Checkouts/box-ios-sdk/README.md -------------------------------------------------------------------------------- /box-auth0-swift-skeleton-app-sample/Carthage/Checkouts/box-ios-sdk/doc/AppUsers.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/box/samples/HEAD/box-auth0-swift-skeleton-app-sample/Carthage/Checkouts/box-ios-sdk/doc/AppUsers.md -------------------------------------------------------------------------------- /box-auth0-swift-skeleton-app-sample/Carthage/Checkouts/box-ios-sdk/doc/Authentication.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/box/samples/HEAD/box-auth0-swift-skeleton-app-sample/Carthage/Checkouts/box-ios-sdk/doc/Authentication.md -------------------------------------------------------------------------------- /box-auth0-swift-skeleton-app-sample/Carthage/Checkouts/box-ios-sdk/doc/Collaborations.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/box/samples/HEAD/box-auth0-swift-skeleton-app-sample/Carthage/Checkouts/box-ios-sdk/doc/Collaborations.md -------------------------------------------------------------------------------- /box-auth0-swift-skeleton-app-sample/Carthage/Checkouts/box-ios-sdk/doc/Comments.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/box/samples/HEAD/box-auth0-swift-skeleton-app-sample/Carthage/Checkouts/box-ios-sdk/doc/Comments.md -------------------------------------------------------------------------------- /box-auth0-swift-skeleton-app-sample/Carthage/Checkouts/box-ios-sdk/doc/Events.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/box/samples/HEAD/box-auth0-swift-skeleton-app-sample/Carthage/Checkouts/box-ios-sdk/doc/Events.md -------------------------------------------------------------------------------- /box-auth0-swift-skeleton-app-sample/Carthage/Checkouts/box-ios-sdk/doc/Files.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/box/samples/HEAD/box-auth0-swift-skeleton-app-sample/Carthage/Checkouts/box-ios-sdk/doc/Files.md -------------------------------------------------------------------------------- /box-auth0-swift-skeleton-app-sample/Carthage/Checkouts/box-ios-sdk/doc/Folders.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/box/samples/HEAD/box-auth0-swift-skeleton-app-sample/Carthage/Checkouts/box-ios-sdk/doc/Folders.md -------------------------------------------------------------------------------- /box-auth0-swift-skeleton-app-sample/Carthage/Checkouts/box-ios-sdk/doc/Search.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/box/samples/HEAD/box-auth0-swift-skeleton-app-sample/Carthage/Checkouts/box-ios-sdk/doc/Search.md -------------------------------------------------------------------------------- /box-auth0-swift-skeleton-app-sample/Carthage/Checkouts/box-ios-sdk/doc/Setup.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/box/samples/HEAD/box-auth0-swift-skeleton-app-sample/Carthage/Checkouts/box-ios-sdk/doc/Setup.md -------------------------------------------------------------------------------- /box-auth0-swift-skeleton-app-sample/Carthage/Checkouts/box-ios-sdk/doc/Users.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/box/samples/HEAD/box-auth0-swift-skeleton-app-sample/Carthage/Checkouts/box-ios-sdk/doc/Users.md -------------------------------------------------------------------------------- /box-auth0-swift-skeleton-app-sample/Carthage/Checkouts/box-ios-sdk/doc/metadata.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/box/samples/HEAD/box-auth0-swift-skeleton-app-sample/Carthage/Checkouts/box-ios-sdk/doc/metadata.md -------------------------------------------------------------------------------- /box-auth0-swift-skeleton-app-sample/LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/box/samples/HEAD/box-auth0-swift-skeleton-app-sample/LICENSE -------------------------------------------------------------------------------- /box-auth0-swift-skeleton-app-sample/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/box/samples/HEAD/box-auth0-swift-skeleton-app-sample/README.md -------------------------------------------------------------------------------- /box-aws-cognito-angular2-skeleton-app-sample/.angular-cli.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/box/samples/HEAD/box-aws-cognito-angular2-skeleton-app-sample/.angular-cli.json -------------------------------------------------------------------------------- /box-aws-cognito-angular2-skeleton-app-sample/.editorconfig: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/box/samples/HEAD/box-aws-cognito-angular2-skeleton-app-sample/.editorconfig -------------------------------------------------------------------------------- /box-aws-cognito-angular2-skeleton-app-sample/.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/box/samples/HEAD/box-aws-cognito-angular2-skeleton-app-sample/.gitignore -------------------------------------------------------------------------------- /box-aws-cognito-angular2-skeleton-app-sample/LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/box/samples/HEAD/box-aws-cognito-angular2-skeleton-app-sample/LICENSE -------------------------------------------------------------------------------- /box-aws-cognito-angular2-skeleton-app-sample/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/box/samples/HEAD/box-aws-cognito-angular2-skeleton-app-sample/README.md -------------------------------------------------------------------------------- /box-aws-cognito-angular2-skeleton-app-sample/e2e/app.e2e-spec.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/box/samples/HEAD/box-aws-cognito-angular2-skeleton-app-sample/e2e/app.e2e-spec.ts -------------------------------------------------------------------------------- /box-aws-cognito-angular2-skeleton-app-sample/e2e/app.po.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/box/samples/HEAD/box-aws-cognito-angular2-skeleton-app-sample/e2e/app.po.ts -------------------------------------------------------------------------------- /box-aws-cognito-angular2-skeleton-app-sample/e2e/tsconfig.e2e.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/box/samples/HEAD/box-aws-cognito-angular2-skeleton-app-sample/e2e/tsconfig.e2e.json -------------------------------------------------------------------------------- /box-aws-cognito-angular2-skeleton-app-sample/karma.conf.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/box/samples/HEAD/box-aws-cognito-angular2-skeleton-app-sample/karma.conf.js -------------------------------------------------------------------------------- /box-aws-cognito-angular2-skeleton-app-sample/package.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/box/samples/HEAD/box-aws-cognito-angular2-skeleton-app-sample/package.json -------------------------------------------------------------------------------- /box-aws-cognito-angular2-skeleton-app-sample/protractor.conf.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/box/samples/HEAD/box-aws-cognito-angular2-skeleton-app-sample/protractor.conf.js -------------------------------------------------------------------------------- /box-aws-cognito-angular2-skeleton-app-sample/src/app/app-routing.module.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/box/samples/HEAD/box-aws-cognito-angular2-skeleton-app-sample/src/app/app-routing.module.ts -------------------------------------------------------------------------------- /box-aws-cognito-angular2-skeleton-app-sample/src/app/app.module.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/box/samples/HEAD/box-aws-cognito-angular2-skeleton-app-sample/src/app/app.module.ts -------------------------------------------------------------------------------- /box-aws-cognito-angular2-skeleton-app-sample/src/app/components/add-new-folder/add-new-folder.component.css: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /box-aws-cognito-angular2-skeleton-app-sample/src/app/components/auth/login/login.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/box/samples/HEAD/box-aws-cognito-angular2-skeleton-app-sample/src/app/components/auth/login/login.html -------------------------------------------------------------------------------- /box-aws-cognito-angular2-skeleton-app-sample/src/app/components/box-explorer/box-explorer.component.css: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /box-aws-cognito-angular2-skeleton-app-sample/src/app/components/file-detail-view/file-detail-view.component.css: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /box-aws-cognito-angular2-skeleton-app-sample/src/app/components/file-upload/file-upload.component.css: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /box-aws-cognito-angular2-skeleton-app-sample/src/app/components/file-view/file-view.component.css: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /box-aws-cognito-angular2-skeleton-app-sample/src/app/components/folder-path/folder-path.component.css: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /box-aws-cognito-angular2-skeleton-app-sample/src/app/components/folder-view/folder-view.component.css: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /box-aws-cognito-angular2-skeleton-app-sample/src/app/components/preview-modal/preview-modal.component.css: -------------------------------------------------------------------------------- 1 | .boxPreviewSelector { 2 | height: 400px; 3 | } -------------------------------------------------------------------------------- /box-aws-cognito-angular2-skeleton-app-sample/src/app/components/welcome-view/welcome-view.component.css: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /box-aws-cognito-angular2-skeleton-app-sample/src/app/config/box/box.config.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/box/samples/HEAD/box-aws-cognito-angular2-skeleton-app-sample/src/app/config/box/box.config.ts -------------------------------------------------------------------------------- /box-aws-cognito-angular2-skeleton-app-sample/src/app/models/box/box-create-folder.model.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/box/samples/HEAD/box-aws-cognito-angular2-skeleton-app-sample/src/app/models/box/box-create-folder.model.ts -------------------------------------------------------------------------------- /box-aws-cognito-angular2-skeleton-app-sample/src/app/models/box/box-file.model.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/box/samples/HEAD/box-aws-cognito-angular2-skeleton-app-sample/src/app/models/box/box-file.model.ts -------------------------------------------------------------------------------- /box-aws-cognito-angular2-skeleton-app-sample/src/app/models/box/box-folder.model.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/box/samples/HEAD/box-aws-cognito-angular2-skeleton-app-sample/src/app/models/box/box-folder.model.ts -------------------------------------------------------------------------------- /box-aws-cognito-angular2-skeleton-app-sample/src/app/models/box/box-item.model.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/box/samples/HEAD/box-aws-cognito-angular2-skeleton-app-sample/src/app/models/box/box-item.model.ts -------------------------------------------------------------------------------- /box-aws-cognito-angular2-skeleton-app-sample/src/app/models/box/box-user-stub.model.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/box/samples/HEAD/box-aws-cognito-angular2-skeleton-app-sample/src/app/models/box/box-user-stub.model.ts -------------------------------------------------------------------------------- /box-aws-cognito-angular2-skeleton-app-sample/src/app/services/auth/auth.guard.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/box/samples/HEAD/box-aws-cognito-angular2-skeleton-app-sample/src/app/services/auth/auth.guard.ts -------------------------------------------------------------------------------- /box-aws-cognito-angular2-skeleton-app-sample/src/app/services/auth/auth.service.spec.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/box/samples/HEAD/box-aws-cognito-angular2-skeleton-app-sample/src/app/services/auth/auth.service.spec.ts -------------------------------------------------------------------------------- /box-aws-cognito-angular2-skeleton-app-sample/src/app/services/auth/auth.service.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/box/samples/HEAD/box-aws-cognito-angular2-skeleton-app-sample/src/app/services/auth/auth.service.ts -------------------------------------------------------------------------------- /box-aws-cognito-angular2-skeleton-app-sample/src/app/services/aws/aws.service.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/box/samples/HEAD/box-aws-cognito-angular2-skeleton-app-sample/src/app/services/aws/aws.service.ts -------------------------------------------------------------------------------- /box-aws-cognito-angular2-skeleton-app-sample/src/app/services/aws/cognito.service.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/box/samples/HEAD/box-aws-cognito-angular2-skeleton-app-sample/src/app/services/aws/cognito.service.ts -------------------------------------------------------------------------------- /box-aws-cognito-angular2-skeleton-app-sample/src/app/services/box/box-client.service.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/box/samples/HEAD/box-aws-cognito-angular2-skeleton-app-sample/src/app/services/box/box-client.service.ts -------------------------------------------------------------------------------- /box-aws-cognito-angular2-skeleton-app-sample/src/app/services/box/box-file-service.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/box/samples/HEAD/box-aws-cognito-angular2-skeleton-app-sample/src/app/services/box/box-file-service.ts -------------------------------------------------------------------------------- /box-aws-cognito-angular2-skeleton-app-sample/src/app/services/box/box-folder-service.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/box/samples/HEAD/box-aws-cognito-angular2-skeleton-app-sample/src/app/services/box/box-folder-service.ts -------------------------------------------------------------------------------- /box-aws-cognito-angular2-skeleton-app-sample/src/assets/.gitkeep: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /box-aws-cognito-angular2-skeleton-app-sample/src/assets/img/box_blue.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/box/samples/HEAD/box-aws-cognito-angular2-skeleton-app-sample/src/assets/img/box_blue.png -------------------------------------------------------------------------------- /box-aws-cognito-angular2-skeleton-app-sample/src/assets/js/amazon-cognito-identity.min.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/box/samples/HEAD/box-aws-cognito-angular2-skeleton-app-sample/src/assets/js/amazon-cognito-identity.min.js -------------------------------------------------------------------------------- /box-aws-cognito-angular2-skeleton-app-sample/src/assets/js/aws-cognito-sdk.min.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/box/samples/HEAD/box-aws-cognito-angular2-skeleton-app-sample/src/assets/js/aws-cognito-sdk.min.js -------------------------------------------------------------------------------- /box-aws-cognito-angular2-skeleton-app-sample/src/assets/js/aws-sdk-2.7.13.min.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/box/samples/HEAD/box-aws-cognito-angular2-skeleton-app-sample/src/assets/js/aws-sdk-2.7.13.min.js -------------------------------------------------------------------------------- /box-aws-cognito-angular2-skeleton-app-sample/src/assets/js/aws-sdk-mobile-analytics.min.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/box/samples/HEAD/box-aws-cognito-angular2-skeleton-app-sample/src/assets/js/aws-sdk-mobile-analytics.min.js -------------------------------------------------------------------------------- /box-aws-cognito-angular2-skeleton-app-sample/src/assets/js/aws-sdk-s3.min.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/box/samples/HEAD/box-aws-cognito-angular2-skeleton-app-sample/src/assets/js/aws-sdk-s3.min.js -------------------------------------------------------------------------------- /box-aws-cognito-angular2-skeleton-app-sample/src/assets/js/jsbn.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/box/samples/HEAD/box-aws-cognito-angular2-skeleton-app-sample/src/assets/js/jsbn.js -------------------------------------------------------------------------------- /box-aws-cognito-angular2-skeleton-app-sample/src/assets/js/jsbn2.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/box/samples/HEAD/box-aws-cognito-angular2-skeleton-app-sample/src/assets/js/jsbn2.js -------------------------------------------------------------------------------- /box-aws-cognito-angular2-skeleton-app-sample/src/assets/js/sjcl.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/box/samples/HEAD/box-aws-cognito-angular2-skeleton-app-sample/src/assets/js/sjcl.js -------------------------------------------------------------------------------- /box-aws-cognito-angular2-skeleton-app-sample/src/assets/loading.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/box/samples/HEAD/box-aws-cognito-angular2-skeleton-app-sample/src/assets/loading.svg -------------------------------------------------------------------------------- /box-aws-cognito-angular2-skeleton-app-sample/src/environments/environment.prod.ts: -------------------------------------------------------------------------------- 1 | export const environment = { 2 | production: true 3 | }; 4 | -------------------------------------------------------------------------------- /box-aws-cognito-angular2-skeleton-app-sample/src/environments/environment.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/box/samples/HEAD/box-aws-cognito-angular2-skeleton-app-sample/src/environments/environment.ts -------------------------------------------------------------------------------- /box-aws-cognito-angular2-skeleton-app-sample/src/favicon.ico: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/box/samples/HEAD/box-aws-cognito-angular2-skeleton-app-sample/src/favicon.ico -------------------------------------------------------------------------------- /box-aws-cognito-angular2-skeleton-app-sample/src/index.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/box/samples/HEAD/box-aws-cognito-angular2-skeleton-app-sample/src/index.html -------------------------------------------------------------------------------- /box-aws-cognito-angular2-skeleton-app-sample/src/main.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/box/samples/HEAD/box-aws-cognito-angular2-skeleton-app-sample/src/main.ts -------------------------------------------------------------------------------- /box-aws-cognito-angular2-skeleton-app-sample/src/polyfills.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/box/samples/HEAD/box-aws-cognito-angular2-skeleton-app-sample/src/polyfills.ts -------------------------------------------------------------------------------- /box-aws-cognito-angular2-skeleton-app-sample/src/styles.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/box/samples/HEAD/box-aws-cognito-angular2-skeleton-app-sample/src/styles.css -------------------------------------------------------------------------------- /box-aws-cognito-angular2-skeleton-app-sample/src/test.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/box/samples/HEAD/box-aws-cognito-angular2-skeleton-app-sample/src/test.ts -------------------------------------------------------------------------------- /box-aws-cognito-angular2-skeleton-app-sample/src/tsconfig.app.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/box/samples/HEAD/box-aws-cognito-angular2-skeleton-app-sample/src/tsconfig.app.json -------------------------------------------------------------------------------- /box-aws-cognito-angular2-skeleton-app-sample/src/tsconfig.spec.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/box/samples/HEAD/box-aws-cognito-angular2-skeleton-app-sample/src/tsconfig.spec.json -------------------------------------------------------------------------------- /box-aws-cognito-angular2-skeleton-app-sample/src/typings.d.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/box/samples/HEAD/box-aws-cognito-angular2-skeleton-app-sample/src/typings.d.ts -------------------------------------------------------------------------------- /box-aws-cognito-angular2-skeleton-app-sample/tsconfig.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/box/samples/HEAD/box-aws-cognito-angular2-skeleton-app-sample/tsconfig.json -------------------------------------------------------------------------------- /box-aws-cognito-angular2-skeleton-app-sample/tslint.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/box/samples/HEAD/box-aws-cognito-angular2-skeleton-app-sample/tslint.json -------------------------------------------------------------------------------- /box-aws-cognito-angular2-skeleton-app-sample/yarn.lock: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/box/samples/HEAD/box-aws-cognito-angular2-skeleton-app-sample/yarn.lock -------------------------------------------------------------------------------- /box-java-servlet-skeleton-app/.classpath: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/box/samples/HEAD/box-java-servlet-skeleton-app/.classpath -------------------------------------------------------------------------------- /box-java-servlet-skeleton-app/.project: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/box/samples/HEAD/box-java-servlet-skeleton-app/.project -------------------------------------------------------------------------------- /box-java-servlet-skeleton-app/.settings/org.eclipse.jdt.core.prefs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/box/samples/HEAD/box-java-servlet-skeleton-app/.settings/org.eclipse.jdt.core.prefs -------------------------------------------------------------------------------- /box-java-servlet-skeleton-app/.settings/org.eclipse.m2e.core.prefs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/box/samples/HEAD/box-java-servlet-skeleton-app/.settings/org.eclipse.m2e.core.prefs -------------------------------------------------------------------------------- /box-java-servlet-skeleton-app/Dockerfile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/box/samples/HEAD/box-java-servlet-skeleton-app/Dockerfile -------------------------------------------------------------------------------- /box-java-servlet-skeleton-app/LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/box/samples/HEAD/box-java-servlet-skeleton-app/LICENSE -------------------------------------------------------------------------------- /box-java-servlet-skeleton-app/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/box/samples/HEAD/box-java-servlet-skeleton-app/README.md -------------------------------------------------------------------------------- /box-java-servlet-skeleton-app/UnlimitedJCEPolicyJDK8/README.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/box/samples/HEAD/box-java-servlet-skeleton-app/UnlimitedJCEPolicyJDK8/README.txt -------------------------------------------------------------------------------- /box-java-servlet-skeleton-app/docker-compose.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/box/samples/HEAD/box-java-servlet-skeleton-app/docker-compose.yml -------------------------------------------------------------------------------- /box-java-servlet-skeleton-app/pom.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/box/samples/HEAD/box-java-servlet-skeleton-app/pom.xml -------------------------------------------------------------------------------- /box-java-servlet-skeleton-app/src/main/java/com/box/example/Auth0Filter.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/box/samples/HEAD/box-java-servlet-skeleton-app/src/main/java/com/box/example/Auth0Filter.java -------------------------------------------------------------------------------- /box-java-servlet-skeleton-app/src/main/java/com/box/example/CallbackServlet.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/box/samples/HEAD/box-java-servlet-skeleton-app/src/main/java/com/box/example/CallbackServlet.java -------------------------------------------------------------------------------- /box-java-servlet-skeleton-app/src/main/java/com/box/example/ContentPickerServlet.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/box/samples/HEAD/box-java-servlet-skeleton-app/src/main/java/com/box/example/ContentPickerServlet.java -------------------------------------------------------------------------------- /box-java-servlet-skeleton-app/src/main/java/com/box/example/ContentTreeServlet.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/box/samples/HEAD/box-java-servlet-skeleton-app/src/main/java/com/box/example/ContentTreeServlet.java -------------------------------------------------------------------------------- /box-java-servlet-skeleton-app/src/main/java/com/box/example/ContentUploaderServlet.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/box/samples/HEAD/box-java-servlet-skeleton-app/src/main/java/com/box/example/ContentUploaderServlet.java -------------------------------------------------------------------------------- /box-java-servlet-skeleton-app/src/main/java/com/box/example/DashboardServlet.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/box/samples/HEAD/box-java-servlet-skeleton-app/src/main/java/com/box/example/DashboardServlet.java -------------------------------------------------------------------------------- /box-java-servlet-skeleton-app/src/main/java/com/box/example/LoginServlet.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/box/samples/HEAD/box-java-servlet-skeleton-app/src/main/java/com/box/example/LoginServlet.java -------------------------------------------------------------------------------- /box-java-servlet-skeleton-app/src/main/java/com/box/example/LogoutServlet.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/box/samples/HEAD/box-java-servlet-skeleton-app/src/main/java/com/box/example/LogoutServlet.java -------------------------------------------------------------------------------- /box-java-servlet-skeleton-app/src/main/java/com/helpers/BoxHelper.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/box/samples/HEAD/box-java-servlet-skeleton-app/src/main/java/com/helpers/BoxHelper.java -------------------------------------------------------------------------------- /box-java-servlet-skeleton-app/src/main/webapp/WEB-INF/web.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/box/samples/HEAD/box-java-servlet-skeleton-app/src/main/webapp/WEB-INF/web.xml -------------------------------------------------------------------------------- /box-java-servlet-skeleton-app/src/main/webapp/assets/test.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/box/samples/HEAD/box-java-servlet-skeleton-app/src/main/webapp/assets/test.txt -------------------------------------------------------------------------------- /box-java-servlet-skeleton-app/src/main/webapp/bottom.jsp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/box/samples/HEAD/box-java-servlet-skeleton-app/src/main/webapp/bottom.jsp -------------------------------------------------------------------------------- /box-java-servlet-skeleton-app/src/main/webapp/boxUIElements.jsp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/box/samples/HEAD/box-java-servlet-skeleton-app/src/main/webapp/boxUIElements.jsp -------------------------------------------------------------------------------- /box-java-servlet-skeleton-app/src/main/webapp/contentPicker.jsp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/box/samples/HEAD/box-java-servlet-skeleton-app/src/main/webapp/contentPicker.jsp -------------------------------------------------------------------------------- /box-java-servlet-skeleton-app/src/main/webapp/contentTree.jsp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/box/samples/HEAD/box-java-servlet-skeleton-app/src/main/webapp/contentTree.jsp -------------------------------------------------------------------------------- /box-java-servlet-skeleton-app/src/main/webapp/contentUploader.jsp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/box/samples/HEAD/box-java-servlet-skeleton-app/src/main/webapp/contentUploader.jsp -------------------------------------------------------------------------------- /box-java-servlet-skeleton-app/src/main/webapp/dashboard.jsp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/box/samples/HEAD/box-java-servlet-skeleton-app/src/main/webapp/dashboard.jsp -------------------------------------------------------------------------------- /box-java-servlet-skeleton-app/src/main/webapp/nav.jsp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/box/samples/HEAD/box-java-servlet-skeleton-app/src/main/webapp/nav.jsp -------------------------------------------------------------------------------- /box-java-servlet-skeleton-app/src/main/webapp/top.jsp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/box/samples/HEAD/box-java-servlet-skeleton-app/src/main/webapp/top.jsp -------------------------------------------------------------------------------- /box-node-cognito-lambdas-sample/.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/box/samples/HEAD/box-node-cognito-lambdas-sample/.gitignore -------------------------------------------------------------------------------- /box-node-cognito-lambdas-sample/LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/box/samples/HEAD/box-node-cognito-lambdas-sample/LICENSE -------------------------------------------------------------------------------- /box-node-cognito-lambdas-sample/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/box/samples/HEAD/box-node-cognito-lambdas-sample/README.md -------------------------------------------------------------------------------- /box-node-cognito-lambdas-sample/createAppUser/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/box/samples/HEAD/box-node-cognito-lambdas-sample/createAppUser/README.md -------------------------------------------------------------------------------- /box-node-cognito-lambdas-sample/createAppUser/boxManager.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/box/samples/HEAD/box-node-cognito-lambdas-sample/createAppUser/boxManager.js -------------------------------------------------------------------------------- /box-node-cognito-lambdas-sample/createAppUser/errorHandlers.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/box/samples/HEAD/box-node-cognito-lambdas-sample/createAppUser/errorHandlers.js -------------------------------------------------------------------------------- /box-node-cognito-lambdas-sample/createAppUser/index.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/box/samples/HEAD/box-node-cognito-lambdas-sample/createAppUser/index.js -------------------------------------------------------------------------------- /box-node-cognito-lambdas-sample/createAppUser/package-lock.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/box/samples/HEAD/box-node-cognito-lambdas-sample/createAppUser/package-lock.json -------------------------------------------------------------------------------- /box-node-cognito-lambdas-sample/createAppUser/package.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/box/samples/HEAD/box-node-cognito-lambdas-sample/createAppUser/package.json -------------------------------------------------------------------------------- /box-node-cognito-lambdas-sample/swagger.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/box/samples/HEAD/box-node-cognito-lambdas-sample/swagger.yaml -------------------------------------------------------------------------------- /box-node-cognito-lambdas-sample/tokenExchange/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/box/samples/HEAD/box-node-cognito-lambdas-sample/tokenExchange/README.md -------------------------------------------------------------------------------- /box-node-cognito-lambdas-sample/tokenExchange/boxManager.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/box/samples/HEAD/box-node-cognito-lambdas-sample/tokenExchange/boxManager.js -------------------------------------------------------------------------------- /box-node-cognito-lambdas-sample/tokenExchange/index.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/box/samples/HEAD/box-node-cognito-lambdas-sample/tokenExchange/index.js -------------------------------------------------------------------------------- /box-node-cognito-lambdas-sample/tokenExchange/package-lock.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/box/samples/HEAD/box-node-cognito-lambdas-sample/tokenExchange/package-lock.json -------------------------------------------------------------------------------- /box-node-cognito-lambdas-sample/tokenExchange/package.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/box/samples/HEAD/box-node-cognito-lambdas-sample/tokenExchange/package.json -------------------------------------------------------------------------------- /box-node-custom-skills-sample/.babelrc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/box/samples/HEAD/box-node-custom-skills-sample/.babelrc -------------------------------------------------------------------------------- /box-node-custom-skills-sample/.eslintrc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/box/samples/HEAD/box-node-custom-skills-sample/.eslintrc -------------------------------------------------------------------------------- /box-node-custom-skills-sample/.gitignore: -------------------------------------------------------------------------------- 1 | lib/** 2 | .serverless 3 | -------------------------------------------------------------------------------- /box-node-custom-skills-sample/LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/box/samples/HEAD/box-node-custom-skills-sample/LICENSE -------------------------------------------------------------------------------- /box-node-custom-skills-sample/README.md: -------------------------------------------------------------------------------- 1 | instructions at: https://developer.box.com/ 2 | -------------------------------------------------------------------------------- /box-node-custom-skills-sample/error-parser.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/box/samples/HEAD/box-node-custom-skills-sample/error-parser.js -------------------------------------------------------------------------------- /box-node-custom-skills-sample/index.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/box/samples/HEAD/box-node-custom-skills-sample/index.js -------------------------------------------------------------------------------- /box-node-custom-skills-sample/metadata-card-adaptor.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/box/samples/HEAD/box-node-custom-skills-sample/metadata-card-adaptor.js -------------------------------------------------------------------------------- /box-node-custom-skills-sample/package.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/box/samples/HEAD/box-node-custom-skills-sample/package.json -------------------------------------------------------------------------------- /box-node-custom-skills-sample/serverless.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/box/samples/HEAD/box-node-custom-skills-sample/serverless.yml -------------------------------------------------------------------------------- /box-node-custom-skills-sample/skills-kit.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/box/samples/HEAD/box-node-custom-skills-sample/skills-kit.js -------------------------------------------------------------------------------- /box-node-custom-skills-sample/test/skills-kit.test.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/box/samples/HEAD/box-node-custom-skills-sample/test/skills-kit.test.js -------------------------------------------------------------------------------- /box-node-express-skeleton-app/LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/box/samples/HEAD/box-node-express-skeleton-app/LICENSE -------------------------------------------------------------------------------- /box-node-express-skeleton-app/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/box/samples/HEAD/box-node-express-skeleton-app/README.md -------------------------------------------------------------------------------- /box-node-express-skeleton-app/app/.dockerignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/box/samples/HEAD/box-node-express-skeleton-app/app/.dockerignore -------------------------------------------------------------------------------- /box-node-express-skeleton-app/app/.eslintrc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/box/samples/HEAD/box-node-express-skeleton-app/app/.eslintrc -------------------------------------------------------------------------------- /box-node-express-skeleton-app/app/Dockerfile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/box/samples/HEAD/box-node-express-skeleton-app/app/Dockerfile -------------------------------------------------------------------------------- /box-node-express-skeleton-app/app/app-web/controllers/contentPickerController.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/box/samples/HEAD/box-node-express-skeleton-app/app/app-web/controllers/contentPickerController.js -------------------------------------------------------------------------------- /box-node-express-skeleton-app/app/app-web/controllers/contentTreeController.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/box/samples/HEAD/box-node-express-skeleton-app/app/app-web/controllers/contentTreeController.js -------------------------------------------------------------------------------- /box-node-express-skeleton-app/app/app-web/controllers/contentUploaderController.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/box/samples/HEAD/box-node-express-skeleton-app/app/app-web/controllers/contentUploaderController.js -------------------------------------------------------------------------------- /box-node-express-skeleton-app/app/app-web/controllers/indexController.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/box/samples/HEAD/box-node-express-skeleton-app/app/app-web/controllers/indexController.js -------------------------------------------------------------------------------- /box-node-express-skeleton-app/app/app-web/controllers/loginController.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/box/samples/HEAD/box-node-express-skeleton-app/app/app-web/controllers/loginController.js -------------------------------------------------------------------------------- /box-node-express-skeleton-app/app/app-web/controllers/logoutController.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/box/samples/HEAD/box-node-express-skeleton-app/app/app-web/controllers/logoutController.js -------------------------------------------------------------------------------- /box-node-express-skeleton-app/app/app-web/controllers/usersController.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/box/samples/HEAD/box-node-express-skeleton-app/app/app-web/controllers/usersController.js -------------------------------------------------------------------------------- /box-node-express-skeleton-app/app/app-web/public/css/box.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/box/samples/HEAD/box-node-express-skeleton-app/app/app-web/public/css/box.css -------------------------------------------------------------------------------- /box-node-express-skeleton-app/app/app-web/routes/index.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/box/samples/HEAD/box-node-express-skeleton-app/app/app-web/routes/index.js -------------------------------------------------------------------------------- /box-node-express-skeleton-app/app/app-web/views/pages/content-picker.ejs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/box/samples/HEAD/box-node-express-skeleton-app/app/app-web/views/pages/content-picker.ejs -------------------------------------------------------------------------------- /box-node-express-skeleton-app/app/app-web/views/pages/content-tree.ejs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/box/samples/HEAD/box-node-express-skeleton-app/app/app-web/views/pages/content-tree.ejs -------------------------------------------------------------------------------- /box-node-express-skeleton-app/app/app-web/views/pages/content-uploader.ejs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/box/samples/HEAD/box-node-express-skeleton-app/app/app-web/views/pages/content-uploader.ejs -------------------------------------------------------------------------------- /box-node-express-skeleton-app/app/app-web/views/pages/error.ejs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/box/samples/HEAD/box-node-express-skeleton-app/app/app-web/views/pages/error.ejs -------------------------------------------------------------------------------- /box-node-express-skeleton-app/app/app-web/views/pages/login.ejs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/box/samples/HEAD/box-node-express-skeleton-app/app/app-web/views/pages/login.ejs -------------------------------------------------------------------------------- /box-node-express-skeleton-app/app/app-web/views/pages/user.ejs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/box/samples/HEAD/box-node-express-skeleton-app/app/app-web/views/pages/user.ejs -------------------------------------------------------------------------------- /box-node-express-skeleton-app/app/app-web/views/partials/box/box-ui-scripts.ejs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/box/samples/HEAD/box-node-express-skeleton-app/app/app-web/views/partials/box/box-ui-scripts.ejs -------------------------------------------------------------------------------- /box-node-express-skeleton-app/app/app-web/views/partials/box/box-ui-selectors.ejs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/box/samples/HEAD/box-node-express-skeleton-app/app/app-web/views/partials/box/box-ui-selectors.ejs -------------------------------------------------------------------------------- /box-node-express-skeleton-app/app/app-web/views/partials/common/display-header.ejs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/box/samples/HEAD/box-node-express-skeleton-app/app/app-web/views/partials/common/display-header.ejs -------------------------------------------------------------------------------- /box-node-express-skeleton-app/app/app-web/views/partials/common/footer.ejs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/box/samples/HEAD/box-node-express-skeleton-app/app/app-web/views/partials/common/footer.ejs -------------------------------------------------------------------------------- /box-node-express-skeleton-app/app/app-web/views/partials/common/header.ejs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/box/samples/HEAD/box-node-express-skeleton-app/app/app-web/views/partials/common/header.ejs -------------------------------------------------------------------------------- /box-node-express-skeleton-app/app/app.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/box/samples/HEAD/box-node-express-skeleton-app/app/app.js -------------------------------------------------------------------------------- /box-node-express-skeleton-app/app/bin/www: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/box/samples/HEAD/box-node-express-skeleton-app/app/bin/www -------------------------------------------------------------------------------- /box-node-express-skeleton-app/app/box-service/boxClientService.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/box/samples/HEAD/box-node-express-skeleton-app/app/box-service/boxClientService.js -------------------------------------------------------------------------------- /box-node-express-skeleton-app/app/box-service/boxConfig.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/box/samples/HEAD/box-node-express-skeleton-app/app/box-service/boxConfig.js -------------------------------------------------------------------------------- /box-node-express-skeleton-app/app/box-service/boxTokenCache.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/box/samples/HEAD/box-node-express-skeleton-app/app/box-service/boxTokenCache.js -------------------------------------------------------------------------------- /box-node-express-skeleton-app/app/cache-service/cacheService.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/box/samples/HEAD/box-node-express-skeleton-app/app/cache-service/cacheService.js -------------------------------------------------------------------------------- /box-node-express-skeleton-app/app/config/default.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/box/samples/HEAD/box-node-express-skeleton-app/app/config/default.js -------------------------------------------------------------------------------- /box-node-express-skeleton-app/app/gulpfile.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/box/samples/HEAD/box-node-express-skeleton-app/app/gulpfile.js -------------------------------------------------------------------------------- /box-node-express-skeleton-app/app/identity-service/passport-strategies/auth0-strategy.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/box/samples/HEAD/box-node-express-skeleton-app/app/identity-service/passport-strategies/auth0-strategy.js -------------------------------------------------------------------------------- /box-node-express-skeleton-app/app/package.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/box/samples/HEAD/box-node-express-skeleton-app/app/package.json -------------------------------------------------------------------------------- /box-node-express-skeleton-app/app/processes.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/box/samples/HEAD/box-node-express-skeleton-app/app/processes.json -------------------------------------------------------------------------------- /box-node-express-skeleton-app/docker-compose.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/box/samples/HEAD/box-node-express-skeleton-app/docker-compose.yml -------------------------------------------------------------------------------- /box-node-lambda-sample/.eslintrc.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/box/samples/HEAD/box-node-lambda-sample/.eslintrc.json -------------------------------------------------------------------------------- /box-node-lambda-sample/LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/box/samples/HEAD/box-node-lambda-sample/LICENSE -------------------------------------------------------------------------------- /box-node-lambda-sample/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/box/samples/HEAD/box-node-lambda-sample/README.md -------------------------------------------------------------------------------- /box-node-lambda-sample/index.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/box/samples/HEAD/box-node-lambda-sample/index.js -------------------------------------------------------------------------------- /box-node-lambda-sample/lambda.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/box/samples/HEAD/box-node-lambda-sample/lambda.json -------------------------------------------------------------------------------- /box-node-lambda-sample/package.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/box/samples/HEAD/box-node-lambda-sample/package.json -------------------------------------------------------------------------------- /box-node-rekognition-lambdas-sample/.eslintrc.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/box/samples/HEAD/box-node-rekognition-lambdas-sample/.eslintrc.json -------------------------------------------------------------------------------- /box-node-rekognition-lambdas-sample/LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/box/samples/HEAD/box-node-rekognition-lambdas-sample/LICENSE -------------------------------------------------------------------------------- /box-node-rekognition-lambdas-sample/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/box/samples/HEAD/box-node-rekognition-lambdas-sample/README.md -------------------------------------------------------------------------------- /box-node-rekognition-lambdas-sample/rekognition/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/box/samples/HEAD/box-node-rekognition-lambdas-sample/rekognition/README.md -------------------------------------------------------------------------------- /box-node-rekognition-lambdas-sample/rekognition/index.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/box/samples/HEAD/box-node-rekognition-lambdas-sample/rekognition/index.js -------------------------------------------------------------------------------- /box-node-rekognition-lambdas-sample/rekognition/package.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/box/samples/HEAD/box-node-rekognition-lambdas-sample/rekognition/package.json -------------------------------------------------------------------------------- /box-node-rekognition-lambdas-sample/webhook/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/box/samples/HEAD/box-node-rekognition-lambdas-sample/webhook/README.md -------------------------------------------------------------------------------- /box-node-rekognition-lambdas-sample/webhook/index.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/box/samples/HEAD/box-node-rekognition-lambdas-sample/webhook/index.js -------------------------------------------------------------------------------- /box-node-rekognition-lambdas-sample/webhook/package.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/box/samples/HEAD/box-node-rekognition-lambdas-sample/webhook/package.json -------------------------------------------------------------------------------- /box-node-webhook-to-lambda-sample/.eslintrc.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/box/samples/HEAD/box-node-webhook-to-lambda-sample/.eslintrc.json -------------------------------------------------------------------------------- /box-node-webhook-to-lambda-sample/LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/box/samples/HEAD/box-node-webhook-to-lambda-sample/LICENSE -------------------------------------------------------------------------------- /box-node-webhook-to-lambda-sample/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/box/samples/HEAD/box-node-webhook-to-lambda-sample/README.md -------------------------------------------------------------------------------- /box-node-webhook-to-lambda-sample/curl-test.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/box/samples/HEAD/box-node-webhook-to-lambda-sample/curl-test.json -------------------------------------------------------------------------------- /box-node-webhook-to-lambda-sample/index.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/box/samples/HEAD/box-node-webhook-to-lambda-sample/index.js -------------------------------------------------------------------------------- /box-node-webhook-to-lambda-sample/lambda-test.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/box/samples/HEAD/box-node-webhook-to-lambda-sample/lambda-test.json -------------------------------------------------------------------------------- /box-node-webhook-to-lambda-sample/lambda.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/box/samples/HEAD/box-node-webhook-to-lambda-sample/lambda.json -------------------------------------------------------------------------------- /box-node-webhook-to-lambda-sample/package.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/box/samples/HEAD/box-node-webhook-to-lambda-sample/package.json --------------------------------------------------------------------------------