mirror of
https://github.com/Unleash/unleash.git
synced 2025-01-06 00:07:44 +01:00
867a514d1f
We've had requests from customers that use RS512 as the default signing algorithm in their OIDC server deployment. This PR adds that as a config variable to the OIDC form.
29 lines
974 B
TypeScript
29 lines
974 B
TypeScript
/**
|
|
* Generated by Orval
|
|
* Do not edit manually.
|
|
* See `gen:api` script in package.json
|
|
*/
|
|
import type { DateSchema } from './dateSchema';
|
|
import type { ClientMetricsEnvSchemaVariants } from './clientMetricsEnvSchemaVariants';
|
|
|
|
/**
|
|
* Used for reporting feature evaluation results from SDKs
|
|
*/
|
|
export interface ClientMetricsEnvSchema {
|
|
/** Name of the feature checked by the SDK */
|
|
featureName: string;
|
|
/** The name of the application the SDK is being used in */
|
|
appName: string;
|
|
/** Which environment the SDK is being used in */
|
|
environment: string;
|
|
/** The start of the time window these metrics are valid for. The window is 1 hour wide */
|
|
timestamp?: DateSchema;
|
|
/** How many times the toggle evaluated to true */
|
|
yes?: number;
|
|
/** How many times the toggle evaluated to false */
|
|
no?: number;
|
|
/** How many times each variant was returned */
|
|
variants?: ClientMetricsEnvSchemaVariants;
|
|
[key: string]: any;
|
|
}
|