Skip to content

Commit

Permalink
fix: add query options to exports
Browse files Browse the repository at this point in the history
  • Loading branch information
CahidArda committed Dec 26, 2024
1 parent a3ea9a7 commit 9fe82ca
Show file tree
Hide file tree
Showing 3 changed files with 3 additions and 1 deletion.
2 changes: 1 addition & 1 deletion src/commands/client/query/query-single/index.test.ts
Original file line number Diff line number Diff line change
@@ -1,5 +1,5 @@
import { afterAll, describe, expect, test } from "bun:test";
import { QueryCommand, QueryMode, UpsertCommand, WeightingStrategy } from "@commands/index";
import { QueryCommand, UpsertCommand, WeightingStrategy } from "@commands/index";
import {
Index,
awaitUntilIndexed,
Expand Down
1 change: 1 addition & 0 deletions src/platforms/cloudflare.ts
Original file line number Diff line number Diff line change
Expand Up @@ -123,3 +123,4 @@ export class Index<TIndexMetadata extends Dict = Dict> extends core.Index<TIndex
}

export { type Requester, type UpstashRequest, type UpstashResponse } from "@http";
export { QueryMode, FusionAlgorithm, WeightingStrategy } from "@commands/client/query";
1 change: 1 addition & 0 deletions src/platforms/nodejs.ts
Original file line number Diff line number Diff line change
Expand Up @@ -135,3 +135,4 @@ export class Index<TIndexMetadata extends Dict = Dict> extends core.Index<TIndex
}

export { type UpstashRequest, type UpstashResponse, type Requester } from "@http";
export { QueryMode, FusionAlgorithm, WeightingStrategy } from "@commands/client/query";

0 comments on commit 9fe82ca

Please sign in to comment.