├── .angular-cli.json ├── .clang-format ├── .editorconfig ├── .gitignore ├── .nvmrc ├── .travis.yml ├── .vscode ├── settings.json └── tasks.json ├── AUTHORS ├── CONTRIBUTING.md ├── CONTRIBUTORS ├── LICENSE ├── README.md ├── demo ├── client │ ├── README.md │ └── apitester │ │ ├── app.py │ │ ├── app.yaml │ │ ├── app │ │ ├── app.component.css │ │ ├── app.component.html │ │ ├── app.component.ts │ │ ├── app.module.ts │ │ └── settings.service.ts │ │ ├── assets │ │ ├── .gitkeep │ │ ├── facebook.svg │ │ ├── google.svg │ │ ├── microsoft.svg │ │ ├── password.svg │ │ └── settings.svg │ │ ├── environments │ │ ├── environment.prod.ts │ │ └── environment.ts │ │ ├── favicon.ico │ │ ├── hint │ │ ├── hint.component.css │ │ ├── hint.component.html │ │ └── hint.component.ts │ │ ├── index.html │ │ ├── main.ts │ │ ├── polyfills.ts │ │ ├── retrieve │ │ ├── retrieve.component.css │ │ ├── retrieve.component.html │ │ └── retrieve.component.ts │ │ ├── save │ │ ├── save.component.css │ │ ├── save.component.html │ │ └── save.component.ts │ │ ├── settings │ │ ├── settings.component.css │ │ ├── settings.component.html │ │ └── settings.component.ts │ │ ├── styles.css │ │ └── test.ts ├── provider │ ├── README.md │ └── barbican │ │ ├── app.py │ │ ├── app.yaml │ │ ├── app │ │ ├── app.component.ts │ │ └── app.module.ts │ │ ├── assets │ │ ├── .gitkeep │ │ ├── barbican.svg │ │ ├── barbican_48px.png │ │ ├── continue.svg │ │ ├── edit.svg │ │ ├── email_account.svg │ │ ├── generic_account.svg │ │ └── phone_account.svg │ │ ├── barbican-theme.sass │ │ ├── credential_store │ │ └── credential_store.service.ts │ │ ├── environments │ │ ├── environment.prod.ts │ │ └── environment.ts │ │ ├── index.html │ │ ├── main.ts │ │ ├── manage_store │ │ ├── manage_store.component.css │ │ ├── manage_store.component.html │ │ └── manage_store.component.ts │ │ ├── openyolo_provider │ │ ├── openyolo_provider.component.css │ │ ├── openyolo_provider.component.html │ │ └── openyolo_provider.component.ts │ │ ├── polyfills.ts │ │ ├── styles.css │ │ └── test.ts └── tsconfig.json ├── externs ├── credential_management.js └── openyolo.js ├── karma.conf.js ├── karma.debug.conf.js ├── karma.headless.js ├── karma.saucelabs.js ├── karma_base.js ├── openyolo_web_lockup.svg ├── package.json ├── rollup.api.config.js ├── rollup.spi.config.js ├── ts ├── api │ ├── README.md │ ├── api.ts │ ├── api_test.ts │ ├── base_request.ts │ ├── base_request_test.ts │ ├── cancel_last_operation_request.ts │ ├── cancel_last_operation_request_test.ts │ ├── credential_request.ts │ ├── credential_request_test.ts │ ├── credential_save.ts │ ├── credential_save_test.ts │ ├── disable_auto_sign_in.ts │ ├── disable_auto_sign_in_test.ts │ ├── exports.ts │ ├── hint_available_request.ts │ ├── hint_available_request_test.ts │ ├── hint_request.ts │ ├── hint_request_test.ts │ ├── karma.conf.js │ ├── navigator_credentials.ts │ ├── navigator_credentials_test.ts │ ├── provider_frame_elem.ts │ ├── provider_frame_elem_test.ts │ ├── proxy_login.ts │ ├── proxy_login_test.ts │ ├── verify.ts │ └── verify_test.ts ├── protocol │ ├── client_config.ts │ ├── comms.ts │ ├── comms_test.ts │ ├── data.ts │ ├── enums.ts │ ├── errors.ts │ ├── feature_config.ts │ ├── messages.ts │ ├── password_spec.ts │ ├── post_messages.ts │ ├── preload_request.ts │ ├── rpc_messages.ts │ ├── secure_channel.ts │ ├── secure_channel_test.ts │ ├── uri.ts │ ├── utils.ts │ ├── utils_test.ts │ ├── validators.ts │ └── validators_test.ts ├── spi │ ├── ancestor_origin_verifier.ts │ ├── ancestor_origin_verifier_test.ts │ ├── provider_config.ts │ ├── provider_frame.ts │ ├── provider_frame_test.ts │ └── spi.ts └── test_utils │ ├── channels.ts │ ├── frames.ts │ ├── listeners.ts │ ├── messages.ts │ └── timeout.ts ├── tsconfig-karma.json ├── tsconfig-publish-es5.json ├── tsconfig-publish-es6.json ├── tsconfig.json ├── tslint.json ├── tslint_rules ├── .gitignore ├── noWhitespaceInEmptyBracketsRule.ts └── tsconfig.json └── yarn.lock /.angular-cli.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openid/OpenYOLO-Web/HEAD/.angular-cli.json -------------------------------------------------------------------------------- /.clang-format: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openid/OpenYOLO-Web/HEAD/.clang-format -------------------------------------------------------------------------------- /.editorconfig: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openid/OpenYOLO-Web/HEAD/.editorconfig -------------------------------------------------------------------------------- /.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openid/OpenYOLO-Web/HEAD/.gitignore -------------------------------------------------------------------------------- /.nvmrc: -------------------------------------------------------------------------------- 1 | stable 2 | -------------------------------------------------------------------------------- /.travis.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openid/OpenYOLO-Web/HEAD/.travis.yml -------------------------------------------------------------------------------- /.vscode/settings.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openid/OpenYOLO-Web/HEAD/.vscode/settings.json -------------------------------------------------------------------------------- /.vscode/tasks.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openid/OpenYOLO-Web/HEAD/.vscode/tasks.json -------------------------------------------------------------------------------- /AUTHORS: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openid/OpenYOLO-Web/HEAD/AUTHORS -------------------------------------------------------------------------------- /CONTRIBUTING.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openid/OpenYOLO-Web/HEAD/CONTRIBUTING.md -------------------------------------------------------------------------------- /CONTRIBUTORS: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openid/OpenYOLO-Web/HEAD/CONTRIBUTORS -------------------------------------------------------------------------------- /LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openid/OpenYOLO-Web/HEAD/LICENSE -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openid/OpenYOLO-Web/HEAD/README.md -------------------------------------------------------------------------------- /demo/client/README.md: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /demo/client/apitester/app.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openid/OpenYOLO-Web/HEAD/demo/client/apitester/app.py -------------------------------------------------------------------------------- /demo/client/apitester/app.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openid/OpenYOLO-Web/HEAD/demo/client/apitester/app.yaml -------------------------------------------------------------------------------- /demo/client/apitester/app/app.component.css: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /demo/client/apitester/app/app.component.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openid/OpenYOLO-Web/HEAD/demo/client/apitester/app/app.component.html -------------------------------------------------------------------------------- /demo/client/apitester/app/app.component.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openid/OpenYOLO-Web/HEAD/demo/client/apitester/app/app.component.ts -------------------------------------------------------------------------------- /demo/client/apitester/app/app.module.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openid/OpenYOLO-Web/HEAD/demo/client/apitester/app/app.module.ts -------------------------------------------------------------------------------- /demo/client/apitester/app/settings.service.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openid/OpenYOLO-Web/HEAD/demo/client/apitester/app/settings.service.ts -------------------------------------------------------------------------------- /demo/client/apitester/assets/.gitkeep: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /demo/client/apitester/assets/facebook.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openid/OpenYOLO-Web/HEAD/demo/client/apitester/assets/facebook.svg -------------------------------------------------------------------------------- /demo/client/apitester/assets/google.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openid/OpenYOLO-Web/HEAD/demo/client/apitester/assets/google.svg -------------------------------------------------------------------------------- /demo/client/apitester/assets/microsoft.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openid/OpenYOLO-Web/HEAD/demo/client/apitester/assets/microsoft.svg -------------------------------------------------------------------------------- /demo/client/apitester/assets/password.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openid/OpenYOLO-Web/HEAD/demo/client/apitester/assets/password.svg -------------------------------------------------------------------------------- /demo/client/apitester/assets/settings.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openid/OpenYOLO-Web/HEAD/demo/client/apitester/assets/settings.svg -------------------------------------------------------------------------------- /demo/client/apitester/environments/environment.prod.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openid/OpenYOLO-Web/HEAD/demo/client/apitester/environments/environment.prod.ts -------------------------------------------------------------------------------- /demo/client/apitester/environments/environment.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openid/OpenYOLO-Web/HEAD/demo/client/apitester/environments/environment.ts -------------------------------------------------------------------------------- /demo/client/apitester/favicon.ico: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openid/OpenYOLO-Web/HEAD/demo/client/apitester/favicon.ico -------------------------------------------------------------------------------- /demo/client/apitester/hint/hint.component.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openid/OpenYOLO-Web/HEAD/demo/client/apitester/hint/hint.component.css -------------------------------------------------------------------------------- /demo/client/apitester/hint/hint.component.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openid/OpenYOLO-Web/HEAD/demo/client/apitester/hint/hint.component.html -------------------------------------------------------------------------------- /demo/client/apitester/hint/hint.component.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openid/OpenYOLO-Web/HEAD/demo/client/apitester/hint/hint.component.ts -------------------------------------------------------------------------------- /demo/client/apitester/index.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openid/OpenYOLO-Web/HEAD/demo/client/apitester/index.html -------------------------------------------------------------------------------- /demo/client/apitester/main.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openid/OpenYOLO-Web/HEAD/demo/client/apitester/main.ts -------------------------------------------------------------------------------- /demo/client/apitester/polyfills.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openid/OpenYOLO-Web/HEAD/demo/client/apitester/polyfills.ts -------------------------------------------------------------------------------- /demo/client/apitester/retrieve/retrieve.component.css: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /demo/client/apitester/retrieve/retrieve.component.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openid/OpenYOLO-Web/HEAD/demo/client/apitester/retrieve/retrieve.component.html -------------------------------------------------------------------------------- /demo/client/apitester/retrieve/retrieve.component.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openid/OpenYOLO-Web/HEAD/demo/client/apitester/retrieve/retrieve.component.ts -------------------------------------------------------------------------------- /demo/client/apitester/save/save.component.css: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /demo/client/apitester/save/save.component.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openid/OpenYOLO-Web/HEAD/demo/client/apitester/save/save.component.html -------------------------------------------------------------------------------- /demo/client/apitester/save/save.component.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openid/OpenYOLO-Web/HEAD/demo/client/apitester/save/save.component.ts -------------------------------------------------------------------------------- /demo/client/apitester/settings/settings.component.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openid/OpenYOLO-Web/HEAD/demo/client/apitester/settings/settings.component.css -------------------------------------------------------------------------------- /demo/client/apitester/settings/settings.component.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openid/OpenYOLO-Web/HEAD/demo/client/apitester/settings/settings.component.html -------------------------------------------------------------------------------- /demo/client/apitester/settings/settings.component.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openid/OpenYOLO-Web/HEAD/demo/client/apitester/settings/settings.component.ts -------------------------------------------------------------------------------- /demo/client/apitester/styles.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openid/OpenYOLO-Web/HEAD/demo/client/apitester/styles.css -------------------------------------------------------------------------------- /demo/client/apitester/test.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openid/OpenYOLO-Web/HEAD/demo/client/apitester/test.ts -------------------------------------------------------------------------------- /demo/provider/README.md: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /demo/provider/barbican/app.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openid/OpenYOLO-Web/HEAD/demo/provider/barbican/app.py -------------------------------------------------------------------------------- /demo/provider/barbican/app.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openid/OpenYOLO-Web/HEAD/demo/provider/barbican/app.yaml -------------------------------------------------------------------------------- /demo/provider/barbican/app/app.component.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openid/OpenYOLO-Web/HEAD/demo/provider/barbican/app/app.component.ts -------------------------------------------------------------------------------- /demo/provider/barbican/app/app.module.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openid/OpenYOLO-Web/HEAD/demo/provider/barbican/app/app.module.ts -------------------------------------------------------------------------------- /demo/provider/barbican/assets/.gitkeep: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /demo/provider/barbican/assets/barbican.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openid/OpenYOLO-Web/HEAD/demo/provider/barbican/assets/barbican.svg -------------------------------------------------------------------------------- /demo/provider/barbican/assets/barbican_48px.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openid/OpenYOLO-Web/HEAD/demo/provider/barbican/assets/barbican_48px.png -------------------------------------------------------------------------------- /demo/provider/barbican/assets/continue.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openid/OpenYOLO-Web/HEAD/demo/provider/barbican/assets/continue.svg -------------------------------------------------------------------------------- /demo/provider/barbican/assets/edit.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openid/OpenYOLO-Web/HEAD/demo/provider/barbican/assets/edit.svg -------------------------------------------------------------------------------- /demo/provider/barbican/assets/email_account.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openid/OpenYOLO-Web/HEAD/demo/provider/barbican/assets/email_account.svg -------------------------------------------------------------------------------- /demo/provider/barbican/assets/generic_account.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openid/OpenYOLO-Web/HEAD/demo/provider/barbican/assets/generic_account.svg -------------------------------------------------------------------------------- /demo/provider/barbican/assets/phone_account.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openid/OpenYOLO-Web/HEAD/demo/provider/barbican/assets/phone_account.svg -------------------------------------------------------------------------------- /demo/provider/barbican/barbican-theme.sass: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openid/OpenYOLO-Web/HEAD/demo/provider/barbican/barbican-theme.sass -------------------------------------------------------------------------------- /demo/provider/barbican/credential_store/credential_store.service.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openid/OpenYOLO-Web/HEAD/demo/provider/barbican/credential_store/credential_store.service.ts -------------------------------------------------------------------------------- /demo/provider/barbican/environments/environment.prod.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openid/OpenYOLO-Web/HEAD/demo/provider/barbican/environments/environment.prod.ts -------------------------------------------------------------------------------- /demo/provider/barbican/environments/environment.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openid/OpenYOLO-Web/HEAD/demo/provider/barbican/environments/environment.ts -------------------------------------------------------------------------------- /demo/provider/barbican/index.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openid/OpenYOLO-Web/HEAD/demo/provider/barbican/index.html -------------------------------------------------------------------------------- /demo/provider/barbican/main.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openid/OpenYOLO-Web/HEAD/demo/provider/barbican/main.ts -------------------------------------------------------------------------------- /demo/provider/barbican/manage_store/manage_store.component.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openid/OpenYOLO-Web/HEAD/demo/provider/barbican/manage_store/manage_store.component.css -------------------------------------------------------------------------------- /demo/provider/barbican/manage_store/manage_store.component.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openid/OpenYOLO-Web/HEAD/demo/provider/barbican/manage_store/manage_store.component.html -------------------------------------------------------------------------------- /demo/provider/barbican/manage_store/manage_store.component.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openid/OpenYOLO-Web/HEAD/demo/provider/barbican/manage_store/manage_store.component.ts -------------------------------------------------------------------------------- /demo/provider/barbican/openyolo_provider/openyolo_provider.component.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openid/OpenYOLO-Web/HEAD/demo/provider/barbican/openyolo_provider/openyolo_provider.component.css -------------------------------------------------------------------------------- /demo/provider/barbican/openyolo_provider/openyolo_provider.component.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openid/OpenYOLO-Web/HEAD/demo/provider/barbican/openyolo_provider/openyolo_provider.component.html -------------------------------------------------------------------------------- /demo/provider/barbican/openyolo_provider/openyolo_provider.component.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openid/OpenYOLO-Web/HEAD/demo/provider/barbican/openyolo_provider/openyolo_provider.component.ts -------------------------------------------------------------------------------- /demo/provider/barbican/polyfills.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openid/OpenYOLO-Web/HEAD/demo/provider/barbican/polyfills.ts -------------------------------------------------------------------------------- /demo/provider/barbican/styles.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openid/OpenYOLO-Web/HEAD/demo/provider/barbican/styles.css -------------------------------------------------------------------------------- /demo/provider/barbican/test.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openid/OpenYOLO-Web/HEAD/demo/provider/barbican/test.ts -------------------------------------------------------------------------------- /demo/tsconfig.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openid/OpenYOLO-Web/HEAD/demo/tsconfig.json -------------------------------------------------------------------------------- /externs/credential_management.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openid/OpenYOLO-Web/HEAD/externs/credential_management.js -------------------------------------------------------------------------------- /externs/openyolo.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openid/OpenYOLO-Web/HEAD/externs/openyolo.js -------------------------------------------------------------------------------- /karma.conf.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openid/OpenYOLO-Web/HEAD/karma.conf.js -------------------------------------------------------------------------------- /karma.debug.conf.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openid/OpenYOLO-Web/HEAD/karma.debug.conf.js -------------------------------------------------------------------------------- /karma.headless.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openid/OpenYOLO-Web/HEAD/karma.headless.js -------------------------------------------------------------------------------- /karma.saucelabs.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openid/OpenYOLO-Web/HEAD/karma.saucelabs.js -------------------------------------------------------------------------------- /karma_base.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openid/OpenYOLO-Web/HEAD/karma_base.js -------------------------------------------------------------------------------- /openyolo_web_lockup.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openid/OpenYOLO-Web/HEAD/openyolo_web_lockup.svg -------------------------------------------------------------------------------- /package.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openid/OpenYOLO-Web/HEAD/package.json -------------------------------------------------------------------------------- /rollup.api.config.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openid/OpenYOLO-Web/HEAD/rollup.api.config.js -------------------------------------------------------------------------------- /rollup.spi.config.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openid/OpenYOLO-Web/HEAD/rollup.spi.config.js -------------------------------------------------------------------------------- /ts/api/README.md: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /ts/api/api.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openid/OpenYOLO-Web/HEAD/ts/api/api.ts -------------------------------------------------------------------------------- /ts/api/api_test.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openid/OpenYOLO-Web/HEAD/ts/api/api_test.ts -------------------------------------------------------------------------------- /ts/api/base_request.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openid/OpenYOLO-Web/HEAD/ts/api/base_request.ts -------------------------------------------------------------------------------- /ts/api/base_request_test.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openid/OpenYOLO-Web/HEAD/ts/api/base_request_test.ts -------------------------------------------------------------------------------- /ts/api/cancel_last_operation_request.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openid/OpenYOLO-Web/HEAD/ts/api/cancel_last_operation_request.ts -------------------------------------------------------------------------------- /ts/api/cancel_last_operation_request_test.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openid/OpenYOLO-Web/HEAD/ts/api/cancel_last_operation_request_test.ts -------------------------------------------------------------------------------- /ts/api/credential_request.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openid/OpenYOLO-Web/HEAD/ts/api/credential_request.ts -------------------------------------------------------------------------------- /ts/api/credential_request_test.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openid/OpenYOLO-Web/HEAD/ts/api/credential_request_test.ts -------------------------------------------------------------------------------- /ts/api/credential_save.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openid/OpenYOLO-Web/HEAD/ts/api/credential_save.ts -------------------------------------------------------------------------------- /ts/api/credential_save_test.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openid/OpenYOLO-Web/HEAD/ts/api/credential_save_test.ts -------------------------------------------------------------------------------- /ts/api/disable_auto_sign_in.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openid/OpenYOLO-Web/HEAD/ts/api/disable_auto_sign_in.ts -------------------------------------------------------------------------------- /ts/api/disable_auto_sign_in_test.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openid/OpenYOLO-Web/HEAD/ts/api/disable_auto_sign_in_test.ts -------------------------------------------------------------------------------- /ts/api/exports.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openid/OpenYOLO-Web/HEAD/ts/api/exports.ts -------------------------------------------------------------------------------- /ts/api/hint_available_request.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openid/OpenYOLO-Web/HEAD/ts/api/hint_available_request.ts -------------------------------------------------------------------------------- /ts/api/hint_available_request_test.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openid/OpenYOLO-Web/HEAD/ts/api/hint_available_request_test.ts -------------------------------------------------------------------------------- /ts/api/hint_request.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openid/OpenYOLO-Web/HEAD/ts/api/hint_request.ts -------------------------------------------------------------------------------- /ts/api/hint_request_test.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openid/OpenYOLO-Web/HEAD/ts/api/hint_request_test.ts -------------------------------------------------------------------------------- /ts/api/karma.conf.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openid/OpenYOLO-Web/HEAD/ts/api/karma.conf.js -------------------------------------------------------------------------------- /ts/api/navigator_credentials.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openid/OpenYOLO-Web/HEAD/ts/api/navigator_credentials.ts -------------------------------------------------------------------------------- /ts/api/navigator_credentials_test.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openid/OpenYOLO-Web/HEAD/ts/api/navigator_credentials_test.ts -------------------------------------------------------------------------------- /ts/api/provider_frame_elem.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openid/OpenYOLO-Web/HEAD/ts/api/provider_frame_elem.ts -------------------------------------------------------------------------------- /ts/api/provider_frame_elem_test.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openid/OpenYOLO-Web/HEAD/ts/api/provider_frame_elem_test.ts -------------------------------------------------------------------------------- /ts/api/proxy_login.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openid/OpenYOLO-Web/HEAD/ts/api/proxy_login.ts -------------------------------------------------------------------------------- /ts/api/proxy_login_test.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openid/OpenYOLO-Web/HEAD/ts/api/proxy_login_test.ts -------------------------------------------------------------------------------- /ts/api/verify.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openid/OpenYOLO-Web/HEAD/ts/api/verify.ts -------------------------------------------------------------------------------- /ts/api/verify_test.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openid/OpenYOLO-Web/HEAD/ts/api/verify_test.ts -------------------------------------------------------------------------------- /ts/protocol/client_config.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openid/OpenYOLO-Web/HEAD/ts/protocol/client_config.ts -------------------------------------------------------------------------------- /ts/protocol/comms.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openid/OpenYOLO-Web/HEAD/ts/protocol/comms.ts -------------------------------------------------------------------------------- /ts/protocol/comms_test.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openid/OpenYOLO-Web/HEAD/ts/protocol/comms_test.ts -------------------------------------------------------------------------------- /ts/protocol/data.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openid/OpenYOLO-Web/HEAD/ts/protocol/data.ts -------------------------------------------------------------------------------- /ts/protocol/enums.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openid/OpenYOLO-Web/HEAD/ts/protocol/enums.ts -------------------------------------------------------------------------------- /ts/protocol/errors.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openid/OpenYOLO-Web/HEAD/ts/protocol/errors.ts -------------------------------------------------------------------------------- /ts/protocol/feature_config.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openid/OpenYOLO-Web/HEAD/ts/protocol/feature_config.ts -------------------------------------------------------------------------------- /ts/protocol/messages.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openid/OpenYOLO-Web/HEAD/ts/protocol/messages.ts -------------------------------------------------------------------------------- /ts/protocol/password_spec.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openid/OpenYOLO-Web/HEAD/ts/protocol/password_spec.ts -------------------------------------------------------------------------------- /ts/protocol/post_messages.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openid/OpenYOLO-Web/HEAD/ts/protocol/post_messages.ts -------------------------------------------------------------------------------- /ts/protocol/preload_request.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openid/OpenYOLO-Web/HEAD/ts/protocol/preload_request.ts -------------------------------------------------------------------------------- /ts/protocol/rpc_messages.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openid/OpenYOLO-Web/HEAD/ts/protocol/rpc_messages.ts -------------------------------------------------------------------------------- /ts/protocol/secure_channel.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openid/OpenYOLO-Web/HEAD/ts/protocol/secure_channel.ts -------------------------------------------------------------------------------- /ts/protocol/secure_channel_test.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openid/OpenYOLO-Web/HEAD/ts/protocol/secure_channel_test.ts -------------------------------------------------------------------------------- /ts/protocol/uri.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openid/OpenYOLO-Web/HEAD/ts/protocol/uri.ts -------------------------------------------------------------------------------- /ts/protocol/utils.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openid/OpenYOLO-Web/HEAD/ts/protocol/utils.ts -------------------------------------------------------------------------------- /ts/protocol/utils_test.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openid/OpenYOLO-Web/HEAD/ts/protocol/utils_test.ts -------------------------------------------------------------------------------- /ts/protocol/validators.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openid/OpenYOLO-Web/HEAD/ts/protocol/validators.ts -------------------------------------------------------------------------------- /ts/protocol/validators_test.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openid/OpenYOLO-Web/HEAD/ts/protocol/validators_test.ts -------------------------------------------------------------------------------- /ts/spi/ancestor_origin_verifier.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openid/OpenYOLO-Web/HEAD/ts/spi/ancestor_origin_verifier.ts -------------------------------------------------------------------------------- /ts/spi/ancestor_origin_verifier_test.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openid/OpenYOLO-Web/HEAD/ts/spi/ancestor_origin_verifier_test.ts -------------------------------------------------------------------------------- /ts/spi/provider_config.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openid/OpenYOLO-Web/HEAD/ts/spi/provider_config.ts -------------------------------------------------------------------------------- /ts/spi/provider_frame.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openid/OpenYOLO-Web/HEAD/ts/spi/provider_frame.ts -------------------------------------------------------------------------------- /ts/spi/provider_frame_test.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openid/OpenYOLO-Web/HEAD/ts/spi/provider_frame_test.ts -------------------------------------------------------------------------------- /ts/spi/spi.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openid/OpenYOLO-Web/HEAD/ts/spi/spi.ts -------------------------------------------------------------------------------- /ts/test_utils/channels.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openid/OpenYOLO-Web/HEAD/ts/test_utils/channels.ts -------------------------------------------------------------------------------- /ts/test_utils/frames.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openid/OpenYOLO-Web/HEAD/ts/test_utils/frames.ts -------------------------------------------------------------------------------- /ts/test_utils/listeners.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openid/OpenYOLO-Web/HEAD/ts/test_utils/listeners.ts -------------------------------------------------------------------------------- /ts/test_utils/messages.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openid/OpenYOLO-Web/HEAD/ts/test_utils/messages.ts -------------------------------------------------------------------------------- /ts/test_utils/timeout.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openid/OpenYOLO-Web/HEAD/ts/test_utils/timeout.ts -------------------------------------------------------------------------------- /tsconfig-karma.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openid/OpenYOLO-Web/HEAD/tsconfig-karma.json -------------------------------------------------------------------------------- /tsconfig-publish-es5.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openid/OpenYOLO-Web/HEAD/tsconfig-publish-es5.json -------------------------------------------------------------------------------- /tsconfig-publish-es6.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openid/OpenYOLO-Web/HEAD/tsconfig-publish-es6.json -------------------------------------------------------------------------------- /tsconfig.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openid/OpenYOLO-Web/HEAD/tsconfig.json -------------------------------------------------------------------------------- /tslint.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openid/OpenYOLO-Web/HEAD/tslint.json -------------------------------------------------------------------------------- /tslint_rules/.gitignore: -------------------------------------------------------------------------------- 1 | *.js 2 | -------------------------------------------------------------------------------- /tslint_rules/noWhitespaceInEmptyBracketsRule.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openid/OpenYOLO-Web/HEAD/tslint_rules/noWhitespaceInEmptyBracketsRule.ts -------------------------------------------------------------------------------- /tslint_rules/tsconfig.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openid/OpenYOLO-Web/HEAD/tslint_rules/tsconfig.json -------------------------------------------------------------------------------- /yarn.lock: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openid/OpenYOLO-Web/HEAD/yarn.lock --------------------------------------------------------------------------------