@gizone/rrs-client 4.1.3-beta.232 → 4.2.0-alpha.234

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 (45) hide show
  1. package/.openapi-generator/FILES +2 -0
  2. package/README.md +2 -2
  3. package/api.ts +1 -0
  4. package/apis/hwork-api.ts +167 -0
  5. package/apis/message-api.ts +31 -5
  6. package/configuration.ts +1 -1
  7. package/dist/api.d.ts +1 -0
  8. package/dist/api.js +1 -0
  9. package/dist/apis/hwork-api.d.ts +96 -0
  10. package/dist/apis/hwork-api.js +145 -0
  11. package/dist/apis/message-api.d.ts +18 -2
  12. package/dist/apis/message-api.js +15 -5
  13. package/dist/configuration.js +1 -1
  14. package/dist/esm/api.d.ts +1 -0
  15. package/dist/esm/api.js +1 -0
  16. package/dist/esm/apis/hwork-api.d.ts +96 -0
  17. package/dist/esm/apis/hwork-api.js +138 -0
  18. package/dist/esm/apis/message-api.d.ts +18 -2
  19. package/dist/esm/apis/message-api.js +15 -5
  20. package/dist/esm/configuration.js +1 -1
  21. package/dist/esm/models/get-user-wx200-response.d.ts +18 -18
  22. package/dist/esm/models/index.d.ts +1 -0
  23. package/dist/esm/models/index.js +1 -0
  24. package/dist/esm/models/ipage-access-vo.d.ts +8 -8
  25. package/dist/esm/models/login-type-enum.d.ts +2 -0
  26. package/dist/esm/models/login-type-enum.js +3 -1
  27. package/dist/esm/models/sys-user-attachment-info.d.ts +42 -0
  28. package/dist/esm/models/sys-user-attachment-info.js +14 -0
  29. package/dist/esm/models/sys-user.d.ts +13 -0
  30. package/dist/models/get-user-wx200-response.d.ts +18 -18
  31. package/dist/models/index.d.ts +1 -0
  32. package/dist/models/index.js +1 -0
  33. package/dist/models/ipage-access-vo.d.ts +8 -8
  34. package/dist/models/login-type-enum.d.ts +2 -0
  35. package/dist/models/login-type-enum.js +3 -1
  36. package/dist/models/sys-user-attachment-info.d.ts +42 -0
  37. package/dist/models/sys-user-attachment-info.js +15 -0
  38. package/dist/models/sys-user.d.ts +13 -0
  39. package/models/get-user-wx200-response.ts +18 -18
  40. package/models/index.ts +1 -0
  41. package/models/ipage-access-vo.ts +8 -8
  42. package/models/login-type-enum.ts +3 -1
  43. package/models/sys-user-attachment-info.ts +48 -0
  44. package/models/sys-user.ts +15 -0
  45. package/package.json +1 -1
@@ -11,6 +11,7 @@
11
11
  */
12
12
  import type { SysDept } from './sys-dept';
13
13
  import type { SysRole } from './sys-role';
14
+ import type { SysUserAttachmentInfo } from './sys-user-attachment-info';
14
15
  /**
15
16
  * 用户对象
16
17
  * @export
@@ -355,6 +356,18 @@ export interface SysUser {
355
356
  * @memberof SysUser
356
357
  */
357
358
  'supplierId'?: number;
359
+ /**
360
+ * 第三方系统用户编号
361
+ * @type {string}
362
+ * @memberof SysUser
363
+ */
364
+ 'userNo'?: string;
365
+ /**
366
+ * 用户附件
367
+ * @type {Array<SysUserAttachmentInfo>}
368
+ * @memberof SysUser
369
+ */
370
+ 'userAttachments'?: Array<SysUserAttachmentInfo>;
358
371
  /**
359
372
  *
360
373
  * @type {number}
@@ -19,16 +19,16 @@ import type { GetUserWx200ResponseOutputStream } from './get-user-wx200-response
19
19
  export interface GetUserWx200Response {
20
20
  /**
21
21
  *
22
- * @type {number}
22
+ * @type {Array<string>}
23
23
  * @memberof GetUserWx200Response
24
24
  */
25
- 'status'?: number;
25
+ 'headerNames'?: Array<string>;
26
26
  /**
27
27
  *
28
- * @type {Array<string>}
28
+ * @type {number}
29
29
  * @memberof GetUserWx200Response
30
30
  */
31
- 'headerNames'?: Array<string>;
31
+ 'status'?: number;
32
32
  /**
33
33
  *
34
34
  * @type {object}
@@ -37,40 +37,34 @@ export interface GetUserWx200Response {
37
37
  'trailerFields'?: object;
38
38
  /**
39
39
  *
40
- * @type {string}
40
+ * @type {GetUserWx200ResponseLocale}
41
41
  * @memberof GetUserWx200Response
42
42
  */
