@carto/api-client 0.4.7-alpha.0 → 0.4.7

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.
@@ -2184,6 +2184,10 @@ class WidgetSource {
2184
2184
  return getSpatialFiltersResolution(source, referenceViewState);
2185
2185
  }
2186
2186
  }
2187
+ /**
2188
+ * @todo TODO(v0.5): Remove WidgetBaseSource alias.
2189
+ * @deprecated Use WidgetSourceP.
2190
+ */
2187
2191
  WidgetSource.defaultProps = {
2188
2192
  apiVersion: exports.ApiVersion.V3,
2189
2193
  apiBaseUrl: DEFAULT_API_BASE_URL,
@@ -2191,6 +2195,7 @@ WidgetSource.defaultProps = {
2191
2195
  filters: {},
2192
2196
  filtersLogicalOperator: 'and'
2193
2197
  };
2198
+ const WidgetBaseSource = WidgetSource;
2194
2199
 
2195
2200
  /**
2196
2201
  * Return more descriptive error from API
@@ -4004,6 +4009,7 @@ exports.CartoAPIError = CartoAPIError;
4004
4009
  exports.DEFAULT_API_BASE_URL = DEFAULT_API_BASE_URL;
4005
4010
  exports.FEATURE_GEOM_PROPERTY = FEATURE_GEOM_PROPERTY;
4006
4011
  exports.SOURCE_DEFAULTS = SOURCE_DEFAULTS;
4012
+ exports.WidgetBaseSource = WidgetBaseSource;
4007
4013
  exports.WidgetQuerySource = WidgetQuerySource;
4008
4014
  exports.WidgetRemoteSource = WidgetRemoteSource;
4009
4015
  exports.WidgetSource = WidgetSource;