/** * Configuration for passing env variables to services. */ export interface WebConfiguration { /** URL for the subapp's API route */ appApiUrl: string; /** Secret passed from subapp to Launchpad for verification */ appIdentity: string; /** Descriptive name of the subapp */ appName: string; } /** * Configuration for setting up Onguard subapps Front-end API Authe services. */ export interface LaunchpadWebConfiguration extends WebConfiguration { apiDateFormat: 'YYYY-MM-DDTHH:mm:ss.SSSZ'; appSsoIdentity: string; ssoUrl: 'http://localhost:4201'; ssoLoginRoute: '/login'; }