43
- 'contentType'?: string;
43
+ 'locale'?: GetUserWx200ResponseLocale;
44
44
  /**
45
45
  *
46
46
  * @type {number}
47
47
  * @memberof GetUserWx200Response
48
48
  */
49
- 'contentLength'?: number;
49
+ 'bufferSize'?: number;
50
50
  /**
51
51
  *
52
- * @type {GetUserWx200ResponseOutputStream}
52
+ * @type {string}
53
53
  * @memberof GetUserWx200Response
54
54
  */
55
- 'outputStream'?: GetUserWx200ResponseOutputStream;
55
+ 'contentType'?: string;
56
56
  /**
57
57
  *
58
58
  * @type {number}
59
59
  * @memberof GetUserWx200Response
60
60
  */
61
- 'bufferSize'?: number;
62
- /**
63
- *
64
- * @type {GetUserWx200ResponseLocale}
65
- * @memberof GetUserWx200Response
66
- */
67
- 'locale'?: GetUserWx200ResponseLocale;
61
+ 'contentLength'?: number;
68
62
  /**
69
63
  *
70
- * @type {string}
64
+ * @type {GetUserWx200ResponseOutputStream}
71
65
  * @memberof GetUserWx200Response
72
66
  */
73
- 'characterEncoding'?: string;
67
+ 'outputStream'?: GetUserWx200ResponseOutputStream;
74
68
  /**
75
69
  *
76
70
  * @type {number}
@@ -83,6 +77,12 @@ export interface GetUserWx200Response {
83
77
  * @memberof GetUserWx200Response
84
78
  */
85
79
  'committed'?: boolean;
80
+ /**
81
+ *
82
+ * @type {string}
83
+ * @memberof GetUserWx200Response
84
+ */
85
+ 'characterEncoding'?: string;
86
86
  /**
87
87
  *
88
88
  * @type {object}
@@ -827,6 +827,7 @@ export * from './sys-oper-log';
827
827
  export * from './sys-post';
828
828
  export * from './sys-role';
829
829
  export * from './sys-user';
830
+ export * from './sys-user-attachment-info';
830
831
  export * from './sys-user-drop-down-box-list-dto';
831
832
  export * from './sys-user-info-dto';
832
833
  export * from './sys-user-msg-dto';
@@ -843,6 +843,7 @@ __exportStar(require("./sys-oper-log"), exports);
843
843
  __exportStar(require("./sys-post"), exports);
844
844
  __exportStar(require("./sys-role"), exports);
845
845
  __exportStar(require("./sys-user"), exports);
846
+ __exportStar(require("./sys-user-attachment-info"), exports);
846
847
  __exportStar(require("./sys-user-drop-down-box-list-dto"), exports);
847
848
  __exportStar(require("./sys-user-info-dto"), exports);
848
849
  __exportStar(require("./sys-user-msg-dto"), exports);
@@ -27,26 +27,26 @@ export interface IPageAccessVO {
27
27
  * @type {number}
28
28
  * @memberof IPageAccessVO
29
29
  */
30
- 'current'?: number;
30
+ 'pages'?: number;
31
31
  /**
32
32
  *
33
- * @type {Array<AccessVO>}
33
+ * @type {boolean}
34
34
  * @memberof IPageAccessVO
35
+ * @deprecated
35
36
  */
36
- 'records'?: Array<AccessVO>;
37
+ 'hitCount'?: boolean;
37
38
  /**
38
39
  *
39
- * @type {number}
40
+ * @type {Array<AccessVO>}
40
41
  * @memberof IPageAccessVO
41
42
  */
42
- 'pages'?: number;
43
+ 'records'?: Array<AccessVO>;
43
44
  /**
44
45
  *
45
- * @type {boolean}
46
+ * @type {number}
46
47
  * @memberof IPageAccessVO
47
- * @deprecated
48
48
  */
