@carto/api-client 0.5.5-alpha.0 → 0.5.6-alpha.0
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 +9 -0
- package/build/api-client.cjs +123 -293
- package/build/api-client.cjs.map +1 -1
- package/build/api-client.d.cts +90 -23
- package/build/api-client.d.ts +90 -23
- package/build/api-client.js +123 -279
- package/build/api-client.js.map +1 -1
- package/build/worker.js +4 -0
- package/build/worker.js.map +1 -1
- package/package.json +1 -1
- package/src/fetch-map/layer-map.ts +33 -45
- package/src/fetch-map/parse-map.ts +97 -83
- package/src/fetch-map/types.ts +8 -8
- package/src/widget-sources/types.ts +59 -7
- package/src/widget-sources/widget-remote-source.ts +17 -2
- package/src/widget-sources/widget-tileset-source-impl.ts +4 -0
package/build/worker.js
CHANGED
|
@@ -6386,6 +6386,10 @@ var WidgetTilesetSourceImpl = class extends WidgetSource {
|
|
|
6386
6386
|
return { rows: [] };
|
|
6387
6387
|
}
|
|
6388
6388
|
assertColumn(this._features, column, operationColumn);
|
|
6389
|
+
assert(
|
|
6390
|
+
operation2 !== "custom",
|
|
6391
|
+
"Custom operation not supported for tilesets"
|
|
6392
|
+
);
|
|
6389
6393
|
const rows = groupValuesByDateColumn({
|
|
6390
6394
|
data: filteredFeatures,
|
|
6391
6395
|
valuesColumns: normalizeColumns(operationColumn || column),
|