quallaa-cli
Version:
Sets up core infrastructure services for AI-assisted development
42 lines • 1.13 kB
TypeScript
import { ServiceSetupResult } from '../types';
export declare function setupTypesense(): Promise<ServiceSetupResult>;
export declare function createTypesenseCollection(collectionName: string, schema: any): Promise<void>;
export declare const defaultSchemas: {
contacts: {
fields: ({
name: string;
type: string;
optional?: undefined;
} | {
name: string;
type: string;
optional: boolean;
})[];
default_sorting_field: string;
};
posts: {
fields: ({
name: string;
type: string;
optional?: undefined;
} | {
name: string;
type: string;
optional: boolean;
})[];
default_sorting_field: string;
};
products: {
fields: ({
name: string;
type: string;
optional?: undefined;
} | {
name: string;
type: string;
optional: boolean;
})[];
default_sorting_field: string;
};
};
//# sourceMappingURL=typesense.d.ts.map