@gizone/rrs-client 4.1.0-alpha.117 → 4.1.0-alpha.118
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/esm/models/get-user-wx200-response.d.ts +9 -9
- package/dist/esm/models/hik-get-cameras-info-vo.d.ts +26 -2
- package/dist/esm/models/ipage-access-vo.d.ts +8 -8
- package/dist/models/get-user-wx200-response.d.ts +9 -9
- package/dist/models/hik-get-cameras-info-vo.d.ts +26 -2
- package/dist/models/ipage-access-vo.d.ts +8 -8
- package/models/get-user-wx200-response.ts +9 -9
- package/models/hik-get-cameras-info-vo.ts +26 -2
- package/models/ipage-access-vo.ts +8 -8
- package/package.json +1 -1
|
@@ -37,34 +37,34 @@ export interface GetUserWx200Response {
|
|
|
37
37
|
'trailerFields'?: object;
|
|
38
38
|
/**
|
|
39
39
|
*
|
|
40
|
-
* @type {
|
|
40
|
+
* @type {GetUserWx200ResponseLocale}
|
|
41
41
|
* @memberof GetUserWx200Response
|
|
42
42
|
*/
|
|
43
|
-
'
|
|
43
|
+
'locale'?: GetUserWx200ResponseLocale;
|
|
44
44
|
/**
|
|
45
45
|
*
|
|
46
46
|
* @type {number}
|
|
47
47
|
* @memberof GetUserWx200Response
|
|
48
48
|
*/
|
|
49
|
-
'
|
|
49
|
+
'bufferSize'?: number;
|
|
50
50
|
/**
|
|
51
51
|
*
|
|
52
|
-
* @type {
|
|
52
|
+
* @type {string}
|
|
53
53
|
* @memberof GetUserWx200Response
|
|
54
54
|
*/
|
|
55
|
-
'
|
|
55
|
+
'contentType'?: string;
|
|
56
56
|
/**
|
|
57
57
|
*
|
|
58
|
-
* @type {
|
|
58
|
+
* @type {number}
|
|
59
59
|
* @memberof GetUserWx200Response
|
|
60
60
|
*/
|
|
61
|
-
'
|
|
61
|
+
'contentLength'?: number;
|
|
62
62
|
/**
|
|
63
63
|
*
|
|
64
|
-
* @type {
|
|
64
|
+
* @type {GetUserWx200ResponseOutputStream}
|
|
65
65
|
* @memberof GetUserWx200Response
|
|
66
66
|
*/
|
|
67
|
-
'
|
|
67
|
+
'outputStream'?: GetUserWx200ResponseOutputStream;
|
|
68
68
|
/**
|
|
69
69
|
*
|
|
70
70
|
* @type {string}
|
|
@@ -112,15 +112,39 @@ export interface HikGetCamerasInfoVO {
|
|
|
112
112
|
*/
|
|
113
113
|
'statusStartTime'?: string;
|
|
114
114
|
/**
|
|
115
|
-
*
|
|
115
|
+
* 状态结束时间-离线修复时间
|
|
116
116
|
* @type {string}
|
|
117
117
|
* @memberof HikGetCamerasInfoVO
|
|
118
118
|
*/
|
|
119
119
|
'statusEndTime'?: string;
|
|
120
120
|
/**
|
|
121
|
-
*
|
|
121
|
+
* 离线原因
|
|
122
122
|
* @type {string}
|
|
123
123
|
* @memberof HikGetCamerasInfoVO
|
|
124
124
|
*/
|
|
125
125
|
'devErrorCode'?: string;
|
|
126
|
+
/**
|
|
127
|
+
* 录像结果 巡检结果(31-正常,32-异常,34-未配置)
|
|
128
|
+
* @type {number}
|
|
129
|
+
* @memberof HikGetCamerasInfoVO
|
|
130
|
+
*/
|
|
131
|
+
'recordingStatus'?: number;
|
|
132
|
+
/**
|
|
133
|
+
* 实际录像时长
|
|
134
|
+
* @type {number}
|
|
135
|
+
* @memberof HikGetCamerasInfoVO
|
|
136
|
+
*/
|
|
137
|
+
'intactDuration'?: number;
|
|
138
|
+
/**
|
|
139
|
+
* 计划录像时长
|
|
140
|
+
* @type {number}
|
|
141
|
+
* @memberof HikGetCamerasInfoVO
|
|
142
|
+
*/
|
|
143
|
+
'planDuration'?: number;
|
|
144
|
+
/**
|
|
145
|
+
* 未录像时长=计划录像时长-实际录像时长
|
|
146
|
+
* @type {string}
|
|
147
|
+
* @memberof HikGetCamerasInfoVO
|
|
148
|
+
*/
|
|
149
|
+
'noRecordingDuration'?: string;
|
|
126
150
|
}
|
|
@@ -22,12 +22,6 @@ export interface IPageAccessVO {
|
|
|
22
22
|
* @memberof IPageAccessVO
|
|
23
23
|
*/
|
|
24
24
|
'total'?: number;
|
|
25
|
-
/**
|
|
26
|
-
*
|
|
27
|
-
* @type {number}
|
|
28
|
-
* @memberof IPageAccessVO
|
|
29
|
-
*/
|
|
30
|
-
'current'?: number;
|
|
31
25
|
/**
|
|
32
26
|
*
|
|
33
27
|
* @type {Array<AccessVO>}
|
|
@@ -36,10 +30,10 @@ export interface IPageAccessVO {
|
|
|
36
30
|
'records'?: Array<AccessVO>;
|
|
37
31
|
/**
|
|
38
32
|
*
|
|
39
|
-
* @type {
|
|
33
|
+
* @type {number}
|
|
40
34
|
* @memberof IPageAccessVO
|
|
41
35
|
*/
|
|
42
|
-
'
|
|
36
|
+
'current'?: number;
|
|
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}
|
|
@@ -37,34 +37,34 @@ export interface GetUserWx200Response {
|
|
|
37
37
|
'trailerFields'?: object;
|
|
38
38
|
/**
|
|
39
39
|
*
|
|
40
|
-
* @type {
|
|
40
|
+
* @type {GetUserWx200ResponseLocale}
|
|
41
41
|
* @memberof GetUserWx200Response
|
|
42
42
|
*/
|
|
43
|
-
'
|
|
43
|
+
'locale'?: GetUserWx200ResponseLocale;
|
|
44
44
|
/**
|
|
45
45
|
*
|
|
46
46
|
* @type {number}
|
|
47
47
|
* @memberof GetUserWx200Response
|
|
48
48
|
*/
|
|
49
|
-
'
|
|
49
|
+
'bufferSize'?: number;
|
|
50
50
|
/**
|
|
51
51
|
*
|
|
52
|
-
* @type {
|
|
52
|
+
* @type {string}
|
|
53
53
|
* @memberof GetUserWx200Response
|
|
54
54
|
*/
|
|
55
|
-
'
|
|
55
|
+
'contentType'?: string;
|
|
56
56
|
/**
|
|
57
57
|
*
|
|
58
|
-
* @type {
|
|
58
|
+
* @type {number}
|
|
59
59
|
* @memberof GetUserWx200Response
|
|
60
60
|
*/
|
|
61
|
-
'
|
|
61
|
+
'contentLength'?: number;
|
|
62
62
|
/**
|
|
63
63
|
*
|
|
64
|
-
* @type {
|
|
64
|
+
* @type {GetUserWx200ResponseOutputStream}
|
|
65
65
|
* @memberof GetUserWx200Response
|
|
66
66
|
*/
|
|
67
|
-
'
|
|
67
|
+
'outputStream'?: GetUserWx200ResponseOutputStream;
|
|
68
68
|
/**
|
|
69
69
|
*
|
|
70
70
|
* @type {string}
|
|
@@ -112,15 +112,39 @@ export interface HikGetCamerasInfoVO {
|
|
|
112
112
|
*/
|
|
113
113
|
'statusStartTime'?: string;
|
|
114
114
|
/**
|
|
115
|
-
*
|
|
115
|
+
* 状态结束时间-离线修复时间
|
|
116
116
|
* @type {string}
|
|
117
117
|
* @memberof HikGetCamerasInfoVO
|
|
118
118
|
*/
|
|
119
119
|
'statusEndTime'?: string;
|
|
120
120
|
/**
|
|
121
|
-
*
|
|
121
|
+
* 离线原因
|
|
122
122
|
* @type {string}
|
|
123
123
|
* @memberof HikGetCamerasInfoVO
|
|
124
124
|
*/
|
|
125
125
|
'devErrorCode'?: string;
|
|
126
|
+
/**
|
|
127
|
+
* 录像结果 巡检结果(31-正常,32-异常,34-未配置)
|
|
128
|
+
* @type {number}
|
|
129
|
+
* @memberof HikGetCamerasInfoVO
|
|
130
|
+
*/
|
|
131
|
+
'recordingStatus'?: number;
|
|
132
|
+
/**
|
|
133
|
+
* 实际录像时长
|
|
134
|
+
* @type {number}
|
|
135
|
+
* @memberof HikGetCamerasInfoVO
|
|
136
|
+
*/
|
|
137
|
+
'intactDuration'?: number;
|
|
138
|
+
/**
|
|
139
|
+
* 计划录像时长
|
|
140
|
+
* @type {number}
|
|
141
|
+
* @memberof HikGetCamerasInfoVO
|
|
142
|
+
*/
|
|
143
|
+
'planDuration'?: number;
|
|
144
|
+
/**
|
|
145
|
+
* 未录像时长=计划录像时长-实际录像时长
|
|
146
|
+
* @type {string}
|
|
147
|
+
* @memberof HikGetCamerasInfoVO
|
|
148
|
+
*/
|
|
149
|
+
'noRecordingDuration'?: string;
|
|
126
150
|
}
|
|
@@ -22,12 +22,6 @@ export interface IPageAccessVO {
|
|
|
22
22
|
* @memberof IPageAccessVO
|
|
23
23
|
*/
|
|
24
24
|
'total'?: number;
|
|
25
|
-
/**
|
|
26
|
-
*
|
|
27
|
-
* @type {number}
|
|
28
|
-
* @memberof IPageAccessVO
|
|
29
|
-
*/
|
|
30
|
-
'current'?: number;
|
|
31
25
|
/**
|
|
32
26
|
*
|
|
33
27
|
* @type {Array<AccessVO>}
|
|
@@ -36,10 +30,10 @@ export interface IPageAccessVO {
|
|
|
36
30
|
'records'?: Array<AccessVO>;
|
|
37
31
|
/**
|
|
38
32
|
*
|
|
39
|
-
* @type {
|
|
33
|
+
* @type {number}
|
|
40
34
|
* @memberof IPageAccessVO
|
|
41
35
|
*/
|
|
42
|
-
'
|
|
36
|
+
'current'?: number;
|
|
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}
|
|
@@ -46,34 +46,34 @@ export interface GetUserWx200Response {
|
|
|
46
46
|
'trailerFields'?: object;
|
|
47
47
|
/**
|
|
48
48
|
*
|
|
49
|
-
* @type {
|
|
49
|
+
* @type {GetUserWx200ResponseLocale}
|
|
50
50
|
* @memberof GetUserWx200Response
|
|
51
51
|
*/
|
|
52
|
-
'
|
|
52
|
+
'locale'?: GetUserWx200ResponseLocale;
|
|
53
53
|
/**
|
|
54
54
|
*
|
|
55
55
|
* @type {number}
|
|
56
56
|
* @memberof GetUserWx200Response
|
|
57
57
|
*/
|
|
58
|
-
'
|
|
58
|
+
'bufferSize'?: number;
|
|
59
59
|
/**
|
|
60
60
|
*
|
|
61
|
-
* @type {
|
|
61
|
+
* @type {string}
|
|
62
62
|
* @memberof GetUserWx200Response
|
|
63
63
|
*/
|
|
64
|
-
'
|
|
64
|
+
'contentType'?: string;
|
|
65
65
|
/**
|
|
66
66
|
*
|
|
67
|
-
* @type {
|
|
67
|
+
* @type {number}
|
|
68
68
|
* @memberof GetUserWx200Response
|
|
69
69
|
*/
|
|
70
|
-
'
|
|
70
|
+
'contentLength'?: number;
|
|
71
71
|
/**
|
|
72
72
|
*
|
|
73
|
-
* @type {
|
|
73
|
+
* @type {GetUserWx200ResponseOutputStream}
|
|
74
74
|
* @memberof GetUserWx200Response
|
|
75
75
|
*/
|
|
76
|
-
'
|
|
76
|
+
'outputStream'?: GetUserWx200ResponseOutputStream;
|
|
77
77
|
/**
|
|
78
78
|
*
|
|
79
79
|
* @type {string}
|
|
@@ -117,16 +117,40 @@ export interface HikGetCamerasInfoVO {
|
|
|
117
117
|
*/
|
|
118
118
|
'statusStartTime'?: string;
|
|
119
119
|
/**
|
|
120
|
-
*
|
|
120
|
+
* 状态结束时间-离线修复时间
|
|
121
121
|
* @type {string}
|
|
122
122
|
* @memberof HikGetCamerasInfoVO
|
|
123
123
|
*/
|
|
124
124
|
'statusEndTime'?: string;
|
|
125
125
|
/**
|
|
126
|
-
*
|
|
126
|
+
* 离线原因
|
|
127
127
|
* @type {string}
|
|
128
128
|
* @memberof HikGetCamerasInfoVO
|
|
129
129
|
*/
|
|
130
130
|
'devErrorCode'?: string;
|
|
131
|
+
/**
|
|
132
|
+
* 录像结果 巡检结果(31-正常,32-异常,34-未配置)
|
|
133
|
+
* @type {number}
|
|
134
|
+
* @memberof HikGetCamerasInfoVO
|
|
135
|
+
*/
|
|
136
|
+
'recordingStatus'?: number;
|
|
137
|
+
/**
|
|
138
|
+
* 实际录像时长
|
|
139
|
+
* @type {number}
|
|
140
|
+
* @memberof HikGetCamerasInfoVO
|
|
141
|
+
*/
|
|
142
|
+
'intactDuration'?: number;
|
|
143
|
+
/**
|
|
144
|
+
* 计划录像时长
|
|
145
|
+
* @type {number}
|
|
146
|
+
* @memberof HikGetCamerasInfoVO
|
|
147
|
+
*/
|
|
148
|
+
'planDuration'?: number;
|
|
149
|
+
/**
|
|
150
|
+
* 未录像时长=计划录像时长-实际录像时长
|
|
151
|
+
* @type {string}
|
|
152
|
+
* @memberof HikGetCamerasInfoVO
|
|
153
|
+
*/
|
|
154
|
+
'noRecordingDuration'?: string;
|
|
131
155
|
}
|
|
132
156
|
|
|
@@ -29,12 +29,6 @@ export interface IPageAccessVO {
|
|
|
29
29
|
* @memberof IPageAccessVO
|
|
30
30
|
*/
|
|
31
31
|
'total'?: number;
|
|
32
|
-
/**
|
|
33
|
-
*
|
|
34
|
-
* @type {number}
|
|
35
|
-
* @memberof IPageAccessVO
|
|
36
|
-
*/
|
|
37
|
-
'current'?: number;
|
|
38
32
|
/**
|
|
39
33
|
*
|
|
40
34
|
* @type {Array<AccessVO>}
|
|
@@ -43,10 +37,10 @@ export interface IPageAccessVO {
|
|
|
43
37
|
'records'?: Array<AccessVO>;
|
|
44
38
|
/**
|
|
45
39
|
*
|
|
46
|
-
* @type {
|
|
40
|
+
* @type {number}
|
|
47
41
|
* @memberof IPageAccessVO
|
|
48
42
|
*/
|
|
49
|
-
'
|
|
43
|
+
'current'?: number;
|
|
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}
|