1
0
mirror of https://github.com/Unleash/unleash.git synced 2025-06-27 01:19:00 +02:00
unleash.unleash/frontend/src/openapi/models/stateSchema.ts
Tymoteusz Czech 3bb09c5ce4
Disable and enable strategies - frontend (#3582)
Signed-off-by: andreas-unleash <andreas@getunleash.ai>
Co-authored-by: andreas-unleash <andreas@getunleash.ai>
2023-04-26 11:41:24 +02:00

37 lines
1.4 KiB
TypeScript

/**
* Generated by Orval
* Do not edit manually.
* See `gen:api` script in package.json
*/
import type { FeatureSchema } from './featureSchema';
import type { StrategySchema } from './strategySchema';
import type { TagSchema } from './tagSchema';
import type { TagTypeSchema } from './tagTypeSchema';
import type { FeatureTagSchema } from './featureTagSchema';
import type { ProjectSchema } from './projectSchema';
import type { FeatureStrategySchema } from './featureStrategySchema';
import type { FeatureEnvironmentSchema } from './featureEnvironmentSchema';
import type { EnvironmentSchema } from './environmentSchema';
import type { SegmentSchema } from './segmentSchema';
import type { FeatureStrategySegmentSchema } from './featureStrategySegmentSchema';
/**
* The state of the application used by export/import APIs which are deprecated in favor of the more fine grained /api/admin/export and /api/admin/import APIs
* @deprecated
*/
export interface StateSchema {
version: number;
features?: FeatureSchema[];
strategies?: StrategySchema[];
tags?: TagSchema[];
tagTypes?: TagTypeSchema[];
featureTags?: FeatureTagSchema[];
projects?: ProjectSchema[];
featureStrategies?: FeatureStrategySchema[];
featureEnvironments?: FeatureEnvironmentSchema[];
environments?: EnvironmentSchema[];
segments?: SegmentSchema[];
featureStrategySegments?: FeatureStrategySegmentSchema[];
[key: string]: any;
}