@idm-plugin/meteo2 0.8.3 → 0.8.5
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/dist/index.js +289 -284
- package/dist/index.umd.cjs +2 -2
- package/dist/tropicals/src/index.d.ts +6 -1
- package/package.json +2 -1
|
@@ -105,7 +105,12 @@ export declare class TropicalHelper {
|
|
|
105
105
|
* 1 热带风暴 Tropical Storm
|
|
106
106
|
* 2 强热带风暴 Severe Tropical Storm
|
|
107
107
|
*/
|
|
108
|
-
static parseTropicalType(kts: number):
|
|
108
|
+
static parseTropicalType(kts: number): {
|
|
109
|
+
type: string;
|
|
110
|
+
en: string;
|
|
111
|
+
cn: string;
|
|
112
|
+
i18n: string;
|
|
113
|
+
};
|
|
109
114
|
/**
|
|
110
115
|
* @param name
|
|
111
116
|
*/
|
package/package.json
CHANGED
|
@@ -1,7 +1,7 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@idm-plugin/meteo2",
|
|
3
3
|
"private": false,
|
|
4
|
-
"version": "0.8.
|
|
4
|
+
"version": "0.8.5",
|
|
5
5
|
"description": "idm plugin for meteo2(open meteo)",
|
|
6
6
|
"type": "module",
|
|
7
7
|
"keywords": [
|
|
@@ -28,6 +28,7 @@
|
|
|
28
28
|
"release": "yarn build && yarn publish --access public"
|
|
29
29
|
},
|
|
30
30
|
"dependencies": {
|
|
31
|
+
"@idm-plugin/geo": "^1.9.6",
|
|
31
32
|
"@log4js-node/log4js-api": "^1.0.2",
|
|
32
33
|
"got": "11",
|
|
33
34
|
"moment": "^2.30.1",
|