File

libs/ngx-pfe/ngx-http-token/http-token.model.ts

Deprecated

true

Index

Properties

Properties

applicationId
applicationId: string
Type : string
Optional
endpoint
endpoint: string
Type : string
Optional
tenant
tenant: string
Type : string
Optional
whitelistedDomains
whitelistedDomains: string[]
Type : string[]
import { InjectionToken, Provider } from '@angular/core';

export const HTTP_TOKEN_CONFIGURATION: InjectionToken<HttpTokenConfig> = new InjectionToken<HttpTokenConfig>('HTTP_TOKEN_CONFIGURATION');

/**
 * @deprecated true
 * @deprecationMessage Use storeValue instead
 */
export interface HttpTokenModuleConfig {
  httpTokenServiceProvider?: Provider;
  httpTokenConfigProvider: Provider;
}

/**
 * @deprecated true
 * @deprecationMessage Use storeValue instead
 */
export interface HttpTokenConfig {
  whitelistedDomains: string[];
  endpoint?: string;
  tenant?: string;
  applicationId?: string;
}

/**
 * @deprecated true
 * @deprecationMessage Use storeValue instead
 */
export interface GetTokenResponse {
  token: string;
}

results matching ""

    No results matching ""