@gizone/rrs-client 4.1.0-alpha.110 → 4.1.0-alpha.112
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/.openapi-generator/FILES +1 -0
- package/apis/surveillance-api.ts +14 -30
- package/dist/apis/surveillance-api.d.ts +13 -30
- package/dist/apis/surveillance-api.js +5 -21
- package/dist/esm/apis/surveillance-api.d.ts +13 -30
- package/dist/esm/apis/surveillance-api.js +4 -20
- package/dist/esm/models/get-user-wx200-response.d.ts +6 -6
- package/dist/esm/models/index.d.ts +1 -0
- package/dist/esm/models/index.js +1 -0
- package/dist/esm/models/iot-device-status-enum.d.ts +22 -0
- package/dist/esm/models/iot-device-status-enum.js +23 -0
- package/dist/esm/models/ipage-access-vo.d.ts +6 -6
- package/dist/esm/models/surveillance-details-dto.d.ts +4 -9
- package/dist/esm/models/surveillance-details-dto.js +1 -5
- package/dist/esm/models/surveillance.d.ts +4 -9
- package/dist/esm/models/surveillance.js +1 -5
- package/dist/models/get-user-wx200-response.d.ts +6 -6
- package/dist/models/index.d.ts +1 -0
- package/dist/models/index.js +1 -0
- package/dist/models/iot-device-status-enum.d.ts +22 -0
- package/dist/models/iot-device-status-enum.js +26 -0
- package/dist/models/ipage-access-vo.d.ts +6 -6
- package/dist/models/surveillance-details-dto.d.ts +4 -9
- package/dist/models/surveillance-details-dto.js +0 -6
- package/dist/models/surveillance.d.ts +4 -9
- package/dist/models/surveillance.js +0 -6
- package/models/get-user-wx200-response.ts +6 -6
- package/models/index.ts +1 -0
- package/models/iot-device-status-enum.ts +32 -0
- package/models/ipage-access-vo.ts +6 -6
- package/models/surveillance-details-dto.ts +6 -10
- package/models/surveillance.ts +6 -10
- package/package.json +1 -1
package/.openapi-generator/FILES
CHANGED
|
@@ -375,6 +375,7 @@ models/internet-pan-perception-search-vo.ts
|
|
|
375
375
|
models/internet-set-vo.ts
|
|
376
376
|
models/internet-water-report-record-search-vo.ts
|
|
377
377
|
models/internet-water-search-vo.ts
|
|
378
|
+
models/iot-device-status-enum.ts
|
|
378
379
|
models/iot-gradient-alarm-add-or-update-vo.ts
|
|
379
380
|
models/iot-gradient-alarm-rule-settings-dto.ts
|
|
380
381
|
models/iot-gradient-alarm-rule-vo.ts
|
package/apis/surveillance-api.ts
CHANGED
|
@@ -24,6 +24,8 @@ import { BASE_PATH, COLLECTION_FORMATS, type RequestArgs, BaseAPI, RequiredError
|
|
|
24
24
|
// @ts-ignore
|
|
25
25
|
import type { FunctionalAreaEnum } from '../models';
|
|
26
26
|
// @ts-ignore
|
|
27
|
+
import type { IotDeviceStatusEnum } from '../models';
|
|
28
|
+
// @ts-ignore
|
|
27
29
|
import type { JsonResultBoolean } from '../models';
|
|
28
30
|
// @ts-ignore
|
|
29
31
|
import type { JsonResultListSpaceTreeDTO } from '../models';
|
|
@@ -163,7 +165,7 @@ export const SurveillanceApiAxiosParamCreator = function (configuration?: Config
|
|
|
163
165
|
* @param {number} parkId 园区ID
|
|
164
166
|
* @param {string} [surveillanceName] 监控名称
|
|
165
167
|
* @param {FunctionalAreaEnum} [functionalArea] 功能区
|
|
166
|
-
* @param {
|
|
168
|
+
* @param {IotDeviceStatusEnum} [surveillanceStatus] 监控状态
|
|
167
169
|
* @param {number} [spaceId] 空间ID
|
|
168
170
|
* @param {number} [flgFirst] 是否首级
|
|
169
171
|
* @param {number} [page] 当前页码
|
|
@@ -171,7 +173,7 @@ export const SurveillanceApiAxiosParamCreator = function (configuration?: Config
|
|
|
171
173
|
* @param {*} [options] Override http request option.
|
|
172
174
|
* @throws {RequiredError}
|
|
173
175
|
*/
|
|
174
|
-
surveillanceList: async (parkId: number, surveillanceName?: string, functionalArea?: FunctionalAreaEnum, surveillanceStatus?:
|
|
176
|
+
surveillanceList: async (parkId: number, surveillanceName?: string, functionalArea?: FunctionalAreaEnum, surveillanceStatus?: IotDeviceStatusEnum, spaceId?: number, flgFirst?: number, page?: number, pageSize?: number, options: RawAxiosRequestConfig = {}): Promise<RequestArgs> => {
|
|
175
177
|
// verify required parameter 'parkId' is not null or undefined
|
|
176
178
|
assertParamExists('surveillanceList', 'parkId', parkId)
|
|
177
179
|
const localVarPath = `/gizone/surveillance`;
|
|
@@ -381,7 +383,7 @@ export const SurveillanceApiAxiosParamCreator = function (configuration?: Config
|
|
|
381
383
|
* @param {number} parkId 园区ID
|
|
382
384
|
* @param {string} [surveillanceName] 监控名称
|
|
383
385
|
* @param {FunctionalAreaEnum} [functionalArea] 功能区
|
|
384
|
-
* @param {
|
|
386
|
+
* @param {IotDeviceStatusEnum} [surveillanceStatus] 监控状态
|
|
385
387
|
* @param {number} [spaceId] 空间ID
|
|
386
388
|
* @param {number} [flgFirst] 是否首级
|
|
387
389
|
* @param {number} [page] 当前页码
|
|
@@ -389,7 +391,7 @@ export const SurveillanceApiAxiosParamCreator = function (configuration?: Config
|
|
|
389
391
|
* @param {*} [options] Override http request option.
|
|
390
392
|
* @throws {RequiredError}
|
|
391
393
|
*/
|
|
392
|
-
surveillanceSpaceList: async (parkId: number, surveillanceName?: string, functionalArea?: FunctionalAreaEnum, surveillanceStatus?:
|
|
394
|
+
surveillanceSpaceList: async (parkId: number, surveillanceName?: string, functionalArea?: FunctionalAreaEnum, surveillanceStatus?: IotDeviceStatusEnum, spaceId?: number, flgFirst?: number, page?: number, pageSize?: number, options: RawAxiosRequestConfig = {}): Promise<RequestArgs> => {
|
|
393
395
|
// verify required parameter 'parkId' is not null or undefined
|
|
394
396
|
assertParamExists('surveillanceSpaceList', 'parkId', parkId)
|
|
395
397
|
const localVarPath = `/gizone/surveillance/spaceList`;
|
|
@@ -594,7 +596,7 @@ export const SurveillanceApiFp = function(configuration?: Configuration) {
|
|
|
594
596
|
* @param {number} parkId 园区ID
|
|
595
597
|
* @param {string} [surveillanceName] 监控名称
|
|
596
598
|
* @param {FunctionalAreaEnum} [functionalArea] 功能区
|
|
597
|
-
* @param {
|
|
599
|
+
* @param {IotDeviceStatusEnum} [surveillanceStatus] 监控状态
|
|
598
600
|
* @param {number} [spaceId] 空间ID
|
|
599
601
|
* @param {number} [flgFirst] 是否首级
|
|
600
602
|
* @param {number} [page] 当前页码
|
|
@@ -602,7 +604,7 @@ export const SurveillanceApiFp = function(configuration?: Configuration) {
|
|
|
602
604
|
* @param {*} [options] Override http request option.
|
|
603
605
|
* @throws {RequiredError}
|
|
604
606
|
*/
|
|
605
|
-
async surveillanceList(parkId: number, surveillanceName?: string, functionalArea?: FunctionalAreaEnum, surveillanceStatus?:
|
|
607
|
+
async surveillanceList(parkId: number, surveillanceName?: string, functionalArea?: FunctionalAreaEnum, surveillanceStatus?: IotDeviceStatusEnum, spaceId?: number, flgFirst?: number, page?: number, pageSize?: number, options?: RawAxiosRequestConfig): Promise<(axios?: AxiosInstance, basePath?: string) => AxiosPromise<JsonResultPageDtoSurveillanceDetailsDto>> {
|
|
606
608
|
const localVarAxiosArgs = await localVarAxiosParamCreator.surveillanceList(parkId, surveillanceName, functionalArea, surveillanceStatus, spaceId, flgFirst, page, pageSize, options);
|
|
607
609
|
const localVarOperationServerIndex = configuration?.serverIndex ?? 0;
|
|
608
610
|
const localVarOperationServerBasePath = operationServerMap['SurveillanceApi.surveillanceList']?.[localVarOperationServerIndex]?.url;
|
|
@@ -657,7 +659,7 @@ export const SurveillanceApiFp = function(configuration?: Configuration) {
|
|
|
657
659
|
* @param {number} parkId 园区ID
|
|
658
660
|
* @param {string} [surveillanceName] 监控名称
|
|
659
661
|
* @param {FunctionalAreaEnum} [functionalArea] 功能区
|
|
660
|
-
* @param {
|
|
662
|
+
* @param {IotDeviceStatusEnum} [surveillanceStatus] 监控状态
|
|
661
663
|
* @param {number} [spaceId] 空间ID
|
|
662
664
|
* @param {number} [flgFirst] 是否首级
|
|
663
665
|
* @param {number} [page] 当前页码
|
|
@@ -665,7 +667,7 @@ export const SurveillanceApiFp = function(configuration?: Configuration) {
|
|
|
665
667
|
* @param {*} [options] Override http request option.
|
|
666
668
|
* @throws {RequiredError}
|
|
667
669
|
*/
|
|
668
|
-
async surveillanceSpaceList(parkId: number, surveillanceName?: string, functionalArea?: FunctionalAreaEnum, surveillanceStatus?:
|
|
670
|
+
async surveillanceSpaceList(parkId: number, surveillanceName?: string, functionalArea?: FunctionalAreaEnum, surveillanceStatus?: IotDeviceStatusEnum, spaceId?: number, flgFirst?: number, page?: number, pageSize?: number, options?: RawAxiosRequestConfig): Promise<(axios?: AxiosInstance, basePath?: string) => AxiosPromise<JsonResultListSpaceTreeDTO>> {
|
|
669
671
|
const localVarAxiosArgs = await localVarAxiosParamCreator.surveillanceSpaceList(parkId, surveillanceName, functionalArea, surveillanceStatus, spaceId, flgFirst, page, pageSize, options);
|
|
670
672
|
const localVarOperationServerIndex = configuration?.serverIndex ?? 0;
|
|
671
673
|
const localVarOperationServerBasePath = operationServerMap['SurveillanceApi.surveillanceSpaceList']?.[localVarOperationServerIndex]?.url;
|
|
@@ -883,10 +885,10 @@ export interface SurveillanceApiSurveillanceListRequest {
|
|
|
883
885
|
|
|
884
886
|
/**
|
|
885
887
|
* 监控状态
|
|
886
|
-
* @type {
|
|
888
|
+
* @type {IotDeviceStatusEnum}
|
|
887
889
|
* @memberof SurveillanceApiSurveillanceList
|
|
888
890
|
*/
|
|
889
|
-
readonly surveillanceStatus?:
|
|
891
|
+
readonly surveillanceStatus?: IotDeviceStatusEnum
|
|
890
892
|
|
|
891
893
|
/**
|
|
892
894
|
* 空间ID
|
|
@@ -1016,10 +1018,10 @@ export interface SurveillanceApiSurveillanceSpaceListRequest {
|
|
|
1016
1018
|
|
|
1017
1019
|
/**
|
|
1018
1020
|
* 监控状态
|
|
1019
|
-
* @type {
|
|
1021
|
+
* @type {IotDeviceStatusEnum}
|
|
1020
1022
|
* @memberof SurveillanceApiSurveillanceSpaceList
|
|
1021
1023
|
*/
|
|
1022
|
-
readonly surveillanceStatus?:
|
|
1024
|
+
readonly surveillanceStatus?: IotDeviceStatusEnum
|
|
1023
1025
|
|
|
1024
1026
|
/**
|
|
1025
1027
|
* 空间ID
|
|
@@ -1220,15 +1222,6 @@ export class SurveillanceApi extends BaseAPI {
|
|
|
1220
1222
|
}
|
|
1221
1223
|
}
|
|
1222
1224
|
|
|
1223
|
-
/**
|
|
1224
|
-
* @export
|
|
1225
|
-
*/
|
|
1226
|
-
export const SurveillanceListSurveillanceStatusEnum = {
|
|
1227
|
-
Unknown: 'UNKNOWN',
|
|
1228
|
-
Offline: 'OFFLINE',
|
|
1229
|
-
Online: 'ONLINE'
|
|
1230
|
-
} as const;
|
|
1231
|
-
export type SurveillanceListSurveillanceStatusEnum = typeof SurveillanceListSurveillanceStatusEnum[keyof typeof SurveillanceListSurveillanceStatusEnum];
|
|
1232
1225
|
/**
|
|
1233
1226
|
* @export
|
|
1234
1227
|
*/
|
|
@@ -1249,12 +1242,3 @@ export const SurveillancePtzControlActionEnum = {
|
|
|
1249
1242
|
Stop: 'STOP'
|
|
1250
1243
|
} as const;
|
|
1251
1244
|
export type SurveillancePtzControlActionEnum = typeof SurveillancePtzControlActionEnum[keyof typeof SurveillancePtzControlActionEnum];
|
|
1252
|
-
/**
|
|
1253
|
-
* @export
|
|
1254
|
-
*/
|
|
1255
|
-
export const SurveillanceSpaceListSurveillanceStatusEnum = {
|
|
1256
|
-
Unknown: 'UNKNOWN',
|
|
1257
|
-
Offline: 'OFFLINE',
|
|
1258
|
-
Online: 'ONLINE'
|
|
1259
|
-
} as const;
|
|
1260
|
-
export type SurveillanceSpaceListSurveillanceStatusEnum = typeof SurveillanceSpaceListSurveillanceStatusEnum[keyof typeof SurveillanceSpaceListSurveillanceStatusEnum];
|
|
@@ -13,6 +13,7 @@ import type { Configuration } from '../configuration';
|
|
|
13
13
|
import type { AxiosPromise, AxiosInstance, RawAxiosRequestConfig } from 'axios';
|
|
14
14
|
import { type RequestArgs, BaseAPI } from '../base';
|
|
15
15
|
import type { FunctionalAreaEnum } from '../models';
|
|
16
|
+
import type { IotDeviceStatusEnum } from '../models';
|
|
16
17
|
import type { JsonResultBoolean } from '../models';
|
|
17
18
|
import type { JsonResultListSpaceTreeDTO } from '../models';
|
|
18
19
|
import type { JsonResultPageDtoSurveillanceDetailsDto } from '../models';
|
|
@@ -55,7 +56,7 @@ export declare const SurveillanceApiAxiosParamCreator: (configuration?: Configur
|
|
|
55
56
|
* @param {number} parkId 园区ID
|
|
56
57
|
* @param {string} [surveillanceName] 监控名称
|
|
57
58
|
* @param {FunctionalAreaEnum} [functionalArea] 功能区
|
|
58
|
-
* @param {
|
|
59
|
+
* @param {IotDeviceStatusEnum} [surveillanceStatus] 监控状态
|
|
59
60
|
* @param {number} [spaceId] 空间ID
|
|
60
61
|
* @param {number} [flgFirst] 是否首级
|
|
61
62
|
* @param {number} [page] 当前页码
|
|
@@ -63,7 +64,7 @@ export declare const SurveillanceApiAxiosParamCreator: (configuration?: Configur
|
|
|
63
64
|
* @param {*} [options] Override http request option.
|
|
64
65
|
* @throws {RequiredError}
|
|
65
66
|
*/
|
|
66
|
-
surveillanceList: (parkId: number, surveillanceName?: string, functionalArea?: FunctionalAreaEnum, surveillanceStatus?:
|
|
67
|
+
surveillanceList: (parkId: number, surveillanceName?: string, functionalArea?: FunctionalAreaEnum, surveillanceStatus?: IotDeviceStatusEnum, spaceId?: number, flgFirst?: number, page?: number, pageSize?: number, options?: RawAxiosRequestConfig) => Promise<RequestArgs>;
|
|
67
68
|
/**
|
|
68
69
|
* 获取监控直播流
|
|
69
70
|
* @summary 监控直播流
|
|
@@ -98,7 +99,7 @@ export declare const SurveillanceApiAxiosParamCreator: (configuration?: Configur
|
|
|
98
99
|
* @param {number} parkId 园区ID
|
|
99
100
|
* @param {string} [surveillanceName] 监控名称
|
|
100
101
|
* @param {FunctionalAreaEnum} [functionalArea] 功能区
|
|
101
|
-
* @param {
|
|
102
|
+
* @param {IotDeviceStatusEnum} [surveillanceStatus] 监控状态
|
|
102
103
|
* @param {number} [spaceId] 空间ID
|
|
103
104
|
* @param {number} [flgFirst] 是否首级
|
|
104
105
|
* @param {number} [page] 当前页码
|
|
@@ -106,7 +107,7 @@ export declare const SurveillanceApiAxiosParamCreator: (configuration?: Configur
|
|
|
106
107
|
* @param {*} [options] Override http request option.
|
|
107
108
|
* @throws {RequiredError}
|
|
108
109
|
*/
|
|
109
|
-
surveillanceSpaceList: (parkId: number, surveillanceName?: string, functionalArea?: FunctionalAreaEnum, surveillanceStatus?:
|
|
110
|
+
surveillanceSpaceList: (parkId: number, surveillanceName?: string, functionalArea?: FunctionalAreaEnum, surveillanceStatus?: IotDeviceStatusEnum, spaceId?: number, flgFirst?: number, page?: number, pageSize?: number, options?: RawAxiosRequestConfig) => Promise<RequestArgs>;
|
|
110
111
|
/**
|
|
111
112
|
* 更新监控信息
|
|
112
113
|
* @summary 更新监控
|
|
@@ -161,7 +162,7 @@ export declare const SurveillanceApiFp: (configuration?: Configuration) => {
|
|
|
161
162
|
* @param {number} parkId 园区ID
|
|
162
163
|
* @param {string} [surveillanceName] 监控名称
|
|
163
164
|
* @param {FunctionalAreaEnum} [functionalArea] 功能区
|
|
164
|
-
* @param {
|
|
165
|
+
* @param {IotDeviceStatusEnum} [surveillanceStatus] 监控状态
|
|
165
166
|
* @param {number} [spaceId] 空间ID
|
|
166
167
|
* @param {number} [flgFirst] 是否首级
|
|
167
168
|
* @param {number} [page] 当前页码
|
|
@@ -169,7 +170,7 @@ export declare const SurveillanceApiFp: (configuration?: Configuration) => {
|
|
|
169
170
|
* @param {*} [options] Override http request option.
|
|
170
171
|
* @throws {RequiredError}
|
|
171
172
|
*/
|
|
172
|
-
surveillanceList(parkId: number, surveillanceName?: string, functionalArea?: FunctionalAreaEnum, surveillanceStatus?:
|
|
173
|
+
surveillanceList(parkId: number, surveillanceName?: string, functionalArea?: FunctionalAreaEnum, surveillanceStatus?: IotDeviceStatusEnum, spaceId?: number, flgFirst?: number, page?: number, pageSize?: number, options?: RawAxiosRequestConfig): Promise<(axios?: AxiosInstance, basePath?: string) => AxiosPromise<JsonResultPageDtoSurveillanceDetailsDto>>;
|
|
173
174
|
/**
|
|
174
175
|
* 获取监控直播流
|
|
175
176
|
* @summary 监控直播流
|
|
@@ -204,7 +205,7 @@ export declare const SurveillanceApiFp: (configuration?: Configuration) => {
|
|
|
204
205
|
* @param {number} parkId 园区ID
|
|
205
206
|
* @param {string} [surveillanceName] 监控名称
|
|
206
207
|
* @param {FunctionalAreaEnum} [functionalArea] 功能区
|
|
207
|
-
* @param {
|
|
208
|
+
* @param {IotDeviceStatusEnum} [surveillanceStatus] 监控状态
|
|
208
209
|
* @param {number} [spaceId] 空间ID
|
|
209
210
|
* @param {number} [flgFirst] 是否首级
|
|
210
211
|
* @param {number} [page] 当前页码
|
|
@@ -212,7 +213,7 @@ export declare const SurveillanceApiFp: (configuration?: Configuration) => {
|
|
|
212
213
|
* @param {*} [options] Override http request option.
|
|
213
214
|
* @throws {RequiredError}
|
|
214
215
|
*/
|
|
215
|
-
surveillanceSpaceList(parkId: number, surveillanceName?: string, functionalArea?: FunctionalAreaEnum, surveillanceStatus?:
|
|
216
|
+
surveillanceSpaceList(parkId: number, surveillanceName?: string, functionalArea?: FunctionalAreaEnum, surveillanceStatus?: IotDeviceStatusEnum, spaceId?: number, flgFirst?: number, page?: number, pageSize?: number, options?: RawAxiosRequestConfig): Promise<(axios?: AxiosInstance, basePath?: string) => AxiosPromise<JsonResultListSpaceTreeDTO>>;
|
|
216
217
|
/**
|
|
217
218
|
* 更新监控信息
|
|
218
219
|
* @summary 更新监控
|
|
@@ -383,10 +384,10 @@ export interface SurveillanceApiSurveillanceListRequest {
|
|
|
383
384
|
readonly functionalArea?: FunctionalAreaEnum;
|
|
384
385
|
/**
|
|
385
386
|
* 监控状态
|
|
386
|
-
* @type {
|
|
387
|
+
* @type {IotDeviceStatusEnum}
|
|
387
388
|
* @memberof SurveillanceApiSurveillanceList
|
|
388
389
|
*/
|
|
389
|
-
readonly surveillanceStatus?:
|
|
390
|
+
readonly surveillanceStatus?: IotDeviceStatusEnum;
|
|
390
391
|
/**
|
|
391
392
|
* 空间ID
|
|
392
393
|
* @type {number}
|
|
@@ -501,10 +502,10 @@ export interface SurveillanceApiSurveillanceSpaceListRequest {
|
|
|
501
502
|
readonly functionalArea?: FunctionalAreaEnum;
|
|
502
503
|
/**
|
|
503
504
|
* 监控状态
|
|
504
|
-
* @type {
|
|
505
|
+
* @type {IotDeviceStatusEnum}
|
|
505
506
|
* @memberof SurveillanceApiSurveillanceSpaceList
|
|
506
507
|
*/
|
|
507
|
-
readonly surveillanceStatus?:
|
|
508
|
+
readonly surveillanceStatus?: IotDeviceStatusEnum;
|
|
508
509
|
/**
|
|
509
510
|
* 空间ID
|
|
510
511
|
* @type {number}
|
|
@@ -666,15 +667,6 @@ export declare class SurveillanceApi extends BaseAPI {
|
|
|
666
667
|
*/
|
|
667
668
|
surveillanceUpdatePoint(requestParameters: SurveillanceApiSurveillanceUpdatePointRequest, options?: RawAxiosRequestConfig): Promise<import("axios").AxiosResponse<JsonResultBoolean, any>>;
|
|
668
669
|
}
|
|
669
|
-
/**
|
|
670
|
-
* @export
|
|
671
|
-
*/
|
|
672
|
-
export declare const SurveillanceListSurveillanceStatusEnum: {
|
|
673
|
-
readonly Unknown: "UNKNOWN";
|
|
674
|
-
readonly Offline: "OFFLINE";
|
|
675
|
-
readonly Online: "ONLINE";
|
|
676
|
-
};
|
|
677
|
-
export type SurveillanceListSurveillanceStatusEnum = typeof SurveillanceListSurveillanceStatusEnum[keyof typeof SurveillanceListSurveillanceStatusEnum];
|
|
678
670
|
/**
|
|
679
671
|
* @export
|
|
680
672
|
*/
|
|
@@ -695,12 +687,3 @@ export declare const SurveillancePtzControlActionEnum: {
|
|
|
695
687
|
readonly Stop: "STOP";
|
|
696
688
|
};
|
|
697
689
|
export type SurveillancePtzControlActionEnum = typeof SurveillancePtzControlActionEnum[keyof typeof SurveillancePtzControlActionEnum];
|
|
698
|
-
/**
|
|
699
|
-
* @export
|
|
700
|
-
*/
|
|
701
|
-
export declare const SurveillanceSpaceListSurveillanceStatusEnum: {
|
|
702
|
-
readonly Unknown: "UNKNOWN";
|
|
703
|
-
readonly Offline: "OFFLINE";
|
|
704
|
-
readonly Online: "ONLINE";
|
|
705
|
-
};
|
|
706
|
-
export type SurveillanceSpaceListSurveillanceStatusEnum = typeof SurveillanceSpaceListSurveillanceStatusEnum[keyof typeof SurveillanceSpaceListSurveillanceStatusEnum];
|
|
@@ -22,7 +22,7 @@ var __awaiter = (this && this.__awaiter) || function (thisArg, _arguments, P, ge
|
|
|
22
22
|
});
|
|
23
23
|
};
|
|
24
24
|
Object.defineProperty(exports, "__esModule", { value: true });
|
|
25
|
-
exports.
|
|
25
|
+
exports.SurveillancePtzControlActionEnum = exports.SurveillancePtzControlCommandEnum = exports.SurveillanceApi = exports.SurveillanceApiFactory = exports.SurveillanceApiFp = exports.SurveillanceApiAxiosParamCreator = void 0;
|
|
26
26
|
const axios_1 = require("axios");
|
|
27
27
|
// Some imports not used depending on template conditions
|
|
28
28
|
// @ts-ignore
|
|
@@ -137,7 +137,7 @@ const SurveillanceApiAxiosParamCreator = function (configuration) {
|
|
|
137
137
|
* @param {number} parkId 园区ID
|
|
138
138
|
* @param {string} [surveillanceName] 监控名称
|
|
139
139
|
* @param {FunctionalAreaEnum} [functionalArea] 功能区
|
|
140
|
-
* @param {
|
|
140
|
+
* @param {IotDeviceStatusEnum} [surveillanceStatus] 监控状态
|
|
141
141
|
* @param {number} [spaceId] 空间ID
|
|
142
142
|
* @param {number} [flgFirst] 是否首级
|
|
143
143
|
* @param {number} [page] 当前页码
|
|
@@ -319,7 +319,7 @@ const SurveillanceApiAxiosParamCreator = function (configuration) {
|
|
|
319
319
|
* @param {number} parkId 园区ID
|
|
320
320
|
* @param {string} [surveillanceName] 监控名称
|
|
321
321
|
* @param {FunctionalAreaEnum} [functionalArea] 功能区
|
|
322
|
-
* @param {
|
|
322
|
+
* @param {IotDeviceStatusEnum} [surveillanceStatus] 监控状态
|
|
323
323
|
* @param {number} [spaceId] 空间ID
|
|
324
324
|
* @param {number} [flgFirst] 是否首级
|
|
325
325
|
* @param {number} [page] 当前页码
|
|
@@ -513,7 +513,7 @@ const SurveillanceApiFp = function (configuration) {
|
|
|
513
513
|
* @param {number} parkId 园区ID
|
|
514
514
|
* @param {string} [surveillanceName] 监控名称
|
|
515
515
|
* @param {FunctionalAreaEnum} [functionalArea] 功能区
|
|
516
|
-
* @param {
|
|
516
|
+
* @param {IotDeviceStatusEnum} [surveillanceStatus] 监控状态
|
|
517
517
|
* @param {number} [spaceId] 空间ID
|
|
518
518
|
* @param {number} [flgFirst] 是否首级
|
|
519
519
|
* @param {number} [page] 当前页码
|
|
@@ -588,7 +588,7 @@ const SurveillanceApiFp = function (configuration) {
|
|
|
588
588
|
* @param {number} parkId 园区ID
|
|
589
589
|
* @param {string} [surveillanceName] 监控名称
|
|
590
590
|
* @param {FunctionalAreaEnum} [functionalArea] 功能区
|
|
591
|
-
* @param {
|
|
591
|
+
* @param {IotDeviceStatusEnum} [surveillanceStatus] 监控状态
|
|
592
592
|
* @param {number} [spaceId] 空间ID
|
|
593
593
|
* @param {number} [flgFirst] 是否首级
|
|
594
594
|
* @param {number} [page] 当前页码
|
|
@@ -871,14 +871,6 @@ class SurveillanceApi extends base_1.BaseAPI {
|
|
|
871
871
|
}
|
|
872
872
|
}
|
|
873
873
|
exports.SurveillanceApi = SurveillanceApi;
|
|
874
|
-
/**
|
|
875
|
-
* @export
|
|
876
|
-
*/
|
|
877
|
-
exports.SurveillanceListSurveillanceStatusEnum = {
|
|
878
|
-
Unknown: 'UNKNOWN',
|
|
879
|
-
Offline: 'OFFLINE',
|
|
880
|
-
Online: 'ONLINE'
|
|
881
|
-
};
|
|
882
874
|
/**
|
|
883
875
|
* @export
|
|
884
876
|
*/
|
|
@@ -897,11 +889,3 @@ exports.SurveillancePtzControlActionEnum = {
|
|
|
897
889
|
Start: 'START',
|
|
898
890
|
Stop: 'STOP'
|
|
899
891
|
};
|
|
900
|
-
/**
|
|
901
|
-
* @export
|
|
902
|
-
*/
|
|
903
|
-
exports.SurveillanceSpaceListSurveillanceStatusEnum = {
|
|
904
|
-
Unknown: 'UNKNOWN',
|
|
905
|
-
Offline: 'OFFLINE',
|
|
906
|
-
Online: 'ONLINE'
|
|
907
|
-
};
|
|
@@ -13,6 +13,7 @@ import type { Configuration } from '../configuration';
|
|
|
13
13
|
import type { AxiosPromise, AxiosInstance, RawAxiosRequestConfig } from 'axios';
|
|
14
14
|
import { type RequestArgs, BaseAPI } from '../base';
|
|
15
15
|
import type { FunctionalAreaEnum } from '../models';
|
|
16
|
+
import type { IotDeviceStatusEnum } from '../models';
|
|
16
17
|
import type { JsonResultBoolean } from '../models';
|
|
17
18
|
import type { JsonResultListSpaceTreeDTO } from '../models';
|
|
18
19
|
import type { JsonResultPageDtoSurveillanceDetailsDto } from '../models';
|
|
@@ -55,7 +56,7 @@ export declare const SurveillanceApiAxiosParamCreator: (configuration?: Configur
|
|
|
55
56
|
* @param {number} parkId 园区ID
|
|
56
57
|
* @param {string} [surveillanceName] 监控名称
|
|
57
58
|
* @param {FunctionalAreaEnum} [functionalArea] 功能区
|
|
58
|
-
* @param {
|
|
59
|
+
* @param {IotDeviceStatusEnum} [surveillanceStatus] 监控状态
|
|
59
60
|
* @param {number} [spaceId] 空间ID
|
|
60
61
|
* @param {number} [flgFirst] 是否首级
|
|
61
62
|
* @param {number} [page] 当前页码
|
|
@@ -63,7 +64,7 @@ export declare const SurveillanceApiAxiosParamCreator: (configuration?: Configur
|
|
|
63
64
|
* @param {*} [options] Override http request option.
|
|
64
65
|
* @throws {RequiredError}
|
|
65
66
|
*/
|
|
66
|
-
surveillanceList: (parkId: number, surveillanceName?: string, functionalArea?: FunctionalAreaEnum, surveillanceStatus?:
|
|
67
|
+
surveillanceList: (parkId: number, surveillanceName?: string, functionalArea?: FunctionalAreaEnum, surveillanceStatus?: IotDeviceStatusEnum, spaceId?: number, flgFirst?: number, page?: number, pageSize?: number, options?: RawAxiosRequestConfig) => Promise<RequestArgs>;
|
|
67
68
|
/**
|
|
68
69
|
* 获取监控直播流
|
|
69
70
|
* @summary 监控直播流
|
|
@@ -98,7 +99,7 @@ export declare const SurveillanceApiAxiosParamCreator: (configuration?: Configur
|
|
|
98
99
|
* @param {number} parkId 园区ID
|
|
99
100
|
* @param {string} [surveillanceName] 监控名称
|
|
100
101
|
* @param {FunctionalAreaEnum} [functionalArea] 功能区
|
|
101
|
-
* @param {
|
|
102
|
+
* @param {IotDeviceStatusEnum} [surveillanceStatus] 监控状态
|
|
102
103
|
* @param {number} [spaceId] 空间ID
|
|
103
104
|
* @param {number} [flgFirst] 是否首级
|
|
104
105
|
* @param {number} [page] 当前页码
|
|
@@ -106,7 +107,7 @@ export declare const SurveillanceApiAxiosParamCreator: (configuration?: Configur
|
|
|
106
107
|
* @param {*} [options] Override http request option.
|
|
107
108
|
* @throws {RequiredError}
|
|
108
109
|
*/
|
|
109
|
-
surveillanceSpaceList: (parkId: number, surveillanceName?: string, functionalArea?: FunctionalAreaEnum, surveillanceStatus?:
|
|
110
|
+
surveillanceSpaceList: (parkId: number, surveillanceName?: string, functionalArea?: FunctionalAreaEnum, surveillanceStatus?: IotDeviceStatusEnum, spaceId?: number, flgFirst?: number, page?: number, pageSize?: number, options?: RawAxiosRequestConfig) => Promise<RequestArgs>;
|
|
110
111
|
/**
|
|
111
112
|
* 更新监控信息
|
|
112
113
|
* @summary 更新监控
|
|
@@ -161,7 +162,7 @@ export declare const SurveillanceApiFp: (configuration?: Configuration) => {
|
|
|
161
162
|
* @param {number} parkId 园区ID
|
|
162
163
|
* @param {string} [surveillanceName] 监控名称
|
|
163
164
|
* @param {FunctionalAreaEnum} [functionalArea] 功能区
|
|
164
|
-
* @param {
|
|
165
|
+
* @param {IotDeviceStatusEnum} [surveillanceStatus] 监控状态
|
|
165
166
|
* @param {number} [spaceId] 空间ID
|
|
166
167
|
* @param {number} [flgFirst] 是否首级
|
|
167
168
|
* @param {number} [page] 当前页码
|
|
@@ -169,7 +170,7 @@ export declare const SurveillanceApiFp: (configuration?: Configuration) => {
|
|
|
169
170
|
* @param {*} [options] Override http request option.
|
|
170
171
|
* @throws {RequiredError}
|
|
171
172
|
*/
|
|
172
|
-
surveillanceList(parkId: number, surveillanceName?: string, functionalArea?: FunctionalAreaEnum, surveillanceStatus?:
|
|
173
|
+
surveillanceList(parkId: number, surveillanceName?: string, functionalArea?: FunctionalAreaEnum, surveillanceStatus?: IotDeviceStatusEnum, spaceId?: number, flgFirst?: number, page?: number, pageSize?: number, options?: RawAxiosRequestConfig): Promise<(axios?: AxiosInstance, basePath?: string) => AxiosPromise<JsonResultPageDtoSurveillanceDetailsDto>>;
|
|
173
174
|
/**
|
|
174
175
|
* 获取监控直播流
|
|
175
176
|
* @summary 监控直播流
|
|
@@ -204,7 +205,7 @@ export declare const SurveillanceApiFp: (configuration?: Configuration) => {
|
|
|
204
205
|
* @param {number} parkId 园区ID
|
|
205
206
|
* @param {string} [surveillanceName] 监控名称
|
|
206
207
|
* @param {FunctionalAreaEnum} [functionalArea] 功能区
|
|
207
|
-
* @param {
|
|
208
|
+
* @param {IotDeviceStatusEnum} [surveillanceStatus] 监控状态
|
|
208
209
|
* @param {number} [spaceId] 空间ID
|
|
209
210
|
* @param {number} [flgFirst] 是否首级
|
|
210
211
|
* @param {number} [page] 当前页码
|
|
@@ -212,7 +213,7 @@ export declare const SurveillanceApiFp: (configuration?: Configuration) => {
|
|
|
212
213
|
* @param {*} [options] Override http request option.
|
|
213
214
|
* @throws {RequiredError}
|
|
214
215
|
*/
|
|
215
|
-
surveillanceSpaceList(parkId: number, surveillanceName?: string, functionalArea?: FunctionalAreaEnum, surveillanceStatus?:
|
|
216
|
+
surveillanceSpaceList(parkId: number, surveillanceName?: string, functionalArea?: FunctionalAreaEnum, surveillanceStatus?: IotDeviceStatusEnum, spaceId?: number, flgFirst?: number, page?: number, pageSize?: number, options?: RawAxiosRequestConfig): Promise<(axios?: AxiosInstance, basePath?: string) => AxiosPromise<JsonResultListSpaceTreeDTO>>;
|
|
216
217
|
/**
|
|
217
218
|
* 更新监控信息
|
|
218
219
|
* @summary 更新监控
|
|
@@ -383,10 +384,10 @@ export interface SurveillanceApiSurveillanceListRequest {
|
|
|
383
384
|
readonly functionalArea?: FunctionalAreaEnum;
|
|
384
385
|
/**
|
|
385
386
|
* 监控状态
|
|
386
|
-
* @type {
|
|
387
|
+
* @type {IotDeviceStatusEnum}
|
|
387
388
|
* @memberof SurveillanceApiSurveillanceList
|
|
388
389
|
*/
|
|
389
|
-
readonly surveillanceStatus?:
|
|
390
|
+
readonly surveillanceStatus?: IotDeviceStatusEnum;
|
|
390
391
|
/**
|
|
391
392
|
* 空间ID
|
|
392
393
|
* @type {number}
|
|
@@ -501,10 +502,10 @@ export interface SurveillanceApiSurveillanceSpaceListRequest {
|
|
|
501
502
|
readonly functionalArea?: FunctionalAreaEnum;
|
|
502
503
|
/**
|
|
503
504
|
* 监控状态
|
|
504
|
-
* @type {
|
|
505
|
+
* @type {IotDeviceStatusEnum}
|
|
505
506
|
* @memberof SurveillanceApiSurveillanceSpaceList
|
|
506
507
|
*/
|
|
507
|
-
readonly surveillanceStatus?:
|
|
508
|
+
readonly surveillanceStatus?: IotDeviceStatusEnum;
|
|
508
509
|
/**
|
|
509
510
|
* 空间ID
|
|
510
511
|
* @type {number}
|
|
@@ -666,15 +667,6 @@ export declare class SurveillanceApi extends BaseAPI {
|
|
|
666
667
|
*/
|
|
667
668
|
surveillanceUpdatePoint(requestParameters: SurveillanceApiSurveillanceUpdatePointRequest, options?: RawAxiosRequestConfig): Promise<import("axios").AxiosResponse<JsonResultBoolean, any>>;
|
|
668
669
|
}
|
|
669
|
-
/**
|
|
670
|
-
* @export
|
|
671
|
-
*/
|
|
672
|
-
export declare const SurveillanceListSurveillanceStatusEnum: {
|
|
673
|
-
readonly Unknown: "UNKNOWN";
|
|
674
|
-
readonly Offline: "OFFLINE";
|
|
675
|
-
readonly Online: "ONLINE";
|
|
676
|
-
};
|
|
677
|
-
export type SurveillanceListSurveillanceStatusEnum = typeof SurveillanceListSurveillanceStatusEnum[keyof typeof SurveillanceListSurveillanceStatusEnum];
|
|
678
670
|
/**
|
|
679
671
|
* @export
|
|
680
672
|
*/
|
|
@@ -695,12 +687,3 @@ export declare const SurveillancePtzControlActionEnum: {
|
|
|
695
687
|
readonly Stop: "STOP";
|
|
696
688
|
};
|
|
697
689
|
export type SurveillancePtzControlActionEnum = typeof SurveillancePtzControlActionEnum[keyof typeof SurveillancePtzControlActionEnum];
|
|
698
|
-
/**
|
|
699
|
-
* @export
|
|
700
|
-
*/
|
|
701
|
-
export declare const SurveillanceSpaceListSurveillanceStatusEnum: {
|
|
702
|
-
readonly Unknown: "UNKNOWN";
|
|
703
|
-
readonly Offline: "OFFLINE";
|
|
704
|
-
readonly Online: "ONLINE";
|
|
705
|
-
};
|
|
706
|
-
export type SurveillanceSpaceListSurveillanceStatusEnum = typeof SurveillanceSpaceListSurveillanceStatusEnum[keyof typeof SurveillanceSpaceListSurveillanceStatusEnum];
|
|
@@ -134,7 +134,7 @@ export const SurveillanceApiAxiosParamCreator = function (configuration) {
|
|
|
134
134
|
* @param {number} parkId 园区ID
|
|
135
135
|
* @param {string} [surveillanceName] 监控名称
|
|
136
136
|
* @param {FunctionalAreaEnum} [functionalArea] 功能区
|
|
137
|
-
* @param {
|
|
137
|
+
* @param {IotDeviceStatusEnum} [surveillanceStatus] 监控状态
|
|
138
138
|
* @param {number} [spaceId] 空间ID
|
|
139
139
|
* @param {number} [flgFirst] 是否首级
|
|
140
140
|
* @param {number} [page] 当前页码
|
|
@@ -316,7 +316,7 @@ export const SurveillanceApiAxiosParamCreator = function (configuration) {
|
|
|
316
316
|
* @param {number} parkId 园区ID
|
|
317
317
|
* @param {string} [surveillanceName] 监控名称
|
|
318
318
|
* @param {FunctionalAreaEnum} [functionalArea] 功能区
|
|
319
|
-
* @param {
|
|
319
|
+
* @param {IotDeviceStatusEnum} [surveillanceStatus] 监控状态
|
|
320
320
|
* @param {number} [spaceId] 空间ID
|
|
321
321
|
* @param {number} [flgFirst] 是否首级
|
|
322
322
|
* @param {number} [page] 当前页码
|
|
@@ -509,7 +509,7 @@ export const SurveillanceApiFp = function (configuration) {
|
|
|
509
509
|
* @param {number} parkId 园区ID
|
|
510
510
|
* @param {string} [surveillanceName] 监控名称
|
|
511
511
|
* @param {FunctionalAreaEnum} [functionalArea] 功能区
|
|
512
|
-
* @param {
|
|
512
|
+
* @param {IotDeviceStatusEnum} [surveillanceStatus] 监控状态
|
|
513
513
|
* @param {number} [spaceId] 空间ID
|
|
514
514
|
* @param {number} [flgFirst] 是否首级
|
|
515
515
|
* @param {number} [page] 当前页码
|
|
@@ -584,7 +584,7 @@ export const SurveillanceApiFp = function (configuration) {
|
|
|
584
584
|
* @param {number} parkId 园区ID
|
|
585
585
|
* @param {string} [surveillanceName] 监控名称
|
|
586
586
|
* @param {FunctionalAreaEnum} [functionalArea] 功能区
|
|
587
|
-
* @param {
|
|
587
|
+
* @param {IotDeviceStatusEnum} [surveillanceStatus] 监控状态
|
|
588
588
|
* @param {number} [spaceId] 空间ID
|
|
589
589
|
* @param {number} [flgFirst] 是否首级
|
|
590
590
|
* @param {number} [page] 当前页码
|
|
@@ -864,14 +864,6 @@ export class SurveillanceApi extends BaseAPI {
|
|
|
864
864
|
return SurveillanceApiFp(this.configuration).surveillanceUpdatePoint(requestParameters.id, requestParameters.requestBody, options).then((request) => request(this.axios, this.basePath));
|
|
865
865
|
}
|
|
866
866
|
}
|
|
867
|
-
/**
|
|
868
|
-
* @export
|
|
869
|
-
*/
|
|
870
|
-
export const SurveillanceListSurveillanceStatusEnum = {
|
|
871
|
-
Unknown: 'UNKNOWN',
|
|
872
|
-
Offline: 'OFFLINE',
|
|
873
|
-
Online: 'ONLINE'
|
|
874
|
-
};
|
|
875
867
|
/**
|
|
876
868
|
* @export
|
|
877
869
|
*/
|
|
@@ -890,11 +882,3 @@ export const SurveillancePtzControlActionEnum = {
|
|
|
890
882
|
Start: 'START',
|
|
891
883
|
Stop: 'STOP'
|
|
892
884
|
};
|
|
893
|
-
/**
|
|
894
|
-
* @export
|
|
895
|
-
*/
|
|
896
|
-
export const SurveillanceSpaceListSurveillanceStatusEnum = {
|
|
897
|
-
Unknown: 'UNKNOWN',
|
|
898
|
-
Offline: 'OFFLINE',
|
|
899
|
-
Online: 'ONLINE'
|
|
900
|
-
};
|
|
@@ -17,12 +17,6 @@ import type { GetUserWx200ResponseOutputStream } from './get-user-wx200-response
|
|
|
17
17
|
* @interface GetUserWx200Response
|
|
18
18
|
*/
|
|
19
19
|
export interface GetUserWx200Response {
|
|
20
|
-
/**
|
|
21
|
-
*
|
|
22
|
-
* @type {object}
|
|
23
|
-
* @memberof GetUserWx200Response
|
|
24
|
-
*/
|
|
25
|
-
'trailerFields'?: object;
|
|
26
20
|
/**
|
|
27
21
|
*
|
|
28
22
|
* @type {number}
|
|
@@ -35,6 +29,12 @@ export interface GetUserWx200Response {
|
|
|
35
29
|
* @memberof GetUserWx200Response
|
|
36
30
|
*/
|
|
37
31
|
'headerNames'?: Array<string>;
|
|
32
|
+
/**
|
|
33
|
+
*
|
|
34
|
+
* @type {object}
|
|
35
|
+
* @memberof GetUserWx200Response
|
|
36
|
+
*/
|
|
37
|
+
'trailerFields'?: object;
|
|
38
38
|
/**
|
|
39
39
|
*
|
|
40
40
|
* @type {string}
|
|
@@ -312,6 +312,7 @@ export * from './internet-pan-perception-search-vo';
|
|
|
312
312
|
export * from './internet-set-vo';
|
|
313
313
|
export * from './internet-water-report-record-search-vo';
|
|
314
314
|
export * from './internet-water-search-vo';
|
|
315
|
+
export * from './iot-device-status-enum';
|
|
315
316
|
export * from './iot-gradient-alarm-add-or-update-vo';
|
|
316
317
|
export * from './iot-gradient-alarm-rule-settings-dto';
|
|
317
318
|
export * from './iot-gradient-alarm-rule-vo';
|
package/dist/esm/models/index.js
CHANGED
|
@@ -312,6 +312,7 @@ export * from './internet-pan-perception-search-vo';
|
|
|
312
312
|
export * from './internet-set-vo';
|
|
313
313
|
export * from './internet-water-report-record-search-vo';
|
|
314
314
|
export * from './internet-water-search-vo';
|
|
315
|
+
export * from './iot-device-status-enum';
|
|
315
316
|
export * from './iot-gradient-alarm-add-or-update-vo';
|
|
316
317
|
export * from './iot-gradient-alarm-rule-settings-dto';
|
|
317
318
|
export * from './iot-gradient-alarm-rule-vo';
|
|
@@ -0,0 +1,22 @@
|
|
|
1
|
+
/**
|
|
2
|
+
* OpenAPI definition
|
|
3
|
+
* No description provided (generated by Openapi Generator https://github.com/openapitools/openapi-generator)
|
|
4
|
+
*
|
|
5
|
+
* The version of the OpenAPI document: v0
|
|
6
|
+
*
|
|
7
|
+
*
|
|
8
|
+
* NOTE: This class is auto generated by OpenAPI Generator (https://openapi-generator.tech).
|
|
9
|
+
* https://openapi-generator.tech
|
|
10
|
+
* Do not edit the class manually.
|
|
11
|
+
*/
|
|
12
|
+
/**
|
|
13
|
+
* 设备状态枚举
|
|
14
|
+
* @export
|
|
15
|
+
* @enum {string}
|
|
16
|
+
*/
|
|
17
|
+
export declare const IotDeviceStatusEnum: {
|
|
18
|
+
readonly Unknown: "UNKNOWN";
|
|
19
|
+
readonly Offline: "OFFLINE";
|
|
20
|
+
readonly Online: "ONLINE";
|
|
21
|
+
};
|
|
22
|
+
export type IotDeviceStatusEnum = typeof IotDeviceStatusEnum[keyof typeof IotDeviceStatusEnum];
|
|
@@ -0,0 +1,23 @@
|
|
|
1
|
+
/* tslint:disable */
|
|
2
|
+
/* eslint-disable */
|
|
3
|
+
/**
|
|
4
|
+
* OpenAPI definition
|
|
5
|
+
* No description provided (generated by Openapi Generator https://github.com/openapitools/openapi-generator)
|
|
6
|
+
*
|
|
7
|
+
* The version of the OpenAPI document: v0
|
|
8
|
+
*
|
|
9
|
+
*
|
|
10
|
+
* NOTE: This class is auto generated by OpenAPI Generator (https://openapi-generator.tech).
|
|
11
|
+
* https://openapi-generator.tech
|
|
12
|
+
* Do not edit the class manually.
|
|
13
|
+
*/
|
|
14
|
+
/**
|
|
15
|
+
* 设备状态枚举
|
|
16
|
+
* @export
|
|
17
|
+
* @enum {string}
|
|
18
|
+
*/
|
|
19
|
+
export const IotDeviceStatusEnum = {
|
|
20
|
+
Unknown: 'UNKNOWN',
|
|
21
|
+
Offline: 'OFFLINE',
|
|
22
|
+
Online: 'ONLINE'
|
|
23
|
+
};
|
|
@@ -34,12 +34,6 @@ export interface IPageAccessVO {
|
|
|
34
34
|
* @memberof IPageAccessVO
|
|
35
35
|
*/
|
|
36
36
|
'records'?: Array<AccessVO>;
|
|
37
|
-
/**
|
|
38
|
-
*
|
|
39
|
-
* @type {boolean}
|
|
40
|
-
* @memberof IPageAccessVO
|
|
41
|
-
*/
|
|
42
|
-
'searchCount'?: boolean;
|
|
43
37
|
/**
|
|
44
38
|
*
|
|
45
39
|
* @type {number}
|
|
@@ -53,6 +47,12 @@ export interface IPageAccessVO {
|
|
|
53
47
|
* @deprecated
|
|
54
48
|
*/
|
|
55
49
|
'hitCount'?: boolean;
|
|
50
|
+
/**
|
|
51
|
+
*
|
|
52
|
+
* @type {boolean}
|
|
53
|
+
* @memberof IPageAccessVO
|
|
54
|
+
*/
|
|
55
|
+
'searchCount'?: boolean;
|
|
56
56
|
/**
|
|
57
57
|
*
|
|
58
58
|
* @type {number}
|
|
@@ -11,6 +11,7 @@
|
|
|
11
11
|
*/
|
|
12
12
|
import type { FunctionalAreaEnum } from './functional-area-enum';
|
|
13
13
|
import type { InstallationBodyEnum } from './installation-body-enum';
|
|
14
|
+
import type { IotDeviceStatusEnum } from './iot-device-status-enum';
|
|
14
15
|
import type { Space } from './space';
|
|
15
16
|
/**
|
|
16
17
|
* 监控详情参数
|
|
@@ -85,11 +86,11 @@ export interface SurveillanceDetailsDto {
|
|
|
85
86
|
*/
|
|
86
87
|
'isShowSpace'?: boolean;
|
|
87
88
|
/**
|
|
88
|
-
*
|
|
89
|
-
* @type {
|
|
89
|
+
*
|
|
90
|
+
* @type {IotDeviceStatusEnum}
|
|
90
91
|
* @memberof SurveillanceDetailsDto
|
|
91
92
|
*/
|
|
92
|
-
'deviceStatus'?:
|
|
93
|
+
'deviceStatus'?: IotDeviceStatusEnum;
|
|
93
94
|
/**
|
|
94
95
|
*
|
|
95
96
|
* @type {InstallationBodyEnum}
|
|
@@ -121,9 +122,3 @@ export interface SurveillanceDetailsDto {
|
|
|
121
122
|
*/
|
|
122
123
|
'surveillancePoint'?: Array<number>;
|
|
123
124
|
}
|
|
124
|
-
export declare const SurveillanceDetailsDtoDeviceStatusEnum: {
|
|
125
|
-
readonly Unknown: "UNKNOWN";
|
|
126
|
-
readonly Offline: "OFFLINE";
|
|
127
|
-
readonly Online: "ONLINE";
|
|
128
|
-
};
|
|
129
|
-
export type SurveillanceDetailsDtoDeviceStatusEnum = typeof SurveillanceDetailsDtoDeviceStatusEnum[keyof typeof SurveillanceDetailsDtoDeviceStatusEnum];
|
|
@@ -9,6 +9,7 @@
|
|
|
9
9
|
* https://openapi-generator.tech
|
|
10
10
|
* Do not edit the class manually.
|
|
11
11
|
*/
|
|
12
|
+
import type { IotDeviceStatusEnum } from './iot-device-status-enum';
|
|
12
13
|
/**
|
|
13
14
|
* 监控详情
|
|
14
15
|
* @export
|
|
@@ -40,15 +41,9 @@ export interface Surveillance {
|
|
|
40
41
|
*/
|
|
41
42
|
'surveillancePoint'?: Array<number>;
|
|
42
43
|
/**
|
|
43
|
-
*
|
|
44
|
-
* @type {
|
|
44
|
+
*
|
|
45
|
+
* @type {IotDeviceStatusEnum}
|
|
45
46
|
* @memberof Surveillance
|
|
46
47
|
*/
|
|
47
|
-
'surveillanceStatus'?:
|
|
48
|
+
'surveillanceStatus'?: IotDeviceStatusEnum;
|
|
48
49
|
}
|
|
49
|
-
export declare const SurveillanceSurveillanceStatusEnum: {
|
|
50
|
-
readonly Unknown: "UNKNOWN";
|
|
51
|
-
readonly Offline: "OFFLINE";
|
|
52
|
-
readonly Online: "ONLINE";
|
|
53
|
-
};
|
|
54
|
-
export type SurveillanceSurveillanceStatusEnum = typeof SurveillanceSurveillanceStatusEnum[keyof typeof SurveillanceSurveillanceStatusEnum];
|
|
@@ -17,12 +17,6 @@ import type { GetUserWx200ResponseOutputStream } from './get-user-wx200-response
|
|
|
17
17
|
* @interface GetUserWx200Response
|
|
18
18
|
*/
|
|
19
19
|
export interface GetUserWx200Response {
|
|
20
|
-
/**
|
|
21
|
-
*
|
|
22
|
-
* @type {object}
|
|
23
|
-
* @memberof GetUserWx200Response
|
|
24
|
-
*/
|
|
25
|
-
'trailerFields'?: object;
|
|
26
20
|
/**
|
|
27
21
|
*
|
|
28
22
|
* @type {number}
|
|
@@ -35,6 +29,12 @@ export interface GetUserWx200Response {
|
|
|
35
29
|
* @memberof GetUserWx200Response
|
|
36
30
|
*/
|
|
37
31
|
'headerNames'?: Array<string>;
|
|
32
|
+
/**
|
|
33
|
+
*
|
|
34
|
+
* @type {object}
|
|
35
|
+
* @memberof GetUserWx200Response
|
|
36
|
+
*/
|
|
37
|
+
'trailerFields'?: object;
|
|
38
38
|
/**
|
|
39
39
|
*
|
|
40
40
|
* @type {string}
|
package/dist/models/index.d.ts
CHANGED
|
@@ -312,6 +312,7 @@ export * from './internet-pan-perception-search-vo';
|
|
|
312
312
|
export * from './internet-set-vo';
|
|
313
313
|
export * from './internet-water-report-record-search-vo';
|
|
314
314
|
export * from './internet-water-search-vo';
|
|
315
|
+
export * from './iot-device-status-enum';
|
|
315
316
|
export * from './iot-gradient-alarm-add-or-update-vo';
|
|
316
317
|
export * from './iot-gradient-alarm-rule-settings-dto';
|
|
317
318
|
export * from './iot-gradient-alarm-rule-vo';
|
package/dist/models/index.js
CHANGED
|
@@ -328,6 +328,7 @@ __exportStar(require("./internet-pan-perception-search-vo"), exports);
|
|
|
328
328
|
__exportStar(require("./internet-set-vo"), exports);
|
|
329
329
|
__exportStar(require("./internet-water-report-record-search-vo"), exports);
|
|
330
330
|
__exportStar(require("./internet-water-search-vo"), exports);
|
|
331
|
+
__exportStar(require("./iot-device-status-enum"), exports);
|
|
331
332
|
__exportStar(require("./iot-gradient-alarm-add-or-update-vo"), exports);
|
|
332
333
|
__exportStar(require("./iot-gradient-alarm-rule-settings-dto"), exports);
|
|
333
334
|
__exportStar(require("./iot-gradient-alarm-rule-vo"), exports);
|
|
@@ -0,0 +1,22 @@
|
|
|
1
|
+
/**
|
|
2
|
+
* OpenAPI definition
|
|
3
|
+
* No description provided (generated by Openapi Generator https://github.com/openapitools/openapi-generator)
|
|
4
|
+
*
|
|
5
|
+
* The version of the OpenAPI document: v0
|
|
6
|
+
*
|
|
7
|
+
*
|
|
8
|
+
* NOTE: This class is auto generated by OpenAPI Generator (https://openapi-generator.tech).
|
|
9
|
+
* https://openapi-generator.tech
|
|
10
|
+
* Do not edit the class manually.
|
|
11
|
+
*/
|
|
12
|
+
/**
|
|
13
|
+
* 设备状态枚举
|
|
14
|
+
* @export
|
|
15
|
+
* @enum {string}
|
|
16
|
+
*/
|
|
17
|
+
export declare const IotDeviceStatusEnum: {
|
|
18
|
+
readonly Unknown: "UNKNOWN";
|
|
19
|
+
readonly Offline: "OFFLINE";
|
|
20
|
+
readonly Online: "ONLINE";
|
|
21
|
+
};
|
|
22
|
+
export type IotDeviceStatusEnum = typeof IotDeviceStatusEnum[keyof typeof IotDeviceStatusEnum];
|
|
@@ -0,0 +1,26 @@
|
|
|
1
|
+
"use strict";
|
|
2
|
+
/* tslint:disable */
|
|
3
|
+
/* eslint-disable */
|
|
4
|
+
/**
|
|
5
|
+
* OpenAPI definition
|
|
6
|
+
* No description provided (generated by Openapi Generator https://github.com/openapitools/openapi-generator)
|
|
7
|
+
*
|
|
8
|
+
* The version of the OpenAPI document: v0
|
|
9
|
+
*
|
|
10
|
+
*
|
|
11
|
+
* NOTE: This class is auto generated by OpenAPI Generator (https://openapi-generator.tech).
|
|
12
|
+
* https://openapi-generator.tech
|
|
13
|
+
* Do not edit the class manually.
|
|
14
|
+
*/
|
|
15
|
+
Object.defineProperty(exports, "__esModule", { value: true });
|
|
16
|
+
exports.IotDeviceStatusEnum = void 0;
|
|
17
|
+
/**
|
|
18
|
+
* 设备状态枚举
|
|
19
|
+
* @export
|
|
20
|
+
* @enum {string}
|
|
21
|
+
*/
|
|
22
|
+
exports.IotDeviceStatusEnum = {
|
|
23
|
+
Unknown: 'UNKNOWN',
|
|
24
|
+
Offline: 'OFFLINE',
|
|
25
|
+
Online: 'ONLINE'
|
|
26
|
+
};
|
|
@@ -34,12 +34,6 @@ export interface IPageAccessVO {
|
|
|
34
34
|
* @memberof IPageAccessVO
|
|
35
35
|
*/
|
|
36
36
|
'records'?: Array<AccessVO>;
|
|
37
|
-
/**
|
|
38
|
-
*
|
|
39
|
-
* @type {boolean}
|
|
40
|
-
* @memberof IPageAccessVO
|
|
41
|
-
*/
|
|
42
|
-
'searchCount'?: boolean;
|
|
43
37
|
/**
|
|
44
38
|
*
|
|
45
39
|
* @type {number}
|
|
@@ -53,6 +47,12 @@ export interface IPageAccessVO {
|
|
|
53
47
|
* @deprecated
|
|
54
48
|
*/
|
|
55
49
|
'hitCount'?: boolean;
|
|
50
|
+
/**
|
|
51
|
+
*
|
|
52
|
+
* @type {boolean}
|
|
53
|
+
* @memberof IPageAccessVO
|
|
54
|
+
*/
|
|
55
|
+
'searchCount'?: boolean;
|
|
56
56
|
/**
|
|
57
57
|
*
|
|
58
58
|
* @type {number}
|
|
@@ -11,6 +11,7 @@
|
|
|
11
11
|
*/
|
|
12
12
|
import type { FunctionalAreaEnum } from './functional-area-enum';
|
|
13
13
|
import type { InstallationBodyEnum } from './installation-body-enum';
|
|
14
|
+
import type { IotDeviceStatusEnum } from './iot-device-status-enum';
|
|
14
15
|
import type { Space } from './space';
|
|
15
16
|
/**
|
|
16
17
|
* 监控详情参数
|
|
@@ -85,11 +86,11 @@ export interface SurveillanceDetailsDto {
|
|
|
85
86
|
*/
|
|
86
87
|
'isShowSpace'?: boolean;
|
|
87
88
|
/**
|
|
88
|
-
*
|
|
89
|
-
* @type {
|
|
89
|
+
*
|
|
90
|
+
* @type {IotDeviceStatusEnum}
|
|
90
91
|
* @memberof SurveillanceDetailsDto
|
|
91
92
|
*/
|
|
92
|
-
'deviceStatus'?:
|
|
93
|
+
'deviceStatus'?: IotDeviceStatusEnum;
|
|
93
94
|
/**
|
|
94
95
|
*
|
|
95
96
|
* @type {InstallationBodyEnum}
|
|
@@ -121,9 +122,3 @@ export interface SurveillanceDetailsDto {
|
|
|
121
122
|
*/
|
|
122
123
|
'surveillancePoint'?: Array<number>;
|
|
123
124
|
}
|
|
124
|
-
export declare const SurveillanceDetailsDtoDeviceStatusEnum: {
|
|
125
|
-
readonly Unknown: "UNKNOWN";
|
|
126
|
-
readonly Offline: "OFFLINE";
|
|
127
|
-
readonly Online: "ONLINE";
|
|
128
|
-
};
|
|
129
|
-
export type SurveillanceDetailsDtoDeviceStatusEnum = typeof SurveillanceDetailsDtoDeviceStatusEnum[keyof typeof SurveillanceDetailsDtoDeviceStatusEnum];
|
|
@@ -13,9 +13,3 @@
|
|
|
13
13
|
* Do not edit the class manually.
|
|
14
14
|
*/
|
|
15
15
|
Object.defineProperty(exports, "__esModule", { value: true });
|
|
16
|
-
exports.SurveillanceDetailsDtoDeviceStatusEnum = void 0;
|
|
17
|
-
exports.SurveillanceDetailsDtoDeviceStatusEnum = {
|
|
18
|
-
Unknown: 'UNKNOWN',
|
|
19
|
-
Offline: 'OFFLINE',
|
|
20
|
-
Online: 'ONLINE'
|
|
21
|
-
};
|
|
@@ -9,6 +9,7 @@
|
|
|
9
9
|
* https://openapi-generator.tech
|
|
10
10
|
* Do not edit the class manually.
|
|
11
11
|
*/
|
|
12
|
+
import type { IotDeviceStatusEnum } from './iot-device-status-enum';
|
|
12
13
|
/**
|
|
13
14
|
* 监控详情
|
|
14
15
|
* @export
|
|
@@ -40,15 +41,9 @@ export interface Surveillance {
|
|
|
40
41
|
*/
|
|
41
42
|
'surveillancePoint'?: Array<number>;
|
|
42
43
|
/**
|
|
43
|
-
*
|
|
44
|
-
* @type {
|
|
44
|
+
*
|
|
45
|
+
* @type {IotDeviceStatusEnum}
|
|
45
46
|
* @memberof Surveillance
|
|
46
47
|
*/
|
|
47
|
-
'surveillanceStatus'?:
|
|
48
|
+
'surveillanceStatus'?: IotDeviceStatusEnum;
|
|
48
49
|
}
|
|
49
|
-
export declare const SurveillanceSurveillanceStatusEnum: {
|
|
50
|
-
readonly Unknown: "UNKNOWN";
|
|
51
|
-
readonly Offline: "OFFLINE";
|
|
52
|
-
readonly Online: "ONLINE";
|
|
53
|
-
};
|
|
54
|
-
export type SurveillanceSurveillanceStatusEnum = typeof SurveillanceSurveillanceStatusEnum[keyof typeof SurveillanceSurveillanceStatusEnum];
|
|
@@ -13,9 +13,3 @@
|
|
|
13
13
|
* Do not edit the class manually.
|
|
14
14
|
*/
|
|
15
15
|
Object.defineProperty(exports, "__esModule", { value: true });
|
|
16
|
-
exports.SurveillanceSurveillanceStatusEnum = void 0;
|
|
17
|
-
exports.SurveillanceSurveillanceStatusEnum = {
|
|
18
|
-
Unknown: 'UNKNOWN',
|
|
19
|
-
Offline: 'OFFLINE',
|
|
20
|
-
Online: 'ONLINE'
|
|
21
|
-
};
|
|
@@ -26,12 +26,6 @@ import type { GetUserWx200ResponseOutputStream } from './get-user-wx200-response
|
|
|
26
26
|
* @interface GetUserWx200Response
|
|
27
27
|
*/
|
|
28
28
|
export interface GetUserWx200Response {
|
|
29
|
-
/**
|
|
30
|
-
*
|
|
31
|
-
* @type {object}
|
|
32
|
-
* @memberof GetUserWx200Response
|
|
33
|
-
*/
|
|
34
|
-
'trailerFields'?: object;
|
|
35
29
|
/**
|
|
36
30
|
*
|
|
37
31
|
* @type {number}
|
|
@@ -44,6 +38,12 @@ export interface GetUserWx200Response {
|
|
|
44
38
|
* @memberof GetUserWx200Response
|
|
45
39
|
*/
|
|
46
40
|
'headerNames'?: Array<string>;
|
|
41
|
+
/**
|
|
42
|
+
*
|
|
43
|
+
* @type {object}
|
|
44
|
+
* @memberof GetUserWx200Response
|
|
45
|
+
*/
|
|
46
|
+
'trailerFields'?: object;
|
|
47
47
|
/**
|
|
48
48
|
*
|
|
49
49
|
* @type {string}
|
package/models/index.ts
CHANGED
|
@@ -312,6 +312,7 @@ export * from './internet-pan-perception-search-vo';
|
|
|
312
312
|
export * from './internet-set-vo';
|
|
313
313
|
export * from './internet-water-report-record-search-vo';
|
|
314
314
|
export * from './internet-water-search-vo';
|
|
315
|
+
export * from './iot-device-status-enum';
|
|
315
316
|
export * from './iot-gradient-alarm-add-or-update-vo';
|
|
316
317
|
export * from './iot-gradient-alarm-rule-settings-dto';
|
|
317
318
|
export * from './iot-gradient-alarm-rule-vo';
|
|
@@ -0,0 +1,32 @@
|
|
|
1
|
+
/* tslint:disable */
|
|
2
|
+
/* eslint-disable */
|
|
3
|
+
/**
|
|
4
|
+
* OpenAPI definition
|
|
5
|
+
* No description provided (generated by Openapi Generator https://github.com/openapitools/openapi-generator)
|
|
6
|
+
*
|
|
7
|
+
* The version of the OpenAPI document: v0
|
|
8
|
+
*
|
|
9
|
+
*
|
|
10
|
+
* NOTE: This class is auto generated by OpenAPI Generator (https://openapi-generator.tech).
|
|
11
|
+
* https://openapi-generator.tech
|
|
12
|
+
* Do not edit the class manually.
|
|
13
|
+
*/
|
|
14
|
+
|
|
15
|
+
|
|
16
|
+
|
|
17
|
+
/**
|
|
18
|
+
* 设备状态枚举
|
|
19
|
+
* @export
|
|
20
|
+
* @enum {string}
|
|
21
|
+
*/
|
|
22
|
+
|
|
23
|
+
export const IotDeviceStatusEnum = {
|
|
24
|
+
Unknown: 'UNKNOWN',
|
|
25
|
+
Offline: 'OFFLINE',
|
|
26
|
+
Online: 'ONLINE'
|
|
27
|
+
} as const;
|
|
28
|
+
|
|
29
|
+
export type IotDeviceStatusEnum = typeof IotDeviceStatusEnum[keyof typeof IotDeviceStatusEnum];
|
|
30
|
+
|
|
31
|
+
|
|
32
|
+
|
|
@@ -41,12 +41,6 @@ export interface IPageAccessVO {
|
|
|
41
41
|
* @memberof IPageAccessVO
|
|
42
42
|
*/
|
|
43
43
|
'records'?: Array<AccessVO>;
|
|
44
|
-
/**
|
|
45
|
-
*
|
|
46
|
-
* @type {boolean}
|
|
47
|
-
* @memberof IPageAccessVO
|
|
48
|
-
*/
|
|
49
|
-
'searchCount'?: boolean;
|
|
50
44
|
/**
|
|
51
45
|
*
|
|
52
46
|
* @type {number}
|
|
@@ -60,6 +54,12 @@ export interface IPageAccessVO {
|
|
|
60
54
|
* @deprecated
|
|
61
55
|
*/
|
|
62
56
|
'hitCount'?: boolean;
|
|
57
|
+
/**
|
|
58
|
+
*
|
|
59
|
+
* @type {boolean}
|
|
60
|
+
* @memberof IPageAccessVO
|
|
61
|
+
*/
|
|
62
|
+
'searchCount'?: boolean;
|
|
63
63
|
/**
|
|
64
64
|
*
|
|
65
65
|
* @type {number}
|
|
@@ -21,6 +21,9 @@ import type { FunctionalAreaEnum } from './functional-area-enum';
|
|
|
21
21
|
import type { InstallationBodyEnum } from './installation-body-enum';
|
|
22
22
|
// May contain unused imports in some cases
|
|
23
23
|
// @ts-ignore
|
|
24
|
+
import type { IotDeviceStatusEnum } from './iot-device-status-enum';
|
|
25
|
+
// May contain unused imports in some cases
|
|
26
|
+
// @ts-ignore
|
|
24
27
|
import type { Space } from './space';
|
|
25
28
|
|
|
26
29
|
/**
|
|
@@ -96,11 +99,11 @@ export interface SurveillanceDetailsDto {
|
|
|
96
99
|
*/
|
|
97
100
|
'isShowSpace'?: boolean;
|
|
98
101
|
/**
|
|
99
|
-
*
|
|
100
|
-
* @type {
|
|
102
|
+
*
|
|
103
|
+
* @type {IotDeviceStatusEnum}
|
|
101
104
|
* @memberof SurveillanceDetailsDto
|
|
102
105
|
*/
|
|
103
|
-
'deviceStatus'?:
|
|
106
|
+
'deviceStatus'?: IotDeviceStatusEnum;
|
|
104
107
|
/**
|
|
105
108
|
*
|
|
106
109
|
* @type {InstallationBodyEnum}
|
|
@@ -133,12 +136,5 @@ export interface SurveillanceDetailsDto {
|
|
|
133
136
|
'surveillancePoint'?: Array<number>;
|
|
134
137
|
}
|
|
135
138
|
|
|
136
|
-
export const SurveillanceDetailsDtoDeviceStatusEnum = {
|
|
137
|
-
Unknown: 'UNKNOWN',
|
|
138
|
-
Offline: 'OFFLINE',
|
|
139
|
-
Online: 'ONLINE'
|
|
140
|
-
} as const;
|
|
141
|
-
|
|
142
|
-
export type SurveillanceDetailsDtoDeviceStatusEnum = typeof SurveillanceDetailsDtoDeviceStatusEnum[keyof typeof SurveillanceDetailsDtoDeviceStatusEnum];
|
|
143
139
|
|
|
144
140
|
|
package/models/surveillance.ts
CHANGED
|
@@ -13,6 +13,9 @@
|
|
|
13
13
|
*/
|
|
14
14
|
|
|
15
15
|
|
|
16
|
+
// May contain unused imports in some cases
|
|
17
|
+
// @ts-ignore
|
|
18
|
+
import type { IotDeviceStatusEnum } from './iot-device-status-enum';
|
|
16
19
|
|
|
17
20
|
/**
|
|
18
21
|
* 监控详情
|
|
@@ -45,19 +48,12 @@ export interface Surveillance {
|
|
|
45
48
|
*/
|
|
46
49
|
'surveillancePoint'?: Array<number>;
|
|
47
50
|
/**
|
|
48
|
-
*
|
|
49
|
-
* @type {
|
|
51
|
+
*
|
|
52
|
+
* @type {IotDeviceStatusEnum}
|
|
50
53
|
* @memberof Surveillance
|
|
51
54
|
*/
|
|
52
|
-
'surveillanceStatus'?:
|
|
55
|
+
'surveillanceStatus'?: IotDeviceStatusEnum;
|
|
53
56
|
}
|
|
54
57
|
|
|
55
|
-
export const SurveillanceSurveillanceStatusEnum = {
|
|
56
|
-
Unknown: 'UNKNOWN',
|
|
57
|
-
Offline: 'OFFLINE',
|
|
58
|
-
Online: 'ONLINE'
|
|
59
|
-
} as const;
|
|
60
|
-
|
|
61
|
-
export type SurveillanceSurveillanceStatusEnum = typeof SurveillanceSurveillanceStatusEnum[keyof typeof SurveillanceSurveillanceStatusEnum];
|
|
62
58
|
|
|
63
59
|
|