@vendure/cli
Version:
A modern, headless ecommerce framework
25 lines (24 loc) • 685 B
TypeScript
export interface AddOperationOptions {
plugin?: string;
entity?: string;
service?: string;
jobQueue?: string | boolean;
codegen?: string | boolean;
apiExtension?: string | boolean;
uiExtensions?: string | boolean;
config?: string;
name?: string;
queryName?: string;
mutationName?: string;
selectedService?: string;
selectedPlugin?: string;
customFields?: boolean;
translatable?: boolean;
type?: string;
selectedEntity?: string;
}
export interface AddOperationResult {
success: boolean;
message: string;
}
export declare function performAddOperation(options: AddOperationOptions): Promise<AddOperationResult>;