@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.
|
@@ -72,3 +72,13 @@ export declare abstract class WidgetSource<Props extends WidgetSourceProps> {
|
|
|
72
72
|
*/
|
|
73
73
|
abstract getTimeSeries(options: TimeSeriesRequestOptions): Promise<TimeSeriesResponse>;
|
|
74
74
|
}
|
|
75
|
+
/**
|
|
76
|
+
* @todo TODO(v0.5): Remove WidgetBaseSourceProps alias
|
|
77
|
+
* @deprecated Use WidgetSourceProps.
|
|
78
|
+
*/
|
|
79
|
+
export type WidgetBaseSourceProps = WidgetSourceProps;
|
|
80
|
+
/**
|
|
81
|
+
* @todo TODO(v0.5): Remove WidgetBaseSource alias.
|
|
82
|
+
* @deprecated Use WidgetSourceP.
|
|
83
|
+
*/
|
|
84
|
+
export declare const WidgetBaseSource: typeof WidgetSource;
|
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.7
|
|
11
|
+
"version": "0.4.7",
|
|
12
12
|
"license": "MIT",
|
|
13
13
|
"publishConfig": {
|
|
14
14
|
"access": "public"
|
|
@@ -112,6 +112,5 @@
|
|
|
112
112
|
"resolutions": {
|
|
113
113
|
"@carto/api-client": "portal:./",
|
|
114
114
|
"rollup": "^4.20.0"
|
|
115
|
-
}
|
|
116
|
-
"stableVersion": "0.4.7"
|
|
115
|
+
}
|
|
117
116
|
}
|
|
@@ -171,3 +171,15 @@ export abstract class WidgetSource<Props extends WidgetSourceProps> {
|
|
|
171
171
|
options: TimeSeriesRequestOptions
|
|
172
172
|
): Promise<TimeSeriesResponse>;
|
|
173
173
|
}
|
|
174
|
+
|
|
175
|
+
/**
|
|
176
|
+
* @todo TODO(v0.5): Remove WidgetBaseSourceProps alias
|
|
177
|
+
* @deprecated Use WidgetSourceProps.
|
|
178
|
+
*/
|
|
179
|
+
export type WidgetBaseSourceProps = WidgetSourceProps;
|
|
180
|
+
|
|
181
|
+
/**
|
|
182
|
+
* @todo TODO(v0.5): Remove WidgetBaseSource alias.
|
|
183
|
+
* @deprecated Use WidgetSourceP.
|
|
184
|
+
*/
|
|
185
|
+
export const WidgetBaseSource = WidgetSource;
|