@carto/api-client 0.5.18 → 0.5.19
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
- package/CHANGELOG.md +5 -0
- package/build/api-client.cjs +151 -129
- package/build/api-client.cjs.map +1 -1
- package/build/api-client.d.cts +78 -60
- package/build/api-client.d.ts +78 -60
- package/build/api-client.js +143 -124
- package/build/api-client.js.map +1 -1
- package/package.json +1 -1
- package/src/fetch-map/parse-map.ts +1 -1
- package/src/fetch-map/types.ts +1 -0
- package/src/sources/index.ts +47 -14
package/build/api-client.d.cts
CHANGED
|
@@ -868,6 +868,7 @@ type VisConfig = {
|
|
|
868
868
|
customMarkersUrl?: string | null;
|
|
869
869
|
radius: number;
|
|
870
870
|
radiusRange?: number[];
|
|
871
|
+
radiusAggregation?: string;
|
|
871
872
|
sizeAggregation?: string;
|
|
872
873
|
sizeRange?: number[];
|
|
873
874
|
strokeColorAggregation?: string;
|
|
@@ -1271,25 +1272,6 @@ declare function createViewportSpatialFilter(viewport: BBox): SpatialFilter | un
|
|
|
1271
1272
|
*/
|
|
1272
1273
|
declare function createPolygonSpatialFilter(spatialFilter: Polygon | MultiPolygon): SpatialFilter | undefined;
|
|
1273
1274
|
|
|
1274
|
-
declare const SOURCE_DEFAULTS: Omit<SourceOptionalOptions, 'clientId'>;
|
|
1275
|
-
|
|
1276
|
-
type BoundaryQuerySourceOptions = SourceOptions & FilterOptions & {
|
|
1277
|
-
columns?: string[];
|
|
1278
|
-
tilesetTableName: string;
|
|
1279
|
-
propertiesSqlQuery: string;
|
|
1280
|
-
queryParameters?: QueryParameters;
|
|
1281
|
-
};
|
|
1282
|
-
type BoundaryQuerySourceResponse = TilejsonResult;
|
|
1283
|
-
declare const boundaryQuerySource: (options: BoundaryQuerySourceOptions) => Promise<BoundaryQuerySourceResponse>;
|
|
1284
|
-
|
|
1285
|
-
type BoundaryTableSourceOptions = SourceOptions & FilterOptions & {
|
|
1286
|
-
tilesetTableName: string;
|
|
1287
|
-
columns?: string[];
|
|
1288
|
-
propertiesTableName: string;
|
|
1289
|
-
};
|
|
1290
|
-
type BoundaryTableSourceResponse = TilejsonResult;
|
|
1291
|
-
declare const boundaryTableSource: (options: BoundaryTableSourceOptions) => Promise<BoundaryTableSourceResponse>;
|
|
1292
|
-
|
|
1293
1275
|
/******************************************************************************
|
|
1294
1276
|
* WIDGET API REQUESTS
|
|
1295
1277
|
*/
|
|
@@ -1954,67 +1936,103 @@ declare class WidgetTableSource extends WidgetRemoteSource<LayerTableSourceOptio
|
|
|
1954
1936
|
*/
|
|
1955
1937
|
declare const OTHERS_CATEGORY_NAME = "_carto_others";
|
|
1956
1938
|
|
|
1957
|
-
type
|
|
1958
|
-
type
|
|
1959
|
-
declare const
|
|
1960
|
-
|
|
1961
|
-
type H3TableSourceOptions = SourceOptions & TableSourceOptions & AggregationOptions & FilterOptions;
|
|
1962
|
-
type H3TableSourceResponse = TilejsonResult & WidgetTableSourceResult;
|
|
1963
|
-
declare const h3TableSource: (options: H3TableSourceOptions) => Promise<H3TableSourceResponse>;
|
|
1964
|
-
|
|
1965
|
-
type H3TilesetSourceOptions = SourceOptions & TilesetSourceOptions;
|
|
1966
|
-
type H3TilesetSourceResponse = TilejsonResult & WidgetTilesetSourceResult;
|
|
1967
|
-
declare const h3TilesetSource: (options: H3TilesetSourceOptions) => Promise<H3TilesetSourceResponse>;
|
|
1968
|
-
|
|
1969
|
-
type RasterSourceOptions = SourceOptions & TilesetSourceOptions & FilterOptions;
|
|
1970
|
-
type RasterSourceResponse = TilejsonResult & WidgetRasterSourceResult;
|
|
1971
|
-
declare const rasterSource: (options: RasterSourceOptions) => Promise<RasterSourceResponse>;
|
|
1972
|
-
|
|
1973
|
-
type QuadbinQuerySourceOptions = SourceOptions & QuerySourceOptions & AggregationOptions & FilterOptions;
|
|
1974
|
-
type QuadbinQuerySourceResponse = TilejsonResult & WidgetQuerySourceResult;
|
|
1975
|
-
declare const quadbinQuerySource: (options: QuadbinQuerySourceOptions) => Promise<QuadbinQuerySourceResponse>;
|
|
1976
|
-
|
|
1977
|
-
type QuadbinTableSourceOptions = SourceOptions & TableSourceOptions & AggregationOptions & FilterOptions;
|
|
1978
|
-
type QuadbinTableSourceResponse = TilejsonResult & WidgetTableSourceResult;
|
|
1979
|
-
declare const quadbinTableSource: (options: QuadbinTableSourceOptions) => Promise<QuadbinTableSourceResponse>;
|
|
1980
|
-
|
|
1981
|
-
type QuadbinTilesetSourceOptions = SourceOptions & TilesetSourceOptions;
|
|
1982
|
-
type QuadbinTilesetSourceResponse = TilejsonResult & WidgetTilesetSourceResult;
|
|
1983
|
-
declare const quadbinTilesetSource: (options: QuadbinTilesetSourceOptions) => Promise<QuadbinTilesetSourceResponse>;
|
|
1984
|
-
|
|
1985
|
-
type VectorQuerySourceOptions = SourceOptions & QuerySourceOptions & FilterOptions & ColumnsOption;
|
|
1986
|
-
type VectorQuerySourceResponse = TilejsonResult & WidgetQuerySourceResult;
|
|
1987
|
-
declare const vectorQuerySource: (options: VectorQuerySourceOptions) => Promise<VectorQuerySourceResponse>;
|
|
1939
|
+
type VectorTilesetSourceOptions = SourceOptions & TilesetSourceOptions;
|
|
1940
|
+
type VectorTilesetSourceResponse = TilejsonResult & WidgetTilesetSourceResult;
|
|
1941
|
+
declare const vectorTilesetSource: (options: VectorTilesetSourceOptions) => Promise<VectorTilesetSourceResponse>;
|
|
1988
1942
|
|
|
1989
1943
|
type VectorTableSourceOptions = SourceOptions & TableSourceOptions & FilterOptions & ColumnsOption;
|
|
1990
1944
|
type VectorTableSourceResponse = TilejsonResult & WidgetTableSourceResult;
|
|
1991
1945
|
declare const vectorTableSource: (options: VectorTableSourceOptions) => Promise<VectorTableSourceResponse>;
|
|
1992
1946
|
|
|
1993
|
-
type
|
|
1994
|
-
type
|
|
1995
|
-
declare const
|
|
1947
|
+
type VectorQuerySourceOptions = SourceOptions & QuerySourceOptions & FilterOptions & ColumnsOption;
|
|
1948
|
+
type VectorQuerySourceResponse = TilejsonResult & WidgetQuerySourceResult;
|
|
1949
|
+
declare const vectorQuerySource: (options: VectorQuerySourceOptions) => Promise<VectorQuerySourceResponse>;
|
|
1996
1950
|
|
|
1997
|
-
type
|
|
1951
|
+
type TrajectoryTableSourceOptions = SourceOptions & TableSourceOptions & ColumnsOption & {
|
|
1998
1952
|
/** Column name containing the trajectory identifier */
|
|
1999
1953
|
trajectoryIdColumn: string;
|
|
2000
1954
|
/** Column name containing the timestamp */
|
|
2001
1955
|
timestampColumn: string;
|
|
2002
1956
|
};
|
|
2003
|
-
type
|
|
1957
|
+
type TrajectoryTableSourceResponse = TilejsonResult & WidgetTableSourceResult & {
|
|
2004
1958
|
timestampRange: RangeResponse;
|
|
2005
1959
|
};
|
|
2006
|
-
declare const
|
|
1960
|
+
declare const trajectoryTableSource: (options: TrajectoryTableSourceOptions) => Promise<TrajectoryTableSourceResponse>;
|
|
2007
1961
|
|
|
2008
|
-
type
|
|
1962
|
+
type TrajectoryQuerySourceOptions = SourceOptions & QuerySourceOptions & ColumnsOption & {
|
|
2009
1963
|
/** Column name containing the trajectory identifier */
|
|
2010
1964
|
trajectoryIdColumn: string;
|
|
2011
1965
|
/** Column name containing the timestamp */
|
|
2012
1966
|
timestampColumn: string;
|
|
2013
1967
|
};
|
|
2014
|
-
type
|
|
1968
|
+
type TrajectoryQuerySourceResponse = TilejsonResult & WidgetQuerySourceResult & {
|
|
2015
1969
|
timestampRange: RangeResponse;
|
|
2016
1970
|
};
|
|
2017
|
-
declare const
|
|
1971
|
+
declare const trajectoryQuerySource: (options: TrajectoryQuerySourceOptions) => Promise<TrajectoryQuerySourceResponse>;
|
|
1972
|
+
|
|
1973
|
+
type RasterSourceOptions = SourceOptions & TilesetSourceOptions & FilterOptions;
|
|
1974
|
+
type RasterSourceResponse = TilejsonResult & WidgetRasterSourceResult;
|
|
1975
|
+
declare const rasterSource: (options: RasterSourceOptions) => Promise<RasterSourceResponse>;
|
|
1976
|
+
|
|
1977
|
+
type QuadbinTilesetSourceOptions = SourceOptions & TilesetSourceOptions;
|
|
1978
|
+
type QuadbinTilesetSourceResponse = TilejsonResult & WidgetTilesetSourceResult;
|
|
1979
|
+
declare const quadbinTilesetSource: (options: QuadbinTilesetSourceOptions) => Promise<QuadbinTilesetSourceResponse>;
|
|
1980
|
+
|
|
1981
|
+
type QuadbinTableSourceOptions = SourceOptions & TableSourceOptions & AggregationOptions & FilterOptions;
|
|
1982
|
+
type QuadbinTableSourceResponse = TilejsonResult & WidgetTableSourceResult;
|
|
1983
|
+
declare const quadbinTableSource: (options: QuadbinTableSourceOptions) => Promise<QuadbinTableSourceResponse>;
|
|
1984
|
+
|
|
1985
|
+
type QuadbinQuerySourceOptions = SourceOptions & QuerySourceOptions & AggregationOptions & FilterOptions;
|
|
1986
|
+
type QuadbinQuerySourceResponse = TilejsonResult & WidgetQuerySourceResult;
|
|
1987
|
+
declare const quadbinQuerySource: (options: QuadbinQuerySourceOptions) => Promise<QuadbinQuerySourceResponse>;
|
|
1988
|
+
|
|
1989
|
+
type H3TilesetSourceOptions = SourceOptions & TilesetSourceOptions;
|
|
1990
|
+
type H3TilesetSourceResponse = TilejsonResult & WidgetTilesetSourceResult;
|
|
1991
|
+
declare const h3TilesetSource: (options: H3TilesetSourceOptions) => Promise<H3TilesetSourceResponse>;
|
|
1992
|
+
|
|
1993
|
+
type H3TableSourceOptions = SourceOptions & TableSourceOptions & AggregationOptions & FilterOptions;
|
|
1994
|
+
type H3TableSourceResponse = TilejsonResult & WidgetTableSourceResult;
|
|
1995
|
+
declare const h3TableSource: (options: H3TableSourceOptions) => Promise<H3TableSourceResponse>;
|
|
1996
|
+
|
|
1997
|
+
type H3QuerySourceOptions = SourceOptions & QuerySourceOptions & AggregationOptions & FilterOptions;
|
|
1998
|
+
type H3QuerySourceResponse = TilejsonResult & WidgetQuerySourceResult;
|
|
1999
|
+
declare const h3QuerySource: (options: H3QuerySourceOptions) => Promise<H3QuerySourceResponse>;
|
|
2000
|
+
|
|
2001
|
+
type BoundaryTableSourceOptions = SourceOptions & FilterOptions & {
|
|
2002
|
+
tilesetTableName: string;
|
|
2003
|
+
columns?: string[];
|
|
2004
|
+
propertiesTableName: string;
|
|
2005
|
+
};
|
|
2006
|
+
type BoundaryTableSourceResponse = TilejsonResult;
|
|
2007
|
+
declare const boundaryTableSource: (options: BoundaryTableSourceOptions) => Promise<BoundaryTableSourceResponse>;
|
|
2008
|
+
|
|
2009
|
+
type BoundaryQuerySourceOptions = SourceOptions & FilterOptions & {
|
|
2010
|
+
columns?: string[];
|
|
2011
|
+
tilesetTableName: string;
|
|
2012
|
+
propertiesSqlQuery: string;
|
|
2013
|
+
queryParameters?: QueryParameters;
|
|
2014
|
+
};
|
|
2015
|
+
type BoundaryQuerySourceResponse = TilejsonResult;
|
|
2016
|
+
declare const boundaryQuerySource: (options: BoundaryQuerySourceOptions) => Promise<BoundaryQuerySourceResponse>;
|
|
2017
|
+
|
|
2018
|
+
declare const SOURCE_DEFAULTS: Omit<SourceOptionalOptions, 'clientId'>;
|
|
2019
|
+
|
|
2020
|
+
declare const CARTO_SOURCES: {
|
|
2021
|
+
boundaryQuerySource: (options: BoundaryQuerySourceOptions) => Promise<BoundaryQuerySourceResponse>;
|
|
2022
|
+
boundaryTableSource: (options: BoundaryTableSourceOptions) => Promise<BoundaryTableSourceResponse>;
|
|
2023
|
+
h3QuerySource: (options: H3QuerySourceOptions) => Promise<H3QuerySourceResponse>;
|
|
2024
|
+
h3TableSource: (options: H3TableSourceOptions) => Promise<H3TableSourceResponse>;
|
|
2025
|
+
h3TilesetSource: (options: H3TilesetSourceOptions) => Promise<H3TilesetSourceResponse>;
|
|
2026
|
+
quadbinQuerySource: (options: QuadbinQuerySourceOptions) => Promise<QuadbinQuerySourceResponse>;
|
|
2027
|
+
quadbinTableSource: (options: QuadbinTableSourceOptions) => Promise<QuadbinTableSourceResponse>;
|
|
2028
|
+
quadbinTilesetSource: (options: QuadbinTilesetSourceOptions) => Promise<QuadbinTilesetSourceResponse>;
|
|
2029
|
+
rasterSource: (options: RasterSourceOptions) => Promise<RasterSourceResponse>;
|
|
2030
|
+
trajectoryQuerySource: (options: TrajectoryQuerySourceOptions) => Promise<TrajectoryQuerySourceResponse>;
|
|
2031
|
+
trajectoryTableSource: (options: TrajectoryTableSourceOptions) => Promise<TrajectoryTableSourceResponse>;
|
|
2032
|
+
vectorQuerySource: (options: VectorQuerySourceOptions) => Promise<VectorQuerySourceResponse>;
|
|
2033
|
+
vectorTableSource: (options: VectorTableSourceOptions) => Promise<VectorTableSourceResponse>;
|
|
2034
|
+
vectorTilesetSource: (options: VectorTilesetSourceOptions) => Promise<VectorTilesetSourceResponse>;
|
|
2035
|
+
};
|
|
2018
2036
|
|
|
2019
2037
|
/**
|
|
2020
2038
|
* Resolution conversion function. Takes a WebMercatorViewport and returns
|
|
@@ -2166,4 +2184,4 @@ declare function getColumnNameFromGeoColumn(geoColumn: string | null | undefined
|
|
|
2166
2184
|
*/
|
|
2167
2185
|
declare function getSpatialIndexFromGeoColumn(geoColumn: string): SpatialIndex | null;
|
|
2168
2186
|
|
|
2169
|
-
export { type APIErrorContext, type APIRequestType, type AddFilterOptions, type AggregationFunction, type AggregationType, AggregationTypes, type AggregationsRequestOptions, type AggregationsResponse, ApiVersion, type Attribute, _default as BASEMAP, type BaseRequestOptions, type Basemap, type BoundaryQuerySourceOptions, type BoundaryQuerySourceResponse, type BoundaryTableSourceOptions, type BoundaryTableSourceResponse, CartoAPIError, type CategoryOrderBy, type CategoryRequestOptions, type CategoryResponse, type CategoryResponseEntry, type CategoryResponseRaw, CellSet, type ColumnsOption, type D3Scale, DEFAULT_API_BASE_URL, type ExtentRequestOptions, type ExtentResponse, FEATURE_GEOM_PROPERTY, type FeaturesRequestOptions, type FeaturesResponse, type FetchMapOptions, type FetchMapResult, type Filter, type FilterFunction, type FilterInterval, type FilterIntervalComplete, type FilterIntervalExtremum, type FilterLogicalOperator, type FilterOptions, FilterType, type Filters, type Format, type FormulaRequestOptions, type FormulaResponse, type GetFilterOptions, type GoogleBasemap, type GroupByFeature, type GroupDateType, type H3QuerySourceOptions, type H3QuerySourceResponse, type H3TableSourceOptions, type H3TableSourceResponse, type H3TilesetSourceOptions, type H3TilesetSourceResponse, type HasFilterOptions, type HistogramRequestOptions, type HistogramResponse, type KeplerMapConfig, type Layer, type LayerDescriptor, type LayerType, type MapLibreBasemap, type MapType, type NamedQueryParameter, OPACITY_MAP, OTHERS_CATEGORY_NAME, type ParseMapResult, type PositionalQueryParameter, Provider, type ProviderType, type QuadbinQuerySourceOptions, type QuadbinQuerySourceResponse, type QuadbinTableSourceOptions, type QuadbinTableSourceResponse, type QuadbinTilesetSourceOptions, type QuadbinTilesetSourceResponse, type QueryOptions, type QueryParameterValue, type QueryParameters, type QueryResult, type QuerySourceOptions, type RangeRequestOptions, type RangeResponse, type Raster, RasterBandColorinterp, type RasterBandType, type RasterMetadata, type RasterMetadataBand, type RasterMetadataBandStats, type RasterSourceOptions, type RasterTile, type RemoveFilterOptions, SOURCE_DEFAULTS, type Scale, type ScaleKey, type ScaleType, type Scales, type ScatterPlotFeature, type ScatterRequestOptions, type ScatterResponse, type SchemaField, SchemaFieldType, type SortColumnType, type SortDirection, type SourceOptionalOptions, type SourceOptions, type SourceRequiredOptions, type SpatialDataType, type SpatialFilter, type SpatialFilterPolyfillMode, SpatialIndex, SpatialIndexColumn, type SpatialIndexTile, type StringSearchOptions, TEXT_LABEL_INDEX, TEXT_NUMBER_FORMATTER, TEXT_OUTLINE_OPACITY, type TableRequestOptions, type TableResponse, type TableSourceOptions, type Tile, type TileFeatureExtractOptions, type TileFeatures, type TileFeaturesSpatialIndexOptions, TileFormat, type TileResolution, type Tilejson, type TilejsonResult, type TilesetSourceOptions, type Tilestats, type TimeSeriesRequestOptions, type TimeSeriesResponse, type TrajectoryQuerySourceOptions, type TrajectoryQuerySourceResponse, type TrajectoryTableSourceOptions, type TrajectoryTableSourceResponse, type VectorLayer, type VectorQuerySourceOptions, type VectorQuerySourceResponse, type VectorTableSourceOptions, type VectorTableSourceResponse, type VectorTilesetSourceOptions, type VectorTilesetSourceResponse, type ViewState, type Viewport, WidgetQuerySource, type WidgetQuerySourceResult, WidgetRasterSource, type WidgetRasterSourceProps, type WidgetRasterSourceResult, WidgetRemoteSource, type WidgetRemoteSourceProps, WidgetSource, type WidgetSourceProps, WidgetTableSource, type WidgetTableSourceResult, WidgetTilesetSource, type WidgetTilesetSourceProps, type WidgetTilesetSourceResult, type _DataFilterExtensionProps, ErrorCode as _ErrorCode, type VecExprResult as _VecExprResult, applyLayerGroupFilters as _applyLayerGroupFilters, _buildFeatureFilter, createVecExprEvaluator as _createVecExprEvaluator, domainFromValues as _domainFromValues, evaluateVecExpr as _evaluateVecExpr, _getHexagonResolution, getLog10ScaleSteps as _getLog10ScaleSteps, getRasterTileLayerStyleProps as _getRasterTileLayerStyleProps, validateVecExprSyntax as _validateVecExprSyntax, addFilter, aggregate, aggregationFunctions, applyFilters, applySorting, boundaryQuerySource, boundaryTableSource, buildBinaryFeatureFilter, buildPublicMapUrl, buildStatsUrl, calculateClusterRadius, calculateClusterTextFontSize, calculateLayerScale, clearDefaultRequestCache, clearFilters, configureSource, createColorScale, createPolygonSpatialFilter, createViewportSpatialFilter, fetchBasemapProps, fetchMap, filterFunctions, geojsonFeatures, getApplicableFilters, getClient, getColorAccessor, getColumnNameFromGeoColumn, getDataFilterExtensionProps, getDefaultAggregationExpColumnAliasForLayerType, getFilter, getIconUrlAccessor, getLayerDescriptor, getLayerProps, getMaxMarkerSize, getSizeAccessor, getSorter, getSpatialIndexFromGeoColumn, getTextAccessor, groupValuesByColumn, groupValuesByDateColumn, h3QuerySource, h3TableSource, h3TilesetSource, hasFilter, histogram, makeIntervalComplete, negateAccessor, opacityToAlpha, parseMap, quadbinQuerySource, quadbinTableSource, quadbinTilesetSource, query, rasterSource, removeFilter, requestWithParameters, scaleAggregationResLevel, scatterPlot, setClient, tileFeatures, tileFeaturesGeometries, tileFeaturesSpatialIndex, trajectoryQuerySource, trajectoryTableSource, transformToTileCoords, vectorQuerySource, vectorTableSource, vectorTilesetSource };
|
|
2187
|
+
export { type APIErrorContext, type APIRequestType, type AddFilterOptions, type AggregationFunction, type AggregationType, AggregationTypes, type AggregationsRequestOptions, type AggregationsResponse, ApiVersion, type Attribute, _default as BASEMAP, type BaseRequestOptions, type Basemap, type BoundaryQuerySourceOptions, type BoundaryQuerySourceResponse, type BoundaryTableSourceOptions, type BoundaryTableSourceResponse, CARTO_SOURCES, CartoAPIError, type CategoryOrderBy, type CategoryRequestOptions, type CategoryResponse, type CategoryResponseEntry, type CategoryResponseRaw, CellSet, type ColumnsOption, type D3Scale, DEFAULT_API_BASE_URL, type ExtentRequestOptions, type ExtentResponse, FEATURE_GEOM_PROPERTY, type FeaturesRequestOptions, type FeaturesResponse, type FetchMapOptions, type FetchMapResult, type Filter, type FilterFunction, type FilterInterval, type FilterIntervalComplete, type FilterIntervalExtremum, type FilterLogicalOperator, type FilterOptions, FilterType, type Filters, type Format, type FormulaRequestOptions, type FormulaResponse, type GetFilterOptions, type GoogleBasemap, type GroupByFeature, type GroupDateType, type H3QuerySourceOptions, type H3QuerySourceResponse, type H3TableSourceOptions, type H3TableSourceResponse, type H3TilesetSourceOptions, type H3TilesetSourceResponse, type HasFilterOptions, type HistogramRequestOptions, type HistogramResponse, type KeplerMapConfig, type Layer, type LayerDescriptor, type LayerType, type MapLibreBasemap, type MapType, type NamedQueryParameter, OPACITY_MAP, OTHERS_CATEGORY_NAME, type ParseMapResult, type PositionalQueryParameter, Provider, type ProviderType, type QuadbinQuerySourceOptions, type QuadbinQuerySourceResponse, type QuadbinTableSourceOptions, type QuadbinTableSourceResponse, type QuadbinTilesetSourceOptions, type QuadbinTilesetSourceResponse, type QueryOptions, type QueryParameterValue, type QueryParameters, type QueryResult, type QuerySourceOptions, type RangeRequestOptions, type RangeResponse, type Raster, RasterBandColorinterp, type RasterBandType, type RasterMetadata, type RasterMetadataBand, type RasterMetadataBandStats, type RasterSourceOptions, type RasterTile, type RemoveFilterOptions, SOURCE_DEFAULTS, type Scale, type ScaleKey, type ScaleType, type Scales, type ScatterPlotFeature, type ScatterRequestOptions, type ScatterResponse, type SchemaField, SchemaFieldType, type SortColumnType, type SortDirection, type SourceOptionalOptions, type SourceOptions, type SourceRequiredOptions, type SpatialDataType, type SpatialFilter, type SpatialFilterPolyfillMode, SpatialIndex, SpatialIndexColumn, type SpatialIndexTile, type StringSearchOptions, TEXT_LABEL_INDEX, TEXT_NUMBER_FORMATTER, TEXT_OUTLINE_OPACITY, type TableRequestOptions, type TableResponse, type TableSourceOptions, type Tile, type TileFeatureExtractOptions, type TileFeatures, type TileFeaturesSpatialIndexOptions, TileFormat, type TileResolution, type Tilejson, type TilejsonResult, type TilesetSourceOptions, type Tilestats, type TimeSeriesRequestOptions, type TimeSeriesResponse, type TrajectoryQuerySourceOptions, type TrajectoryQuerySourceResponse, type TrajectoryTableSourceOptions, type TrajectoryTableSourceResponse, type VectorLayer, type VectorQuerySourceOptions, type VectorQuerySourceResponse, type VectorTableSourceOptions, type VectorTableSourceResponse, type VectorTilesetSourceOptions, type VectorTilesetSourceResponse, type ViewState, type Viewport, WidgetQuerySource, type WidgetQuerySourceResult, WidgetRasterSource, type WidgetRasterSourceProps, type WidgetRasterSourceResult, WidgetRemoteSource, type WidgetRemoteSourceProps, WidgetSource, type WidgetSourceProps, WidgetTableSource, type WidgetTableSourceResult, WidgetTilesetSource, type WidgetTilesetSourceProps, type WidgetTilesetSourceResult, type _DataFilterExtensionProps, ErrorCode as _ErrorCode, type VecExprResult as _VecExprResult, applyLayerGroupFilters as _applyLayerGroupFilters, _buildFeatureFilter, createVecExprEvaluator as _createVecExprEvaluator, domainFromValues as _domainFromValues, evaluateVecExpr as _evaluateVecExpr, _getHexagonResolution, getLog10ScaleSteps as _getLog10ScaleSteps, getRasterTileLayerStyleProps as _getRasterTileLayerStyleProps, validateVecExprSyntax as _validateVecExprSyntax, addFilter, aggregate, aggregationFunctions, applyFilters, applySorting, boundaryQuerySource, boundaryTableSource, buildBinaryFeatureFilter, buildPublicMapUrl, buildStatsUrl, calculateClusterRadius, calculateClusterTextFontSize, calculateLayerScale, clearDefaultRequestCache, clearFilters, configureSource, createColorScale, createPolygonSpatialFilter, createViewportSpatialFilter, fetchBasemapProps, fetchMap, filterFunctions, geojsonFeatures, getApplicableFilters, getClient, getColorAccessor, getColumnNameFromGeoColumn, getDataFilterExtensionProps, getDefaultAggregationExpColumnAliasForLayerType, getFilter, getIconUrlAccessor, getLayerDescriptor, getLayerProps, getMaxMarkerSize, getSizeAccessor, getSorter, getSpatialIndexFromGeoColumn, getTextAccessor, groupValuesByColumn, groupValuesByDateColumn, h3QuerySource, h3TableSource, h3TilesetSource, hasFilter, histogram, makeIntervalComplete, negateAccessor, opacityToAlpha, parseMap, quadbinQuerySource, quadbinTableSource, quadbinTilesetSource, query, rasterSource, removeFilter, requestWithParameters, scaleAggregationResLevel, scatterPlot, setClient, tileFeatures, tileFeaturesGeometries, tileFeaturesSpatialIndex, trajectoryQuerySource, trajectoryTableSource, transformToTileCoords, vectorQuerySource, vectorTableSource, vectorTilesetSource };
|
package/build/api-client.d.ts
CHANGED
|
@@ -868,6 +868,7 @@ type VisConfig = {
|
|
|
868
868
|
customMarkersUrl?: string | null;
|
|
869
869
|
radius: number;
|
|
870
870
|
radiusRange?: number[];
|
|
871
|
+
radiusAggregation?: string;
|
|
871
872
|
sizeAggregation?: string;
|
|
872
873
|
sizeRange?: number[];
|
|
873
874
|
strokeColorAggregation?: string;
|
|
@@ -1271,25 +1272,6 @@ declare function createViewportSpatialFilter(viewport: BBox): SpatialFilter | un
|
|
|
1271
1272
|
*/
|
|
1272
1273
|
declare function createPolygonSpatialFilter(spatialFilter: Polygon | MultiPolygon): SpatialFilter | undefined;
|
|
1273
1274
|
|
|
1274
|
-
declare const SOURCE_DEFAULTS: Omit<SourceOptionalOptions, 'clientId'>;
|
|
1275
|
-
|
|
1276
|
-
type BoundaryQuerySourceOptions = SourceOptions & FilterOptions & {
|
|
1277
|
-
columns?: string[];
|
|
1278
|
-
tilesetTableName: string;
|
|
1279
|
-
propertiesSqlQuery: string;
|
|
1280
|
-
queryParameters?: QueryParameters;
|
|
1281
|
-
};
|
|
1282
|
-
type BoundaryQuerySourceResponse = TilejsonResult;
|
|
1283
|
-
declare const boundaryQuerySource: (options: BoundaryQuerySourceOptions) => Promise<BoundaryQuerySourceResponse>;
|
|
1284
|
-
|
|
1285
|
-
type BoundaryTableSourceOptions = SourceOptions & FilterOptions & {
|
|
1286
|
-
tilesetTableName: string;
|
|
1287
|
-
columns?: string[];
|
|
1288
|
-
propertiesTableName: string;
|
|
1289
|
-
};
|
|
1290
|
-
type BoundaryTableSourceResponse = TilejsonResult;
|
|
1291
|
-
declare const boundaryTableSource: (options: BoundaryTableSourceOptions) => Promise<BoundaryTableSourceResponse>;
|
|
1292
|
-
|
|
1293
1275
|
/******************************************************************************
|
|
1294
1276
|
* WIDGET API REQUESTS
|
|
1295
1277
|
*/
|
|
@@ -1954,67 +1936,103 @@ declare class WidgetTableSource extends WidgetRemoteSource<LayerTableSourceOptio
|
|
|
1954
1936
|
*/
|
|
1955
1937
|
declare const OTHERS_CATEGORY_NAME = "_carto_others";
|
|
1956
1938
|
|
|
1957
|
-
type
|
|
1958
|
-
type
|
|
1959
|
-
declare const
|
|
1960
|
-
|
|
1961
|
-
type H3TableSourceOptions = SourceOptions & TableSourceOptions & AggregationOptions & FilterOptions;
|
|
1962
|
-
type H3TableSourceResponse = TilejsonResult & WidgetTableSourceResult;
|
|
1963
|
-
declare const h3TableSource: (options: H3TableSourceOptions) => Promise<H3TableSourceResponse>;
|
|
1964
|
-
|
|
1965
|
-
type H3TilesetSourceOptions = SourceOptions & TilesetSourceOptions;
|
|
1966
|
-
type H3TilesetSourceResponse = TilejsonResult & WidgetTilesetSourceResult;
|
|
1967
|
-
declare const h3TilesetSource: (options: H3TilesetSourceOptions) => Promise<H3TilesetSourceResponse>;
|
|
1968
|
-
|
|
1969
|
-
type RasterSourceOptions = SourceOptions & TilesetSourceOptions & FilterOptions;
|
|
1970
|
-
type RasterSourceResponse = TilejsonResult & WidgetRasterSourceResult;
|
|
1971
|
-
declare const rasterSource: (options: RasterSourceOptions) => Promise<RasterSourceResponse>;
|
|
1972
|
-
|
|
1973
|
-
type QuadbinQuerySourceOptions = SourceOptions & QuerySourceOptions & AggregationOptions & FilterOptions;
|
|
1974
|
-
type QuadbinQuerySourceResponse = TilejsonResult & WidgetQuerySourceResult;
|
|
1975
|
-
declare const quadbinQuerySource: (options: QuadbinQuerySourceOptions) => Promise<QuadbinQuerySourceResponse>;
|
|
1976
|
-
|
|
1977
|
-
type QuadbinTableSourceOptions = SourceOptions & TableSourceOptions & AggregationOptions & FilterOptions;
|
|
1978
|
-
type QuadbinTableSourceResponse = TilejsonResult & WidgetTableSourceResult;
|
|
1979
|
-
declare const quadbinTableSource: (options: QuadbinTableSourceOptions) => Promise<QuadbinTableSourceResponse>;
|
|
1980
|
-
|
|
1981
|
-
type QuadbinTilesetSourceOptions = SourceOptions & TilesetSourceOptions;
|
|
1982
|
-
type QuadbinTilesetSourceResponse = TilejsonResult & WidgetTilesetSourceResult;
|
|
1983
|
-
declare const quadbinTilesetSource: (options: QuadbinTilesetSourceOptions) => Promise<QuadbinTilesetSourceResponse>;
|
|
1984
|
-
|
|
1985
|
-
type VectorQuerySourceOptions = SourceOptions & QuerySourceOptions & FilterOptions & ColumnsOption;
|
|
1986
|
-
type VectorQuerySourceResponse = TilejsonResult & WidgetQuerySourceResult;
|
|
1987
|
-
declare const vectorQuerySource: (options: VectorQuerySourceOptions) => Promise<VectorQuerySourceResponse>;
|
|
1939
|
+
type VectorTilesetSourceOptions = SourceOptions & TilesetSourceOptions;
|
|
1940
|
+
type VectorTilesetSourceResponse = TilejsonResult & WidgetTilesetSourceResult;
|
|
1941
|
+
declare const vectorTilesetSource: (options: VectorTilesetSourceOptions) => Promise<VectorTilesetSourceResponse>;
|
|
1988
1942
|
|
|
1989
1943
|
type VectorTableSourceOptions = SourceOptions & TableSourceOptions & FilterOptions & ColumnsOption;
|
|
1990
1944
|
type VectorTableSourceResponse = TilejsonResult & WidgetTableSourceResult;
|
|
1991
1945
|
declare const vectorTableSource: (options: VectorTableSourceOptions) => Promise<VectorTableSourceResponse>;
|
|
1992
1946
|
|
|
1993
|
-
type
|
|
1994
|
-
type
|
|
1995
|
-
declare const
|
|
1947
|
+
type VectorQuerySourceOptions = SourceOptions & QuerySourceOptions & FilterOptions & ColumnsOption;
|
|
1948
|
+
type VectorQuerySourceResponse = TilejsonResult & WidgetQuerySourceResult;
|
|
1949
|
+
declare const vectorQuerySource: (options: VectorQuerySourceOptions) => Promise<VectorQuerySourceResponse>;
|
|
1996
1950
|
|
|
1997
|
-
type
|
|
1951
|
+
type TrajectoryTableSourceOptions = SourceOptions & TableSourceOptions & ColumnsOption & {
|
|
1998
1952
|
/** Column name containing the trajectory identifier */
|
|
1999
1953
|
trajectoryIdColumn: string;
|
|
2000
1954
|
/** Column name containing the timestamp */
|
|
2001
1955
|
timestampColumn: string;
|
|
2002
1956
|
};
|
|
2003
|
-
type
|
|
1957
|
+
type TrajectoryTableSourceResponse = TilejsonResult & WidgetTableSourceResult & {
|
|
2004
1958
|
timestampRange: RangeResponse;
|
|
2005
1959
|
};
|
|
2006
|
-
declare const
|
|
1960
|
+
declare const trajectoryTableSource: (options: TrajectoryTableSourceOptions) => Promise<TrajectoryTableSourceResponse>;
|
|
2007
1961
|
|
|
2008
|
-
type
|
|
1962
|
+
type TrajectoryQuerySourceOptions = SourceOptions & QuerySourceOptions & ColumnsOption & {
|
|
2009
1963
|
/** Column name containing the trajectory identifier */
|
|
2010
1964
|
trajectoryIdColumn: string;
|
|
2011
1965
|
/** Column name containing the timestamp */
|
|
2012
1966
|
timestampColumn: string;
|
|
2013
1967
|
};
|
|
2014
|
-
type
|
|
1968
|
+
type TrajectoryQuerySourceResponse = TilejsonResult & WidgetQuerySourceResult & {
|
|
2015
1969
|
timestampRange: RangeResponse;
|
|
2016
1970
|
};
|
|
2017
|
-
declare const
|
|
1971
|
+
declare const trajectoryQuerySource: (options: TrajectoryQuerySourceOptions) => Promise<TrajectoryQuerySourceResponse>;
|
|
1972
|
+
|
|
1973
|
+
type RasterSourceOptions = SourceOptions & TilesetSourceOptions & FilterOptions;
|
|
1974
|
+
type RasterSourceResponse = TilejsonResult & WidgetRasterSourceResult;
|
|
1975
|
+
declare const rasterSource: (options: RasterSourceOptions) => Promise<RasterSourceResponse>;
|
|
1976
|
+
|
|
1977
|
+
type QuadbinTilesetSourceOptions = SourceOptions & TilesetSourceOptions;
|
|
1978
|
+
type QuadbinTilesetSourceResponse = TilejsonResult & WidgetTilesetSourceResult;
|
|
1979
|
+
declare const quadbinTilesetSource: (options: QuadbinTilesetSourceOptions) => Promise<QuadbinTilesetSourceResponse>;
|
|
1980
|
+
|
|
1981
|
+
type QuadbinTableSourceOptions = SourceOptions & TableSourceOptions & AggregationOptions & FilterOptions;
|
|
1982
|
+
type QuadbinTableSourceResponse = TilejsonResult & WidgetTableSourceResult;
|
|
1983
|
+
declare const quadbinTableSource: (options: QuadbinTableSourceOptions) => Promise<QuadbinTableSourceResponse>;
|
|
1984
|
+
|
|
1985
|
+
type QuadbinQuerySourceOptions = SourceOptions & QuerySourceOptions & AggregationOptions & FilterOptions;
|
|
1986
|
+
type QuadbinQuerySourceResponse = TilejsonResult & WidgetQuerySourceResult;
|
|
1987
|
+
declare const quadbinQuerySource: (options: QuadbinQuerySourceOptions) => Promise<QuadbinQuerySourceResponse>;
|
|
1988
|
+
|
|
1989
|
+
type H3TilesetSourceOptions = SourceOptions & TilesetSourceOptions;
|
|
1990
|
+
type H3TilesetSourceResponse = TilejsonResult & WidgetTilesetSourceResult;
|
|
1991
|
+
declare const h3TilesetSource: (options: H3TilesetSourceOptions) => Promise<H3TilesetSourceResponse>;
|
|
1992
|
+
|
|
1993
|
+
type H3TableSourceOptions = SourceOptions & TableSourceOptions & AggregationOptions & FilterOptions;
|
|
1994
|
+
type H3TableSourceResponse = TilejsonResult & WidgetTableSourceResult;
|
|
1995
|
+
declare const h3TableSource: (options: H3TableSourceOptions) => Promise<H3TableSourceResponse>;
|
|
1996
|
+
|
|
1997
|
+
type H3QuerySourceOptions = SourceOptions & QuerySourceOptions & AggregationOptions & FilterOptions;
|
|
1998
|
+
type H3QuerySourceResponse = TilejsonResult & WidgetQuerySourceResult;
|
|
1999
|
+
declare const h3QuerySource: (options: H3QuerySourceOptions) => Promise<H3QuerySourceResponse>;
|
|
2000
|
+
|
|
2001
|
+
type BoundaryTableSourceOptions = SourceOptions & FilterOptions & {
|
|
2002
|
+
tilesetTableName: string;
|
|
2003
|
+
columns?: string[];
|
|
2004
|
+
propertiesTableName: string;
|
|
2005
|
+
};
|
|
2006
|
+
type BoundaryTableSourceResponse = TilejsonResult;
|
|
2007
|
+
declare const boundaryTableSource: (options: BoundaryTableSourceOptions) => Promise<BoundaryTableSourceResponse>;
|
|
2008
|
+
|
|
2009
|
+
type BoundaryQuerySourceOptions = SourceOptions & FilterOptions & {
|
|
2010
|
+
columns?: string[];
|
|
2011
|
+
tilesetTableName: string;
|
|
2012
|
+
propertiesSqlQuery: string;
|
|
2013
|
+
queryParameters?: QueryParameters;
|
|
2014
|
+
};
|
|
2015
|
+
type BoundaryQuerySourceResponse = TilejsonResult;
|
|
2016
|
+
declare const boundaryQuerySource: (options: BoundaryQuerySourceOptions) => Promise<BoundaryQuerySourceResponse>;
|
|
2017
|
+
|
|
2018
|
+
declare const SOURCE_DEFAULTS: Omit<SourceOptionalOptions, 'clientId'>;
|
|
2019
|
+
|
|
2020
|
+
declare const CARTO_SOURCES: {
|
|
2021
|
+
boundaryQuerySource: (options: BoundaryQuerySourceOptions) => Promise<BoundaryQuerySourceResponse>;
|
|
2022
|
+
boundaryTableSource: (options: BoundaryTableSourceOptions) => Promise<BoundaryTableSourceResponse>;
|
|
2023
|
+
h3QuerySource: (options: H3QuerySourceOptions) => Promise<H3QuerySourceResponse>;
|
|
2024
|
+
h3TableSource: (options: H3TableSourceOptions) => Promise<H3TableSourceResponse>;
|
|
2025
|
+
h3TilesetSource: (options: H3TilesetSourceOptions) => Promise<H3TilesetSourceResponse>;
|
|
2026
|
+
quadbinQuerySource: (options: QuadbinQuerySourceOptions) => Promise<QuadbinQuerySourceResponse>;
|
|
2027
|
+
quadbinTableSource: (options: QuadbinTableSourceOptions) => Promise<QuadbinTableSourceResponse>;
|
|
2028
|
+
quadbinTilesetSource: (options: QuadbinTilesetSourceOptions) => Promise<QuadbinTilesetSourceResponse>;
|
|
2029
|
+
rasterSource: (options: RasterSourceOptions) => Promise<RasterSourceResponse>;
|
|
2030
|
+
trajectoryQuerySource: (options: TrajectoryQuerySourceOptions) => Promise<TrajectoryQuerySourceResponse>;
|
|
2031
|
+
trajectoryTableSource: (options: TrajectoryTableSourceOptions) => Promise<TrajectoryTableSourceResponse>;
|
|
2032
|
+
vectorQuerySource: (options: VectorQuerySourceOptions) => Promise<VectorQuerySourceResponse>;
|
|
2033
|
+
vectorTableSource: (options: VectorTableSourceOptions) => Promise<VectorTableSourceResponse>;
|
|
2034
|
+
vectorTilesetSource: (options: VectorTilesetSourceOptions) => Promise<VectorTilesetSourceResponse>;
|
|
2035
|
+
};
|
|
2018
2036
|
|
|
2019
2037
|
/**
|
|
2020
2038
|
* Resolution conversion function. Takes a WebMercatorViewport and returns
|
|
@@ -2166,4 +2184,4 @@ declare function getColumnNameFromGeoColumn(geoColumn: string | null | undefined
|
|
|
2166
2184
|
*/
|
|
2167
2185
|
declare function getSpatialIndexFromGeoColumn(geoColumn: string): SpatialIndex | null;
|
|
2168
2186
|
|
|
2169
|
-
export { type APIErrorContext, type APIRequestType, type AddFilterOptions, type AggregationFunction, type AggregationType, AggregationTypes, type AggregationsRequestOptions, type AggregationsResponse, ApiVersion, type Attribute, _default as BASEMAP, type BaseRequestOptions, type Basemap, type BoundaryQuerySourceOptions, type BoundaryQuerySourceResponse, type BoundaryTableSourceOptions, type BoundaryTableSourceResponse, CartoAPIError, type CategoryOrderBy, type CategoryRequestOptions, type CategoryResponse, type CategoryResponseEntry, type CategoryResponseRaw, CellSet, type ColumnsOption, type D3Scale, DEFAULT_API_BASE_URL, type ExtentRequestOptions, type ExtentResponse, FEATURE_GEOM_PROPERTY, type FeaturesRequestOptions, type FeaturesResponse, type FetchMapOptions, type FetchMapResult, type Filter, type FilterFunction, type FilterInterval, type FilterIntervalComplete, type FilterIntervalExtremum, type FilterLogicalOperator, type FilterOptions, FilterType, type Filters, type Format, type FormulaRequestOptions, type FormulaResponse, type GetFilterOptions, type GoogleBasemap, type GroupByFeature, type GroupDateType, type H3QuerySourceOptions, type H3QuerySourceResponse, type H3TableSourceOptions, type H3TableSourceResponse, type H3TilesetSourceOptions, type H3TilesetSourceResponse, type HasFilterOptions, type HistogramRequestOptions, type HistogramResponse, type KeplerMapConfig, type Layer, type LayerDescriptor, type LayerType, type MapLibreBasemap, type MapType, type NamedQueryParameter, OPACITY_MAP, OTHERS_CATEGORY_NAME, type ParseMapResult, type PositionalQueryParameter, Provider, type ProviderType, type QuadbinQuerySourceOptions, type QuadbinQuerySourceResponse, type QuadbinTableSourceOptions, type QuadbinTableSourceResponse, type QuadbinTilesetSourceOptions, type QuadbinTilesetSourceResponse, type QueryOptions, type QueryParameterValue, type QueryParameters, type QueryResult, type QuerySourceOptions, type RangeRequestOptions, type RangeResponse, type Raster, RasterBandColorinterp, type RasterBandType, type RasterMetadata, type RasterMetadataBand, type RasterMetadataBandStats, type RasterSourceOptions, type RasterTile, type RemoveFilterOptions, SOURCE_DEFAULTS, type Scale, type ScaleKey, type ScaleType, type Scales, type ScatterPlotFeature, type ScatterRequestOptions, type ScatterResponse, type SchemaField, SchemaFieldType, type SortColumnType, type SortDirection, type SourceOptionalOptions, type SourceOptions, type SourceRequiredOptions, type SpatialDataType, type SpatialFilter, type SpatialFilterPolyfillMode, SpatialIndex, SpatialIndexColumn, type SpatialIndexTile, type StringSearchOptions, TEXT_LABEL_INDEX, TEXT_NUMBER_FORMATTER, TEXT_OUTLINE_OPACITY, type TableRequestOptions, type TableResponse, type TableSourceOptions, type Tile, type TileFeatureExtractOptions, type TileFeatures, type TileFeaturesSpatialIndexOptions, TileFormat, type TileResolution, type Tilejson, type TilejsonResult, type TilesetSourceOptions, type Tilestats, type TimeSeriesRequestOptions, type TimeSeriesResponse, type TrajectoryQuerySourceOptions, type TrajectoryQuerySourceResponse, type TrajectoryTableSourceOptions, type TrajectoryTableSourceResponse, type VectorLayer, type VectorQuerySourceOptions, type VectorQuerySourceResponse, type VectorTableSourceOptions, type VectorTableSourceResponse, type VectorTilesetSourceOptions, type VectorTilesetSourceResponse, type ViewState, type Viewport, WidgetQuerySource, type WidgetQuerySourceResult, WidgetRasterSource, type WidgetRasterSourceProps, type WidgetRasterSourceResult, WidgetRemoteSource, type WidgetRemoteSourceProps, WidgetSource, type WidgetSourceProps, WidgetTableSource, type WidgetTableSourceResult, WidgetTilesetSource, type WidgetTilesetSourceProps, type WidgetTilesetSourceResult, type _DataFilterExtensionProps, ErrorCode as _ErrorCode, type VecExprResult as _VecExprResult, applyLayerGroupFilters as _applyLayerGroupFilters, _buildFeatureFilter, createVecExprEvaluator as _createVecExprEvaluator, domainFromValues as _domainFromValues, evaluateVecExpr as _evaluateVecExpr, _getHexagonResolution, getLog10ScaleSteps as _getLog10ScaleSteps, getRasterTileLayerStyleProps as _getRasterTileLayerStyleProps, validateVecExprSyntax as _validateVecExprSyntax, addFilter, aggregate, aggregationFunctions, applyFilters, applySorting, boundaryQuerySource, boundaryTableSource, buildBinaryFeatureFilter, buildPublicMapUrl, buildStatsUrl, calculateClusterRadius, calculateClusterTextFontSize, calculateLayerScale, clearDefaultRequestCache, clearFilters, configureSource, createColorScale, createPolygonSpatialFilter, createViewportSpatialFilter, fetchBasemapProps, fetchMap, filterFunctions, geojsonFeatures, getApplicableFilters, getClient, getColorAccessor, getColumnNameFromGeoColumn, getDataFilterExtensionProps, getDefaultAggregationExpColumnAliasForLayerType, getFilter, getIconUrlAccessor, getLayerDescriptor, getLayerProps, getMaxMarkerSize, getSizeAccessor, getSorter, getSpatialIndexFromGeoColumn, getTextAccessor, groupValuesByColumn, groupValuesByDateColumn, h3QuerySource, h3TableSource, h3TilesetSource, hasFilter, histogram, makeIntervalComplete, negateAccessor, opacityToAlpha, parseMap, quadbinQuerySource, quadbinTableSource, quadbinTilesetSource, query, rasterSource, removeFilter, requestWithParameters, scaleAggregationResLevel, scatterPlot, setClient, tileFeatures, tileFeaturesGeometries, tileFeaturesSpatialIndex, trajectoryQuerySource, trajectoryTableSource, transformToTileCoords, vectorQuerySource, vectorTableSource, vectorTilesetSource };
|
|
2187
|
+
export { type APIErrorContext, type APIRequestType, type AddFilterOptions, type AggregationFunction, type AggregationType, AggregationTypes, type AggregationsRequestOptions, type AggregationsResponse, ApiVersion, type Attribute, _default as BASEMAP, type BaseRequestOptions, type Basemap, type BoundaryQuerySourceOptions, type BoundaryQuerySourceResponse, type BoundaryTableSourceOptions, type BoundaryTableSourceResponse, CARTO_SOURCES, CartoAPIError, type CategoryOrderBy, type CategoryRequestOptions, type CategoryResponse, type CategoryResponseEntry, type CategoryResponseRaw, CellSet, type ColumnsOption, type D3Scale, DEFAULT_API_BASE_URL, type ExtentRequestOptions, type ExtentResponse, FEATURE_GEOM_PROPERTY, type FeaturesRequestOptions, type FeaturesResponse, type FetchMapOptions, type FetchMapResult, type Filter, type FilterFunction, type FilterInterval, type FilterIntervalComplete, type FilterIntervalExtremum, type FilterLogicalOperator, type FilterOptions, FilterType, type Filters, type Format, type FormulaRequestOptions, type FormulaResponse, type GetFilterOptions, type GoogleBasemap, type GroupByFeature, type GroupDateType, type H3QuerySourceOptions, type H3QuerySourceResponse, type H3TableSourceOptions, type H3TableSourceResponse, type H3TilesetSourceOptions, type H3TilesetSourceResponse, type HasFilterOptions, type HistogramRequestOptions, type HistogramResponse, type KeplerMapConfig, type Layer, type LayerDescriptor, type LayerType, type MapLibreBasemap, type MapType, type NamedQueryParameter, OPACITY_MAP, OTHERS_CATEGORY_NAME, type ParseMapResult, type PositionalQueryParameter, Provider, type ProviderType, type QuadbinQuerySourceOptions, type QuadbinQuerySourceResponse, type QuadbinTableSourceOptions, type QuadbinTableSourceResponse, type QuadbinTilesetSourceOptions, type QuadbinTilesetSourceResponse, type QueryOptions, type QueryParameterValue, type QueryParameters, type QueryResult, type QuerySourceOptions, type RangeRequestOptions, type RangeResponse, type Raster, RasterBandColorinterp, type RasterBandType, type RasterMetadata, type RasterMetadataBand, type RasterMetadataBandStats, type RasterSourceOptions, type RasterTile, type RemoveFilterOptions, SOURCE_DEFAULTS, type Scale, type ScaleKey, type ScaleType, type Scales, type ScatterPlotFeature, type ScatterRequestOptions, type ScatterResponse, type SchemaField, SchemaFieldType, type SortColumnType, type SortDirection, type SourceOptionalOptions, type SourceOptions, type SourceRequiredOptions, type SpatialDataType, type SpatialFilter, type SpatialFilterPolyfillMode, SpatialIndex, SpatialIndexColumn, type SpatialIndexTile, type StringSearchOptions, TEXT_LABEL_INDEX, TEXT_NUMBER_FORMATTER, TEXT_OUTLINE_OPACITY, type TableRequestOptions, type TableResponse, type TableSourceOptions, type Tile, type TileFeatureExtractOptions, type TileFeatures, type TileFeaturesSpatialIndexOptions, TileFormat, type TileResolution, type Tilejson, type TilejsonResult, type TilesetSourceOptions, type Tilestats, type TimeSeriesRequestOptions, type TimeSeriesResponse, type TrajectoryQuerySourceOptions, type TrajectoryQuerySourceResponse, type TrajectoryTableSourceOptions, type TrajectoryTableSourceResponse, type VectorLayer, type VectorQuerySourceOptions, type VectorQuerySourceResponse, type VectorTableSourceOptions, type VectorTableSourceResponse, type VectorTilesetSourceOptions, type VectorTilesetSourceResponse, type ViewState, type Viewport, WidgetQuerySource, type WidgetQuerySourceResult, WidgetRasterSource, type WidgetRasterSourceProps, type WidgetRasterSourceResult, WidgetRemoteSource, type WidgetRemoteSourceProps, WidgetSource, type WidgetSourceProps, WidgetTableSource, type WidgetTableSourceResult, WidgetTilesetSource, type WidgetTilesetSourceProps, type WidgetTilesetSourceResult, type _DataFilterExtensionProps, ErrorCode as _ErrorCode, type VecExprResult as _VecExprResult, applyLayerGroupFilters as _applyLayerGroupFilters, _buildFeatureFilter, createVecExprEvaluator as _createVecExprEvaluator, domainFromValues as _domainFromValues, evaluateVecExpr as _evaluateVecExpr, _getHexagonResolution, getLog10ScaleSteps as _getLog10ScaleSteps, getRasterTileLayerStyleProps as _getRasterTileLayerStyleProps, validateVecExprSyntax as _validateVecExprSyntax, addFilter, aggregate, aggregationFunctions, applyFilters, applySorting, boundaryQuerySource, boundaryTableSource, buildBinaryFeatureFilter, buildPublicMapUrl, buildStatsUrl, calculateClusterRadius, calculateClusterTextFontSize, calculateLayerScale, clearDefaultRequestCache, clearFilters, configureSource, createColorScale, createPolygonSpatialFilter, createViewportSpatialFilter, fetchBasemapProps, fetchMap, filterFunctions, geojsonFeatures, getApplicableFilters, getClient, getColorAccessor, getColumnNameFromGeoColumn, getDataFilterExtensionProps, getDefaultAggregationExpColumnAliasForLayerType, getFilter, getIconUrlAccessor, getLayerDescriptor, getLayerProps, getMaxMarkerSize, getSizeAccessor, getSorter, getSpatialIndexFromGeoColumn, getTextAccessor, groupValuesByColumn, groupValuesByDateColumn, h3QuerySource, h3TableSource, h3TilesetSource, hasFilter, histogram, makeIntervalComplete, negateAccessor, opacityToAlpha, parseMap, quadbinQuerySource, quadbinTableSource, quadbinTilesetSource, query, rasterSource, removeFilter, requestWithParameters, scaleAggregationResLevel, scatterPlot, setClient, tileFeatures, tileFeaturesGeometries, tileFeaturesSpatialIndex, trajectoryQuerySource, trajectoryTableSource, transformToTileCoords, vectorQuerySource, vectorTableSource, vectorTilesetSource };
|