palette-sdk-typescript
Version:
TypeScript SDK for Spectro Cloud Palette API
36 lines • 1.98 kB
TypeScript
/**
* Copyright (c) Spectro Cloud
* SPDX-License-Identifier: Apache-2.0
*/
/**
* Generated by orval v7.17.0 🍺
* Do not edit manually.
* Palette APIs - 4.8
* OpenAPI spec version: v1
*/
import type { OpenIDProviderMetadataResponseIdTokenSigningAlgValuesSupported } from './openIDProviderMetadataResponseIdTokenSigningAlgValuesSupported';
export type OpenIDProviderMetadataResponse = {
/** REQUIRED. URL of the OP's OAuth 2.0 Authorization Endpoint */
authorization_endpoint?: string;
/** RECOMMENDED. JSON array containing a list of the Claim Names of the Claims that the OpenID Provider MAY be able to supply values for */
claims_supported?: string;
/** REQUIRED. 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?: OpenIDProviderMetadataResponseIdTokenSigningAlgValuesSupported;
/** REQUIRED. URL using the https scheme with no query or fragment component that the OP asserts as its Issuer Identifier */
issuer?: string;
/** REQUIRED. URL of the OP's JSON Web Key Set [JWK] document. */
jwks_uri?: string;
/** RECOMMENDED. URL of the OP's Dynamic Client Registration Endpoint */
registration_endpoint?: string;
/** REQUIRED. JSON array containing a list of the OAuth 2.0 response_type values that this OP supports */
response_types_supported?: string;
/** RECOMMENDED. JSON array containing a list of the OAuth 2.0 [RFC6749] scope values that this server supports */
scopes_supported?: string;
/** REQUIRED. JSON array containing a list of the Subject Identifier types that this OP supports */
subject_types_supported?: string;
/** URL of the OP's OAuth 2.0 Token Endpoint */
token_endpoint?: string;
/** RECOMMENDED. URL of the OP's UserInfo Endpoint */
userinfo_endpoint?: string;
};
//# sourceMappingURL=openIDProviderMetadataResponse.d.ts.map