49
- 'hitCount'?: boolean;
49
+ 'current'?: number;
50
50
  /**
51
51
  *
52
52
  * @type {boolean}
@@ -19,5 +19,7 @@ export declare const LoginTypeEnum: {
19
19
  readonly Applet: "APPLET";
20
20
  readonly App: "APP";
21
21
  readonly H5: "H5";
22
+ readonly HWorkPc: "H_WORK_PC";
23
+ readonly HWorkApp: "H_WORK_APP";
22
24
  };
23
25
  export type LoginTypeEnum = typeof LoginTypeEnum[keyof typeof LoginTypeEnum];
@@ -23,5 +23,7 @@ exports.LoginTypeEnum = {
23
23
  Pc: 'PC',
24
24
  Applet: 'APPLET',
25
25
  App: 'APP',
26
- H5: 'H5'
26
+ H5: 'H5',
27
+ HWorkPc: 'H_WORK_PC',
28
+ HWorkApp: 'H_WORK_APP'
27
29
  };
@@ -0,0 +1,42 @@
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
+ * @interface SysUserAttachmentInfo
16
+ */
17
+ export interface SysUserAttachmentInfo {
18
+ /**
19
+ * 附件名称
20
+ * @type {string}
21
+ * @memberof SysUserAttachmentInfo
22
+ */
23
+ 'fileName'?: string;
24
+ /**
25
+ * 附件路径
26
+ * @type {string}
27
+ * @memberof SysUserAttachmentInfo
28
+ */
29
+ 'filePath'?: string;
30
+ /**
31
+ * 开始时间
32
+ * @type {string}
33
+ * @memberof SysUserAttachmentInfo
34
+ */
35
+ 'startTime'?: string;
36
+ /**
37
+ * 结束时间
38
+ * @type {string}
39
+ * @memberof SysUserAttachmentInfo
40
+ */
41
+ 'endTime'?: string;
42
+ }
@@ -0,0 +1,15 @@
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 });
@@ -11,6 +11,7 @@
11
11
  */
12
12
  import type { SysDept } from './sys-dept';
13
13
  import type { SysRole } from './sys-role';
14
+ import type { SysUserAttachmentInfo } from './sys-user-attachment-info';
14
15
  /**
15
16
  * 用户对象
16
17
  * @export
@@ -355,6 +356,18 @@ export interface SysUser {
355
356
  * @memberof SysUser
356
357
  */
357
358
  'supplierId'?: number;
359
+ /**
360
+ * 第三方系统用户编号
361
+ * @type {string}
362
+ * @memberof SysUser
363
+ */
364
+ 'userNo'?: string;
365
+ /**
366
+ * 用户附件
367
+ * @type {Array<SysUserAttachmentInfo>}
368
+ * @memberof SysUser
369
+ */
370
+ 'userAttachments'?: Array<SysUserAttachmentInfo>;
358
371
  /**
359
372
  *
360
373
  * @type {number}
@@ -28,16 +28,16 @@ import type { GetUserWx200ResponseOutputStream } from './get-user-wx200-response
28
28
  export interface GetUserWx200Response {
29
29
  /**
30
30
  *
31
- * @type {number}
31
+ * @type {Array<string>}
32
32
  * @memberof GetUserWx200Response
33
33
  */
34
- 'status'?: number;
34
+ 'headerNames'?: Array<string>;
35
35
  /**
36
36
  *
37
- * @type {Array<string>}
37
+ * @type {number}
38
38
  * @memberof GetUserWx200Response
39
39
  */
40
- 'headerNames'?: Array<string>;
40
+ 'status'?: number;
41
41
  /**
42
42
  *
43
43
  * @type {object}
@@ -46,40 +46,34 @@ export interface GetUserWx200Response {
46
46
  'trailerFields'?: object;
47
47
  /**
48
48
  *
49
- * @type {string}
49
+ * @type {GetUserWx200ResponseLocale}
50
50
  * @memberof GetUserWx200Response
51
51
  */
52
- 'contentType'?: string;
52
+ 'locale'?: GetUserWx200ResponseLocale;
53
53
  /**
54
54
  *
55
55
  * @type {number}
56
56
  * @memberof GetUserWx200Response
57
57
  */
58
- 'contentLength'?: number;
58
+ 'bufferSize'?: number;
59
59
  /**
60
60
  *
61
- * @type {GetUserWx200ResponseOutputStream}
61
+ * @type {string}
62
62
  * @memberof GetUserWx200Response
63
63
  */
64
- 'outputStream'?: GetUserWx200ResponseOutputStream;
64
+ 'contentType'?: string;
65
65
  /**
66
66
  *
67
67
  * @type {number}
68
68
  * @memberof GetUserWx200Response
69
69
  */
70
- 'bufferSize'?: number;
71
- /**
72
- *
73
- * @type {GetUserWx200ResponseLocale}
74
- * @memberof GetUserWx200Response
75
- */
76
- 'locale'?: GetUserWx200ResponseLocale;
70
+ 'contentLength'?: number;
77
71
  /**
78
72
  *
79
- * @type {string}
73
+ * @type {GetUserWx200ResponseOutputStream}
80
74
  * @memberof GetUserWx200Response
81
75
  */
82
- 'characterEncoding'?: string;
76
+ 'outputStream'?: GetUserWx200ResponseOutputStream;
83
77
  /**
84
78
  *
85
79
  * @type {number}
@@ -92,6 +86,12 @@ export interface GetUserWx200Response {
92
86
  * @memberof GetUserWx200Response
93
87
  */
