@carto/api-client 0.4.9-alpha.0 → 0.4.9
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
CHANGED
|
@@ -15,6 +15,13 @@ interface BaseRequestOptions {
|
|
|
15
15
|
signal?: AbortSignal;
|
|
16
16
|
spatialFilter?: SpatialFilter;
|
|
17
17
|
spatialFiltersMode?: SpatialFilterPolyfillMode;
|
|
18
|
+
/**
|
|
19
|
+
* Deprecated parameter previously used for H3 and Quadbin widgets. Now has
|
|
20
|
+
* no effect and will be removed in a future version.
|
|
21
|
+
* @deprecated Parameter has no effect.
|
|
22
|
+
* @todo TODO(v0.5): Remove spatialIndexReferenceViewState parameter.
|
|
23
|
+
*/
|
|
24
|
+
spatialIndexReferenceViewState?: ViewState;
|
|
18
25
|
/** Overrides source filters, if any. */
|
|
19
26
|
filters?: Filters;
|
|
20
27
|
filterOwner?: string;
|
package/package.json
CHANGED
|
@@ -8,7 +8,7 @@
|
|
|
8
8
|
"homepage": "https://github.com/CartoDB/carto-api-client#readme",
|
|
9
9
|
"author": "Don McCurdy <donmccurdy@carto.com>",
|
|
10
10
|
"packageManager": "yarn@4.3.1",
|
|
11
|
-
"version": "0.4.9
|
|
11
|
+
"version": "0.4.9",
|
|
12
12
|
"license": "MIT",
|
|
13
13
|
"publishConfig": {
|
|
14
14
|
"access": "public"
|
|
@@ -117,6 +117,5 @@
|
|
|
117
117
|
"resolutions": {
|
|
118
118
|
"@carto/api-client": "portal:./",
|
|
119
119
|
"rollup": "^4.20.0"
|
|
120
|
-
}
|
|
121
|
-
"stableVersion": "0.4.8"
|
|
120
|
+
}
|
|
122
121
|
}
|
|
@@ -24,6 +24,13 @@ interface BaseRequestOptions {
|
|
|
24
24
|
signal?: AbortSignal;
|
|
25
25
|
spatialFilter?: SpatialFilter;
|
|
26
26
|
spatialFiltersMode?: SpatialFilterPolyfillMode;
|
|
27
|
+
/**
|
|
28
|
+
* Deprecated parameter previously used for H3 and Quadbin widgets. Now has
|
|
29
|
+
* no effect and will be removed in a future version.
|
|
30
|
+
* @deprecated Parameter has no effect.
|
|
31
|
+
* @todo TODO(v0.5): Remove spatialIndexReferenceViewState parameter.
|
|
32
|
+
*/
|
|
33
|
+
spatialIndexReferenceViewState?: ViewState;
|
|
27
34
|
/** Overrides source filters, if any. */
|
|
28
35
|
filters?: Filters;
|
|
29
36
|
filterOwner?: string;
|