Skip to content

Commit

Permalink
feat: export filter sorter enum (#43)
Browse files Browse the repository at this point in the history
  • Loading branch information
shaddollxz authored Aug 14, 2024
1 parent a5a2a29 commit 355e61e
Show file tree
Hide file tree
Showing 2 changed files with 8 additions and 2 deletions.
2 changes: 1 addition & 1 deletion deno.json
Original file line number Diff line number Diff line change
@@ -1,7 +1,7 @@
{
"$schema": "https://deno.land/x/deno/cli/schemas/config-file.v1.json",
"name": "@byzanteam/taihaku-schemas",
"version": "0.5.0",
"version": "0.5.1",
"exports": "./types/mod.ts",
"compilerOptions": {
"strict": true,
Expand Down
8 changes: 7 additions & 1 deletion types/persistence_schema/mod.ts
Original file line number Diff line number Diff line change
Expand Up @@ -124,5 +124,11 @@ export interface NextjsResult {
export type { InternalError, JSONSchemaError, ValidationError }
export type { FormatedJSONSchemaError, FormatedValidationError }
export type { Filter, Order, Sorters }
export type { ConditionalFilter, LogicalFilter } from './filter.ts'
export {
type ConditionalFilter,
ConditionalFilterOperator,
type LogicalFilter,
LogicalFilterOperator,
} from './filter.ts'
export { OrderDirection } from './sorting.ts'
export * from './types.ts'

0 comments on commit 355e61e

Please sign in to comment.