unleash-server
Version:
Unleash is an enterprise ready feature flag service. It provides different strategies for handling feature flags.
23 lines • 1.14 kB
TypeScript
import type { FromSchema } from 'json-schema-to-ts';
export declare const telemetrySettingsSchema: {
readonly $id: "#/components/schemas/telemetrySettingsSchema";
readonly type: "object";
readonly additionalProperties: false;
readonly required: readonly ["versionInfoCollectionEnabled", "featureInfoCollectionEnabled"];
readonly description: "Contains information about which settings are configured for version info collection and feature usage collection.";
readonly properties: {
readonly versionInfoCollectionEnabled: {
readonly type: "boolean";
readonly description: "Whether collection of version info is enabled/active.";
readonly example: true;
};
readonly featureInfoCollectionEnabled: {
readonly type: "boolean";
readonly description: "Whether collection of feature usage metrics is enabled/active.";
readonly example: true;
};
};
readonly components: {};
};
export type TelemetrySettingsSchema = FromSchema<typeof telemetrySettingsSchema>;
//# sourceMappingURL=telemetry-settings-schema.d.ts.map