@carto/api-client 0.5.19-alpha.radius-aggregation-1 → 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 -2
- package/build/api-client.cjs +150 -128
- package/build/api-client.cjs.map +1 -1
- package/build/api-client.d.cts +77 -60
- package/build/api-client.d.ts +77 -60
- package/build/api-client.js +142 -123
- package/build/api-client.js.map +1 -1
- package/package.json +1 -1
- package/src/sources/index.ts +47 -14
package/build/api-client.d.cts
CHANGED
|
@@ -1272,25 +1272,6 @@ declare function createViewportSpatialFilter(viewport: BBox): SpatialFilter | un
|
|
|
1272
1272
|
*/
|
|
1273
1273
|
declare function createPolygonSpatialFilter(spatialFilter: Polygon | MultiPolygon): SpatialFilter | undefined;
|
|
1274
1274
|
|
|
1275
|
-
declare const SOURCE_DEFAULTS: Omit<SourceOptionalOptions, 'clientId'>;
|
|
1276
|
-
|
|
1277
|
-
type BoundaryQuerySourceOptions = SourceOptions & FilterOptions & {
|
|
1278
|
-
columns?: string[];
|
|
1279
|
-
tilesetTableName: string;
|
|
1280
|
-
propertiesSqlQuery: string;
|
|
1281
|
-
queryParameters?: QueryParameters;
|
|
1282
|
-
};
|
|
1283
|
-
type BoundaryQuerySourceResponse = TilejsonResult;
|
|
1284
|
-
declare const boundaryQuerySource: (options: BoundaryQuerySourceOptions) => Promise<BoundaryQuerySourceResponse>;
|
|
1285
|
-
|
|
1286
|
-
type BoundaryTableSourceOptions = SourceOptions & FilterOptions & {
|
|
1287
|
-
tilesetTableName: string;
|
|
1288
|
-
columns?: string[];
|
|
1289
|
-
propertiesTableName: string;
|
|
1290
|
-
};
|
|
1291
|
-
type BoundaryTableSourceResponse = TilejsonResult;
|
|
1292
|
-
declare const boundaryTableSource: (options: BoundaryTableSourceOptions) => Promise<BoundaryTableSourceResponse>;
|
|
1293
|
-
|
|
1294
1275
|
/******************************************************************************
|
|
1295
1276
|
* WIDGET API REQUESTS
|
|
1296
1277
|
*/
|
|
@@ -1955,67 +1936,103 @@ declare class WidgetTableSource extends WidgetRemoteSource<LayerTableSourceOptio
|
|
|
1955
1936
|
*/
|
|
1956
1937
|
declare const OTHERS_CATEGORY_NAME = "_carto_others";
|
|
1957
1938
|
|
|
1958
|
-
type
|
|
1959
|
-
type
|
|
1960
|
-
declare const
|
|
1961
|
-
|
|
1962
|
-
type H3TableSourceOptions = SourceOptions & TableSourceOptions & AggregationOptions & FilterOptions;
|
|
1963
|
-
type H3TableSourceResponse = TilejsonResult & WidgetTableSourceResult;
|
|
1964
|
-
declare const h3TableSource: (options: H3TableSourceOptions) => Promise<H3TableSourceResponse>;
|
|
1965
|
-
|
|
1966
|
-
type H3TilesetSourceOptions = SourceOptions & TilesetSourceOptions;
|
|
1967
|
-
type H3TilesetSourceResponse = TilejsonResult & WidgetTilesetSourceResult;
|
|
1968
|
-
declare const h3TilesetSource: (options: H3TilesetSourceOptions) => Promise<H3TilesetSourceResponse>;
|
|
1969
|
-
|
|
1970
|
-
type RasterSourceOptions = SourceOptions & TilesetSourceOptions & FilterOptions;
|
|
1971
|
-
type RasterSourceResponse = TilejsonResult & WidgetRasterSourceResult;
|
|
1972
|
-
declare const rasterSource: (options: RasterSourceOptions) => Promise<RasterSourceResponse>;
|
|
1973
|
-
|
|
1974
|
-
type QuadbinQuerySourceOptions = SourceOptions & QuerySourceOptions & AggregationOptions & FilterOptions;
|
|
1975
|
-
type QuadbinQuerySourceResponse = TilejsonResult & WidgetQuerySourceResult;
|
|
1976
|
-
declare const quadbinQuerySource: (options: QuadbinQuerySourceOptions) => Promise<QuadbinQuerySourceResponse>;
|
|
1977
|
-
|
|
1978
|
-
type QuadbinTableSourceOptions = SourceOptions & TableSourceOptions & AggregationOptions & FilterOptions;
|
|
1979
|
-
type QuadbinTableSourceResponse = TilejsonResult & WidgetTableSourceResult;
|
|
1980
|
-
declare const quadbinTableSource: (options: QuadbinTableSourceOptions) => Promise<QuadbinTableSourceResponse>;
|
|
1981
|
-
|
|
1982
|
-
type QuadbinTilesetSourceOptions = SourceOptions & TilesetSourceOptions;
|
|
1983
|
-
type QuadbinTilesetSourceResponse = TilejsonResult & WidgetTilesetSourceResult;
|
|
1984
|
-
declare const quadbinTilesetSource: (options: QuadbinTilesetSourceOptions) => Promise<QuadbinTilesetSourceResponse>;
|
|
1985
|
-
|
|
1986
|
-
type VectorQuerySourceOptions = SourceOptions & QuerySourceOptions & FilterOptions & ColumnsOption;
|
|
1987
|
-
type VectorQuerySourceResponse = TilejsonResult & WidgetQuerySourceResult;
|
|
1988
|
-
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>;
|
|
1989
1942
|
|
|
1990
1943
|
type VectorTableSourceOptions = SourceOptions & TableSourceOptions & FilterOptions & ColumnsOption;
|
|
1991
1944
|
type VectorTableSourceResponse = TilejsonResult & WidgetTableSourceResult;
|
|
1992
1945
|
declare const vectorTableSource: (options: VectorTableSourceOptions) => Promise<VectorTableSourceResponse>;
|
|
1993
1946
|
|
|
1994
|
-
type
|
|
1995
|
-
type
|
|
1996
|
-
declare const
|
|
1947
|
+
type VectorQuerySourceOptions = SourceOptions & QuerySourceOptions & FilterOptions & ColumnsOption;
|
|
1948
|
+
type VectorQuerySourceResponse = TilejsonResult & WidgetQuerySourceResult;
|
|
1949
|
+
declare const vectorQuerySource: (options: VectorQuerySourceOptions) => Promise<VectorQuerySourceResponse>;
|
|
1997
1950
|
|
|
1998
|
-
type
|
|
1951
|
+
type TrajectoryTableSourceOptions = SourceOptions & TableSourceOptions & ColumnsOption & {
|
|
1999
1952
|
/** Column name containing the trajectory identifier */
|
|
2000
1953
|
trajectoryIdColumn: string;
|
|
2001
1954
|
/** Column name containing the timestamp */
|
|
2002
1955
|
timestampColumn: string;
|
|
2003
1956
|
};
|
|
2004
|
-
type
|
|
1957
|
+
type TrajectoryTableSourceResponse = TilejsonResult & WidgetTableSourceResult & {
|
|
2005
1958
|
timestampRange: RangeResponse;
|
|
2006
1959
|
};
|
|
2007
|
-
declare const
|
|
1960
|
+
declare const trajectoryTableSource: (options: TrajectoryTableSourceOptions) => Promise<TrajectoryTableSourceResponse>;
|
|
2008
1961
|
|
|
2009
|
-
type
|
|
1962
|
+
type TrajectoryQuerySourceOptions = SourceOptions & QuerySourceOptions & ColumnsOption & {
|
|
2010
1963
|
/** Column name containing the trajectory identifier */
|
|
2011
1964
|
trajectoryIdColumn: string;
|
|
2012
1965
|
/** Column name containing the timestamp */
|
|
2013
1966
|
timestampColumn: string;
|
|
2014
1967
|
};
|
|
2015
|
-
type
|
|
1968
|
+
type TrajectoryQuerySourceResponse = TilejsonResult & WidgetQuerySourceResult & {
|
|
2016
1969
|
timestampRange: RangeResponse;
|
|
2017
1970
|
};
|
|
2018
|
-
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
|
+
};
|
|
2019
2036
|
|
|
2020
2037
|
/**
|
|
2021
2038
|
* Resolution conversion function. Takes a WebMercatorViewport and returns
|
|
@@ -2167,4 +2184,4 @@ declare function getColumnNameFromGeoColumn(geoColumn: string | null | undefined
|
|
|
2167
2184
|
*/
|
|
2168
2185
|
declare function getSpatialIndexFromGeoColumn(geoColumn: string): SpatialIndex | null;
|
|
2169
2186
|
|
|
2170
|
-
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
|
@@ -1272,25 +1272,6 @@ declare function createViewportSpatialFilter(viewport: BBox): SpatialFilter | un
|
|
|
1272
1272
|
*/
|
|
1273
1273
|
declare function createPolygonSpatialFilter(spatialFilter: Polygon | MultiPolygon): SpatialFilter | undefined;
|
|
1274
1274
|
|
|
1275
|
-
declare const SOURCE_DEFAULTS: Omit<SourceOptionalOptions, 'clientId'>;
|
|
1276
|
-
|
|
1277
|
-
type BoundaryQuerySourceOptions = SourceOptions & FilterOptions & {
|
|
1278
|
-
columns?: string[];
|
|
1279
|
-
tilesetTableName: string;
|
|
1280
|
-
propertiesSqlQuery: string;
|
|
1281
|
-
queryParameters?: QueryParameters;
|
|
1282
|
-
};
|
|
1283
|
-
type BoundaryQuerySourceResponse = TilejsonResult;
|
|
1284
|
-
declare const boundaryQuerySource: (options: BoundaryQuerySourceOptions) => Promise<BoundaryQuerySourceResponse>;
|
|
1285
|
-
|
|
1286
|
-
type BoundaryTableSourceOptions = SourceOptions & FilterOptions & {
|
|
1287
|
-
tilesetTableName: string;
|
|
1288
|
-
columns?: string[];
|
|
1289
|
-
propertiesTableName: string;
|
|
1290
|
-
};
|
|
1291
|
-
type BoundaryTableSourceResponse = TilejsonResult;
|
|
1292
|
-
declare const boundaryTableSource: (options: BoundaryTableSourceOptions) => Promise<BoundaryTableSourceResponse>;
|
|
1293
|
-
|
|
1294
1275
|
/******************************************************************************
|
|
1295
1276
|
* WIDGET API REQUESTS
|
|
1296
1277
|
*/
|
|
@@ -1955,67 +1936,103 @@ declare class WidgetTableSource extends WidgetRemoteSource<LayerTableSourceOptio
|
|
|
1955
1936
|
*/
|
|
1956
1937
|
declare const OTHERS_CATEGORY_NAME = "_carto_others";
|
|
1957
1938
|
|
|
1958
|
-
type
|
|
1959
|
-
type
|
|
1960
|
-
declare const
|
|
1961
|
-
|
|
1962
|
-
type H3TableSourceOptions = SourceOptions & TableSourceOptions & AggregationOptions & FilterOptions;
|
|
1963
|
-
type H3TableSourceResponse = TilejsonResult & WidgetTableSourceResult;
|
|
1964
|
-
declare const h3TableSource: (options: H3TableSourceOptions) => Promise<H3TableSourceResponse>;
|
|
1965
|
-
|
|
1966
|
-
type H3TilesetSourceOptions = SourceOptions & TilesetSourceOptions;
|
|
1967
|
-
type H3TilesetSourceResponse = TilejsonResult & WidgetTilesetSourceResult;
|
|
1968
|
-
declare const h3TilesetSource: (options: H3TilesetSourceOptions) => Promise<H3TilesetSourceResponse>;
|
|
1969
|
-
|
|
1970
|
-
type RasterSourceOptions = SourceOptions & TilesetSourceOptions & FilterOptions;
|
|
1971
|
-
type RasterSourceResponse = TilejsonResult & WidgetRasterSourceResult;
|
|
1972
|
-
declare const rasterSource: (options: RasterSourceOptions) => Promise<RasterSourceResponse>;
|
|
1973
|
-
|
|
1974
|
-
type QuadbinQuerySourceOptions = SourceOptions & QuerySourceOptions & AggregationOptions & FilterOptions;
|
|
1975
|
-
type QuadbinQuerySourceResponse = TilejsonResult & WidgetQuerySourceResult;
|
|
1976
|
-
declare const quadbinQuerySource: (options: QuadbinQuerySourceOptions) => Promise<QuadbinQuerySourceResponse>;
|
|
1977
|
-
|
|
1978
|
-
type QuadbinTableSourceOptions = SourceOptions & TableSourceOptions & AggregationOptions & FilterOptions;
|
|
1979
|
-
type QuadbinTableSourceResponse = TilejsonResult & WidgetTableSourceResult;
|
|
1980
|
-
declare const quadbinTableSource: (options: QuadbinTableSourceOptions) => Promise<QuadbinTableSourceResponse>;
|
|
1981
|
-
|
|
1982
|
-
type QuadbinTilesetSourceOptions = SourceOptions & TilesetSourceOptions;
|
|
1983
|
-
type QuadbinTilesetSourceResponse = TilejsonResult & WidgetTilesetSourceResult;
|
|
1984
|
-
declare const quadbinTilesetSource: (options: QuadbinTilesetSourceOptions) => Promise<QuadbinTilesetSourceResponse>;
|
|
1985
|
-
|
|
1986
|
-
type VectorQuerySourceOptions = SourceOptions & QuerySourceOptions & FilterOptions & ColumnsOption;
|
|
1987
|
-
type VectorQuerySourceResponse = TilejsonResult & WidgetQuerySourceResult;
|
|
1988
|
-
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>;
|
|
1989
1942
|
|
|
1990
1943
|
type VectorTableSourceOptions = SourceOptions & TableSourceOptions & FilterOptions & ColumnsOption;
|
|
1991
1944
|
type VectorTableSourceResponse = TilejsonResult & WidgetTableSourceResult;
|
|
1992
1945
|
declare const vectorTableSource: (options: VectorTableSourceOptions) => Promise<VectorTableSourceResponse>;
|
|
1993
1946
|
|
|
1994
|
-
type
|
|
1995
|
-
type
|
|
1996
|
-
declare const
|
|
1947
|
+
type VectorQuerySourceOptions = SourceOptions & QuerySourceOptions & FilterOptions & ColumnsOption;
|
|
1948
|
+
type VectorQuerySourceResponse = TilejsonResult & WidgetQuerySourceResult;
|
|
1949
|
+
declare const vectorQuerySource: (options: VectorQuerySourceOptions) => Promise<VectorQuerySourceResponse>;
|
|
1997
1950
|
|
|
1998
|
-
type
|
|
1951
|
+
type TrajectoryTableSourceOptions = SourceOptions & TableSourceOptions & ColumnsOption & {
|
|
1999
1952
|
/** Column name containing the trajectory identifier */
|
|
2000
1953
|
trajectoryIdColumn: string;
|
|
2001
1954
|
/** Column name containing the timestamp */
|
|
2002
1955
|
timestampColumn: string;
|
|
2003
1956
|
};
|
|
2004
|
-
type
|
|
1957
|
+
type TrajectoryTableSourceResponse = TilejsonResult & WidgetTableSourceResult & {
|
|
2005
1958
|
timestampRange: RangeResponse;
|
|
2006
1959
|
};
|
|
2007
|
-
declare const
|
|
1960
|
+
declare const trajectoryTableSource: (options: TrajectoryTableSourceOptions) => Promise<TrajectoryTableSourceResponse>;
|
|
2008
1961
|
|
|
2009
|
-
type
|
|
1962
|
+
type TrajectoryQuerySourceOptions = SourceOptions & QuerySourceOptions & ColumnsOption & {
|
|
2010
1963
|
/** Column name containing the trajectory identifier */
|
|
2011
1964
|
trajectoryIdColumn: string;
|
|
2012
1965
|
/** Column name containing the timestamp */
|
|
2013
1966
|
timestampColumn: string;
|
|
2014
1967
|
};
|
|
2015
|
-
type
|
|
1968
|
+
type TrajectoryQuerySourceResponse = TilejsonResult & WidgetQuerySourceResult & {
|
|
2016
1969
|
timestampRange: RangeResponse;
|
|
2017
1970
|
};
|
|
2018
|
-
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
|
+
};
|
|
2019
2036
|
|
|
2020
2037
|
/**
|
|
2021
2038
|
* Resolution conversion function. Takes a WebMercatorViewport and returns
|
|
@@ -2167,4 +2184,4 @@ declare function getColumnNameFromGeoColumn(geoColumn: string | null | undefined
|
|
|
2167
2184
|
*/
|
|
2168
2185
|
declare function getSpatialIndexFromGeoColumn(geoColumn: string): SpatialIndex | null;
|
|
2169
2186
|
|
|
2170
|
-
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 };
|