// noinspection ES6PreferShortImport import {FindSubQueryStatic} from './externals/scylla.interface'; export interface EntityOptions { key?: Array>; indexes?: Array | string[]; options?: EntityExtraOptions; methods?: {[index: string]: Function}; table_name?: string; materialized_views?: {[index: string]: MaterializeViewStatic}; clustering_order?: {[index: string]: 'desc' | 'asc'}; custom_indexes?: Partial[]; es_index_mapping?: { discover?: string; properties?: EsIndexPropertiesOptionsStatic; }; graph_mapping?: Partial>; [index: string]: any; } export type ClusterOrder = {[P in keyof T]?: 'desc' | 'asc'}; export interface MaterializeViewStatic { key: Array>; filter?: FilterOptions; select?: Array; clustering_order?: ClusterOrder; } export interface EntityExtraOptions { timestamps?: { createdAt?: string; updatedAt?: string; }; versions?: {key: string}; } type FilterOptions = Partial<{[P in keyof T]: FindSubQueryStatic}>; interface CustomIndexOptions { on: string; using: any; options: any; } type EsIndexPropertiesOptionsStatic = { [P in keyof T]?: {type?: string; index?: string}; }; interface GraphMappingOptionsStatic { relations: { follow?: 'MULTI' | 'SIMPLE' | 'MANY2ONE' | 'ONE2MANY' | 'ONE2ONE'; mother?: 'MULTI' | 'SIMPLE' | 'MANY2ONE' | 'ONE2MANY' | 'ONE2ONE'; }; properties: { [index: string]: { type?: JanusGraphDataTypes; cardinality?: 'SINGLE' | 'LIST' | 'SET'; }; }; indexes: { [index: string]: { type?: 'Composite' | 'Mixed' | 'VertexCentric'; keys?: Array; label?: 'follow'; order?: 'incr' | 'decr'; unique?: boolean; direction?: 'BOTH' | 'IN' | 'OUT'; }; }; } // noinspection SpellCheckingInspection type JanusGraphDataTypes = | 'Integer' | 'String' | 'Character' | 'Boolean' | 'Byte' | 'Short' | 'Long' | 'Float' | 'Double' | 'Date' | 'Geoshape' | 'UUID';