94
88
  'committed'?: boolean;
89
+ /**
90
+ *
91
+ * @type {string}
92
+ * @memberof GetUserWx200Response
93
+ */
94
+ 'characterEncoding'?: string;
95
95
  /**
96
96
  *
97
97
  * @type {object}
package/models/index.ts CHANGED
@@ -827,6 +827,7 @@ export * from './sys-oper-log';
827
827
  export * from './sys-post';
828
828
  export * from './sys-role';
829
829
  export * from './sys-user';
830
+ export * from './sys-user-attachment-info';
830
831
  export * from './sys-user-drop-down-box-list-dto';
831
832
  export * from './sys-user-info-dto';
832
833
  export * from './sys-user-msg-dto';
@@ -34,26 +34,26 @@ export interface IPageAccessVO {
34
34
  * @type {number}
35
35
  * @memberof IPageAccessVO
36
36
  */
37
- 'current'?: number;
37
+ 'pages'?: number;
38
38
  /**
39
39
  *
40
- * @type {Array<AccessVO>}
40
+ * @type {boolean}
41
41
  * @memberof IPageAccessVO
42
+ * @deprecated
42
43
  */
43
- 'records'?: Array<AccessVO>;
44
+ 'hitCount'?: boolean;
44
45
  /**
45
46
  *
46
- * @type {number}
47
+ * @type {Array<AccessVO>}
47
48
  * @memberof IPageAccessVO
48
49
  */
49
- 'pages'?: number;
50
+ 'records'?: Array<AccessVO>;
50
51
  /**
51
52
  *
52
- * @type {boolean}
53
+ * @type {number}
53
54
  * @memberof IPageAccessVO
54
- * @deprecated
55
55
  */
56
- 'hitCount'?: boolean;
56
+ 'current'?: number;
57
57
  /**
58
58
  *
59
59
  * @type {boolean}
@@ -24,7 +24,9 @@ export const LoginTypeEnum = {
24
24
  Pc: 'PC',
25
25
  Applet: 'APPLET',
26
26
  App: 'APP',
27
- H5: 'H5'
27
+ H5: 'H5',
28
+ HWorkPc: 'H_WORK_PC',
29
+ HWorkApp: 'H_WORK_APP'
28
30
  } as const;
29
31
 
30
32
  export type LoginTypeEnum = typeof LoginTypeEnum[keyof typeof LoginTypeEnum];
@@ -0,0 +1,48 @@
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
+ * @interface SysUserAttachmentInfo
21
+ */
22
+ export interface SysUserAttachmentInfo {
23
+ /**
24
+ * 附件名称
25
+ * @type {string}
26
+ * @memberof SysUserAttachmentInfo
27
+ */
28
+ 'fileName'?: string;
29
+ /**
30
+ * 附件路径
31
+ * @type {string}
32
+ * @memberof SysUserAttachmentInfo
33
+ */
34
+ 'filePath'?: string;
35
+ /**
36
+ * 开始时间
37
+ * @type {string}
38
+ * @memberof SysUserAttachmentInfo
39
+ */
40
+ 'startTime'?: string;
41
+ /**
42
+ * 结束时间
43
+ * @type {string}
44
+ * @memberof SysUserAttachmentInfo
45
+ */
46
+ 'endTime'?: string;
47
+ }
48
+
@@ -19,6 +19,9 @@ import type { SysDept } from './sys-dept';
19
19
  // May contain unused imports in some cases
20
20
  // @ts-ignore
21
21
  import type { SysRole } from './sys-role';
22
+ // May contain unused imports in some cases
23
+ // @ts-ignore
24
+ import type { SysUserAttachmentInfo } from './sys-user-attachment-info';
22
25
 
23
26
  /**
24
27
  * 用户对象
@@ -362,6 +365,18 @@ export interface SysUser {
362
365
  * @memberof SysUser
363
366
  */
364
367
  'supplierId'?: number;
368
+ /**
369
+ * 第三方系统用户编号
370
+ * @type {string}
371
+ * @memberof SysUser
372
+ */
373
+ 'userNo'?: string;
374
+ /**
375
+ * 用户附件
376
+ * @type {Array<SysUserAttachmentInfo>}
377
+ * @memberof SysUser
378
+ */
379
+ 'userAttachments'?: Array<SysUserAttachmentInfo>;
365
380
  /**
366
381
  *
367
382
  * @type {number}
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@gizone/rrs-client",
3
- "version": "4.1.3-beta.232",
3
+ "version": "4.2.0-alpha.234",
4
4
  "description": "OpenAPI client for @gizone/rrs-client",
5
5
  "author": "OpenAPI-Generator Contributors",
6
6
  "repository": {