@authup/server-core 1.0.0-beta.63 → 1.0.0-beta.64
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
- package/dist/adapters/database/data-source/options/module.d.ts +1 -0
- package/dist/adapters/database/data-source/options/module.d.ts.map +1 -1
- package/dist/adapters/database/data-source/options/module.mjs +33 -4
- package/dist/adapters/database/data-source/options/module.mjs.map +1 -1
- package/dist/adapters/database/domains/client/entity.d.ts +1 -2
- package/dist/adapters/database/domains/client/entity.d.ts.map +1 -1
- package/dist/adapters/database/domains/client/entity.mjs +7 -14
- package/dist/adapters/database/domains/client/entity.mjs.map +1 -1
- package/dist/adapters/database/domains/identity-provider-attribute/subscriber.d.ts +2 -1
- package/dist/adapters/database/domains/identity-provider-attribute/subscriber.d.ts.map +1 -1
- package/dist/adapters/database/domains/identity-provider-attribute/subscriber.mjs +2 -2
- package/dist/adapters/database/domains/identity-provider-attribute/subscriber.mjs.map +1 -1
- package/dist/adapters/database/domains/session/entity.d.ts +8 -0
- package/dist/adapters/database/domains/session/entity.d.ts.map +1 -1
- package/dist/adapters/database/domains/session/entity.mjs +19 -0
- package/dist/adapters/database/domains/session/entity.mjs.map +1 -1
- package/dist/adapters/database/domains/user/entity.d.ts +1 -0
- package/dist/adapters/database/domains/user/entity.d.ts.map +1 -1
- package/dist/adapters/database/domains/user/entity.mjs +6 -0
- package/dist/adapters/database/domains/user/entity.mjs.map +1 -1
- package/dist/adapters/database/extra-attribute-repository/repository.mjs +1 -1
- package/dist/adapters/database/extra-attribute-repository/repository.mjs.map +1 -1
- package/dist/adapters/database/extra-attribute-repository/tree/adapter.mjs +4 -2
- package/dist/adapters/database/extra-attribute-repository/tree/adapter.mjs.map +1 -1
- package/dist/adapters/database/extra-attribute-repository/tree/repository.mjs +1 -1
- package/dist/adapters/database/extra-attribute-repository/tree/repository.mjs.map +1 -1
- package/dist/adapters/database/index.mjs +3 -3
- package/dist/adapters/database/migrations/mysql/1787571998009-SessionUserAndClientColumns.d.ts +56 -0
- package/dist/adapters/database/migrations/mysql/1787571998009-SessionUserAndClientColumns.d.ts.map +1 -0
- package/dist/adapters/database/migrations/mysql/1787571998009-SessionUserAndClientColumns.mjs +105 -0
- package/dist/adapters/database/migrations/mysql/1787571998009-SessionUserAndClientColumns.mjs.map +1 -0
- package/dist/adapters/database/migrations/postgres/1787571998009-SessionUserAndClientColumns.d.ts +56 -0
- package/dist/adapters/database/migrations/postgres/1787571998009-SessionUserAndClientColumns.d.ts.map +1 -0
- package/dist/adapters/database/migrations/postgres/1787571998009-SessionUserAndClientColumns.mjs +104 -0
- package/dist/adapters/database/migrations/postgres/1787571998009-SessionUserAndClientColumns.mjs.map +1 -0
- package/dist/adapters/database/subscriber/module.d.ts +6 -2
- package/dist/adapters/database/subscriber/module.d.ts.map +1 -1
- package/dist/adapters/database/subscriber/module.mjs +9 -5
- package/dist/adapters/database/subscriber/module.mjs.map +1 -1
- package/dist/adapters/http/adapters/oauth2/authorization/module.mjs +1 -1
- package/dist/adapters/http/adapters/oauth2/authorization/module.mjs.map +1 -1
- package/dist/adapters/http/constants.d.ts +18 -0
- package/dist/adapters/http/constants.d.ts.map +1 -0
- package/dist/adapters/http/constants.mjs +23 -0
- package/dist/adapters/http/constants.mjs.map +1 -0
- package/dist/adapters/http/controllers/entities/identity-provider/module.mjs +3 -3
- package/dist/adapters/http/controllers/entities/identity-provider/module.mjs.map +1 -1
- package/dist/adapters/http/controllers/entities/identity-provider/types.d.ts +6 -0
- package/dist/adapters/http/controllers/entities/identity-provider/types.d.ts.map +1 -1
- package/dist/adapters/http/controllers/entities/realm/module.d.ts.map +1 -1
- package/dist/adapters/http/controllers/entities/realm/module.mjs +2 -0
- package/dist/adapters/http/controllers/entities/realm/module.mjs.map +1 -1
- package/dist/adapters/http/controllers/entities/session/module.d.ts +33 -1
- package/dist/adapters/http/controllers/entities/session/module.d.ts.map +1 -1
- package/dist/adapters/http/controllers/entities/session/module.mjs +74 -0
- package/dist/adapters/http/controllers/entities/session/module.mjs.map +1 -1
- package/dist/adapters/http/controllers/index.mjs +3 -1
- package/dist/adapters/http/controllers/workflows/account/index.d.ts +1 -0
- package/dist/adapters/http/controllers/workflows/account/index.d.ts.map +1 -1
- package/dist/adapters/http/controllers/workflows/account/module.d.ts +25 -16
- package/dist/adapters/http/controllers/workflows/account/module.d.ts.map +1 -1
- package/dist/adapters/http/controllers/workflows/account/module.mjs +40 -17
- package/dist/adapters/http/controllers/workflows/account/module.mjs.map +1 -1
- package/dist/adapters/http/controllers/workflows/account/types.d.ts +33 -0
- package/dist/adapters/http/controllers/workflows/account/types.d.ts.map +1 -0
- package/dist/adapters/http/controllers/workflows/activate/module.d.ts +8 -4
- package/dist/adapters/http/controllers/workflows/activate/module.d.ts.map +1 -1
- package/dist/adapters/http/controllers/workflows/activate/module.mjs +7 -9
- package/dist/adapters/http/controllers/workflows/activate/module.mjs.map +1 -1
- package/dist/adapters/http/controllers/workflows/admin/index.d.ts.map +1 -0
- package/dist/adapters/http/controllers/workflows/admin/index.mjs +5 -0
- package/dist/adapters/http/controllers/workflows/admin/module.d.ts +30 -0
- package/dist/adapters/http/controllers/workflows/admin/module.d.ts.map +1 -0
- package/dist/adapters/http/controllers/workflows/admin/module.mjs +88 -0
- package/dist/adapters/http/controllers/workflows/admin/module.mjs.map +1 -0
- package/dist/adapters/http/controllers/workflows/admin/types.d.ts +14 -0
- package/dist/adapters/http/controllers/workflows/admin/types.d.ts.map +1 -0
- package/dist/adapters/http/controllers/workflows/auth-console.d.ts +16 -0
- package/dist/adapters/http/controllers/workflows/auth-console.d.ts.map +1 -0
- package/dist/adapters/http/controllers/workflows/auth-console.mjs +32 -0
- package/dist/adapters/http/controllers/workflows/auth-console.mjs.map +1 -0
- package/dist/adapters/http/controllers/workflows/authorize/module.d.ts +16 -1
- package/dist/adapters/http/controllers/workflows/authorize/module.d.ts.map +1 -1
- package/dist/adapters/http/controllers/workflows/authorize/module.mjs +40 -22
- package/dist/adapters/http/controllers/workflows/authorize/module.mjs.map +1 -1
- package/dist/adapters/http/controllers/workflows/authorize/types.d.ts +5 -0
- package/dist/adapters/http/controllers/workflows/authorize/types.d.ts.map +1 -1
- package/dist/adapters/http/controllers/workflows/console-login/index.d.ts +3 -0
- package/dist/adapters/http/controllers/workflows/console-login/index.d.ts.map +1 -0
- package/dist/adapters/http/controllers/workflows/console-login/index.mjs +5 -0
- package/dist/adapters/http/controllers/workflows/console-login/module.d.ts +83 -0
- package/dist/adapters/http/controllers/workflows/console-login/module.d.ts.map +1 -0
- package/dist/adapters/http/controllers/workflows/console-login/module.mjs +230 -0
- package/dist/adapters/http/controllers/workflows/console-login/module.mjs.map +1 -0
- package/dist/adapters/http/controllers/workflows/console-login/types.d.ts +58 -0
- package/dist/adapters/http/controllers/workflows/console-login/types.d.ts.map +1 -0
- package/dist/adapters/http/controllers/workflows/index.d.ts +2 -0
- package/dist/adapters/http/controllers/workflows/index.d.ts.map +1 -1
- package/dist/adapters/http/controllers/workflows/index.mjs +5 -1
- package/dist/adapters/http/controllers/workflows/logout/module.d.ts +32 -3
- package/dist/adapters/http/controllers/workflows/logout/module.d.ts.map +1 -1
- package/dist/adapters/http/controllers/workflows/logout/module.mjs +48 -24
- package/dist/adapters/http/controllers/workflows/logout/module.mjs.map +1 -1
- package/dist/adapters/http/controllers/workflows/logout/types.d.ts +1 -1
- package/dist/adapters/http/controllers/workflows/logout/types.d.ts.map +1 -1
- package/dist/adapters/http/controllers/workflows/password-forgot/module.d.ts +8 -4
- package/dist/adapters/http/controllers/workflows/password-forgot/module.d.ts.map +1 -1
- package/dist/adapters/http/controllers/workflows/password-forgot/module.mjs +7 -9
- package/dist/adapters/http/controllers/workflows/password-forgot/module.mjs.map +1 -1
- package/dist/adapters/http/controllers/workflows/password-reset/module.d.ts +8 -4
- package/dist/adapters/http/controllers/workflows/password-reset/module.d.ts.map +1 -1
- package/dist/adapters/http/controllers/workflows/password-reset/module.mjs +7 -10
- package/dist/adapters/http/controllers/workflows/password-reset/module.mjs.map +1 -1
- package/dist/adapters/http/controllers/workflows/register/module.d.ts +8 -4
- package/dist/adapters/http/controllers/workflows/register/module.d.ts.map +1 -1
- package/dist/adapters/http/controllers/workflows/register/module.mjs +7 -9
- package/dist/adapters/http/controllers/workflows/register/module.mjs.map +1 -1
- package/dist/adapters/http/controllers/workflows/status/module.mjs +1 -1
- package/dist/adapters/http/controllers/workflows/token/module.d.ts +45 -2
- package/dist/adapters/http/controllers/workflows/token/module.d.ts.map +1 -1
- package/dist/adapters/http/controllers/workflows/token/module.mjs +102 -24
- package/dist/adapters/http/controllers/workflows/token/module.mjs.map +1 -1
- package/dist/adapters/http/cookie/index.d.ts +2 -0
- package/dist/adapters/http/cookie/index.d.ts.map +1 -0
- package/dist/adapters/http/cookie/index.mjs +5 -0
- package/dist/adapters/http/cookie/session.d.ts +35 -0
- package/dist/adapters/http/cookie/session.d.ts.map +1 -0
- package/dist/adapters/http/cookie/session.mjs +62 -0
- package/dist/adapters/http/cookie/session.mjs.map +1 -0
- package/dist/adapters/http/index.d.ts +2 -0
- package/dist/adapters/http/index.d.ts.map +1 -1
- package/dist/adapters/http/index.mjs +20 -16
- package/dist/adapters/http/internal-client/index.d.ts +3 -0
- package/dist/adapters/http/internal-client/index.d.ts.map +1 -0
- package/dist/adapters/http/internal-client/index.mjs +5 -0
- package/dist/adapters/http/internal-client/module.d.ts +21 -0
- package/dist/adapters/http/internal-client/module.d.ts.map +1 -0
- package/dist/adapters/http/{ui/auth-console/http-client.mjs → internal-client/module.mjs} +16 -15
- package/dist/adapters/http/internal-client/module.mjs.map +1 -0
- package/dist/adapters/http/internal-client/types.d.ts +13 -0
- package/dist/adapters/http/internal-client/types.d.ts.map +1 -0
- package/dist/adapters/http/middleware/built-in/authorization/index.d.ts +1 -0
- package/dist/adapters/http/middleware/built-in/authorization/index.d.ts.map +1 -1
- package/dist/adapters/http/middleware/built-in/authorization/index.mjs +2 -1
- package/dist/adapters/http/middleware/built-in/authorization/issuance.d.ts +45 -0
- package/dist/adapters/http/middleware/built-in/authorization/issuance.d.ts.map +1 -0
- package/dist/adapters/http/middleware/built-in/authorization/issuance.mjs +61 -0
- package/dist/adapters/http/middleware/built-in/authorization/issuance.mjs.map +1 -0
- package/dist/adapters/http/middleware/built-in/authorization/module.d.ts +26 -2
- package/dist/adapters/http/middleware/built-in/authorization/module.d.ts.map +1 -1
- package/dist/adapters/http/middleware/built-in/authorization/module.mjs +67 -1
- package/dist/adapters/http/middleware/built-in/authorization/module.mjs.map +1 -1
- package/dist/adapters/http/middleware/built-in/authorization/types.d.ts +21 -1
- package/dist/adapters/http/middleware/built-in/authorization/types.d.ts.map +1 -1
- package/dist/adapters/http/middleware/built-in/basic.d.ts +2 -2
- package/dist/adapters/http/middleware/built-in/basic.d.ts.map +1 -1
- package/dist/adapters/http/middleware/built-in/basic.mjs.map +1 -1
- package/dist/adapters/http/middleware/built-in/cors.d.ts +8 -2
- package/dist/adapters/http/middleware/built-in/cors.d.ts.map +1 -1
- package/dist/adapters/http/middleware/built-in/cors.mjs +20 -3
- package/dist/adapters/http/middleware/built-in/cors.mjs.map +1 -1
- package/dist/adapters/http/middleware/built-in/error.d.ts +2 -2
- package/dist/adapters/http/middleware/built-in/error.d.ts.map +1 -1
- package/dist/adapters/http/middleware/built-in/error.mjs.map +1 -1
- package/dist/adapters/http/middleware/built-in/index.d.ts +1 -4
- package/dist/adapters/http/middleware/built-in/index.d.ts.map +1 -1
- package/dist/adapters/http/middleware/built-in/index.mjs +3 -4
- package/dist/adapters/http/middleware/built-in/internal-http-client.d.ts +17 -0
- package/dist/adapters/http/middleware/built-in/internal-http-client.d.ts.map +1 -0
- package/dist/adapters/http/middleware/built-in/internal-http-client.mjs +27 -0
- package/dist/adapters/http/middleware/built-in/internal-http-client.mjs.map +1 -0
- package/dist/adapters/http/middleware/built-in/logger.mjs +1 -1
- package/dist/adapters/http/middleware/built-in/logger.mjs.map +1 -1
- package/dist/adapters/http/middleware/built-in/prometheus.d.ts +6 -5
- package/dist/adapters/http/middleware/built-in/prometheus.d.ts.map +1 -1
- package/dist/adapters/http/middleware/built-in/prometheus.mjs +3 -2
- package/dist/adapters/http/middleware/built-in/prometheus.mjs.map +1 -1
- package/dist/adapters/http/middleware/built-in/rate-limit.d.ts +2 -2
- package/dist/adapters/http/middleware/built-in/rate-limit.d.ts.map +1 -1
- package/dist/adapters/http/middleware/built-in/rate-limit.mjs +15 -0
- package/dist/adapters/http/middleware/built-in/rate-limit.mjs.map +1 -1
- package/dist/adapters/http/middleware/index.mjs +3 -4
- package/dist/adapters/http/request/constants.d.ts +1 -1
- package/dist/adapters/http/request/constants.d.ts.map +1 -1
- package/dist/adapters/http/request/constants.mjs +1 -5
- package/dist/adapters/http/request/constants.mjs.map +1 -1
- package/dist/adapters/http/request/helpers/index.d.ts +1 -1
- package/dist/adapters/http/request/helpers/index.d.ts.map +1 -1
- package/dist/adapters/http/request/helpers/index.mjs +2 -2
- package/dist/adapters/http/request/helpers/locale.d.ts +2 -1
- package/dist/adapters/http/request/helpers/locale.d.ts.map +1 -1
- package/dist/adapters/http/request/helpers/locale.mjs +1 -1
- package/dist/adapters/http/request/helpers/locale.mjs.map +1 -1
- package/dist/adapters/http/request/helpers/same-origin.d.ts +38 -0
- package/dist/adapters/http/request/helpers/same-origin.d.ts.map +1 -0
- package/dist/adapters/http/request/helpers/same-origin.mjs +68 -0
- package/dist/adapters/http/request/helpers/same-origin.mjs.map +1 -0
- package/dist/adapters/http/request/index.mjs +2 -2
- package/dist/adapters/http/request/permission/module.mjs +1 -1
- package/dist/adapters/http/request/permission/module.mjs.map +1 -1
- package/dist/adapters/http/request/types.d.ts +1 -2
- package/dist/adapters/http/request/types.d.ts.map +1 -1
- package/dist/adapters/shared/ldap/module.d.ts.map +1 -1
- package/dist/adapters/shared/ldap/module.mjs +4 -1
- package/dist/adapters/shared/ldap/module.mjs.map +1 -1
- package/dist/app/builder.d.ts +4 -4
- package/dist/app/builder.d.ts.map +1 -1
- package/dist/app/builder.mjs +7 -4
- package/dist/app/builder.mjs.map +1 -1
- package/dist/app/factory.d.ts +10 -0
- package/dist/app/factory.d.ts.map +1 -1
- package/dist/app/factory.mjs +26 -2
- package/dist/app/factory.mjs.map +1 -1
- package/dist/app/index.mjs +17 -19
- package/dist/app/modules/authentication/module.d.ts.map +1 -1
- package/dist/app/modules/authentication/module.mjs +15 -2
- package/dist/app/modules/authentication/module.mjs.map +1 -1
- package/dist/app/modules/authentication/repositories/session.d.ts +4 -1
- package/dist/app/modules/authentication/repositories/session.d.ts.map +1 -1
- package/dist/app/modules/authentication/repositories/session.mjs +20 -3
- package/dist/app/modules/authentication/repositories/session.mjs.map +1 -1
- package/dist/app/modules/components/index.d.ts +1 -0
- package/dist/app/modules/components/index.d.ts.map +1 -1
- package/dist/app/modules/components/module.d.ts +3 -1
- package/dist/app/modules/components/module.d.ts.map +1 -1
- package/dist/app/modules/components/module.mjs +26 -7
- package/dist/app/modules/components/module.mjs.map +1 -1
- package/dist/app/modules/components/types.d.ts +11 -0
- package/dist/app/modules/components/types.d.ts.map +1 -0
- package/dist/app/modules/config/app-origins.d.ts +10 -0
- package/dist/app/modules/config/app-origins.d.ts.map +1 -0
- package/dist/app/modules/config/app-origins.mjs +21 -0
- package/dist/app/modules/config/app-origins.mjs.map +1 -0
- package/dist/app/modules/config/constants.d.ts +23 -50
- package/dist/app/modules/config/constants.d.ts.map +1 -1
- package/dist/app/modules/config/constants.mjs +34 -51
- package/dist/app/modules/config/constants.mjs.map +1 -1
- package/dist/app/modules/config/index.d.ts +2 -3
- package/dist/app/modules/config/index.d.ts.map +1 -1
- package/dist/app/modules/config/index.mjs +4 -8
- package/dist/app/modules/config/module.d.ts +2 -2
- package/dist/app/modules/config/module.d.ts.map +1 -1
- package/dist/app/modules/config/module.mjs +1 -1
- package/dist/app/modules/config/module.mjs.map +1 -1
- package/dist/app/modules/config/read.d.ts +29 -0
- package/dist/app/modules/config/read.d.ts.map +1 -0
- package/dist/app/modules/config/read.mjs +65 -0
- package/dist/app/modules/config/read.mjs.map +1 -0
- package/dist/app/modules/config/types.d.ts +30 -405
- package/dist/app/modules/config/types.d.ts.map +1 -1
- package/dist/app/modules/config/validator.d.ts.map +1 -1
- package/dist/app/modules/config/validator.mjs +3 -87
- package/dist/app/modules/config/validator.mjs.map +1 -1
- package/dist/app/modules/database/index.d.ts +1 -0
- package/dist/app/modules/database/index.d.ts.map +1 -1
- package/dist/app/modules/database/index.mjs +2 -1
- package/dist/app/modules/database/migration.d.ts +33 -0
- package/dist/app/modules/database/migration.d.ts.map +1 -0
- package/dist/app/modules/database/migration.mjs +52 -0
- package/dist/app/modules/database/migration.mjs.map +1 -0
- package/dist/app/modules/database/module.d.ts.map +1 -1
- package/dist/app/modules/database/module.mjs +12 -6
- package/dist/app/modules/database/module.mjs.map +1 -1
- package/dist/app/modules/database/repositories/client/repository.d.ts +6 -1
- package/dist/app/modules/database/repositories/client/repository.d.ts.map +1 -1
- package/dist/app/modules/database/repositories/client/repository.mjs +21 -4
- package/dist/app/modules/database/repositories/client/repository.mjs.map +1 -1
- package/dist/app/modules/database/repositories/event/repository.d.ts +29 -2
- package/dist/app/modules/database/repositories/event/repository.d.ts.map +1 -1
- package/dist/app/modules/database/repositories/event/repository.mjs +42 -24
- package/dist/app/modules/database/repositories/event/repository.mjs.map +1 -1
- package/dist/app/modules/database/repositories/helpers.d.ts +24 -1
- package/dist/app/modules/database/repositories/helpers.d.ts.map +1 -1
- package/dist/app/modules/database/repositories/helpers.mjs +38 -1
- package/dist/app/modules/database/repositories/helpers.mjs.map +1 -1
- package/dist/app/modules/database/repositories/identity-provider/repository.mjs +1 -1
- package/dist/app/modules/database/repositories/identity-provider-account/repository.mjs +4 -2
- package/dist/app/modules/database/repositories/identity-provider-account/repository.mjs.map +1 -1
- package/dist/app/modules/database/repositories/key/repository.mjs +1 -1
- package/dist/app/modules/database/repositories/permission/repository.mjs +1 -1
- package/dist/app/modules/database/repositories/policy/repository.mjs +1 -1
- package/dist/app/modules/database/repositories/role/repository.mjs +1 -1
- package/dist/app/modules/database/repositories/scope/repository.mjs +1 -1
- package/dist/app/modules/database/repositories/trust-anchor/repository.mjs +1 -1
- package/dist/app/modules/database/repositories/user/repository.d.ts +7 -2
- package/dist/app/modules/database/repositories/user/repository.d.ts.map +1 -1
- package/dist/app/modules/database/repositories/user/repository.mjs +21 -4
- package/dist/app/modules/database/repositories/user/repository.mjs.map +1 -1
- package/dist/app/modules/http/constants.d.ts +3 -1
- package/dist/app/modules/http/constants.d.ts.map +1 -1
- package/dist/app/modules/http/constants.mjs +3 -2
- package/dist/app/modules/http/constants.mjs.map +1 -1
- package/dist/app/modules/http/module.d.ts +30 -9
- package/dist/app/modules/http/module.d.ts.map +1 -1
- package/dist/app/modules/http/module.mjs +31 -33
- package/dist/app/modules/http/module.mjs.map +1 -1
- package/dist/app/modules/http/modules/controller.d.ts +4 -3
- package/dist/app/modules/http/modules/controller.d.ts.map +1 -1
- package/dist/app/modules/http/modules/controller.mjs +65 -36
- package/dist/app/modules/http/modules/controller.mjs.map +1 -1
- package/dist/app/modules/http/modules/middleware.d.ts +13 -22
- package/dist/app/modules/http/modules/middleware.d.ts.map +1 -1
- package/dist/app/modules/http/modules/middleware.mjs +20 -36
- package/dist/app/modules/http/modules/middleware.mjs.map +1 -1
- package/dist/app/modules/identity/module.mjs +4 -4
- package/dist/app/modules/identity/repositories/client.mjs +4 -2
- package/dist/app/modules/identity/repositories/client.mjs.map +1 -1
- package/dist/app/modules/identity/repositories/user.mjs +4 -2
- package/dist/app/modules/identity/repositories/user.mjs.map +1 -1
- package/dist/app/modules/index.mjs +21 -23
- package/dist/app/modules/logger/module.mjs +1 -1
- package/dist/app/modules/logger/module.mjs.map +1 -1
- package/dist/app/modules/mail/module.d.ts.map +1 -1
- package/dist/app/modules/mail/module.mjs.map +1 -1
- package/dist/app/modules/oauth2/constants.d.ts +2 -1
- package/dist/app/modules/oauth2/constants.d.ts.map +1 -1
- package/dist/app/modules/oauth2/constants.mjs +1 -0
- package/dist/app/modules/oauth2/constants.mjs.map +1 -1
- package/dist/app/modules/oauth2/module.d.ts.map +1 -1
- package/dist/app/modules/oauth2/module.mjs +9 -4
- package/dist/app/modules/oauth2/module.mjs.map +1 -1
- package/dist/app/modules/oauth2/repositories/client/repository.mjs +4 -2
- package/dist/app/modules/oauth2/repositories/client/repository.mjs.map +1 -1
- package/dist/app/modules/oauth2/repositories/consent/repository.d.ts.map +1 -1
- package/dist/app/modules/oauth2/repositories/consent/repository.mjs +3 -2
- package/dist/app/modules/oauth2/repositories/consent/repository.mjs.map +1 -1
- package/dist/app/modules/oauth2/repositories/console-login/index.d.ts +2 -0
- package/dist/app/modules/oauth2/repositories/console-login/index.d.ts.map +1 -0
- package/dist/app/modules/oauth2/repositories/console-login/index.mjs +5 -0
- package/dist/app/modules/oauth2/repositories/console-login/store.d.ts +19 -0
- package/dist/app/modules/oauth2/repositories/console-login/store.d.ts.map +1 -0
- package/dist/app/modules/oauth2/repositories/console-login/store.mjs +47 -0
- package/dist/app/modules/oauth2/repositories/console-login/store.mjs.map +1 -0
- package/dist/app/modules/oauth2/repositories/constants.d.ts +1 -0
- package/dist/app/modules/oauth2/repositories/constants.d.ts.map +1 -1
- package/dist/app/modules/oauth2/repositories/constants.mjs +1 -0
- package/dist/app/modules/oauth2/repositories/constants.mjs.map +1 -1
- package/dist/app/modules/oauth2/repositories/index.d.ts +1 -0
- package/dist/app/modules/oauth2/repositories/index.d.ts.map +1 -1
- package/dist/app/modules/oauth2/repositories/index.mjs +3 -1
- package/dist/app/modules/oauth2/repositories/session-token/repository.d.ts +2 -2
- package/dist/app/modules/oauth2/repositories/session-token/repository.d.ts.map +1 -1
- package/dist/app/modules/oauth2/repositories/session-token/repository.mjs +5 -3
- package/dist/app/modules/oauth2/repositories/session-token/repository.mjs.map +1 -1
- package/dist/app/modules/provisioning/module.d.ts.map +1 -1
- package/dist/app/modules/provisioning/module.mjs +5 -6
- package/dist/app/modules/provisioning/module.mjs.map +1 -1
- package/dist/app/modules/provisioning/sources/composite/module.d.ts.map +1 -1
- package/dist/app/modules/provisioning/sources/composite/module.mjs +2 -1
- package/dist/app/modules/provisioning/sources/composite/module.mjs.map +1 -1
- package/dist/app/modules/provisioning/sources/default/module.d.ts.map +1 -1
- package/dist/app/modules/provisioning/sources/default/module.mjs +2 -1
- package/dist/app/modules/provisioning/sources/default/module.mjs.map +1 -1
- package/dist/app/modules/runtime/module.d.ts.map +1 -1
- package/dist/app/modules/runtime/module.mjs +2 -1
- package/dist/app/modules/runtime/module.mjs.map +1 -1
- package/dist/app/types.d.ts +16 -0
- package/dist/app/types.d.ts.map +1 -1
- package/dist/cli/commands/config.d.ts +40 -0
- package/dist/cli/commands/config.d.ts.map +1 -0
- package/dist/cli/commands/config.mjs +65 -0
- package/dist/cli/commands/config.mjs.map +1 -0
- package/dist/cli/commands/healthcheck.d.ts +3 -2
- package/dist/cli/commands/healthcheck.d.ts.map +1 -1
- package/dist/cli/commands/healthcheck.mjs +6 -3
- package/dist/cli/commands/healthcheck.mjs.map +1 -1
- package/dist/cli/commands/index.d.ts +3 -0
- package/dist/cli/commands/index.d.ts.map +1 -1
- package/dist/cli/commands/index.mjs +3 -1
- package/dist/cli/commands/migration.d.ts +3 -10
- package/dist/cli/commands/migration.d.ts.map +1 -1
- package/dist/cli/commands/migration.mjs +17 -9
- package/dist/cli/commands/migration.mjs.map +1 -1
- package/dist/cli/commands/shutdown.d.ts +16 -0
- package/dist/cli/commands/shutdown.d.ts.map +1 -0
- package/dist/cli/commands/shutdown.mjs +41 -0
- package/dist/cli/commands/shutdown.mjs.map +1 -0
- package/dist/cli/commands/start.d.ts +3 -2
- package/dist/cli/commands/start.d.ts.map +1 -1
- package/dist/cli/commands/start.mjs +3 -21
- package/dist/cli/commands/start.mjs.map +1 -1
- package/dist/cli/commands/types.d.ts.map +1 -0
- package/dist/cli/index.d.ts +8 -0
- package/dist/cli/index.d.ts.map +1 -1
- package/dist/cli/index.mjs.map +1 -1
- package/dist/cli/module.d.ts +0 -2
- package/dist/cli/module.d.ts.map +1 -1
- package/dist/cli/module.mjs +4 -3
- package/dist/cli/module.mjs.map +1 -1
- package/dist/components/oauth2-cleaner/module.d.ts +2 -2
- package/dist/components/oauth2-cleaner/module.d.ts.map +1 -1
- package/dist/components/oauth2-cleaner/module.mjs +10 -7
- package/dist/components/oauth2-cleaner/module.mjs.map +1 -1
- package/dist/core/authentication/index.mjs +2 -1
- package/dist/core/authentication/session/constants.d.ts +10 -0
- package/dist/core/authentication/session/constants.d.ts.map +1 -0
- package/dist/core/authentication/session/constants.mjs +16 -0
- package/dist/core/authentication/session/constants.mjs.map +1 -0
- package/dist/core/authentication/session/index.d.ts +1 -0
- package/dist/core/authentication/session/index.d.ts.map +1 -1
- package/dist/core/authentication/session/index.mjs +2 -1
- package/dist/core/authentication/session/module.d.ts +2 -1
- package/dist/core/authentication/session/module.d.ts.map +1 -1
- package/dist/core/authentication/session/module.mjs +7 -1
- package/dist/core/authentication/session/module.mjs.map +1 -1
- package/dist/core/authentication/session/types.d.ts +70 -1
- package/dist/core/authentication/session/types.d.ts.map +1 -1
- package/dist/core/authentication/session/types.mjs.map +1 -1
- package/dist/core/entities/client/schema.d.ts.map +1 -1
- package/dist/core/entities/client/schema.mjs +1 -2
- package/dist/core/entities/client/schema.mjs.map +1 -1
- package/dist/core/entities/client/service.d.ts.map +1 -1
- package/dist/core/entities/client/service.mjs +15 -1
- package/dist/core/entities/client/service.mjs.map +1 -1
- package/dist/core/entities/client/system-clients.d.ts +0 -5
- package/dist/core/entities/client/system-clients.d.ts.map +1 -1
- package/dist/core/entities/client/system-clients.mjs +0 -6
- package/dist/core/entities/client/system-clients.mjs.map +1 -1
- package/dist/core/entities/client/types.d.ts +12 -0
- package/dist/core/entities/client/types.d.ts.map +1 -1
- package/dist/core/entities/client-permission/service.mjs +1 -1
- package/dist/core/entities/client-permission/service.mjs.map +1 -1
- package/dist/core/entities/event/constants.d.ts +1 -6
- package/dist/core/entities/event/constants.d.ts.map +1 -1
- package/dist/core/entities/event/constants.mjs +1 -5
- package/dist/core/entities/event/constants.mjs.map +1 -1
- package/dist/core/entities/event/entity-event-handler.d.ts.map +1 -1
- package/dist/core/entities/event/entity-event-handler.mjs +3 -2
- package/dist/core/entities/event/entity-event-handler.mjs.map +1 -1
- package/dist/core/entities/event/service.d.ts.map +1 -1
- package/dist/core/entities/event/service.mjs +3 -3
- package/dist/core/entities/event/service.mjs.map +1 -1
- package/dist/core/entities/event/types.d.ts +15 -1
- package/dist/core/entities/event/types.d.ts.map +1 -1
- package/dist/core/entities/permission/service.mjs +1 -2
- package/dist/core/entities/permission/service.mjs.map +1 -1
- package/dist/core/entities/role-permission/service.mjs +1 -1
- package/dist/core/entities/role-permission/service.mjs.map +1 -1
- package/dist/core/entities/session/service.d.ts +13 -1
- package/dist/core/entities/session/service.d.ts.map +1 -1
- package/dist/core/entities/session/service.mjs +19 -16
- package/dist/core/entities/session/service.mjs.map +1 -1
- package/dist/core/entities/user/schema.d.ts.map +1 -1
- package/dist/core/entities/user/schema.mjs +1 -0
- package/dist/core/entities/user/schema.mjs.map +1 -1
- package/dist/core/entities/user/service.d.ts.map +1 -1
- package/dist/core/entities/user/service.mjs +21 -1
- package/dist/core/entities/user/service.mjs.map +1 -1
- package/dist/core/entities/user/types.d.ts +12 -0
- package/dist/core/entities/user/types.d.ts.map +1 -1
- package/dist/core/entities/user-permission/service.mjs +1 -1
- package/dist/core/entities/user-permission/service.mjs.map +1 -1
- package/dist/core/identity/permission/junction-grant.mjs +1 -1
- package/dist/core/identity/permission/junction-grant.mjs.map +1 -1
- package/dist/core/identity/provider/account/module.mjs +1 -1
- package/dist/core/identity/provider/account/module.mjs.map +1 -1
- package/dist/core/identity/provider/authentication/protocols/oauth2/assurance.mjs +1 -1
- package/dist/core/identity/provider/authentication/protocols/oauth2/assurance.mjs.map +1 -1
- package/dist/core/identity/registration/service.d.ts.map +1 -1
- package/dist/core/identity/registration/service.mjs +2 -1
- package/dist/core/identity/registration/service.mjs.map +1 -1
- package/dist/core/index.mjs +11 -3
- package/dist/core/oauth2/authorization/helpers.d.ts +14 -0
- package/dist/core/oauth2/authorization/helpers.d.ts.map +1 -1
- package/dist/core/oauth2/authorization/helpers.mjs +9 -1
- package/dist/core/oauth2/authorization/helpers.mjs.map +1 -1
- package/dist/core/oauth2/authorization/index.mjs +2 -2
- package/dist/core/oauth2/authorization/module.mjs +1 -1
- package/dist/core/oauth2/authorization/module.mjs.map +1 -1
- package/dist/core/oauth2/backchannel-logout/constants.d.ts +16 -0
- package/dist/core/oauth2/backchannel-logout/constants.d.ts.map +1 -0
- package/dist/core/oauth2/backchannel-logout/constants.mjs +20 -0
- package/dist/core/oauth2/backchannel-logout/constants.mjs.map +1 -0
- package/dist/core/oauth2/backchannel-logout/index.d.ts +4 -0
- package/dist/core/oauth2/backchannel-logout/index.d.ts.map +1 -0
- package/dist/core/oauth2/backchannel-logout/index.mjs +6 -0
- package/dist/core/oauth2/backchannel-logout/module.d.ts +26 -0
- package/dist/core/oauth2/backchannel-logout/module.d.ts.map +1 -0
- package/dist/core/oauth2/backchannel-logout/module.mjs +78 -0
- package/dist/core/oauth2/backchannel-logout/module.mjs.map +1 -0
- package/dist/core/oauth2/backchannel-logout/types.d.ts +29 -0
- package/dist/core/oauth2/backchannel-logout/types.d.ts.map +1 -0
- package/dist/core/oauth2/console-login/constants.d.ts +19 -0
- package/dist/core/oauth2/console-login/constants.d.ts.map +1 -0
- package/dist/core/oauth2/console-login/constants.mjs +24 -0
- package/dist/core/oauth2/console-login/constants.mjs.map +1 -0
- package/dist/core/oauth2/console-login/index.d.ts +3 -0
- package/dist/core/oauth2/console-login/index.d.ts.map +1 -0
- package/dist/core/oauth2/console-login/index.mjs +5 -0
- package/dist/core/oauth2/console-login/types.d.ts +53 -0
- package/dist/core/oauth2/console-login/types.d.ts.map +1 -0
- package/dist/core/oauth2/end-session/service.mjs +1 -1
- package/dist/core/oauth2/end-session/service.mjs.map +1 -1
- package/dist/core/oauth2/federated-login/module.mjs +3 -3
- package/dist/core/oauth2/federated-login/module.mjs.map +1 -1
- package/dist/core/oauth2/index.d.ts +4 -0
- package/dist/core/oauth2/index.d.ts.map +1 -1
- package/dist/core/oauth2/index.mjs +13 -3
- package/dist/core/oauth2/introspection/index.d.ts +3 -0
- package/dist/core/oauth2/introspection/index.d.ts.map +1 -0
- package/dist/core/oauth2/introspection/index.mjs +5 -0
- package/dist/core/oauth2/introspection/module.d.ts +14 -0
- package/dist/core/oauth2/introspection/module.d.ts.map +1 -0
- package/dist/core/oauth2/introspection/module.mjs +49 -0
- package/dist/core/oauth2/introspection/module.mjs.map +1 -0
- package/dist/core/oauth2/introspection/types.d.ts +45 -0
- package/dist/core/oauth2/introspection/types.d.ts.map +1 -0
- package/dist/core/oauth2/introspection/types.mjs +4 -0
- package/dist/core/oauth2/openid/claims.d.ts +20 -2
- package/dist/core/oauth2/openid/claims.d.ts.map +1 -1
- package/dist/core/oauth2/openid/claims.mjs +18 -4
- package/dist/core/oauth2/openid/claims.mjs.map +1 -1
- package/dist/core/oauth2/session-credential/constants.d.ts +30 -0
- package/dist/core/oauth2/session-credential/constants.d.ts.map +1 -0
- package/dist/core/oauth2/session-credential/constants.mjs +34 -0
- package/dist/core/oauth2/session-credential/constants.mjs.map +1 -0
- package/dist/core/oauth2/session-credential/index.d.ts +3 -0
- package/dist/core/oauth2/session-credential/index.d.ts.map +1 -0
- package/dist/core/oauth2/session-credential/index.mjs +6 -0
- package/dist/core/oauth2/session-credential/module.d.ts +31 -0
- package/dist/core/oauth2/session-credential/module.d.ts.map +1 -0
- package/dist/core/oauth2/session-credential/module.mjs +43 -0
- package/dist/core/oauth2/session-credential/module.mjs.map +1 -0
- package/dist/core/oauth2/session-token/constants.d.ts +10 -0
- package/dist/core/oauth2/session-token/constants.d.ts.map +1 -0
- package/dist/core/oauth2/session-token/constants.mjs +16 -0
- package/dist/core/oauth2/session-token/constants.mjs.map +1 -0
- package/dist/core/oauth2/session-token/index.d.ts +1 -0
- package/dist/core/oauth2/session-token/index.d.ts.map +1 -1
- package/dist/core/oauth2/session-token/index.mjs +2 -1
- package/dist/core/oauth2/session-token/types.d.ts +13 -2
- package/dist/core/oauth2/session-token/types.d.ts.map +1 -1
- package/dist/core/provisioning/merge/module.mjs +5 -3
- package/dist/core/provisioning/merge/module.mjs.map +1 -1
- package/dist/core/query/module.mjs +1 -1
- package/dist/core/query/module.mjs.map +1 -1
- package/dist/core/security/policy/evaluator.mjs +1 -1
- package/dist/core/security/policy/evaluator.mjs.map +1 -1
- package/dist/index.mjs +62 -59
- package/dist/path.mjs +1 -1
- package/dist/swagger.json +466 -104
- package/dist/utils/error.d.ts +6 -0
- package/dist/utils/error.d.ts.map +1 -1
- package/dist/utils/error.mjs +6 -2
- package/dist/utils/error.mjs.map +1 -1
- package/dist/utils/index.mjs +2 -2
- package/package.json +31 -25
- package/dist/adapters/http/middleware/built-in/assets.d.ts +0 -11
- package/dist/adapters/http/middleware/built-in/assets.d.ts.map +0 -1
- package/dist/adapters/http/middleware/built-in/assets.mjs +0 -91
- package/dist/adapters/http/middleware/built-in/assets.mjs.map +0 -1
- package/dist/adapters/http/middleware/built-in/theme.d.ts +0 -15
- package/dist/adapters/http/middleware/built-in/theme.d.ts.map +0 -1
- package/dist/adapters/http/middleware/built-in/theme.mjs +0 -27
- package/dist/adapters/http/middleware/built-in/theme.mjs.map +0 -1
- package/dist/adapters/http/middleware/built-in/types.d.ts +0 -14
- package/dist/adapters/http/middleware/built-in/types.d.ts.map +0 -1
- package/dist/adapters/http/middleware/built-in/ui-http-client.d.ts +0 -15
- package/dist/adapters/http/middleware/built-in/ui-http-client.d.ts.map +0 -1
- package/dist/adapters/http/middleware/built-in/ui-http-client.mjs +0 -25
- package/dist/adapters/http/middleware/built-in/ui-http-client.mjs.map +0 -1
- package/dist/adapters/http/request/helpers/redirect.d.ts +0 -14
- package/dist/adapters/http/request/helpers/redirect.d.ts.map +0 -1
- package/dist/adapters/http/request/helpers/redirect.mjs +0 -36
- package/dist/adapters/http/request/helpers/redirect.mjs.map +0 -1
- package/dist/adapters/http/ui/account-console/index.d.ts +0 -4
- package/dist/adapters/http/ui/account-console/index.d.ts.map +0 -1
- package/dist/adapters/http/ui/account-console/index.mjs +0 -6
- package/dist/adapters/http/ui/account-console/module.d.ts +0 -28
- package/dist/adapters/http/ui/account-console/module.d.ts.map +0 -1
- package/dist/adapters/http/ui/account-console/module.mjs +0 -80
- package/dist/adapters/http/ui/account-console/module.mjs.map +0 -1
- package/dist/adapters/http/ui/account-console/ref.d.ts +0 -30
- package/dist/adapters/http/ui/account-console/ref.d.ts.map +0 -1
- package/dist/adapters/http/ui/account-console/ref.mjs +0 -50
- package/dist/adapters/http/ui/account-console/ref.mjs.map +0 -1
- package/dist/adapters/http/ui/account-console/types.d.ts +0 -11
- package/dist/adapters/http/ui/account-console/types.d.ts.map +0 -1
- package/dist/adapters/http/ui/auth-console/http-client.d.ts +0 -22
- package/dist/adapters/http/ui/auth-console/http-client.d.ts.map +0 -1
- package/dist/adapters/http/ui/auth-console/http-client.mjs.map +0 -1
- package/dist/adapters/http/ui/auth-console/index.d.ts +0 -6
- package/dist/adapters/http/ui/auth-console/index.d.ts.map +0 -1
- package/dist/adapters/http/ui/auth-console/index.mjs +0 -8
- package/dist/adapters/http/ui/auth-console/module.d.ts +0 -4
- package/dist/adapters/http/ui/auth-console/module.d.ts.map +0 -1
- package/dist/adapters/http/ui/auth-console/module.mjs +0 -73
- package/dist/adapters/http/ui/auth-console/module.mjs.map +0 -1
- package/dist/adapters/http/ui/auth-console/resolve.d.ts +0 -21
- package/dist/adapters/http/ui/auth-console/resolve.d.ts.map +0 -1
- package/dist/adapters/http/ui/auth-console/resolve.mjs +0 -53
- package/dist/adapters/http/ui/auth-console/resolve.mjs.map +0 -1
- package/dist/adapters/http/ui/auth-console/serve.d.ts +0 -9
- package/dist/adapters/http/ui/auth-console/serve.d.ts.map +0 -1
- package/dist/adapters/http/ui/auth-console/serve.mjs +0 -35
- package/dist/adapters/http/ui/auth-console/serve.mjs.map +0 -1
- package/dist/adapters/http/ui/auth-console/types.d.ts +0 -26
- package/dist/adapters/http/ui/auth-console/types.d.ts.map +0 -1
- package/dist/adapters/http/ui/console-packages/index.d.ts.map +0 -1
- package/dist/adapters/http/ui/console-packages/index.mjs +0 -5
- package/dist/adapters/http/ui/console-packages/module.d.ts +0 -33
- package/dist/adapters/http/ui/console-packages/module.d.ts.map +0 -1
- package/dist/adapters/http/ui/console-packages/module.mjs +0 -70
- package/dist/adapters/http/ui/console-packages/module.mjs.map +0 -1
- package/dist/adapters/http/ui/console-packages/types.d.ts +0 -12
- package/dist/adapters/http/ui/console-packages/types.d.ts.map +0 -1
- package/dist/adapters/http/ui/index.d.ts +0 -6
- package/dist/adapters/http/ui/index.d.ts.map +0 -1
- package/dist/adapters/http/ui/index.mjs +0 -25
- package/dist/adapters/http/ui/shared/html.d.ts +0 -76
- package/dist/adapters/http/ui/shared/html.d.ts.map +0 -1
- package/dist/adapters/http/ui/shared/html.mjs +0 -104
- package/dist/adapters/http/ui/shared/html.mjs.map +0 -1
- package/dist/adapters/http/ui/shared/index.d.ts +0 -2
- package/dist/adapters/http/ui/shared/index.d.ts.map +0 -1
- package/dist/adapters/http/ui/shared/index.mjs +0 -5
- package/dist/adapters/http/ui/theme/apply.d.ts +0 -12
- package/dist/adapters/http/ui/theme/apply.d.ts.map +0 -1
- package/dist/adapters/http/ui/theme/apply.mjs +0 -29
- package/dist/adapters/http/ui/theme/apply.mjs.map +0 -1
- package/dist/adapters/http/ui/theme/assets.d.ts +0 -20
- package/dist/adapters/http/ui/theme/assets.d.ts.map +0 -1
- package/dist/adapters/http/ui/theme/assets.mjs +0 -86
- package/dist/adapters/http/ui/theme/assets.mjs.map +0 -1
- package/dist/adapters/http/ui/theme/constants.d.ts +0 -16
- package/dist/adapters/http/ui/theme/constants.d.ts.map +0 -1
- package/dist/adapters/http/ui/theme/constants.mjs +0 -20
- package/dist/adapters/http/ui/theme/constants.mjs.map +0 -1
- package/dist/adapters/http/ui/theme/contract/constants.d.ts +0 -120
- package/dist/adapters/http/ui/theme/contract/constants.d.ts.map +0 -1
- package/dist/adapters/http/ui/theme/contract/constants.mjs +0 -136
- package/dist/adapters/http/ui/theme/contract/constants.mjs.map +0 -1
- package/dist/adapters/http/ui/theme/contract/head.d.ts +0 -12
- package/dist/adapters/http/ui/theme/contract/head.d.ts.map +0 -1
- package/dist/adapters/http/ui/theme/contract/head.mjs +0 -61
- package/dist/adapters/http/ui/theme/contract/head.mjs.map +0 -1
- package/dist/adapters/http/ui/theme/contract/index.d.ts +0 -6
- package/dist/adapters/http/ui/theme/contract/index.d.ts.map +0 -1
- package/dist/adapters/http/ui/theme/contract/index.mjs +0 -8
- package/dist/adapters/http/ui/theme/contract/manifest.d.ts +0 -25
- package/dist/adapters/http/ui/theme/contract/manifest.d.ts.map +0 -1
- package/dist/adapters/http/ui/theme/contract/manifest.mjs +0 -77
- package/dist/adapters/http/ui/theme/contract/manifest.mjs.map +0 -1
- package/dist/adapters/http/ui/theme/contract/types.d.ts +0 -26
- package/dist/adapters/http/ui/theme/contract/types.d.ts.map +0 -1
- package/dist/adapters/http/ui/theme/contract/utils.d.ts +0 -11
- package/dist/adapters/http/ui/theme/contract/utils.d.ts.map +0 -1
- package/dist/adapters/http/ui/theme/contract/utils.mjs +0 -22
- package/dist/adapters/http/ui/theme/contract/utils.mjs.map +0 -1
- package/dist/adapters/http/ui/theme/index.d.ts +0 -7
- package/dist/adapters/http/ui/theme/index.d.ts.map +0 -1
- package/dist/adapters/http/ui/theme/index.mjs +0 -13
- package/dist/adapters/http/ui/theme/module.d.ts +0 -79
- package/dist/adapters/http/ui/theme/module.d.ts.map +0 -1
- package/dist/adapters/http/ui/theme/module.mjs +0 -206
- package/dist/adapters/http/ui/theme/module.mjs.map +0 -1
- package/dist/adapters/http/ui/theme/types.d.ts +0 -42
- package/dist/adapters/http/ui/theme/types.d.ts.map +0 -1
- package/dist/app/modules/config/helpers.d.ts +0 -9
- package/dist/app/modules/config/helpers.d.ts.map +0 -1
- package/dist/app/modules/config/helpers.mjs +0 -22
- package/dist/app/modules/config/helpers.mjs.map +0 -1
- package/dist/app/modules/config/normalize.d.ts +0 -3
- package/dist/app/modules/config/normalize.d.ts.map +0 -1
- package/dist/app/modules/config/normalize.mjs +0 -117
- package/dist/app/modules/config/normalize.mjs.map +0 -1
- package/dist/app/modules/config/origins.d.ts +0 -25
- package/dist/app/modules/config/origins.d.ts.map +0 -1
- package/dist/app/modules/config/origins.mjs +0 -46
- package/dist/app/modules/config/origins.mjs.map +0 -1
- package/dist/app/modules/config/read/env.d.ts +0 -3
- package/dist/app/modules/config/read/env.d.ts.map +0 -1
- package/dist/app/modules/config/read/env.mjs +0 -139
- package/dist/app/modules/config/read/env.mjs.map +0 -1
- package/dist/app/modules/config/read/fs.d.ts +0 -3
- package/dist/app/modules/config/read/fs.d.ts.map +0 -1
- package/dist/app/modules/config/read/fs.mjs +0 -60
- package/dist/app/modules/config/read/fs.mjs.map +0 -1
- package/dist/app/modules/config/read/index.d.ts +0 -5
- package/dist/app/modules/config/read/index.d.ts.map +0 -1
- package/dist/app/modules/config/read/index.mjs +0 -7
- package/dist/app/modules/config/read/module.d.ts +0 -4
- package/dist/app/modules/config/read/module.d.ts.map +0 -1
- package/dist/app/modules/config/read/module.mjs +0 -29
- package/dist/app/modules/config/read/module.mjs.map +0 -1
- package/dist/app/modules/config/read/types.d.ts +0 -9
- package/dist/app/modules/config/read/types.d.ts.map +0 -1
- package/dist/app/modules/config/trust-proxy.d.ts +0 -28
- package/dist/app/modules/config/trust-proxy.d.ts.map +0 -1
- package/dist/app/modules/config/trust-proxy.mjs +0 -64
- package/dist/app/modules/config/trust-proxy.mjs.map +0 -1
- package/dist/cli/config.d.ts +0 -18
- package/dist/cli/config.d.ts.map +0 -1
- package/dist/cli/config.mjs +0 -34
- package/dist/cli/config.mjs.map +0 -1
- package/dist/cli/types.d.ts.map +0 -1
- package/dist/utils/host.d.ts +0 -2
- package/dist/utils/host.d.ts.map +0 -1
- package/dist/utils/host.mjs +0 -12
- package/dist/utils/host.mjs.map +0 -1
- /package/dist/adapters/http/{middleware/built-in → controllers/workflows/account}/types.mjs +0 -0
- /package/dist/adapters/http/{ui/console-packages → controllers/workflows/admin}/index.d.ts +0 -0
- /package/dist/adapters/http/{ui/account-console → controllers/workflows/admin}/types.mjs +0 -0
- /package/dist/adapters/http/{ui/auth-console → controllers/workflows/console-login}/types.mjs +0 -0
- /package/dist/adapters/http/{ui/console-packages → internal-client}/types.mjs +0 -0
- /package/dist/{adapters/http/ui/theme/contract → app/modules/components}/types.mjs +0 -0
- /package/dist/cli/{types.d.ts → commands/types.d.ts} +0 -0
- /package/dist/{adapters/http/ui/theme → cli/commands}/types.mjs +0 -0
- /package/dist/{app/modules/config/read → core/oauth2/backchannel-logout}/types.mjs +0 -0
- /package/dist/{cli → core/oauth2/console-login}/types.mjs +0 -0
package/dist/swagger.json
CHANGED
|
@@ -267,7 +267,7 @@
|
|
|
267
267
|
],
|
|
268
268
|
"description": "Comma-separated allow-list of post-logout redirect patterns (OIDC\nRP-Initiated Logout `post_logout_redirect_uri`). Matched with the same\nwildcard semantics as `redirectUri`."
|
|
269
269
|
},
|
|
270
|
-
"
|
|
270
|
+
"backchannelLogoutUri": {
|
|
271
271
|
"anyOf": [
|
|
272
272
|
{
|
|
273
273
|
"type": "string"
|
|
@@ -275,9 +275,10 @@
|
|
|
275
275
|
{
|
|
276
276
|
"type": "null"
|
|
277
277
|
}
|
|
278
|
-
]
|
|
278
|
+
],
|
|
279
|
+
"description": "OIDC Back-Channel Logout 1.0 endpoint: one absolute http(s) URL, no\npatterns. Null means no logout token is pushed to this client."
|
|
279
280
|
},
|
|
280
|
-
"
|
|
281
|
+
"grantTypes": {
|
|
281
282
|
"anyOf": [
|
|
282
283
|
{
|
|
283
284
|
"type": "string"
|
|
@@ -296,18 +297,7 @@
|
|
|
296
297
|
"type": "null"
|
|
297
298
|
}
|
|
298
299
|
],
|
|
299
|
-
"description": "
|
|
300
|
-
},
|
|
301
|
-
"rootUrl": {
|
|
302
|
-
"anyOf": [
|
|
303
|
-
{
|
|
304
|
-
"type": "string"
|
|
305
|
-
},
|
|
306
|
-
{
|
|
307
|
-
"type": "null"
|
|
308
|
-
}
|
|
309
|
-
],
|
|
310
|
-
"description": "URL prepended to relative URLs."
|
|
300
|
+
"description": "The application's home URL, rendered as a link on the account\nconsole's Applications page. http(s)-only is enforced at render time."
|
|
311
301
|
},
|
|
312
302
|
"createdAt": {
|
|
313
303
|
"type": "string"
|
|
@@ -356,10 +346,9 @@
|
|
|
356
346
|
"secretEncrypted",
|
|
357
347
|
"redirectUri",
|
|
358
348
|
"postLogoutRedirectUri",
|
|
349
|
+
"backchannelLogoutUri",
|
|
359
350
|
"grantTypes",
|
|
360
|
-
"scope",
|
|
361
351
|
"baseUrl",
|
|
362
|
-
"rootUrl",
|
|
363
352
|
"createdAt",
|
|
364
353
|
"updatedAt",
|
|
365
354
|
"realmId",
|
|
@@ -663,6 +652,10 @@
|
|
|
663
652
|
"properties": {},
|
|
664
653
|
"type": "object"
|
|
665
654
|
},
|
|
655
|
+
"URLAlias": {
|
|
656
|
+
"type": "string",
|
|
657
|
+
"description": "The **`URL`** interface is used to parse, construct, normalize, and encode URLs. It works by providing properties which allow you to easily read and modify the components of a URL.\n\n[MDN Reference](https://developer.mozilla.org/docs/Web/API/URL)"
|
|
658
|
+
},
|
|
666
659
|
"SocketReadyState": {
|
|
667
660
|
"type": "string",
|
|
668
661
|
"enum": [
|
|
@@ -806,7 +799,7 @@
|
|
|
806
799
|
"description": "Server instance returned by `Bun.serve()` (`Bun.Server`).",
|
|
807
800
|
"properties": {
|
|
808
801
|
"url": {
|
|
809
|
-
"
|
|
802
|
+
"$ref": "#/components/schemas/URLAlias"
|
|
810
803
|
},
|
|
811
804
|
"port": {
|
|
812
805
|
"type": "number",
|
|
@@ -1373,7 +1366,7 @@
|
|
|
1373
1366
|
"description": "The underlying web-standard `Request` backing this request.\n\nSee https://srvx.h3.dev/guide/node#noderequest"
|
|
1374
1367
|
},
|
|
1375
1368
|
"_url": {
|
|
1376
|
-
"
|
|
1369
|
+
"$ref": "#/components/schemas/URLAlias",
|
|
1377
1370
|
"description": "Access to the parsed URL of this request."
|
|
1378
1371
|
},
|
|
1379
1372
|
"runtime": {
|
|
@@ -1638,16 +1631,6 @@
|
|
|
1638
1631
|
"realmId": {
|
|
1639
1632
|
"type": "string"
|
|
1640
1633
|
},
|
|
1641
|
-
"scope": {
|
|
1642
|
-
"anyOf": [
|
|
1643
|
-
{
|
|
1644
|
-
"type": "string"
|
|
1645
|
-
},
|
|
1646
|
-
{
|
|
1647
|
-
"type": "null"
|
|
1648
|
-
}
|
|
1649
|
-
]
|
|
1650
|
-
},
|
|
1651
1634
|
"grantTypes": {
|
|
1652
1635
|
"anyOf": [
|
|
1653
1636
|
{
|
|
@@ -1658,7 +1641,7 @@
|
|
|
1658
1641
|
}
|
|
1659
1642
|
]
|
|
1660
1643
|
},
|
|
1661
|
-
"
|
|
1644
|
+
"baseUrl": {
|
|
1662
1645
|
"anyOf": [
|
|
1663
1646
|
{
|
|
1664
1647
|
"type": "string"
|
|
@@ -1668,7 +1651,7 @@
|
|
|
1668
1651
|
}
|
|
1669
1652
|
]
|
|
1670
1653
|
},
|
|
1671
|
-
"
|
|
1654
|
+
"backchannelLogoutUri": {
|
|
1672
1655
|
"anyOf": [
|
|
1673
1656
|
{
|
|
1674
1657
|
"type": "string"
|
|
@@ -1772,16 +1755,6 @@
|
|
|
1772
1755
|
"realmId": {
|
|
1773
1756
|
"type": "string"
|
|
1774
1757
|
},
|
|
1775
|
-
"scope": {
|
|
1776
|
-
"anyOf": [
|
|
1777
|
-
{
|
|
1778
|
-
"type": "string"
|
|
1779
|
-
},
|
|
1780
|
-
{
|
|
1781
|
-
"type": "null"
|
|
1782
|
-
}
|
|
1783
|
-
]
|
|
1784
|
-
},
|
|
1785
1758
|
"grantTypes": {
|
|
1786
1759
|
"anyOf": [
|
|
1787
1760
|
{
|
|
@@ -1792,7 +1765,7 @@
|
|
|
1792
1765
|
}
|
|
1793
1766
|
]
|
|
1794
1767
|
},
|
|
1795
|
-
"
|
|
1768
|
+
"baseUrl": {
|
|
1796
1769
|
"anyOf": [
|
|
1797
1770
|
{
|
|
1798
1771
|
"type": "string"
|
|
@@ -1802,7 +1775,7 @@
|
|
|
1802
1775
|
}
|
|
1803
1776
|
]
|
|
1804
1777
|
},
|
|
1805
|
-
"
|
|
1778
|
+
"backchannelLogoutUri": {
|
|
1806
1779
|
"anyOf": [
|
|
1807
1780
|
{
|
|
1808
1781
|
"type": "string"
|
|
@@ -2754,6 +2727,10 @@
|
|
|
2754
2727
|
"email": {
|
|
2755
2728
|
"type": "string"
|
|
2756
2729
|
},
|
|
2730
|
+
"emailVerified": {
|
|
2731
|
+
"type": "boolean",
|
|
2732
|
+
"description": "Whether control of `email` was proven, by following the code mailed\nto it. Deliberately NOT derived from `active`, which is the account's\nenable flag and says nothing about the address (#3519)."
|
|
2733
|
+
},
|
|
2757
2734
|
"password": {
|
|
2758
2735
|
"anyOf": [
|
|
2759
2736
|
{
|
|
@@ -2868,6 +2845,7 @@
|
|
|
2868
2845
|
"lastName",
|
|
2869
2846
|
"displayName",
|
|
2870
2847
|
"email",
|
|
2848
|
+
"emailVerified",
|
|
2871
2849
|
"password",
|
|
2872
2850
|
"avatar",
|
|
2873
2851
|
"cover",
|
|
@@ -4848,6 +4826,224 @@
|
|
|
4848
4826
|
],
|
|
4849
4827
|
"type": "object"
|
|
4850
4828
|
},
|
|
4829
|
+
"OAuth2AuthorizationCodeRequest": {
|
|
4830
|
+
"properties": {
|
|
4831
|
+
"acr_values": {
|
|
4832
|
+
"type": "string",
|
|
4833
|
+
"description": "OIDC Core §3.1.2.1: space-delimited requested acr values. Voluntary\nper §5.5.1.1 — unknown tokens are ignored; `urn:authup:mfa` acts as\na step-up trigger."
|
|
4834
|
+
},
|
|
4835
|
+
"login_hint": {
|
|
4836
|
+
"type": "string",
|
|
4837
|
+
"description": "OIDC Core §3.1.2.1: login hint pre-filling the sign-in identifier."
|
|
4838
|
+
},
|
|
4839
|
+
"max_age": {
|
|
4840
|
+
"anyOf": [
|
|
4841
|
+
{
|
|
4842
|
+
"type": "number",
|
|
4843
|
+
"format": "double"
|
|
4844
|
+
},
|
|
4845
|
+
{
|
|
4846
|
+
"type": "string"
|
|
4847
|
+
}
|
|
4848
|
+
],
|
|
4849
|
+
"description": "OIDC Core §3.1.2.1: max acceptable age (seconds) of the authentication."
|
|
4850
|
+
},
|
|
4851
|
+
"prompt": {
|
|
4852
|
+
"type": "string",
|
|
4853
|
+
"description": "OIDC Core §3.1.2.1: space-delimited list of `none|login|consent|select_account`."
|
|
4854
|
+
},
|
|
4855
|
+
"code_challenge_method": {
|
|
4856
|
+
"type": "string"
|
|
4857
|
+
},
|
|
4858
|
+
"code_challenge": {
|
|
4859
|
+
"type": "string"
|
|
4860
|
+
},
|
|
4861
|
+
"nonce": {
|
|
4862
|
+
"type": "string"
|
|
4863
|
+
},
|
|
4864
|
+
"state": {
|
|
4865
|
+
"type": "string"
|
|
4866
|
+
},
|
|
4867
|
+
"scope": {
|
|
4868
|
+
"type": "string"
|
|
4869
|
+
},
|
|
4870
|
+
"redirect_uri": {
|
|
4871
|
+
"type": "string"
|
|
4872
|
+
},
|
|
4873
|
+
"realm_id": {
|
|
4874
|
+
"type": "string"
|
|
4875
|
+
},
|
|
4876
|
+
"client_id": {
|
|
4877
|
+
"type": "string"
|
|
4878
|
+
},
|
|
4879
|
+
"response_type": {
|
|
4880
|
+
"type": "string"
|
|
4881
|
+
}
|
|
4882
|
+
},
|
|
4883
|
+
"required": [
|
|
4884
|
+
"response_type"
|
|
4885
|
+
],
|
|
4886
|
+
"type": "object"
|
|
4887
|
+
},
|
|
4888
|
+
"AuthorizeInfoError": {
|
|
4889
|
+
"properties": {
|
|
4890
|
+
"code": {
|
|
4891
|
+
"type": "string"
|
|
4892
|
+
},
|
|
4893
|
+
"message": {
|
|
4894
|
+
"type": "string"
|
|
4895
|
+
}
|
|
4896
|
+
},
|
|
4897
|
+
"additionalProperties": {
|
|
4898
|
+
"additionalProperties": true
|
|
4899
|
+
},
|
|
4900
|
+
"required": [
|
|
4901
|
+
"message"
|
|
4902
|
+
],
|
|
4903
|
+
"type": "object",
|
|
4904
|
+
"description": "A refusal as it travels: the sanitized error's own enumerable\nattributes plus its `message`, which an Error does not carry as one.\n\nIt is NOT an `Error`. Nothing survives the JSON trip but data, so an\n`instanceof Error` check against it is always false, and `name` and\n`stack` are absent. `code` is the discriminator to branch on; the\nremaining attributes are whatever the error class carries (`issues`\non a validation failure, `data` on an OAuth2 one)."
|
|
4905
|
+
},
|
|
4906
|
+
"ClientSummary": {
|
|
4907
|
+
"properties": {
|
|
4908
|
+
"createdAt": {
|
|
4909
|
+
"type": "string"
|
|
4910
|
+
},
|
|
4911
|
+
"builtIn": {
|
|
4912
|
+
"type": "boolean"
|
|
4913
|
+
},
|
|
4914
|
+
"id": {
|
|
4915
|
+
"type": "string"
|
|
4916
|
+
},
|
|
4917
|
+
"displayName": {
|
|
4918
|
+
"anyOf": [
|
|
4919
|
+
{
|
|
4920
|
+
"type": "string"
|
|
4921
|
+
},
|
|
4922
|
+
{
|
|
4923
|
+
"type": "null"
|
|
4924
|
+
}
|
|
4925
|
+
]
|
|
4926
|
+
},
|
|
4927
|
+
"name": {
|
|
4928
|
+
"type": "string"
|
|
4929
|
+
}
|
|
4930
|
+
},
|
|
4931
|
+
"required": [
|
|
4932
|
+
"createdAt",
|
|
4933
|
+
"builtIn",
|
|
4934
|
+
"id",
|
|
4935
|
+
"displayName",
|
|
4936
|
+
"name"
|
|
4937
|
+
],
|
|
4938
|
+
"type": "object",
|
|
4939
|
+
"description": "The client as an anonymous visitor may see it. `GET /authorize` and\n`GET /authorize/info` are both unauthenticated, so the row is trimmed\nto these five fields before it leaves the server: never the\nredirect_uri patterns (the trusted-origin set), the grant types, the\nhome URL, the back-channel logout endpoint, the authentication method\nor the secret storage flags."
|
|
4940
|
+
},
|
|
4941
|
+
"RealmSummary": {
|
|
4942
|
+
"properties": {
|
|
4943
|
+
"id": {
|
|
4944
|
+
"type": "string"
|
|
4945
|
+
},
|
|
4946
|
+
"displayName": {
|
|
4947
|
+
"anyOf": [
|
|
4948
|
+
{
|
|
4949
|
+
"type": "string"
|
|
4950
|
+
},
|
|
4951
|
+
{
|
|
4952
|
+
"type": "null"
|
|
4953
|
+
}
|
|
4954
|
+
]
|
|
4955
|
+
},
|
|
4956
|
+
"name": {
|
|
4957
|
+
"type": "string"
|
|
4958
|
+
}
|
|
4959
|
+
},
|
|
4960
|
+
"required": [
|
|
4961
|
+
"id",
|
|
4962
|
+
"displayName",
|
|
4963
|
+
"name"
|
|
4964
|
+
],
|
|
4965
|
+
"type": "object",
|
|
4966
|
+
"description": "The client's realm, named so a page can render the realm-mismatch\nnotice (`codeRequest.realm_id` carries only the id)."
|
|
4967
|
+
},
|
|
4968
|
+
"StatusResponseFeatures": {
|
|
4969
|
+
"properties": {
|
|
4970
|
+
"adminConsole": {
|
|
4971
|
+
"type": "boolean"
|
|
4972
|
+
},
|
|
4973
|
+
"accountConsole": {
|
|
4974
|
+
"type": "boolean"
|
|
4975
|
+
},
|
|
4976
|
+
"emailVerification": {
|
|
4977
|
+
"type": "boolean"
|
|
4978
|
+
},
|
|
4979
|
+
"passwordRecovery": {
|
|
4980
|
+
"type": "boolean"
|
|
4981
|
+
},
|
|
4982
|
+
"registration": {
|
|
4983
|
+
"type": "boolean"
|
|
4984
|
+
}
|
|
4985
|
+
},
|
|
4986
|
+
"required": [
|
|
4987
|
+
"adminConsole",
|
|
4988
|
+
"accountConsole",
|
|
4989
|
+
"emailVerification",
|
|
4990
|
+
"passwordRecovery",
|
|
4991
|
+
"registration"
|
|
4992
|
+
],
|
|
4993
|
+
"type": "object"
|
|
4994
|
+
},
|
|
4995
|
+
"AuthorizeInfo": {
|
|
4996
|
+
"properties": {
|
|
4997
|
+
"requestPath": {
|
|
4998
|
+
"type": "string",
|
|
4999
|
+
"description": "Path and query of the authorize request, `provider` stripped. A\npage carries it as the same-origin `redirect` parameter on the\nregister / password links, so those lead back into this request."
|
|
5000
|
+
},
|
|
5001
|
+
"features": {
|
|
5002
|
+
"$ref": "#/components/schemas/StatusResponseFeatures"
|
|
5003
|
+
},
|
|
5004
|
+
"federatedLogin": {
|
|
5005
|
+
"properties": {
|
|
5006
|
+
"providerId": {
|
|
5007
|
+
"type": "string"
|
|
5008
|
+
}
|
|
5009
|
+
},
|
|
5010
|
+
"required": [
|
|
5011
|
+
"providerId"
|
|
5012
|
+
],
|
|
5013
|
+
"type": "object",
|
|
5014
|
+
"description": "A federated login waiting to be completed (plan 094). Only the\nprovider is named; the pending login itself rides a cookie."
|
|
5015
|
+
},
|
|
5016
|
+
"redirectUriVerified": {
|
|
5017
|
+
"type": "boolean",
|
|
5018
|
+
"description": "Whether the request `redirect_uri` matched a registered client\npattern. False means the page must not offer a redirect back to\nthe application."
|
|
5019
|
+
},
|
|
5020
|
+
"realm": {
|
|
5021
|
+
"$ref": "#/components/schemas/RealmSummary"
|
|
5022
|
+
},
|
|
5023
|
+
"scopes": {
|
|
5024
|
+
"type": "array",
|
|
5025
|
+
"items": {
|
|
5026
|
+
"$ref": "#/components/schemas/Scope"
|
|
5027
|
+
}
|
|
5028
|
+
},
|
|
5029
|
+
"client": {
|
|
5030
|
+
"$ref": "#/components/schemas/ClientSummary"
|
|
5031
|
+
},
|
|
5032
|
+
"error": {
|
|
5033
|
+
"$ref": "#/components/schemas/AuthorizeInfoError"
|
|
5034
|
+
},
|
|
5035
|
+
"codeRequest": {
|
|
5036
|
+
"$ref": "#/components/schemas/OAuth2AuthorizationCodeRequest"
|
|
5037
|
+
}
|
|
5038
|
+
},
|
|
5039
|
+
"required": [
|
|
5040
|
+
"requestPath",
|
|
5041
|
+
"features",
|
|
5042
|
+
"redirectUriVerified"
|
|
5043
|
+
],
|
|
5044
|
+
"type": "object",
|
|
5045
|
+
"description": "The complete render input of the hosted `/authorize` page: what the\ncode-request verifier resolved, plus the feature flags and the request\npath the page hands to its register / password-forgot links.\n\nA refused request is not an error response. It answers with `error`\nfilled and the resolved fields absent, exactly as the page renders it,\nso a caller renders the refusal instead of failing."
|
|
5046
|
+
},
|
|
4851
5047
|
"OAuth2JsonWebKey": {
|
|
4852
5048
|
"properties": {
|
|
4853
5049
|
"y": {
|
|
@@ -4914,6 +5110,37 @@
|
|
|
4914
5110
|
],
|
|
4915
5111
|
"type": "object"
|
|
4916
5112
|
},
|
|
5113
|
+
"EndSessionResponse": {
|
|
5114
|
+
"properties": {
|
|
5115
|
+
"redirect": {
|
|
5116
|
+
"type": "string",
|
|
5117
|
+
"description": "The validated `post_logout_redirect_uri`, `state` already applied.\nThe page navigates it only after its own sign-out has run."
|
|
5118
|
+
},
|
|
5119
|
+
"serverRevoked": {
|
|
5120
|
+
"type": "boolean",
|
|
5121
|
+
"description": "Whether a session was actually revoked here."
|
|
5122
|
+
},
|
|
5123
|
+
"hintSubKind": {
|
|
5124
|
+
"type": "string"
|
|
5125
|
+
},
|
|
5126
|
+
"hintSub": {
|
|
5127
|
+
"type": "string"
|
|
5128
|
+
},
|
|
5129
|
+
"hintVerified": {
|
|
5130
|
+
"type": "boolean",
|
|
5131
|
+
"description": "Whether the `id_token_hint` verified. Claims are reflected only when\nit did."
|
|
5132
|
+
},
|
|
5133
|
+
"clientName": {
|
|
5134
|
+
"type": "string",
|
|
5135
|
+
"description": "The client the hint or the request identified, for the page to name."
|
|
5136
|
+
}
|
|
5137
|
+
},
|
|
5138
|
+
"required": [
|
|
5139
|
+
"serverRevoked"
|
|
5140
|
+
],
|
|
5141
|
+
"type": "object",
|
|
5142
|
+
"description": "What `POST /logout` answers a JSON caller with (plan 101 D2).\n\nThe end_session_endpoint keeps its two OIDC browser bindings, which\nredirect to wherever the auth console is served; this is the shape the\nrendered page gets when it asks for the session to be ended.\n\nThe three hint fields are the operands of the page's auto-clear gate:\nit may tear the browser's own session down only when the server really\nrevoked a session AND that session's subject is this browser's user.\nThey are answered to the page's own request rather than carried in a\nURL for exactly that reason, since a URL-borne `hintSub` would be\nattacker-suppliable and the gate would decide nothing."
|
|
5143
|
+
},
|
|
4917
5144
|
"PasswordForgotResponse": {
|
|
4918
5145
|
"properties": {
|
|
4919
5146
|
"resetExpires": {
|
|
@@ -5018,29 +5245,6 @@
|
|
|
5018
5245
|
},
|
|
5019
5246
|
"type": "object"
|
|
5020
5247
|
},
|
|
5021
|
-
"StatusResponseFeatures": {
|
|
5022
|
-
"properties": {
|
|
5023
|
-
"accountConsole": {
|
|
5024
|
-
"type": "boolean"
|
|
5025
|
-
},
|
|
5026
|
-
"emailVerification": {
|
|
5027
|
-
"type": "boolean"
|
|
5028
|
-
},
|
|
5029
|
-
"passwordRecovery": {
|
|
5030
|
-
"type": "boolean"
|
|
5031
|
-
},
|
|
5032
|
-
"registration": {
|
|
5033
|
-
"type": "boolean"
|
|
5034
|
-
}
|
|
5035
|
-
},
|
|
5036
|
-
"required": [
|
|
5037
|
-
"accountConsole",
|
|
5038
|
-
"emailVerification",
|
|
5039
|
-
"passwordRecovery",
|
|
5040
|
-
"registration"
|
|
5041
|
-
],
|
|
5042
|
-
"type": "object"
|
|
5043
|
-
},
|
|
5044
5248
|
"StatusResponse": {
|
|
5045
5249
|
"properties": {
|
|
5046
5250
|
"features": {
|
|
@@ -5195,7 +5399,8 @@
|
|
|
5195
5399
|
"access_token",
|
|
5196
5400
|
"id_token",
|
|
5197
5401
|
"refresh_token",
|
|
5198
|
-
"mfa_token"
|
|
5402
|
+
"mfa_token",
|
|
5403
|
+
"logout_token"
|
|
5199
5404
|
],
|
|
5200
5405
|
"description": "Token type"
|
|
5201
5406
|
},
|
|
@@ -5232,6 +5437,81 @@
|
|
|
5232
5437
|
}
|
|
5233
5438
|
]
|
|
5234
5439
|
},
|
|
5440
|
+
"OpenIDClaims": {
|
|
5441
|
+
"properties": {
|
|
5442
|
+
"updated_at": {
|
|
5443
|
+
"type": "number",
|
|
5444
|
+
"format": "double",
|
|
5445
|
+
"description": "UTC Date in seconds"
|
|
5446
|
+
},
|
|
5447
|
+
"locale": {
|
|
5448
|
+
"type": "string"
|
|
5449
|
+
},
|
|
5450
|
+
"zoneinfo": {
|
|
5451
|
+
"type": "string"
|
|
5452
|
+
},
|
|
5453
|
+
"roles": {
|
|
5454
|
+
"type": "array",
|
|
5455
|
+
"items": {
|
|
5456
|
+
"type": "string"
|
|
5457
|
+
}
|
|
5458
|
+
},
|
|
5459
|
+
"birthdate": {
|
|
5460
|
+
"type": "string"
|
|
5461
|
+
},
|
|
5462
|
+
"gender": {
|
|
5463
|
+
"type": "string"
|
|
5464
|
+
},
|
|
5465
|
+
"website": {
|
|
5466
|
+
"type": "string"
|
|
5467
|
+
},
|
|
5468
|
+
"picture": {
|
|
5469
|
+
"type": "string"
|
|
5470
|
+
},
|
|
5471
|
+
"profile": {
|
|
5472
|
+
"type": "string"
|
|
5473
|
+
},
|
|
5474
|
+
"preferred_username": {
|
|
5475
|
+
"type": "string"
|
|
5476
|
+
},
|
|
5477
|
+
"nickname": {
|
|
5478
|
+
"type": "string"
|
|
5479
|
+
},
|
|
5480
|
+
"middle_name": {
|
|
5481
|
+
"type": "string"
|
|
5482
|
+
},
|
|
5483
|
+
"given_name": {
|
|
5484
|
+
"type": "string"
|
|
5485
|
+
},
|
|
5486
|
+
"family_name": {
|
|
5487
|
+
"type": "string"
|
|
5488
|
+
},
|
|
5489
|
+
"name": {
|
|
5490
|
+
"type": "string"
|
|
5491
|
+
},
|
|
5492
|
+
"address": {
|
|
5493
|
+
"properties": {},
|
|
5494
|
+
"additionalProperties": {
|
|
5495
|
+
"additionalProperties": true
|
|
5496
|
+
},
|
|
5497
|
+
"type": "object"
|
|
5498
|
+
},
|
|
5499
|
+
"phone_number_verified": {
|
|
5500
|
+
"type": "boolean"
|
|
5501
|
+
},
|
|
5502
|
+
"phone_number": {
|
|
5503
|
+
"type": "string"
|
|
5504
|
+
},
|
|
5505
|
+
"email_verified": {
|
|
5506
|
+
"type": "boolean"
|
|
5507
|
+
},
|
|
5508
|
+
"email": {
|
|
5509
|
+
"type": "string"
|
|
5510
|
+
}
|
|
5511
|
+
},
|
|
5512
|
+
"type": "object",
|
|
5513
|
+
"description": "The OpenID Connect Core §5.1 standard claims about a subject.\n\nDeclared in a module of its own, importing nothing, so both the id_token\npayload (`OpenIDTokenPayload`) and the RFC 7662 introspection response\n(`OAuth2TokenIntrospectionResponse`) can intersect it. The latter lives in\n`../oauth2`, which `./type` already imports, so declaring the claims there\nwould put the two modules in a cycle.\n\nEvery claim is optional, and an absent one is an OMITTED key rather than a\nnull: OIDC models an unavailable claim as one that is not returned, so a\nproducer mapping a nullable column onto a claim must skip it rather than\nemit `null`."
|
|
5514
|
+
},
|
|
5235
5515
|
"OAuth2TokenPermission": {
|
|
5236
5516
|
"properties": {
|
|
5237
5517
|
"realm_id": {
|
|
@@ -5275,6 +5555,9 @@
|
|
|
5275
5555
|
{
|
|
5276
5556
|
"$ref": "#/components/schemas/OAuth2TokenPayload"
|
|
5277
5557
|
},
|
|
5558
|
+
{
|
|
5559
|
+
"$ref": "#/components/schemas/OpenIDClaims"
|
|
5560
|
+
},
|
|
5278
5561
|
{
|
|
5279
5562
|
"properties": {
|
|
5280
5563
|
"permissions": {
|
|
@@ -5292,7 +5575,8 @@
|
|
|
5292
5575
|
],
|
|
5293
5576
|
"type": "object"
|
|
5294
5577
|
}
|
|
5295
|
-
]
|
|
5578
|
+
],
|
|
5579
|
+
"description": "The endpoint answers with the token's own payload plus the subject's OpenID\nclaims, so both are declared. Without the claim set they were reachable only\nthrough `JWTClaims`' index signature, which types every one of them `any`:\na renamed or mistyped claim compiled and failed at runtime (#3518).\n\n`OpenIDClaims` rather than `OpenIDTokenPayload`, because that type lives in a\nmodule importing this one."
|
|
5296
5580
|
},
|
|
5297
5581
|
"EntityCollectionResponseRealm": {
|
|
5298
5582
|
"properties": {
|
|
@@ -5402,6 +5686,14 @@
|
|
|
5402
5686
|
"type": "string",
|
|
5403
5687
|
"description": "The OAuth 2.0 / OpenID Connect URL of the OP's Dynamic Client Registration Endpoint OpenID.Registration."
|
|
5404
5688
|
},
|
|
5689
|
+
"backchannel_logout_session_supported": {
|
|
5690
|
+
"type": "boolean",
|
|
5691
|
+
"description": "OIDC Back-Channel Logout 1.0: the pushed logout token carries `sid`."
|
|
5692
|
+
},
|
|
5693
|
+
"backchannel_logout_supported": {
|
|
5694
|
+
"type": "boolean",
|
|
5695
|
+
"description": "OIDC Back-Channel Logout 1.0: the OP pushes a logout token to a\nclient's registered back-channel logout URI when a session ends."
|
|
5696
|
+
},
|
|
5405
5697
|
"end_session_endpoint": {
|
|
5406
5698
|
"type": "string",
|
|
5407
5699
|
"description": "OIDC RP-Initiated Logout 1.0 — the OP's end-session (logout) endpoint."
|
|
@@ -6482,6 +6774,17 @@
|
|
|
6482
6774
|
"type": "string",
|
|
6483
6775
|
"description": "Subject kind (e.g. user, client)"
|
|
6484
6776
|
},
|
|
6777
|
+
"secret": {
|
|
6778
|
+
"anyOf": [
|
|
6779
|
+
{
|
|
6780
|
+
"type": "string"
|
|
6781
|
+
},
|
|
6782
|
+
{
|
|
6783
|
+
"type": "null"
|
|
6784
|
+
}
|
|
6785
|
+
],
|
|
6786
|
+
"description": "The opaque credential a console browser presents in place of a bearer\ntoken (plan 088). The secret half of the row: `id` is the public\nidentifier (published as `sid` in every id_token and on every\n`/sessions` row), this is what a holder must prove.\n\nNull on every bearer-mode session. The column is `select: false`, so it\nis ABSENT from every ordinary read and present only on the dedicated\nlookup. That is why it is optional here rather than always a value."
|
|
6787
|
+
},
|
|
6485
6788
|
"ipAddress": {
|
|
6486
6789
|
"type": "string",
|
|
6487
6790
|
"description": "Last used ip address."
|
|
@@ -7113,6 +7416,9 @@
|
|
|
7113
7416
|
}
|
|
7114
7417
|
]
|
|
7115
7418
|
},
|
|
7419
|
+
"emailVerified": {
|
|
7420
|
+
"type": "boolean"
|
|
7421
|
+
},
|
|
7116
7422
|
"nameLocked": {
|
|
7117
7423
|
"type": "boolean"
|
|
7118
7424
|
},
|
|
@@ -7191,6 +7497,9 @@
|
|
|
7191
7497
|
}
|
|
7192
7498
|
]
|
|
7193
7499
|
},
|
|
7500
|
+
"emailVerified": {
|
|
7501
|
+
"type": "boolean"
|
|
7502
|
+
},
|
|
7194
7503
|
"nameLocked": {
|
|
7195
7504
|
"type": "boolean"
|
|
7196
7505
|
},
|
|
@@ -11116,36 +11425,36 @@
|
|
|
11116
11425
|
]
|
|
11117
11426
|
}
|
|
11118
11427
|
},
|
|
11119
|
-
"/
|
|
11428
|
+
"/login/start": {
|
|
11120
11429
|
"get": {
|
|
11121
|
-
"operationId": "
|
|
11430
|
+
"operationId": "Login_2",
|
|
11122
11431
|
"responses": {
|
|
11123
11432
|
"200": {
|
|
11124
11433
|
"description": "Ok",
|
|
11125
11434
|
"content": {
|
|
11126
11435
|
"application/json": {
|
|
11127
11436
|
"schema": {
|
|
11128
|
-
"
|
|
11437
|
+
"$ref": "#/components/schemas/Response"
|
|
11129
11438
|
}
|
|
11130
11439
|
}
|
|
11131
11440
|
}
|
|
11132
11441
|
}
|
|
11133
11442
|
},
|
|
11134
|
-
"description": "",
|
|
11443
|
+
"description": "A path of its own rather than a `realmId`-carrying `/login` (098 C1).\nOne URL used to mean two things: with a realm the server-side kick,\nwithout one the console's own login PAGE. The page is served by the\nconsole service now, so the kick can no longer fall back to it and the\nsplit became required rather than optional.",
|
|
11135
11444
|
"tags": [],
|
|
11136
11445
|
"parameters": []
|
|
11137
11446
|
}
|
|
11138
11447
|
},
|
|
11139
|
-
"/
|
|
11448
|
+
"/callback": {
|
|
11140
11449
|
"get": {
|
|
11141
|
-
"operationId": "
|
|
11450
|
+
"operationId": "Callback_2",
|
|
11142
11451
|
"responses": {
|
|
11143
11452
|
"200": {
|
|
11144
11453
|
"description": "Ok",
|
|
11145
11454
|
"content": {
|
|
11146
11455
|
"application/json": {
|
|
11147
11456
|
"schema": {
|
|
11148
|
-
"
|
|
11457
|
+
"$ref": "#/components/schemas/Response"
|
|
11149
11458
|
}
|
|
11150
11459
|
}
|
|
11151
11460
|
}
|
|
@@ -11158,20 +11467,20 @@
|
|
|
11158
11467
|
},
|
|
11159
11468
|
"/activate": {
|
|
11160
11469
|
"get": {
|
|
11161
|
-
"operationId": "
|
|
11470
|
+
"operationId": "Serve",
|
|
11162
11471
|
"responses": {
|
|
11163
11472
|
"200": {
|
|
11164
11473
|
"description": "Ok",
|
|
11165
11474
|
"content": {
|
|
11166
11475
|
"application/json": {
|
|
11167
11476
|
"schema": {
|
|
11168
|
-
"
|
|
11477
|
+
"$ref": "#/components/schemas/Response"
|
|
11169
11478
|
}
|
|
11170
11479
|
}
|
|
11171
11480
|
}
|
|
11172
11481
|
}
|
|
11173
11482
|
},
|
|
11174
|
-
"description": "",
|
|
11483
|
+
"description": "The page renders in the auth console service; this hop carries the\nrequest's own parameters over to it. The POST below stays here:\nserver-core keeps the protocol, the service keeps the render.",
|
|
11175
11484
|
"tags": [],
|
|
11176
11485
|
"parameters": []
|
|
11177
11486
|
},
|
|
@@ -11330,20 +11639,40 @@
|
|
|
11330
11639
|
"parameters": []
|
|
11331
11640
|
},
|
|
11332
11641
|
"get": {
|
|
11333
|
-
"operationId": "
|
|
11642
|
+
"operationId": "Serve_2",
|
|
11334
11643
|
"responses": {
|
|
11335
11644
|
"200": {
|
|
11336
11645
|
"description": "Ok",
|
|
11337
11646
|
"content": {
|
|
11338
11647
|
"application/json": {
|
|
11339
11648
|
"schema": {
|
|
11340
|
-
"
|
|
11649
|
+
"$ref": "#/components/schemas/Response"
|
|
11341
11650
|
}
|
|
11342
11651
|
}
|
|
11343
11652
|
}
|
|
11344
11653
|
}
|
|
11345
11654
|
},
|
|
11346
|
-
"description": "",
|
|
11655
|
+
"description": "The page renders in the auth console service, which reads its\nwhole input back from `/info` above. server-core keeps the\nprotocol: this GET is a stateless hop, and the POST that issues\nthe code stays here.",
|
|
11656
|
+
"tags": [],
|
|
11657
|
+
"parameters": []
|
|
11658
|
+
}
|
|
11659
|
+
},
|
|
11660
|
+
"/authorize/info": {
|
|
11661
|
+
"get": {
|
|
11662
|
+
"operationId": "Info",
|
|
11663
|
+
"responses": {
|
|
11664
|
+
"200": {
|
|
11665
|
+
"description": "Ok",
|
|
11666
|
+
"content": {
|
|
11667
|
+
"application/json": {
|
|
11668
|
+
"schema": {
|
|
11669
|
+
"$ref": "#/components/schemas/AuthorizeInfo"
|
|
11670
|
+
}
|
|
11671
|
+
}
|
|
11672
|
+
}
|
|
11673
|
+
}
|
|
11674
|
+
},
|
|
11675
|
+
"description": "The page's render input as JSON, for a renderer that is not this\nprocess (plan 101 D2). Anonymous like the page GET, and answering\nthe same query: a refused request is a 200 carrying the refusal,\nnever an error status, so the caller renders what the page renders.",
|
|
11347
11676
|
"tags": [],
|
|
11348
11677
|
"parameters": []
|
|
11349
11678
|
}
|
|
@@ -11414,27 +11743,20 @@
|
|
|
11414
11743
|
},
|
|
11415
11744
|
"/logout": {
|
|
11416
11745
|
"get": {
|
|
11417
|
-
"operationId": "
|
|
11746
|
+
"operationId": "Serve_3",
|
|
11418
11747
|
"responses": {
|
|
11419
11748
|
"200": {
|
|
11420
11749
|
"description": "Ok",
|
|
11421
11750
|
"content": {
|
|
11422
11751
|
"application/json": {
|
|
11423
11752
|
"schema": {
|
|
11424
|
-
"
|
|
11425
|
-
{
|
|
11426
|
-
"type": "string"
|
|
11427
|
-
},
|
|
11428
|
-
{
|
|
11429
|
-
"$ref": "#/components/schemas/Response"
|
|
11430
|
-
}
|
|
11431
|
-
]
|
|
11753
|
+
"$ref": "#/components/schemas/Response"
|
|
11432
11754
|
}
|
|
11433
11755
|
}
|
|
11434
11756
|
}
|
|
11435
11757
|
}
|
|
11436
11758
|
},
|
|
11437
|
-
"description": "",
|
|
11759
|
+
"description": "`end_session_endpoint` keeps both of its OIDC bindings, and both are\nBROWSER NAVIGATIONS: the RP either redirects the user here (GET) or\nauto-submits a form at it (form_post). Neither can consume a JSON\nanswer, so both hand over to the console service, carrying the\nrequest's own parameters.\n\nThe revoke moved to the JSON call the rendered page makes (plan 101\nD2). It could not stay here: the page needs `serverRevoked`,\n`hintSub` and `hintSubKind` to decide whether to tear its own local\nsession down, and those must reach it as the answer to its OWN\nrequest. Putting them in the redirect URL would let anyone craft\nthem, which is exactly the forced-logout CSRF the client-side gate\nexists to refuse.\n\nThe consequence to know: a browser with JavaScript disabled no\nlonger revokes. It also never returns to the RP, so both sides stay\nconsistent rather than the RP believing a logout it did not get.",
|
|
11438
11760
|
"tags": [],
|
|
11439
11761
|
"parameters": []
|
|
11440
11762
|
},
|
|
@@ -11446,12 +11768,12 @@
|
|
|
11446
11768
|
"content": {
|
|
11447
11769
|
"application/json": {
|
|
11448
11770
|
"schema": {
|
|
11449
|
-
"
|
|
11771
|
+
"oneOf": [
|
|
11450
11772
|
{
|
|
11451
|
-
"
|
|
11773
|
+
"$ref": "#/components/schemas/Response"
|
|
11452
11774
|
},
|
|
11453
11775
|
{
|
|
11454
|
-
"$ref": "#/components/schemas/
|
|
11776
|
+
"$ref": "#/components/schemas/EndSessionResponse"
|
|
11455
11777
|
}
|
|
11456
11778
|
]
|
|
11457
11779
|
}
|
|
@@ -11486,20 +11808,20 @@
|
|
|
11486
11808
|
},
|
|
11487
11809
|
"/password-forgot": {
|
|
11488
11810
|
"get": {
|
|
11489
|
-
"operationId": "
|
|
11811
|
+
"operationId": "Serve_4",
|
|
11490
11812
|
"responses": {
|
|
11491
11813
|
"200": {
|
|
11492
11814
|
"description": "Ok",
|
|
11493
11815
|
"content": {
|
|
11494
11816
|
"application/json": {
|
|
11495
11817
|
"schema": {
|
|
11496
|
-
"
|
|
11818
|
+
"$ref": "#/components/schemas/Response"
|
|
11497
11819
|
}
|
|
11498
11820
|
}
|
|
11499
11821
|
}
|
|
11500
11822
|
}
|
|
11501
11823
|
},
|
|
11502
|
-
"description": "",
|
|
11824
|
+
"description": "The page renders in the auth console service; this hop carries the\nrequest's own parameters over to it. The POST below stays here:\nserver-core keeps the protocol, the service keeps the render.",
|
|
11503
11825
|
"tags": [],
|
|
11504
11826
|
"parameters": []
|
|
11505
11827
|
},
|
|
@@ -11535,20 +11857,20 @@
|
|
|
11535
11857
|
},
|
|
11536
11858
|
"/password-reset": {
|
|
11537
11859
|
"get": {
|
|
11538
|
-
"operationId": "
|
|
11860
|
+
"operationId": "Serve_5",
|
|
11539
11861
|
"responses": {
|
|
11540
11862
|
"200": {
|
|
11541
11863
|
"description": "Ok",
|
|
11542
11864
|
"content": {
|
|
11543
11865
|
"application/json": {
|
|
11544
11866
|
"schema": {
|
|
11545
|
-
"
|
|
11867
|
+
"$ref": "#/components/schemas/Response"
|
|
11546
11868
|
}
|
|
11547
11869
|
}
|
|
11548
11870
|
}
|
|
11549
11871
|
}
|
|
11550
11872
|
},
|
|
11551
|
-
"description": "",
|
|
11873
|
+
"description": "The page renders in the auth console service; this hop carries the\nrequest's own parameters over to it. The POST below stays here:\nserver-core keeps the protocol, the service keeps the render.",
|
|
11552
11874
|
"tags": [],
|
|
11553
11875
|
"parameters": []
|
|
11554
11876
|
},
|
|
@@ -11584,20 +11906,20 @@
|
|
|
11584
11906
|
},
|
|
11585
11907
|
"/register": {
|
|
11586
11908
|
"get": {
|
|
11587
|
-
"operationId": "
|
|
11909
|
+
"operationId": "Serve_6",
|
|
11588
11910
|
"responses": {
|
|
11589
11911
|
"200": {
|
|
11590
11912
|
"description": "Ok",
|
|
11591
11913
|
"content": {
|
|
11592
11914
|
"application/json": {
|
|
11593
11915
|
"schema": {
|
|
11594
|
-
"
|
|
11916
|
+
"$ref": "#/components/schemas/Response"
|
|
11595
11917
|
}
|
|
11596
11918
|
}
|
|
11597
11919
|
}
|
|
11598
11920
|
}
|
|
11599
11921
|
},
|
|
11600
|
-
"description": "",
|
|
11922
|
+
"description": "The page renders in the auth console service; this hop carries the\nrequest's own parameters over to it. The POST below stays here:\nserver-core keeps the protocol, the service keeps the render.",
|
|
11601
11923
|
"tags": [],
|
|
11602
11924
|
"parameters": []
|
|
11603
11925
|
},
|
|
@@ -11710,7 +12032,7 @@
|
|
|
11710
12032
|
}
|
|
11711
12033
|
}
|
|
11712
12034
|
},
|
|
11713
|
-
"description": "",
|
|
12035
|
+
"description": "Deliberately ungated, unlike introspection (#3489). RFC 7009 §2.1 asks\nthe client to send its credentials (a bare `client_id` for a public\nclient) and the server to verify the token was issued to that client;\nauthup knowingly skips both. A public `client_id` identifies and\nproves nothing, so an ownership check built on it would be advisory,\nthe consoles are public clients whose kit revokes anonymously on\nlogout teardown, revoking a token one possesses is the benign action,\nand the uniform 200 below leaves a scanner nothing to learn.",
|
|
11714
12036
|
"tags": [],
|
|
11715
12037
|
"parameters": []
|
|
11716
12038
|
}
|
|
@@ -13358,6 +13680,46 @@
|
|
|
13358
13680
|
]
|
|
13359
13681
|
}
|
|
13360
13682
|
},
|
|
13683
|
+
"/sessions/@me/introspect": {
|
|
13684
|
+
"get": {
|
|
13685
|
+
"operationId": "GetOwnIntrospection",
|
|
13686
|
+
"responses": {
|
|
13687
|
+
"200": {
|
|
13688
|
+
"description": "Ok",
|
|
13689
|
+
"content": {
|
|
13690
|
+
"application/json": {
|
|
13691
|
+
"schema": {
|
|
13692
|
+
"$ref": "#/components/schemas/OAuth2TokenIntrospectionResponse"
|
|
13693
|
+
}
|
|
13694
|
+
}
|
|
13695
|
+
}
|
|
13696
|
+
}
|
|
13697
|
+
},
|
|
13698
|
+
"description": "The caller's own session as a CONTEXT rather than a row: the identity\nclaims and permission projection a console hydrates its store from, which\nis what `POST /token/introspect` answers minus everything token-shaped.\n\nA sibling of `@me` rather than a replacement for it: `GET /sessions/@me`\nreturns the `auth_sessions` ROW, and a console needs the subject's claims\nand permissions, which are not on it. Named `introspect` because it is\nliterally the introspection projection, keyed off the request's own\ncredential instead of a token in the body.\n\nNo client scope on the permission read, deliberately.\n`reduceBindingsByIdentityClient` keeps only permissions whose own\n`clientId` matches the one passed, so naming a console's client would\ndrop every global permission — nearly all of them. The bearer path passes\nthe token's `client_id` because a token IS issued to one client; a\nsession is not.",
|
|
13699
|
+
"tags": [],
|
|
13700
|
+
"parameters": []
|
|
13701
|
+
}
|
|
13702
|
+
},
|
|
13703
|
+
"/realms/{realmId}/sessions/@me/introspect": {
|
|
13704
|
+
"get": {
|
|
13705
|
+
"operationId": "GetOwnIntrospection_2",
|
|
13706
|
+
"responses": {
|
|
13707
|
+
"200": {
|
|
13708
|
+
"description": "Ok",
|
|
13709
|
+
"content": {
|
|
13710
|
+
"application/json": {
|
|
13711
|
+
"schema": {
|
|
13712
|
+
"$ref": "#/components/schemas/OAuth2TokenIntrospectionResponse"
|
|
13713
|
+
}
|
|
13714
|
+
}
|
|
13715
|
+
}
|
|
13716
|
+
}
|
|
13717
|
+
},
|
|
13718
|
+
"description": "The caller's own session as a CONTEXT rather than a row: the identity\nclaims and permission projection a console hydrates its store from, which\nis what `POST /token/introspect` answers minus everything token-shaped.\n\nA sibling of `@me` rather than a replacement for it: `GET /sessions/@me`\nreturns the `auth_sessions` ROW, and a console needs the subject's claims\nand permissions, which are not on it. Named `introspect` because it is\nliterally the introspection projection, keyed off the request's own\ncredential instead of a token in the body.\n\nNo client scope on the permission read, deliberately.\n`reduceBindingsByIdentityClient` keeps only permissions whose own\n`clientId` matches the one passed, so naming a console's client would\ndrop every global permission — nearly all of them. The bearer path passes\nthe token's `client_id` because a token IS issued to one client; a\nsession is not.",
|
|
13719
|
+
"tags": [],
|
|
13720
|
+
"parameters": []
|
|
13721
|
+
}
|
|
13722
|
+
},
|
|
13361
13723
|
"/sessions": {
|
|
13362
13724
|
"get": {
|
|
13363
13725
|
"operationId": "GetMany_25",
|