@carto/api-client 0.5.12 → 0.5.13

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.
@@ -110,6 +110,7 @@ __export(src_exports, {
110
110
  OPACITY_MAP: () => OPACITY_MAP,
111
111
  OTHERS_CATEGORY_NAME: () => OTHERS_CATEGORY_NAME,
112
112
  Provider: () => Provider,
113
+ RasterBandColorinterp: () => RasterBandColorinterp,
113
114
  SOURCE_DEFAULTS: () => SOURCE_DEFAULTS,
114
115
  SchemaFieldType: () => SchemaFieldType,
115
116
  SpatialIndex: () => SpatialIndex,
@@ -6251,6 +6252,18 @@ async function baseSource(endpoint, options, urlParameters) {
6251
6252
  return json;
6252
6253
  }
6253
6254
 
6255
+ // src/sources/constants.ts
6256
+ init_cjs_shims();
6257
+ var RasterBandColorinterp = /* @__PURE__ */ ((RasterBandColorinterp2) => {
6258
+ RasterBandColorinterp2["Gray"] = "gray";
6259
+ RasterBandColorinterp2["Red"] = "red";
6260
+ RasterBandColorinterp2["Green"] = "green";
6261
+ RasterBandColorinterp2["Blue"] = "blue";
6262
+ RasterBandColorinterp2["Alpha"] = "alpha";
6263
+ RasterBandColorinterp2["Palette"] = "palette";
6264
+ return RasterBandColorinterp2;
6265
+ })(RasterBandColorinterp || {});
6266
+
6254
6267
  // src/sources/boundary-query-source.ts
6255
6268
  init_cjs_shims();
6256
6269
  var boundaryQuerySource = async function(options) {
@@ -10499,6 +10512,7 @@ function hashBuckets(initialCount) {
10499
10512
  OPACITY_MAP,
10500
10513
  OTHERS_CATEGORY_NAME,
10501
10514
  Provider,
10515
+ RasterBandColorinterp,
10502
10516
  SOURCE_DEFAULTS,
10503
10517
  SchemaFieldType,
10504
10518
  SpatialIndex,