Skip to content
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
2 changes: 1 addition & 1 deletion src/scalars.d.ts
Original file line number Diff line number Diff line change
@@ -1,7 +1,7 @@
export declare type ObjectId = string;
export declare type NonEmptyString = string;
export declare type DateISO = Date | string;
export declare type JSONObject = object;
export declare type JSONObject = Record<string, unknown>;
interface SingleValueFilter {
field: string;
operator: 'EQUALS' | 'NOT_EQUALS' | 'CONTAINS' | 'ICONTAINS' | 'GT' | 'GTE' | 'LT' | 'LTE';
Expand Down
2 changes: 1 addition & 1 deletion src/scalars.ts
Original file line number Diff line number Diff line change
@@ -1,7 +1,7 @@
export type ObjectId = string;
export type NonEmptyString = string;
export type DateISO = Date | string;
export type JSONObject = object;
export type JSONObject = Record<string, unknown>;

interface SingleValueFilter {
field: string;
Expand Down