unleash-server
Version:
Unleash is an enterprise ready feature toggles service. It provides different strategies for handling feature toggles.
30 lines (29 loc) • 864 B
TypeScript
import { FromSchema } from 'json-schema-to-ts';
export declare const createUserSchema: {
readonly $id: "#/components/schemas/createUserSchema";
readonly type: "object";
readonly additionalProperties: false;
readonly required: readonly ["rootRole"];
readonly properties: {
readonly username: {
readonly type: "string";
};
readonly email: {
readonly type: "string";
};
readonly name: {
readonly type: "string";
};
readonly password: {
readonly type: "string";
};
readonly rootRole: {
readonly type: "number";
};
readonly sendEmail: {
readonly type: "boolean";
};
};
readonly components: {};
};
export declare type CreateUserSchema = FromSchema<typeof createUserSchema>;