File tree Expand file tree Collapse file tree 2 files changed +2
-3
lines changed
Expand file tree Collapse file tree 2 files changed +2
-3
lines changed Original file line number Diff line number Diff line change 11import type { AnyObject , SearchParams , SearchResult } from './lib/types.ts'
22import type { Index } from './collection.ts'
3+ import type { OramaCloudSearchParams } from './lib/types.ts'
34
45import { CollectionManager } from './collection.ts'
56
6- export type OramaCloudSearchParams = Omit < SearchParams , 'indexes' > & { datasources : string [ ] }
7-
87export interface ProjectManagerConfig {
98 cluster ?: {
109 writerURL ?: string
Original file line number Diff line number Diff line change @@ -84,7 +84,7 @@ export type SearchParams = {
8484 groupBy ?: { properties : string [ ] ; max_results ?: number ; sortBy ?: GroupsSortBy }
8585}
8686
87- export type CloudSearchParams = Omit < SearchParams , 'indexes' > & { datasourceIDs ?: string [ ] }
87+ export type OramaCloudSearchParams = Omit < SearchParams , 'indexes' > & { datasources ?: string [ ] }
8888
8989export type Hit < T = AnyObject > = {
9090 id : string
You can’t perform that action at this time.
0 commit comments