tencentcloud-sdk-nodejs-iotexplorer 4.0.1054 → 4.1.2
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/README.md +18 -4
- package/es/index.js +1 -0
- package/es/services/index.js +1 -0
- package/es/services/iotexplorer/index.js +4 -0
- package/es/services/iotexplorer/v20190423/index.js +6 -0
- package/es/services/iotexplorer/v20190423/iotexplorer_client.js +486 -0
- package/es/services/iotexplorer/v20190423/iotexplorer_models.js +0 -0
- package/package.json +16 -5
- package/tencentcloud/services/iotexplorer/v20190423/index.js +2 -1
- package/tencentcloud/services/iotexplorer/v20190423/iotexplorer_client.d.ts +5 -1
- package/tencentcloud/services/iotexplorer/v20190423/iotexplorer_client.js +8 -1
- package/tencentcloud/services/iotexplorer/v20190423/iotexplorer_models.d.ts +35 -0
- package/index.d.ts +0 -2
- package/index.js +0 -6
- package/prettier.config.js +0 -38
- package/src/index.ts +0 -1
- package/src/services/index.ts +0 -1
- package/src/services/iotexplorer/index.ts +0 -5
- package/src/services/iotexplorer/v20190423/index.ts +0 -6
- package/src/services/iotexplorer/v20190423/iotexplorer_client.ts +0 -2010
- package/src/services/iotexplorer/v20190423/iotexplorer_models.ts +0 -8199
- package/tsconfig.json +0 -33
- package/typings/index.d.ts +0 -2
|
@@ -1,6 +1,7 @@
|
|
|
1
1
|
"use strict";
|
|
2
2
|
Object.defineProperty(exports, "__esModule", { value: true });
|
|
3
3
|
exports.Client = void 0;
|
|
4
|
+
const tslib_1 = require("tslib");
|
|
4
5
|
/* eslint-disable @typescript-eslint/no-unused-vars */
|
|
5
6
|
/*
|
|
6
7
|
* Copyright (c) 2018 THL A29 Limited, a Tencent company. All Rights Reserved.
|
|
@@ -18,7 +19,7 @@ exports.Client = void 0;
|
|
|
18
19
|
* specific language governing permissions and limitations
|
|
19
20
|
* under the License.
|
|
20
21
|
*/
|
|
21
|
-
const TencentCloudCommon = require("tencentcloud-sdk-nodejs-common");
|
|
22
|
+
const TencentCloudCommon = tslib_1.__importStar(require("tencentcloud-sdk-nodejs-common"));
|
|
22
23
|
/**
|
|
23
24
|
* iotexplorer client
|
|
24
25
|
* @class
|
|
@@ -219,6 +220,12 @@ class Client extends TencentCloudCommon.AbstractClient {
|
|
|
219
220
|
async DescribeFenceEventList(req, cb) {
|
|
220
221
|
return this.request("DescribeFenceEventList", req, cb);
|
|
221
222
|
}
|
|
223
|
+
/**
|
|
224
|
+
* 获取未绑定的设备列表
|
|
225
|
+
*/
|
|
226
|
+
async DescribeUnbindedDevices(req, cb) {
|
|
227
|
+
return this.request("DescribeUnbindedDevices", req, cb);
|
|
228
|
+
}
|
|
222
229
|
/**
|
|
223
230
|
* 开通云存服务
|
|
224
231
|
*/
|
|
@@ -950,6 +950,23 @@ export interface FenceEventItem {
|
|
|
950
950
|
*/
|
|
951
951
|
Data: FenceAlarmPoint;
|
|
952
952
|
}
|
|
953
|
+
/**
|
|
954
|
+
* DescribeUnbindedDevices请求参数结构体
|
|
955
|
+
*/
|
|
956
|
+
export interface DescribeUnbindedDevicesRequest {
|
|
957
|
+
/**
|
|
958
|
+
* 产品ID
|
|
959
|
+
*/
|
|
960
|
+
ProductId: string;
|
|
961
|
+
/**
|
|
962
|
+
* 分页偏移量
|
|
963
|
+
*/
|
|
964
|
+
Offset: number;
|
|
965
|
+
/**
|
|
966
|
+
* 分页的页大小
|
|
967
|
+
*/
|
|
968
|
+
Limit: number;
|
|
969
|
+
}
|
|
953
970
|
/**
|
|
954
971
|
* 已注册通信类型信息
|
|
955
972
|
*/
|
|
@@ -3275,6 +3292,24 @@ export interface DescribePositionFenceListRequest {
|
|
|
3275
3292
|
*/
|
|
3276
3293
|
Limit?: number;
|
|
3277
3294
|
}
|
|
3295
|
+
/**
|
|
3296
|
+
* DescribeUnbindedDevices返回参数结构体
|
|
3297
|
+
*/
|
|
3298
|
+
export interface DescribeUnbindedDevicesResponse {
|
|
3299
|
+
/**
|
|
3300
|
+
* 未绑定的设备列表
|
|
3301
|
+
注意:此字段可能返回 null,表示取不到有效值。
|
|
3302
|
+
*/
|
|
3303
|
+
UnbindedDevices: Array<BindDeviceInfo>;
|
|
3304
|
+
/**
|
|
3305
|
+
* 设备的总数量
|
|
3306
|
+
*/
|
|
3307
|
+
Total: number;
|
|
3308
|
+
/**
|
|
3309
|
+
* 唯一请求 ID,由服务端生成,每次请求都会返回(若请求因其他原因未能抵达服务端,则该次请求不会获得 RequestId)。定位问题时需要提供该次请求的 RequestId。
|
|
3310
|
+
*/
|
|
3311
|
+
RequestId?: string;
|
|
3312
|
+
}
|
|
3278
3313
|
/**
|
|
3279
3314
|
* InvokeCloudStorageAIServiceTask请求参数结构体
|
|
3280
3315
|
*/
|
package/index.d.ts
DELETED
package/index.js
DELETED
package/prettier.config.js
DELETED
|
@@ -1,38 +0,0 @@
|
|
|
1
|
-
// prettier.config.js
|
|
2
|
-
module.exports = {
|
|
3
|
-
// 一行最多 100 字符
|
|
4
|
-
printWidth: 100,
|
|
5
|
-
// 使用 4 个空格缩进
|
|
6
|
-
tabWidth: 2,
|
|
7
|
-
// 不使用缩进符,而使用空格
|
|
8
|
-
useTabs: false,
|
|
9
|
-
// 行尾需要有分号
|
|
10
|
-
semi: false,
|
|
11
|
-
// 使用单引号
|
|
12
|
-
singleQuote: false,
|
|
13
|
-
// 对象的 key 仅在必要时用引号
|
|
14
|
-
quoteProps: "as-needed",
|
|
15
|
-
// jsx 不使用单引号,而使用双引号
|
|
16
|
-
jsxSingleQuote: false,
|
|
17
|
-
// 末尾不需要逗号
|
|
18
|
-
trailingComma: "es5",
|
|
19
|
-
// 大括号内的首尾需要空格
|
|
20
|
-
bracketSpacing: true,
|
|
21
|
-
// jsx 标签的反尖括号需要换行
|
|
22
|
-
jsxBracketSameLine: false,
|
|
23
|
-
// 箭头函数,只有一个参数的时候,也需要括号
|
|
24
|
-
arrowParens: "always",
|
|
25
|
-
// 每个文件格式化的范围是文件的全部内容
|
|
26
|
-
rangeStart: 0,
|
|
27
|
-
rangeEnd: Infinity,
|
|
28
|
-
// 不需要写文件开头的 @prettier
|
|
29
|
-
requirePragma: false,
|
|
30
|
-
// 不需要自动在文件开头插入 @prettier
|
|
31
|
-
insertPragma: false,
|
|
32
|
-
// 使用默认的折行标准
|
|
33
|
-
proseWrap: "preserve",
|
|
34
|
-
// 根据显示样式决定 html 要不要折行
|
|
35
|
-
htmlWhitespaceSensitivity: "css",
|
|
36
|
-
// 换行符使用 lf
|
|
37
|
-
endOfLine: "lf",
|
|
38
|
-
}
|
package/src/index.ts
DELETED
|
@@ -1 +0,0 @@
|
|
|
1
|
-
export * from "./services"
|
package/src/services/index.ts
DELETED
|
@@ -1 +0,0 @@
|
|
|
1
|
-
export { iotexplorer } from "./iotexplorer"
|