@gizone/rrs-client 4.1.3-alpha.194 → 4.1.3-alpha.195

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.
Files changed (34) hide show
  1. package/.openapi-generator/FILES +1 -0
  2. package/apis/surveillance-api.ts +86 -36
  3. package/apis/surveillance-settings-api.ts +47 -14
  4. package/dist/apis/surveillance-api.d.ts +57 -24
  5. package/dist/apis/surveillance-api.js +38 -22
  6. package/dist/apis/surveillance-settings-api.d.ts +31 -6
  7. package/dist/apis/surveillance-settings-api.js +26 -14
  8. package/dist/esm/apis/surveillance-api.d.ts +57 -24
  9. package/dist/esm/apis/surveillance-api.js +38 -22
  10. package/dist/esm/apis/surveillance-settings-api.d.ts +31 -6
  11. package/dist/esm/apis/surveillance-settings-api.js +26 -14
  12. package/dist/esm/models/index.d.ts +1 -0
  13. package/dist/esm/models/index.js +1 -0
  14. package/dist/esm/models/ipage-access-vo.d.ts +4 -4
  15. package/dist/esm/models/surveillance-screen-layout-enum.d.ts +23 -0
  16. package/dist/esm/models/surveillance-screen-layout-enum.js +24 -0
  17. package/dist/esm/models/surveillance-settings-polling-dto.d.ts +7 -0
  18. package/dist/esm/models/surveillance-settings-polling-vo.d.ts +9 -2
  19. package/dist/esm/models/surveillance.d.ts +2 -2
  20. package/dist/models/index.d.ts +1 -0
  21. package/dist/models/index.js +1 -0
  22. package/dist/models/ipage-access-vo.d.ts +4 -4
  23. package/dist/models/surveillance-screen-layout-enum.d.ts +23 -0
  24. package/dist/models/surveillance-screen-layout-enum.js +27 -0
  25. package/dist/models/surveillance-settings-polling-dto.d.ts +7 -0
  26. package/dist/models/surveillance-settings-polling-vo.d.ts +9 -2
  27. package/dist/models/surveillance.d.ts +2 -2
  28. package/models/index.ts +1 -0
  29. package/models/ipage-access-vo.ts +4 -4
  30. package/models/surveillance-screen-layout-enum.ts +33 -0
  31. package/models/surveillance-settings-polling-dto.ts +11 -0
  32. package/models/surveillance-settings-polling-vo.ts +13 -2
  33. package/models/surveillance.ts +2 -2
  34. package/package.json +1 -1
@@ -791,6 +791,7 @@ export * from './surveillance-live-dto';
791
791
  export * from './surveillance-point-vo';
792
792
  export * from './surveillance-roi-entity';
793
793
  export * from './surveillance-roi-list-vo';
794
+ export * from './surveillance-screen-layout-enum';
794
795
  export * from './surveillance-settings-coverage-standard-dto';
795
796
  export * from './surveillance-settings-details-dto';
796
797
  export * from './surveillance-settings-export-dto';
