tencentcloud-sdk-nodejs 4.0.232 → 4.0.233
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 +200 -46
- package/package.json +1 -1
- package/products.md +153 -153
- package/src/common/sdk_version.ts +1 -1
- package/src/services/apigateway/v20180808/apigateway_client.ts +60 -17
- package/src/services/apigateway/v20180808/apigateway_models.ts +420 -70
- package/src/services/cme/v20191029/cme_models.ts +1 -1
- package/src/services/cvm/v20170312/cvm_client.ts +1 -0
- package/src/services/cvm/v20170312/cvm_models.ts +12 -9
- package/src/services/ecm/v20190719/ecm_models.ts +6 -0
- package/src/services/iotexplorer/v20190423/iotexplorer_client.ts +46 -9
- package/src/services/iotexplorer/v20190423/iotexplorer_models.ts +252 -61
- package/src/services/iotvideo/v20201215/iotvideo_models.ts +6 -1
- package/src/services/ocr/v20181119/ocr_client.ts +13 -0
- package/src/services/ocr/v20181119/ocr_models.ts +201 -25
- package/src/services/postgres/v20170312/postgres_models.ts +2 -2
- package/src/services/sms/v20210111/sms_models.ts +8 -6
- package/src/services/tcb/v20180608/tcb_models.ts +6 -1
- package/src/services/tiia/v20190529/tiia_client.ts +1 -0
- package/src/services/tiia/v20190529/tiia_models.ts +29 -0
- package/tencentcloud/common/sdk_version.d.ts +1 -1
- package/tencentcloud/common/sdk_version.js +1 -1
- package/tencentcloud/services/apigateway/v20180808/apigateway_client.d.ts +17 -5
- package/tencentcloud/services/apigateway/v20180808/apigateway_client.js +24 -6
- package/tencentcloud/services/apigateway/v20180808/apigateway_models.d.ts +354 -60
- package/tencentcloud/services/cme/v20191029/cme_models.d.ts +1 -1
- package/tencentcloud/services/cvm/v20170312/cvm_client.d.ts +1 -0
- package/tencentcloud/services/cvm/v20170312/cvm_client.js +1 -0
- package/tencentcloud/services/cvm/v20170312/cvm_models.d.ts +7 -4
- package/tencentcloud/services/ecm/v20190719/ecm_models.d.ts +5 -0
- package/tencentcloud/services/iotexplorer/v20190423/iotexplorer_client.d.ts +15 -3
- package/tencentcloud/services/iotexplorer/v20190423/iotexplorer_client.js +21 -3
- package/tencentcloud/services/iotexplorer/v20190423/iotexplorer_models.d.ts +214 -54
- package/tencentcloud/services/iotvideo/v20201215/iotvideo_models.d.ts +5 -1
- package/tencentcloud/services/ocr/v20181119/ocr_client.d.ts +6 -1
- package/tencentcloud/services/ocr/v20181119/ocr_client.js +7 -0
- package/tencentcloud/services/ocr/v20181119/ocr_models.d.ts +171 -25
- package/tencentcloud/services/postgres/v20170312/postgres_models.d.ts +2 -2
- package/tencentcloud/services/sms/v20210111/sms_models.d.ts +8 -6
- package/tencentcloud/services/tcb/v20180608/tcb_models.d.ts +5 -1
- package/tencentcloud/services/tiia/v20190529/tiia_models.d.ts +25 -0
- package/test/apigateway.v20180808.test.js +34 -4
- package/test/iotexplorer.v20190423.test.js +32 -2
- package/test/ocr.v20181119.test.js +10 -0
|
@@ -48,6 +48,7 @@ import {
|
|
|
48
48
|
CreateStudioProductRequest,
|
|
49
49
|
ProductModelDefinition,
|
|
50
50
|
ModifyFenceBindResponse,
|
|
51
|
+
CreateBatchProductionRequest,
|
|
51
52
|
DeletePositionFenceResponse,
|
|
52
53
|
FenceAlarmPoint,
|
|
53
54
|
UploadFirmwareRequest,
|
|
@@ -71,6 +72,7 @@ import {
|
|
|
71
72
|
DeviceDataHistoryItem,
|
|
72
73
|
ProductEntry,
|
|
73
74
|
ProjectEntryEx,
|
|
75
|
+
DescribeBatchProductionResponse,
|
|
74
76
|
ListTopicPolicyRequest,
|
|
75
77
|
DescribeLoRaFrequencyRequest,
|
|
76
78
|
DeleteDeviceRequest,
|
|
@@ -133,12 +135,13 @@ import {
|
|
|
133
135
|
CreatePositionFenceResponse,
|
|
134
136
|
TopicItem,
|
|
135
137
|
DescribeTopicRuleResponse,
|
|
136
|
-
|
|
138
|
+
PositionFenceInfo,
|
|
137
139
|
PositionSpaceInfo,
|
|
138
140
|
LoRaGatewayLocation,
|
|
139
141
|
DescribeDeviceRequest,
|
|
140
142
|
DescribePositionFenceListRequest,
|
|
141
143
|
ModifyTopicRuleResponse,
|
|
144
|
+
DescribeBatchProductionRequest,
|
|
142
145
|
CreateTopicPolicyRequest,
|
|
143
146
|
DirectBindDeviceInFamilyRequest,
|
|
144
147
|
DescribeLoRaFrequencyResponse,
|
|
@@ -146,6 +149,7 @@ import {
|
|
|
146
149
|
GetLoRaGatewayListRequest,
|
|
147
150
|
FenceEventItem,
|
|
148
151
|
DescribeProjectRequest,
|
|
152
|
+
ModifyLoRaFrequencyRequest,
|
|
149
153
|
UploadFirmwareResponse,
|
|
150
154
|
ModifyTopicPolicyRequest,
|
|
151
155
|
DeleteTopicRuleRequest,
|
|
@@ -156,9 +160,10 @@ import {
|
|
|
156
160
|
LoRaGatewayItem,
|
|
157
161
|
ControlDeviceDataResponse,
|
|
158
162
|
DescribeDeviceDataHistoryRequest,
|
|
163
|
+
UpdateFirmwareRequest,
|
|
159
164
|
DescribeStudioProductRequest,
|
|
160
165
|
CreatePositionSpaceResponse,
|
|
161
|
-
|
|
166
|
+
CreateBatchProductionResponse,
|
|
162
167
|
ModifyModelDefinitionResponse,
|
|
163
168
|
DeletePositionFenceRequest,
|
|
164
169
|
GetProjectListRequest,
|
|
@@ -169,6 +174,7 @@ import {
|
|
|
169
174
|
DeleteDevicesRequest,
|
|
170
175
|
AppDeviceInfo,
|
|
171
176
|
ModifyProjectResponse,
|
|
177
|
+
BatchProductionInfo,
|
|
172
178
|
DeleteStudioProductRequest,
|
|
173
179
|
ModifyProjectRequest,
|
|
174
180
|
ModifySpacePropertyResponse,
|
|
@@ -182,12 +188,13 @@ import {
|
|
|
182
188
|
CreateTopicRuleResponse,
|
|
183
189
|
DescribeDeviceDataResponse,
|
|
184
190
|
CreateTopicRuleRequest,
|
|
185
|
-
|
|
191
|
+
GetBatchProductionsListRequest,
|
|
186
192
|
DeleteDeviceResponse,
|
|
187
193
|
DeviceInfo,
|
|
188
194
|
ModifyLoRaFrequencyResponse,
|
|
189
195
|
ModifyLoRaGatewayRequest,
|
|
190
196
|
ListEventHistoryResponse,
|
|
197
|
+
GetBatchProductionsListResponse,
|
|
191
198
|
EnableTopicRuleRequest,
|
|
192
199
|
DescribeFirmwareTaskRequest,
|
|
193
200
|
CreatePositionSpaceRequest,
|
|
@@ -253,13 +260,13 @@ export class Client extends AbstractClient {
|
|
|
253
260
|
}
|
|
254
261
|
|
|
255
262
|
/**
|
|
256
|
-
*
|
|
263
|
+
* 获取量产详情信息。
|
|
257
264
|
*/
|
|
258
|
-
async
|
|
259
|
-
req:
|
|
260
|
-
cb?: (error: string, rep:
|
|
261
|
-
): Promise<
|
|
262
|
-
return this.request("
|
|
265
|
+
async DescribeBatchProduction(
|
|
266
|
+
req: DescribeBatchProductionRequest,
|
|
267
|
+
cb?: (error: string, rep: DescribeBatchProductionResponse) => void
|
|
268
|
+
): Promise<DescribeBatchProductionResponse> {
|
|
269
|
+
return this.request("DescribeBatchProduction", req, cb)
|
|
263
270
|
}
|
|
264
271
|
|
|
265
272
|
/**
|
|
@@ -462,6 +469,16 @@ export class Client extends AbstractClient {
|
|
|
462
469
|
return this.request("ModifyTopicRule", req, cb)
|
|
463
470
|
}
|
|
464
471
|
|
|
472
|
+
/**
|
|
473
|
+
* 根据设备产品ID、设备名称,获取设备上报的属性数据。
|
|
474
|
+
*/
|
|
475
|
+
async DescribeDeviceData(
|
|
476
|
+
req: DescribeDeviceDataRequest,
|
|
477
|
+
cb?: (error: string, rep: DescribeDeviceDataResponse) => void
|
|
478
|
+
): Promise<DescribeDeviceDataResponse> {
|
|
479
|
+
return this.request("DescribeDeviceData", req, cb)
|
|
480
|
+
}
|
|
481
|
+
|
|
465
482
|
/**
|
|
466
483
|
* 本接口(DescribeTopicPolicy)用于查看Topic详细信息
|
|
467
484
|
*/
|
|
@@ -802,6 +819,16 @@ export class Client extends AbstractClient {
|
|
|
802
819
|
return this.request("ModifyModelDefinition", req, cb)
|
|
803
820
|
}
|
|
804
821
|
|
|
822
|
+
/**
|
|
823
|
+
* 用于新建批量生产设备
|
|
824
|
+
*/
|
|
825
|
+
async CreateBatchProduction(
|
|
826
|
+
req: CreateBatchProductionRequest,
|
|
827
|
+
cb?: (error: string, rep: CreateBatchProductionResponse) => void
|
|
828
|
+
): Promise<CreateBatchProductionResponse> {
|
|
829
|
+
return this.request("CreateBatchProduction", req, cb)
|
|
830
|
+
}
|
|
831
|
+
|
|
805
832
|
/**
|
|
806
833
|
* 删除位置空间
|
|
807
834
|
*/
|
|
@@ -822,6 +849,16 @@ export class Client extends AbstractClient {
|
|
|
822
849
|
return this.request("DescribeModelDefinition", req, cb)
|
|
823
850
|
}
|
|
824
851
|
|
|
852
|
+
/**
|
|
853
|
+
* 列出量产数据列表信息。
|
|
854
|
+
*/
|
|
855
|
+
async GetBatchProductionsList(
|
|
856
|
+
req: GetBatchProductionsListRequest,
|
|
857
|
+
cb?: (error: string, rep: GetBatchProductionsListResponse) => void
|
|
858
|
+
): Promise<GetBatchProductionsListResponse> {
|
|
859
|
+
return this.request("GetBatchProductionsList", req, cb)
|
|
860
|
+
}
|
|
861
|
+
|
|
825
862
|
/**
|
|
826
863
|
* 为用户提供新建项目的能力,用于集中管理产品和应用。
|
|
827
864
|
*/
|
|
@@ -611,6 +611,46 @@ export interface ModifyFenceBindResponse {
|
|
|
611
611
|
RequestId?: string
|
|
612
612
|
}
|
|
613
613
|
|
|
614
|
+
/**
|
|
615
|
+
* CreateBatchProduction请求参数结构体
|
|
616
|
+
*/
|
|
617
|
+
export interface CreateBatchProductionRequest {
|
|
618
|
+
/**
|
|
619
|
+
* 项目ID
|
|
620
|
+
*/
|
|
621
|
+
ProjectId: string
|
|
622
|
+
|
|
623
|
+
/**
|
|
624
|
+
* 产品ID
|
|
625
|
+
*/
|
|
626
|
+
ProductId: string
|
|
627
|
+
|
|
628
|
+
/**
|
|
629
|
+
* 烧录方式,0为直接烧录,1为动态注册。
|
|
630
|
+
*/
|
|
631
|
+
BurnMethod: number
|
|
632
|
+
|
|
633
|
+
/**
|
|
634
|
+
* 生成方式,0为系统生成,1为文件上传。
|
|
635
|
+
*/
|
|
636
|
+
GenerationMethod: number
|
|
637
|
+
|
|
638
|
+
/**
|
|
639
|
+
* 文件上传URL,用于文件上传时填写。
|
|
640
|
+
*/
|
|
641
|
+
UploadUrl?: string
|
|
642
|
+
|
|
643
|
+
/**
|
|
644
|
+
* 量产数量,用于系统生成时填写。
|
|
645
|
+
*/
|
|
646
|
+
BatchCnt?: number
|
|
647
|
+
|
|
648
|
+
/**
|
|
649
|
+
* 是否生成二维码,0为不生成,1为生成。
|
|
650
|
+
*/
|
|
651
|
+
GenerationQRCode?: number
|
|
652
|
+
}
|
|
653
|
+
|
|
614
654
|
/**
|
|
615
655
|
* DeletePositionFence返回参数结构体
|
|
616
656
|
*/
|
|
@@ -1217,6 +1257,46 @@ export interface ProjectEntryEx {
|
|
|
1217
1257
|
DeviceCount: number
|
|
1218
1258
|
}
|
|
1219
1259
|
|
|
1260
|
+
/**
|
|
1261
|
+
* DescribeBatchProduction返回参数结构体
|
|
1262
|
+
*/
|
|
1263
|
+
export interface DescribeBatchProductionResponse {
|
|
1264
|
+
/**
|
|
1265
|
+
* 量产数量。
|
|
1266
|
+
*/
|
|
1267
|
+
BatchCnt?: number
|
|
1268
|
+
|
|
1269
|
+
/**
|
|
1270
|
+
* 烧录方式。
|
|
1271
|
+
*/
|
|
1272
|
+
BurnMethod?: number
|
|
1273
|
+
|
|
1274
|
+
/**
|
|
1275
|
+
* 创建时间。
|
|
1276
|
+
*/
|
|
1277
|
+
CreateTime?: number
|
|
1278
|
+
|
|
1279
|
+
/**
|
|
1280
|
+
* 下载URL。
|
|
1281
|
+
*/
|
|
1282
|
+
DownloadUrl?: string
|
|
1283
|
+
|
|
1284
|
+
/**
|
|
1285
|
+
* 生成方式。
|
|
1286
|
+
*/
|
|
1287
|
+
GenerationMethod?: number
|
|
1288
|
+
|
|
1289
|
+
/**
|
|
1290
|
+
* 上传URL。
|
|
1291
|
+
*/
|
|
1292
|
+
UploadUrl?: string
|
|
1293
|
+
|
|
1294
|
+
/**
|
|
1295
|
+
* 唯一请求 ID,每次请求都会返回。定位问题时需要提供该次请求的 RequestId。
|
|
1296
|
+
*/
|
|
1297
|
+
RequestId?: string
|
|
1298
|
+
}
|
|
1299
|
+
|
|
1220
1300
|
/**
|
|
1221
1301
|
* ListTopicPolicy请求参数结构体
|
|
1222
1302
|
*/
|
|
@@ -2597,33 +2677,23 @@ export interface DescribeTopicRuleResponse {
|
|
|
2597
2677
|
}
|
|
2598
2678
|
|
|
2599
2679
|
/**
|
|
2600
|
-
*
|
|
2680
|
+
* 围栏详细信息(包含创建时间及更新时间)
|
|
2601
2681
|
*/
|
|
2602
|
-
export interface
|
|
2603
|
-
/**
|
|
2604
|
-
* 产品ID
|
|
2605
|
-
*/
|
|
2606
|
-
ProductID: string
|
|
2607
|
-
|
|
2608
|
-
/**
|
|
2609
|
-
* 设备名
|
|
2610
|
-
*/
|
|
2611
|
-
DeviceName: string
|
|
2612
|
-
|
|
2682
|
+
export interface PositionFenceInfo {
|
|
2613
2683
|
/**
|
|
2614
|
-
*
|
|
2684
|
+
* 围栏信息
|
|
2615
2685
|
*/
|
|
2616
|
-
|
|
2686
|
+
GeoFence: PositionFenceItem
|
|
2617
2687
|
|
|
2618
2688
|
/**
|
|
2619
|
-
*
|
|
2689
|
+
* 围栏创建时间
|
|
2620
2690
|
*/
|
|
2621
|
-
|
|
2691
|
+
CreateTime: number
|
|
2622
2692
|
|
|
2623
2693
|
/**
|
|
2624
|
-
*
|
|
2694
|
+
* 围栏更新时间
|
|
2625
2695
|
*/
|
|
2626
|
-
|
|
2696
|
+
UpdateTime: number
|
|
2627
2697
|
}
|
|
2628
2698
|
|
|
2629
2699
|
/**
|
|
@@ -2757,6 +2827,21 @@ export interface ModifyTopicRuleResponse {
|
|
|
2757
2827
|
RequestId?: string
|
|
2758
2828
|
}
|
|
2759
2829
|
|
|
2830
|
+
/**
|
|
2831
|
+
* DescribeBatchProduction请求参数结构体
|
|
2832
|
+
*/
|
|
2833
|
+
export interface DescribeBatchProductionRequest {
|
|
2834
|
+
/**
|
|
2835
|
+
* 产品ID
|
|
2836
|
+
*/
|
|
2837
|
+
ProductId: string
|
|
2838
|
+
|
|
2839
|
+
/**
|
|
2840
|
+
* 量产ID
|
|
2841
|
+
*/
|
|
2842
|
+
BatchProductionId: string
|
|
2843
|
+
}
|
|
2844
|
+
|
|
2760
2845
|
/**
|
|
2761
2846
|
* CreateTopicPolicy请求参数结构体
|
|
2762
2847
|
*/
|
|
@@ -2918,6 +3003,56 @@ export interface DescribeProjectRequest {
|
|
|
2918
3003
|
ProjectId: string
|
|
2919
3004
|
}
|
|
2920
3005
|
|
|
3006
|
+
/**
|
|
3007
|
+
* ModifyLoRaFrequency请求参数结构体
|
|
3008
|
+
*/
|
|
3009
|
+
export interface ModifyLoRaFrequencyRequest {
|
|
3010
|
+
/**
|
|
3011
|
+
* 频点唯一ID
|
|
3012
|
+
*/
|
|
3013
|
+
FreqId?: string
|
|
3014
|
+
|
|
3015
|
+
/**
|
|
3016
|
+
* 频点名称
|
|
3017
|
+
*/
|
|
3018
|
+
FreqName?: string
|
|
3019
|
+
|
|
3020
|
+
/**
|
|
3021
|
+
* 频点描述
|
|
3022
|
+
*/
|
|
3023
|
+
Description?: string
|
|
3024
|
+
|
|
3025
|
+
/**
|
|
3026
|
+
* 数据上行信道
|
|
3027
|
+
*/
|
|
3028
|
+
ChannelsDataUp?: Array<number>
|
|
3029
|
+
|
|
3030
|
+
/**
|
|
3031
|
+
* 数据下行信道RX1
|
|
3032
|
+
*/
|
|
3033
|
+
ChannelsDataRX1?: Array<number>
|
|
3034
|
+
|
|
3035
|
+
/**
|
|
3036
|
+
* 数据下行信道RX2
|
|
3037
|
+
*/
|
|
3038
|
+
ChannelsDataRX2?: Array<number>
|
|
3039
|
+
|
|
3040
|
+
/**
|
|
3041
|
+
* 入网上行信道
|
|
3042
|
+
*/
|
|
3043
|
+
ChannelsJoinUp?: Array<number>
|
|
3044
|
+
|
|
3045
|
+
/**
|
|
3046
|
+
* 入网下行信道RX1
|
|
3047
|
+
*/
|
|
3048
|
+
ChannelsJoinRX1?: Array<number>
|
|
3049
|
+
|
|
3050
|
+
/**
|
|
3051
|
+
* 入网下行信道RX2
|
|
3052
|
+
*/
|
|
3053
|
+
ChannelsJoinRX2?: Array<number>
|
|
3054
|
+
}
|
|
3055
|
+
|
|
2921
3056
|
/**
|
|
2922
3057
|
* UploadFirmware返回参数结构体
|
|
2923
3058
|
*/
|
|
@@ -3165,6 +3300,36 @@ export interface DescribeDeviceDataHistoryRequest {
|
|
|
3165
3300
|
Context?: string
|
|
3166
3301
|
}
|
|
3167
3302
|
|
|
3303
|
+
/**
|
|
3304
|
+
* UpdateFirmware请求参数结构体
|
|
3305
|
+
*/
|
|
3306
|
+
export interface UpdateFirmwareRequest {
|
|
3307
|
+
/**
|
|
3308
|
+
* 产品ID
|
|
3309
|
+
*/
|
|
3310
|
+
ProductID: string
|
|
3311
|
+
|
|
3312
|
+
/**
|
|
3313
|
+
* 设备名
|
|
3314
|
+
*/
|
|
3315
|
+
DeviceName: string
|
|
3316
|
+
|
|
3317
|
+
/**
|
|
3318
|
+
* 固件新的版本号
|
|
3319
|
+
*/
|
|
3320
|
+
FirmwareVersion: string
|
|
3321
|
+
|
|
3322
|
+
/**
|
|
3323
|
+
* 固件原版本号
|
|
3324
|
+
*/
|
|
3325
|
+
FirmwareOriVersion: string
|
|
3326
|
+
|
|
3327
|
+
/**
|
|
3328
|
+
* 固件升级方式;0 静默升级 1 用户确认升级 不填默认静默升级
|
|
3329
|
+
*/
|
|
3330
|
+
UpgradeMethod?: number
|
|
3331
|
+
}
|
|
3332
|
+
|
|
3168
3333
|
/**
|
|
3169
3334
|
* DescribeStudioProduct请求参数结构体
|
|
3170
3335
|
*/
|
|
@@ -3192,53 +3357,28 @@ export interface CreatePositionSpaceResponse {
|
|
|
3192
3357
|
}
|
|
3193
3358
|
|
|
3194
3359
|
/**
|
|
3195
|
-
*
|
|
3360
|
+
* CreateBatchProduction返回参数结构体
|
|
3196
3361
|
*/
|
|
3197
|
-
export interface
|
|
3198
|
-
/**
|
|
3199
|
-
* 频点唯一ID
|
|
3200
|
-
*/
|
|
3201
|
-
FreqId?: string
|
|
3202
|
-
|
|
3203
|
-
/**
|
|
3204
|
-
* 频点名称
|
|
3205
|
-
*/
|
|
3206
|
-
FreqName?: string
|
|
3207
|
-
|
|
3362
|
+
export interface CreateBatchProductionResponse {
|
|
3208
3363
|
/**
|
|
3209
|
-
*
|
|
3210
|
-
*/
|
|
3211
|
-
Description?: string
|
|
3212
|
-
|
|
3213
|
-
/**
|
|
3214
|
-
* 数据上行信道
|
|
3215
|
-
*/
|
|
3216
|
-
ChannelsDataUp?: Array<number>
|
|
3217
|
-
|
|
3218
|
-
/**
|
|
3219
|
-
* 数据下行信道RX1
|
|
3220
|
-
*/
|
|
3221
|
-
ChannelsDataRX1?: Array<number>
|
|
3222
|
-
|
|
3223
|
-
/**
|
|
3224
|
-
* 数据下行信道RX2
|
|
3364
|
+
* 项目Id
|
|
3225
3365
|
*/
|
|
3226
|
-
|
|
3366
|
+
ProjectId: string
|
|
3227
3367
|
|
|
3228
3368
|
/**
|
|
3229
|
-
*
|
|
3369
|
+
* 产品Id
|
|
3230
3370
|
*/
|
|
3231
|
-
|
|
3371
|
+
ProductId: string
|
|
3232
3372
|
|
|
3233
3373
|
/**
|
|
3234
|
-
*
|
|
3374
|
+
* 量产id
|
|
3235
3375
|
*/
|
|
3236
|
-
|
|
3376
|
+
BatchProductionId: string
|
|
3237
3377
|
|
|
3238
3378
|
/**
|
|
3239
|
-
*
|
|
3379
|
+
* 唯一请求 ID,每次请求都会返回。定位问题时需要提供该次请求的 RequestId。
|
|
3240
3380
|
*/
|
|
3241
|
-
|
|
3381
|
+
RequestId?: string
|
|
3242
3382
|
}
|
|
3243
3383
|
|
|
3244
3384
|
/**
|
|
@@ -3456,6 +3596,36 @@ export interface ModifyProjectResponse {
|
|
|
3456
3596
|
RequestId?: string
|
|
3457
3597
|
}
|
|
3458
3598
|
|
|
3599
|
+
/**
|
|
3600
|
+
* 获取返回列表的详情。
|
|
3601
|
+
*/
|
|
3602
|
+
export interface BatchProductionInfo {
|
|
3603
|
+
/**
|
|
3604
|
+
* 量产ID
|
|
3605
|
+
*/
|
|
3606
|
+
BatchProductionId: string
|
|
3607
|
+
|
|
3608
|
+
/**
|
|
3609
|
+
* 产品ID
|
|
3610
|
+
*/
|
|
3611
|
+
ProductId: string
|
|
3612
|
+
|
|
3613
|
+
/**
|
|
3614
|
+
* 烧录方式
|
|
3615
|
+
*/
|
|
3616
|
+
BurnMethod: number
|
|
3617
|
+
|
|
3618
|
+
/**
|
|
3619
|
+
* 创建时间
|
|
3620
|
+
*/
|
|
3621
|
+
CreateTime: number
|
|
3622
|
+
|
|
3623
|
+
/**
|
|
3624
|
+
* 产品名称
|
|
3625
|
+
*/
|
|
3626
|
+
ProductName: string
|
|
3627
|
+
}
|
|
3628
|
+
|
|
3459
3629
|
/**
|
|
3460
3630
|
* DeleteStudioProduct请求参数结构体
|
|
3461
3631
|
*/
|
|
@@ -3642,23 +3812,23 @@ export interface CreateTopicRuleRequest {
|
|
|
3642
3812
|
}
|
|
3643
3813
|
|
|
3644
3814
|
/**
|
|
3645
|
-
*
|
|
3815
|
+
* GetBatchProductionsList请求参数结构体
|
|
3646
3816
|
*/
|
|
3647
|
-
export interface
|
|
3817
|
+
export interface GetBatchProductionsListRequest {
|
|
3648
3818
|
/**
|
|
3649
|
-
*
|
|
3819
|
+
* 项目ID
|
|
3650
3820
|
*/
|
|
3651
|
-
|
|
3821
|
+
ProjectId: string
|
|
3652
3822
|
|
|
3653
3823
|
/**
|
|
3654
|
-
*
|
|
3824
|
+
* 偏移量
|
|
3655
3825
|
*/
|
|
3656
|
-
|
|
3826
|
+
Offset?: number
|
|
3657
3827
|
|
|
3658
3828
|
/**
|
|
3659
|
-
*
|
|
3829
|
+
* 返回数量限制
|
|
3660
3830
|
*/
|
|
3661
|
-
|
|
3831
|
+
Limit?: number
|
|
3662
3832
|
}
|
|
3663
3833
|
|
|
3664
3834
|
/**
|
|
@@ -3900,6 +4070,27 @@ export interface ListEventHistoryResponse {
|
|
|
3900
4070
|
RequestId?: string
|
|
3901
4071
|
}
|
|
3902
4072
|
|
|
4073
|
+
/**
|
|
4074
|
+
* GetBatchProductionsList返回参数结构体
|
|
4075
|
+
*/
|
|
4076
|
+
export interface GetBatchProductionsListResponse {
|
|
4077
|
+
/**
|
|
4078
|
+
* 返回详情信息。
|
|
4079
|
+
注意:此字段可能返回 null,表示取不到有效值。
|
|
4080
|
+
*/
|
|
4081
|
+
BatchProductions?: Array<BatchProductionInfo>
|
|
4082
|
+
|
|
4083
|
+
/**
|
|
4084
|
+
* 返回数量。
|
|
4085
|
+
*/
|
|
4086
|
+
TotalCnt?: number
|
|
4087
|
+
|
|
4088
|
+
/**
|
|
4089
|
+
* 唯一请求 ID,每次请求都会返回。定位问题时需要提供该次请求的 RequestId。
|
|
4090
|
+
*/
|
|
4091
|
+
RequestId?: string
|
|
4092
|
+
}
|
|
4093
|
+
|
|
3903
4094
|
/**
|
|
3904
4095
|
* EnableTopicRule请求参数结构体
|
|
3905
4096
|
*/
|
|
@@ -2201,6 +2201,11 @@ export interface DescribeCloudStorageEventsRequest {
|
|
|
2201
2201
|
* 用户ID
|
|
2202
2202
|
*/
|
|
2203
2203
|
UserId?: string
|
|
2204
|
+
|
|
2205
|
+
/**
|
|
2206
|
+
* 通道ID 非NVR设备则不填 NVR设备则必填 默认为无
|
|
2207
|
+
*/
|
|
2208
|
+
ChannelId?: number
|
|
2204
2209
|
}
|
|
2205
2210
|
|
|
2206
2211
|
/**
|
|
@@ -2778,7 +2783,7 @@ export interface DescribeCloudStorageEventsResponse {
|
|
|
2778
2783
|
Listover: boolean
|
|
2779
2784
|
|
|
2780
2785
|
/**
|
|
2781
|
-
*
|
|
2786
|
+
* 内部结果数量,并不等同于事件总数。
|
|
2782
2787
|
*/
|
|
2783
2788
|
Total: number
|
|
2784
2789
|
|
|
@@ -103,6 +103,7 @@ import {
|
|
|
103
103
|
InvoiceGeneralOCRResponse,
|
|
104
104
|
TaxiInvoiceOCRRequest,
|
|
105
105
|
PropOwnerCertOCRRequest,
|
|
106
|
+
RecognizeContainerOCRRequest,
|
|
106
107
|
TextDetectRequest,
|
|
107
108
|
VatRollInvoiceOCRResponse,
|
|
108
109
|
VatInvoiceVerifyRequest,
|
|
@@ -188,6 +189,7 @@ import {
|
|
|
188
189
|
QuotaInvoiceOCRResponse,
|
|
189
190
|
RideHailingTransportLicenseOCRResponse,
|
|
190
191
|
CandWord,
|
|
192
|
+
RecognizeContainerOCRResponse,
|
|
191
193
|
EnterpriseLicenseInfo,
|
|
192
194
|
InsuranceBillOCRRequest,
|
|
193
195
|
GeneralHandwritingOCRResponse,
|
|
@@ -457,6 +459,17 @@ export class Client extends AbstractClient {
|
|
|
457
459
|
return this.request("FlightInvoiceOCR", req, cb)
|
|
458
460
|
}
|
|
459
461
|
|
|
462
|
+
/**
|
|
463
|
+
* 本接口支持集装箱箱门信息识别,识别字段包括集装箱箱号、类型、总重量、有效承重、容量、自身重量,具备集装箱箱号、类型不完整或者不清晰的告警功能。
|
|
464
|
+
|
|
465
|
+
*/
|
|
466
|
+
async RecognizeContainerOCR(
|
|
467
|
+
req: RecognizeContainerOCRRequest,
|
|
468
|
+
cb?: (error: string, rep: RecognizeContainerOCRResponse) => void
|
|
469
|
+
): Promise<RecognizeContainerOCRResponse> {
|
|
470
|
+
return this.request("RecognizeContainerOCR", req, cb)
|
|
471
|
+
}
|
|
472
|
+
|
|
460
473
|
/**
|
|
461
474
|
* 本接口支持多张、多类型票据的混合检测和自动分类,返回对应票据类型。目前已支持增值税发票、增值税发票(卷票)、定额发票、通用机打发票、购车发票、火车票、出租车发票、机票行程单、汽车票、轮船票、过路过桥费发票、酒店账单、客运限额发票、购物小票、完税证明共15种票据。
|
|
462
475
|
*/
|