@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/api-client.cjs
CHANGED
|
@@ -12988,7 +12988,7 @@ function assertColumn(features, ...columnArgs) {
|
|
|
12988
12988
|
const columns = Array.from(new Set(columnArgs.map(normalizeColumns).flat()));
|
|
12989
12989
|
const featureKeys = Object.keys(features[0]);
|
|
12990
12990
|
const invalidColumns = columns.filter(
|
|
12991
|
-
(column) => !featureKeys.includes(column)
|
|
12991
|
+
(column) => column && !featureKeys.includes(column)
|
|
12992
12992
|
);
|
|
12993
12993
|
if (invalidColumns.length) {
|
|
12994
12994
|
throw new InvalidColumnError(
|