mirror of
https://github.com/Unleash/unleash.git
synced 2025-02-19 00:15:43 +01:00
30 lines
959 B
TypeScript
30 lines
959 B
TypeScript
/**
|
|
* Generated by Orval
|
|
* Do not edit manually.
|
|
* See `gen:api` script in package.json
|
|
*/
|
|
import type { FrontendApiClientSchemaStarted } from './frontendApiClientSchemaStarted';
|
|
|
|
/**
|
|
* Frontend SDK client registration information
|
|
*/
|
|
export interface FrontendApiClientSchema {
|
|
/** Name of the application using Unleash */
|
|
appName: string;
|
|
/**
|
|
* deprecated
|
|
* @deprecated
|
|
*/
|
|
environment?: string;
|
|
/** Instance id for this application (typically hostname, podId or similar) */
|
|
instanceId?: string;
|
|
/** At which interval, in milliseconds, will this client be expected to send metrics */
|
|
interval: number;
|
|
/** Optional field that describes the sdk version (name:version) */
|
|
sdkVersion?: string;
|
|
/** When this client started. Should be reported as ISO8601 time. */
|
|
started: FrontendApiClientSchemaStarted;
|
|
/** List of strategies implemented by this application */
|
|
strategies: string[];
|
|
}
|