Skip to content

Commit

Permalink
Added missing references to types
Browse files Browse the repository at this point in the history
  • Loading branch information
oskardudycz committed Jul 9, 2024
1 parent 0770969 commit c43a561
Show file tree
Hide file tree
Showing 4 changed files with 7 additions and 2 deletions.
2 changes: 1 addition & 1 deletion src/packages/pongo/src/main/index.ts
Original file line number Diff line number Diff line change
@@ -1,3 +1,3 @@
export * from './client';
export * from './dbClient';
export * from './typing/operations';
export * from './typing';
1 change: 1 addition & 0 deletions src/packages/pongo/src/mongo/index.ts
Original file line number Diff line number Diff line change
Expand Up @@ -2,3 +2,4 @@ export * from './findCursor';
export * from './mongoClient';
export * from './mongoCollection';
export * from './mongoDb';
export * from './typing';
4 changes: 3 additions & 1 deletion src/packages/pongo/src/postgres/filter/index.ts
Original file line number Diff line number Diff line change
Expand Up @@ -2,6 +2,8 @@ import type { PongoFilter } from '../../main';
import { entries } from '../../main/typing';
import { Operators, handleOperator, hasOperators } from './queryOperators';

export * from "./queryOperators";

const AND = 'AND';

export const constructFilterQuery = <T>(filter: PongoFilter<T>): string =>
Expand Down Expand Up @@ -30,4 +32,4 @@ const constructComplexFilterQuery = (
};

const isRecord = (value: unknown): value is Record<string, unknown> =>
value !== null && typeof value === 'object' && !Array.isArray(value);
value !== null && typeof value === 'object' && !Array.isArray(value);';
2 changes: 2 additions & 0 deletions src/packages/pongo/src/postgres/index.ts
Original file line number Diff line number Diff line change
Expand Up @@ -2,4 +2,6 @@ export * from './client';
export * from './execute';
export * from './filter';
export * from './pool';
export * from './postgresCollection';
export * from './sql';
export * from './update';

0 comments on commit c43a561

Please sign in to comment.