Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

First steps of RPC implementation for table page #3704

Merged
merged 10 commits into from
Aug 1, 2024
11 changes: 0 additions & 11 deletions mathesar_ui/src/api/rest/columns.ts

This file was deleted.

6 changes: 3 additions & 3 deletions mathesar_ui/src/api/rest/types/queries.ts
Original file line number Diff line number Diff line change
@@ -1,7 +1,7 @@
import type { Column } from '@mathesar/api/rest/types/tables/columns';
import type { JpPath } from '@mathesar/api/rest/types/tables/joinable_tables';
import type { PaginatedResponse } from '@mathesar/api/rest/utils/requestUtils';
import type { Column } from '@mathesar/api/rpc/columns';
import type { Schema } from '@mathesar/api/rpc/schemas';
import type { JoinPath } from '@mathesar/api/rpc/tables';

export type QueryColumnAlias = string;

Expand All @@ -12,7 +12,7 @@ export type QueryColumnAlias = string;
export interface QueryInstanceInitialColumn {
alias: QueryColumnAlias;
id: Column['id'];
jp_path?: JpPath;
jp_path?: JoinPath;
}

// TODO: Extend this to support more complicated filters
Expand Down
162 changes: 0 additions & 162 deletions mathesar_ui/src/api/rest/types/tables/columns.ts

This file was deleted.

40 changes: 0 additions & 40 deletions mathesar_ui/src/api/rest/types/tables/constraints.ts

This file was deleted.

39 changes: 0 additions & 39 deletions mathesar_ui/src/api/rest/types/tables/joinable_tables.ts

This file was deleted.

Loading
Loading