Skip to content

Commit

Permalink
fix(carto): Add missing re-exports from API client in v9.1 (#9267)
Browse files Browse the repository at this point in the history
  • Loading branch information
donmccurdy authored Nov 27, 2024
1 parent a86fb15 commit e5822eb
Showing 1 changed file with 9 additions and 6 deletions.
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';

0 comments on commit e5822eb

Please sign in to comment.