@@ -24,16 +24,16 @@ export interface IPageAccessVO {
24
24
  'total'?: number;
25
25
  /**
26
26
  *
27
- * @type {Array<AccessVO>}
27
+ * @type {number}
28
28
  * @memberof IPageAccessVO
29
29
  */
30
- 'records'?: Array<AccessVO>;
30
+ 'current'?: number;
31
31
  /**
32
32
  *
33
- * @type {number}
33
+ * @type {Array<AccessVO>}
34
34
  * @memberof IPageAccessVO
35
35
  */
36
- 'current'?: number;
36
+ 'records'?: Array<AccessVO>;
37
37
  /**
38
38
  *
39
39
  * @type {number}
@@ -0,0 +1,23 @@
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 SurveillanceScreenLayoutEnum: {
18
+ readonly OneByOne: "ONE_BY_ONE";
19
+ readonly TwoByTwo: "TWO_BY_TWO";
20
+ readonly ThreeByThree: "THREE_BY_THREE";
21
+ readonly FourByFour: "FOUR_BY_FOUR";
22
+ };
23
+ export type SurveillanceScreenLayoutEnum = typeof SurveillanceScreenLayoutEnum[keyof typeof SurveillanceScreenLayoutEnum];
@@ -0,0 +1,24 @@
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 SurveillanceScreenLayoutEnum = {
20
+ OneByOne: 'ONE_BY_ONE',
21
+ TwoByTwo: 'TWO_BY_TWO',
22
+ ThreeByThree: 'THREE_BY_THREE',
23
+ FourByFour: 'FOUR_BY_FOUR'
24
+ };
@@ -10,6 +10,7 @@
10
10
  * Do not edit the class manually.
11
11
  */
12
12
  import type { Surveillance } from './surveillance';
13
+ import type { SurveillanceScreenLayoutEnum } from './surveillance-screen-layout-enum';
13
14
  /**
14
15
  * 监控设置轮询dto
15
16
  * @export
@@ -22,6 +23,12 @@ export interface SurveillanceSettingsPollingDto {
22
23
  * @memberof SurveillanceSettingsPollingDto
23
24
  */
24
25
  'intervalTime'?: number;
26
+ /**
27
+ *
28
+ * @type {SurveillanceScreenLayoutEnum}
29
+ * @memberof SurveillanceSettingsPollingDto
30
+ */
31
+ 'screenLayout'?: SurveillanceScreenLayoutEnum;
25
32
  /**
26
33
  * 监控列表
27
34
  * @type {Array<Surveillance>}
@@ -10,6 +10,7 @@
10
10
  * Do not edit the class manually.
11
11
  */
12
12
  import type { Surveillance } from './surveillance';
13
+ import type { SurveillanceScreenLayoutEnum } from './surveillance-screen-layout-enum';
13
14
  /**
14
15
  * 监控设置轮询VO
15
16
  * @export
@@ -21,11 +22,17 @@ export interface SurveillanceSettingsPollingVo {
21
22
  * @type {number}
22
23
  * @memberof SurveillanceSettingsPollingVo
23
24
  */
24
- 'intervalTime'?: number;
25
+ 'intervalTime': number;
26
+ /**
27
+ *
28
+ * @type {SurveillanceScreenLayoutEnum}
29
+ * @memberof SurveillanceSettingsPollingVo
30
+ */
31
+ 'screenLayout': SurveillanceScreenLayoutEnum;
25
32
  /**
26
33
  * 监控列表
27
34
  * @type {Array<Surveillance>}
28
35
  * @memberof SurveillanceSettingsPollingVo
29
36
  */
30
- 'surveillanceList'?: Array<Surveillance>;
37
+ 'surveillanceList': Array<Surveillance>;
31
38
  }
@@ -20,11 +20,11 @@ export interface Surveillance {
20
20
  * @type {number}
21
21
  * @memberof Surveillance
22
22
  */
23
- 'sort'?: number;
23
+ 'sort': number;
24
24
  /**
25
25
  * 监控id
26
26
  * @type {number}
27
27
  * @memberof Surveillance
28
28
  */
29
- 'surveillanceId'?: number;
29
+ 'surveillanceId': number;
30
30
  }
@@ -791,6 +791,7 @@ export * from './surveillance-live-dto';
791
791
  export * from './surveillance-point-vo';
792
792
  export * from './surveillance-roi-entity';
793
793
  export * from './surveillance-roi-list-vo';
794
+ export * from './surveillance-screen-layout-enum';
794
795
  export * from './surveillance-settings-coverage-standard-dto';
795
796
  export * from './surveillance-settings-details-dto';
796
797
  export * from './surveillance-settings-export-dto';
@@ -807,6 +807,7 @@ __exportStar(require("./surveillance-live-dto"), exports);
807
807
  __exportStar(require("./surveillance-point-vo"), exports);
808
808
  __exportStar(require("./surveillance-roi-entity"), exports);
809
809
  __exportStar(require("./surveillance-roi-list-vo"), exports);
810
+ __exportStar(require("./surveillance-screen-layout-enum"), exports);
810
811
  __exportStar(require("./surveillance-settings-coverage-standard-dto"), exports);
811
812
  __exportStar(require("./surveillance-settings-details-dto"), exports);
812
813
  __exportStar(require("./surveillance-settings-export-dto"), exports);
