@deck.gl/carto 9.2.0-beta.3 → 9.2.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/package.json CHANGED
@@ -3,7 +3,7 @@
3
3
  "description": "CARTO official integration with Deck.gl. Build geospatial applications using CARTO and Deck.gl.",
4
4
  "license": "MIT",
5
5
  "type": "module",
6
- "version": "9.2.0-beta.3",
6
+ "version": "9.2.0",
7
7
  "publishConfig": {
8
8
  "access": "public"
9
9
  },
@@ -49,8 +49,8 @@
49
49
  "@loaders.gl/mvt": "^4.2.0",
50
50
  "@loaders.gl/schema": "^4.2.0",
51
51
  "@loaders.gl/tiles": "^4.2.0",
52
- "@luma.gl/core": "^9.2.0",
53
- "@luma.gl/shadertools": "^9.2.0",
52
+ "@luma.gl/core": "^9.2.2",
53
+ "@luma.gl/shadertools": "^9.2.2",
54
54
  "@math.gl/web-mercator": "^4.1.0",
55
55
  "@types/d3-array": "^3.0.2",
56
56
  "@types/d3-color": "^1.4.2",
@@ -73,7 +73,7 @@
73
73
  "@deck.gl/geo-layers": "^9.1.0",
74
74
  "@deck.gl/layers": "^9.1.0",
75
75
  "@loaders.gl/core": "^4.2.0",
76
- "@luma.gl/core": "^9.2.0"
76
+ "@luma.gl/core": "^9.2.2"
77
77
  },
78
- "gitHead": "15f2330ac9a9ec3ae449a1e5fad9b923eac60bf2"
78
+ "gitHead": "3db2198607e45909bf4013a272569583cff0edd0"
79
79
  }
package/src/index.ts CHANGED
@@ -70,3 +70,45 @@ export type {
70
70
  MapLibreBasemap as _MapLibreBasemap,
71
71
  GoogleBasemap as _GoogleBasemap
72
72
  } from './api/index';
73
+
74
+ // TODO(v10): Consider removing re-exports from '@carto/api-client' below.
75
+
76
+ export {
77
+ CARTO_SOURCES,
78
+ boundaryQuerySource,
79
+ boundaryTableSource,
80
+ h3QuerySource,
81
+ h3TableSource,
82
+ h3TilesetSource,
83
+ rasterSource,
84
+ quadbinQuerySource,
85
+ quadbinTableSource,
86
+ quadbinTilesetSource,
87
+ vectorQuerySource,
88
+ vectorTableSource,
89
+ vectorTilesetSource,
90
+ query,
91
+ CartoAPIError,
92
+ SOURCE_DEFAULTS
93
+ } from '@carto/api-client';
94
+
95
+ export type {
96
+ TilejsonResult,
97
+ SourceOptions,
98
+ QuerySourceOptions,
99
+ TableSourceOptions,
100
+ TilesetSourceOptions,
101
+ BoundaryQuerySourceOptions,
102
+ BoundaryTableSourceOptions,
103
+ H3QuerySourceOptions,
104
+ H3TableSourceOptions,
105
+ H3TilesetSourceOptions,
106
+ RasterSourceOptions,
107
+ QuadbinQuerySourceOptions,
108
+ QuadbinTableSourceOptions,
109
+ QuadbinTilesetSourceOptions,
110
+ VectorQuerySourceOptions,
111
+ VectorTableSourceOptions,
112
+ VectorTilesetSourceOptions,
113
+ QueryParameters
114
+ } from '@carto/api-client';