@carto/api-client 0.5.0 → 0.5.1-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/build/api-client.cjs +1 -1
- package/build/api-client.cjs.map +1 -1
- package/build/api-client.d.cts +1 -1
- package/build/api-client.d.ts +1 -1
- package/build/api-client.js +1 -1
- package/build/api-client.js.map +1 -1
- package/build/worker.js +1 -1
- package/build/worker.js.map +1 -1
- package/package.json +5 -4
- package/src/widget-sources/types.ts +1 -1
- package/src/widget-sources/widget-tileset-source-impl.ts +3 -3
package/build/worker.js
CHANGED
|
@@ -6409,7 +6409,7 @@ function assertColumn(features, ...columnArgs) {
|
|
|
6409
6409
|
const columns = Array.from(new Set(columnArgs.map(normalizeColumns).flat()));
|
|
6410
6410
|
const featureKeys = Object.keys(features[0]);
|
|
6411
6411
|
const invalidColumns = columns.filter(
|
|
6412
|
-
(column) => !featureKeys.includes(column)
|
|
6412
|
+
(column) => column && !featureKeys.includes(column)
|
|
6413
6413
|
);
|
|
6414
6414
|
if (invalidColumns.length) {
|
|
6415
6415
|
throw new InvalidColumnError(
|