@@ -24,16 +24,16 @@ export interface IPageAccessVO {
24
24
  'total'?: number;
25
25
  /**
26
26
  *
27
- * @type {Array<AccessVO>}
27
+ * @type {number}
28
28
  * @memberof IPageAccessVO
29
29
  */
30
- 'records'?: Array<AccessVO>;
30
+ 'current'?: number;
31
31
  /**
32
32
  *
33
- * @type {number}
33
+ * @type {Array<AccessVO>}
34
34
  * @memberof IPageAccessVO
35
35
  */
36
- 'current'?: number;
36
+ 'records'?: Array<AccessVO>;
37
37
  /**
38
38
  *
39
39
  * @type {number}
@@ -0,0 +1,23 @@
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 SurveillanceScreenLayoutEnum: {
18
+ readonly OneByOne: "ONE_BY_ONE";
19
+ readonly TwoByTwo: "TWO_BY_TWO";
20
+ readonly ThreeByThree: "THREE_BY_THREE";
21
+ readonly FourByFour: "FOUR_BY_FOUR";
22
+ };
23
+ export type SurveillanceScreenLayoutEnum = typeof SurveillanceScreenLayoutEnum[keyof typeof SurveillanceScreenLayoutEnum];
@@ -0,0 +1,27 @@
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.SurveillanceScreenLayoutEnum = void 0;
17
+ /**
18
+ * 屏幕布局
19
+ * @export
20
+ * @enum {string}
21
+ */
22
+ exports.SurveillanceScreenLayoutEnum = {
23
+ OneByOne: 'ONE_BY_ONE',
24
+ TwoByTwo: 'TWO_BY_TWO',
25
+ ThreeByThree: 'THREE_BY_THREE',
26
+ FourByFour: 'FOUR_BY_FOUR'
27
+ };
@@ -10,6 +10,7 @@
10
10
  * Do not edit the class manually.
11
11
  */
12
12
  import type { Surveillance } from './surveillance';
13
+ import type { SurveillanceScreenLayoutEnum } from './surveillance-screen-layout-enum';
13
14
  /**
14
15
  * 监控设置轮询dto
15
16
  * @export
@@ -22,6 +23,12 @@ export interface SurveillanceSettingsPollingDto {
22
23
  * @memberof SurveillanceSettingsPollingDto
23
24
  */
24
25
  'intervalTime'?: number;
26
+ /**
27
+ *
28
+ * @type {SurveillanceScreenLayoutEnum}
29
+ * @memberof SurveillanceSettingsPollingDto
30
+ */
31
+ 'screenLayout'?: SurveillanceScreenLayoutEnum;
25
32
  /**
26
33
  * 监控列表
27
34
  * @type {Array<Surveillance>}
@@ -10,6 +10,7 @@
10
10
  * Do not edit the class manually.
11
11
  */
12
12
  import type { Surveillance } from './surveillance';
13
+ import type { SurveillanceScreenLayoutEnum } from './surveillance-screen-layout-enum';
13
14
  /**
14
15
  * 监控设置轮询VO
15
16
  * @export
@@ -21,11 +22,17 @@ export interface SurveillanceSettingsPollingVo {
21
22
  * @type {number}
22
23
  * @memberof SurveillanceSettingsPollingVo
23
24
  */
24
- 'intervalTime'?: number;
25
+ 'intervalTime': number;
26
+ /**
27
+ *
28
+ * @type {SurveillanceScreenLayoutEnum}
29
+ * @memberof SurveillanceSettingsPollingVo
30
+ */
31
+ 'screenLayout': SurveillanceScreenLayoutEnum;
25
32
  /**
26
33
  * 监控列表
27
34
  * @type {Array<Surveillance>}
28
35
  * @memberof SurveillanceSettingsPollingVo
29
36
  */
30
- 'surveillanceList'?: Array<Surveillance>;
37
+ 'surveillanceList': Array<Surveillance>;
31
38
  }
@@ -20,11 +20,11 @@ export interface Surveillance {
20
20
  * @type {number}
21
21
  * @memberof Surveillance
22
22
  */
23
- 'sort'?: number;
23
+ 'sort': number;
24
24
  /**
25
25
  * 监控id
26
26
  * @type {number}
27
27
  * @memberof Surveillance
28
28
  */
29
- 'surveillanceId'?: number;
29
+ 'surveillanceId': number;
30
30
  }
package/models/index.ts CHANGED
@@ -791,6 +791,7 @@ export * from './surveillance-live-dto';
791
791
  export * from './surveillance-point-vo';
792
792
  export * from './surveillance-roi-entity';
793
793
  export * from './surveillance-roi-list-vo';
794
+ export * from './surveillance-screen-layout-enum';
794
795
  export * from './surveillance-settings-coverage-standard-dto';
795
796
  export * from './surveillance-settings-details-dto';
796
797
  export * from './surveillance-settings-export-dto';
