/** * Ory Hydra API * Documentation for all of Ory Hydra\'s APIs. * * The version of the OpenAPI document: v26.2.0 * Contact: hi@ory.sh * * NOTE: This class is auto generated by OpenAPI Generator (https://openapi-generator.tech). * https://openapi-generator.tech * Do not edit the class manually. */ import type { Configuration } from './configuration'; import type { AxiosPromise, AxiosInstance, RawAxiosRequestConfig } from 'axios'; import type { RequestArgs } from './base'; import { BaseAPI } from './base'; /** * Contains information on an device verification */ export interface AcceptDeviceUserCodeRequest { 'user_code'?: string; } export interface AcceptOAuth2ConsentRequest { 'context'?: any; 'grant_access_token_audience'?: Array; 'grant_scope'?: Array; /** * Remember, if set to true, tells ORY Hydra to remember this consent authorization and reuse it if the same client asks the same user for the same, or a subset of, scope. */ 'remember'?: boolean; /** * RememberFor sets how long the consent authorization should be remembered for in seconds. If set to `0`, the authorization will be remembered indefinitely. */ 'remember_for'?: number; 'session'?: AcceptOAuth2ConsentRequestSession; } export interface AcceptOAuth2ConsentRequestSession { /** * AccessToken sets session data for the access and refresh token, as well as any future tokens issued by the refresh grant. Keep in mind that this data will be available to anyone performing OAuth 2.0 Challenge Introspection. If only your services can perform OAuth 2.0 Challenge Introspection, this is usually fine. But if third parties can access that endpoint as well, sensitive data from the session might be exposed to them. Use with care! */ 'access_token'?: any; /** * IDToken sets session data for the OpenID Connect ID token. Keep in mind that the session\'id payloads are readable by anyone that has access to the ID Challenge. Use with care! */ 'id_token'?: any; } export interface AcceptOAuth2LoginRequest { /** * ACR sets the Authentication AuthorizationContext Class Reference value for this authentication session. You can use it to express that, for example, a user authenticated using two-factor authentication. */ 'acr'?: string; 'amr'?: Array; 'context'?: any; /** * Extend OAuth2 authentication session lifespan If set to `true`, the OAuth2 authentication cookie lifespan is extended. This is for example useful if you want the user to be able to use `prompt=none` continuously. This value can only be set to `true` if the user has an authentication, which is the case if the `skip` value is `true`. */ 'extend_session_lifespan'?: boolean; /** * ForceSubjectIdentifier forces the \"pairwise\" user ID of the end-user that authenticated. The \"pairwise\" user ID refers to the (Pairwise Identifier Algorithm)[http://openid.net/specs/openid-connect-core-1_0.html#PairwiseAlg] of the OpenID Connect specification. It allows you to set an obfuscated subject (\"user\") identifier that is unique to the client. Please note that this changes the user ID on endpoint /userinfo and sub claim of the ID Token. It does not change the sub claim in the OAuth 2.0 Introspection. Per default, ORY Hydra handles this value with its own algorithm. In case you want to set this yourself you can use this field. Please note that setting this field has no effect if `pairwise` is not configured in ORY Hydra or the OAuth 2.0 Client does not expect a pairwise identifier (set via `subject_type` key in the client\'s configuration). Please also be aware that ORY Hydra is unable to properly compute this value during authentication. This implies that you have to compute this value on every authentication process (probably depending on the client ID or some other unique value). If you fail to compute the proper value, then authentication processes which have id_token_hint set might fail. */ 'force_subject_identifier'?: string; /** * IdentityProviderSessionID is the session ID of the end-user that authenticated. If specified, we will use this value to propagate the logout. */ 'identity_provider_session_id'?: string; /** * Remember, if set to true, tells Ory Hydra to remember this user by telling the user agent (browser) to store a cookie with authentication data. If the same user performs another OAuth 2.0 Authorization Request, they will not be asked to log in again. */ 'remember'?: boolean; /** * RememberFor sets how long the authentication should be remembered for in seconds. If set to `0`, the authorization will be remembered for the duration of the browser session (using a session cookie). */ 'remember_for'?: number; /** * Subject is the user ID of the end-user that authenticated. */ 'subject': string; } /** * Create JSON Web Key Set Request Body */ export interface CreateJsonWebKeySet { /** * JSON Web Key Algorithm The algorithm to be used for creating the key. Supports `RS256`, `ES256`, `ES512`, `HS512`, and `HS256`. */ 'alg': string; /** * JSON Web Key ID The Key ID of the key to be created. */ 'kid': string; /** * JSON Web Key Use The \"use\" (public key use) parameter identifies the intended use of the public key. The \"use\" parameter is employed to indicate whether a public key is used for encrypting data or verifying the signature on data. Valid values are \"enc\" and \"sig\". */ 'use': string; } export interface CreateVerifiableCredentialRequestBody { 'format'?: string; 'proof'?: VerifiableCredentialProof; 'types'?: Array; } /** * Includes information about the supported verifiable credentials. */ export interface CredentialSupportedDraft00 { /** * OpenID Connect Verifiable Credentials Cryptographic Binding Methods Supported Contains a list of cryptographic binding methods supported for signing the proof. */ 'cryptographic_binding_methods_supported'?: Array; /** * OpenID Connect Verifiable Credentials Cryptographic Suites Supported Contains a list of cryptographic suites methods supported for signing the proof. */ 'cryptographic_suites_supported'?: Array; /** * OpenID Connect Verifiable Credentials Format Contains the format that is supported by this authorization server. */ 'format'?: string; /** * OpenID Connect Verifiable Credentials Types Contains the types of verifiable credentials supported. */ 'types'?: Array; } /** * # Ory\'s OAuth 2.0 Device Authorization API */ export interface DeviceAuthorization { /** * The device verification code. */ 'device_code'?: string; /** * The lifetime in seconds of the \"device_code\" and \"user_code\". */ 'expires_in'?: number; /** * The minimum amount of time in seconds that the client SHOULD wait between polling requests to the token endpoint. If no value is provided, clients MUST use 5 as the default. */ 'interval'?: number; /** * The end-user verification code. */ 'user_code'?: string; /** * The end-user verification URI on the authorization server. The URI should be short and easy to remember as end users will be asked to manually type it into their user agent. */ 'verification_uri'?: string; /** * A verification URI that includes the \"user_code\" (or other information with the same function as the \"user_code\"), which is designed for non-textual transmission. */ 'verification_uri_complete'?: string; } export interface DeviceUserAuthRequest { /** * ID is the identifier (\"device challenge\") of the device grant request. It is used to identify the session. */ 'challenge': string; 'client'?: OAuth2Client; 'handled_at'?: string; /** * RequestURL is the original Device Authorization URL requested. */ 'request_url'?: string; 'requested_access_token_audience'?: Array; 'requested_scope'?: Array; } /** * Error */ export interface ErrorOAuth2 { /** * Error */ 'error'?: string; /** * Error Debug Information Only available in dev mode. */ 'error_debug'?: string; /** * Error Description */ 'error_description'?: string; /** * Error Hint Helps the user identify the error cause. */ 'error_hint'?: string; /** * HTTP Status Code */ 'status_code'?: number; } export interface GenericError { /** * The status code */ 'code'?: number; /** * Debug information This field is often not exposed to protect against leaking sensitive information. */ 'debug'?: string; /** * Further error details */ 'details'?: any; /** * The error ID Useful when trying to identify various errors in application logic. */ 'id'?: string; /** * Error message The error\'s message. */ 'message': string; /** * A human-readable reason for the error */ 'reason'?: string; /** * The request ID The request ID is often exposed internally in order to trace errors across service architectures. This is often a UUID. */ 'request'?: string; /** * The status description */ 'status'?: string; } export interface GetVersion200Response { /** * The version of Ory Hydra. */ 'version'?: string; } export interface HealthNotReadyStatus { /** * Errors contains a list of errors that caused the not ready status. */ 'errors'?: { [key: string]: string; }; } export interface HealthStatus { /** * Status always contains \"ok\". */ 'status'?: string; } /** * Introspection contains an access token\'s session data as specified by [IETF RFC 7662](https://tools.ietf.org/html/rfc7662) */ export interface IntrospectedOAuth2Token { /** * Active is a boolean indicator of whether or not the presented token is currently active. The specifics of a token\'s \"active\" state will vary depending on the implementation of the authorization server and the information it keeps about its tokens, but a \"true\" value return for the \"active\" property will generally indicate that a given token has been issued by this authorization server, has not been revoked by the resource owner, and is within its given time window of validity (e.g., after its issuance time and before its expiration time). */ 'active': boolean; /** * Audience contains a list of the token\'s intended audiences. */ 'aud'?: Array; /** * ID is a client identifier for the OAuth 2.0 client that requested this token. */ 'client_id'?: string; /** * Expires at is an integer timestamp, measured in the number of seconds since January 1 1970 UTC, indicating when this token will expire. */ 'exp'?: number; /** * Extra is arbitrary data set by the session. */ 'ext'?: { [key: string]: any; }; /** * Issued at is an integer timestamp, measured in the number of seconds since January 1 1970 UTC, indicating when this token was originally issued. */ 'iat'?: number; /** * IssuerURL is a string representing the issuer of this token */ 'iss'?: string; /** * NotBefore is an integer timestamp, measured in the number of seconds since January 1 1970 UTC, indicating when this token is not to be used before. */ 'nbf'?: number; /** * ObfuscatedSubject is set when the subject identifier algorithm was set to \"pairwise\" during authorization. It is the `sub` value of the ID Token that was issued. */ 'obfuscated_subject'?: string; /** * Scope is a JSON string containing a space-separated list of scopes associated with this token. */ 'scope'?: string; /** * Subject of the token, as defined in JWT [RFC7519]. Usually a machine-readable identifier of the resource owner who authorized this token. */ 'sub'?: string; /** * TokenType is the introspected token\'s type, typically `Bearer`. */ 'token_type'?: string; /** * TokenUse is the introspected token\'s use, for example `access_token` or `refresh_token`. */ 'token_use'?: string; /** * Username is a human-readable identifier for the resource owner who authorized this token. */ 'username'?: string; } export interface IsReady200Response { /** * Always \"ok\". */ 'status'?: string; } export interface IsReady503Response { /** * Errors contains a list of errors that caused the not ready status. */ 'errors'?: { [key: string]: string; }; } /** * A JSONPatch document as defined by RFC 6902 */ export interface JsonPatch { /** * This field is used together with operation \"move\" and uses JSON Pointer notation. Learn more [about JSON Pointers](https://datatracker.ietf.org/doc/html/rfc6901#section-5). */ 'from'?: string; /** * The operation to be performed. One of \"add\", \"remove\", \"replace\", \"move\", \"copy\", or \"test\". */ 'op': string; /** * The path to the target path. Uses JSON pointer notation. Learn more [about JSON Pointers](https://datatracker.ietf.org/doc/html/rfc6901#section-5). */ 'path': string; /** * The value to be used within the operations. Learn more [about JSON Pointers](https://datatracker.ietf.org/doc/html/rfc6901#section-5). */ 'value'?: any; } export interface JsonWebKey { /** * The \"alg\" (algorithm) parameter identifies the algorithm intended for use with the key. The values used should either be registered in the IANA \"JSON Web Signature and Encryption Algorithms\" registry established by [JWA] or be a value that contains a Collision- Resistant Name. */ 'alg': string; 'crv'?: string; 'd'?: string; 'dp'?: string; 'dq'?: string; 'e'?: string; 'k'?: string; /** * The \"kid\" (key ID) parameter is used to match a specific key. This is used, for instance, to choose among a set of keys within a JWK Set during key rollover. The structure of the \"kid\" value is unspecified. When \"kid\" values are used within a JWK Set, different keys within the JWK Set SHOULD use distinct \"kid\" values. (One example in which different keys might use the same \"kid\" value is if they have different \"kty\" (key type) values but are considered to be equivalent alternatives by the application using them.) The \"kid\" value is a case-sensitive string. */ 'kid': string; /** * The \"kty\" (key type) parameter identifies the cryptographic algorithm family used with the key, such as \"RSA\" or \"EC\". \"kty\" values should either be registered in the IANA \"JSON Web Key Types\" registry established by [JWA] or be a value that contains a Collision- Resistant Name. The \"kty\" value is a case-sensitive string. */ 'kty': string; 'n'?: string; 'p'?: string; 'q'?: string; 'qi'?: string; /** * Use (\"public key use\") identifies the intended use of the public key. The \"use\" parameter is employed to indicate whether a public key is used for encrypting data or verifying the signature on data. Values are commonly \"sig\" (signature) or \"enc\" (encryption). */ 'use': string; 'x'?: string; /** * The \"x5c\" (X.509 certificate chain) parameter contains a chain of one or more PKIX certificates [RFC5280]. The certificate chain is represented as a JSON array of certificate value strings. Each string in the array is a base64-encoded (Section 4 of [RFC4648] -- not base64url-encoded) DER [ITU.X690.1994] PKIX certificate value. The PKIX certificate containing the key value MUST be the first certificate. */ 'x5c'?: Array; 'y'?: string; } /** * JSON Web Key Set */ export interface JsonWebKeySet { /** * List of JSON Web Keys The value of the \"keys\" parameter is an array of JSON Web Key (JWK) values. By default, the order of the JWK values within the array does not imply an order of preference among them, although applications of JWK Sets can choose to assign a meaning to the order for their purposes, if desired. */ 'keys'?: Array; } /** * For details on pagination please head over to the [pagination documentation](https://www.ory.sh/docs/ecosystem/api-design#pagination). */ export interface KeysetPaginationRequestParameters { /** * Items per Page This is the number of items per page to return. For details on pagination please head over to the [pagination documentation](https://www.ory.sh/docs/ecosystem/api-design#pagination). */ 'page_size'?: number; /** * Next Page Token The next page token. For details on pagination please head over to the [pagination documentation](https://www.ory.sh/docs/ecosystem/api-design#pagination). */ 'page_token'?: string; } /** * The `Link` HTTP header contains multiple links (`first`, `next`) formatted as: `; rel=\"first\"` For details on pagination please head over to the [pagination documentation](https://www.ory.sh/docs/ecosystem/api-design#pagination). */ export interface KeysetPaginationResponseHeaders { /** * The Link HTTP Header The `Link` header contains a comma-delimited list of links to the following pages: first: The first page of results. next: The next page of results. Pages are omitted if they do not exist. For example, if there is no next page, the `next` link is omitted. Examples: ; rel=\"next\" */ 'link'?: string; } /** * OAuth 2.0 Clients are used to perform OAuth 2.0 and OpenID Connect flows. Usually, OAuth 2.0 clients are generated for applications which want to consume your OAuth 2.0 or OpenID Connect capabilities. */ export interface OAuth2Client { /** * OAuth 2.0 Access Token Strategy AccessTokenStrategy is the strategy used to generate access tokens. Valid options are `jwt` and `opaque`. `jwt` is a bad idea, see https://www.ory.sh/docs/oauth2-oidc/jwt-access-token Setting the strategy here overrides the global setting in `strategies.access_token`. */ 'access_token_strategy'?: string; 'allowed_cors_origins'?: Array; 'audience'?: Array; /** * Specify a time duration in milliseconds, seconds, minutes, hours. */ 'authorization_code_grant_access_token_lifespan'?: string; /** * Specify a time duration in milliseconds, seconds, minutes, hours. */ 'authorization_code_grant_id_token_lifespan'?: string; /** * Specify a time duration in milliseconds, seconds, minutes, hours. */ 'authorization_code_grant_refresh_token_lifespan'?: string; /** * OpenID Connect Back-Channel Logout Session Required Boolean value specifying whether the RP requires that a sid (session ID) Claim be included in the Logout Token to identify the RP session with the OP when the backchannel_logout_uri is used. If omitted, the default value is false. */ 'backchannel_logout_session_required'?: boolean; /** * OpenID Connect Back-Channel Logout URI RP URL that will cause the RP to log itself out when sent a Logout Token by the OP. */ 'backchannel_logout_uri'?: string; /** * Specify a time duration in milliseconds, seconds, minutes, hours. */ 'client_credentials_grant_access_token_lifespan'?: string; /** * OAuth 2.0 Client ID The ID is immutable. If no ID is provided, a UUID4 will be generated. */ 'client_id'?: string; /** * OAuth 2.0 Client Name The human-readable name of the client to be presented to the end-user during authorization. */ 'client_name'?: string; /** * OAuth 2.0 Client Secret The secret will be included in the create request as cleartext, and then never again. The secret is kept in hashed format and is not recoverable once lost. */ 'client_secret'?: string; /** * OAuth 2.0 Client Secret Expires At The field is currently not supported and its value is always 0. */ 'client_secret_expires_at'?: number; /** * OAuth 2.0 Client URI ClientURI is a URL string of a web page providing information about the client. If present, the server SHOULD display this URL to the end-user in a clickable fashion. */ 'client_uri'?: string; 'contacts'?: Array; /** * OAuth 2.0 Client Creation Date CreatedAt returns the timestamp of the client\'s creation. */ 'created_at'?: string; /** * Specify a time duration in milliseconds, seconds, minutes, hours. */ 'device_authorization_grant_access_token_lifespan'?: string; /** * Specify a time duration in milliseconds, seconds, minutes, hours. */ 'device_authorization_grant_id_token_lifespan'?: string; /** * Specify a time duration in milliseconds, seconds, minutes, hours. */ 'device_authorization_grant_refresh_token_lifespan'?: string; /** * OpenID Connect Front-Channel Logout Session Required Boolean value specifying whether the RP requires that iss (issuer) and sid (session ID) query parameters be included to identify the RP session with the OP when the frontchannel_logout_uri is used. If omitted, the default value is false. */ 'frontchannel_logout_session_required'?: boolean; /** * OpenID Connect Front-Channel Logout URI RP URL that will cause the RP to log itself out when rendered in an iframe by the OP. An iss (issuer) query parameter and a sid (session ID) query parameter MAY be included by the OP to enable the RP to validate the request and to determine which of the potentially multiple sessions is to be logged out; if either is included, both MUST be. */ 'frontchannel_logout_uri'?: string; 'grant_types'?: Array; /** * Specify a time duration in milliseconds, seconds, minutes, hours. */ 'implicit_grant_access_token_lifespan'?: string; /** * Specify a time duration in milliseconds, seconds, minutes, hours. */ 'implicit_grant_id_token_lifespan'?: string; 'jwks'?: JsonWebKeySet; /** * OAuth 2.0 Client JSON Web Key Set URL URL for the Client\'s JSON Web Key Set [JWK] document. If the Client signs requests to the Server, it contains the signing key(s) the Server uses to validate signatures from the Client. The JWK Set MAY also contain the Client\'s encryption keys(s), which are used by the Server to encrypt responses to the Client. When both signing and encryption keys are made available, a use (Key Use) parameter value is REQUIRED for all keys in the referenced JWK Set to indicate each key\'s intended usage. Although some algorithms allow the same key to be used for both signatures and encryption, doing so is NOT RECOMMENDED, as it is less secure. The JWK x5c parameter MAY be used to provide X.509 representations of keys provided. When used, the bare key values MUST still be present and MUST match those in the certificate. */ 'jwks_uri'?: string; /** * Specify a time duration in milliseconds, seconds, minutes, hours. */ 'jwt_bearer_grant_access_token_lifespan'?: string; /** * OAuth 2.0 Client Logo URI A URL string referencing the client\'s logo. */ 'logo_uri'?: string; 'metadata'?: any; /** * OAuth 2.0 Client Owner Owner is a string identifying the owner of the OAuth 2.0 Client. */ 'owner'?: string; /** * OAuth 2.0 Client Policy URI PolicyURI is a URL string that points to a human-readable privacy policy document that describes how the deployment organization collects, uses, retains, and discloses personal data. */ 'policy_uri'?: string; 'post_logout_redirect_uris'?: Array; 'redirect_uris'?: Array; /** * Specify a time duration in milliseconds, seconds, minutes, hours. */ 'refresh_token_grant_access_token_lifespan'?: string; /** * Specify a time duration in milliseconds, seconds, minutes, hours. */ 'refresh_token_grant_id_token_lifespan'?: string; /** * Specify a time duration in milliseconds, seconds, minutes, hours. */ 'refresh_token_grant_refresh_token_lifespan'?: string; /** * OpenID Connect Dynamic Client Registration Access Token RegistrationAccessToken can be used to update, get, or delete the OAuth2 Client. It is sent when creating a client using Dynamic Client Registration. */ 'registration_access_token'?: string; /** * OpenID Connect Dynamic Client Registration URL RegistrationClientURI is the URL used to update, get, or delete the OAuth2 Client. */ 'registration_client_uri'?: string; /** * OpenID Connect Request Object Signing Algorithm JWS [JWS] alg algorithm [JWA] that MUST be used for signing Request Objects sent to the OP. All Request Objects from this Client MUST be rejected, if not signed with this algorithm. */ 'request_object_signing_alg'?: string; 'request_uris'?: Array; 'response_types'?: Array; /** * OAuth 2.0 Client Scope Scope is a string containing a space-separated list of scope values (as described in Section 3.3 of OAuth 2.0 [RFC6749]) that the client can use when requesting access tokens. */ 'scope'?: string; /** * OpenID Connect Sector Identifier URI URL using the https scheme to be used in calculating Pseudonymous Identifiers by the OP. The URL references a file with a single JSON array of redirect_uri values. */ 'sector_identifier_uri'?: string; /** * SkipConsent skips the consent screen for this client. This field can only be set from the admin API. */ 'skip_consent'?: boolean; /** * SkipLogoutConsent skips the logout consent screen for this client. This field can only be set from the admin API. */ 'skip_logout_consent'?: boolean; /** * OpenID Connect Subject Type The `subject_types_supported` Discovery parameter contains a list of the supported subject_type values for this server. Valid types include `pairwise` and `public`. */ 'subject_type'?: string; /** * OAuth 2.0 Token Endpoint Authentication Method Requested Client Authentication method for the Token Endpoint. The options are: `client_secret_basic`: (default) Send `client_id` and `client_secret` as `application/x-www-form-urlencoded` encoded in the HTTP Authorization header. `client_secret_post`: Send `client_id` and `client_secret` as `application/x-www-form-urlencoded` in the HTTP body. `private_key_jwt`: Use JSON Web Tokens to authenticate the client. `none`: Used for public clients (native apps, mobile apps) which can not have secrets. */ 'token_endpoint_auth_method'?: string; /** * OAuth 2.0 Token Endpoint Signing Algorithm Requested Client Authentication signing algorithm for the Token Endpoint. */ 'token_endpoint_auth_signing_alg'?: string; /** * OAuth 2.0 Client Terms of Service URI A URL string pointing to a human-readable terms of service document for the client that describes a contractual relationship between the end-user and the client that the end-user accepts when authorizing the client. */ 'tos_uri'?: string; /** * OAuth 2.0 Client Last Update Date UpdatedAt returns the timestamp of the last update. */ 'updated_at'?: string; /** * OpenID Connect Request Userinfo Signed Response Algorithm JWS alg algorithm [JWA] REQUIRED for signing UserInfo Responses. If this is specified, the response will be JWT [JWT] serialized, and signed using JWS. The default, if omitted, is for the UserInfo Response to return the Claims as a UTF-8 encoded JSON object using the application/json content-type. */ 'userinfo_signed_response_alg'?: string; } /** * Lifespans of different token types issued for this OAuth 2.0 Client. */ export interface OAuth2ClientTokenLifespans { /** * Specify a time duration in milliseconds, seconds, minutes, hours. */ 'authorization_code_grant_access_token_lifespan'?: string; /** * Specify a time duration in milliseconds, seconds, minutes, hours. */ 'authorization_code_grant_id_token_lifespan'?: string; /** * Specify a time duration in milliseconds, seconds, minutes, hours. */ 'authorization_code_grant_refresh_token_lifespan'?: string; /** * Specify a time duration in milliseconds, seconds, minutes, hours. */ 'client_credentials_grant_access_token_lifespan'?: string; /** * Specify a time duration in milliseconds, seconds, minutes, hours. */ 'device_authorization_grant_access_token_lifespan'?: string; /** * Specify a time duration in milliseconds, seconds, minutes, hours. */ 'device_authorization_grant_id_token_lifespan'?: string; /** * Specify a time duration in milliseconds, seconds, minutes, hours. */ 'device_authorization_grant_refresh_token_lifespan'?: string; /** * Specify a time duration in milliseconds, seconds, minutes, hours. */ 'implicit_grant_access_token_lifespan'?: string; /** * Specify a time duration in milliseconds, seconds, minutes, hours. */ 'implicit_grant_id_token_lifespan'?: string; /** * Specify a time duration in milliseconds, seconds, minutes, hours. */ 'jwt_bearer_grant_access_token_lifespan'?: string; /** * Specify a time duration in milliseconds, seconds, minutes, hours. */ 'refresh_token_grant_access_token_lifespan'?: string; /** * Specify a time duration in milliseconds, seconds, minutes, hours. */ 'refresh_token_grant_id_token_lifespan'?: string; /** * Specify a time duration in milliseconds, seconds, minutes, hours. */ 'refresh_token_grant_refresh_token_lifespan'?: string; } export interface OAuth2ConsentRequest { /** * ACR represents the Authentication AuthorizationContext Class Reference value for this authentication session. You can use it to express that, for example, a user authenticated using two factor authentication. */ 'acr'?: string; 'amr'?: Array; /** * Challenge is used to retrieve/accept/deny the consent request. */ 'challenge': string; 'client'?: OAuth2Client; /** * ConsentRequestID is the ID of the consent request. */ 'consent_request_id'?: string; 'context'?: any; /** * LoginChallenge is the login challenge this consent challenge belongs to. It can be used to associate a login and consent request in the login & consent app. */ 'login_challenge'?: string; /** * LoginSessionID is the login session ID. If the user-agent reuses a login session (via cookie / remember flag) this ID will remain the same. If the user-agent did not have an existing authentication session (e.g. remember is false) this will be a new random value. This value is used as the \"sid\" parameter in the ID Token and in OIDC Front-/Back- channel logout. It\'s value can generally be used to associate consecutive login requests by a certain user. */ 'login_session_id'?: string; 'oidc_context'?: OAuth2ConsentRequestOpenIDConnectContext; /** * RequestURL is the original OAuth 2.0 Authorization URL requested by the OAuth 2.0 client. It is the URL which initiates the OAuth 2.0 Authorization Code or OAuth 2.0 Implicit flow. This URL is typically not needed, but might come in handy if you want to deal with additional request parameters. */ 'request_url'?: string; 'requested_access_token_audience'?: Array; 'requested_scope'?: Array; /** * Skip, if true, implies that the client has requested the same scopes from the same user previously. If true, you must not ask the user to grant the requested scopes. You must however either allow or deny the consent request using the usual API call. */ 'skip'?: boolean; /** * Subject is the user ID of the end-user that authenticated. Now, that end user needs to grant or deny the scope requested by the OAuth 2.0 client. */ 'subject'?: string; } export interface OAuth2ConsentRequestOpenIDConnectContext { /** * ACRValues is the Authentication AuthorizationContext Class Reference requested in the OAuth 2.0 Authorization request. It is a parameter defined by OpenID Connect and expresses which level of authentication (e.g. 2FA) is required. OpenID Connect defines it as follows: > Requested Authentication AuthorizationContext Class Reference values. Space-separated string that specifies the acr values that the Authorization Server is being requested to use for processing this Authentication Request, with the values appearing in order of preference. The Authentication AuthorizationContext Class satisfied by the authentication performed is returned as the acr Claim Value, as specified in Section 2. The acr Claim is requested as a Voluntary Claim by this parameter. */ 'acr_values'?: Array; /** * Display is a string value that specifies how the Authorization Server displays the authentication and consent user interface pages to the End-User. The defined values are: page: The Authorization Server SHOULD display the authentication and consent UI consistent with a full User Agent page view. If the display parameter is not specified, this is the default display mode. popup: The Authorization Server SHOULD display the authentication and consent UI consistent with a popup User Agent window. The popup User Agent window should be of an appropriate size for a login-focused dialog and should not obscure the entire window that it is popping up over. touch: The Authorization Server SHOULD display the authentication and consent UI consistent with a device that leverages a touch interface. wap: The Authorization Server SHOULD display the authentication and consent UI consistent with a \"feature phone\" type display. The Authorization Server MAY also attempt to detect the capabilities of the User Agent and present an appropriate display. */ 'display'?: string; /** * IDTokenHintClaims are the claims of the ID Token previously issued by the Authorization Server being passed as a hint about the End-User\'s current or past authenticated session with the Client. */ 'id_token_hint_claims'?: { [key: string]: any; }; /** * LoginHint hints about the login identifier the End-User might use to log in (if necessary). This hint can be used by an RP if it first asks the End-User for their e-mail address (or other identifier) and then wants to pass that value as a hint to the discovered authorization service. This value MAY also be a phone number in the format specified for the phone_number Claim. The use of this parameter is optional. */ 'login_hint'?: string; /** * UILocales is the End-User\'id preferred languages and scripts for the user interface, represented as a space-separated list of BCP47 [RFC5646] language tag values, ordered by preference. For instance, the value \"fr-CA fr en\" represents a preference for French as spoken in Canada, then French (without a region designation), followed by English (without a region designation). An error SHOULD NOT result if some or all of the requested locales are not supported by the OpenID Provider. */ 'ui_locales'?: Array; } /** * A completed OAuth 2.0 Consent Session. */ export interface OAuth2ConsentSession { 'consent_request'?: OAuth2ConsentRequest; /** * ConsentRequestID is the identifier of the consent request that initiated this consent session. */ 'consent_request_id'?: string; 'context'?: any; 'grant_access_token_audience'?: Array; 'grant_scope'?: Array; 'handled_at'?: string; /** * Remember Consent Remember, if set to true, tells ORY Hydra to remember this consent authorization and reuse it if the same client asks the same user for the same, or a subset of, scope. */ 'remember'?: boolean; /** * Remember Consent For RememberFor sets how long the consent authorization should be remembered for in seconds. If set to `0`, the authorization will be remembered indefinitely. */ 'remember_for'?: number; 'session'?: AcceptOAuth2ConsentRequestSession; } export interface OAuth2LoginRequest { /** * ID is the identifier of the login request. */ 'challenge': string; 'client': OAuth2Client; 'oidc_context'?: OAuth2ConsentRequestOpenIDConnectContext; /** * RequestURL is the original OAuth 2.0 Authorization URL requested by the OAuth 2.0 client. It is the URL which initiates the OAuth 2.0 Authorization Code or OAuth 2.0 Implicit flow. This URL is typically not needed, but might come in handy if you want to deal with additional request parameters. */ 'request_url': string; 'requested_access_token_audience'?: Array; 'requested_scope'?: Array; /** * SessionID is the login session ID. If the user-agent reuses a login session (via cookie / remember flag) this ID will remain the same. If the user-agent did not have an existing authentication session (e.g. remember is false) this will be a new random value. This value is used as the \"sid\" parameter in the ID Token and in OIDC Front-/Back- channel logout. It\'s value can generally be used to associate consecutive login requests by a certain user. */ 'session_id'?: string; /** * Skip, if true, implies that the client has requested the same scopes from the same user previously. If true, you can skip asking the user to grant the requested scopes, and simply forward the user to the redirect URL. This feature allows you to update / set session information. */ 'skip': boolean; /** * Subject is the user ID of the end-user that authenticated. Now, that end user needs to grant or deny the scope requested by the OAuth 2.0 client. If this value is set and `skip` is true, you MUST include this subject type when accepting the login request, or the request will fail. */ 'subject': string; } export interface OAuth2LogoutRequest { /** * Challenge is the identifier of the logout authentication request. */ 'challenge'?: string; 'client'?: OAuth2Client; 'expires_at'?: string; /** * RequestURL is the original Logout URL requested. */ 'request_url'?: string; 'requested_at'?: string; /** * RPInitiated is set to true if the request was initiated by a Relying Party (RP), also known as an OAuth 2.0 Client. */ 'rp_initiated'?: boolean; /** * SessionID is the login session ID that was requested to log out. */ 'sid'?: string; /** * Subject is the user for whom the logout was request. */ 'subject'?: string; } /** * Contains a redirect URL used to complete a login, consent, or logout request. */ export interface OAuth2RedirectTo { /** * RedirectURL is the URL which you should redirect the user\'s browser to once the authentication process is completed. */ 'redirect_to': string; } /** * OAuth2 Token Exchange Result */ export interface OAuth2TokenExchange { /** * The access token issued by the authorization server. */ 'access_token'?: string; /** * The lifetime in seconds of the access token. For example, the value \"3600\" denotes that the access token will expire in one hour from the time the response was generated. */ 'expires_in'?: number; /** * To retrieve a refresh token request the id_token scope. */ 'id_token'?: string; /** * The refresh token, which can be used to obtain new access tokens. To retrieve it add the scope \"offline\" to your access token request. */ 'refresh_token'?: string; /** * The scope of the access token */ 'scope'?: string; /** * The type of the token issued */ 'token_type'?: string; } /** * Includes links to several endpoints (for example `/oauth2/token`) and exposes information on supported signature algorithms among others. */ export interface OidcConfiguration { /** * OAuth 2.0 Authorization Endpoint URL */ 'authorization_endpoint': string; /** * OpenID Connect Back-Channel Logout Session Required Boolean value specifying whether the OP can pass a sid (session ID) Claim in the Logout Token to identify the RP session with the OP. If supported, the sid Claim is also included in ID Tokens issued by the OP */ 'backchannel_logout_session_supported'?: boolean; /** * OpenID Connect Back-Channel Logout Supported Boolean value specifying whether the OP supports back-channel logout, with true indicating support. */ 'backchannel_logout_supported'?: boolean; /** * OpenID Connect Claims Parameter Parameter Supported Boolean value specifying whether the OP supports use of the claims parameter, with true indicating support. */ 'claims_parameter_supported'?: boolean; /** * OpenID Connect Supported Claims JSON array containing a list of the Claim Names of the Claims that the OpenID Provider MAY be able to supply values for. Note that for privacy or other reasons, this might not be an exhaustive list. */ 'claims_supported'?: Array; /** * OAuth 2.0 PKCE Supported Code Challenge Methods JSON array containing a list of Proof Key for Code Exchange (PKCE) [RFC7636] code challenge methods supported by this authorization server. */ 'code_challenge_methods_supported'?: Array; /** * OpenID Connect Verifiable Credentials Endpoint Contains the URL of the Verifiable Credentials Endpoint. */ 'credentials_endpoint_draft_00'?: string; /** * OpenID Connect Verifiable Credentials Supported JSON array containing a list of the Verifiable Credentials supported by this authorization server. */ 'credentials_supported_draft_00'?: Array; /** * OAuth 2.0 Device Authorization Endpoint URL */ 'device_authorization_endpoint': string; /** * OpenID Connect End-Session Endpoint URL at the OP to which an RP can perform a redirect to request that the End-User be logged out at the OP. */ 'end_session_endpoint'?: string; /** * OpenID Connect Front-Channel Logout Session Required Boolean value specifying whether the OP can pass iss (issuer) and sid (session ID) query parameters to identify the RP session with the OP when the frontchannel_logout_uri is used. If supported, the sid Claim is also included in ID Tokens issued by the OP. */ 'frontchannel_logout_session_supported'?: boolean; /** * OpenID Connect Front-Channel Logout Supported Boolean value specifying whether the OP supports HTTP-based logout, with true indicating support. */ 'frontchannel_logout_supported'?: boolean; /** * OAuth 2.0 Supported Grant Types JSON array containing a list of the OAuth 2.0 Grant Type values that this OP supports. */ 'grant_types_supported'?: Array; /** * OpenID Connect Default ID Token Signing Algorithms Algorithm used to sign OpenID Connect ID Tokens. */ 'id_token_signed_response_alg': Array; /** * OpenID Connect Supported ID Token Signing Algorithms JSON array containing a list of the JWS signing algorithms (alg values) supported by the OP for the ID Token to encode the Claims in a JWT. */ 'id_token_signing_alg_values_supported': Array; /** * OpenID Connect Issuer URL An URL using the https scheme with no query or fragment component that the OP asserts as its IssuerURL Identifier. If IssuerURL discovery is supported , this value MUST be identical to the issuer value returned by WebFinger. This also MUST be identical to the iss Claim value in ID Tokens issued from this IssuerURL. */ 'issuer': string; /** * OpenID Connect Well-Known JSON Web Keys URL URL of the OP\'s JSON Web Key Set [JWK] document. This contains the signing key(s) the RP uses to validate signatures from the OP. The JWK Set MAY also contain the Server\'s encryption key(s), which are used by RPs to encrypt requests to the Server. When both signing and encryption keys are made available, a use (Key Use) parameter value is REQUIRED for all keys in the referenced JWK Set to indicate each key\'s intended usage. Although some algorithms allow the same key to be used for both signatures and encryption, doing so is NOT RECOMMENDED, as it is less secure. The JWK x5c parameter MAY be used to provide X.509 representations of keys provided. When used, the bare key values MUST still be present and MUST match those in the certificate. */ 'jwks_uri': string; /** * OpenID Connect Dynamic Client Registration Endpoint URL */ 'registration_endpoint'?: string; /** * OpenID Connect Supported Request Object Signing Algorithms JSON array containing a list of the JWS signing algorithms (alg values) supported by the OP for Request Objects, which are described in Section 6.1 of OpenID Connect Core 1.0 [OpenID.Core]. These algorithms are used both when the Request Object is passed by value (using the request parameter) and when it is passed by reference (using the request_uri parameter). */ 'request_object_signing_alg_values_supported'?: Array; /** * OpenID Connect Request Parameter Supported Boolean value specifying whether the OP supports use of the request parameter, with true indicating support. */ 'request_parameter_supported'?: boolean; /** * OpenID Connect Request URI Parameter Supported Boolean value specifying whether the OP supports use of the request_uri parameter, with true indicating support. */ 'request_uri_parameter_supported'?: boolean; /** * OpenID Connect Requires Request URI Registration Boolean value specifying whether the OP requires any request_uri values used to be pre-registered using the request_uris registration parameter. */ 'require_request_uri_registration'?: boolean; /** * OAuth 2.0 Supported Response Modes JSON array containing a list of the OAuth 2.0 response_mode values that this OP supports. */ 'response_modes_supported'?: Array; /** * OAuth 2.0 Supported Response Types JSON array containing a list of the OAuth 2.0 response_type values that this OP supports. Dynamic OpenID Providers MUST support the code, id_token, and the token id_token Response Type values. */ 'response_types_supported': Array; /** * OAuth 2.0 Token Revocation URL URL of the authorization server\'s OAuth 2.0 revocation endpoint. */ 'revocation_endpoint'?: string; /** * OAuth 2.0 Supported Scope Values JSON array containing a list of the OAuth 2.0 [RFC6749] scope values that this server supports. The server MUST support the openid scope value. Servers MAY choose not to advertise some supported scope values even when this parameter is used */ 'scopes_supported'?: Array; /** * OpenID Connect Supported Subject Types JSON array containing a list of the Subject Identifier types that this OP supports. Valid types include pairwise and public. */ 'subject_types_supported': Array; /** * OAuth 2.0 Token Endpoint URL */ 'token_endpoint': string; /** * OAuth 2.0 Supported Client Authentication Methods JSON array containing a list of Client Authentication methods supported by this Token Endpoint. The options are client_secret_post, client_secret_basic, client_secret_jwt, and private_key_jwt, as described in Section 9 of OpenID Connect Core 1.0 */ 'token_endpoint_auth_methods_supported'?: Array; /** * OpenID Connect Userinfo URL URL of the OP\'s UserInfo Endpoint. */ 'userinfo_endpoint'?: string; /** * OpenID Connect User Userinfo Signing Algorithm Algorithm used to sign OpenID Connect Userinfo Responses. */ 'userinfo_signed_response_alg': Array; /** * OpenID Connect Supported Userinfo Signing Algorithm JSON array containing a list of the JWS [JWS] signing algorithms (alg values) [JWA] supported by the UserInfo Endpoint to encode the Claims in a JWT [JWT]. */ 'userinfo_signing_alg_values_supported'?: Array; } /** * OpenID Connect Userinfo */ export interface OidcUserInfo { /** * End-User\'s birthday, represented as an ISO 8601:2004 [ISO8601‑2004] YYYY-MM-DD format. The year MAY be 0000, indicating that it is omitted. To represent only the year, YYYY format is allowed. Note that depending on the underlying platform\'s date related function, providing just year can result in varying month and day, so the implementers need to take this factor into account to correctly process the dates. */ 'birthdate'?: string; /** * End-User\'s preferred e-mail address. Its value MUST conform to the RFC 5322 [RFC5322] addr-spec syntax. The RP MUST NOT rely upon this value being unique, as discussed in Section 5.7. */ 'email'?: string; /** * True if the End-User\'s e-mail address has been verified; otherwise false. When this Claim Value is true, this means that the OP took affirmative steps to ensure that this e-mail address was controlled by the End-User at the time the verification was performed. The means by which an e-mail address is verified is context-specific, and dependent upon the trust framework or contractual agreements within which the parties are operating. */ 'email_verified'?: boolean; /** * Surname(s) or last name(s) of the End-User. Note that in some cultures, people can have multiple family names or no family name; all can be present, with the names being separated by space characters. */ 'family_name'?: string; /** * End-User\'s gender. Values defined by this specification are female and male. Other values MAY be used when neither of the defined values are applicable. */ 'gender'?: string; /** * Given name(s) or first name(s) of the End-User. Note that in some cultures, people can have multiple given names; all can be present, with the names being separated by space characters. */ 'given_name'?: string; /** * End-User\'s locale, represented as a BCP47 [RFC5646] language tag. This is typically an ISO 639-1 Alpha-2 [ISO639‑1] language code in lowercase and an ISO 3166-1 Alpha-2 [ISO3166‑1] country code in uppercase, separated by a dash. For example, en-US or fr-CA. As a compatibility note, some implementations have used an underscore as the separator rather than a dash, for example, en_US; Relying Parties MAY choose to accept this locale syntax as well. */ 'locale'?: string; /** * Middle name(s) of the End-User. Note that in some cultures, people can have multiple middle names; all can be present, with the names being separated by space characters. Also note that in some cultures, middle names are not used. */ 'middle_name'?: string; /** * End-User\'s full name in displayable form including all name parts, possibly including titles and suffixes, ordered according to the End-User\'s locale and preferences. */ 'name'?: string; /** * Casual name of the End-User that may or may not be the same as the given_name. For instance, a nickname value of Mike might be returned alongside a given_name value of Michael. */ 'nickname'?: string; /** * End-User\'s preferred telephone number. E.164 [E.164] is RECOMMENDED as the format of this Claim, for example, +1 (425) 555-1212 or +56 (2) 687 2400. If the phone number contains an extension, it is RECOMMENDED that the extension be represented using the RFC 3966 [RFC3966] extension syntax, for example, +1 (604) 555-1234;ext=5678. */ 'phone_number'?: string; /** * True if the End-User\'s phone number has been verified; otherwise false. When this Claim Value is true, this means that the OP took affirmative steps to ensure that this phone number was controlled by the End-User at the time the verification was performed. The means by which a phone number is verified is context-specific, and dependent upon the trust framework or contractual agreements within which the parties are operating. When true, the phone_number Claim MUST be in E.164 format and any extensions MUST be represented in RFC 3966 format. */ 'phone_number_verified'?: boolean; /** * URL of the End-User\'s profile picture. This URL MUST refer to an image file (for example, a PNG, JPEG, or GIF image file), rather than to a Web page containing an image. Note that this URL SHOULD specifically reference a profile photo of the End-User suitable for displaying when describing the End-User, rather than an arbitrary photo taken by the End-User. */ 'picture'?: string; /** * Non-unique shorthand name by which the End-User wishes to be referred to at the RP, such as janedoe or j.doe. This value MAY be any valid JSON string including special characters such as @, /, or whitespace. */ 'preferred_username'?: string; /** * URL of the End-User\'s profile page. The contents of this Web page SHOULD be about the End-User. */ 'profile'?: string; /** * Subject - Identifier for the End-User at the IssuerURL. */ 'sub'?: string; /** * Time the End-User\'s information was last updated. Its value is a JSON number representing the number of seconds from 1970-01-01T0:0:0Z as measured in UTC until the date/time. */ 'updated_at'?: number; /** * URL of the End-User\'s Web page or blog. This Web page SHOULD contain information published by the End-User or an organization that the End-User is affiliated with. */ 'website'?: string; /** * String from zoneinfo [zoneinfo] time zone database representing the End-User\'s time zone. For example, Europe/Paris or America/Los_Angeles. */ 'zoneinfo'?: string; } export interface RFC6749ErrorJson { 'error'?: string; 'error_debug'?: string; 'error_description'?: string; 'error_hint'?: string; 'status_code'?: number; } export interface RejectOAuth2Request { /** * The error should follow the OAuth2 error format (e.g. `invalid_request`, `login_required`). Defaults to `request_denied`. */ 'error'?: string; /** * Debug contains information to help resolve the problem as a developer. Usually not exposed to the public but only in the server logs. */ 'error_debug'?: string; /** * Description of the error in a human readable format. */ 'error_description'?: string; /** * Hint to help resolve the error. */ 'error_hint'?: string; /** * Represents the HTTP status code of the error (e.g. 401 or 403) Defaults to 400 */ 'status_code'?: number; } export interface TokenPagination { /** * Items per page This is the number of items per page to return. For details on pagination please head over to the [pagination documentation](https://www.ory.sh/docs/ecosystem/api-design#pagination). */ 'page_size'?: number; /** * Next Page Token The next page token. For details on pagination please head over to the [pagination documentation](https://www.ory.sh/docs/ecosystem/api-design#pagination). */ 'page_token'?: string; } export interface TokenPaginationHeaders { /** * The link header contains pagination links. For details on pagination please head over to the [pagination documentation](https://www.ory.sh/docs/ecosystem/api-design#pagination). in: header */ 'link'?: string; /** * The total number of clients. in: header */ 'x-total-count'?: string; } /** * The `Link` HTTP header contains multiple links (`first`, `next`, `last`, `previous`) formatted as: `; rel=\"{page}\"` For details on pagination please head over to the [pagination documentation](https://www.ory.sh/docs/ecosystem/api-design#pagination). */ export interface TokenPaginationRequestParameters { /** * Items per Page This is the number of items per page to return. For details on pagination please head over to the [pagination documentation](https://www.ory.sh/docs/ecosystem/api-design#pagination). */ 'page_size'?: number; /** * Next Page Token The next page token. For details on pagination please head over to the [pagination documentation](https://www.ory.sh/docs/ecosystem/api-design#pagination). */ 'page_token'?: string; } /** * The `Link` HTTP header contains multiple links (`first`, `next`, `last`, `previous`) formatted as: `; rel=\"{page}\"` For details on pagination please head over to the [pagination documentation](https://www.ory.sh/docs/ecosystem/api-design#pagination). */ export interface TokenPaginationResponseHeaders { /** * The Link HTTP Header The `Link` header contains a comma-delimited list of links to the following pages: first: The first page of results. next: The next page of results. prev: The previous page of results. last: The last page of results. Pages are omitted if they do not exist. For example, if there is no next page, the `next` link is omitted. Examples: ; rel=\"first\",; rel=\"next\",; rel=\"prev\",; rel=\"last\" */ 'link'?: string; /** * The X-Total-Count HTTP Header The `X-Total-Count` header contains the total number of items in the collection. */ 'x-total-count'?: number; } /** * Trust OAuth2 JWT Bearer Grant Type Issuer Request Body */ export interface TrustOAuth2JwtGrantIssuer { /** * The \"allow_any_subject\" indicates that the issuer is allowed to have any principal as the subject of the JWT. */ 'allow_any_subject'?: boolean; /** * The \"expires_at\" indicates, when grant will expire, so we will reject assertion from \"issuer\" targeting \"subject\". */ 'expires_at': string; /** * The \"issuer\" identifies the principal that issued the JWT assertion (same as \"iss\" claim in JWT). */ 'issuer': string; 'jwk': JsonWebKey; /** * The \"scope\" contains list of scope values (as described in Section 3.3 of OAuth 2.0 [RFC6749]) */ 'scope': Array; /** * The \"subject\" identifies the principal that is the subject of the JWT. */ 'subject'?: string; } /** * OAuth2 JWT Bearer Grant Type Issuer Trust Relationship */ export interface TrustedOAuth2JwtGrantIssuer { /** * The \"allow_any_subject\" indicates that the issuer is allowed to have any principal as the subject of the JWT. */ 'allow_any_subject'?: boolean; /** * The \"created_at\" indicates, when grant was created. */ 'created_at'?: string; /** * The \"expires_at\" indicates, when grant will expire, so we will reject assertion from \"issuer\" targeting \"subject\". */ 'expires_at'?: string; 'id'?: string; /** * The \"issuer\" identifies the principal that issued the JWT assertion (same as \"iss\" claim in JWT). */ 'issuer'?: string; 'public_key'?: TrustedOAuth2JwtGrantJsonWebKey; /** * The \"scope\" contains list of scope values (as described in Section 3.3 of OAuth 2.0 [RFC6749]) */ 'scope'?: Array; /** * The \"subject\" identifies the principal that is the subject of the JWT. */ 'subject'?: string; } /** * OAuth2 JWT Bearer Grant Type Issuer Trusted JSON Web Key */ export interface TrustedOAuth2JwtGrantJsonWebKey { /** * The \"key_id\" is key unique identifier (same as kid header in jws/jwt). */ 'kid'?: string; /** * The \"set\" is basically a name for a group(set) of keys. Will be the same as \"issuer\" in grant. */ 'set'?: string; } export interface VerifiableCredentialPrimingResponse { 'c_nonce'?: string; 'c_nonce_expires_in'?: number; 'error'?: string; 'error_debug'?: string; 'error_description'?: string; 'error_hint'?: string; 'format'?: string; 'status_code'?: number; } export interface VerifiableCredentialProof { 'jwt'?: string; 'proof_type'?: string; } export interface VerifiableCredentialResponse { 'credential_draft_00'?: string; 'format'?: string; } export interface VerifyUserCodeRequest { 'client'?: OAuth2Client; 'device_code_request_id'?: string; /** * RequestURL is the original Device Authorization URL requested. */ 'request_url'?: string; 'requested_access_token_audience'?: Array; 'requested_scope'?: Array; } export interface Version { /** * Version is the service\'s version. */ 'version'?: string; } /** * JwkApi - axios parameter creator */ export declare const JwkApiAxiosParamCreator: (configuration?: Configuration) => { /** * This endpoint is capable of generating JSON Web Key Sets for you. There are different strategies available, such as symmetric cryptographic keys (HS256, HS512) and asymmetric cryptographic keys (RS256, ECDSA). If the specified JSON Web Key Set does not exist, it will be created. A JSON Web Key (JWK) is a JavaScript Object Notation (JSON) data structure that represents a cryptographic key. A JWK Set is a JSON data structure that represents a set of JWKs. A JSON Web Key is identified by its set and key id. ORY Hydra uses this functionality to store cryptographic keys used for TLS and JSON Web Tokens (such as OpenID Connect ID tokens), and allows storing user-defined keys as well. * @summary Create JSON Web Key * @param {string} set The JSON Web Key Set ID * @param {CreateJsonWebKeySet} createJsonWebKeySet * @param {*} [options] Override http request option. * @throws {RequiredError} */ createJsonWebKeySet: (set: string, createJsonWebKeySet: CreateJsonWebKeySet, options?: RawAxiosRequestConfig) => Promise; /** * Use this endpoint to delete a single JSON Web Key. A JSON Web Key (JWK) is a JavaScript Object Notation (JSON) data structure that represents a cryptographic key. A JWK Set is a JSON data structure that represents a set of JWKs. A JSON Web Key is identified by its set and key id. ORY Hydra uses this functionality to store cryptographic keys used for TLS and JSON Web Tokens (such as OpenID Connect ID tokens), and allows storing user-defined keys as well. * @summary Delete JSON Web Key * @param {string} set The JSON Web Key Set * @param {string} kid The JSON Web Key ID (kid) * @param {*} [options] Override http request option. * @throws {RequiredError} */ deleteJsonWebKey: (set: string, kid: string, options?: RawAxiosRequestConfig) => Promise; /** * Use this endpoint to delete a complete JSON Web Key Set and all the keys in that set. A JSON Web Key (JWK) is a JavaScript Object Notation (JSON) data structure that represents a cryptographic key. A JWK Set is a JSON data structure that represents a set of JWKs. A JSON Web Key is identified by its set and key id. ORY Hydra uses this functionality to store cryptographic keys used for TLS and JSON Web Tokens (such as OpenID Connect ID tokens), and allows storing user-defined keys as well. * @summary Delete JSON Web Key Set * @param {string} set The JSON Web Key Set * @param {*} [options] Override http request option. * @throws {RequiredError} */ deleteJsonWebKeySet: (set: string, options?: RawAxiosRequestConfig) => Promise; /** * This endpoint returns a singular JSON Web Key contained in a set. It is identified by the set and the specific key ID (kid). * @summary Get JSON Web Key * @param {string} set JSON Web Key Set ID * @param {string} kid JSON Web Key ID * @param {*} [options] Override http request option. * @throws {RequiredError} */ getJsonWebKey: (set: string, kid: string, options?: RawAxiosRequestConfig) => Promise; /** * This endpoint can be used to retrieve JWK Sets stored in ORY Hydra. A JSON Web Key (JWK) is a JavaScript Object Notation (JSON) data structure that represents a cryptographic key. A JWK Set is a JSON data structure that represents a set of JWKs. A JSON Web Key is identified by its set and key id. ORY Hydra uses this functionality to store cryptographic keys used for TLS and JSON Web Tokens (such as OpenID Connect ID tokens), and allows storing user-defined keys as well. * @summary Retrieve a JSON Web Key Set * @param {string} set JSON Web Key Set ID * @param {*} [options] Override http request option. * @throws {RequiredError} */ getJsonWebKeySet: (set: string, options?: RawAxiosRequestConfig) => Promise; /** * Use this method if you do not want to let Hydra generate the JWKs for you, but instead save your own. A JSON Web Key (JWK) is a JavaScript Object Notation (JSON) data structure that represents a cryptographic key. A JWK Set is a JSON data structure that represents a set of JWKs. A JSON Web Key is identified by its set and key id. ORY Hydra uses this functionality to store cryptographic keys used for TLS and JSON Web Tokens (such as OpenID Connect ID tokens), and allows storing user-defined keys as well. * @summary Set JSON Web Key * @param {string} set The JSON Web Key Set ID * @param {string} kid JSON Web Key ID * @param {JsonWebKey} [jsonWebKey] * @param {*} [options] Override http request option. * @throws {RequiredError} */ setJsonWebKey: (set: string, kid: string, jsonWebKey?: JsonWebKey, options?: RawAxiosRequestConfig) => Promise; /** * Use this method if you do not want to let Hydra generate the JWKs for you, but instead save your own. A JSON Web Key (JWK) is a JavaScript Object Notation (JSON) data structure that represents a cryptographic key. A JWK Set is a JSON data structure that represents a set of JWKs. A JSON Web Key is identified by its set and key id. ORY Hydra uses this functionality to store cryptographic keys used for TLS and JSON Web Tokens (such as OpenID Connect ID tokens), and allows storing user-defined keys as well. * @summary Update a JSON Web Key Set * @param {string} set The JSON Web Key Set ID * @param {JsonWebKeySet} [jsonWebKeySet] * @param {*} [options] Override http request option. * @throws {RequiredError} */ setJsonWebKeySet: (set: string, jsonWebKeySet?: JsonWebKeySet, options?: RawAxiosRequestConfig) => Promise; }; /** * JwkApi - functional programming interface */ export declare const JwkApiFp: (configuration?: Configuration) => { /** * This endpoint is capable of generating JSON Web Key Sets for you. There are different strategies available, such as symmetric cryptographic keys (HS256, HS512) and asymmetric cryptographic keys (RS256, ECDSA). If the specified JSON Web Key Set does not exist, it will be created. A JSON Web Key (JWK) is a JavaScript Object Notation (JSON) data structure that represents a cryptographic key. A JWK Set is a JSON data structure that represents a set of JWKs. A JSON Web Key is identified by its set and key id. ORY Hydra uses this functionality to store cryptographic keys used for TLS and JSON Web Tokens (such as OpenID Connect ID tokens), and allows storing user-defined keys as well. * @summary Create JSON Web Key * @param {string} set The JSON Web Key Set ID * @param {CreateJsonWebKeySet} createJsonWebKeySet * @param {*} [options] Override http request option. * @throws {RequiredError} */ createJsonWebKeySet(set: string, createJsonWebKeySet: CreateJsonWebKeySet, options?: RawAxiosRequestConfig): Promise<(axios?: AxiosInstance, basePath?: string) => AxiosPromise>; /** * Use this endpoint to delete a single JSON Web Key. A JSON Web Key (JWK) is a JavaScript Object Notation (JSON) data structure that represents a cryptographic key. A JWK Set is a JSON data structure that represents a set of JWKs. A JSON Web Key is identified by its set and key id. ORY Hydra uses this functionality to store cryptographic keys used for TLS and JSON Web Tokens (such as OpenID Connect ID tokens), and allows storing user-defined keys as well. * @summary Delete JSON Web Key * @param {string} set The JSON Web Key Set * @param {string} kid The JSON Web Key ID (kid) * @param {*} [options] Override http request option. * @throws {RequiredError} */ deleteJsonWebKey(set: string, kid: string, options?: RawAxiosRequestConfig): Promise<(axios?: AxiosInstance, basePath?: string) => AxiosPromise>; /** * Use this endpoint to delete a complete JSON Web Key Set and all the keys in that set. A JSON Web Key (JWK) is a JavaScript Object Notation (JSON) data structure that represents a cryptographic key. A JWK Set is a JSON data structure that represents a set of JWKs. A JSON Web Key is identified by its set and key id. ORY Hydra uses this functionality to store cryptographic keys used for TLS and JSON Web Tokens (such as OpenID Connect ID tokens), and allows storing user-defined keys as well. * @summary Delete JSON Web Key Set * @param {string} set The JSON Web Key Set * @param {*} [options] Override http request option. * @throws {RequiredError} */ deleteJsonWebKeySet(set: string, options?: RawAxiosRequestConfig): Promise<(axios?: AxiosInstance, basePath?: string) => AxiosPromise>; /** * This endpoint returns a singular JSON Web Key contained in a set. It is identified by the set and the specific key ID (kid). * @summary Get JSON Web Key * @param {string} set JSON Web Key Set ID * @param {string} kid JSON Web Key ID * @param {*} [options] Override http request option. * @throws {RequiredError} */ getJsonWebKey(set: string, kid: string, options?: RawAxiosRequestConfig): Promise<(axios?: AxiosInstance, basePath?: string) => AxiosPromise>; /** * This endpoint can be used to retrieve JWK Sets stored in ORY Hydra. A JSON Web Key (JWK) is a JavaScript Object Notation (JSON) data structure that represents a cryptographic key. A JWK Set is a JSON data structure that represents a set of JWKs. A JSON Web Key is identified by its set and key id. ORY Hydra uses this functionality to store cryptographic keys used for TLS and JSON Web Tokens (such as OpenID Connect ID tokens), and allows storing user-defined keys as well. * @summary Retrieve a JSON Web Key Set * @param {string} set JSON Web Key Set ID * @param {*} [options] Override http request option. * @throws {RequiredError} */ getJsonWebKeySet(set: string, options?: RawAxiosRequestConfig): Promise<(axios?: AxiosInstance, basePath?: string) => AxiosPromise>; /** * Use this method if you do not want to let Hydra generate the JWKs for you, but instead save your own. A JSON Web Key (JWK) is a JavaScript Object Notation (JSON) data structure that represents a cryptographic key. A JWK Set is a JSON data structure that represents a set of JWKs. A JSON Web Key is identified by its set and key id. ORY Hydra uses this functionality to store cryptographic keys used for TLS and JSON Web Tokens (such as OpenID Connect ID tokens), and allows storing user-defined keys as well. * @summary Set JSON Web Key * @param {string} set The JSON Web Key Set ID * @param {string} kid JSON Web Key ID * @param {JsonWebKey} [jsonWebKey] * @param {*} [options] Override http request option. * @throws {RequiredError} */ setJsonWebKey(set: string, kid: string, jsonWebKey?: JsonWebKey, options?: RawAxiosRequestConfig): Promise<(axios?: AxiosInstance, basePath?: string) => AxiosPromise>; /** * Use this method if you do not want to let Hydra generate the JWKs for you, but instead save your own. A JSON Web Key (JWK) is a JavaScript Object Notation (JSON) data structure that represents a cryptographic key. A JWK Set is a JSON data structure that represents a set of JWKs. A JSON Web Key is identified by its set and key id. ORY Hydra uses this functionality to store cryptographic keys used for TLS and JSON Web Tokens (such as OpenID Connect ID tokens), and allows storing user-defined keys as well. * @summary Update a JSON Web Key Set * @param {string} set The JSON Web Key Set ID * @param {JsonWebKeySet} [jsonWebKeySet] * @param {*} [options] Override http request option. * @throws {RequiredError} */ setJsonWebKeySet(set: string, jsonWebKeySet?: JsonWebKeySet, options?: RawAxiosRequestConfig): Promise<(axios?: AxiosInstance, basePath?: string) => AxiosPromise>; }; /** * JwkApi - factory interface */ export declare const JwkApiFactory: (configuration?: Configuration, basePath?: string, axios?: AxiosInstance) => { /** * This endpoint is capable of generating JSON Web Key Sets for you. There are different strategies available, such as symmetric cryptographic keys (HS256, HS512) and asymmetric cryptographic keys (RS256, ECDSA). If the specified JSON Web Key Set does not exist, it will be created. A JSON Web Key (JWK) is a JavaScript Object Notation (JSON) data structure that represents a cryptographic key. A JWK Set is a JSON data structure that represents a set of JWKs. A JSON Web Key is identified by its set and key id. ORY Hydra uses this functionality to store cryptographic keys used for TLS and JSON Web Tokens (such as OpenID Connect ID tokens), and allows storing user-defined keys as well. * @summary Create JSON Web Key * @param {JwkApiCreateJsonWebKeySetRequest} requestParameters Request parameters. * @param {*} [options] Override http request option. * @throws {RequiredError} */ createJsonWebKeySet(requestParameters: JwkApiCreateJsonWebKeySetRequest, options?: RawAxiosRequestConfig): AxiosPromise; /** * Use this endpoint to delete a single JSON Web Key. A JSON Web Key (JWK) is a JavaScript Object Notation (JSON) data structure that represents a cryptographic key. A JWK Set is a JSON data structure that represents a set of JWKs. A JSON Web Key is identified by its set and key id. ORY Hydra uses this functionality to store cryptographic keys used for TLS and JSON Web Tokens (such as OpenID Connect ID tokens), and allows storing user-defined keys as well. * @summary Delete JSON Web Key * @param {JwkApiDeleteJsonWebKeyRequest} requestParameters Request parameters. * @param {*} [options] Override http request option. * @throws {RequiredError} */ deleteJsonWebKey(requestParameters: JwkApiDeleteJsonWebKeyRequest, options?: RawAxiosRequestConfig): AxiosPromise; /** * Use this endpoint to delete a complete JSON Web Key Set and all the keys in that set. A JSON Web Key (JWK) is a JavaScript Object Notation (JSON) data structure that represents a cryptographic key. A JWK Set is a JSON data structure that represents a set of JWKs. A JSON Web Key is identified by its set and key id. ORY Hydra uses this functionality to store cryptographic keys used for TLS and JSON Web Tokens (such as OpenID Connect ID tokens), and allows storing user-defined keys as well. * @summary Delete JSON Web Key Set * @param {JwkApiDeleteJsonWebKeySetRequest} requestParameters Request parameters. * @param {*} [options] Override http request option. * @throws {RequiredError} */ deleteJsonWebKeySet(requestParameters: JwkApiDeleteJsonWebKeySetRequest, options?: RawAxiosRequestConfig): AxiosPromise; /** * This endpoint returns a singular JSON Web Key contained in a set. It is identified by the set and the specific key ID (kid). * @summary Get JSON Web Key * @param {JwkApiGetJsonWebKeyRequest} requestParameters Request parameters. * @param {*} [options] Override http request option. * @throws {RequiredError} */ getJsonWebKey(requestParameters: JwkApiGetJsonWebKeyRequest, options?: RawAxiosRequestConfig): AxiosPromise; /** * This endpoint can be used to retrieve JWK Sets stored in ORY Hydra. A JSON Web Key (JWK) is a JavaScript Object Notation (JSON) data structure that represents a cryptographic key. A JWK Set is a JSON data structure that represents a set of JWKs. A JSON Web Key is identified by its set and key id. ORY Hydra uses this functionality to store cryptographic keys used for TLS and JSON Web Tokens (such as OpenID Connect ID tokens), and allows storing user-defined keys as well. * @summary Retrieve a JSON Web Key Set * @param {JwkApiGetJsonWebKeySetRequest} requestParameters Request parameters. * @param {*} [options] Override http request option. * @throws {RequiredError} */ getJsonWebKeySet(requestParameters: JwkApiGetJsonWebKeySetRequest, options?: RawAxiosRequestConfig): AxiosPromise; /** * Use this method if you do not want to let Hydra generate the JWKs for you, but instead save your own. A JSON Web Key (JWK) is a JavaScript Object Notation (JSON) data structure that represents a cryptographic key. A JWK Set is a JSON data structure that represents a set of JWKs. A JSON Web Key is identified by its set and key id. ORY Hydra uses this functionality to store cryptographic keys used for TLS and JSON Web Tokens (such as OpenID Connect ID tokens), and allows storing user-defined keys as well. * @summary Set JSON Web Key * @param {JwkApiSetJsonWebKeyRequest} requestParameters Request parameters. * @param {*} [options] Override http request option. * @throws {RequiredError} */ setJsonWebKey(requestParameters: JwkApiSetJsonWebKeyRequest, options?: RawAxiosRequestConfig): AxiosPromise; /** * Use this method if you do not want to let Hydra generate the JWKs for you, but instead save your own. A JSON Web Key (JWK) is a JavaScript Object Notation (JSON) data structure that represents a cryptographic key. A JWK Set is a JSON data structure that represents a set of JWKs. A JSON Web Key is identified by its set and key id. ORY Hydra uses this functionality to store cryptographic keys used for TLS and JSON Web Tokens (such as OpenID Connect ID tokens), and allows storing user-defined keys as well. * @summary Update a JSON Web Key Set * @param {JwkApiSetJsonWebKeySetRequest} requestParameters Request parameters. * @param {*} [options] Override http request option. * @throws {RequiredError} */ setJsonWebKeySet(requestParameters: JwkApiSetJsonWebKeySetRequest, options?: RawAxiosRequestConfig): AxiosPromise; }; /** * Request parameters for createJsonWebKeySet operation in JwkApi. */ export interface JwkApiCreateJsonWebKeySetRequest { /** * The JSON Web Key Set ID */ readonly set: string; readonly createJsonWebKeySet: CreateJsonWebKeySet; } /** * Request parameters for deleteJsonWebKey operation in JwkApi. */ export interface JwkApiDeleteJsonWebKeyRequest { /** * The JSON Web Key Set */ readonly set: string; /** * The JSON Web Key ID (kid) */ readonly kid: string; } /** * Request parameters for deleteJsonWebKeySet operation in JwkApi. */ export interface JwkApiDeleteJsonWebKeySetRequest { /** * The JSON Web Key Set */ readonly set: string; } /** * Request parameters for getJsonWebKey operation in JwkApi. */ export interface JwkApiGetJsonWebKeyRequest { /** * JSON Web Key Set ID */ readonly set: string; /** * JSON Web Key ID */ readonly kid: string; } /** * Request parameters for getJsonWebKeySet operation in JwkApi. */ export interface JwkApiGetJsonWebKeySetRequest { /** * JSON Web Key Set ID */ readonly set: string; } /** * Request parameters for setJsonWebKey operation in JwkApi. */ export interface JwkApiSetJsonWebKeyRequest { /** * The JSON Web Key Set ID */ readonly set: string; /** * JSON Web Key ID */ readonly kid: string; readonly jsonWebKey?: JsonWebKey; } /** * Request parameters for setJsonWebKeySet operation in JwkApi. */ export interface JwkApiSetJsonWebKeySetRequest { /** * The JSON Web Key Set ID */ readonly set: string; readonly jsonWebKeySet?: JsonWebKeySet; } /** * JwkApi - object-oriented interface */ export declare class JwkApi extends BaseAPI { /** * This endpoint is capable of generating JSON Web Key Sets for you. There are different strategies available, such as symmetric cryptographic keys (HS256, HS512) and asymmetric cryptographic keys (RS256, ECDSA). If the specified JSON Web Key Set does not exist, it will be created. A JSON Web Key (JWK) is a JavaScript Object Notation (JSON) data structure that represents a cryptographic key. A JWK Set is a JSON data structure that represents a set of JWKs. A JSON Web Key is identified by its set and key id. ORY Hydra uses this functionality to store cryptographic keys used for TLS and JSON Web Tokens (such as OpenID Connect ID tokens), and allows storing user-defined keys as well. * @summary Create JSON Web Key * @param {JwkApiCreateJsonWebKeySetRequest} requestParameters Request parameters. * @param {*} [options] Override http request option. * @throws {RequiredError} */ createJsonWebKeySet(requestParameters: JwkApiCreateJsonWebKeySetRequest, options?: RawAxiosRequestConfig): Promise>; /** * Use this endpoint to delete a single JSON Web Key. A JSON Web Key (JWK) is a JavaScript Object Notation (JSON) data structure that represents a cryptographic key. A JWK Set is a JSON data structure that represents a set of JWKs. A JSON Web Key is identified by its set and key id. ORY Hydra uses this functionality to store cryptographic keys used for TLS and JSON Web Tokens (such as OpenID Connect ID tokens), and allows storing user-defined keys as well. * @summary Delete JSON Web Key * @param {JwkApiDeleteJsonWebKeyRequest} requestParameters Request parameters. * @param {*} [options] Override http request option. * @throws {RequiredError} */ deleteJsonWebKey(requestParameters: JwkApiDeleteJsonWebKeyRequest, options?: RawAxiosRequestConfig): Promise>; /** * Use this endpoint to delete a complete JSON Web Key Set and all the keys in that set. A JSON Web Key (JWK) is a JavaScript Object Notation (JSON) data structure that represents a cryptographic key. A JWK Set is a JSON data structure that represents a set of JWKs. A JSON Web Key is identified by its set and key id. ORY Hydra uses this functionality to store cryptographic keys used for TLS and JSON Web Tokens (such as OpenID Connect ID tokens), and allows storing user-defined keys as well. * @summary Delete JSON Web Key Set * @param {JwkApiDeleteJsonWebKeySetRequest} requestParameters Request parameters. * @param {*} [options] Override http request option. * @throws {RequiredError} */ deleteJsonWebKeySet(requestParameters: JwkApiDeleteJsonWebKeySetRequest, options?: RawAxiosRequestConfig): Promise>; /** * This endpoint returns a singular JSON Web Key contained in a set. It is identified by the set and the specific key ID (kid). * @summary Get JSON Web Key * @param {JwkApiGetJsonWebKeyRequest} requestParameters Request parameters. * @param {*} [options] Override http request option. * @throws {RequiredError} */ getJsonWebKey(requestParameters: JwkApiGetJsonWebKeyRequest, options?: RawAxiosRequestConfig): Promise>; /** * This endpoint can be used to retrieve JWK Sets stored in ORY Hydra. A JSON Web Key (JWK) is a JavaScript Object Notation (JSON) data structure that represents a cryptographic key. A JWK Set is a JSON data structure that represents a set of JWKs. A JSON Web Key is identified by its set and key id. ORY Hydra uses this functionality to store cryptographic keys used for TLS and JSON Web Tokens (such as OpenID Connect ID tokens), and allows storing user-defined keys as well. * @summary Retrieve a JSON Web Key Set * @param {JwkApiGetJsonWebKeySetRequest} requestParameters Request parameters. * @param {*} [options] Override http request option. * @throws {RequiredError} */ getJsonWebKeySet(requestParameters: JwkApiGetJsonWebKeySetRequest, options?: RawAxiosRequestConfig): Promise>; /** * Use this method if you do not want to let Hydra generate the JWKs for you, but instead save your own. A JSON Web Key (JWK) is a JavaScript Object Notation (JSON) data structure that represents a cryptographic key. A JWK Set is a JSON data structure that represents a set of JWKs. A JSON Web Key is identified by its set and key id. ORY Hydra uses this functionality to store cryptographic keys used for TLS and JSON Web Tokens (such as OpenID Connect ID tokens), and allows storing user-defined keys as well. * @summary Set JSON Web Key * @param {JwkApiSetJsonWebKeyRequest} requestParameters Request parameters. * @param {*} [options] Override http request option. * @throws {RequiredError} */ setJsonWebKey(requestParameters: JwkApiSetJsonWebKeyRequest, options?: RawAxiosRequestConfig): Promise>; /** * Use this method if you do not want to let Hydra generate the JWKs for you, but instead save your own. A JSON Web Key (JWK) is a JavaScript Object Notation (JSON) data structure that represents a cryptographic key. A JWK Set is a JSON data structure that represents a set of JWKs. A JSON Web Key is identified by its set and key id. ORY Hydra uses this functionality to store cryptographic keys used for TLS and JSON Web Tokens (such as OpenID Connect ID tokens), and allows storing user-defined keys as well. * @summary Update a JSON Web Key Set * @param {JwkApiSetJsonWebKeySetRequest} requestParameters Request parameters. * @param {*} [options] Override http request option. * @throws {RequiredError} */ setJsonWebKeySet(requestParameters: JwkApiSetJsonWebKeySetRequest, options?: RawAxiosRequestConfig): Promise>; } /** * MetadataApi - axios parameter creator */ export declare const MetadataApiAxiosParamCreator: (configuration?: Configuration) => { /** * This endpoint returns the version of Ory Hydra. If the service supports TLS Edge Termination, this endpoint does not require the `X-Forwarded-Proto` header to be set. Be aware that if you are running multiple nodes of this service, the version will never refer to the cluster state, only to a single instance. * @summary Return Running Software Version. * @param {*} [options] Override http request option. * @throws {RequiredError} */ getVersion: (options?: RawAxiosRequestConfig) => Promise; /** * This endpoint returns a HTTP 200 status code when Ory Hydra is accepting incoming HTTP requests. This status does currently not include checks whether the database connection is working. If the service supports TLS Edge Termination, this endpoint does not require the `X-Forwarded-Proto` header to be set. Be aware that if you are running multiple nodes of this service, the health status will never refer to the cluster state, only to a single instance. * @summary Check HTTP Server Status * @param {*} [options] Override http request option. * @throws {RequiredError} */ isAlive: (options?: RawAxiosRequestConfig) => Promise; /** * This endpoint returns a HTTP 200 status code when Ory Hydra is up running and the environment dependencies (e.g. the database) are responsive as well. If the service supports TLS Edge Termination, this endpoint does not require the `X-Forwarded-Proto` header to be set. Be aware that if you are running multiple nodes of Ory Hydra, the health status will never refer to the cluster state, only to a single instance. * @summary Check HTTP Server and Database Status * @param {*} [options] Override http request option. * @throws {RequiredError} */ isReady: (options?: RawAxiosRequestConfig) => Promise; }; /** * MetadataApi - functional programming interface */ export declare const MetadataApiFp: (configuration?: Configuration) => { /** * This endpoint returns the version of Ory Hydra. If the service supports TLS Edge Termination, this endpoint does not require the `X-Forwarded-Proto` header to be set. Be aware that if you are running multiple nodes of this service, the version will never refer to the cluster state, only to a single instance. * @summary Return Running Software Version. * @param {*} [options] Override http request option. * @throws {RequiredError} */ getVersion(options?: RawAxiosRequestConfig): Promise<(axios?: AxiosInstance, basePath?: string) => AxiosPromise>; /** * This endpoint returns a HTTP 200 status code when Ory Hydra is accepting incoming HTTP requests. This status does currently not include checks whether the database connection is working. If the service supports TLS Edge Termination, this endpoint does not require the `X-Forwarded-Proto` header to be set. Be aware that if you are running multiple nodes of this service, the health status will never refer to the cluster state, only to a single instance. * @summary Check HTTP Server Status * @param {*} [options] Override http request option. * @throws {RequiredError} */ isAlive(options?: RawAxiosRequestConfig): Promise<(axios?: AxiosInstance, basePath?: string) => AxiosPromise>; /** * This endpoint returns a HTTP 200 status code when Ory Hydra is up running and the environment dependencies (e.g. the database) are responsive as well. If the service supports TLS Edge Termination, this endpoint does not require the `X-Forwarded-Proto` header to be set. Be aware that if you are running multiple nodes of Ory Hydra, the health status will never refer to the cluster state, only to a single instance. * @summary Check HTTP Server and Database Status * @param {*} [options] Override http request option. * @throws {RequiredError} */ isReady(options?: RawAxiosRequestConfig): Promise<(axios?: AxiosInstance, basePath?: string) => AxiosPromise>; }; /** * MetadataApi - factory interface */ export declare const MetadataApiFactory: (configuration?: Configuration, basePath?: string, axios?: AxiosInstance) => { /** * This endpoint returns the version of Ory Hydra. If the service supports TLS Edge Termination, this endpoint does not require the `X-Forwarded-Proto` header to be set. Be aware that if you are running multiple nodes of this service, the version will never refer to the cluster state, only to a single instance. * @summary Return Running Software Version. * @param {*} [options] Override http request option. * @throws {RequiredError} */ getVersion(options?: RawAxiosRequestConfig): AxiosPromise; /** * This endpoint returns a HTTP 200 status code when Ory Hydra is accepting incoming HTTP requests. This status does currently not include checks whether the database connection is working. If the service supports TLS Edge Termination, this endpoint does not require the `X-Forwarded-Proto` header to be set. Be aware that if you are running multiple nodes of this service, the health status will never refer to the cluster state, only to a single instance. * @summary Check HTTP Server Status * @param {*} [options] Override http request option. * @throws {RequiredError} */ isAlive(options?: RawAxiosRequestConfig): AxiosPromise; /** * This endpoint returns a HTTP 200 status code when Ory Hydra is up running and the environment dependencies (e.g. the database) are responsive as well. If the service supports TLS Edge Termination, this endpoint does not require the `X-Forwarded-Proto` header to be set. Be aware that if you are running multiple nodes of Ory Hydra, the health status will never refer to the cluster state, only to a single instance. * @summary Check HTTP Server and Database Status * @param {*} [options] Override http request option. * @throws {RequiredError} */ isReady(options?: RawAxiosRequestConfig): AxiosPromise; }; /** * MetadataApi - object-oriented interface */ export declare class MetadataApi extends BaseAPI { /** * This endpoint returns the version of Ory Hydra. If the service supports TLS Edge Termination, this endpoint does not require the `X-Forwarded-Proto` header to be set. Be aware that if you are running multiple nodes of this service, the version will never refer to the cluster state, only to a single instance. * @summary Return Running Software Version. * @param {*} [options] Override http request option. * @throws {RequiredError} */ getVersion(options?: RawAxiosRequestConfig): Promise>; /** * This endpoint returns a HTTP 200 status code when Ory Hydra is accepting incoming HTTP requests. This status does currently not include checks whether the database connection is working. If the service supports TLS Edge Termination, this endpoint does not require the `X-Forwarded-Proto` header to be set. Be aware that if you are running multiple nodes of this service, the health status will never refer to the cluster state, only to a single instance. * @summary Check HTTP Server Status * @param {*} [options] Override http request option. * @throws {RequiredError} */ isAlive(options?: RawAxiosRequestConfig): Promise>; /** * This endpoint returns a HTTP 200 status code when Ory Hydra is up running and the environment dependencies (e.g. the database) are responsive as well. If the service supports TLS Edge Termination, this endpoint does not require the `X-Forwarded-Proto` header to be set. Be aware that if you are running multiple nodes of Ory Hydra, the health status will never refer to the cluster state, only to a single instance. * @summary Check HTTP Server and Database Status * @param {*} [options] Override http request option. * @throws {RequiredError} */ isReady(options?: RawAxiosRequestConfig): Promise>; } /** * OAuth2Api - axios parameter creator */ export declare const OAuth2ApiAxiosParamCreator: (configuration?: Configuration) => { /** * When an authorization code, hybrid, or implicit OAuth 2.0 Flow is initiated, Ory asks the login provider to authenticate the subject and then tell Ory now about it. If the subject authenticated, he/she must now be asked if the OAuth 2.0 Client which initiated the flow should be allowed to access the resources on the subject\'s behalf. The consent challenge is appended to the consent provider\'s URL to which the subject\'s user-agent (browser) is redirected to. The consent provider uses that challenge to fetch information on the OAuth2 request and then tells Ory if the subject accepted or rejected the request. This endpoint tells Ory that the subject has authorized the OAuth 2.0 client to access resources on his/her behalf. The consent provider includes additional information, such as session data for access and ID tokens, and if the consent request should be used as basis for future requests. The response contains a redirect URL which the consent provider should redirect the user-agent to. The default consent provider is available via the Ory Managed Account Experience. To customize the consent provider, please head over to the OAuth 2.0 documentation. * @summary Accept OAuth 2.0 Consent Request * @param {string} consentChallenge OAuth 2.0 Consent Request Challenge * @param {AcceptOAuth2ConsentRequest} [acceptOAuth2ConsentRequest] * @param {*} [options] Override http request option. * @throws {RequiredError} */ acceptOAuth2ConsentRequest: (consentChallenge: string, acceptOAuth2ConsentRequest?: AcceptOAuth2ConsentRequest, options?: RawAxiosRequestConfig) => Promise; /** * When an authorization code, hybrid, or implicit OAuth 2.0 Flow is initiated, Ory asks the login provider to authenticate the subject and then tell the Ory OAuth2 Service about it. The authentication challenge is appended to the login provider URL to which the subject\'s user-agent (browser) is redirected to. The login provider uses that challenge to fetch information on the OAuth2 request and then accept or reject the requested authentication process. This endpoint tells Ory that the subject has successfully authenticated and includes additional information such as the subject\'s ID and if Ory should remember the subject\'s subject agent for future authentication attempts by setting a cookie. The response contains a redirect URL which the login provider should redirect the user-agent to. * @summary Accept OAuth 2.0 Login Request * @param {string} loginChallenge OAuth 2.0 Login Request Challenge * @param {AcceptOAuth2LoginRequest} [acceptOAuth2LoginRequest] * @param {*} [options] Override http request option. * @throws {RequiredError} */ acceptOAuth2LoginRequest: (loginChallenge: string, acceptOAuth2LoginRequest?: AcceptOAuth2LoginRequest, options?: RawAxiosRequestConfig) => Promise; /** * When a user or an application requests Ory OAuth 2.0 to remove the session state of a subject, this endpoint is used to confirm that logout request. The response contains a redirect URL which the consent provider should redirect the user-agent to. * @summary Accept OAuth 2.0 Session Logout Request * @param {string} logoutChallenge OAuth 2.0 Logout Request Challenge * @param {*} [options] Override http request option. * @throws {RequiredError} */ acceptOAuth2LogoutRequest: (logoutChallenge: string, options?: RawAxiosRequestConfig) => Promise; /** * Accepts a device grant user_code request * @summary Accepts a device grant user_code request * @param {string} deviceChallenge * @param {AcceptDeviceUserCodeRequest} [acceptDeviceUserCodeRequest] * @param {*} [options] Override http request option. * @throws {RequiredError} */ acceptUserCodeRequest: (deviceChallenge: string, acceptDeviceUserCodeRequest?: AcceptDeviceUserCodeRequest, options?: RawAxiosRequestConfig) => Promise; /** * Create a new OAuth 2.0 client. If you pass `client_secret` the secret is used, otherwise a random secret is generated. The secret is echoed in the response. It is not possible to retrieve it later on. * @summary Create OAuth 2.0 Client * @param {OAuth2Client} oAuth2Client OAuth 2.0 Client Request Body * @param {*} [options] Override http request option. * @throws {RequiredError} */ createOAuth2Client: (oAuth2Client: OAuth2Client, options?: RawAxiosRequestConfig) => Promise; /** * Delete an existing OAuth 2.0 Client by its ID. OAuth 2.0 clients are used to perform OAuth 2.0 and OpenID Connect flows. Usually, OAuth 2.0 clients are generated for applications which want to consume your OAuth 2.0 or OpenID Connect capabilities. Make sure that this endpoint is well protected and only callable by first-party components. * @summary Delete OAuth 2.0 Client * @param {string} id The id of the OAuth 2.0 Client. * @param {*} [options] Override http request option. * @throws {RequiredError} */ deleteOAuth2Client: (id: string, options?: RawAxiosRequestConfig) => Promise; /** * This endpoint deletes OAuth2 access tokens issued to an OAuth 2.0 Client from the database. * @summary Delete OAuth 2.0 Access Tokens from specific OAuth 2.0 Client * @param {string} clientId OAuth 2.0 Client ID * @param {*} [options] Override http request option. * @throws {RequiredError} */ deleteOAuth2Token: (clientId: string, options?: RawAxiosRequestConfig) => Promise; /** * Use this endpoint to delete trusted JWT Bearer Grant Type Issuer. The ID is the one returned when you created the trust relationship. Once deleted, the associated issuer will no longer be able to perform the JSON Web Token (JWT) Profile for OAuth 2.0 Client Authentication and Authorization Grant. * @summary Delete Trusted OAuth2 JWT Bearer Grant Type Issuer * @param {string} id The id of the desired grant * @param {*} [options] Override http request option. * @throws {RequiredError} */ deleteTrustedOAuth2JwtGrantIssuer: (id: string, options?: RawAxiosRequestConfig) => Promise; /** * Get an OAuth 2.0 client by its ID. This endpoint never returns the client secret. OAuth 2.0 clients are used to perform OAuth 2.0 and OpenID Connect flows. Usually, OAuth 2.0 clients are generated for applications which want to consume your OAuth 2.0 or OpenID Connect capabilities. * @summary Get an OAuth 2.0 Client * @param {string} id The id of the OAuth 2.0 Client. * @param {*} [options] Override http request option. * @throws {RequiredError} */ getOAuth2Client: (id: string, options?: RawAxiosRequestConfig) => Promise; /** * When an authorization code, hybrid, or implicit OAuth 2.0 Flow is initiated, Ory asks the login provider to authenticate the subject and then tell Ory now about it. If the subject authenticated, he/she must now be asked if the OAuth 2.0 Client which initiated the flow should be allowed to access the resources on the subject\'s behalf. The consent challenge is appended to the consent provider\'s URL to which the subject\'s user-agent (browser) is redirected to. The consent provider uses that challenge to fetch information on the OAuth2 request and then tells Ory if the subject accepted or rejected the request. The default consent provider is available via the Ory Managed Account Experience. To customize the consent provider, please head over to the OAuth 2.0 documentation. * @summary Get OAuth 2.0 Consent Request * @param {string} consentChallenge OAuth 2.0 Consent Request Challenge * @param {*} [options] Override http request option. * @throws {RequiredError} */ getOAuth2ConsentRequest: (consentChallenge: string, options?: RawAxiosRequestConfig) => Promise; /** * When an authorization code, hybrid, or implicit OAuth 2.0 Flow is initiated, Ory asks the login provider to authenticate the subject and then tell the Ory OAuth2 Service about it. Per default, the login provider is Ory itself. You may use a different login provider which needs to be a web-app you write and host, and it must be able to authenticate (\"show the subject a login screen\") a subject (in OAuth2 the proper name for subject is \"resource owner\"). The authentication challenge is appended to the login provider URL to which the subject\'s user-agent (browser) is redirected to. The login provider uses that challenge to fetch information on the OAuth2 request and then accept or reject the requested authentication process. * @summary Get OAuth 2.0 Login Request * @param {string} loginChallenge OAuth 2.0 Login Request Challenge * @param {*} [options] Override http request option. * @throws {RequiredError} */ getOAuth2LoginRequest: (loginChallenge: string, options?: RawAxiosRequestConfig) => Promise; /** * Use this endpoint to fetch an Ory OAuth 2.0 logout request. * @summary Get OAuth 2.0 Session Logout Request * @param {string} logoutChallenge * @param {*} [options] Override http request option. * @throws {RequiredError} */ getOAuth2LogoutRequest: (logoutChallenge: string, options?: RawAxiosRequestConfig) => Promise; /** * Use this endpoint to get a trusted JWT Bearer Grant Type Issuer. The ID is the one returned when you created the trust relationship. * @summary Get Trusted OAuth2 JWT Bearer Grant Type Issuer * @param {string} id The id of the desired grant * @param {*} [options] Override http request option. * @throws {RequiredError} */ getTrustedOAuth2JwtGrantIssuer: (id: string, options?: RawAxiosRequestConfig) => Promise; /** * The introspection endpoint allows to check if a token (both refresh and access) is active or not. An active token is neither expired nor revoked. If a token is active, additional information on the token will be included. You can set additional data for a token by setting `session.access_token` during the consent flow. * @summary Introspect OAuth2 Access and Refresh Tokens * @param {string} token The string value of the token. For access tokens, this is the \\\"access_token\\\" value returned from the token endpoint defined in OAuth 2.0. For refresh tokens, this is the \\\"refresh_token\\\" value returned. * @param {string} [scope] An optional, space separated list of required scopes. If the access token was not granted one of the scopes, the result of active will be false. * @param {*} [options] Override http request option. * @throws {RequiredError} */ introspectOAuth2Token: (token: string, scope?: string, options?: RawAxiosRequestConfig) => Promise; /** * This endpoint lists all clients in the database, and never returns client secrets. As a default it lists the first 100 clients. * @summary List OAuth 2.0 Clients * @param {number} [pageSize] Items per Page This is the number of items per page to return. For details on pagination please head over to the [pagination documentation](https://www.ory.sh/docs/ecosystem/api-design#pagination). * @param {string} [pageToken] Next Page Token The next page token. For details on pagination please head over to the [pagination documentation](https://www.ory.sh/docs/ecosystem/api-design#pagination). * @param {string} [clientName] The name of the clients to filter by. * @param {string} [owner] The owner of the clients to filter by. * @param {*} [options] Override http request option. * @throws {RequiredError} */ listOAuth2Clients: (pageSize?: number, pageToken?: string, clientName?: string, owner?: string, options?: RawAxiosRequestConfig) => Promise; /** * This endpoint lists all subject\'s granted consent sessions, including client and granted scope. If the subject is unknown or has not granted any consent sessions yet, the endpoint returns an empty JSON array with status code 200 OK. * @summary List OAuth 2.0 Consent Sessions of a Subject * @param {string} subject The subject to list the consent sessions for. * @param {number} [pageSize] Items per Page This is the number of items per page to return. For details on pagination please head over to the [pagination documentation](https://www.ory.sh/docs/ecosystem/api-design#pagination). * @param {string} [pageToken] Next Page Token The next page token. For details on pagination please head over to the [pagination documentation](https://www.ory.sh/docs/ecosystem/api-design#pagination). * @param {string} [loginSessionId] The login session id to list the consent sessions for. * @param {*} [options] Override http request option. * @throws {RequiredError} */ listOAuth2ConsentSessions: (subject: string, pageSize?: number, pageToken?: string, loginSessionId?: string, options?: RawAxiosRequestConfig) => Promise; /** * Use this endpoint to list all trusted JWT Bearer Grant Type Issuers. * @summary List Trusted OAuth2 JWT Bearer Grant Type Issuers * @param {number} [pageSize] Items per Page This is the number of items per page to return. For details on pagination please head over to the [pagination documentation](https://www.ory.sh/docs/ecosystem/api-design#pagination). * @param {string} [pageToken] Next Page Token The next page token. For details on pagination please head over to the [pagination documentation](https://www.ory.sh/docs/ecosystem/api-design#pagination). * @param {string} [issuer] If optional \"issuer\" is supplied, only jwt-bearer grants with this issuer will be returned. * @param {*} [options] Override http request option. * @throws {RequiredError} */ listTrustedOAuth2JwtGrantIssuers: (pageSize?: number, pageToken?: string, issuer?: string, options?: RawAxiosRequestConfig) => Promise; /** * Use open source libraries to perform OAuth 2.0 and OpenID Connect available for any programming language. You can find a list of libraries at https://oauth.net/code/ This endpoint should not be used via the Ory SDK and is only included for technical reasons. Instead, use one of the libraries linked above. * @summary OAuth 2.0 Authorize Endpoint * @param {*} [options] Override http request option. * @throws {RequiredError} */ oAuth2Authorize: (options?: RawAxiosRequestConfig) => Promise; /** * This endpoint is not documented here because you should never use your own implementation to perform OAuth2 flows. OAuth2 is a very popular protocol and a library for your programming language will exist. To learn more about this flow please refer to the specification: https://tools.ietf.org/html/rfc8628 * @summary The OAuth 2.0 Device Authorize Endpoint * @param {*} [options] Override http request option. * @throws {RequiredError} */ oAuth2DeviceFlow: (options?: RawAxiosRequestConfig) => Promise; /** * Use open source libraries to perform OAuth 2.0 and OpenID Connect available for any programming language. You can find a list of libraries here https://oauth.net/code/ This endpoint should not be used via the Ory SDK and is only included for technical reasons. Instead, use one of the libraries linked above. * @summary The OAuth 2.0 Token Endpoint * @param {string} grantType * @param {string} [clientId] * @param {string} [code] * @param {string} [redirectUri] * @param {string} [refreshToken] * @param {*} [options] Override http request option. * @throws {RequiredError} */ oauth2TokenExchange: (grantType: string, clientId?: string, code?: string, redirectUri?: string, refreshToken?: string, options?: RawAxiosRequestConfig) => Promise; /** * Patch an existing OAuth 2.0 Client using JSON Patch. If you pass `client_secret` the secret will be updated and returned via the API. This is the only time you will be able to retrieve the client secret, so write it down and keep it safe. OAuth 2.0 clients are used to perform OAuth 2.0 and OpenID Connect flows. Usually, OAuth 2.0 clients are generated for applications which want to consume your OAuth 2.0 or OpenID Connect capabilities. * @summary Patch OAuth 2.0 Client * @param {string} id The id of the OAuth 2.0 Client. * @param {Array} jsonPatch OAuth 2.0 Client JSON Patch Body * @param {*} [options] Override http request option. * @throws {RequiredError} */ patchOAuth2Client: (id: string, jsonPatch: Array, options?: RawAxiosRequestConfig) => Promise; /** * This is the device user verification endpoint. The user is redirected here when trying to log in using the device flow. * @summary OAuth 2.0 Device Verification Endpoint * @param {*} [options] Override http request option. * @throws {RequiredError} */ performOAuth2DeviceVerificationFlow: (options?: RawAxiosRequestConfig) => Promise; /** * When an authorization code, hybrid, or implicit OAuth 2.0 Flow is initiated, Ory asks the login provider to authenticate the subject and then tell Ory now about it. If the subject authenticated, he/she must now be asked if the OAuth 2.0 Client which initiated the flow should be allowed to access the resources on the subject\'s behalf. The consent challenge is appended to the consent provider\'s URL to which the subject\'s user-agent (browser) is redirected to. The consent provider uses that challenge to fetch information on the OAuth2 request and then tells Ory if the subject accepted or rejected the request. This endpoint tells Ory that the subject has not authorized the OAuth 2.0 client to access resources on his/her behalf. The consent provider must include a reason why the consent was not granted. The response contains a redirect URL which the consent provider should redirect the user-agent to. The default consent provider is available via the Ory Managed Account Experience. To customize the consent provider, please head over to the OAuth 2.0 documentation. * @summary Reject OAuth 2.0 Consent Request * @param {string} consentChallenge OAuth 2.0 Consent Request Challenge * @param {RejectOAuth2Request} [rejectOAuth2Request] * @param {*} [options] Override http request option. * @throws {RequiredError} */ rejectOAuth2ConsentRequest: (consentChallenge: string, rejectOAuth2Request?: RejectOAuth2Request, options?: RawAxiosRequestConfig) => Promise; /** * When an authorization code, hybrid, or implicit OAuth 2.0 Flow is initiated, Ory asks the login provider to authenticate the subject and then tell the Ory OAuth2 Service about it. The authentication challenge is appended to the login provider URL to which the subject\'s user-agent (browser) is redirected to. The login provider uses that challenge to fetch information on the OAuth2 request and then accept or reject the requested authentication process. This endpoint tells Ory that the subject has not authenticated and includes a reason why the authentication was denied. The response contains a redirect URL which the login provider should redirect the user-agent to. * @summary Reject OAuth 2.0 Login Request * @param {string} loginChallenge OAuth 2.0 Login Request Challenge * @param {RejectOAuth2Request} [rejectOAuth2Request] * @param {*} [options] Override http request option. * @throws {RequiredError} */ rejectOAuth2LoginRequest: (loginChallenge: string, rejectOAuth2Request?: RejectOAuth2Request, options?: RawAxiosRequestConfig) => Promise; /** * When a user or an application requests Ory OAuth 2.0 to remove the session state of a subject, this endpoint is used to deny that logout request. No HTTP request body is required. The response is empty as the logout provider has to chose what action to perform next. * @summary Reject OAuth 2.0 Session Logout Request * @param {string} logoutChallenge * @param {*} [options] Override http request option. * @throws {RequiredError} */ rejectOAuth2LogoutRequest: (logoutChallenge: string, options?: RawAxiosRequestConfig) => Promise; /** * This endpoint revokes a subject\'s granted consent sessions and invalidates all associated OAuth 2.0 Access Tokens. You may also only revoke sessions for a specific OAuth 2.0 Client ID. * @summary Revoke OAuth 2.0 Consent Sessions of a Subject * @param {string} [subject] OAuth 2.0 Consent Subject The subject whose consent sessions should be deleted. * @param {string} [client] OAuth 2.0 Client ID If set, deletes only those consent sessions that have been granted to the specified OAuth 2.0 Client ID. * @param {string} [consentRequestId] Consent Request ID If set, revoke all token chains derived from this particular consent request ID. * @param {boolean} [all] Revoke All Consent Sessions If set to `true` deletes all consent sessions by the Subject that have been granted. * @param {*} [options] Override http request option. * @throws {RequiredError} */ revokeOAuth2ConsentSessions: (subject?: string, client?: string, consentRequestId?: string, all?: boolean, options?: RawAxiosRequestConfig) => Promise; /** * This endpoint invalidates authentication sessions. After revoking the authentication session(s), the subject has to re-authenticate at the Ory OAuth2 Provider. This endpoint does not invalidate any tokens. If you send the subject in a query param, all authentication sessions that belong to that subject are revoked. No OpenID Connect Front- or Back-channel logout is performed in this case. Alternatively, you can send a SessionID via `sid` query param, in which case, only the session that is connected to that SessionID is revoked. OpenID Connect Back-channel logout is performed in this case. When using Ory for the identity provider, the login provider will also invalidate the session cookie. * @summary Revokes OAuth 2.0 Login Sessions by either a Subject or a SessionID * @param {string} [subject] OAuth 2.0 Subject The subject to revoke authentication sessions for. * @param {string} [sid] Login Session ID The login session to revoke. * @param {*} [options] Override http request option. * @throws {RequiredError} */ revokeOAuth2LoginSessions: (subject?: string, sid?: string, options?: RawAxiosRequestConfig) => Promise; /** * Revoking a token (both access and refresh) means that the tokens will be invalid. A revoked access token can no longer be used to make access requests, and a revoked refresh token can no longer be used to refresh an access token. Revoking a refresh token also invalidates the access token that was created with it. A token may only be revoked by the client the token was generated for. * @summary Revoke OAuth 2.0 Access or Refresh Token * @param {string} token * @param {string} [clientId] * @param {string} [clientSecret] * @param {*} [options] Override http request option. * @throws {RequiredError} */ revokeOAuth2Token: (token: string, clientId?: string, clientSecret?: string, options?: RawAxiosRequestConfig) => Promise; /** * Replaces an existing OAuth 2.0 Client with the payload you send. If you pass `client_secret` the secret is used, otherwise the existing secret is used. If set, the secret is echoed in the response. It is not possible to retrieve it later on. OAuth 2.0 Clients are used to perform OAuth 2.0 and OpenID Connect flows. Usually, OAuth 2.0 clients are generated for applications which want to consume your OAuth 2.0 or OpenID Connect capabilities. * @summary Set OAuth 2.0 Client * @param {string} id OAuth 2.0 Client ID * @param {OAuth2Client} oAuth2Client OAuth 2.0 Client Request Body * @param {*} [options] Override http request option. * @throws {RequiredError} */ setOAuth2Client: (id: string, oAuth2Client: OAuth2Client, options?: RawAxiosRequestConfig) => Promise; /** * Set lifespans of different token types issued for this OAuth 2.0 client. Does not modify other fields. * @summary Set OAuth2 Client Token Lifespans * @param {string} id OAuth 2.0 Client ID * @param {OAuth2ClientTokenLifespans} [oAuth2ClientTokenLifespans] * @param {*} [options] Override http request option. * @throws {RequiredError} */ setOAuth2ClientLifespans: (id: string, oAuth2ClientTokenLifespans?: OAuth2ClientTokenLifespans, options?: RawAxiosRequestConfig) => Promise; /** * Use this endpoint to establish a trust relationship for a JWT issuer to perform JSON Web Token (JWT) Profile for OAuth 2.0 Client Authentication and Authorization Grants [RFC7523](https://datatracker.ietf.org/doc/html/rfc7523). * @summary Trust OAuth2 JWT Bearer Grant Type Issuer * @param {TrustOAuth2JwtGrantIssuer} [trustOAuth2JwtGrantIssuer] * @param {*} [options] Override http request option. * @throws {RequiredError} */ trustOAuth2JwtGrantIssuer: (trustOAuth2JwtGrantIssuer?: TrustOAuth2JwtGrantIssuer, options?: RawAxiosRequestConfig) => Promise; }; /** * OAuth2Api - functional programming interface */ export declare const OAuth2ApiFp: (configuration?: Configuration) => { /** * When an authorization code, hybrid, or implicit OAuth 2.0 Flow is initiated, Ory asks the login provider to authenticate the subject and then tell Ory now about it. If the subject authenticated, he/she must now be asked if the OAuth 2.0 Client which initiated the flow should be allowed to access the resources on the subject\'s behalf. The consent challenge is appended to the consent provider\'s URL to which the subject\'s user-agent (browser) is redirected to. The consent provider uses that challenge to fetch information on the OAuth2 request and then tells Ory if the subject accepted or rejected the request. This endpoint tells Ory that the subject has authorized the OAuth 2.0 client to access resources on his/her behalf. The consent provider includes additional information, such as session data for access and ID tokens, and if the consent request should be used as basis for future requests. The response contains a redirect URL which the consent provider should redirect the user-agent to. The default consent provider is available via the Ory Managed Account Experience. To customize the consent provider, please head over to the OAuth 2.0 documentation. * @summary Accept OAuth 2.0 Consent Request * @param {string} consentChallenge OAuth 2.0 Consent Request Challenge * @param {AcceptOAuth2ConsentRequest} [acceptOAuth2ConsentRequest] * @param {*} [options] Override http request option. * @throws {RequiredError} */ acceptOAuth2ConsentRequest(consentChallenge: string, acceptOAuth2ConsentRequest?: AcceptOAuth2ConsentRequest, options?: RawAxiosRequestConfig): Promise<(axios?: AxiosInstance, basePath?: string) => AxiosPromise>; /** * When an authorization code, hybrid, or implicit OAuth 2.0 Flow is initiated, Ory asks the login provider to authenticate the subject and then tell the Ory OAuth2 Service about it. The authentication challenge is appended to the login provider URL to which the subject\'s user-agent (browser) is redirected to. The login provider uses that challenge to fetch information on the OAuth2 request and then accept or reject the requested authentication process. This endpoint tells Ory that the subject has successfully authenticated and includes additional information such as the subject\'s ID and if Ory should remember the subject\'s subject agent for future authentication attempts by setting a cookie. The response contains a redirect URL which the login provider should redirect the user-agent to. * @summary Accept OAuth 2.0 Login Request * @param {string} loginChallenge OAuth 2.0 Login Request Challenge * @param {AcceptOAuth2LoginRequest} [acceptOAuth2LoginRequest] * @param {*} [options] Override http request option. * @throws {RequiredError} */ acceptOAuth2LoginRequest(loginChallenge: string, acceptOAuth2LoginRequest?: AcceptOAuth2LoginRequest, options?: RawAxiosRequestConfig): Promise<(axios?: AxiosInstance, basePath?: string) => AxiosPromise>; /** * When a user or an application requests Ory OAuth 2.0 to remove the session state of a subject, this endpoint is used to confirm that logout request. The response contains a redirect URL which the consent provider should redirect the user-agent to. * @summary Accept OAuth 2.0 Session Logout Request * @param {string} logoutChallenge OAuth 2.0 Logout Request Challenge * @param {*} [options] Override http request option. * @throws {RequiredError} */ acceptOAuth2LogoutRequest(logoutChallenge: string, options?: RawAxiosRequestConfig): Promise<(axios?: AxiosInstance, basePath?: string) => AxiosPromise>; /** * Accepts a device grant user_code request * @summary Accepts a device grant user_code request * @param {string} deviceChallenge * @param {AcceptDeviceUserCodeRequest} [acceptDeviceUserCodeRequest] * @param {*} [options] Override http request option. * @throws {RequiredError} */ acceptUserCodeRequest(deviceChallenge: string, acceptDeviceUserCodeRequest?: AcceptDeviceUserCodeRequest, options?: RawAxiosRequestConfig): Promise<(axios?: AxiosInstance, basePath?: string) => AxiosPromise>; /** * Create a new OAuth 2.0 client. If you pass `client_secret` the secret is used, otherwise a random secret is generated. The secret is echoed in the response. It is not possible to retrieve it later on. * @summary Create OAuth 2.0 Client * @param {OAuth2Client} oAuth2Client OAuth 2.0 Client Request Body * @param {*} [options] Override http request option. * @throws {RequiredError} */ createOAuth2Client(oAuth2Client: OAuth2Client, options?: RawAxiosRequestConfig): Promise<(axios?: AxiosInstance, basePath?: string) => AxiosPromise>; /** * Delete an existing OAuth 2.0 Client by its ID. OAuth 2.0 clients are used to perform OAuth 2.0 and OpenID Connect flows. Usually, OAuth 2.0 clients are generated for applications which want to consume your OAuth 2.0 or OpenID Connect capabilities. Make sure that this endpoint is well protected and only callable by first-party components. * @summary Delete OAuth 2.0 Client * @param {string} id The id of the OAuth 2.0 Client. * @param {*} [options] Override http request option. * @throws {RequiredError} */ deleteOAuth2Client(id: string, options?: RawAxiosRequestConfig): Promise<(axios?: AxiosInstance, basePath?: string) => AxiosPromise>; /** * This endpoint deletes OAuth2 access tokens issued to an OAuth 2.0 Client from the database. * @summary Delete OAuth 2.0 Access Tokens from specific OAuth 2.0 Client * @param {string} clientId OAuth 2.0 Client ID * @param {*} [options] Override http request option. * @throws {RequiredError} */ deleteOAuth2Token(clientId: string, options?: RawAxiosRequestConfig): Promise<(axios?: AxiosInstance, basePath?: string) => AxiosPromise>; /** * Use this endpoint to delete trusted JWT Bearer Grant Type Issuer. The ID is the one returned when you created the trust relationship. Once deleted, the associated issuer will no longer be able to perform the JSON Web Token (JWT) Profile for OAuth 2.0 Client Authentication and Authorization Grant. * @summary Delete Trusted OAuth2 JWT Bearer Grant Type Issuer * @param {string} id The id of the desired grant * @param {*} [options] Override http request option. * @throws {RequiredError} */ deleteTrustedOAuth2JwtGrantIssuer(id: string, options?: RawAxiosRequestConfig): Promise<(axios?: AxiosInstance, basePath?: string) => AxiosPromise>; /** * Get an OAuth 2.0 client by its ID. This endpoint never returns the client secret. OAuth 2.0 clients are used to perform OAuth 2.0 and OpenID Connect flows. Usually, OAuth 2.0 clients are generated for applications which want to consume your OAuth 2.0 or OpenID Connect capabilities. * @summary Get an OAuth 2.0 Client * @param {string} id The id of the OAuth 2.0 Client. * @param {*} [options] Override http request option. * @throws {RequiredError} */ getOAuth2Client(id: string, options?: RawAxiosRequestConfig): Promise<(axios?: AxiosInstance, basePath?: string) => AxiosPromise>; /** * When an authorization code, hybrid, or implicit OAuth 2.0 Flow is initiated, Ory asks the login provider to authenticate the subject and then tell Ory now about it. If the subject authenticated, he/she must now be asked if the OAuth 2.0 Client which initiated the flow should be allowed to access the resources on the subject\'s behalf. The consent challenge is appended to the consent provider\'s URL to which the subject\'s user-agent (browser) is redirected to. The consent provider uses that challenge to fetch information on the OAuth2 request and then tells Ory if the subject accepted or rejected the request. The default consent provider is available via the Ory Managed Account Experience. To customize the consent provider, please head over to the OAuth 2.0 documentation. * @summary Get OAuth 2.0 Consent Request * @param {string} consentChallenge OAuth 2.0 Consent Request Challenge * @param {*} [options] Override http request option. * @throws {RequiredError} */ getOAuth2ConsentRequest(consentChallenge: string, options?: RawAxiosRequestConfig): Promise<(axios?: AxiosInstance, basePath?: string) => AxiosPromise>; /** * When an authorization code, hybrid, or implicit OAuth 2.0 Flow is initiated, Ory asks the login provider to authenticate the subject and then tell the Ory OAuth2 Service about it. Per default, the login provider is Ory itself. You may use a different login provider which needs to be a web-app you write and host, and it must be able to authenticate (\"show the subject a login screen\") a subject (in OAuth2 the proper name for subject is \"resource owner\"). The authentication challenge is appended to the login provider URL to which the subject\'s user-agent (browser) is redirected to. The login provider uses that challenge to fetch information on the OAuth2 request and then accept or reject the requested authentication process. * @summary Get OAuth 2.0 Login Request * @param {string} loginChallenge OAuth 2.0 Login Request Challenge * @param {*} [options] Override http request option. * @throws {RequiredError} */ getOAuth2LoginRequest(loginChallenge: string, options?: RawAxiosRequestConfig): Promise<(axios?: AxiosInstance, basePath?: string) => AxiosPromise>; /** * Use this endpoint to fetch an Ory OAuth 2.0 logout request. * @summary Get OAuth 2.0 Session Logout Request * @param {string} logoutChallenge * @param {*} [options] Override http request option. * @throws {RequiredError} */ getOAuth2LogoutRequest(logoutChallenge: string, options?: RawAxiosRequestConfig): Promise<(axios?: AxiosInstance, basePath?: string) => AxiosPromise>; /** * Use this endpoint to get a trusted JWT Bearer Grant Type Issuer. The ID is the one returned when you created the trust relationship. * @summary Get Trusted OAuth2 JWT Bearer Grant Type Issuer * @param {string} id The id of the desired grant * @param {*} [options] Override http request option. * @throws {RequiredError} */ getTrustedOAuth2JwtGrantIssuer(id: string, options?: RawAxiosRequestConfig): Promise<(axios?: AxiosInstance, basePath?: string) => AxiosPromise>; /** * The introspection endpoint allows to check if a token (both refresh and access) is active or not. An active token is neither expired nor revoked. If a token is active, additional information on the token will be included. You can set additional data for a token by setting `session.access_token` during the consent flow. * @summary Introspect OAuth2 Access and Refresh Tokens * @param {string} token The string value of the token. For access tokens, this is the \\\"access_token\\\" value returned from the token endpoint defined in OAuth 2.0. For refresh tokens, this is the \\\"refresh_token\\\" value returned. * @param {string} [scope] An optional, space separated list of required scopes. If the access token was not granted one of the scopes, the result of active will be false. * @param {*} [options] Override http request option. * @throws {RequiredError} */ introspectOAuth2Token(token: string, scope?: string, options?: RawAxiosRequestConfig): Promise<(axios?: AxiosInstance, basePath?: string) => AxiosPromise>; /** * This endpoint lists all clients in the database, and never returns client secrets. As a default it lists the first 100 clients. * @summary List OAuth 2.0 Clients * @param {number} [pageSize] Items per Page This is the number of items per page to return. For details on pagination please head over to the [pagination documentation](https://www.ory.sh/docs/ecosystem/api-design#pagination). * @param {string} [pageToken] Next Page Token The next page token. For details on pagination please head over to the [pagination documentation](https://www.ory.sh/docs/ecosystem/api-design#pagination). * @param {string} [clientName] The name of the clients to filter by. * @param {string} [owner] The owner of the clients to filter by. * @param {*} [options] Override http request option. * @throws {RequiredError} */ listOAuth2Clients(pageSize?: number, pageToken?: string, clientName?: string, owner?: string, options?: RawAxiosRequestConfig): Promise<(axios?: AxiosInstance, basePath?: string) => AxiosPromise>>; /** * This endpoint lists all subject\'s granted consent sessions, including client and granted scope. If the subject is unknown or has not granted any consent sessions yet, the endpoint returns an empty JSON array with status code 200 OK. * @summary List OAuth 2.0 Consent Sessions of a Subject * @param {string} subject The subject to list the consent sessions for. * @param {number} [pageSize] Items per Page This is the number of items per page to return. For details on pagination please head over to the [pagination documentation](https://www.ory.sh/docs/ecosystem/api-design#pagination). * @param {string} [pageToken] Next Page Token The next page token. For details on pagination please head over to the [pagination documentation](https://www.ory.sh/docs/ecosystem/api-design#pagination). * @param {string} [loginSessionId] The login session id to list the consent sessions for. * @param {*} [options] Override http request option. * @throws {RequiredError} */ listOAuth2ConsentSessions(subject: string, pageSize?: number, pageToken?: string, loginSessionId?: string, options?: RawAxiosRequestConfig): Promise<(axios?: AxiosInstance, basePath?: string) => AxiosPromise>>; /** * Use this endpoint to list all trusted JWT Bearer Grant Type Issuers. * @summary List Trusted OAuth2 JWT Bearer Grant Type Issuers * @param {number} [pageSize] Items per Page This is the number of items per page to return. For details on pagination please head over to the [pagination documentation](https://www.ory.sh/docs/ecosystem/api-design#pagination). * @param {string} [pageToken] Next Page Token The next page token. For details on pagination please head over to the [pagination documentation](https://www.ory.sh/docs/ecosystem/api-design#pagination). * @param {string} [issuer] If optional \"issuer\" is supplied, only jwt-bearer grants with this issuer will be returned. * @param {*} [options] Override http request option. * @throws {RequiredError} */ listTrustedOAuth2JwtGrantIssuers(pageSize?: number, pageToken?: string, issuer?: string, options?: RawAxiosRequestConfig): Promise<(axios?: AxiosInstance, basePath?: string) => AxiosPromise>>; /** * Use open source libraries to perform OAuth 2.0 and OpenID Connect available for any programming language. You can find a list of libraries at https://oauth.net/code/ This endpoint should not be used via the Ory SDK and is only included for technical reasons. Instead, use one of the libraries linked above. * @summary OAuth 2.0 Authorize Endpoint * @param {*} [options] Override http request option. * @throws {RequiredError} */ oAuth2Authorize(options?: RawAxiosRequestConfig): Promise<(axios?: AxiosInstance, basePath?: string) => AxiosPromise>; /** * This endpoint is not documented here because you should never use your own implementation to perform OAuth2 flows. OAuth2 is a very popular protocol and a library for your programming language will exist. To learn more about this flow please refer to the specification: https://tools.ietf.org/html/rfc8628 * @summary The OAuth 2.0 Device Authorize Endpoint * @param {*} [options] Override http request option. * @throws {RequiredError} */ oAuth2DeviceFlow(options?: RawAxiosRequestConfig): Promise<(axios?: AxiosInstance, basePath?: string) => AxiosPromise>; /** * Use open source libraries to perform OAuth 2.0 and OpenID Connect available for any programming language. You can find a list of libraries here https://oauth.net/code/ This endpoint should not be used via the Ory SDK and is only included for technical reasons. Instead, use one of the libraries linked above. * @summary The OAuth 2.0 Token Endpoint * @param {string} grantType * @param {string} [clientId] * @param {string} [code] * @param {string} [redirectUri] * @param {string} [refreshToken] * @param {*} [options] Override http request option. * @throws {RequiredError} */ oauth2TokenExchange(grantType: string, clientId?: string, code?: string, redirectUri?: string, refreshToken?: string, options?: RawAxiosRequestConfig): Promise<(axios?: AxiosInstance, basePath?: string) => AxiosPromise>; /** * Patch an existing OAuth 2.0 Client using JSON Patch. If you pass `client_secret` the secret will be updated and returned via the API. This is the only time you will be able to retrieve the client secret, so write it down and keep it safe. OAuth 2.0 clients are used to perform OAuth 2.0 and OpenID Connect flows. Usually, OAuth 2.0 clients are generated for applications which want to consume your OAuth 2.0 or OpenID Connect capabilities. * @summary Patch OAuth 2.0 Client * @param {string} id The id of the OAuth 2.0 Client. * @param {Array} jsonPatch OAuth 2.0 Client JSON Patch Body * @param {*} [options] Override http request option. * @throws {RequiredError} */ patchOAuth2Client(id: string, jsonPatch: Array, options?: RawAxiosRequestConfig): Promise<(axios?: AxiosInstance, basePath?: string) => AxiosPromise>; /** * This is the device user verification endpoint. The user is redirected here when trying to log in using the device flow. * @summary OAuth 2.0 Device Verification Endpoint * @param {*} [options] Override http request option. * @throws {RequiredError} */ performOAuth2DeviceVerificationFlow(options?: RawAxiosRequestConfig): Promise<(axios?: AxiosInstance, basePath?: string) => AxiosPromise>; /** * When an authorization code, hybrid, or implicit OAuth 2.0 Flow is initiated, Ory asks the login provider to authenticate the subject and then tell Ory now about it. If the subject authenticated, he/she must now be asked if the OAuth 2.0 Client which initiated the flow should be allowed to access the resources on the subject\'s behalf. The consent challenge is appended to the consent provider\'s URL to which the subject\'s user-agent (browser) is redirected to. The consent provider uses that challenge to fetch information on the OAuth2 request and then tells Ory if the subject accepted or rejected the request. This endpoint tells Ory that the subject has not authorized the OAuth 2.0 client to access resources on his/her behalf. The consent provider must include a reason why the consent was not granted. The response contains a redirect URL which the consent provider should redirect the user-agent to. The default consent provider is available via the Ory Managed Account Experience. To customize the consent provider, please head over to the OAuth 2.0 documentation. * @summary Reject OAuth 2.0 Consent Request * @param {string} consentChallenge OAuth 2.0 Consent Request Challenge * @param {RejectOAuth2Request} [rejectOAuth2Request] * @param {*} [options] Override http request option. * @throws {RequiredError} */ rejectOAuth2ConsentRequest(consentChallenge: string, rejectOAuth2Request?: RejectOAuth2Request, options?: RawAxiosRequestConfig): Promise<(axios?: AxiosInstance, basePath?: string) => AxiosPromise>; /** * When an authorization code, hybrid, or implicit OAuth 2.0 Flow is initiated, Ory asks the login provider to authenticate the subject and then tell the Ory OAuth2 Service about it. The authentication challenge is appended to the login provider URL to which the subject\'s user-agent (browser) is redirected to. The login provider uses that challenge to fetch information on the OAuth2 request and then accept or reject the requested authentication process. This endpoint tells Ory that the subject has not authenticated and includes a reason why the authentication was denied. The response contains a redirect URL which the login provider should redirect the user-agent to. * @summary Reject OAuth 2.0 Login Request * @param {string} loginChallenge OAuth 2.0 Login Request Challenge * @param {RejectOAuth2Request} [rejectOAuth2Request] * @param {*} [options] Override http request option. * @throws {RequiredError} */ rejectOAuth2LoginRequest(loginChallenge: string, rejectOAuth2Request?: RejectOAuth2Request, options?: RawAxiosRequestConfig): Promise<(axios?: AxiosInstance, basePath?: string) => AxiosPromise>; /** * When a user or an application requests Ory OAuth 2.0 to remove the session state of a subject, this endpoint is used to deny that logout request. No HTTP request body is required. The response is empty as the logout provider has to chose what action to perform next. * @summary Reject OAuth 2.0 Session Logout Request * @param {string} logoutChallenge * @param {*} [options] Override http request option. * @throws {RequiredError} */ rejectOAuth2LogoutRequest(logoutChallenge: string, options?: RawAxiosRequestConfig): Promise<(axios?: AxiosInstance, basePath?: string) => AxiosPromise>; /** * This endpoint revokes a subject\'s granted consent sessions and invalidates all associated OAuth 2.0 Access Tokens. You may also only revoke sessions for a specific OAuth 2.0 Client ID. * @summary Revoke OAuth 2.0 Consent Sessions of a Subject * @param {string} [subject] OAuth 2.0 Consent Subject The subject whose consent sessions should be deleted. * @param {string} [client] OAuth 2.0 Client ID If set, deletes only those consent sessions that have been granted to the specified OAuth 2.0 Client ID. * @param {string} [consentRequestId] Consent Request ID If set, revoke all token chains derived from this particular consent request ID. * @param {boolean} [all] Revoke All Consent Sessions If set to `true` deletes all consent sessions by the Subject that have been granted. * @param {*} [options] Override http request option. * @throws {RequiredError} */ revokeOAuth2ConsentSessions(subject?: string, client?: string, consentRequestId?: string, all?: boolean, options?: RawAxiosRequestConfig): Promise<(axios?: AxiosInstance, basePath?: string) => AxiosPromise>; /** * This endpoint invalidates authentication sessions. After revoking the authentication session(s), the subject has to re-authenticate at the Ory OAuth2 Provider. This endpoint does not invalidate any tokens. If you send the subject in a query param, all authentication sessions that belong to that subject are revoked. No OpenID Connect Front- or Back-channel logout is performed in this case. Alternatively, you can send a SessionID via `sid` query param, in which case, only the session that is connected to that SessionID is revoked. OpenID Connect Back-channel logout is performed in this case. When using Ory for the identity provider, the login provider will also invalidate the session cookie. * @summary Revokes OAuth 2.0 Login Sessions by either a Subject or a SessionID * @param {string} [subject] OAuth 2.0 Subject The subject to revoke authentication sessions for. * @param {string} [sid] Login Session ID The login session to revoke. * @param {*} [options] Override http request option. * @throws {RequiredError} */ revokeOAuth2LoginSessions(subject?: string, sid?: string, options?: RawAxiosRequestConfig): Promise<(axios?: AxiosInstance, basePath?: string) => AxiosPromise>; /** * Revoking a token (both access and refresh) means that the tokens will be invalid. A revoked access token can no longer be used to make access requests, and a revoked refresh token can no longer be used to refresh an access token. Revoking a refresh token also invalidates the access token that was created with it. A token may only be revoked by the client the token was generated for. * @summary Revoke OAuth 2.0 Access or Refresh Token * @param {string} token * @param {string} [clientId] * @param {string} [clientSecret] * @param {*} [options] Override http request option. * @throws {RequiredError} */ revokeOAuth2Token(token: string, clientId?: string, clientSecret?: string, options?: RawAxiosRequestConfig): Promise<(axios?: AxiosInstance, basePath?: string) => AxiosPromise>; /** * Replaces an existing OAuth 2.0 Client with the payload you send. If you pass `client_secret` the secret is used, otherwise the existing secret is used. If set, the secret is echoed in the response. It is not possible to retrieve it later on. OAuth 2.0 Clients are used to perform OAuth 2.0 and OpenID Connect flows. Usually, OAuth 2.0 clients are generated for applications which want to consume your OAuth 2.0 or OpenID Connect capabilities. * @summary Set OAuth 2.0 Client * @param {string} id OAuth 2.0 Client ID * @param {OAuth2Client} oAuth2Client OAuth 2.0 Client Request Body * @param {*} [options] Override http request option. * @throws {RequiredError} */ setOAuth2Client(id: string, oAuth2Client: OAuth2Client, options?: RawAxiosRequestConfig): Promise<(axios?: AxiosInstance, basePath?: string) => AxiosPromise>; /** * Set lifespans of different token types issued for this OAuth 2.0 client. Does not modify other fields. * @summary Set OAuth2 Client Token Lifespans * @param {string} id OAuth 2.0 Client ID * @param {OAuth2ClientTokenLifespans} [oAuth2ClientTokenLifespans] * @param {*} [options] Override http request option. * @throws {RequiredError} */ setOAuth2ClientLifespans(id: string, oAuth2ClientTokenLifespans?: OAuth2ClientTokenLifespans, options?: RawAxiosRequestConfig): Promise<(axios?: AxiosInstance, basePath?: string) => AxiosPromise>; /** * Use this endpoint to establish a trust relationship for a JWT issuer to perform JSON Web Token (JWT) Profile for OAuth 2.0 Client Authentication and Authorization Grants [RFC7523](https://datatracker.ietf.org/doc/html/rfc7523). * @summary Trust OAuth2 JWT Bearer Grant Type Issuer * @param {TrustOAuth2JwtGrantIssuer} [trustOAuth2JwtGrantIssuer] * @param {*} [options] Override http request option. * @throws {RequiredError} */ trustOAuth2JwtGrantIssuer(trustOAuth2JwtGrantIssuer?: TrustOAuth2JwtGrantIssuer, options?: RawAxiosRequestConfig): Promise<(axios?: AxiosInstance, basePath?: string) => AxiosPromise>; }; /** * OAuth2Api - factory interface */ export declare const OAuth2ApiFactory: (configuration?: Configuration, basePath?: string, axios?: AxiosInstance) => { /** * When an authorization code, hybrid, or implicit OAuth 2.0 Flow is initiated, Ory asks the login provider to authenticate the subject and then tell Ory now about it. If the subject authenticated, he/she must now be asked if the OAuth 2.0 Client which initiated the flow should be allowed to access the resources on the subject\'s behalf. The consent challenge is appended to the consent provider\'s URL to which the subject\'s user-agent (browser) is redirected to. The consent provider uses that challenge to fetch information on the OAuth2 request and then tells Ory if the subject accepted or rejected the request. This endpoint tells Ory that the subject has authorized the OAuth 2.0 client to access resources on his/her behalf. The consent provider includes additional information, such as session data for access and ID tokens, and if the consent request should be used as basis for future requests. The response contains a redirect URL which the consent provider should redirect the user-agent to. The default consent provider is available via the Ory Managed Account Experience. To customize the consent provider, please head over to the OAuth 2.0 documentation. * @summary Accept OAuth 2.0 Consent Request * @param {OAuth2ApiAcceptOAuth2ConsentRequestRequest} requestParameters Request parameters. * @param {*} [options] Override http request option. * @throws {RequiredError} */ acceptOAuth2ConsentRequest(requestParameters: OAuth2ApiAcceptOAuth2ConsentRequestRequest, options?: RawAxiosRequestConfig): AxiosPromise; /** * When an authorization code, hybrid, or implicit OAuth 2.0 Flow is initiated, Ory asks the login provider to authenticate the subject and then tell the Ory OAuth2 Service about it. The authentication challenge is appended to the login provider URL to which the subject\'s user-agent (browser) is redirected to. The login provider uses that challenge to fetch information on the OAuth2 request and then accept or reject the requested authentication process. This endpoint tells Ory that the subject has successfully authenticated and includes additional information such as the subject\'s ID and if Ory should remember the subject\'s subject agent for future authentication attempts by setting a cookie. The response contains a redirect URL which the login provider should redirect the user-agent to. * @summary Accept OAuth 2.0 Login Request * @param {OAuth2ApiAcceptOAuth2LoginRequestRequest} requestParameters Request parameters. * @param {*} [options] Override http request option. * @throws {RequiredError} */ acceptOAuth2LoginRequest(requestParameters: OAuth2ApiAcceptOAuth2LoginRequestRequest, options?: RawAxiosRequestConfig): AxiosPromise; /** * When a user or an application requests Ory OAuth 2.0 to remove the session state of a subject, this endpoint is used to confirm that logout request. The response contains a redirect URL which the consent provider should redirect the user-agent to. * @summary Accept OAuth 2.0 Session Logout Request * @param {OAuth2ApiAcceptOAuth2LogoutRequestRequest} requestParameters Request parameters. * @param {*} [options] Override http request option. * @throws {RequiredError} */ acceptOAuth2LogoutRequest(requestParameters: OAuth2ApiAcceptOAuth2LogoutRequestRequest, options?: RawAxiosRequestConfig): AxiosPromise; /** * Accepts a device grant user_code request * @summary Accepts a device grant user_code request * @param {OAuth2ApiAcceptUserCodeRequestRequest} requestParameters Request parameters. * @param {*} [options] Override http request option. * @throws {RequiredError} */ acceptUserCodeRequest(requestParameters: OAuth2ApiAcceptUserCodeRequestRequest, options?: RawAxiosRequestConfig): AxiosPromise; /** * Create a new OAuth 2.0 client. If you pass `client_secret` the secret is used, otherwise a random secret is generated. The secret is echoed in the response. It is not possible to retrieve it later on. * @summary Create OAuth 2.0 Client * @param {OAuth2ApiCreateOAuth2ClientRequest} requestParameters Request parameters. * @param {*} [options] Override http request option. * @throws {RequiredError} */ createOAuth2Client(requestParameters: OAuth2ApiCreateOAuth2ClientRequest, options?: RawAxiosRequestConfig): AxiosPromise; /** * Delete an existing OAuth 2.0 Client by its ID. OAuth 2.0 clients are used to perform OAuth 2.0 and OpenID Connect flows. Usually, OAuth 2.0 clients are generated for applications which want to consume your OAuth 2.0 or OpenID Connect capabilities. Make sure that this endpoint is well protected and only callable by first-party components. * @summary Delete OAuth 2.0 Client * @param {OAuth2ApiDeleteOAuth2ClientRequest} requestParameters Request parameters. * @param {*} [options] Override http request option. * @throws {RequiredError} */ deleteOAuth2Client(requestParameters: OAuth2ApiDeleteOAuth2ClientRequest, options?: RawAxiosRequestConfig): AxiosPromise; /** * This endpoint deletes OAuth2 access tokens issued to an OAuth 2.0 Client from the database. * @summary Delete OAuth 2.0 Access Tokens from specific OAuth 2.0 Client * @param {OAuth2ApiDeleteOAuth2TokenRequest} requestParameters Request parameters. * @param {*} [options] Override http request option. * @throws {RequiredError} */ deleteOAuth2Token(requestParameters: OAuth2ApiDeleteOAuth2TokenRequest, options?: RawAxiosRequestConfig): AxiosPromise; /** * Use this endpoint to delete trusted JWT Bearer Grant Type Issuer. The ID is the one returned when you created the trust relationship. Once deleted, the associated issuer will no longer be able to perform the JSON Web Token (JWT) Profile for OAuth 2.0 Client Authentication and Authorization Grant. * @summary Delete Trusted OAuth2 JWT Bearer Grant Type Issuer * @param {OAuth2ApiDeleteTrustedOAuth2JwtGrantIssuerRequest} requestParameters Request parameters. * @param {*} [options] Override http request option. * @throws {RequiredError} */ deleteTrustedOAuth2JwtGrantIssuer(requestParameters: OAuth2ApiDeleteTrustedOAuth2JwtGrantIssuerRequest, options?: RawAxiosRequestConfig): AxiosPromise; /** * Get an OAuth 2.0 client by its ID. This endpoint never returns the client secret. OAuth 2.0 clients are used to perform OAuth 2.0 and OpenID Connect flows. Usually, OAuth 2.0 clients are generated for applications which want to consume your OAuth 2.0 or OpenID Connect capabilities. * @summary Get an OAuth 2.0 Client * @param {OAuth2ApiGetOAuth2ClientRequest} requestParameters Request parameters. * @param {*} [options] Override http request option. * @throws {RequiredError} */ getOAuth2Client(requestParameters: OAuth2ApiGetOAuth2ClientRequest, options?: RawAxiosRequestConfig): AxiosPromise; /** * When an authorization code, hybrid, or implicit OAuth 2.0 Flow is initiated, Ory asks the login provider to authenticate the subject and then tell Ory now about it. If the subject authenticated, he/she must now be asked if the OAuth 2.0 Client which initiated the flow should be allowed to access the resources on the subject\'s behalf. The consent challenge is appended to the consent provider\'s URL to which the subject\'s user-agent (browser) is redirected to. The consent provider uses that challenge to fetch information on the OAuth2 request and then tells Ory if the subject accepted or rejected the request. The default consent provider is available via the Ory Managed Account Experience. To customize the consent provider, please head over to the OAuth 2.0 documentation. * @summary Get OAuth 2.0 Consent Request * @param {OAuth2ApiGetOAuth2ConsentRequestRequest} requestParameters Request parameters. * @param {*} [options] Override http request option. * @throws {RequiredError} */ getOAuth2ConsentRequest(requestParameters: OAuth2ApiGetOAuth2ConsentRequestRequest, options?: RawAxiosRequestConfig): AxiosPromise; /** * When an authorization code, hybrid, or implicit OAuth 2.0 Flow is initiated, Ory asks the login provider to authenticate the subject and then tell the Ory OAuth2 Service about it. Per default, the login provider is Ory itself. You may use a different login provider which needs to be a web-app you write and host, and it must be able to authenticate (\"show the subject a login screen\") a subject (in OAuth2 the proper name for subject is \"resource owner\"). The authentication challenge is appended to the login provider URL to which the subject\'s user-agent (browser) is redirected to. The login provider uses that challenge to fetch information on the OAuth2 request and then accept or reject the requested authentication process. * @summary Get OAuth 2.0 Login Request * @param {OAuth2ApiGetOAuth2LoginRequestRequest} requestParameters Request parameters. * @param {*} [options] Override http request option. * @throws {RequiredError} */ getOAuth2LoginRequest(requestParameters: OAuth2ApiGetOAuth2LoginRequestRequest, options?: RawAxiosRequestConfig): AxiosPromise; /** * Use this endpoint to fetch an Ory OAuth 2.0 logout request. * @summary Get OAuth 2.0 Session Logout Request * @param {OAuth2ApiGetOAuth2LogoutRequestRequest} requestParameters Request parameters. * @param {*} [options] Override http request option. * @throws {RequiredError} */ getOAuth2LogoutRequest(requestParameters: OAuth2ApiGetOAuth2LogoutRequestRequest, options?: RawAxiosRequestConfig): AxiosPromise; /** * Use this endpoint to get a trusted JWT Bearer Grant Type Issuer. The ID is the one returned when you created the trust relationship. * @summary Get Trusted OAuth2 JWT Bearer Grant Type Issuer * @param {OAuth2ApiGetTrustedOAuth2JwtGrantIssuerRequest} requestParameters Request parameters. * @param {*} [options] Override http request option. * @throws {RequiredError} */ getTrustedOAuth2JwtGrantIssuer(requestParameters: OAuth2ApiGetTrustedOAuth2JwtGrantIssuerRequest, options?: RawAxiosRequestConfig): AxiosPromise; /** * The introspection endpoint allows to check if a token (both refresh and access) is active or not. An active token is neither expired nor revoked. If a token is active, additional information on the token will be included. You can set additional data for a token by setting `session.access_token` during the consent flow. * @summary Introspect OAuth2 Access and Refresh Tokens * @param {OAuth2ApiIntrospectOAuth2TokenRequest} requestParameters Request parameters. * @param {*} [options] Override http request option. * @throws {RequiredError} */ introspectOAuth2Token(requestParameters: OAuth2ApiIntrospectOAuth2TokenRequest, options?: RawAxiosRequestConfig): AxiosPromise; /** * This endpoint lists all clients in the database, and never returns client secrets. As a default it lists the first 100 clients. * @summary List OAuth 2.0 Clients * @param {OAuth2ApiListOAuth2ClientsRequest} requestParameters Request parameters. * @param {*} [options] Override http request option. * @throws {RequiredError} */ listOAuth2Clients(requestParameters?: OAuth2ApiListOAuth2ClientsRequest, options?: RawAxiosRequestConfig): AxiosPromise>; /** * This endpoint lists all subject\'s granted consent sessions, including client and granted scope. If the subject is unknown or has not granted any consent sessions yet, the endpoint returns an empty JSON array with status code 200 OK. * @summary List OAuth 2.0 Consent Sessions of a Subject * @param {OAuth2ApiListOAuth2ConsentSessionsRequest} requestParameters Request parameters. * @param {*} [options] Override http request option. * @throws {RequiredError} */ listOAuth2ConsentSessions(requestParameters: OAuth2ApiListOAuth2ConsentSessionsRequest, options?: RawAxiosRequestConfig): AxiosPromise>; /** * Use this endpoint to list all trusted JWT Bearer Grant Type Issuers. * @summary List Trusted OAuth2 JWT Bearer Grant Type Issuers * @param {OAuth2ApiListTrustedOAuth2JwtGrantIssuersRequest} requestParameters Request parameters. * @param {*} [options] Override http request option. * @throws {RequiredError} */ listTrustedOAuth2JwtGrantIssuers(requestParameters?: OAuth2ApiListTrustedOAuth2JwtGrantIssuersRequest, options?: RawAxiosRequestConfig): AxiosPromise>; /** * Use open source libraries to perform OAuth 2.0 and OpenID Connect available for any programming language. You can find a list of libraries at https://oauth.net/code/ This endpoint should not be used via the Ory SDK and is only included for technical reasons. Instead, use one of the libraries linked above. * @summary OAuth 2.0 Authorize Endpoint * @param {*} [options] Override http request option. * @throws {RequiredError} */ oAuth2Authorize(options?: RawAxiosRequestConfig): AxiosPromise; /** * This endpoint is not documented here because you should never use your own implementation to perform OAuth2 flows. OAuth2 is a very popular protocol and a library for your programming language will exist. To learn more about this flow please refer to the specification: https://tools.ietf.org/html/rfc8628 * @summary The OAuth 2.0 Device Authorize Endpoint * @param {*} [options] Override http request option. * @throws {RequiredError} */ oAuth2DeviceFlow(options?: RawAxiosRequestConfig): AxiosPromise; /** * Use open source libraries to perform OAuth 2.0 and OpenID Connect available for any programming language. You can find a list of libraries here https://oauth.net/code/ This endpoint should not be used via the Ory SDK and is only included for technical reasons. Instead, use one of the libraries linked above. * @summary The OAuth 2.0 Token Endpoint * @param {OAuth2ApiOauth2TokenExchangeRequest} requestParameters Request parameters. * @param {*} [options] Override http request option. * @throws {RequiredError} */ oauth2TokenExchange(requestParameters: OAuth2ApiOauth2TokenExchangeRequest, options?: RawAxiosRequestConfig): AxiosPromise; /** * Patch an existing OAuth 2.0 Client using JSON Patch. If you pass `client_secret` the secret will be updated and returned via the API. This is the only time you will be able to retrieve the client secret, so write it down and keep it safe. OAuth 2.0 clients are used to perform OAuth 2.0 and OpenID Connect flows. Usually, OAuth 2.0 clients are generated for applications which want to consume your OAuth 2.0 or OpenID Connect capabilities. * @summary Patch OAuth 2.0 Client * @param {OAuth2ApiPatchOAuth2ClientRequest} requestParameters Request parameters. * @param {*} [options] Override http request option. * @throws {RequiredError} */ patchOAuth2Client(requestParameters: OAuth2ApiPatchOAuth2ClientRequest, options?: RawAxiosRequestConfig): AxiosPromise; /** * This is the device user verification endpoint. The user is redirected here when trying to log in using the device flow. * @summary OAuth 2.0 Device Verification Endpoint * @param {*} [options] Override http request option. * @throws {RequiredError} */ performOAuth2DeviceVerificationFlow(options?: RawAxiosRequestConfig): AxiosPromise; /** * When an authorization code, hybrid, or implicit OAuth 2.0 Flow is initiated, Ory asks the login provider to authenticate the subject and then tell Ory now about it. If the subject authenticated, he/she must now be asked if the OAuth 2.0 Client which initiated the flow should be allowed to access the resources on the subject\'s behalf. The consent challenge is appended to the consent provider\'s URL to which the subject\'s user-agent (browser) is redirected to. The consent provider uses that challenge to fetch information on the OAuth2 request and then tells Ory if the subject accepted or rejected the request. This endpoint tells Ory that the subject has not authorized the OAuth 2.0 client to access resources on his/her behalf. The consent provider must include a reason why the consent was not granted. The response contains a redirect URL which the consent provider should redirect the user-agent to. The default consent provider is available via the Ory Managed Account Experience. To customize the consent provider, please head over to the OAuth 2.0 documentation. * @summary Reject OAuth 2.0 Consent Request * @param {OAuth2ApiRejectOAuth2ConsentRequestRequest} requestParameters Request parameters. * @param {*} [options] Override http request option. * @throws {RequiredError} */ rejectOAuth2ConsentRequest(requestParameters: OAuth2ApiRejectOAuth2ConsentRequestRequest, options?: RawAxiosRequestConfig): AxiosPromise; /** * When an authorization code, hybrid, or implicit OAuth 2.0 Flow is initiated, Ory asks the login provider to authenticate the subject and then tell the Ory OAuth2 Service about it. The authentication challenge is appended to the login provider URL to which the subject\'s user-agent (browser) is redirected to. The login provider uses that challenge to fetch information on the OAuth2 request and then accept or reject the requested authentication process. This endpoint tells Ory that the subject has not authenticated and includes a reason why the authentication was denied. The response contains a redirect URL which the login provider should redirect the user-agent to. * @summary Reject OAuth 2.0 Login Request * @param {OAuth2ApiRejectOAuth2LoginRequestRequest} requestParameters Request parameters. * @param {*} [options] Override http request option. * @throws {RequiredError} */ rejectOAuth2LoginRequest(requestParameters: OAuth2ApiRejectOAuth2LoginRequestRequest, options?: RawAxiosRequestConfig): AxiosPromise; /** * When a user or an application requests Ory OAuth 2.0 to remove the session state of a subject, this endpoint is used to deny that logout request. No HTTP request body is required. The response is empty as the logout provider has to chose what action to perform next. * @summary Reject OAuth 2.0 Session Logout Request * @param {OAuth2ApiRejectOAuth2LogoutRequestRequest} requestParameters Request parameters. * @param {*} [options] Override http request option. * @throws {RequiredError} */ rejectOAuth2LogoutRequest(requestParameters: OAuth2ApiRejectOAuth2LogoutRequestRequest, options?: RawAxiosRequestConfig): AxiosPromise; /** * This endpoint revokes a subject\'s granted consent sessions and invalidates all associated OAuth 2.0 Access Tokens. You may also only revoke sessions for a specific OAuth 2.0 Client ID. * @summary Revoke OAuth 2.0 Consent Sessions of a Subject * @param {OAuth2ApiRevokeOAuth2ConsentSessionsRequest} requestParameters Request parameters. * @param {*} [options] Override http request option. * @throws {RequiredError} */ revokeOAuth2ConsentSessions(requestParameters?: OAuth2ApiRevokeOAuth2ConsentSessionsRequest, options?: RawAxiosRequestConfig): AxiosPromise; /** * This endpoint invalidates authentication sessions. After revoking the authentication session(s), the subject has to re-authenticate at the Ory OAuth2 Provider. This endpoint does not invalidate any tokens. If you send the subject in a query param, all authentication sessions that belong to that subject are revoked. No OpenID Connect Front- or Back-channel logout is performed in this case. Alternatively, you can send a SessionID via `sid` query param, in which case, only the session that is connected to that SessionID is revoked. OpenID Connect Back-channel logout is performed in this case. When using Ory for the identity provider, the login provider will also invalidate the session cookie. * @summary Revokes OAuth 2.0 Login Sessions by either a Subject or a SessionID * @param {OAuth2ApiRevokeOAuth2LoginSessionsRequest} requestParameters Request parameters. * @param {*} [options] Override http request option. * @throws {RequiredError} */ revokeOAuth2LoginSessions(requestParameters?: OAuth2ApiRevokeOAuth2LoginSessionsRequest, options?: RawAxiosRequestConfig): AxiosPromise; /** * Revoking a token (both access and refresh) means that the tokens will be invalid. A revoked access token can no longer be used to make access requests, and a revoked refresh token can no longer be used to refresh an access token. Revoking a refresh token also invalidates the access token that was created with it. A token may only be revoked by the client the token was generated for. * @summary Revoke OAuth 2.0 Access or Refresh Token * @param {OAuth2ApiRevokeOAuth2TokenRequest} requestParameters Request parameters. * @param {*} [options] Override http request option. * @throws {RequiredError} */ revokeOAuth2Token(requestParameters: OAuth2ApiRevokeOAuth2TokenRequest, options?: RawAxiosRequestConfig): AxiosPromise; /** * Replaces an existing OAuth 2.0 Client with the payload you send. If you pass `client_secret` the secret is used, otherwise the existing secret is used. If set, the secret is echoed in the response. It is not possible to retrieve it later on. OAuth 2.0 Clients are used to perform OAuth 2.0 and OpenID Connect flows. Usually, OAuth 2.0 clients are generated for applications which want to consume your OAuth 2.0 or OpenID Connect capabilities. * @summary Set OAuth 2.0 Client * @param {OAuth2ApiSetOAuth2ClientRequest} requestParameters Request parameters. * @param {*} [options] Override http request option. * @throws {RequiredError} */ setOAuth2Client(requestParameters: OAuth2ApiSetOAuth2ClientRequest, options?: RawAxiosRequestConfig): AxiosPromise; /** * Set lifespans of different token types issued for this OAuth 2.0 client. Does not modify other fields. * @summary Set OAuth2 Client Token Lifespans * @param {OAuth2ApiSetOAuth2ClientLifespansRequest} requestParameters Request parameters. * @param {*} [options] Override http request option. * @throws {RequiredError} */ setOAuth2ClientLifespans(requestParameters: OAuth2ApiSetOAuth2ClientLifespansRequest, options?: RawAxiosRequestConfig): AxiosPromise; /** * Use this endpoint to establish a trust relationship for a JWT issuer to perform JSON Web Token (JWT) Profile for OAuth 2.0 Client Authentication and Authorization Grants [RFC7523](https://datatracker.ietf.org/doc/html/rfc7523). * @summary Trust OAuth2 JWT Bearer Grant Type Issuer * @param {OAuth2ApiTrustOAuth2JwtGrantIssuerRequest} requestParameters Request parameters. * @param {*} [options] Override http request option. * @throws {RequiredError} */ trustOAuth2JwtGrantIssuer(requestParameters?: OAuth2ApiTrustOAuth2JwtGrantIssuerRequest, options?: RawAxiosRequestConfig): AxiosPromise; }; /** * Request parameters for acceptOAuth2ConsentRequest operation in OAuth2Api. */ export interface OAuth2ApiAcceptOAuth2ConsentRequestRequest { /** * OAuth 2.0 Consent Request Challenge */ readonly consentChallenge: string; readonly acceptOAuth2ConsentRequest?: AcceptOAuth2ConsentRequest; } /** * Request parameters for acceptOAuth2LoginRequest operation in OAuth2Api. */ export interface OAuth2ApiAcceptOAuth2LoginRequestRequest { /** * OAuth 2.0 Login Request Challenge */ readonly loginChallenge: string; readonly acceptOAuth2LoginRequest?: AcceptOAuth2LoginRequest; } /** * Request parameters for acceptOAuth2LogoutRequest operation in OAuth2Api. */ export interface OAuth2ApiAcceptOAuth2LogoutRequestRequest { /** * OAuth 2.0 Logout Request Challenge */ readonly logoutChallenge: string; } /** * Request parameters for acceptUserCodeRequest operation in OAuth2Api. */ export interface OAuth2ApiAcceptUserCodeRequestRequest { readonly deviceChallenge: string; readonly acceptDeviceUserCodeRequest?: AcceptDeviceUserCodeRequest; } /** * Request parameters for createOAuth2Client operation in OAuth2Api. */ export interface OAuth2ApiCreateOAuth2ClientRequest { /** * OAuth 2.0 Client Request Body */ readonly oAuth2Client: OAuth2Client; } /** * Request parameters for deleteOAuth2Client operation in OAuth2Api. */ export interface OAuth2ApiDeleteOAuth2ClientRequest { /** * The id of the OAuth 2.0 Client. */ readonly id: string; } /** * Request parameters for deleteOAuth2Token operation in OAuth2Api. */ export interface OAuth2ApiDeleteOAuth2TokenRequest { /** * OAuth 2.0 Client ID */ readonly clientId: string; } /** * Request parameters for deleteTrustedOAuth2JwtGrantIssuer operation in OAuth2Api. */ export interface OAuth2ApiDeleteTrustedOAuth2JwtGrantIssuerRequest { /** * The id of the desired grant */ readonly id: string; } /** * Request parameters for getOAuth2Client operation in OAuth2Api. */ export interface OAuth2ApiGetOAuth2ClientRequest { /** * The id of the OAuth 2.0 Client. */ readonly id: string; } /** * Request parameters for getOAuth2ConsentRequest operation in OAuth2Api. */ export interface OAuth2ApiGetOAuth2ConsentRequestRequest { /** * OAuth 2.0 Consent Request Challenge */ readonly consentChallenge: string; } /** * Request parameters for getOAuth2LoginRequest operation in OAuth2Api. */ export interface OAuth2ApiGetOAuth2LoginRequestRequest { /** * OAuth 2.0 Login Request Challenge */ readonly loginChallenge: string; } /** * Request parameters for getOAuth2LogoutRequest operation in OAuth2Api. */ export interface OAuth2ApiGetOAuth2LogoutRequestRequest { readonly logoutChallenge: string; } /** * Request parameters for getTrustedOAuth2JwtGrantIssuer operation in OAuth2Api. */ export interface OAuth2ApiGetTrustedOAuth2JwtGrantIssuerRequest { /** * The id of the desired grant */ readonly id: string; } /** * Request parameters for introspectOAuth2Token operation in OAuth2Api. */ export interface OAuth2ApiIntrospectOAuth2TokenRequest { /** * The string value of the token. For access tokens, this is the \\\"access_token\\\" value returned from the token endpoint defined in OAuth 2.0. For refresh tokens, this is the \\\"refresh_token\\\" value returned. */ readonly token: string; /** * An optional, space separated list of required scopes. If the access token was not granted one of the scopes, the result of active will be false. */ readonly scope?: string; } /** * Request parameters for listOAuth2Clients operation in OAuth2Api. */ export interface OAuth2ApiListOAuth2ClientsRequest { /** * Items per Page This is the number of items per page to return. For details on pagination please head over to the [pagination documentation](https://www.ory.sh/docs/ecosystem/api-design#pagination). */ readonly pageSize?: number; /** * Next Page Token The next page token. For details on pagination please head over to the [pagination documentation](https://www.ory.sh/docs/ecosystem/api-design#pagination). */ readonly pageToken?: string; /** * The name of the clients to filter by. */ readonly clientName?: string; /** * The owner of the clients to filter by. */ readonly owner?: string; } /** * Request parameters for listOAuth2ConsentSessions operation in OAuth2Api. */ export interface OAuth2ApiListOAuth2ConsentSessionsRequest { /** * The subject to list the consent sessions for. */ readonly subject: string; /** * Items per Page This is the number of items per page to return. For details on pagination please head over to the [pagination documentation](https://www.ory.sh/docs/ecosystem/api-design#pagination). */ readonly pageSize?: number; /** * Next Page Token The next page token. For details on pagination please head over to the [pagination documentation](https://www.ory.sh/docs/ecosystem/api-design#pagination). */ readonly pageToken?: string; /** * The login session id to list the consent sessions for. */ readonly loginSessionId?: string; } /** * Request parameters for listTrustedOAuth2JwtGrantIssuers operation in OAuth2Api. */ export interface OAuth2ApiListTrustedOAuth2JwtGrantIssuersRequest { /** * Items per Page This is the number of items per page to return. For details on pagination please head over to the [pagination documentation](https://www.ory.sh/docs/ecosystem/api-design#pagination). */ readonly pageSize?: number; /** * Next Page Token The next page token. For details on pagination please head over to the [pagination documentation](https://www.ory.sh/docs/ecosystem/api-design#pagination). */ readonly pageToken?: string; /** * If optional \"issuer\" is supplied, only jwt-bearer grants with this issuer will be returned. */ readonly issuer?: string; } /** * Request parameters for oauth2TokenExchange operation in OAuth2Api. */ export interface OAuth2ApiOauth2TokenExchangeRequest { readonly grantType: string; readonly clientId?: string; readonly code?: string; readonly redirectUri?: string; readonly refreshToken?: string; } /** * Request parameters for patchOAuth2Client operation in OAuth2Api. */ export interface OAuth2ApiPatchOAuth2ClientRequest { /** * The id of the OAuth 2.0 Client. */ readonly id: string; /** * OAuth 2.0 Client JSON Patch Body */ readonly jsonPatch: Array; } /** * Request parameters for rejectOAuth2ConsentRequest operation in OAuth2Api. */ export interface OAuth2ApiRejectOAuth2ConsentRequestRequest { /** * OAuth 2.0 Consent Request Challenge */ readonly consentChallenge: string; readonly rejectOAuth2Request?: RejectOAuth2Request; } /** * Request parameters for rejectOAuth2LoginRequest operation in OAuth2Api. */ export interface OAuth2ApiRejectOAuth2LoginRequestRequest { /** * OAuth 2.0 Login Request Challenge */ readonly loginChallenge: string; readonly rejectOAuth2Request?: RejectOAuth2Request; } /** * Request parameters for rejectOAuth2LogoutRequest operation in OAuth2Api. */ export interface OAuth2ApiRejectOAuth2LogoutRequestRequest { readonly logoutChallenge: string; } /** * Request parameters for revokeOAuth2ConsentSessions operation in OAuth2Api. */ export interface OAuth2ApiRevokeOAuth2ConsentSessionsRequest { /** * OAuth 2.0 Consent Subject The subject whose consent sessions should be deleted. */ readonly subject?: string; /** * OAuth 2.0 Client ID If set, deletes only those consent sessions that have been granted to the specified OAuth 2.0 Client ID. */ readonly client?: string; /** * Consent Request ID If set, revoke all token chains derived from this particular consent request ID. */ readonly consentRequestId?: string; /** * Revoke All Consent Sessions If set to `true` deletes all consent sessions by the Subject that have been granted. */ readonly all?: boolean; } /** * Request parameters for revokeOAuth2LoginSessions operation in OAuth2Api. */ export interface OAuth2ApiRevokeOAuth2LoginSessionsRequest { /** * OAuth 2.0 Subject The subject to revoke authentication sessions for. */ readonly subject?: string; /** * Login Session ID The login session to revoke. */ readonly sid?: string; } /** * Request parameters for revokeOAuth2Token operation in OAuth2Api. */ export interface OAuth2ApiRevokeOAuth2TokenRequest { readonly token: string; readonly clientId?: string; readonly clientSecret?: string; } /** * Request parameters for setOAuth2Client operation in OAuth2Api. */ export interface OAuth2ApiSetOAuth2ClientRequest { /** * OAuth 2.0 Client ID */ readonly id: string; /** * OAuth 2.0 Client Request Body */ readonly oAuth2Client: OAuth2Client; } /** * Request parameters for setOAuth2ClientLifespans operation in OAuth2Api. */ export interface OAuth2ApiSetOAuth2ClientLifespansRequest { /** * OAuth 2.0 Client ID */ readonly id: string; readonly oAuth2ClientTokenLifespans?: OAuth2ClientTokenLifespans; } /** * Request parameters for trustOAuth2JwtGrantIssuer operation in OAuth2Api. */ export interface OAuth2ApiTrustOAuth2JwtGrantIssuerRequest { readonly trustOAuth2JwtGrantIssuer?: TrustOAuth2JwtGrantIssuer; } /** * OAuth2Api - object-oriented interface */ export declare class OAuth2Api extends BaseAPI { /** * When an authorization code, hybrid, or implicit OAuth 2.0 Flow is initiated, Ory asks the login provider to authenticate the subject and then tell Ory now about it. If the subject authenticated, he/she must now be asked if the OAuth 2.0 Client which initiated the flow should be allowed to access the resources on the subject\'s behalf. The consent challenge is appended to the consent provider\'s URL to which the subject\'s user-agent (browser) is redirected to. The consent provider uses that challenge to fetch information on the OAuth2 request and then tells Ory if the subject accepted or rejected the request. This endpoint tells Ory that the subject has authorized the OAuth 2.0 client to access resources on his/her behalf. The consent provider includes additional information, such as session data for access and ID tokens, and if the consent request should be used as basis for future requests. The response contains a redirect URL which the consent provider should redirect the user-agent to. The default consent provider is available via the Ory Managed Account Experience. To customize the consent provider, please head over to the OAuth 2.0 documentation. * @summary Accept OAuth 2.0 Consent Request * @param {OAuth2ApiAcceptOAuth2ConsentRequestRequest} requestParameters Request parameters. * @param {*} [options] Override http request option. * @throws {RequiredError} */ acceptOAuth2ConsentRequest(requestParameters: OAuth2ApiAcceptOAuth2ConsentRequestRequest, options?: RawAxiosRequestConfig): Promise>; /** * When an authorization code, hybrid, or implicit OAuth 2.0 Flow is initiated, Ory asks the login provider to authenticate the subject and then tell the Ory OAuth2 Service about it. The authentication challenge is appended to the login provider URL to which the subject\'s user-agent (browser) is redirected to. The login provider uses that challenge to fetch information on the OAuth2 request and then accept or reject the requested authentication process. This endpoint tells Ory that the subject has successfully authenticated and includes additional information such as the subject\'s ID and if Ory should remember the subject\'s subject agent for future authentication attempts by setting a cookie. The response contains a redirect URL which the login provider should redirect the user-agent to. * @summary Accept OAuth 2.0 Login Request * @param {OAuth2ApiAcceptOAuth2LoginRequestRequest} requestParameters Request parameters. * @param {*} [options] Override http request option. * @throws {RequiredError} */ acceptOAuth2LoginRequest(requestParameters: OAuth2ApiAcceptOAuth2LoginRequestRequest, options?: RawAxiosRequestConfig): Promise>; /** * When a user or an application requests Ory OAuth 2.0 to remove the session state of a subject, this endpoint is used to confirm that logout request. The response contains a redirect URL which the consent provider should redirect the user-agent to. * @summary Accept OAuth 2.0 Session Logout Request * @param {OAuth2ApiAcceptOAuth2LogoutRequestRequest} requestParameters Request parameters. * @param {*} [options] Override http request option. * @throws {RequiredError} */ acceptOAuth2LogoutRequest(requestParameters: OAuth2ApiAcceptOAuth2LogoutRequestRequest, options?: RawAxiosRequestConfig): Promise>; /** * Accepts a device grant user_code request * @summary Accepts a device grant user_code request * @param {OAuth2ApiAcceptUserCodeRequestRequest} requestParameters Request parameters. * @param {*} [options] Override http request option. * @throws {RequiredError} */ acceptUserCodeRequest(requestParameters: OAuth2ApiAcceptUserCodeRequestRequest, options?: RawAxiosRequestConfig): Promise>; /** * Create a new OAuth 2.0 client. If you pass `client_secret` the secret is used, otherwise a random secret is generated. The secret is echoed in the response. It is not possible to retrieve it later on. * @summary Create OAuth 2.0 Client * @param {OAuth2ApiCreateOAuth2ClientRequest} requestParameters Request parameters. * @param {*} [options] Override http request option. * @throws {RequiredError} */ createOAuth2Client(requestParameters: OAuth2ApiCreateOAuth2ClientRequest, options?: RawAxiosRequestConfig): Promise>; /** * Delete an existing OAuth 2.0 Client by its ID. OAuth 2.0 clients are used to perform OAuth 2.0 and OpenID Connect flows. Usually, OAuth 2.0 clients are generated for applications which want to consume your OAuth 2.0 or OpenID Connect capabilities. Make sure that this endpoint is well protected and only callable by first-party components. * @summary Delete OAuth 2.0 Client * @param {OAuth2ApiDeleteOAuth2ClientRequest} requestParameters Request parameters. * @param {*} [options] Override http request option. * @throws {RequiredError} */ deleteOAuth2Client(requestParameters: OAuth2ApiDeleteOAuth2ClientRequest, options?: RawAxiosRequestConfig): Promise>; /** * This endpoint deletes OAuth2 access tokens issued to an OAuth 2.0 Client from the database. * @summary Delete OAuth 2.0 Access Tokens from specific OAuth 2.0 Client * @param {OAuth2ApiDeleteOAuth2TokenRequest} requestParameters Request parameters. * @param {*} [options] Override http request option. * @throws {RequiredError} */ deleteOAuth2Token(requestParameters: OAuth2ApiDeleteOAuth2TokenRequest, options?: RawAxiosRequestConfig): Promise>; /** * Use this endpoint to delete trusted JWT Bearer Grant Type Issuer. The ID is the one returned when you created the trust relationship. Once deleted, the associated issuer will no longer be able to perform the JSON Web Token (JWT) Profile for OAuth 2.0 Client Authentication and Authorization Grant. * @summary Delete Trusted OAuth2 JWT Bearer Grant Type Issuer * @param {OAuth2ApiDeleteTrustedOAuth2JwtGrantIssuerRequest} requestParameters Request parameters. * @param {*} [options] Override http request option. * @throws {RequiredError} */ deleteTrustedOAuth2JwtGrantIssuer(requestParameters: OAuth2ApiDeleteTrustedOAuth2JwtGrantIssuerRequest, options?: RawAxiosRequestConfig): Promise>; /** * Get an OAuth 2.0 client by its ID. This endpoint never returns the client secret. OAuth 2.0 clients are used to perform OAuth 2.0 and OpenID Connect flows. Usually, OAuth 2.0 clients are generated for applications which want to consume your OAuth 2.0 or OpenID Connect capabilities. * @summary Get an OAuth 2.0 Client * @param {OAuth2ApiGetOAuth2ClientRequest} requestParameters Request parameters. * @param {*} [options] Override http request option. * @throws {RequiredError} */ getOAuth2Client(requestParameters: OAuth2ApiGetOAuth2ClientRequest, options?: RawAxiosRequestConfig): Promise>; /** * When an authorization code, hybrid, or implicit OAuth 2.0 Flow is initiated, Ory asks the login provider to authenticate the subject and then tell Ory now about it. If the subject authenticated, he/she must now be asked if the OAuth 2.0 Client which initiated the flow should be allowed to access the resources on the subject\'s behalf. The consent challenge is appended to the consent provider\'s URL to which the subject\'s user-agent (browser) is redirected to. The consent provider uses that challenge to fetch information on the OAuth2 request and then tells Ory if the subject accepted or rejected the request. The default consent provider is available via the Ory Managed Account Experience. To customize the consent provider, please head over to the OAuth 2.0 documentation. * @summary Get OAuth 2.0 Consent Request * @param {OAuth2ApiGetOAuth2ConsentRequestRequest} requestParameters Request parameters. * @param {*} [options] Override http request option. * @throws {RequiredError} */ getOAuth2ConsentRequest(requestParameters: OAuth2ApiGetOAuth2ConsentRequestRequest, options?: RawAxiosRequestConfig): Promise>; /** * When an authorization code, hybrid, or implicit OAuth 2.0 Flow is initiated, Ory asks the login provider to authenticate the subject and then tell the Ory OAuth2 Service about it. Per default, the login provider is Ory itself. You may use a different login provider which needs to be a web-app you write and host, and it must be able to authenticate (\"show the subject a login screen\") a subject (in OAuth2 the proper name for subject is \"resource owner\"). The authentication challenge is appended to the login provider URL to which the subject\'s user-agent (browser) is redirected to. The login provider uses that challenge to fetch information on the OAuth2 request and then accept or reject the requested authentication process. * @summary Get OAuth 2.0 Login Request * @param {OAuth2ApiGetOAuth2LoginRequestRequest} requestParameters Request parameters. * @param {*} [options] Override http request option. * @throws {RequiredError} */ getOAuth2LoginRequest(requestParameters: OAuth2ApiGetOAuth2LoginRequestRequest, options?: RawAxiosRequestConfig): Promise>; /** * Use this endpoint to fetch an Ory OAuth 2.0 logout request. * @summary Get OAuth 2.0 Session Logout Request * @param {OAuth2ApiGetOAuth2LogoutRequestRequest} requestParameters Request parameters. * @param {*} [options] Override http request option. * @throws {RequiredError} */ getOAuth2LogoutRequest(requestParameters: OAuth2ApiGetOAuth2LogoutRequestRequest, options?: RawAxiosRequestConfig): Promise>; /** * Use this endpoint to get a trusted JWT Bearer Grant Type Issuer. The ID is the one returned when you created the trust relationship. * @summary Get Trusted OAuth2 JWT Bearer Grant Type Issuer * @param {OAuth2ApiGetTrustedOAuth2JwtGrantIssuerRequest} requestParameters Request parameters. * @param {*} [options] Override http request option. * @throws {RequiredError} */ getTrustedOAuth2JwtGrantIssuer(requestParameters: OAuth2ApiGetTrustedOAuth2JwtGrantIssuerRequest, options?: RawAxiosRequestConfig): Promise>; /** * The introspection endpoint allows to check if a token (both refresh and access) is active or not. An active token is neither expired nor revoked. If a token is active, additional information on the token will be included. You can set additional data for a token by setting `session.access_token` during the consent flow. * @summary Introspect OAuth2 Access and Refresh Tokens * @param {OAuth2ApiIntrospectOAuth2TokenRequest} requestParameters Request parameters. * @param {*} [options] Override http request option. * @throws {RequiredError} */ introspectOAuth2Token(requestParameters: OAuth2ApiIntrospectOAuth2TokenRequest, options?: RawAxiosRequestConfig): Promise>; /** * This endpoint lists all clients in the database, and never returns client secrets. As a default it lists the first 100 clients. * @summary List OAuth 2.0 Clients * @param {OAuth2ApiListOAuth2ClientsRequest} requestParameters Request parameters. * @param {*} [options] Override http request option. * @throws {RequiredError} */ listOAuth2Clients(requestParameters?: OAuth2ApiListOAuth2ClientsRequest, options?: RawAxiosRequestConfig): Promise>; /** * This endpoint lists all subject\'s granted consent sessions, including client and granted scope. If the subject is unknown or has not granted any consent sessions yet, the endpoint returns an empty JSON array with status code 200 OK. * @summary List OAuth 2.0 Consent Sessions of a Subject * @param {OAuth2ApiListOAuth2ConsentSessionsRequest} requestParameters Request parameters. * @param {*} [options] Override http request option. * @throws {RequiredError} */ listOAuth2ConsentSessions(requestParameters: OAuth2ApiListOAuth2ConsentSessionsRequest, options?: RawAxiosRequestConfig): Promise>; /** * Use this endpoint to list all trusted JWT Bearer Grant Type Issuers. * @summary List Trusted OAuth2 JWT Bearer Grant Type Issuers * @param {OAuth2ApiListTrustedOAuth2JwtGrantIssuersRequest} requestParameters Request parameters. * @param {*} [options] Override http request option. * @throws {RequiredError} */ listTrustedOAuth2JwtGrantIssuers(requestParameters?: OAuth2ApiListTrustedOAuth2JwtGrantIssuersRequest, options?: RawAxiosRequestConfig): Promise>; /** * Use open source libraries to perform OAuth 2.0 and OpenID Connect available for any programming language. You can find a list of libraries at https://oauth.net/code/ This endpoint should not be used via the Ory SDK and is only included for technical reasons. Instead, use one of the libraries linked above. * @summary OAuth 2.0 Authorize Endpoint * @param {*} [options] Override http request option. * @throws {RequiredError} */ oAuth2Authorize(options?: RawAxiosRequestConfig): Promise>; /** * This endpoint is not documented here because you should never use your own implementation to perform OAuth2 flows. OAuth2 is a very popular protocol and a library for your programming language will exist. To learn more about this flow please refer to the specification: https://tools.ietf.org/html/rfc8628 * @summary The OAuth 2.0 Device Authorize Endpoint * @param {*} [options] Override http request option. * @throws {RequiredError} */ oAuth2DeviceFlow(options?: RawAxiosRequestConfig): Promise>; /** * Use open source libraries to perform OAuth 2.0 and OpenID Connect available for any programming language. You can find a list of libraries here https://oauth.net/code/ This endpoint should not be used via the Ory SDK and is only included for technical reasons. Instead, use one of the libraries linked above. * @summary The OAuth 2.0 Token Endpoint * @param {OAuth2ApiOauth2TokenExchangeRequest} requestParameters Request parameters. * @param {*} [options] Override http request option. * @throws {RequiredError} */ oauth2TokenExchange(requestParameters: OAuth2ApiOauth2TokenExchangeRequest, options?: RawAxiosRequestConfig): Promise>; /** * Patch an existing OAuth 2.0 Client using JSON Patch. If you pass `client_secret` the secret will be updated and returned via the API. This is the only time you will be able to retrieve the client secret, so write it down and keep it safe. OAuth 2.0 clients are used to perform OAuth 2.0 and OpenID Connect flows. Usually, OAuth 2.0 clients are generated for applications which want to consume your OAuth 2.0 or OpenID Connect capabilities. * @summary Patch OAuth 2.0 Client * @param {OAuth2ApiPatchOAuth2ClientRequest} requestParameters Request parameters. * @param {*} [options] Override http request option. * @throws {RequiredError} */ patchOAuth2Client(requestParameters: OAuth2ApiPatchOAuth2ClientRequest, options?: RawAxiosRequestConfig): Promise>; /** * This is the device user verification endpoint. The user is redirected here when trying to log in using the device flow. * @summary OAuth 2.0 Device Verification Endpoint * @param {*} [options] Override http request option. * @throws {RequiredError} */ performOAuth2DeviceVerificationFlow(options?: RawAxiosRequestConfig): Promise>; /** * When an authorization code, hybrid, or implicit OAuth 2.0 Flow is initiated, Ory asks the login provider to authenticate the subject and then tell Ory now about it. If the subject authenticated, he/she must now be asked if the OAuth 2.0 Client which initiated the flow should be allowed to access the resources on the subject\'s behalf. The consent challenge is appended to the consent provider\'s URL to which the subject\'s user-agent (browser) is redirected to. The consent provider uses that challenge to fetch information on the OAuth2 request and then tells Ory if the subject accepted or rejected the request. This endpoint tells Ory that the subject has not authorized the OAuth 2.0 client to access resources on his/her behalf. The consent provider must include a reason why the consent was not granted. The response contains a redirect URL which the consent provider should redirect the user-agent to. The default consent provider is available via the Ory Managed Account Experience. To customize the consent provider, please head over to the OAuth 2.0 documentation. * @summary Reject OAuth 2.0 Consent Request * @param {OAuth2ApiRejectOAuth2ConsentRequestRequest} requestParameters Request parameters. * @param {*} [options] Override http request option. * @throws {RequiredError} */ rejectOAuth2ConsentRequest(requestParameters: OAuth2ApiRejectOAuth2ConsentRequestRequest, options?: RawAxiosRequestConfig): Promise>; /** * When an authorization code, hybrid, or implicit OAuth 2.0 Flow is initiated, Ory asks the login provider to authenticate the subject and then tell the Ory OAuth2 Service about it. The authentication challenge is appended to the login provider URL to which the subject\'s user-agent (browser) is redirected to. The login provider uses that challenge to fetch information on the OAuth2 request and then accept or reject the requested authentication process. This endpoint tells Ory that the subject has not authenticated and includes a reason why the authentication was denied. The response contains a redirect URL which the login provider should redirect the user-agent to. * @summary Reject OAuth 2.0 Login Request * @param {OAuth2ApiRejectOAuth2LoginRequestRequest} requestParameters Request parameters. * @param {*} [options] Override http request option. * @throws {RequiredError} */ rejectOAuth2LoginRequest(requestParameters: OAuth2ApiRejectOAuth2LoginRequestRequest, options?: RawAxiosRequestConfig): Promise>; /** * When a user or an application requests Ory OAuth 2.0 to remove the session state of a subject, this endpoint is used to deny that logout request. No HTTP request body is required. The response is empty as the logout provider has to chose what action to perform next. * @summary Reject OAuth 2.0 Session Logout Request * @param {OAuth2ApiRejectOAuth2LogoutRequestRequest} requestParameters Request parameters. * @param {*} [options] Override http request option. * @throws {RequiredError} */ rejectOAuth2LogoutRequest(requestParameters: OAuth2ApiRejectOAuth2LogoutRequestRequest, options?: RawAxiosRequestConfig): Promise>; /** * This endpoint revokes a subject\'s granted consent sessions and invalidates all associated OAuth 2.0 Access Tokens. You may also only revoke sessions for a specific OAuth 2.0 Client ID. * @summary Revoke OAuth 2.0 Consent Sessions of a Subject * @param {OAuth2ApiRevokeOAuth2ConsentSessionsRequest} requestParameters Request parameters. * @param {*} [options] Override http request option. * @throws {RequiredError} */ revokeOAuth2ConsentSessions(requestParameters?: OAuth2ApiRevokeOAuth2ConsentSessionsRequest, options?: RawAxiosRequestConfig): Promise>; /** * This endpoint invalidates authentication sessions. After revoking the authentication session(s), the subject has to re-authenticate at the Ory OAuth2 Provider. This endpoint does not invalidate any tokens. If you send the subject in a query param, all authentication sessions that belong to that subject are revoked. No OpenID Connect Front- or Back-channel logout is performed in this case. Alternatively, you can send a SessionID via `sid` query param, in which case, only the session that is connected to that SessionID is revoked. OpenID Connect Back-channel logout is performed in this case. When using Ory for the identity provider, the login provider will also invalidate the session cookie. * @summary Revokes OAuth 2.0 Login Sessions by either a Subject or a SessionID * @param {OAuth2ApiRevokeOAuth2LoginSessionsRequest} requestParameters Request parameters. * @param {*} [options] Override http request option. * @throws {RequiredError} */ revokeOAuth2LoginSessions(requestParameters?: OAuth2ApiRevokeOAuth2LoginSessionsRequest, options?: RawAxiosRequestConfig): Promise>; /** * Revoking a token (both access and refresh) means that the tokens will be invalid. A revoked access token can no longer be used to make access requests, and a revoked refresh token can no longer be used to refresh an access token. Revoking a refresh token also invalidates the access token that was created with it. A token may only be revoked by the client the token was generated for. * @summary Revoke OAuth 2.0 Access or Refresh Token * @param {OAuth2ApiRevokeOAuth2TokenRequest} requestParameters Request parameters. * @param {*} [options] Override http request option. * @throws {RequiredError} */ revokeOAuth2Token(requestParameters: OAuth2ApiRevokeOAuth2TokenRequest, options?: RawAxiosRequestConfig): Promise>; /** * Replaces an existing OAuth 2.0 Client with the payload you send. If you pass `client_secret` the secret is used, otherwise the existing secret is used. If set, the secret is echoed in the response. It is not possible to retrieve it later on. OAuth 2.0 Clients are used to perform OAuth 2.0 and OpenID Connect flows. Usually, OAuth 2.0 clients are generated for applications which want to consume your OAuth 2.0 or OpenID Connect capabilities. * @summary Set OAuth 2.0 Client * @param {OAuth2ApiSetOAuth2ClientRequest} requestParameters Request parameters. * @param {*} [options] Override http request option. * @throws {RequiredError} */ setOAuth2Client(requestParameters: OAuth2ApiSetOAuth2ClientRequest, options?: RawAxiosRequestConfig): Promise>; /** * Set lifespans of different token types issued for this OAuth 2.0 client. Does not modify other fields. * @summary Set OAuth2 Client Token Lifespans * @param {OAuth2ApiSetOAuth2ClientLifespansRequest} requestParameters Request parameters. * @param {*} [options] Override http request option. * @throws {RequiredError} */ setOAuth2ClientLifespans(requestParameters: OAuth2ApiSetOAuth2ClientLifespansRequest, options?: RawAxiosRequestConfig): Promise>; /** * Use this endpoint to establish a trust relationship for a JWT issuer to perform JSON Web Token (JWT) Profile for OAuth 2.0 Client Authentication and Authorization Grants [RFC7523](https://datatracker.ietf.org/doc/html/rfc7523). * @summary Trust OAuth2 JWT Bearer Grant Type Issuer * @param {OAuth2ApiTrustOAuth2JwtGrantIssuerRequest} requestParameters Request parameters. * @param {*} [options] Override http request option. * @throws {RequiredError} */ trustOAuth2JwtGrantIssuer(requestParameters?: OAuth2ApiTrustOAuth2JwtGrantIssuerRequest, options?: RawAxiosRequestConfig): Promise>; } /** * OidcApi - axios parameter creator */ export declare const OidcApiAxiosParamCreator: (configuration?: Configuration) => { /** * This endpoint behaves like the administrative counterpart (`createOAuth2Client`) but is capable of facing the public internet directly and can be used in self-service. It implements the OpenID Connect Dynamic Client Registration Protocol. This feature needs to be enabled in the configuration. This endpoint is disabled by default. It can be enabled by an administrator. Please note that using this endpoint you are not able to choose the `client_secret` nor the `client_id` as those values will be server generated when specifying `token_endpoint_auth_method` as `client_secret_basic` or `client_secret_post`. The `client_secret` will be returned in the response and you will not be able to retrieve it later on. Write the secret down and keep it somewhere safe. * @summary Register OAuth2 Client using OpenID Dynamic Client Registration * @param {OAuth2Client} oAuth2Client Dynamic Client Registration Request Body * @param {*} [options] Override http request option. * @throws {RequiredError} */ createOidcDynamicClient: (oAuth2Client: OAuth2Client, options?: RawAxiosRequestConfig) => Promise; /** * This endpoint creates a verifiable credential that attests that the user authenticated with the provided access token owns a certain public/private key pair. More information can be found at https://openid.net/specs/openid-connect-userinfo-vc-1_0.html. * @summary Issues a Verifiable Credential * @param {CreateVerifiableCredentialRequestBody} [createVerifiableCredentialRequestBody] * @param {*} [options] Override http request option. * @throws {RequiredError} */ createVerifiableCredential: (createVerifiableCredentialRequestBody?: CreateVerifiableCredentialRequestBody, options?: RawAxiosRequestConfig) => Promise; /** * This endpoint behaves like the administrative counterpart (`deleteOAuth2Client`) but is capable of facing the public internet directly and can be used in self-service. It implements the OpenID Connect Dynamic Client Registration Protocol. This feature needs to be enabled in the configuration. This endpoint is disabled by default. It can be enabled by an administrator. To use this endpoint, you will need to present the client\'s authentication credentials. If the OAuth2 Client uses the Token Endpoint Authentication Method `client_secret_post`, you need to present the client secret in the URL query. If it uses `client_secret_basic`, present the Client ID and the Client Secret in the Authorization header. OAuth 2.0 clients are used to perform OAuth 2.0 and OpenID Connect flows. Usually, OAuth 2.0 clients are generated for applications which want to consume your OAuth 2.0 or OpenID Connect capabilities. * @summary Delete OAuth 2.0 Client using the OpenID Dynamic Client Registration Management Protocol * @param {string} id The id of the OAuth 2.0 Client. * @param {*} [options] Override http request option. * @throws {RequiredError} */ deleteOidcDynamicClient: (id: string, options?: RawAxiosRequestConfig) => Promise; /** * A mechanism for an OpenID Connect Relying Party to discover the End-User\'s OpenID Provider and obtain information needed to interact with it, including its OAuth 2.0 endpoint locations. Popular libraries for OpenID Connect clients include oidc-client-js (JavaScript), go-oidc (Golang), and others. For a full list of clients go here: https://openid.net/developers/certified/ * @summary OpenID Connect Discovery * @param {*} [options] Override http request option. * @throws {RequiredError} */ discoverOidcConfiguration: (options?: RawAxiosRequestConfig) => Promise; /** * This endpoint behaves like the administrative counterpart (`getOAuth2Client`) but is capable of facing the public internet directly and can be used in self-service. It implements the OpenID Connect Dynamic Client Registration Protocol. To use this endpoint, you will need to present the client\'s authentication credentials. If the OAuth2 Client uses the Token Endpoint Authentication Method `client_secret_post`, you need to present the client secret in the URL query. If it uses `client_secret_basic`, present the Client ID and the Client Secret in the Authorization header. * @summary Get OAuth2 Client using OpenID Dynamic Client Registration * @param {string} id The id of the OAuth 2.0 Client. * @param {*} [options] Override http request option. * @throws {RequiredError} */ getOidcDynamicClient: (id: string, options?: RawAxiosRequestConfig) => Promise; /** * This endpoint returns the payload of the ID Token, including `session.id_token` values, of the provided OAuth 2.0 Access Token\'s consent request. In the case of authentication error, a WWW-Authenticate header might be set in the response with more information about the error. See [the spec](https://datatracker.ietf.org/doc/html/rfc6750#section-3) for more details about header format. * @summary OpenID Connect Userinfo * @param {*} [options] Override http request option. * @throws {RequiredError} */ getOidcUserInfo: (options?: RawAxiosRequestConfig) => Promise; /** * This endpoint initiates and completes user logout at the Ory OAuth2 & OpenID provider and initiates OpenID Connect Front- / Back-channel logout: https://openid.net/specs/openid-connect-frontchannel-1_0.html https://openid.net/specs/openid-connect-backchannel-1_0.html Back-channel logout is performed asynchronously and does not affect logout flow. * @summary OpenID Connect Front- and Back-channel Enabled Logout * @param {*} [options] Override http request option. * @throws {RequiredError} */ revokeOidcSession: (options?: RawAxiosRequestConfig) => Promise; /** * This endpoint behaves like the administrative counterpart (`setOAuth2Client`) but is capable of facing the public internet directly to be used by third parties. It implements the OpenID Connect Dynamic Client Registration Protocol. This feature is disabled per default. It can be enabled by a system administrator. If you pass `client_secret` the secret is used, otherwise the existing secret is used. If set, the secret is echoed in the response. It is not possible to retrieve it later on. To use this endpoint, you will need to present the client\'s authentication credentials. If the OAuth2 Client uses the Token Endpoint Authentication Method `client_secret_post`, you need to present the client secret in the URL query. If it uses `client_secret_basic`, present the Client ID and the Client Secret in the Authorization header. OAuth 2.0 clients are used to perform OAuth 2.0 and OpenID Connect flows. Usually, OAuth 2.0 clients are generated for applications which want to consume your OAuth 2.0 or OpenID Connect capabilities. * @summary Set OAuth2 Client using OpenID Dynamic Client Registration * @param {string} id OAuth 2.0 Client ID * @param {OAuth2Client} oAuth2Client OAuth 2.0 Client Request Body * @param {*} [options] Override http request option. * @throws {RequiredError} */ setOidcDynamicClient: (id: string, oAuth2Client: OAuth2Client, options?: RawAxiosRequestConfig) => Promise; }; /** * OidcApi - functional programming interface */ export declare const OidcApiFp: (configuration?: Configuration) => { /** * This endpoint behaves like the administrative counterpart (`createOAuth2Client`) but is capable of facing the public internet directly and can be used in self-service. It implements the OpenID Connect Dynamic Client Registration Protocol. This feature needs to be enabled in the configuration. This endpoint is disabled by default. It can be enabled by an administrator. Please note that using this endpoint you are not able to choose the `client_secret` nor the `client_id` as those values will be server generated when specifying `token_endpoint_auth_method` as `client_secret_basic` or `client_secret_post`. The `client_secret` will be returned in the response and you will not be able to retrieve it later on. Write the secret down and keep it somewhere safe. * @summary Register OAuth2 Client using OpenID Dynamic Client Registration * @param {OAuth2Client} oAuth2Client Dynamic Client Registration Request Body * @param {*} [options] Override http request option. * @throws {RequiredError} */ createOidcDynamicClient(oAuth2Client: OAuth2Client, options?: RawAxiosRequestConfig): Promise<(axios?: AxiosInstance, basePath?: string) => AxiosPromise>; /** * This endpoint creates a verifiable credential that attests that the user authenticated with the provided access token owns a certain public/private key pair. More information can be found at https://openid.net/specs/openid-connect-userinfo-vc-1_0.html. * @summary Issues a Verifiable Credential * @param {CreateVerifiableCredentialRequestBody} [createVerifiableCredentialRequestBody] * @param {*} [options] Override http request option. * @throws {RequiredError} */ createVerifiableCredential(createVerifiableCredentialRequestBody?: CreateVerifiableCredentialRequestBody, options?: RawAxiosRequestConfig): Promise<(axios?: AxiosInstance, basePath?: string) => AxiosPromise>; /** * This endpoint behaves like the administrative counterpart (`deleteOAuth2Client`) but is capable of facing the public internet directly and can be used in self-service. It implements the OpenID Connect Dynamic Client Registration Protocol. This feature needs to be enabled in the configuration. This endpoint is disabled by default. It can be enabled by an administrator. To use this endpoint, you will need to present the client\'s authentication credentials. If the OAuth2 Client uses the Token Endpoint Authentication Method `client_secret_post`, you need to present the client secret in the URL query. If it uses `client_secret_basic`, present the Client ID and the Client Secret in the Authorization header. OAuth 2.0 clients are used to perform OAuth 2.0 and OpenID Connect flows. Usually, OAuth 2.0 clients are generated for applications which want to consume your OAuth 2.0 or OpenID Connect capabilities. * @summary Delete OAuth 2.0 Client using the OpenID Dynamic Client Registration Management Protocol * @param {string} id The id of the OAuth 2.0 Client. * @param {*} [options] Override http request option. * @throws {RequiredError} */ deleteOidcDynamicClient(id: string, options?: RawAxiosRequestConfig): Promise<(axios?: AxiosInstance, basePath?: string) => AxiosPromise>; /** * A mechanism for an OpenID Connect Relying Party to discover the End-User\'s OpenID Provider and obtain information needed to interact with it, including its OAuth 2.0 endpoint locations. Popular libraries for OpenID Connect clients include oidc-client-js (JavaScript), go-oidc (Golang), and others. For a full list of clients go here: https://openid.net/developers/certified/ * @summary OpenID Connect Discovery * @param {*} [options] Override http request option. * @throws {RequiredError} */ discoverOidcConfiguration(options?: RawAxiosRequestConfig): Promise<(axios?: AxiosInstance, basePath?: string) => AxiosPromise>; /** * This endpoint behaves like the administrative counterpart (`getOAuth2Client`) but is capable of facing the public internet directly and can be used in self-service. It implements the OpenID Connect Dynamic Client Registration Protocol. To use this endpoint, you will need to present the client\'s authentication credentials. If the OAuth2 Client uses the Token Endpoint Authentication Method `client_secret_post`, you need to present the client secret in the URL query. If it uses `client_secret_basic`, present the Client ID and the Client Secret in the Authorization header. * @summary Get OAuth2 Client using OpenID Dynamic Client Registration * @param {string} id The id of the OAuth 2.0 Client. * @param {*} [options] Override http request option. * @throws {RequiredError} */ getOidcDynamicClient(id: string, options?: RawAxiosRequestConfig): Promise<(axios?: AxiosInstance, basePath?: string) => AxiosPromise>; /** * This endpoint returns the payload of the ID Token, including `session.id_token` values, of the provided OAuth 2.0 Access Token\'s consent request. In the case of authentication error, a WWW-Authenticate header might be set in the response with more information about the error. See [the spec](https://datatracker.ietf.org/doc/html/rfc6750#section-3) for more details about header format. * @summary OpenID Connect Userinfo * @param {*} [options] Override http request option. * @throws {RequiredError} */ getOidcUserInfo(options?: RawAxiosRequestConfig): Promise<(axios?: AxiosInstance, basePath?: string) => AxiosPromise>; /** * This endpoint initiates and completes user logout at the Ory OAuth2 & OpenID provider and initiates OpenID Connect Front- / Back-channel logout: https://openid.net/specs/openid-connect-frontchannel-1_0.html https://openid.net/specs/openid-connect-backchannel-1_0.html Back-channel logout is performed asynchronously and does not affect logout flow. * @summary OpenID Connect Front- and Back-channel Enabled Logout * @param {*} [options] Override http request option. * @throws {RequiredError} */ revokeOidcSession(options?: RawAxiosRequestConfig): Promise<(axios?: AxiosInstance, basePath?: string) => AxiosPromise>; /** * This endpoint behaves like the administrative counterpart (`setOAuth2Client`) but is capable of facing the public internet directly to be used by third parties. It implements the OpenID Connect Dynamic Client Registration Protocol. This feature is disabled per default. It can be enabled by a system administrator. If you pass `client_secret` the secret is used, otherwise the existing secret is used. If set, the secret is echoed in the response. It is not possible to retrieve it later on. To use this endpoint, you will need to present the client\'s authentication credentials. If the OAuth2 Client uses the Token Endpoint Authentication Method `client_secret_post`, you need to present the client secret in the URL query. If it uses `client_secret_basic`, present the Client ID and the Client Secret in the Authorization header. OAuth 2.0 clients are used to perform OAuth 2.0 and OpenID Connect flows. Usually, OAuth 2.0 clients are generated for applications which want to consume your OAuth 2.0 or OpenID Connect capabilities. * @summary Set OAuth2 Client using OpenID Dynamic Client Registration * @param {string} id OAuth 2.0 Client ID * @param {OAuth2Client} oAuth2Client OAuth 2.0 Client Request Body * @param {*} [options] Override http request option. * @throws {RequiredError} */ setOidcDynamicClient(id: string, oAuth2Client: OAuth2Client, options?: RawAxiosRequestConfig): Promise<(axios?: AxiosInstance, basePath?: string) => AxiosPromise>; }; /** * OidcApi - factory interface */ export declare const OidcApiFactory: (configuration?: Configuration, basePath?: string, axios?: AxiosInstance) => { /** * This endpoint behaves like the administrative counterpart (`createOAuth2Client`) but is capable of facing the public internet directly and can be used in self-service. It implements the OpenID Connect Dynamic Client Registration Protocol. This feature needs to be enabled in the configuration. This endpoint is disabled by default. It can be enabled by an administrator. Please note that using this endpoint you are not able to choose the `client_secret` nor the `client_id` as those values will be server generated when specifying `token_endpoint_auth_method` as `client_secret_basic` or `client_secret_post`. The `client_secret` will be returned in the response and you will not be able to retrieve it later on. Write the secret down and keep it somewhere safe. * @summary Register OAuth2 Client using OpenID Dynamic Client Registration * @param {OidcApiCreateOidcDynamicClientRequest} requestParameters Request parameters. * @param {*} [options] Override http request option. * @throws {RequiredError} */ createOidcDynamicClient(requestParameters: OidcApiCreateOidcDynamicClientRequest, options?: RawAxiosRequestConfig): AxiosPromise; /** * This endpoint creates a verifiable credential that attests that the user authenticated with the provided access token owns a certain public/private key pair. More information can be found at https://openid.net/specs/openid-connect-userinfo-vc-1_0.html. * @summary Issues a Verifiable Credential * @param {OidcApiCreateVerifiableCredentialRequest} requestParameters Request parameters. * @param {*} [options] Override http request option. * @throws {RequiredError} */ createVerifiableCredential(requestParameters?: OidcApiCreateVerifiableCredentialRequest, options?: RawAxiosRequestConfig): AxiosPromise; /** * This endpoint behaves like the administrative counterpart (`deleteOAuth2Client`) but is capable of facing the public internet directly and can be used in self-service. It implements the OpenID Connect Dynamic Client Registration Protocol. This feature needs to be enabled in the configuration. This endpoint is disabled by default. It can be enabled by an administrator. To use this endpoint, you will need to present the client\'s authentication credentials. If the OAuth2 Client uses the Token Endpoint Authentication Method `client_secret_post`, you need to present the client secret in the URL query. If it uses `client_secret_basic`, present the Client ID and the Client Secret in the Authorization header. OAuth 2.0 clients are used to perform OAuth 2.0 and OpenID Connect flows. Usually, OAuth 2.0 clients are generated for applications which want to consume your OAuth 2.0 or OpenID Connect capabilities. * @summary Delete OAuth 2.0 Client using the OpenID Dynamic Client Registration Management Protocol * @param {OidcApiDeleteOidcDynamicClientRequest} requestParameters Request parameters. * @param {*} [options] Override http request option. * @throws {RequiredError} */ deleteOidcDynamicClient(requestParameters: OidcApiDeleteOidcDynamicClientRequest, options?: RawAxiosRequestConfig): AxiosPromise; /** * A mechanism for an OpenID Connect Relying Party to discover the End-User\'s OpenID Provider and obtain information needed to interact with it, including its OAuth 2.0 endpoint locations. Popular libraries for OpenID Connect clients include oidc-client-js (JavaScript), go-oidc (Golang), and others. For a full list of clients go here: https://openid.net/developers/certified/ * @summary OpenID Connect Discovery * @param {*} [options] Override http request option. * @throws {RequiredError} */ discoverOidcConfiguration(options?: RawAxiosRequestConfig): AxiosPromise; /** * This endpoint behaves like the administrative counterpart (`getOAuth2Client`) but is capable of facing the public internet directly and can be used in self-service. It implements the OpenID Connect Dynamic Client Registration Protocol. To use this endpoint, you will need to present the client\'s authentication credentials. If the OAuth2 Client uses the Token Endpoint Authentication Method `client_secret_post`, you need to present the client secret in the URL query. If it uses `client_secret_basic`, present the Client ID and the Client Secret in the Authorization header. * @summary Get OAuth2 Client using OpenID Dynamic Client Registration * @param {OidcApiGetOidcDynamicClientRequest} requestParameters Request parameters. * @param {*} [options] Override http request option. * @throws {RequiredError} */ getOidcDynamicClient(requestParameters: OidcApiGetOidcDynamicClientRequest, options?: RawAxiosRequestConfig): AxiosPromise; /** * This endpoint returns the payload of the ID Token, including `session.id_token` values, of the provided OAuth 2.0 Access Token\'s consent request. In the case of authentication error, a WWW-Authenticate header might be set in the response with more information about the error. See [the spec](https://datatracker.ietf.org/doc/html/rfc6750#section-3) for more details about header format. * @summary OpenID Connect Userinfo * @param {*} [options] Override http request option. * @throws {RequiredError} */ getOidcUserInfo(options?: RawAxiosRequestConfig): AxiosPromise; /** * This endpoint initiates and completes user logout at the Ory OAuth2 & OpenID provider and initiates OpenID Connect Front- / Back-channel logout: https://openid.net/specs/openid-connect-frontchannel-1_0.html https://openid.net/specs/openid-connect-backchannel-1_0.html Back-channel logout is performed asynchronously and does not affect logout flow. * @summary OpenID Connect Front- and Back-channel Enabled Logout * @param {*} [options] Override http request option. * @throws {RequiredError} */ revokeOidcSession(options?: RawAxiosRequestConfig): AxiosPromise; /** * This endpoint behaves like the administrative counterpart (`setOAuth2Client`) but is capable of facing the public internet directly to be used by third parties. It implements the OpenID Connect Dynamic Client Registration Protocol. This feature is disabled per default. It can be enabled by a system administrator. If you pass `client_secret` the secret is used, otherwise the existing secret is used. If set, the secret is echoed in the response. It is not possible to retrieve it later on. To use this endpoint, you will need to present the client\'s authentication credentials. If the OAuth2 Client uses the Token Endpoint Authentication Method `client_secret_post`, you need to present the client secret in the URL query. If it uses `client_secret_basic`, present the Client ID and the Client Secret in the Authorization header. OAuth 2.0 clients are used to perform OAuth 2.0 and OpenID Connect flows. Usually, OAuth 2.0 clients are generated for applications which want to consume your OAuth 2.0 or OpenID Connect capabilities. * @summary Set OAuth2 Client using OpenID Dynamic Client Registration * @param {OidcApiSetOidcDynamicClientRequest} requestParameters Request parameters. * @param {*} [options] Override http request option. * @throws {RequiredError} */ setOidcDynamicClient(requestParameters: OidcApiSetOidcDynamicClientRequest, options?: RawAxiosRequestConfig): AxiosPromise; }; /** * Request parameters for createOidcDynamicClient operation in OidcApi. */ export interface OidcApiCreateOidcDynamicClientRequest { /** * Dynamic Client Registration Request Body */ readonly oAuth2Client: OAuth2Client; } /** * Request parameters for createVerifiableCredential operation in OidcApi. */ export interface OidcApiCreateVerifiableCredentialRequest { readonly createVerifiableCredentialRequestBody?: CreateVerifiableCredentialRequestBody; } /** * Request parameters for deleteOidcDynamicClient operation in OidcApi. */ export interface OidcApiDeleteOidcDynamicClientRequest { /** * The id of the OAuth 2.0 Client. */ readonly id: string; } /** * Request parameters for getOidcDynamicClient operation in OidcApi. */ export interface OidcApiGetOidcDynamicClientRequest { /** * The id of the OAuth 2.0 Client. */ readonly id: string; } /** * Request parameters for setOidcDynamicClient operation in OidcApi. */ export interface OidcApiSetOidcDynamicClientRequest { /** * OAuth 2.0 Client ID */ readonly id: string; /** * OAuth 2.0 Client Request Body */ readonly oAuth2Client: OAuth2Client; } /** * OidcApi - object-oriented interface */ export declare class OidcApi extends BaseAPI { /** * This endpoint behaves like the administrative counterpart (`createOAuth2Client`) but is capable of facing the public internet directly and can be used in self-service. It implements the OpenID Connect Dynamic Client Registration Protocol. This feature needs to be enabled in the configuration. This endpoint is disabled by default. It can be enabled by an administrator. Please note that using this endpoint you are not able to choose the `client_secret` nor the `client_id` as those values will be server generated when specifying `token_endpoint_auth_method` as `client_secret_basic` or `client_secret_post`. The `client_secret` will be returned in the response and you will not be able to retrieve it later on. Write the secret down and keep it somewhere safe. * @summary Register OAuth2 Client using OpenID Dynamic Client Registration * @param {OidcApiCreateOidcDynamicClientRequest} requestParameters Request parameters. * @param {*} [options] Override http request option. * @throws {RequiredError} */ createOidcDynamicClient(requestParameters: OidcApiCreateOidcDynamicClientRequest, options?: RawAxiosRequestConfig): Promise>; /** * This endpoint creates a verifiable credential that attests that the user authenticated with the provided access token owns a certain public/private key pair. More information can be found at https://openid.net/specs/openid-connect-userinfo-vc-1_0.html. * @summary Issues a Verifiable Credential * @param {OidcApiCreateVerifiableCredentialRequest} requestParameters Request parameters. * @param {*} [options] Override http request option. * @throws {RequiredError} */ createVerifiableCredential(requestParameters?: OidcApiCreateVerifiableCredentialRequest, options?: RawAxiosRequestConfig): Promise>; /** * This endpoint behaves like the administrative counterpart (`deleteOAuth2Client`) but is capable of facing the public internet directly and can be used in self-service. It implements the OpenID Connect Dynamic Client Registration Protocol. This feature needs to be enabled in the configuration. This endpoint is disabled by default. It can be enabled by an administrator. To use this endpoint, you will need to present the client\'s authentication credentials. If the OAuth2 Client uses the Token Endpoint Authentication Method `client_secret_post`, you need to present the client secret in the URL query. If it uses `client_secret_basic`, present the Client ID and the Client Secret in the Authorization header. OAuth 2.0 clients are used to perform OAuth 2.0 and OpenID Connect flows. Usually, OAuth 2.0 clients are generated for applications which want to consume your OAuth 2.0 or OpenID Connect capabilities. * @summary Delete OAuth 2.0 Client using the OpenID Dynamic Client Registration Management Protocol * @param {OidcApiDeleteOidcDynamicClientRequest} requestParameters Request parameters. * @param {*} [options] Override http request option. * @throws {RequiredError} */ deleteOidcDynamicClient(requestParameters: OidcApiDeleteOidcDynamicClientRequest, options?: RawAxiosRequestConfig): Promise>; /** * A mechanism for an OpenID Connect Relying Party to discover the End-User\'s OpenID Provider and obtain information needed to interact with it, including its OAuth 2.0 endpoint locations. Popular libraries for OpenID Connect clients include oidc-client-js (JavaScript), go-oidc (Golang), and others. For a full list of clients go here: https://openid.net/developers/certified/ * @summary OpenID Connect Discovery * @param {*} [options] Override http request option. * @throws {RequiredError} */ discoverOidcConfiguration(options?: RawAxiosRequestConfig): Promise>; /** * This endpoint behaves like the administrative counterpart (`getOAuth2Client`) but is capable of facing the public internet directly and can be used in self-service. It implements the OpenID Connect Dynamic Client Registration Protocol. To use this endpoint, you will need to present the client\'s authentication credentials. If the OAuth2 Client uses the Token Endpoint Authentication Method `client_secret_post`, you need to present the client secret in the URL query. If it uses `client_secret_basic`, present the Client ID and the Client Secret in the Authorization header. * @summary Get OAuth2 Client using OpenID Dynamic Client Registration * @param {OidcApiGetOidcDynamicClientRequest} requestParameters Request parameters. * @param {*} [options] Override http request option. * @throws {RequiredError} */ getOidcDynamicClient(requestParameters: OidcApiGetOidcDynamicClientRequest, options?: RawAxiosRequestConfig): Promise>; /** * This endpoint returns the payload of the ID Token, including `session.id_token` values, of the provided OAuth 2.0 Access Token\'s consent request. In the case of authentication error, a WWW-Authenticate header might be set in the response with more information about the error. See [the spec](https://datatracker.ietf.org/doc/html/rfc6750#section-3) for more details about header format. * @summary OpenID Connect Userinfo * @param {*} [options] Override http request option. * @throws {RequiredError} */ getOidcUserInfo(options?: RawAxiosRequestConfig): Promise>; /** * This endpoint initiates and completes user logout at the Ory OAuth2 & OpenID provider and initiates OpenID Connect Front- / Back-channel logout: https://openid.net/specs/openid-connect-frontchannel-1_0.html https://openid.net/specs/openid-connect-backchannel-1_0.html Back-channel logout is performed asynchronously and does not affect logout flow. * @summary OpenID Connect Front- and Back-channel Enabled Logout * @param {*} [options] Override http request option. * @throws {RequiredError} */ revokeOidcSession(options?: RawAxiosRequestConfig): Promise>; /** * This endpoint behaves like the administrative counterpart (`setOAuth2Client`) but is capable of facing the public internet directly to be used by third parties. It implements the OpenID Connect Dynamic Client Registration Protocol. This feature is disabled per default. It can be enabled by a system administrator. If you pass `client_secret` the secret is used, otherwise the existing secret is used. If set, the secret is echoed in the response. It is not possible to retrieve it later on. To use this endpoint, you will need to present the client\'s authentication credentials. If the OAuth2 Client uses the Token Endpoint Authentication Method `client_secret_post`, you need to present the client secret in the URL query. If it uses `client_secret_basic`, present the Client ID and the Client Secret in the Authorization header. OAuth 2.0 clients are used to perform OAuth 2.0 and OpenID Connect flows. Usually, OAuth 2.0 clients are generated for applications which want to consume your OAuth 2.0 or OpenID Connect capabilities. * @summary Set OAuth2 Client using OpenID Dynamic Client Registration * @param {OidcApiSetOidcDynamicClientRequest} requestParameters Request parameters. * @param {*} [options] Override http request option. * @throws {RequiredError} */ setOidcDynamicClient(requestParameters: OidcApiSetOidcDynamicClientRequest, options?: RawAxiosRequestConfig): Promise>; } /** * WellknownApi - axios parameter creator */ export declare const WellknownApiAxiosParamCreator: (configuration?: Configuration) => { /** * This endpoint returns JSON Web Keys required to verifying OpenID Connect ID Tokens and, if enabled, OAuth 2.0 JWT Access Tokens. This endpoint can be used with client libraries like [node-jwks-rsa](https://github.com/auth0/node-jwks-rsa) among others. Adding custom keys requires first creating a keyset via the createJsonWebKeySet operation, and then configuring the webfinger.jwks.broadcast_keys configuration value to include the keyset name. * @summary Discover Well-Known JSON Web Keys * @param {*} [options] Override http request option. * @throws {RequiredError} */ discoverJsonWebKeys: (options?: RawAxiosRequestConfig) => Promise; }; /** * WellknownApi - functional programming interface */ export declare const WellknownApiFp: (configuration?: Configuration) => { /** * This endpoint returns JSON Web Keys required to verifying OpenID Connect ID Tokens and, if enabled, OAuth 2.0 JWT Access Tokens. This endpoint can be used with client libraries like [node-jwks-rsa](https://github.com/auth0/node-jwks-rsa) among others. Adding custom keys requires first creating a keyset via the createJsonWebKeySet operation, and then configuring the webfinger.jwks.broadcast_keys configuration value to include the keyset name. * @summary Discover Well-Known JSON Web Keys * @param {*} [options] Override http request option. * @throws {RequiredError} */ discoverJsonWebKeys(options?: RawAxiosRequestConfig): Promise<(axios?: AxiosInstance, basePath?: string) => AxiosPromise>; }; /** * WellknownApi - factory interface */ export declare const WellknownApiFactory: (configuration?: Configuration, basePath?: string, axios?: AxiosInstance) => { /** * This endpoint returns JSON Web Keys required to verifying OpenID Connect ID Tokens and, if enabled, OAuth 2.0 JWT Access Tokens. This endpoint can be used with client libraries like [node-jwks-rsa](https://github.com/auth0/node-jwks-rsa) among others. Adding custom keys requires first creating a keyset via the createJsonWebKeySet operation, and then configuring the webfinger.jwks.broadcast_keys configuration value to include the keyset name. * @summary Discover Well-Known JSON Web Keys * @param {*} [options] Override http request option. * @throws {RequiredError} */ discoverJsonWebKeys(options?: RawAxiosRequestConfig): AxiosPromise; }; /** * WellknownApi - object-oriented interface */ export declare class WellknownApi extends BaseAPI { /** * This endpoint returns JSON Web Keys required to verifying OpenID Connect ID Tokens and, if enabled, OAuth 2.0 JWT Access Tokens. This endpoint can be used with client libraries like [node-jwks-rsa](https://github.com/auth0/node-jwks-rsa) among others. Adding custom keys requires first creating a keyset via the createJsonWebKeySet operation, and then configuring the webfinger.jwks.broadcast_keys configuration value to include the keyset name. * @summary Discover Well-Known JSON Web Keys * @param {*} [options] Override http request option. * @throws {RequiredError} */ discoverJsonWebKeys(options?: RawAxiosRequestConfig): Promise>; }