@atproto/oauth-provider 0.1.0
Sign up to get free protection for your applications and to get access to all the features.
- package/.postcssrc.yml +3 -0
- package/CHANGELOG.md +19 -0
- package/LICENSE.txt +7 -0
- package/dist/access-token/access-token-type.d.ts +6 -0
- package/dist/access-token/access-token-type.d.ts.map +1 -0
- package/dist/access-token/access-token-type.js +10 -0
- package/dist/access-token/access-token-type.js.map +1 -0
- package/dist/account/account-manager.d.ts +14 -0
- package/dist/account/account-manager.d.ts.map +1 -0
- package/dist/account/account-manager.js +39 -0
- package/dist/account/account-manager.js.map +1 -0
- package/dist/account/account-store.d.ts +39 -0
- package/dist/account/account-store.d.ts.map +1 -0
- package/dist/account/account-store.js +19 -0
- package/dist/account/account-store.js.map +1 -0
- package/dist/account/account.d.ts +8 -0
- package/dist/account/account.d.ts.map +1 -0
- package/dist/account/account.js +3 -0
- package/dist/account/account.js.map +1 -0
- package/dist/assets/app/bundle-manifest.json +22 -0
- package/dist/assets/app/main.css +3 -0
- package/dist/assets/app/main.js +20 -0
- package/dist/assets/app/main.js.map +1 -0
- package/dist/assets/asset.d.ts +9 -0
- package/dist/assets/asset.d.ts.map +1 -0
- package/dist/assets/asset.js +3 -0
- package/dist/assets/asset.js.map +1 -0
- package/dist/assets/assets-middleware.d.ts +2 -0
- package/dist/assets/assets-middleware.d.ts.map +1 -0
- package/dist/assets/assets-middleware.js +30 -0
- package/dist/assets/assets-middleware.js.map +1 -0
- package/dist/assets/index.d.ts +4 -0
- package/dist/assets/index.d.ts.map +1 -0
- package/dist/assets/index.js +65 -0
- package/dist/assets/index.js.map +1 -0
- package/dist/client/client-auth.d.ts +13 -0
- package/dist/client/client-auth.d.ts.map +1 -0
- package/dist/client/client-auth.js +35 -0
- package/dist/client/client-auth.js.map +1 -0
- package/dist/client/client-data.d.ts +8 -0
- package/dist/client/client-data.d.ts.map +1 -0
- package/dist/client/client-data.js +3 -0
- package/dist/client/client-data.js.map +1 -0
- package/dist/client/client-id.d.ts +4 -0
- package/dist/client/client-id.d.ts.map +1 -0
- package/dist/client/client-id.js +6 -0
- package/dist/client/client-id.js.map +1 -0
- package/dist/client/client-info.d.ts +13 -0
- package/dist/client/client-info.d.ts.map +1 -0
- package/dist/client/client-info.js +3 -0
- package/dist/client/client-info.js.map +1 -0
- package/dist/client/client-manager.d.ts +38 -0
- package/dist/client/client-manager.d.ts.map +1 -0
- package/dist/client/client-manager.js +534 -0
- package/dist/client/client-manager.js.map +1 -0
- package/dist/client/client-store.d.ts +13 -0
- package/dist/client/client-store.d.ts.map +1 -0
- package/dist/client/client-store.js +39 -0
- package/dist/client/client-store.js.map +1 -0
- package/dist/client/client-utils.d.ts +6 -0
- package/dist/client/client-utils.d.ts.map +1 -0
- package/dist/client/client-utils.js +40 -0
- package/dist/client/client-utils.js.map +1 -0
- package/dist/client/client.d.ts +41 -0
- package/dist/client/client.d.ts.map +1 -0
- package/dist/client/client.js +163 -0
- package/dist/client/client.js.map +1 -0
- package/dist/constants.d.ts +42 -0
- package/dist/constants.d.ts.map +1 -0
- package/dist/constants.js +53 -0
- package/dist/constants.js.map +1 -0
- package/dist/device/device-data.d.ts +20 -0
- package/dist/device/device-data.d.ts.map +1 -0
- package/dist/device/device-data.js +11 -0
- package/dist/device/device-data.js.map +1 -0
- package/dist/device/device-details.d.ts +17 -0
- package/dist/device/device-details.d.ts.map +1 -0
- package/dist/device/device-details.js +34 -0
- package/dist/device/device-details.js.map +1 -0
- package/dist/device/device-id.d.ts +6 -0
- package/dist/device/device-id.d.ts.map +1 -0
- package/dist/device/device-id.js +18 -0
- package/dist/device/device-id.js.map +1 -0
- package/dist/device/device-manager.d.ts +88 -0
- package/dist/device/device-manager.d.ts.map +1 -0
- package/dist/device/device-manager.js +206 -0
- package/dist/device/device-manager.js.map +1 -0
- package/dist/device/device-store.d.ts +15 -0
- package/dist/device/device-store.d.ts.map +1 -0
- package/dist/device/device-store.js +36 -0
- package/dist/device/device-store.js.map +1 -0
- package/dist/device/session-id.d.ts +6 -0
- package/dist/device/session-id.d.ts.map +1 -0
- package/dist/device/session-id.js +18 -0
- package/dist/device/session-id.js.map +1 -0
- package/dist/dpop/dpop-manager.d.ts +33 -0
- package/dist/dpop/dpop-manager.d.ts.map +1 -0
- package/dist/dpop/dpop-manager.js +115 -0
- package/dist/dpop/dpop-manager.js.map +1 -0
- package/dist/dpop/dpop-nonce.d.ts +13 -0
- package/dist/dpop/dpop-nonce.d.ts.map +1 -0
- package/dist/dpop/dpop-nonce.js +94 -0
- package/dist/dpop/dpop-nonce.js.map +1 -0
- package/dist/errors/access-denied-error.d.ts +8 -0
- package/dist/errors/access-denied-error.d.ts.map +1 -0
- package/dist/errors/access-denied-error.js +21 -0
- package/dist/errors/access-denied-error.js.map +1 -0
- package/dist/errors/account-selection-required-error.d.ts +6 -0
- package/dist/errors/account-selection-required-error.d.ts.map +1 -0
- package/dist/errors/account-selection-required-error.js +11 -0
- package/dist/errors/account-selection-required-error.js.map +1 -0
- package/dist/errors/consent-required-error.d.ts +6 -0
- package/dist/errors/consent-required-error.d.ts.map +1 -0
- package/dist/errors/consent-required-error.js +11 -0
- package/dist/errors/consent-required-error.js.map +1 -0
- package/dist/errors/invalid-authorization-details-error.d.ts +20 -0
- package/dist/errors/invalid-authorization-details-error.d.ts.map +1 -0
- package/dist/errors/invalid-authorization-details-error.js +26 -0
- package/dist/errors/invalid-authorization-details-error.js.map +1 -0
- package/dist/errors/invalid-client-error.d.ts +18 -0
- package/dist/errors/invalid-client-error.d.ts.map +1 -0
- package/dist/errors/invalid-client-error.js +24 -0
- package/dist/errors/invalid-client-error.js.map +1 -0
- package/dist/errors/invalid-client-id-error.d.ts +13 -0
- package/dist/errors/invalid-client-id-error.d.ts.map +1 -0
- package/dist/errors/invalid-client-id-error.js +25 -0
- package/dist/errors/invalid-client-id-error.js.map +1 -0
- package/dist/errors/invalid-client-metadata-error.d.ts +13 -0
- package/dist/errors/invalid-client-metadata-error.d.ts.map +1 -0
- package/dist/errors/invalid-client-metadata-error.js +23 -0
- package/dist/errors/invalid-client-metadata-error.js.map +1 -0
- package/dist/errors/invalid-dpop-key-binding-error.d.ts +12 -0
- package/dist/errors/invalid-dpop-key-binding-error.d.ts.map +1 -0
- package/dist/errors/invalid-dpop-key-binding-error.js +20 -0
- package/dist/errors/invalid-dpop-key-binding-error.js.map +1 -0
- package/dist/errors/invalid-dpop-proof-error.d.ts +5 -0
- package/dist/errors/invalid-dpop-proof-error.d.ts.map +1 -0
- package/dist/errors/invalid-dpop-proof-error.js +12 -0
- package/dist/errors/invalid-dpop-proof-error.js.map +1 -0
- package/dist/errors/invalid-grant-error.d.ts +14 -0
- package/dist/errors/invalid-grant-error.d.ts.map +1 -0
- package/dist/errors/invalid-grant-error.js +20 -0
- package/dist/errors/invalid-grant-error.js.map +1 -0
- package/dist/errors/invalid-parameters-error.d.ts +6 -0
- package/dist/errors/invalid-parameters-error.d.ts.map +1 -0
- package/dist/errors/invalid-parameters-error.js +11 -0
- package/dist/errors/invalid-parameters-error.js.map +1 -0
- package/dist/errors/invalid-redirect-uri-error.d.ts +11 -0
- package/dist/errors/invalid-redirect-uri-error.d.ts.map +1 -0
- package/dist/errors/invalid-redirect-uri-error.js +21 -0
- package/dist/errors/invalid-redirect-uri-error.js.map +1 -0
- package/dist/errors/invalid-request-error.d.ts +28 -0
- package/dist/errors/invalid-request-error.d.ts.map +1 -0
- package/dist/errors/invalid-request-error.js +34 -0
- package/dist/errors/invalid-request-error.js.map +1 -0
- package/dist/errors/invalid-token-error.d.ts +16 -0
- package/dist/errors/invalid-token-error.d.ts.map +1 -0
- package/dist/errors/invalid-token-error.js +45 -0
- package/dist/errors/invalid-token-error.js.map +1 -0
- package/dist/errors/login-required-error.d.ts +6 -0
- package/dist/errors/login-required-error.d.ts.map +1 -0
- package/dist/errors/login-required-error.js +11 -0
- package/dist/errors/login-required-error.js.map +1 -0
- package/dist/errors/oauth-error.d.ts +13 -0
- package/dist/errors/oauth-error.d.ts.map +1 -0
- package/dist/errors/oauth-error.js +29 -0
- package/dist/errors/oauth-error.js.map +1 -0
- package/dist/errors/unauthorized-client-error.d.ts +18 -0
- package/dist/errors/unauthorized-client-error.d.ts.map +1 -0
- package/dist/errors/unauthorized-client-error.js +24 -0
- package/dist/errors/unauthorized-client-error.js.map +1 -0
- package/dist/errors/use-dpop-nonce-error.d.ts +18 -0
- package/dist/errors/use-dpop-nonce-error.d.ts.map +1 -0
- package/dist/errors/use-dpop-nonce-error.js +27 -0
- package/dist/errors/use-dpop-nonce-error.js.map +1 -0
- package/dist/errors/www-authenticate-error.d.ts +9 -0
- package/dist/errors/www-authenticate-error.d.ts.map +1 -0
- package/dist/errors/www-authenticate-error.js +46 -0
- package/dist/errors/www-authenticate-error.js.map +1 -0
- package/dist/index.d.ts +14 -0
- package/dist/index.d.ts.map +1 -0
- package/dist/index.js +31 -0
- package/dist/index.js.map +1 -0
- package/dist/lib/html/build-document.d.ts +32 -0
- package/dist/lib/html/build-document.d.ts.map +1 -0
- package/dist/lib/html/build-document.js +61 -0
- package/dist/lib/html/build-document.js.map +1 -0
- package/dist/lib/html/escapers.d.ts +9 -0
- package/dist/lib/html/escapers.d.ts.map +1 -0
- package/dist/lib/html/escapers.js +66 -0
- package/dist/lib/html/escapers.js.map +1 -0
- package/dist/lib/html/html.d.ts +13 -0
- package/dist/lib/html/html.d.ts.map +1 -0
- package/dist/lib/html/html.js +53 -0
- package/dist/lib/html/html.js.map +1 -0
- package/dist/lib/html/index.d.ts +4 -0
- package/dist/lib/html/index.d.ts.map +1 -0
- package/dist/lib/html/index.js +21 -0
- package/dist/lib/html/index.js.map +1 -0
- package/dist/lib/html/tags.d.ts +34 -0
- package/dist/lib/html/tags.d.ts.map +1 -0
- package/dist/lib/html/tags.js +47 -0
- package/dist/lib/html/tags.js.map +1 -0
- package/dist/lib/html/util.d.ts +4 -0
- package/dist/lib/html/util.d.ts.map +1 -0
- package/dist/lib/html/util.js +20 -0
- package/dist/lib/html/util.js.map +1 -0
- package/dist/lib/http/accept.d.ts +29 -0
- package/dist/lib/http/accept.d.ts.map +1 -0
- package/dist/lib/http/accept.js +67 -0
- package/dist/lib/http/accept.js.map +1 -0
- package/dist/lib/http/context.d.ts +5 -0
- package/dist/lib/http/context.d.ts.map +1 -0
- package/dist/lib/http/context.js +10 -0
- package/dist/lib/http/context.js.map +1 -0
- package/dist/lib/http/index.d.ts +10 -0
- package/dist/lib/http/index.d.ts.map +1 -0
- package/dist/lib/http/index.js +26 -0
- package/dist/lib/http/index.js.map +1 -0
- package/dist/lib/http/method.d.ts +6 -0
- package/dist/lib/http/method.d.ts.map +1 -0
- package/dist/lib/http/method.js +19 -0
- package/dist/lib/http/method.js.map +1 -0
- package/dist/lib/http/middleware.d.ts +18 -0
- package/dist/lib/http/middleware.d.ts.map +1 -0
- package/dist/lib/http/middleware.js +118 -0
- package/dist/lib/http/middleware.js.map +1 -0
- package/dist/lib/http/parser.d.ts +33 -0
- package/dist/lib/http/parser.d.ts.map +1 -0
- package/dist/lib/http/parser.js +48 -0
- package/dist/lib/http/parser.js.map +1 -0
- package/dist/lib/http/path.d.ts +9 -0
- package/dist/lib/http/path.d.ts.map +1 -0
- package/dist/lib/http/path.js +54 -0
- package/dist/lib/http/path.js.map +1 -0
- package/dist/lib/http/request.d.ts +33 -0
- package/dist/lib/http/request.d.ts.map +1 -0
- package/dist/lib/http/request.js +86 -0
- package/dist/lib/http/request.js.map +1 -0
- package/dist/lib/http/response.d.ts +13 -0
- package/dist/lib/http/response.d.ts.map +1 -0
- package/dist/lib/http/response.js +98 -0
- package/dist/lib/http/response.js.map +1 -0
- package/dist/lib/http/route.d.ts +25 -0
- package/dist/lib/http/route.d.ts.map +1 -0
- package/dist/lib/http/route.js +39 -0
- package/dist/lib/http/route.js.map +1 -0
- package/dist/lib/http/router.d.ts +32 -0
- package/dist/lib/http/router.d.ts.map +1 -0
- package/dist/lib/http/router.js +74 -0
- package/dist/lib/http/router.js.map +1 -0
- package/dist/lib/http/stream.d.ts +13 -0
- package/dist/lib/http/stream.d.ts.map +1 -0
- package/dist/lib/http/stream.js +46 -0
- package/dist/lib/http/stream.js.map +1 -0
- package/dist/lib/http/types.d.ts +7 -0
- package/dist/lib/http/types.d.ts.map +1 -0
- package/dist/lib/http/types.js +3 -0
- package/dist/lib/http/types.js.map +1 -0
- package/dist/lib/http/url.d.ts +8 -0
- package/dist/lib/http/url.d.ts.map +1 -0
- package/dist/lib/http/url.js +22 -0
- package/dist/lib/http/url.js.map +1 -0
- package/dist/lib/redis.d.ts +5 -0
- package/dist/lib/redis.d.ts.map +1 -0
- package/dist/lib/redis.js +22 -0
- package/dist/lib/redis.js.map +1 -0
- package/dist/lib/util/authorization-header.d.ts +4 -0
- package/dist/lib/util/authorization-header.d.ts.map +1 -0
- package/dist/lib/util/authorization-header.js +23 -0
- package/dist/lib/util/authorization-header.js.map +1 -0
- package/dist/lib/util/cast.d.ts +2 -0
- package/dist/lib/util/cast.d.ts.map +1 -0
- package/dist/lib/util/cast.js +10 -0
- package/dist/lib/util/cast.js.map +1 -0
- package/dist/lib/util/crypto.d.ts +3 -0
- package/dist/lib/util/crypto.d.ts.map +1 -0
- package/dist/lib/util/crypto.js +29 -0
- package/dist/lib/util/crypto.js.map +1 -0
- package/dist/lib/util/date.d.ts +3 -0
- package/dist/lib/util/date.d.ts.map +1 -0
- package/dist/lib/util/date.js +12 -0
- package/dist/lib/util/date.js.map +1 -0
- package/dist/lib/util/hostname.d.ts +6 -0
- package/dist/lib/util/hostname.d.ts.map +1 -0
- package/dist/lib/util/hostname.js +24 -0
- package/dist/lib/util/hostname.js.map +1 -0
- package/dist/lib/util/redirect-uri.d.ts +7 -0
- package/dist/lib/util/redirect-uri.d.ts.map +1 -0
- package/dist/lib/util/redirect-uri.js +44 -0
- package/dist/lib/util/redirect-uri.js.map +1 -0
- package/dist/lib/util/time.d.ts +6 -0
- package/dist/lib/util/time.d.ts.map +1 -0
- package/dist/lib/util/time.js +28 -0
- package/dist/lib/util/time.js.map +1 -0
- package/dist/lib/util/type.d.ts +6 -0
- package/dist/lib/util/type.d.ts.map +1 -0
- package/dist/lib/util/type.js +3 -0
- package/dist/lib/util/type.js.map +1 -0
- package/dist/lib/util/well-known.d.ts +3 -0
- package/dist/lib/util/well-known.d.ts.map +1 -0
- package/dist/lib/util/well-known.js +11 -0
- package/dist/lib/util/well-known.js.map +1 -0
- package/dist/metadata/build-metadata.d.ts +14 -0
- package/dist/metadata/build-metadata.d.ts.map +1 -0
- package/dist/metadata/build-metadata.js +132 -0
- package/dist/metadata/build-metadata.js.map +1 -0
- package/dist/oauth-client.d.ts +4 -0
- package/dist/oauth-client.d.ts.map +1 -0
- package/dist/oauth-client.js +19 -0
- package/dist/oauth-client.js.map +1 -0
- package/dist/oauth-dpop.d.ts +3 -0
- package/dist/oauth-dpop.d.ts.map +1 -0
- package/dist/oauth-dpop.js +19 -0
- package/dist/oauth-dpop.js.map +1 -0
- package/dist/oauth-errors.d.ts +20 -0
- package/dist/oauth-errors.d.ts.map +1 -0
- package/dist/oauth-errors.js +43 -0
- package/dist/oauth-errors.js.map +1 -0
- package/dist/oauth-hooks.d.ts +42 -0
- package/dist/oauth-hooks.d.ts.map +1 -0
- package/dist/oauth-hooks.js +3 -0
- package/dist/oauth-hooks.js.map +1 -0
- package/dist/oauth-provider.d.ts +179 -0
- package/dist/oauth-provider.d.ts.map +1 -0
- package/dist/oauth-provider.js +748 -0
- package/dist/oauth-provider.js.map +1 -0
- package/dist/oauth-store.d.ts +11 -0
- package/dist/oauth-store.d.ts.map +1 -0
- package/dist/oauth-store.js +27 -0
- package/dist/oauth-store.js.map +1 -0
- package/dist/oauth-verifier.d.ts +66 -0
- package/dist/oauth-verifier.d.ts.map +1 -0
- package/dist/oauth-verifier.js +94 -0
- package/dist/oauth-verifier.js.map +1 -0
- package/dist/oidc/claims.d.ts +16 -0
- package/dist/oidc/claims.d.ts.map +1 -0
- package/dist/oidc/claims.js +29 -0
- package/dist/oidc/claims.js.map +1 -0
- package/dist/oidc/sub.d.ts +4 -0
- package/dist/oidc/sub.d.ts.map +1 -0
- package/dist/oidc/sub.js +6 -0
- package/dist/oidc/sub.js.map +1 -0
- package/dist/oidc/userinfo.d.ts +7 -0
- package/dist/oidc/userinfo.d.ts.map +1 -0
- package/dist/oidc/userinfo.js +3 -0
- package/dist/oidc/userinfo.js.map +1 -0
- package/dist/output/build-error-payload.d.ts +6 -0
- package/dist/output/build-error-payload.d.ts.map +1 -0
- package/dist/output/build-error-payload.js +108 -0
- package/dist/output/build-error-payload.js.map +1 -0
- package/dist/output/customization.d.ts +37 -0
- package/dist/output/customization.d.ts.map +1 -0
- package/dist/output/customization.js +62 -0
- package/dist/output/customization.js.map +1 -0
- package/dist/output/send-authorize-page.d.ts +43 -0
- package/dist/output/send-authorize-page.d.ts.map +1 -0
- package/dist/output/send-authorize-page.js +49 -0
- package/dist/output/send-authorize-page.js.map +1 -0
- package/dist/output/send-authorize-redirect.d.ts +25 -0
- package/dist/output/send-authorize-redirect.d.ts.map +1 -0
- package/dist/output/send-authorize-redirect.js +72 -0
- package/dist/output/send-authorize-redirect.js.map +1 -0
- package/dist/output/send-error-page.d.ts +5 -0
- package/dist/output/send-error-page.d.ts.map +1 -0
- package/dist/output/send-error-page.js +31 -0
- package/dist/output/send-error-page.js.map +1 -0
- package/dist/output/send-web-page.d.ts +8 -0
- package/dist/output/send-web-page.d.ts.map +1 -0
- package/dist/output/send-web-page.js +48 -0
- package/dist/output/send-web-page.js.map +1 -0
- package/dist/parameters/claims-requested.d.ts +3 -0
- package/dist/parameters/claims-requested.d.ts.map +1 -0
- package/dist/parameters/claims-requested.js +77 -0
- package/dist/parameters/claims-requested.js.map +1 -0
- package/dist/parameters/oidc-payload.d.ts +31 -0
- package/dist/parameters/oidc-payload.d.ts.map +1 -0
- package/dist/parameters/oidc-payload.js +25 -0
- package/dist/parameters/oidc-payload.js.map +1 -0
- package/dist/replay/replay-manager.d.ts +10 -0
- package/dist/replay/replay-manager.d.ts.map +1 -0
- package/dist/replay/replay-manager.js +23 -0
- package/dist/replay/replay-manager.js.map +1 -0
- package/dist/replay/replay-store-memory.d.ts +11 -0
- package/dist/replay/replay-store-memory.d.ts.map +1 -0
- package/dist/replay/replay-store-memory.js +30 -0
- package/dist/replay/replay-store-memory.js.map +1 -0
- package/dist/replay/replay-store-redis.d.ts +16 -0
- package/dist/replay/replay-store-redis.d.ts.map +1 -0
- package/dist/replay/replay-store-redis.js +20 -0
- package/dist/replay/replay-store-redis.js.map +1 -0
- package/dist/replay/replay-store.d.ts +16 -0
- package/dist/replay/replay-store.d.ts.map +1 -0
- package/dist/replay/replay-store.js +22 -0
- package/dist/replay/replay-store.js.map +1 -0
- package/dist/request/code.d.ts +7 -0
- package/dist/request/code.d.ts.map +1 -0
- package/dist/request/code.js +20 -0
- package/dist/request/code.js.map +1 -0
- package/dist/request/request-data.d.ts +21 -0
- package/dist/request/request-data.d.ts.map +1 -0
- package/dist/request/request-data.js +6 -0
- package/dist/request/request-data.js.map +1 -0
- package/dist/request/request-id.d.ts +6 -0
- package/dist/request/request-id.d.ts.map +1 -0
- package/dist/request/request-id.js +18 -0
- package/dist/request/request-id.js.map +1 -0
- package/dist/request/request-info.d.ts +12 -0
- package/dist/request/request-info.d.ts.map +1 -0
- package/dist/request/request-info.js +3 -0
- package/dist/request/request-info.js.map +1 -0
- package/dist/request/request-manager.d.ts +40 -0
- package/dist/request/request-manager.d.ts.map +1 -0
- package/dist/request/request-manager.js +310 -0
- package/dist/request/request-manager.js.map +1 -0
- package/dist/request/request-store-memory.d.ts +16 -0
- package/dist/request/request-store-memory.d.ts.map +1 -0
- package/dist/request/request-store-memory.js +31 -0
- package/dist/request/request-store-memory.js.map +1 -0
- package/dist/request/request-store-redis.d.ts +24 -0
- package/dist/request/request-store-redis.d.ts.map +1 -0
- package/dist/request/request-store-redis.js +58 -0
- package/dist/request/request-store-redis.js.map +1 -0
- package/dist/request/request-store.d.ts +27 -0
- package/dist/request/request-store.d.ts.map +1 -0
- package/dist/request/request-store.js +37 -0
- package/dist/request/request-store.js.map +1 -0
- package/dist/request/request-uri.d.ts +8 -0
- package/dist/request/request-uri.d.ts.map +1 -0
- package/dist/request/request-uri.js +24 -0
- package/dist/request/request-uri.js.map +1 -0
- package/dist/request/types.d.ts +328 -0
- package/dist/request/types.d.ts.map +1 -0
- package/dist/request/types.js +27 -0
- package/dist/request/types.js.map +1 -0
- package/dist/signer/signed-token-payload.d.ts +1694 -0
- package/dist/signer/signed-token-payload.d.ts.map +1 -0
- package/dist/signer/signed-token-payload.js +32 -0
- package/dist/signer/signed-token-payload.js.map +1 -0
- package/dist/signer/signer.d.ts +193 -0
- package/dist/signer/signer.d.ts.map +1 -0
- package/dist/signer/signer.js +101 -0
- package/dist/signer/signer.js.map +1 -0
- package/dist/token/refresh-token.d.ts +7 -0
- package/dist/token/refresh-token.d.ts.map +1 -0
- package/dist/token/refresh-token.js +20 -0
- package/dist/token/refresh-token.js.map +1 -0
- package/dist/token/token-claims.d.ts +1687 -0
- package/dist/token/token-claims.d.ts.map +1 -0
- package/dist/token/token-claims.js +30 -0
- package/dist/token/token-claims.js.map +1 -0
- package/dist/token/token-data.d.ts +20 -0
- package/dist/token/token-data.d.ts.map +1 -0
- package/dist/token/token-data.js +3 -0
- package/dist/token/token-data.js.map +1 -0
- package/dist/token/token-id.d.ts +7 -0
- package/dist/token/token-id.d.ts.map +1 -0
- package/dist/token/token-id.js +20 -0
- package/dist/token/token-id.js.map +1 -0
- package/dist/token/token-manager.d.ts +48 -0
- package/dist/token/token-manager.d.ts.map +1 -0
- package/dist/token/token-manager.js +421 -0
- package/dist/token/token-manager.js.map +1 -0
- package/dist/token/token-store.d.ts +35 -0
- package/dist/token/token-store.d.ts.map +1 -0
- package/dist/token/token-store.js +38 -0
- package/dist/token/token-store.js.map +1 -0
- package/dist/token/types.d.ts +250 -0
- package/dist/token/types.d.ts.map +1 -0
- package/dist/token/types.js +36 -0
- package/dist/token/types.js.map +1 -0
- package/dist/token/verify-token-claims.d.ts +17 -0
- package/dist/token/verify-token-claims.d.ts.map +1 -0
- package/dist/token/verify-token-claims.js +39 -0
- package/dist/token/verify-token-claims.js.map +1 -0
- package/package.json +83 -0
- package/rollup.config.js +55 -0
- package/src/access-token/access-token-type.ts +5 -0
- package/src/account/account-manager.ts +55 -0
- package/src/account/account-store.ts +74 -0
- package/src/account/account.ts +10 -0
- package/src/assets/app/app.tsx +28 -0
- package/src/assets/app/backend-data.ts +65 -0
- package/src/assets/app/components/accept-form.tsx +112 -0
- package/src/assets/app/components/account-identifier.tsx +18 -0
- package/src/assets/app/components/account-picker.tsx +108 -0
- package/src/assets/app/components/client-identifier.tsx +32 -0
- package/src/assets/app/components/client-name.tsx +30 -0
- package/src/assets/app/components/error-card.tsx +41 -0
- package/src/assets/app/components/help-card.tsx +42 -0
- package/src/assets/app/components/layout-title-page.tsx +43 -0
- package/src/assets/app/components/layout-welcome.tsx +58 -0
- package/src/assets/app/components/sign-in-form.tsx +290 -0
- package/src/assets/app/components/sign-up-account-form.tsx +210 -0
- package/src/assets/app/components/sign-up-disclaimer.tsx +44 -0
- package/src/assets/app/components/url-viewer.tsx +70 -0
- package/src/assets/app/cookies.ts +11 -0
- package/src/assets/app/hooks/use-api.ts +104 -0
- package/src/assets/app/hooks/use-bound-dispatch.ts +5 -0
- package/src/assets/app/hooks/use-csrf-token.ts +5 -0
- package/src/assets/app/lib/api.ts +64 -0
- package/src/assets/app/lib/clsx.ts +4 -0
- package/src/assets/app/lib/util.ts +10 -0
- package/src/assets/app/main.css +11 -0
- package/src/assets/app/main.tsx +28 -0
- package/src/assets/app/views/accept-view.tsx +51 -0
- package/src/assets/app/views/authorize-view.tsx +101 -0
- package/src/assets/app/views/error-view.tsx +27 -0
- package/src/assets/app/views/sign-in-view.tsx +121 -0
- package/src/assets/app/views/sign-up-view.tsx +93 -0
- package/src/assets/app/views/welcome-view.tsx +61 -0
- package/src/assets/asset.ts +8 -0
- package/src/assets/assets-middleware.ts +32 -0
- package/src/assets/index.ts +74 -0
- package/src/client/client-auth.ts +45 -0
- package/src/client/client-data.ts +9 -0
- package/src/client/client-id.ts +4 -0
- package/src/client/client-info.ts +13 -0
- package/src/client/client-manager.ts +818 -0
- package/src/client/client-store.ts +38 -0
- package/src/client/client-utils.ts +43 -0
- package/src/client/client.ts +231 -0
- package/src/constants.ts +69 -0
- package/src/device/device-data.ts +11 -0
- package/src/device/device-details.ts +43 -0
- package/src/device/device-id.ts +23 -0
- package/src/device/device-manager.ts +287 -0
- package/src/device/device-store.ts +35 -0
- package/src/device/session-id.ts +22 -0
- package/src/dpop/dpop-manager.ts +147 -0
- package/src/dpop/dpop-nonce.ts +104 -0
- package/src/errors/access-denied-error.ts +26 -0
- package/src/errors/account-selection-required-error.ts +12 -0
- package/src/errors/consent-required-error.ts +12 -0
- package/src/errors/invalid-authorization-details-error.ts +22 -0
- package/src/errors/invalid-client-error.ts +20 -0
- package/src/errors/invalid-client-id-error.ts +20 -0
- package/src/errors/invalid-client-metadata-error.ts +19 -0
- package/src/errors/invalid-dpop-key-binding-error.ts +21 -0
- package/src/errors/invalid-dpop-proof-error.ts +13 -0
- package/src/errors/invalid-grant-error.ts +16 -0
- package/src/errors/invalid-parameters-error.ts +12 -0
- package/src/errors/invalid-redirect-uri-error.ts +17 -0
- package/src/errors/invalid-request-error.ts +30 -0
- package/src/errors/invalid-token-error.ts +59 -0
- package/src/errors/login-required-error.ts +12 -0
- package/src/errors/oauth-error.ts +28 -0
- package/src/errors/unauthorized-client-error.ts +20 -0
- package/src/errors/use-dpop-nonce-error.ts +32 -0
- package/src/errors/www-authenticate-error.ts +65 -0
- package/src/index.ts +15 -0
- package/src/lib/html/README.md +9 -0
- package/src/lib/html/build-document.ts +98 -0
- package/src/lib/html/escapers.ts +66 -0
- package/src/lib/html/html.ts +61 -0
- package/src/lib/html/index.ts +5 -0
- package/src/lib/html/tags.ts +58 -0
- package/src/lib/html/util.ts +21 -0
- package/src/lib/http/README.md +11 -0
- package/src/lib/http/accept.ts +91 -0
- package/src/lib/http/context.ts +11 -0
- package/src/lib/http/index.ts +9 -0
- package/src/lib/http/method.ts +18 -0
- package/src/lib/http/middleware.ts +183 -0
- package/src/lib/http/parser.ts +64 -0
- package/src/lib/http/path.ts +82 -0
- package/src/lib/http/request.ts +141 -0
- package/src/lib/http/response.ts +133 -0
- package/src/lib/http/route.ts +56 -0
- package/src/lib/http/router.ts +118 -0
- package/src/lib/http/stream.ts +78 -0
- package/src/lib/http/types.ts +22 -0
- package/src/lib/http/url.ts +23 -0
- package/src/lib/redis.ts +23 -0
- package/src/lib/util/authorization-header.ts +26 -0
- package/src/lib/util/cast.ts +4 -0
- package/src/lib/util/crypto.ts +27 -0
- package/src/lib/util/date.ts +7 -0
- package/src/lib/util/hostname.ts +19 -0
- package/src/lib/util/redirect-uri.ts +46 -0
- package/src/lib/util/time.ts +33 -0
- package/src/lib/util/type.ts +4 -0
- package/src/lib/util/well-known.ts +8 -0
- package/src/metadata/build-metadata.ts +165 -0
- package/src/oauth-client.ts +3 -0
- package/src/oauth-dpop.ts +2 -0
- package/src/oauth-errors.ts +21 -0
- package/src/oauth-hooks.ts +66 -0
- package/src/oauth-provider.ts +1409 -0
- package/src/oauth-store.ts +11 -0
- package/src/oauth-verifier.ts +219 -0
- package/src/oidc/claims.ts +35 -0
- package/src/oidc/sub.ts +4 -0
- package/src/oidc/userinfo.ts +11 -0
- package/src/output/build-error-payload.ts +143 -0
- package/src/output/customization.ts +96 -0
- package/src/output/send-authorize-page.ts +111 -0
- package/src/output/send-authorize-redirect.ts +130 -0
- package/src/output/send-error-page.ts +41 -0
- package/src/output/send-web-page.ts +66 -0
- package/src/parameters/claims-requested.ts +106 -0
- package/src/parameters/oidc-payload.ts +28 -0
- package/src/replay/replay-manager.ts +38 -0
- package/src/replay/replay-store-memory.ts +36 -0
- package/src/replay/replay-store-redis.ts +31 -0
- package/src/replay/replay-store.ts +44 -0
- package/src/request/code.ts +24 -0
- package/src/request/request-data.ts +26 -0
- package/src/request/request-id.ts +23 -0
- package/src/request/request-info.ts +12 -0
- package/src/request/request-manager.ts +479 -0
- package/src/request/request-store-memory.ts +39 -0
- package/src/request/request-store-redis.ts +71 -0
- package/src/request/request-store.ts +54 -0
- package/src/request/request-uri.ts +29 -0
- package/src/request/types.ts +48 -0
- package/src/signer/signed-token-payload.ts +35 -0
- package/src/signer/signer.ts +165 -0
- package/src/token/refresh-token.ts +31 -0
- package/src/token/token-claims.ts +31 -0
- package/src/token/token-data.ts +33 -0
- package/src/token/token-id.ts +26 -0
- package/src/token/token-manager.ts +591 -0
- package/src/token/token-store.ts +78 -0
- package/src/token/types.ts +86 -0
- package/src/token/verify-token-claims.ts +65 -0
- package/tailwind.config.js +13 -0
- package/tsconfig.backend.json +9 -0
- package/tsconfig.frontend.json +11 -0
- package/tsconfig.json +8 -0
- package/tsconfig.tools.json +8 -0
@@ -0,0 +1,24 @@
|
|
1
|
+
import { Redis } from 'ioredis';
|
2
|
+
import { CreateRedisOptions } from '../lib/redis.js';
|
3
|
+
import { Code } from './code.js';
|
4
|
+
import { RequestData } from './request-data.js';
|
5
|
+
import { RequestId } from './request-id.js';
|
6
|
+
import { RequestStore } from './request-store.js';
|
7
|
+
export type { Redis, CreateRedisOptions };
|
8
|
+
export type ReplayStoreRedisOptions = {
|
9
|
+
redis: CreateRedisOptions;
|
10
|
+
};
|
11
|
+
export declare class RequestStoreRedis implements RequestStore {
|
12
|
+
private readonly redis;
|
13
|
+
constructor(options: ReplayStoreRedisOptions);
|
14
|
+
readRequest(id: RequestId): Promise<RequestData | null>;
|
15
|
+
createRequest(id: RequestId, data: RequestData): Promise<void>;
|
16
|
+
updateRequest(id: RequestId, data: Partial<RequestData>): Promise<void>;
|
17
|
+
deleteRequest(id: RequestId): Promise<void>;
|
18
|
+
private findRequestIdByCode;
|
19
|
+
findRequestByCode(code: Code): Promise<{
|
20
|
+
id: RequestId;
|
21
|
+
data: RequestData;
|
22
|
+
} | null>;
|
23
|
+
}
|
24
|
+
//# sourceMappingURL=request-store-redis.d.ts.map
|
@@ -0,0 +1 @@
|
|
1
|
+
{"version":3,"file":"request-store-redis.d.ts","sourceRoot":"","sources":["../../src/request/request-store-redis.ts"],"names":[],"mappings":"AAAA,OAAO,EAAE,KAAK,EAAE,MAAM,SAAS,CAAA;AAC/B,OAAO,EAAE,kBAAkB,EAAe,MAAM,iBAAiB,CAAA;AACjE,OAAO,EAAE,IAAI,EAAE,MAAM,WAAW,CAAA;AAChC,OAAO,EAAE,WAAW,EAAE,MAAM,mBAAmB,CAAA;AAC/C,OAAO,EAAE,SAAS,EAAmB,MAAM,iBAAiB,CAAA;AAC5D,OAAO,EAAE,YAAY,EAAE,MAAM,oBAAoB,CAAA;AAEjD,YAAY,EAAE,KAAK,EAAE,kBAAkB,EAAE,CAAA;AAEzC,MAAM,MAAM,uBAAuB,GAAG;IACpC,KAAK,EAAE,kBAAkB,CAAA;CAC1B,CAAA;AAED,qBAAa,iBAAkB,YAAW,YAAY;IACpD,OAAO,CAAC,QAAQ,CAAC,KAAK,CAAO;gBAEjB,OAAO,EAAE,uBAAuB;IAItC,WAAW,CAAC,EAAE,EAAE,SAAS,GAAG,OAAO,CAAC,WAAW,GAAG,IAAI,CAAC;IAKvD,aAAa,CAAC,EAAE,EAAE,SAAS,EAAE,IAAI,EAAE,WAAW,GAAG,OAAO,CAAC,IAAI,CAAC;IAM9D,aAAa,CACjB,EAAE,EAAE,SAAS,EACb,IAAI,EAAE,OAAO,CAAC,WAAW,CAAC,GACzB,OAAO,CAAC,IAAI,CAAC;IAQV,aAAa,CAAC,EAAE,EAAE,SAAS,GAAG,OAAO,CAAC,IAAI,CAAC;YAOnC,mBAAmB;IAU3B,iBAAiB,CACrB,IAAI,EAAE,IAAI,GACT,OAAO,CAAC;QAAE,EAAE,EAAE,SAAS,CAAC;QAAC,IAAI,EAAE,WAAW,CAAA;KAAE,GAAG,IAAI,CAAC;CASxD"}
|
@@ -0,0 +1,58 @@
|
|
1
|
+
"use strict";
|
2
|
+
Object.defineProperty(exports, "__esModule", { value: true });
|
3
|
+
exports.RequestStoreRedis = void 0;
|
4
|
+
const redis_js_1 = require("../lib/redis.js");
|
5
|
+
const request_id_js_1 = require("./request-id.js");
|
6
|
+
class RequestStoreRedis {
|
7
|
+
redis;
|
8
|
+
constructor(options) {
|
9
|
+
this.redis = (0, redis_js_1.createRedis)(options.redis);
|
10
|
+
}
|
11
|
+
async readRequest(id) {
|
12
|
+
const data = await this.redis.get(id);
|
13
|
+
return data ? JSON.parse(data) : null;
|
14
|
+
}
|
15
|
+
async createRequest(id, data) {
|
16
|
+
const timeFrame = data.expiresAt.getTime() - Date.now();
|
17
|
+
await this.redis.set(id, JSON.stringify(data), 'PX', timeFrame);
|
18
|
+
if (data.code)
|
19
|
+
await this.redis.set(data.code, id, 'PX', timeFrame);
|
20
|
+
}
|
21
|
+
async updateRequest(id, data) {
|
22
|
+
const current = await this.readRequest(id);
|
23
|
+
if (!current)
|
24
|
+
throw new Error('Request not found');
|
25
|
+
if (current.code)
|
26
|
+
await this.redis.del(current.code);
|
27
|
+
const newData = { ...current, ...data };
|
28
|
+
await this.createRequest(id, newData);
|
29
|
+
}
|
30
|
+
async deleteRequest(id) {
|
31
|
+
const data = await this.readRequest(id);
|
32
|
+
if (!data)
|
33
|
+
return;
|
34
|
+
if (data.code)
|
35
|
+
await this.redis.del(data.code);
|
36
|
+
await this.redis.del(id);
|
37
|
+
}
|
38
|
+
async findRequestIdByCode(code) {
|
39
|
+
const value = await this.redis.get(code);
|
40
|
+
if (!value)
|
41
|
+
return null;
|
42
|
+
const parsed = request_id_js_1.requestIdSchema.safeParse(value);
|
43
|
+
if (!parsed.success)
|
44
|
+
return null;
|
45
|
+
return parsed.data;
|
46
|
+
}
|
47
|
+
async findRequestByCode(code) {
|
48
|
+
const id = await this.findRequestIdByCode(code);
|
49
|
+
if (!id)
|
50
|
+
return null;
|
51
|
+
const data = await this.readRequest(id);
|
52
|
+
if (!data)
|
53
|
+
return null;
|
54
|
+
return { id, data };
|
55
|
+
}
|
56
|
+
}
|
57
|
+
exports.RequestStoreRedis = RequestStoreRedis;
|
58
|
+
//# sourceMappingURL=request-store-redis.js.map
|
@@ -0,0 +1 @@
|
|
1
|
+
{"version":3,"file":"request-store-redis.js","sourceRoot":"","sources":["../../src/request/request-store-redis.ts"],"names":[],"mappings":";;;AACA,8CAAiE;AAGjE,mDAA4D;AAS5D,MAAa,iBAAiB;IACX,KAAK,CAAO;IAE7B,YAAY,OAAgC;QAC1C,IAAI,CAAC,KAAK,GAAG,IAAA,sBAAW,EAAC,OAAO,CAAC,KAAK,CAAC,CAAA;IACzC,CAAC;IAED,KAAK,CAAC,WAAW,CAAC,EAAa;QAC7B,MAAM,IAAI,GAAG,MAAM,IAAI,CAAC,KAAK,CAAC,GAAG,CAAC,EAAE,CAAC,CAAA;QACrC,OAAO,IAAI,CAAC,CAAC,CAAC,IAAI,CAAC,KAAK,CAAC,IAAI,CAAC,CAAC,CAAC,CAAC,IAAI,CAAA;IACvC,CAAC;IAED,KAAK,CAAC,aAAa,CAAC,EAAa,EAAE,IAAiB;QAClD,MAAM,SAAS,GAAG,IAAI,CAAC,SAAS,CAAC,OAAO,EAAE,GAAG,IAAI,CAAC,GAAG,EAAE,CAAA;QACvD,MAAM,IAAI,CAAC,KAAK,CAAC,GAAG,CAAC,EAAE,EAAE,IAAI,CAAC,SAAS,CAAC,IAAI,CAAC,EAAE,IAAI,EAAE,SAAS,CAAC,CAAA;QAC/D,IAAI,IAAI,CAAC,IAAI;YAAE,MAAM,IAAI,CAAC,KAAK,CAAC,GAAG,CAAC,IAAI,CAAC,IAAI,EAAE,EAAE,EAAE,IAAI,EAAE,SAAS,CAAC,CAAA;IACrE,CAAC;IAED,KAAK,CAAC,aAAa,CACjB,EAAa,EACb,IAA0B;QAE1B,MAAM,OAAO,GAAG,MAAM,IAAI,CAAC,WAAW,CAAC,EAAE,CAAC,CAAA;QAC1C,IAAI,CAAC,OAAO;YAAE,MAAM,IAAI,KAAK,CAAC,mBAAmB,CAAC,CAAA;QAClD,IAAI,OAAO,CAAC,IAAI;YAAE,MAAM,IAAI,CAAC,KAAK,CAAC,GAAG,CAAC,OAAO,CAAC,IAAI,CAAC,CAAA;QACpD,MAAM,OAAO,GAAG,EAAE,GAAG,OAAO,EAAE,GAAG,IAAI,EAAE,CAAA;QACvC,MAAM,IAAI,CAAC,aAAa,CAAC,EAAE,EAAE,OAAO,CAAC,CAAA;IACvC,CAAC;IAED,KAAK,CAAC,aAAa,CAAC,EAAa;QAC/B,MAAM,IAAI,GAAG,MAAM,IAAI,CAAC,WAAW,CAAC,EAAE,CAAC,CAAA;QACvC,IAAI,CAAC,IAAI;YAAE,OAAM;QACjB,IAAI,IAAI,CAAC,IAAI;YAAE,MAAM,IAAI,CAAC,KAAK,CAAC,GAAG,CAAC,IAAI,CAAC,IAAI,CAAC,CAAA;QAC9C,MAAM,IAAI,CAAC,KAAK,CAAC,GAAG,CAAC,EAAE,CAAC,CAAA;IAC1B,CAAC;IAEO,KAAK,CAAC,mBAAmB,CAAC,IAAU;QAC1C,MAAM,KAAK,GAAG,MAAM,IAAI,CAAC,KAAK,CAAC,GAAG,CAAC,IAAI,CAAC,CAAA;QACxC,IAAI,CAAC,KAAK;YAAE,OAAO,IAAI,CAAA;QAEvB,MAAM,MAAM,GAAG,+BAAe,CAAC,SAAS,CAAC,KAAK,CAAC,CAAA;QAC/C,IAAI,CAAC,MAAM,CAAC,OAAO;YAAE,OAAO,IAAI,CAAA;QAEhC,OAAO,MAAM,CAAC,IAAI,CAAA;IACpB,CAAC;IAED,KAAK,CAAC,iBAAiB,CACrB,IAAU;QAEV,MAAM,EAAE,GAAG,MAAM,IAAI,CAAC,mBAAmB,CAAC,IAAI,CAAC,CAAA;QAC/C,IAAI,CAAC,EAAE;YAAE,OAAO,IAAI,CAAA;QAEpB,MAAM,IAAI,GAAG,MAAM,IAAI,CAAC,WAAW,CAAC,EAAE,CAAC,CAAA;QACvC,IAAI,CAAC,IAAI;YAAE,OAAO,IAAI,CAAA;QAEtB,OAAO,EAAE,EAAE,EAAE,IAAI,EAAE,CAAA;IACrB,CAAC;CACF;AAzDD,8CAyDC"}
|
@@ -0,0 +1,27 @@
|
|
1
|
+
import { Awaitable } from '../lib/util/type.js';
|
2
|
+
import { Code } from './code.js';
|
3
|
+
import { RequestData } from './request-data.js';
|
4
|
+
import { RequestId } from './request-id.js';
|
5
|
+
export * from './code.js';
|
6
|
+
export * from './request-id.js';
|
7
|
+
export * from './request-data.js';
|
8
|
+
export type { Awaitable };
|
9
|
+
export type UpdateRequestData = Pick<Partial<RequestData>, 'sub' | 'code' | 'deviceId' | 'expiresAt'>;
|
10
|
+
export type FoundRequestResult = {
|
11
|
+
id: RequestId;
|
12
|
+
data: RequestData;
|
13
|
+
};
|
14
|
+
export interface RequestStore {
|
15
|
+
createRequest(id: RequestId, data: RequestData): Awaitable<void>;
|
16
|
+
/**
|
17
|
+
* Note that expired requests **can** be returned to yield a different error
|
18
|
+
* message than if the request was not found.
|
19
|
+
*/
|
20
|
+
readRequest(id: RequestId): Awaitable<RequestData | null>;
|
21
|
+
updateRequest(id: RequestId, data: UpdateRequestData): Awaitable<void>;
|
22
|
+
deleteRequest(id: RequestId): void | Awaitable<void>;
|
23
|
+
findRequestByCode(code: Code): Awaitable<FoundRequestResult | null>;
|
24
|
+
}
|
25
|
+
export declare function isRequestStore(implementation: Record<string, unknown> & Partial<RequestStore>): implementation is Record<string, unknown> & RequestStore;
|
26
|
+
export declare function ifRequestStore(implementation?: Record<string, unknown> & Partial<RequestStore>): RequestStore | undefined;
|
27
|
+
//# sourceMappingURL=request-store.d.ts.map
|
@@ -0,0 +1 @@
|
|
1
|
+
{"version":3,"file":"request-store.d.ts","sourceRoot":"","sources":["../../src/request/request-store.ts"],"names":[],"mappings":"AAAA,OAAO,EAAE,SAAS,EAAE,MAAM,qBAAqB,CAAA;AAC/C,OAAO,EAAE,IAAI,EAAE,MAAM,WAAW,CAAA;AAChC,OAAO,EAAE,WAAW,EAAE,MAAM,mBAAmB,CAAA;AAC/C,OAAO,EAAE,SAAS,EAAE,MAAM,iBAAiB,CAAA;AAG3C,cAAc,WAAW,CAAA;AACzB,cAAc,iBAAiB,CAAA;AAC/B,cAAc,mBAAmB,CAAA;AACjC,YAAY,EAAE,SAAS,EAAE,CAAA;AAEzB,MAAM,MAAM,iBAAiB,GAAG,IAAI,CAClC,OAAO,CAAC,WAAW,CAAC,EACpB,KAAK,GAAG,MAAM,GAAG,UAAU,GAAG,WAAW,CAC1C,CAAA;AAED,MAAM,MAAM,kBAAkB,GAAG;IAC/B,EAAE,EAAE,SAAS,CAAA;IACb,IAAI,EAAE,WAAW,CAAA;CAClB,CAAA;AAED,MAAM,WAAW,YAAY;IAC3B,aAAa,CAAC,EAAE,EAAE,SAAS,EAAE,IAAI,EAAE,WAAW,GAAG,SAAS,CAAC,IAAI,CAAC,CAAA;IAChE;;;OAGG;IACH,WAAW,CAAC,EAAE,EAAE,SAAS,GAAG,SAAS,CAAC,WAAW,GAAG,IAAI,CAAC,CAAA;IACzD,aAAa,CAAC,EAAE,EAAE,SAAS,EAAE,IAAI,EAAE,iBAAiB,GAAG,SAAS,CAAC,IAAI,CAAC,CAAA;IACtE,aAAa,CAAC,EAAE,EAAE,SAAS,GAAG,IAAI,GAAG,SAAS,CAAC,IAAI,CAAC,CAAA;IACpD,iBAAiB,CAAC,IAAI,EAAE,IAAI,GAAG,SAAS,CAAC,kBAAkB,GAAG,IAAI,CAAC,CAAA;CACpE;AAED,wBAAgB,cAAc,CAC5B,cAAc,EAAE,MAAM,CAAC,MAAM,EAAE,OAAO,CAAC,GAAG,OAAO,CAAC,YAAY,CAAC,GAC9D,cAAc,IAAI,MAAM,CAAC,MAAM,EAAE,OAAO,CAAC,GAAG,YAAY,CAQ1D;AAED,wBAAgB,cAAc,CAC5B,cAAc,CAAC,EAAE,MAAM,CAAC,MAAM,EAAE,OAAO,CAAC,GAAG,OAAO,CAAC,YAAY,CAAC,GAC/D,YAAY,GAAG,SAAS,CAM1B"}
|
@@ -0,0 +1,37 @@
|
|
1
|
+
"use strict";
|
2
|
+
var __createBinding = (this && this.__createBinding) || (Object.create ? (function(o, m, k, k2) {
|
3
|
+
if (k2 === undefined) k2 = k;
|
4
|
+
var desc = Object.getOwnPropertyDescriptor(m, k);
|
5
|
+
if (!desc || ("get" in desc ? !m.__esModule : desc.writable || desc.configurable)) {
|
6
|
+
desc = { enumerable: true, get: function() { return m[k]; } };
|
7
|
+
}
|
8
|
+
Object.defineProperty(o, k2, desc);
|
9
|
+
}) : (function(o, m, k, k2) {
|
10
|
+
if (k2 === undefined) k2 = k;
|
11
|
+
o[k2] = m[k];
|
12
|
+
}));
|
13
|
+
var __exportStar = (this && this.__exportStar) || function(m, exports) {
|
14
|
+
for (var p in m) if (p !== "default" && !Object.prototype.hasOwnProperty.call(exports, p)) __createBinding(exports, m, p);
|
15
|
+
};
|
16
|
+
Object.defineProperty(exports, "__esModule", { value: true });
|
17
|
+
exports.ifRequestStore = exports.isRequestStore = void 0;
|
18
|
+
// Export all types needed to implement the RequestStore interface
|
19
|
+
__exportStar(require("./code.js"), exports);
|
20
|
+
__exportStar(require("./request-id.js"), exports);
|
21
|
+
__exportStar(require("./request-data.js"), exports);
|
22
|
+
function isRequestStore(implementation) {
|
23
|
+
return (typeof implementation.createRequest === 'function' &&
|
24
|
+
typeof implementation.readRequest === 'function' &&
|
25
|
+
typeof implementation.updateRequest === 'function' &&
|
26
|
+
typeof implementation.deleteRequest === 'function' &&
|
27
|
+
typeof implementation.findRequestByCode === 'function');
|
28
|
+
}
|
29
|
+
exports.isRequestStore = isRequestStore;
|
30
|
+
function ifRequestStore(implementation) {
|
31
|
+
if (implementation && isRequestStore(implementation)) {
|
32
|
+
return implementation;
|
33
|
+
}
|
34
|
+
return undefined;
|
35
|
+
}
|
36
|
+
exports.ifRequestStore = ifRequestStore;
|
37
|
+
//# sourceMappingURL=request-store.js.map
|
@@ -0,0 +1 @@
|
|
1
|
+
{"version":3,"file":"request-store.js","sourceRoot":"","sources":["../../src/request/request-store.ts"],"names":[],"mappings":";;;;;;;;;;;;;;;;;AAKA,kEAAkE;AAClE,4CAAyB;AACzB,kDAA+B;AAC/B,oDAAiC;AAyBjC,SAAgB,cAAc,CAC5B,cAA+D;IAE/D,OAAO,CACL,OAAO,cAAc,CAAC,aAAa,KAAK,UAAU;QAClD,OAAO,cAAc,CAAC,WAAW,KAAK,UAAU;QAChD,OAAO,cAAc,CAAC,aAAa,KAAK,UAAU;QAClD,OAAO,cAAc,CAAC,aAAa,KAAK,UAAU;QAClD,OAAO,cAAc,CAAC,iBAAiB,KAAK,UAAU,CACvD,CAAA;AACH,CAAC;AAVD,wCAUC;AAED,SAAgB,cAAc,CAC5B,cAAgE;IAEhE,IAAI,cAAc,IAAI,cAAc,CAAC,cAAc,CAAC,EAAE,CAAC;QACrD,OAAO,cAAc,CAAA;IACvB,CAAC;IAED,OAAO,SAAS,CAAA;AAClB,CAAC;AARD,wCAQC"}
|
@@ -0,0 +1,8 @@
|
|
1
|
+
import { z } from 'zod';
|
2
|
+
import { RequestId } from './request-id.js';
|
3
|
+
export declare const REQUEST_URI_PREFIX = "urn:ietf:params:oauth:request_uri:";
|
4
|
+
export declare const requestUriSchema: z.ZodEffects<z.ZodString, `urn:ietf:params:oauth:request_uri:req-${string}`, string>;
|
5
|
+
export type RequestUri = z.infer<typeof requestUriSchema>;
|
6
|
+
export declare function encodeRequestUri(requestId: RequestId): RequestUri;
|
7
|
+
export declare function decodeRequestUri(requestUri: RequestUri): RequestId;
|
8
|
+
//# sourceMappingURL=request-uri.d.ts.map
|
@@ -0,0 +1 @@
|
|
1
|
+
{"version":3,"file":"request-uri.d.ts","sourceRoot":"","sources":["../../src/request/request-uri.ts"],"names":[],"mappings":"AAAA,OAAO,EAAE,CAAC,EAAE,MAAM,KAAK,CAAA;AAEvB,OAAO,EAAE,SAAS,EAAmB,MAAM,iBAAiB,CAAA;AAE5D,eAAO,MAAM,kBAAkB,uCAAuC,CAAA;AAEtE,eAAO,MAAM,gBAAgB,sFAW1B,CAAA;AAEH,MAAM,MAAM,UAAU,GAAG,CAAC,CAAC,KAAK,CAAC,OAAO,gBAAgB,CAAC,CAAA;AAEzD,wBAAgB,gBAAgB,CAAC,SAAS,EAAE,SAAS,GAAG,UAAU,CAEjE;AAED,wBAAgB,gBAAgB,CAAC,UAAU,EAAE,UAAU,GAAG,SAAS,CAGlE"}
|
@@ -0,0 +1,24 @@
|
|
1
|
+
"use strict";
|
2
|
+
Object.defineProperty(exports, "__esModule", { value: true });
|
3
|
+
exports.decodeRequestUri = exports.encodeRequestUri = exports.requestUriSchema = exports.REQUEST_URI_PREFIX = void 0;
|
4
|
+
const zod_1 = require("zod");
|
5
|
+
const request_id_js_1 = require("./request-id.js");
|
6
|
+
exports.REQUEST_URI_PREFIX = 'urn:ietf:params:oauth:request_uri:';
|
7
|
+
exports.requestUriSchema = zod_1.z
|
8
|
+
.string()
|
9
|
+
.url()
|
10
|
+
.refinement((data) => data.startsWith(exports.REQUEST_URI_PREFIX) &&
|
11
|
+
request_id_js_1.requestIdSchema.safeParse(decodeRequestUri(data)).success, {
|
12
|
+
code: zod_1.z.ZodIssueCode.custom,
|
13
|
+
message: 'Invalid request_uri format',
|
14
|
+
});
|
15
|
+
function encodeRequestUri(requestId) {
|
16
|
+
return `${exports.REQUEST_URI_PREFIX}${encodeURIComponent(requestId)}`;
|
17
|
+
}
|
18
|
+
exports.encodeRequestUri = encodeRequestUri;
|
19
|
+
function decodeRequestUri(requestUri) {
|
20
|
+
const requestIdEnc = requestUri.slice(exports.REQUEST_URI_PREFIX.length);
|
21
|
+
return decodeURIComponent(requestIdEnc);
|
22
|
+
}
|
23
|
+
exports.decodeRequestUri = decodeRequestUri;
|
24
|
+
//# sourceMappingURL=request-uri.js.map
|
@@ -0,0 +1 @@
|
|
1
|
+
{"version":3,"file":"request-uri.js","sourceRoot":"","sources":["../../src/request/request-uri.ts"],"names":[],"mappings":";;;AAAA,6BAAuB;AAEvB,mDAA4D;AAE/C,QAAA,kBAAkB,GAAG,oCAAoC,CAAA;AAEzD,QAAA,gBAAgB,GAAG,OAAC;KAC9B,MAAM,EAAE;KACR,GAAG,EAAE;KACL,UAAU,CACT,CAAC,IAAI,EAAsD,EAAE,CAC3D,IAAI,CAAC,UAAU,CAAC,0BAAkB,CAAC;IACnC,+BAAe,CAAC,SAAS,CAAC,gBAAgB,CAAC,IAAW,CAAC,CAAC,CAAC,OAAO,EAClE;IACE,IAAI,EAAE,OAAC,CAAC,YAAY,CAAC,MAAM;IAC3B,OAAO,EAAE,4BAA4B;CACtC,CACF,CAAA;AAIH,SAAgB,gBAAgB,CAAC,SAAoB;IACnD,OAAO,GAAG,0BAAkB,GAAG,kBAAkB,CAAC,SAAS,CAAc,EAAE,CAAA;AAC7E,CAAC;AAFD,4CAEC;AAED,SAAgB,gBAAgB,CAAC,UAAsB;IACrD,MAAM,YAAY,GAAG,UAAU,CAAC,KAAK,CAAC,0BAAkB,CAAC,MAAM,CAAC,CAAA;IAChE,OAAO,kBAAkB,CAAC,YAAY,CAAc,CAAA;AACtD,CAAC;AAHD,4CAGC"}
|
@@ -0,0 +1,328 @@
|
|
1
|
+
import { z } from 'zod';
|
2
|
+
export declare const authorizationRequestJarSchema: z.ZodObject<{
|
3
|
+
/**
|
4
|
+
* AuthorizationRequest inside a JWT:
|
5
|
+
* - "iat" is required and **MUST** be less than one minute
|
6
|
+
*
|
7
|
+
* @see {@link https://datatracker.ietf.org/doc/html/rfc9101}
|
8
|
+
*/
|
9
|
+
request: z.ZodUnion<[z.ZodEffects<z.ZodEffects<z.ZodString, string, string>, `${string}.${string}.${string}`, string>, z.ZodEffects<z.ZodEffects<z.ZodString, string, string>, `${string}.${string}`, string>]>;
|
10
|
+
}, "strip", z.ZodTypeAny, {
|
11
|
+
request: `${string}.${string}.${string}` | `${string}.${string}`;
|
12
|
+
}, {
|
13
|
+
request: string;
|
14
|
+
}>;
|
15
|
+
export type AuthorizationRequestJar = z.infer<typeof authorizationRequestJarSchema>;
|
16
|
+
export declare const pushedAuthorizationRequestSchema: z.ZodIntersection<z.ZodUnion<[z.ZodUnion<[z.ZodObject<{
|
17
|
+
client_id: z.ZodString;
|
18
|
+
client_assertion_type: z.ZodLiteral<"urn:ietf:params:oauth:client-assertion-type:jwt-bearer">;
|
19
|
+
client_assertion: z.ZodEffects<z.ZodEffects<z.ZodString, string, string>, `${string}.${string}.${string}`, string>;
|
20
|
+
}, "strip", z.ZodTypeAny, {
|
21
|
+
client_id: string;
|
22
|
+
client_assertion_type: "urn:ietf:params:oauth:client-assertion-type:jwt-bearer";
|
23
|
+
client_assertion: `${string}.${string}.${string}`;
|
24
|
+
}, {
|
25
|
+
client_id: string;
|
26
|
+
client_assertion_type: "urn:ietf:params:oauth:client-assertion-type:jwt-bearer";
|
27
|
+
client_assertion: string;
|
28
|
+
}>, z.ZodObject<{
|
29
|
+
client_id: z.ZodString;
|
30
|
+
client_secret: z.ZodString;
|
31
|
+
}, "strip", z.ZodTypeAny, {
|
32
|
+
client_id: string;
|
33
|
+
client_secret: string;
|
34
|
+
}, {
|
35
|
+
client_id: string;
|
36
|
+
client_secret: string;
|
37
|
+
}>]>, z.ZodObject<{
|
38
|
+
client_id: z.ZodString;
|
39
|
+
}, "strip", z.ZodTypeAny, {
|
40
|
+
client_id: string;
|
41
|
+
}, {
|
42
|
+
client_id: string;
|
43
|
+
}>]>, z.ZodUnion<[z.ZodObject<{
|
44
|
+
client_id: z.ZodString;
|
45
|
+
state: z.ZodOptional<z.ZodString>;
|
46
|
+
nonce: z.ZodOptional<z.ZodString>;
|
47
|
+
dpop_jkt: z.ZodOptional<z.ZodString>;
|
48
|
+
response_type: z.ZodEnum<["code", "token", "id_token", "none", "code token", "code id_token", "id_token token", "code id_token token"]>;
|
49
|
+
response_mode: z.ZodOptional<z.ZodEnum<["query", "fragment", "form_post"]>>;
|
50
|
+
code_challenge: z.ZodOptional<z.ZodString>;
|
51
|
+
code_challenge_method: z.ZodOptional<z.ZodDefault<z.ZodEnum<["S256", "plain"]>>>;
|
52
|
+
redirect_uri: z.ZodOptional<z.ZodString>;
|
53
|
+
scope: z.ZodOptional<z.ZodString>;
|
54
|
+
max_age: z.ZodOptional<z.ZodNumber>;
|
55
|
+
claims: z.ZodOptional<z.ZodRecord<z.ZodEnum<["userinfo", "id_token"]>, z.ZodRecord<z.ZodEnum<["auth_time", "nonce", "acr", "name", "family_name", "given_name", "middle_name", "nickname", "preferred_username", "gender", "picture", "profile", "website", "birthdate", "zoneinfo", "locale", "updated_at", "email", "email_verified", "phone_number", "phone_number_verified", "address"]>, z.ZodUnion<[z.ZodLiteral<null>, z.ZodObject<{
|
56
|
+
essential: z.ZodOptional<z.ZodBoolean>;
|
57
|
+
value: z.ZodOptional<z.ZodUnion<[z.ZodString, z.ZodNumber, z.ZodBoolean]>>;
|
58
|
+
values: z.ZodOptional<z.ZodArray<z.ZodUnion<[z.ZodString, z.ZodNumber, z.ZodBoolean]>, "many">>;
|
59
|
+
}, "strip", z.ZodTypeAny, {
|
60
|
+
values?: (string | number | boolean)[] | undefined;
|
61
|
+
value?: string | number | boolean | undefined;
|
62
|
+
essential?: boolean | undefined;
|
63
|
+
}, {
|
64
|
+
values?: (string | number | boolean)[] | undefined;
|
65
|
+
value?: string | number | boolean | undefined;
|
66
|
+
essential?: boolean | undefined;
|
67
|
+
}>]>>>>;
|
68
|
+
login_hint: z.ZodOptional<z.ZodString>;
|
69
|
+
ui_locales: z.ZodOptional<z.ZodString>;
|
70
|
+
id_token_hint: z.ZodOptional<z.ZodEffects<z.ZodEffects<z.ZodString, string, string>, `${string}.${string}.${string}`, string>>;
|
71
|
+
display: z.ZodOptional<z.ZodEnum<["page", "popup", "touch"]>>;
|
72
|
+
prompt: z.ZodOptional<z.ZodEnum<["none", "login", "consent", "select_account"]>>;
|
73
|
+
authorization_details: z.ZodOptional<z.ZodArray<z.ZodObject<{
|
74
|
+
type: z.ZodString;
|
75
|
+
locations: z.ZodOptional<z.ZodArray<z.ZodString, "many">>;
|
76
|
+
actions: z.ZodOptional<z.ZodArray<z.ZodString, "many">>;
|
77
|
+
datatypes: z.ZodOptional<z.ZodArray<z.ZodString, "many">>;
|
78
|
+
identifier: z.ZodOptional<z.ZodString>;
|
79
|
+
privileges: z.ZodOptional<z.ZodArray<z.ZodString, "many">>;
|
80
|
+
}, "strip", z.ZodTypeAny, {
|
81
|
+
type: string;
|
82
|
+
locations?: string[] | undefined;
|
83
|
+
actions?: string[] | undefined;
|
84
|
+
datatypes?: string[] | undefined;
|
85
|
+
identifier?: string | undefined;
|
86
|
+
privileges?: string[] | undefined;
|
87
|
+
}, {
|
88
|
+
type: string;
|
89
|
+
locations?: string[] | undefined;
|
90
|
+
actions?: string[] | undefined;
|
91
|
+
datatypes?: string[] | undefined;
|
92
|
+
identifier?: string | undefined;
|
93
|
+
privileges?: string[] | undefined;
|
94
|
+
}>, "many">>;
|
95
|
+
}, "strip", z.ZodTypeAny, {
|
96
|
+
client_id: string;
|
97
|
+
response_type: "none" | "token" | "code" | "id_token" | "code id_token token" | "code id_token" | "code token" | "id_token token";
|
98
|
+
scope?: string | undefined;
|
99
|
+
redirect_uri?: string | undefined;
|
100
|
+
nonce?: string | undefined;
|
101
|
+
state?: string | undefined;
|
102
|
+
dpop_jkt?: string | undefined;
|
103
|
+
response_mode?: "query" | "fragment" | "form_post" | undefined;
|
104
|
+
code_challenge?: string | undefined;
|
105
|
+
code_challenge_method?: "S256" | "plain" | undefined;
|
106
|
+
max_age?: number | undefined;
|
107
|
+
claims?: Partial<Record<"id_token" | "userinfo", Partial<Record<"nonce" | "name" | "email" | "email_verified" | "phone_number" | "phone_number_verified" | "address" | "profile" | "family_name" | "given_name" | "middle_name" | "nickname" | "preferred_username" | "gender" | "picture" | "website" | "birthdate" | "zoneinfo" | "locale" | "updated_at" | "acr" | "auth_time", {
|
108
|
+
values?: (string | number | boolean)[] | undefined;
|
109
|
+
value?: string | number | boolean | undefined;
|
110
|
+
essential?: boolean | undefined;
|
111
|
+
} | null>>>> | undefined;
|
112
|
+
login_hint?: string | undefined;
|
113
|
+
ui_locales?: string | undefined;
|
114
|
+
id_token_hint?: `${string}.${string}.${string}` | undefined;
|
115
|
+
display?: "page" | "popup" | "touch" | undefined;
|
116
|
+
prompt?: "none" | "login" | "consent" | "select_account" | undefined;
|
117
|
+
authorization_details?: {
|
118
|
+
type: string;
|
119
|
+
locations?: string[] | undefined;
|
120
|
+
actions?: string[] | undefined;
|
121
|
+
datatypes?: string[] | undefined;
|
122
|
+
identifier?: string | undefined;
|
123
|
+
privileges?: string[] | undefined;
|
124
|
+
}[] | undefined;
|
125
|
+
}, {
|
126
|
+
client_id: string;
|
127
|
+
response_type: "none" | "token" | "code" | "id_token" | "code id_token token" | "code id_token" | "code token" | "id_token token";
|
128
|
+
scope?: string | undefined;
|
129
|
+
redirect_uri?: string | undefined;
|
130
|
+
nonce?: string | undefined;
|
131
|
+
state?: string | undefined;
|
132
|
+
dpop_jkt?: string | undefined;
|
133
|
+
response_mode?: "query" | "fragment" | "form_post" | undefined;
|
134
|
+
code_challenge?: string | undefined;
|
135
|
+
code_challenge_method?: "S256" | "plain" | undefined;
|
136
|
+
max_age?: number | undefined;
|
137
|
+
claims?: Partial<Record<"id_token" | "userinfo", Partial<Record<"nonce" | "name" | "email" | "email_verified" | "phone_number" | "phone_number_verified" | "address" | "profile" | "family_name" | "given_name" | "middle_name" | "nickname" | "preferred_username" | "gender" | "picture" | "website" | "birthdate" | "zoneinfo" | "locale" | "updated_at" | "acr" | "auth_time", {
|
138
|
+
values?: (string | number | boolean)[] | undefined;
|
139
|
+
value?: string | number | boolean | undefined;
|
140
|
+
essential?: boolean | undefined;
|
141
|
+
} | null>>>> | undefined;
|
142
|
+
login_hint?: string | undefined;
|
143
|
+
ui_locales?: string | undefined;
|
144
|
+
id_token_hint?: string | undefined;
|
145
|
+
display?: "page" | "popup" | "touch" | undefined;
|
146
|
+
prompt?: "none" | "login" | "consent" | "select_account" | undefined;
|
147
|
+
authorization_details?: {
|
148
|
+
type: string;
|
149
|
+
locations?: string[] | undefined;
|
150
|
+
actions?: string[] | undefined;
|
151
|
+
datatypes?: string[] | undefined;
|
152
|
+
identifier?: string | undefined;
|
153
|
+
privileges?: string[] | undefined;
|
154
|
+
}[] | undefined;
|
155
|
+
}>, z.ZodObject<{
|
156
|
+
/**
|
157
|
+
* AuthorizationRequest inside a JWT:
|
158
|
+
* - "iat" is required and **MUST** be less than one minute
|
159
|
+
*
|
160
|
+
* @see {@link https://datatracker.ietf.org/doc/html/rfc9101}
|
161
|
+
*/
|
162
|
+
request: z.ZodUnion<[z.ZodEffects<z.ZodEffects<z.ZodString, string, string>, `${string}.${string}.${string}`, string>, z.ZodEffects<z.ZodEffects<z.ZodString, string, string>, `${string}.${string}`, string>]>;
|
163
|
+
}, "strip", z.ZodTypeAny, {
|
164
|
+
request: `${string}.${string}.${string}` | `${string}.${string}`;
|
165
|
+
}, {
|
166
|
+
request: string;
|
167
|
+
}>]>>;
|
168
|
+
export type PushedAuthorizationRequest = z.infer<typeof pushedAuthorizationRequestSchema>;
|
169
|
+
export declare const authorizationRequestQuerySchema: z.ZodIntersection<z.ZodUnion<[z.ZodUnion<[z.ZodObject<{
|
170
|
+
client_id: z.ZodString;
|
171
|
+
client_assertion_type: z.ZodLiteral<"urn:ietf:params:oauth:client-assertion-type:jwt-bearer">;
|
172
|
+
client_assertion: z.ZodEffects<z.ZodEffects<z.ZodString, string, string>, `${string}.${string}.${string}`, string>;
|
173
|
+
}, "strip", z.ZodTypeAny, {
|
174
|
+
client_id: string;
|
175
|
+
client_assertion_type: "urn:ietf:params:oauth:client-assertion-type:jwt-bearer";
|
176
|
+
client_assertion: `${string}.${string}.${string}`;
|
177
|
+
}, {
|
178
|
+
client_id: string;
|
179
|
+
client_assertion_type: "urn:ietf:params:oauth:client-assertion-type:jwt-bearer";
|
180
|
+
client_assertion: string;
|
181
|
+
}>, z.ZodObject<{
|
182
|
+
client_id: z.ZodString;
|
183
|
+
client_secret: z.ZodString;
|
184
|
+
}, "strip", z.ZodTypeAny, {
|
185
|
+
client_id: string;
|
186
|
+
client_secret: string;
|
187
|
+
}, {
|
188
|
+
client_id: string;
|
189
|
+
client_secret: string;
|
190
|
+
}>]>, z.ZodObject<{
|
191
|
+
client_id: z.ZodString;
|
192
|
+
}, "strip", z.ZodTypeAny, {
|
193
|
+
client_id: string;
|
194
|
+
}, {
|
195
|
+
client_id: string;
|
196
|
+
}>]>, z.ZodUnion<[z.ZodObject<{
|
197
|
+
client_id: z.ZodString;
|
198
|
+
state: z.ZodOptional<z.ZodString>;
|
199
|
+
nonce: z.ZodOptional<z.ZodString>;
|
200
|
+
dpop_jkt: z.ZodOptional<z.ZodString>;
|
201
|
+
response_type: z.ZodEnum<["code", "token", "id_token", "none", "code token", "code id_token", "id_token token", "code id_token token"]>;
|
202
|
+
response_mode: z.ZodOptional<z.ZodEnum<["query", "fragment", "form_post"]>>;
|
203
|
+
code_challenge: z.ZodOptional<z.ZodString>;
|
204
|
+
code_challenge_method: z.ZodOptional<z.ZodDefault<z.ZodEnum<["S256", "plain"]>>>;
|
205
|
+
redirect_uri: z.ZodOptional<z.ZodString>;
|
206
|
+
scope: z.ZodOptional<z.ZodString>;
|
207
|
+
max_age: z.ZodOptional<z.ZodNumber>;
|
208
|
+
claims: z.ZodOptional<z.ZodRecord<z.ZodEnum<["userinfo", "id_token"]>, z.ZodRecord<z.ZodEnum<["auth_time", "nonce", "acr", "name", "family_name", "given_name", "middle_name", "nickname", "preferred_username", "gender", "picture", "profile", "website", "birthdate", "zoneinfo", "locale", "updated_at", "email", "email_verified", "phone_number", "phone_number_verified", "address"]>, z.ZodUnion<[z.ZodLiteral<null>, z.ZodObject<{
|
209
|
+
essential: z.ZodOptional<z.ZodBoolean>;
|
210
|
+
value: z.ZodOptional<z.ZodUnion<[z.ZodString, z.ZodNumber, z.ZodBoolean]>>;
|
211
|
+
values: z.ZodOptional<z.ZodArray<z.ZodUnion<[z.ZodString, z.ZodNumber, z.ZodBoolean]>, "many">>;
|
212
|
+
}, "strip", z.ZodTypeAny, {
|
213
|
+
values?: (string | number | boolean)[] | undefined;
|
214
|
+
value?: string | number | boolean | undefined;
|
215
|
+
essential?: boolean | undefined;
|
216
|
+
}, {
|
217
|
+
values?: (string | number | boolean)[] | undefined;
|
218
|
+
value?: string | number | boolean | undefined;
|
219
|
+
essential?: boolean | undefined;
|
220
|
+
}>]>>>>;
|
221
|
+
login_hint: z.ZodOptional<z.ZodString>;
|
222
|
+
ui_locales: z.ZodOptional<z.ZodString>;
|
223
|
+
id_token_hint: z.ZodOptional<z.ZodEffects<z.ZodEffects<z.ZodString, string, string>, `${string}.${string}.${string}`, string>>;
|
224
|
+
display: z.ZodOptional<z.ZodEnum<["page", "popup", "touch"]>>;
|
225
|
+
prompt: z.ZodOptional<z.ZodEnum<["none", "login", "consent", "select_account"]>>;
|
226
|
+
authorization_details: z.ZodOptional<z.ZodArray<z.ZodObject<{
|
227
|
+
type: z.ZodString;
|
228
|
+
locations: z.ZodOptional<z.ZodArray<z.ZodString, "many">>;
|
229
|
+
actions: z.ZodOptional<z.ZodArray<z.ZodString, "many">>;
|
230
|
+
datatypes: z.ZodOptional<z.ZodArray<z.ZodString, "many">>;
|
231
|
+
identifier: z.ZodOptional<z.ZodString>;
|
232
|
+
privileges: z.ZodOptional<z.ZodArray<z.ZodString, "many">>;
|
233
|
+
}, "strip", z.ZodTypeAny, {
|
234
|
+
type: string;
|
235
|
+
locations?: string[] | undefined;
|
236
|
+
actions?: string[] | undefined;
|
237
|
+
datatypes?: string[] | undefined;
|
238
|
+
identifier?: string | undefined;
|
239
|
+
privileges?: string[] | undefined;
|
240
|
+
}, {
|
241
|
+
type: string;
|
242
|
+
locations?: string[] | undefined;
|
243
|
+
actions?: string[] | undefined;
|
244
|
+
datatypes?: string[] | undefined;
|
245
|
+
identifier?: string | undefined;
|
246
|
+
privileges?: string[] | undefined;
|
247
|
+
}>, "many">>;
|
248
|
+
}, "strip", z.ZodTypeAny, {
|
249
|
+
client_id: string;
|
250
|
+
response_type: "none" | "token" | "code" | "id_token" | "code id_token token" | "code id_token" | "code token" | "id_token token";
|
251
|
+
scope?: string | undefined;
|
252
|
+
redirect_uri?: string | undefined;
|
253
|
+
nonce?: string | undefined;
|
254
|
+
state?: string | undefined;
|
255
|
+
dpop_jkt?: string | undefined;
|
256
|
+
response_mode?: "query" | "fragment" | "form_post" | undefined;
|
257
|
+
code_challenge?: string | undefined;
|
258
|
+
code_challenge_method?: "S256" | "plain" | undefined;
|
259
|
+
max_age?: number | undefined;
|
260
|
+
claims?: Partial<Record<"id_token" | "userinfo", Partial<Record<"nonce" | "name" | "email" | "email_verified" | "phone_number" | "phone_number_verified" | "address" | "profile" | "family_name" | "given_name" | "middle_name" | "nickname" | "preferred_username" | "gender" | "picture" | "website" | "birthdate" | "zoneinfo" | "locale" | "updated_at" | "acr" | "auth_time", {
|
261
|
+
values?: (string | number | boolean)[] | undefined;
|
262
|
+
value?: string | number | boolean | undefined;
|
263
|
+
essential?: boolean | undefined;
|
264
|
+
} | null>>>> | undefined;
|
265
|
+
login_hint?: string | undefined;
|
266
|
+
ui_locales?: string | undefined;
|
267
|
+
id_token_hint?: `${string}.${string}.${string}` | undefined;
|
268
|
+
display?: "page" | "popup" | "touch" | undefined;
|
269
|
+
prompt?: "none" | "login" | "consent" | "select_account" | undefined;
|
270
|
+
authorization_details?: {
|
271
|
+
type: string;
|
272
|
+
locations?: string[] | undefined;
|
273
|
+
actions?: string[] | undefined;
|
274
|
+
datatypes?: string[] | undefined;
|
275
|
+
identifier?: string | undefined;
|
276
|
+
privileges?: string[] | undefined;
|
277
|
+
}[] | undefined;
|
278
|
+
}, {
|
279
|
+
client_id: string;
|
280
|
+
response_type: "none" | "token" | "code" | "id_token" | "code id_token token" | "code id_token" | "code token" | "id_token token";
|
281
|
+
scope?: string | undefined;
|
282
|
+
redirect_uri?: string | undefined;
|
283
|
+
nonce?: string | undefined;
|
284
|
+
state?: string | undefined;
|
285
|
+
dpop_jkt?: string | undefined;
|
286
|
+
response_mode?: "query" | "fragment" | "form_post" | undefined;
|
287
|
+
code_challenge?: string | undefined;
|
288
|
+
code_challenge_method?: "S256" | "plain" | undefined;
|
289
|
+
max_age?: number | undefined;
|
290
|
+
claims?: Partial<Record<"id_token" | "userinfo", Partial<Record<"nonce" | "name" | "email" | "email_verified" | "phone_number" | "phone_number_verified" | "address" | "profile" | "family_name" | "given_name" | "middle_name" | "nickname" | "preferred_username" | "gender" | "picture" | "website" | "birthdate" | "zoneinfo" | "locale" | "updated_at" | "acr" | "auth_time", {
|
291
|
+
values?: (string | number | boolean)[] | undefined;
|
292
|
+
value?: string | number | boolean | undefined;
|
293
|
+
essential?: boolean | undefined;
|
294
|
+
} | null>>>> | undefined;
|
295
|
+
login_hint?: string | undefined;
|
296
|
+
ui_locales?: string | undefined;
|
297
|
+
id_token_hint?: string | undefined;
|
298
|
+
display?: "page" | "popup" | "touch" | undefined;
|
299
|
+
prompt?: "none" | "login" | "consent" | "select_account" | undefined;
|
300
|
+
authorization_details?: {
|
301
|
+
type: string;
|
302
|
+
locations?: string[] | undefined;
|
303
|
+
actions?: string[] | undefined;
|
304
|
+
datatypes?: string[] | undefined;
|
305
|
+
identifier?: string | undefined;
|
306
|
+
privileges?: string[] | undefined;
|
307
|
+
}[] | undefined;
|
308
|
+
}>, z.ZodObject<{
|
309
|
+
/**
|
310
|
+
* AuthorizationRequest inside a JWT:
|
311
|
+
* - "iat" is required and **MUST** be less than one minute
|
312
|
+
*
|
313
|
+
* @see {@link https://datatracker.ietf.org/doc/html/rfc9101}
|
314
|
+
*/
|
315
|
+
request: z.ZodUnion<[z.ZodEffects<z.ZodEffects<z.ZodString, string, string>, `${string}.${string}.${string}`, string>, z.ZodEffects<z.ZodEffects<z.ZodString, string, string>, `${string}.${string}`, string>]>;
|
316
|
+
}, "strip", z.ZodTypeAny, {
|
317
|
+
request: `${string}.${string}.${string}` | `${string}.${string}`;
|
318
|
+
}, {
|
319
|
+
request: string;
|
320
|
+
}>, z.ZodObject<{
|
321
|
+
request_uri: z.ZodEffects<z.ZodString, `urn:ietf:params:oauth:request_uri:req-${string}`, string>;
|
322
|
+
}, "strip", z.ZodTypeAny, {
|
323
|
+
request_uri: `urn:ietf:params:oauth:request_uri:req-${string}`;
|
324
|
+
}, {
|
325
|
+
request_uri: string;
|
326
|
+
}>]>>;
|
327
|
+
export type AuthorizationRequestQuery = z.infer<typeof authorizationRequestQuerySchema>;
|
328
|
+
//# sourceMappingURL=types.d.ts.map
|
@@ -0,0 +1 @@
|
|
1
|
+
{"version":3,"file":"types.d.ts","sourceRoot":"","sources":["../../src/request/types.ts"],"names":[],"mappings":"AAKA,OAAO,EAAE,CAAC,EAAE,MAAM,KAAK,CAAA;AAIvB,eAAO,MAAM,6BAA6B;IACxC;;;;;OAKG;;;;;;EAEH,CAAA;AAEF,MAAM,MAAM,uBAAuB,GAAG,CAAC,CAAC,KAAK,CAC3C,OAAO,6BAA6B,CACrC,CAAA;AAED,eAAO,MAAM,gCAAgC;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;IAb3C;;;;;OAKG;;;;;;KAeJ,CAAA;AAED,MAAM,MAAM,0BAA0B,GAAG,CAAC,CAAC,KAAK,CAC9C,OAAO,gCAAgC,CACxC,CAAA;AAED,eAAO,MAAM,+BAA+B;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;IA1B1C;;;;;OAKG;;;;;;;;;;;;KA4BJ,CAAA;AAED,MAAM,MAAM,yBAAyB,GAAG,CAAC,CAAC,KAAK,CAC7C,OAAO,+BAA+B,CACvC,CAAA"}
|
@@ -0,0 +1,27 @@
|
|
1
|
+
"use strict";
|
2
|
+
Object.defineProperty(exports, "__esModule", { value: true });
|
3
|
+
exports.authorizationRequestQuerySchema = exports.pushedAuthorizationRequestSchema = exports.authorizationRequestJarSchema = void 0;
|
4
|
+
const jwk_1 = require("@atproto/jwk");
|
5
|
+
const oauth_types_1 = require("@atproto/oauth-types");
|
6
|
+
const zod_1 = require("zod");
|
7
|
+
const request_uri_js_1 = require("./request-uri.js");
|
8
|
+
exports.authorizationRequestJarSchema = zod_1.z.object({
|
9
|
+
/**
|
10
|
+
* AuthorizationRequest inside a JWT:
|
11
|
+
* - "iat" is required and **MUST** be less than one minute
|
12
|
+
*
|
13
|
+
* @see {@link https://datatracker.ietf.org/doc/html/rfc9101}
|
14
|
+
*/
|
15
|
+
request: zod_1.z.union([jwk_1.signedJwtSchema, jwk_1.unsignedJwtSchema]),
|
16
|
+
});
|
17
|
+
exports.pushedAuthorizationRequestSchema = zod_1.z.intersection(oauth_types_1.oauthClientIdentificationSchema, zod_1.z.union([
|
18
|
+
oauth_types_1.oauthAuthenticationRequestParametersSchema,
|
19
|
+
exports.authorizationRequestJarSchema,
|
20
|
+
//
|
21
|
+
]));
|
22
|
+
exports.authorizationRequestQuerySchema = zod_1.z.intersection(oauth_types_1.oauthClientIdentificationSchema, zod_1.z.union([
|
23
|
+
oauth_types_1.oauthAuthenticationRequestParametersSchema,
|
24
|
+
exports.authorizationRequestJarSchema,
|
25
|
+
zod_1.z.object({ request_uri: request_uri_js_1.requestUriSchema }),
|
26
|
+
]));
|
27
|
+
//# sourceMappingURL=types.js.map
|
@@ -0,0 +1 @@
|
|
1
|
+
{"version":3,"file":"types.js","sourceRoot":"","sources":["../../src/request/types.ts"],"names":[],"mappings":";;;AAAA,sCAAiE;AACjE,sDAG6B;AAC7B,6BAAuB;AAEvB,qDAAmD;AAEtC,QAAA,6BAA6B,GAAG,OAAC,CAAC,MAAM,CAAC;IACpD;;;;;OAKG;IACH,OAAO,EAAE,OAAC,CAAC,KAAK,CAAC,CAAC,qBAAe,EAAE,uBAAiB,CAAC,CAAC;CACvD,CAAC,CAAA;AAMW,QAAA,gCAAgC,GAAG,OAAC,CAAC,YAAY,CAC5D,6CAA+B,EAC/B,OAAC,CAAC,KAAK,CAAC;IACN,wDAA0C;IAC1C,qCAA6B;IAC7B,EAAE;CACH,CAAC,CACH,CAAA;AAMY,QAAA,+BAA+B,GAAG,OAAC,CAAC,YAAY,CAC3D,6CAA+B,EAC/B,OAAC,CAAC,KAAK,CAAC;IACN,wDAA0C;IAC1C,qCAA6B;IAC7B,OAAC,CAAC,MAAM,CAAC,EAAE,WAAW,EAAE,iCAAgB,EAAE,CAAC;CAC5C,CAAC,CACH,CAAA"}
|