@carto/api-client 0.5.0-alpha.9 → 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/CHANGELOG.md +30 -1
- package/build/api-client.cjs +15241 -3358
- package/build/api-client.cjs.map +1 -0
- package/build/api-client.d.cts +528 -181
- package/build/api-client.d.ts +528 -181
- package/build/api-client.js +14685 -2911
- package/build/api-client.js.map +1 -0
- package/build/worker.js +5117 -619
- package/build/worker.js.map +1 -0
- package/package.json +49 -32
- package/src/api/query.ts +2 -1
- package/src/constants-internal.ts +10 -0
- package/src/constants.ts +5 -1
- package/src/deck/get-data-filter-extension-props.ts +27 -9
- package/src/fetch-map/basemap-styles.ts +159 -0
- package/src/fetch-map/basemap.ts +120 -0
- package/src/fetch-map/fetch-map.ts +331 -0
- package/src/fetch-map/index.ts +13 -0
- package/src/fetch-map/layer-map.ts +461 -0
- package/src/fetch-map/parse-map.ts +425 -0
- package/src/fetch-map/source.ts +233 -0
- package/src/fetch-map/types.ts +268 -0
- package/src/fetch-map/utils.ts +69 -0
- package/src/filters/tileFeatures.ts +27 -10
- package/src/filters/tileFeaturesRaster.ts +122 -0
- package/src/index.ts +1 -0
- package/src/models/model.ts +0 -7
- package/src/sources/base-source.ts +4 -2
- package/src/sources/h3-tileset-source.ts +1 -1
- package/src/sources/quadbin-tileset-source.ts +1 -1
- package/src/sources/raster-source.ts +18 -5
- package/src/sources/types.ts +15 -8
- package/src/sources/vector-tileset-source.ts +1 -1
- package/src/spatial-index.ts +3 -84
- package/src/types.ts +16 -2
- package/src/widget-sources/index.ts +1 -0
- package/src/widget-sources/types.ts +1 -3
- package/src/widget-sources/widget-raster-source.ts +14 -0
- package/src/widget-sources/widget-remote-source.ts +16 -91
- package/src/widget-sources/widget-source.ts +9 -25
- package/src/widget-sources/widget-tileset-source-impl.ts +16 -19
- package/src/widget-sources/widget-tileset-source.ts +24 -21
- package/src/workers/widget-tileset-worker.ts +1 -1
package/CHANGELOG.md
CHANGED
|
@@ -1,9 +1,38 @@
|
|
|
1
1
|
# CHANGELOG
|
|
2
2
|
|
|
3
|
-
##
|
|
3
|
+
## 0.5 (Unreleased)
|
|
4
|
+
|
|
5
|
+
### 0.5.0 (Unreleased)
|
|
6
|
+
|
|
7
|
+
- BREAKING CHANGE: Replace 'abortController' with 'signal' parameter (#110)
|
|
8
|
+
- feat: Add widget calculations for tileset sources (#50)
|
|
9
|
+
- feat: Add widget calculations for raster sources (#119)
|
|
10
|
+
- feat: Enable Web Workers for local tileset and raster widget calculations (#119)
|
|
4
11
|
|
|
5
12
|
## 0.4
|
|
6
13
|
|
|
14
|
+
### 0.4.10
|
|
15
|
+
|
|
16
|
+
- Add fetchMap: (#126, #132, #133, #135, #136, #137, #138, #139)
|
|
17
|
+
- chore(widgets,deps): Clean up dataResolution references, examples, deps (#134)
|
|
18
|
+
|
|
19
|
+
### 0.4.9
|
|
20
|
+
|
|
21
|
+
- feat: Remove spatialIndexReferenceViewState param (#128)
|
|
22
|
+
|
|
23
|
+
### 0.4.8
|
|
24
|
+
|
|
25
|
+
- fix: Fix clientId defaults in query and source calls (#122)
|
|
26
|
+
|
|
27
|
+
### 0.4.7
|
|
28
|
+
|
|
29
|
+
- fix: Fix clientId customization in table and query widget calls (#120)
|
|
30
|
+
- feat: Add getDataFilterExtensionProps (#105, #113)
|
|
31
|
+
- feat: Add option to override HTTP headers in widget calls (#100, #111)
|
|
32
|
+
- feat: Add filters parameter in widget calls (#103)
|
|
33
|
+
- chore: Update to turf.js v7.2 (#98)
|
|
34
|
+
- chore: Enable compatibility with moduleResolution=nodenext (#106)
|
|
35
|
+
|
|
7
36
|
### 0.4.6
|
|
8
37
|
|
|
9
38
|
- chore: Add repository and homepage in npm package metadata
|