@@ -31,16 +31,16 @@ export interface IPageAccessVO {
31
31
  'total'?: number;
32
32
  /**
33
33
  *
34
- * @type {Array<AccessVO>}
34
+ * @type {number}
35
35
  * @memberof IPageAccessVO
36
36
  */
37
- 'records'?: Array<AccessVO>;
37
+ 'current'?: number;
38
38
  /**
39
39
  *
40
- * @type {number}
40
+ * @type {Array<AccessVO>}
41
41
  * @memberof IPageAccessVO
42
42
  */
43
- 'current'?: number;
43
+ 'records'?: Array<AccessVO>;
44
44
  /**
45
45
  *
46
46
  * @type {number}
@@ -0,0 +1,33 @@
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 SurveillanceScreenLayoutEnum = {
24
+ OneByOne: 'ONE_BY_ONE',
25
+ TwoByTwo: 'TWO_BY_TWO',
26
+ ThreeByThree: 'THREE_BY_THREE',
27
+ FourByFour: 'FOUR_BY_FOUR'
28
+ } as const;
29
+
30
+ export type SurveillanceScreenLayoutEnum = typeof SurveillanceScreenLayoutEnum[keyof typeof SurveillanceScreenLayoutEnum];
31
+
32
+
33
+
@@ -16,6 +16,9 @@
16
16
  // May contain unused imports in some cases
17
17
  // @ts-ignore
18
18
  import type { Surveillance } from './surveillance';
19
+ // May contain unused imports in some cases
20
+ // @ts-ignore
21
+ import type { SurveillanceScreenLayoutEnum } from './surveillance-screen-layout-enum';
19
22
 
20
23
  /**
21
24
  * 监控设置轮询dto
@@ -29,6 +32,12 @@ export interface SurveillanceSettingsPollingDto {
29
32
  * @memberof SurveillanceSettingsPollingDto
30
33
  */
31
34
  'intervalTime'?: number;
35
+ /**
36
+ *
37
+ * @type {SurveillanceScreenLayoutEnum}
38
+ * @memberof SurveillanceSettingsPollingDto
39
+ */
40
+ 'screenLayout'?: SurveillanceScreenLayoutEnum;
32
41
  /**
33
42
  * 监控列表
34
43
  * @type {Array<Surveillance>}
@@ -37,3 +46,5 @@ export interface SurveillanceSettingsPollingDto {
37
46
  'surveillanceList'?: Array<Surveillance>;
38
47
  }
39
48
 
49
+
50
+
@@ -16,6 +16,9 @@
16
16
  // May contain unused imports in some cases
17
17
  // @ts-ignore
18
18
  import type { Surveillance } from './surveillance';
19
+ // May contain unused imports in some cases
20
+ // @ts-ignore
21
+ import type { SurveillanceScreenLayoutEnum } from './surveillance-screen-layout-enum';
19
22
 
20
23
  /**
21
24
  * 监控设置轮询VO
@@ -28,12 +31,20 @@ export interface SurveillanceSettingsPollingVo {
28
31
  * @type {number}
29
32
  * @memberof SurveillanceSettingsPollingVo
30
33
  */
31
- 'intervalTime'?: number;
34
+ 'intervalTime': number;
35
+ /**
36
+ *
37
+ * @type {SurveillanceScreenLayoutEnum}
38
+ * @memberof SurveillanceSettingsPollingVo
39
+ */
40
+ 'screenLayout': SurveillanceScreenLayoutEnum;
32
41
  /**
33
42
  * 监控列表
34
43
  * @type {Array<Surveillance>}
35
44
  * @memberof SurveillanceSettingsPollingVo
36
45
  */
37
- 'surveillanceList'?: Array<Surveillance>;
46
+ 'surveillanceList': Array<Surveillance>;
38
47
  }
39
48
 
49
+
50
+
@@ -25,12 +25,12 @@ export interface Surveillance {
25
25
  * @type {number}
26
26
  * @memberof Surveillance
27
27
  */
28
- 'sort'?: number;
28
+ 'sort': number;
29
29
  /**
30
30
  * 监控id
31
31
  * @type {number}
32
32
  * @memberof Surveillance
33
33
  */
34
- 'surveillanceId'?: number;
34
+ 'surveillanceId': number;
35
35
  }
36
36
 
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@gizone/rrs-client",
3
- "version": "4.1.3-alpha.194",
3
+ "version": "4.1.3-alpha.195",
4
4
  "description": "OpenAPI client for @gizone/rrs-client",
5
5
  "author": "OpenAPI-Generator Contributors",
6
6
  "repository": {