unleash-server
Version:
Unleash is an enterprise ready feature toggles service. It provides different strategies for handling feature toggles.
26 lines (25 loc) • 833 B
TypeScript
import { FromSchema } from 'json-schema-to-ts';
import { ApiTokenType } from '../../types/models/api-token';
export declare const edgeTokenSchema: {
readonly $id: "#/components/schemas/edgeTokenSchema";
readonly type: "object";
readonly additionalProperties: false;
readonly required: readonly ["token", "projects", "type"];
readonly properties: {
readonly projects: {
readonly type: "array";
readonly items: {
readonly type: "string";
};
};
readonly type: {
readonly type: "string";
readonly enum: ApiTokenType[];
};
readonly token: {
readonly type: "string";
};
};
readonly components: {};
};
export declare type EdgeTokenSchema = FromSchema<typeof edgeTokenSchema>;