@etsoo/appscript 1.3.72 → 1.3.73
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.
|
@@ -7,6 +7,14 @@ export declare enum PlaceQueryOutput {
|
|
|
7
7
|
JSON = 0,
|
|
8
8
|
XML = 1
|
|
9
9
|
}
|
|
10
|
+
/**
|
|
11
|
+
* Place query API provider
|
|
12
|
+
* 地址查询接口供应商
|
|
13
|
+
*/
|
|
14
|
+
export declare enum PlaceQueryProvider {
|
|
15
|
+
Google = 0,
|
|
16
|
+
Baidu = 1
|
|
17
|
+
}
|
|
10
18
|
/**
|
|
11
19
|
* Place query request data
|
|
12
20
|
* 地址查询请求数据
|
|
@@ -22,6 +30,11 @@ export type PlaceQueryRQ = {
|
|
|
22
30
|
* 输出类型
|
|
23
31
|
*/
|
|
24
32
|
output?: PlaceQueryOutput;
|
|
33
|
+
/**
|
|
34
|
+
* API provider
|
|
35
|
+
* 接口供应商
|
|
36
|
+
*/
|
|
37
|
+
provider?: PlaceQueryProvider;
|
|
25
38
|
/**
|
|
26
39
|
* Language
|
|
27
40
|
* 语言
|
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
"use strict";
|
|
2
2
|
Object.defineProperty(exports, "__esModule", { value: true });
|
|
3
|
-
exports.PlaceQueryOutput = void 0;
|
|
3
|
+
exports.PlaceQueryProvider = exports.PlaceQueryOutput = void 0;
|
|
4
4
|
/**
|
|
5
5
|
* Place query output type
|
|
6
6
|
* 地址查询输出类型
|
|
@@ -10,3 +10,12 @@ var PlaceQueryOutput;
|
|
|
10
10
|
PlaceQueryOutput[PlaceQueryOutput["JSON"] = 0] = "JSON";
|
|
11
11
|
PlaceQueryOutput[PlaceQueryOutput["XML"] = 1] = "XML";
|
|
12
12
|
})(PlaceQueryOutput = exports.PlaceQueryOutput || (exports.PlaceQueryOutput = {}));
|
|
13
|
+
/**
|
|
14
|
+
* Place query API provider
|
|
15
|
+
* 地址查询接口供应商
|
|
16
|
+
*/
|
|
17
|
+
var PlaceQueryProvider;
|
|
18
|
+
(function (PlaceQueryProvider) {
|
|
19
|
+
PlaceQueryProvider[PlaceQueryProvider["Google"] = 0] = "Google";
|
|
20
|
+
PlaceQueryProvider[PlaceQueryProvider["Baidu"] = 1] = "Baidu";
|
|
21
|
+
})(PlaceQueryProvider = exports.PlaceQueryProvider || (exports.PlaceQueryProvider = {}));
|
|
@@ -7,6 +7,14 @@ export declare enum PlaceQueryOutput {
|
|
|
7
7
|
JSON = 0,
|
|
8
8
|
XML = 1
|
|
9
9
|
}
|
|
10
|
+
/**
|
|
11
|
+
* Place query API provider
|
|
12
|
+
* 地址查询接口供应商
|
|
13
|
+
*/
|
|
14
|
+
export declare enum PlaceQueryProvider {
|
|
15
|
+
Google = 0,
|
|
16
|
+
Baidu = 1
|
|
17
|
+
}
|
|
10
18
|
/**
|
|
11
19
|
* Place query request data
|
|
12
20
|
* 地址查询请求数据
|
|
@@ -22,6 +30,11 @@ export type PlaceQueryRQ = {
|
|
|
22
30
|
* 输出类型
|
|
23
31
|
*/
|
|
24
32
|
output?: PlaceQueryOutput;
|
|
33
|
+
/**
|
|
34
|
+
* API provider
|
|
35
|
+
* 接口供应商
|
|
36
|
+
*/
|
|
37
|
+
provider?: PlaceQueryProvider;
|
|
25
38
|
/**
|
|
26
39
|
* Language
|
|
27
40
|
* 语言
|
|
@@ -7,3 +7,12 @@ export var PlaceQueryOutput;
|
|
|
7
7
|
PlaceQueryOutput[PlaceQueryOutput["JSON"] = 0] = "JSON";
|
|
8
8
|
PlaceQueryOutput[PlaceQueryOutput["XML"] = 1] = "XML";
|
|
9
9
|
})(PlaceQueryOutput || (PlaceQueryOutput = {}));
|
|
10
|
+
/**
|
|
11
|
+
* Place query API provider
|
|
12
|
+
* 地址查询接口供应商
|
|
13
|
+
*/
|
|
14
|
+
export var PlaceQueryProvider;
|
|
15
|
+
(function (PlaceQueryProvider) {
|
|
16
|
+
PlaceQueryProvider[PlaceQueryProvider["Google"] = 0] = "Google";
|
|
17
|
+
PlaceQueryProvider[PlaceQueryProvider["Baidu"] = 1] = "Baidu";
|
|
18
|
+
})(PlaceQueryProvider || (PlaceQueryProvider = {}));
|
package/package.json
CHANGED
|
@@ -9,6 +9,15 @@ export enum PlaceQueryOutput {
|
|
|
9
9
|
XML
|
|
10
10
|
}
|
|
11
11
|
|
|
12
|
+
/**
|
|
13
|
+
* Place query API provider
|
|
14
|
+
* 地址查询接口供应商
|
|
15
|
+
*/
|
|
16
|
+
export enum PlaceQueryProvider {
|
|
17
|
+
Google,
|
|
18
|
+
Baidu
|
|
19
|
+
}
|
|
20
|
+
|
|
12
21
|
/**
|
|
13
22
|
* Place query request data
|
|
14
23
|
* 地址查询请求数据
|
|
@@ -26,6 +35,12 @@ export type PlaceQueryRQ = {
|
|
|
26
35
|
*/
|
|
27
36
|
output?: PlaceQueryOutput;
|
|
28
37
|
|
|
38
|
+
/**
|
|
39
|
+
* API provider
|
|
40
|
+
* 接口供应商
|
|
41
|
+
*/
|
|
42
|
+
provider?: PlaceQueryProvider;
|
|
43
|
+
|
|
29
44
|
/**
|
|
30
45
|
* Language
|
|
31
46
|
* 语言
|