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

fix(carto): Add missing re-exports from API client in v9.1 #9267

Merged
merged 1 commit into from
Nov 27, 2024
Merged
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
15 changes: 9 additions & 6 deletions modules/carto/src/index.ts
Original file line number Diff line number Diff line change
Expand Up @@ -71,6 +71,8 @@ export type {
GoogleBasemap as _GoogleBasemap
} from './api/index';

// TODO(v10): Consider removing re-exports from '@carto/api-client' below.

import {
boundaryQuerySource,
boundaryTableSource,
Expand All @@ -83,11 +85,10 @@ import {
quadbinTilesetSource,
vectorQuerySource,
vectorTableSource,
vectorTilesetSource,
SOURCE_DEFAULTS
vectorTilesetSource
} from '@carto/api-client';

const CARTO_SOURCES = {
export const CARTO_SOURCES = {
boundaryQuerySource,
boundaryTableSource,
h3QuerySource,
Expand Down Expand Up @@ -115,9 +116,10 @@ export {
vectorQuerySource,
vectorTableSource,
vectorTilesetSource,
CARTO_SOURCES,
query,
CartoAPIError,
SOURCE_DEFAULTS
};
} from '@carto/api-client';

export type {
GeojsonResult,
Expand All @@ -138,5 +140,6 @@ export type {
QuadbinTilesetSourceOptions,
VectorQuerySourceOptions,
VectorTableSourceOptions,
VectorTilesetSourceOptions
VectorTilesetSourceOptions,
QueryParameters
} from '@carto/api-client';
Loading