@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.
@@ -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(