@gizone/rrs-client 4.1.0-alpha.118 → 4.1.0-alpha.120
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 +15 -15
- package/dist/esm/models/ipage-access-vo.d.ts +4 -4
- package/dist/esm/models/surveillance-details-dto.d.ts +2 -2
- package/dist/models/get-user-wx200-response.d.ts +15 -15
- package/dist/models/ipage-access-vo.d.ts +4 -4
- package/dist/models/surveillance-details-dto.d.ts +2 -2
- package/models/get-user-wx200-response.ts +15 -15
- package/models/ipage-access-vo.ts +4 -4
- package/models/surveillance-details-dto.ts +2 -2
- package/package.json +1 -1
|
@@ -19,52 +19,52 @@ import type { GetUserWx200ResponseOutputStream } from './get-user-wx200-response
|
|
|
19
19
|
export interface GetUserWx200Response {
|
|
20
20
|
/**
|
|
21
21
|
*
|
|
22
|
-
* @type {
|
|
22
|
+
* @type {object}
|
|
23
23
|
* @memberof GetUserWx200Response
|
|
24
24
|
*/
|
|
25
|
-
'
|
|
25
|
+
'trailerFields'?: object;
|
|
26
26
|
/**
|
|
27
27
|
*
|
|
28
|
-
* @type {
|
|
28
|
+
* @type {number}
|
|
29
29
|
* @memberof GetUserWx200Response
|
|
30
30
|
*/
|
|
31
|
-
'
|
|
31
|
+
'status'?: number;
|
|
32
32
|
/**
|
|
33
33
|
*
|
|
34
|
-
* @type {
|
|
34
|
+
* @type {Array<string>}
|
|
35
35
|
* @memberof GetUserWx200Response
|
|
36
36
|
*/
|
|
37
|
-
'
|
|
37
|
+
'headerNames'?: Array<string>;
|
|
38
38
|
/**
|
|
39
39
|
*
|
|
40
|
-
* @type {
|
|
40
|
+
* @type {string}
|
|
41
41
|
* @memberof GetUserWx200Response
|
|
42
42
|
*/
|
|
43
|
-
'
|
|
43
|
+
'contentType'?: string;
|
|
44
44
|
/**
|
|
45
45
|
*
|
|
46
46
|
* @type {number}
|
|
47
47
|
* @memberof GetUserWx200Response
|
|
48
48
|
*/
|
|
49
|
-
'
|
|
49
|
+
'contentLength'?: number;
|
|
50
50
|
/**
|
|
51
51
|
*
|
|
52
|
-
* @type {
|
|
52
|
+
* @type {GetUserWx200ResponseOutputStream}
|
|
53
53
|
* @memberof GetUserWx200Response
|
|
54
54
|
*/
|
|
55
|
-
'
|
|
55
|
+
'outputStream'?: GetUserWx200ResponseOutputStream;
|
|
56
56
|
/**
|
|
57
57
|
*
|
|
58
|
-
* @type {
|
|
58
|
+
* @type {GetUserWx200ResponseLocale}
|
|
59
59
|
* @memberof GetUserWx200Response
|
|
60
60
|
*/
|
|
61
|
-
'
|
|
61
|
+
'locale'?: GetUserWx200ResponseLocale;
|
|
62
62
|
/**
|
|
63
63
|
*
|
|
64
|
-
* @type {
|
|
64
|
+
* @type {number}
|
|
65
65
|
* @memberof GetUserWx200Response
|
|
66
66
|
*/
|
|
67
|
-
'
|
|
67
|
+
'bufferSize'?: number;
|
|
68
68
|
/**
|
|
69
69
|
*
|
|
70
70
|
* @type {string}
|
|
@@ -24,16 +24,16 @@ export interface IPageAccessVO {
|
|
|
24
24
|
'total'?: number;
|
|
25
25
|
/**
|
|
26
26
|
*
|
|
27
|
-
* @type {
|
|
27
|
+
* @type {number}
|
|
28
28
|
* @memberof IPageAccessVO
|
|
29
29
|
*/
|
|
30
|
-
'
|
|
30
|
+
'current'?: number;
|
|
31
31
|
/**
|
|
32
32
|
*
|
|
33
|
-
* @type {
|
|
33
|
+
* @type {Array<AccessVO>}
|
|
34
34
|
* @memberof IPageAccessVO
|
|
35
35
|
*/
|
|
36
|
-
'
|
|
36
|
+
'records'?: Array<AccessVO>;
|
|
37
37
|
/**
|
|
38
38
|
*
|
|
39
39
|
* @type {number}
|
|
@@ -67,7 +67,7 @@ export interface SurveillanceDetailsDto {
|
|
|
67
67
|
* @type {string}
|
|
68
68
|
* @memberof SurveillanceDetailsDto
|
|
69
69
|
*/
|
|
70
|
-
'
|
|
70
|
+
'deviceChannel'?: string;
|
|
71
71
|
/**
|
|
72
72
|
* 设备类型
|
|
73
73
|
* @type {string}
|
|
@@ -91,7 +91,7 @@ export interface SurveillanceDetailsDto {
|
|
|
91
91
|
* @type {IotDeviceStatusEnum}
|
|
92
92
|
* @memberof SurveillanceDetailsDto
|
|
93
93
|
*/
|
|
94
|
-
'
|
|
94
|
+
'surveillanceStatus'?: IotDeviceStatusEnum;
|
|
95
95
|
/**
|
|
96
96
|
*
|
|
97
97
|
* @type {InstallationBodyEnum}
|
|
@@ -19,52 +19,52 @@ import type { GetUserWx200ResponseOutputStream } from './get-user-wx200-response
|
|
|
19
19
|
export interface GetUserWx200Response {
|
|
20
20
|
/**
|
|
21
21
|
*
|
|
22
|
-
* @type {
|
|
22
|
+
* @type {object}
|
|
23
23
|
* @memberof GetUserWx200Response
|
|
24
24
|
*/
|
|
25
|
-
'
|
|
25
|
+
'trailerFields'?: object;
|
|
26
26
|
/**
|
|
27
27
|
*
|
|
28
|
-
* @type {
|
|
28
|
+
* @type {number}
|
|
29
29
|
* @memberof GetUserWx200Response
|
|
30
30
|
*/
|
|
31
|
-
'
|
|
31
|
+
'status'?: number;
|
|
32
32
|
/**
|
|
33
33
|
*
|
|
34
|
-
* @type {
|
|
34
|
+
* @type {Array<string>}
|
|
35
35
|
* @memberof GetUserWx200Response
|
|
36
36
|
*/
|
|
37
|
-
'
|
|
37
|
+
'headerNames'?: Array<string>;
|
|
38
38
|
/**
|
|
39
39
|
*
|
|
40
|
-
* @type {
|
|
40
|
+
* @type {string}
|
|
41
41
|
* @memberof GetUserWx200Response
|
|
42
42
|
*/
|
|
43
|
-
'
|
|
43
|
+
'contentType'?: string;
|
|
44
44
|
/**
|
|
45
45
|
*
|
|
46
46
|
* @type {number}
|
|
47
47
|
* @memberof GetUserWx200Response
|
|
48
48
|
*/
|
|
49
|
-
'
|
|
49
|
+
'contentLength'?: number;
|
|
50
50
|
/**
|
|
51
51
|
*
|
|
52
|
-
* @type {
|
|
52
|
+
* @type {GetUserWx200ResponseOutputStream}
|
|
53
53
|
* @memberof GetUserWx200Response
|
|
54
54
|
*/
|
|
55
|
-
'
|
|
55
|
+
'outputStream'?: GetUserWx200ResponseOutputStream;
|
|
56
56
|
/**
|
|
57
57
|
*
|
|
58
|
-
* @type {
|
|
58
|
+
* @type {GetUserWx200ResponseLocale}
|
|
59
59
|
* @memberof GetUserWx200Response
|
|
60
60
|
*/
|
|
61
|
-
'
|
|
61
|
+
'locale'?: GetUserWx200ResponseLocale;
|
|
62
62
|
/**
|
|
63
63
|
*
|
|
64
|
-
* @type {
|
|
64
|
+
* @type {number}
|
|
65
65
|
* @memberof GetUserWx200Response
|
|
66
66
|
*/
|
|
67
|
-
'
|
|
67
|
+
'bufferSize'?: number;
|
|
68
68
|
/**
|
|
69
69
|
*
|
|
70
70
|
* @type {string}
|
|
@@ -24,16 +24,16 @@ export interface IPageAccessVO {
|
|
|
24
24
|
'total'?: number;
|
|
25
25
|
/**
|
|
26
26
|
*
|
|
27
|
-
* @type {
|
|
27
|
+
* @type {number}
|
|
28
28
|
* @memberof IPageAccessVO
|
|
29
29
|
*/
|
|
30
|
-
'
|
|
30
|
+
'current'?: number;
|
|
31
31
|
/**
|
|
32
32
|
*
|
|
33
|
-
* @type {
|
|
33
|
+
* @type {Array<AccessVO>}
|
|
34
34
|
* @memberof IPageAccessVO
|
|
35
35
|
*/
|
|
36
|
-
'
|
|
36
|
+
'records'?: Array<AccessVO>;
|
|
37
37
|
/**
|
|
38
38
|
*
|
|
39
39
|
* @type {number}
|
|
@@ -67,7 +67,7 @@ export interface SurveillanceDetailsDto {
|
|
|
67
67
|
* @type {string}
|
|
68
68
|
* @memberof SurveillanceDetailsDto
|
|
69
69
|
*/
|
|
70
|
-
'
|
|
70
|
+
'deviceChannel'?: string;
|
|
71
71
|
/**
|
|
72
72
|
* 设备类型
|
|
73
73
|
* @type {string}
|
|
@@ -91,7 +91,7 @@ export interface SurveillanceDetailsDto {
|
|
|
91
91
|
* @type {IotDeviceStatusEnum}
|
|
92
92
|
* @memberof SurveillanceDetailsDto
|
|
93
93
|
*/
|
|
94
|
-
'
|
|
94
|
+
'surveillanceStatus'?: IotDeviceStatusEnum;
|
|
95
95
|
/**
|
|
96
96
|
*
|
|
97
97
|
* @type {InstallationBodyEnum}
|
|
@@ -28,52 +28,52 @@ import type { GetUserWx200ResponseOutputStream } from './get-user-wx200-response
|
|
|
28
28
|
export interface GetUserWx200Response {
|
|
29
29
|
/**
|
|
30
30
|
*
|
|
31
|
-
* @type {
|
|
31
|
+
* @type {object}
|
|
32
32
|
* @memberof GetUserWx200Response
|
|
33
33
|
*/
|
|
34
|
-
'
|
|
34
|
+
'trailerFields'?: object;
|
|
35
35
|
/**
|
|
36
36
|
*
|
|
37
|
-
* @type {
|
|
37
|
+
* @type {number}
|
|
38
38
|
* @memberof GetUserWx200Response
|
|
39
39
|
*/
|
|
40
|
-
'
|
|
40
|
+
'status'?: number;
|
|
41
41
|
/**
|
|
42
42
|
*
|
|
43
|
-
* @type {
|
|
43
|
+
* @type {Array<string>}
|
|
44
44
|
* @memberof GetUserWx200Response
|
|
45
45
|
*/
|
|
46
|
-
'
|
|
46
|
+
'headerNames'?: Array<string>;
|
|
47
47
|
/**
|
|
48
48
|
*
|
|
49
|
-
* @type {
|
|
49
|
+
* @type {string}
|
|
50
50
|
* @memberof GetUserWx200Response
|
|
51
51
|
*/
|
|
52
|
-
'
|
|
52
|
+
'contentType'?: string;
|
|
53
53
|
/**
|
|
54
54
|
*
|
|
55
55
|
* @type {number}
|
|
56
56
|
* @memberof GetUserWx200Response
|
|
57
57
|
*/
|
|
58
|
-
'
|
|
58
|
+
'contentLength'?: number;
|
|
59
59
|
/**
|
|
60
60
|
*
|
|
61
|
-
* @type {
|
|
61
|
+
* @type {GetUserWx200ResponseOutputStream}
|
|
62
62
|
* @memberof GetUserWx200Response
|
|
63
63
|
*/
|
|
64
|
-
'
|
|
64
|
+
'outputStream'?: GetUserWx200ResponseOutputStream;
|
|
65
65
|
/**
|
|
66
66
|
*
|
|
67
|
-
* @type {
|
|
67
|
+
* @type {GetUserWx200ResponseLocale}
|
|
68
68
|
* @memberof GetUserWx200Response
|
|
69
69
|
*/
|
|
70
|
-
'
|
|
70
|
+
'locale'?: GetUserWx200ResponseLocale;
|
|
71
71
|
/**
|
|
72
72
|
*
|
|
73
|
-
* @type {
|
|
73
|
+
* @type {number}
|
|
74
74
|
* @memberof GetUserWx200Response
|
|
75
75
|
*/
|
|
76
|
-
'
|
|
76
|
+
'bufferSize'?: number;
|
|
77
77
|
/**
|
|
78
78
|
*
|
|
79
79
|
* @type {string}
|
|
@@ -31,16 +31,16 @@ export interface IPageAccessVO {
|
|
|
31
31
|
'total'?: number;
|
|
32
32
|
/**
|
|
33
33
|
*
|
|
34
|
-
* @type {
|
|
34
|
+
* @type {number}
|
|
35
35
|
* @memberof IPageAccessVO
|
|
36
36
|
*/
|
|
37
|
-
'
|
|
37
|
+
'current'?: number;
|
|
38
38
|
/**
|
|
39
39
|
*
|
|
40
|
-
* @type {
|
|
40
|
+
* @type {Array<AccessVO>}
|
|
41
41
|
* @memberof IPageAccessVO
|
|
42
42
|
*/
|
|
43
|
-
'
|
|
43
|
+
'records'?: Array<AccessVO>;
|
|
44
44
|
/**
|
|
45
45
|
*
|
|
46
46
|
* @type {number}
|
|
@@ -82,7 +82,7 @@ export interface SurveillanceDetailsDto {
|
|
|
82
82
|
* @type {string}
|
|
83
83
|
* @memberof SurveillanceDetailsDto
|
|
84
84
|
*/
|
|
85
|
-
'
|
|
85
|
+
'deviceChannel'?: string;
|
|
86
86
|
/**
|
|
87
87
|
* 设备类型
|
|
88
88
|
* @type {string}
|
|
@@ -106,7 +106,7 @@ export interface SurveillanceDetailsDto {
|
|
|
106
106
|
* @type {IotDeviceStatusEnum}
|
|
107
107
|
* @memberof SurveillanceDetailsDto
|
|
108
108
|
*/
|
|
109
|
-
'
|
|
109
|
+
'surveillanceStatus'?: IotDeviceStatusEnum;
|
|
110
110
|
/**
|
|
111
111
|
*
|
|
112
112
|
* @type {InstallationBodyEnum}
|