@gizone/rrs-client 3.11.14-alpha.70 → 3.11.15-alpha.72
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/README.md +2 -2
- package/configuration.ts +1 -1
- package/dist/configuration.js +1 -1
- package/dist/esm/configuration.js +1 -1
- package/dist/esm/models/get-user-wx200-response.d.ts +12 -12
- package/dist/esm/models/ipage-access-vo.d.ts +9 -9
- package/dist/esm/models/sys-user.d.ts +4 -4
- package/dist/models/get-user-wx200-response.d.ts +12 -12
- package/dist/models/ipage-access-vo.d.ts +9 -9
- package/dist/models/sys-user.d.ts +4 -4
- package/models/get-user-wx200-response.ts +12 -12
- package/models/ipage-access-vo.ts +9 -9
- package/models/sys-user.ts +4 -4
- package/package.json +1 -1
package/README.md
CHANGED
|
@@ -1,4 +1,4 @@
|
|
|
1
|
-
## @gizone/rrs-client@3.11.
|
|
1
|
+
## @gizone/rrs-client@3.11.15
|
|
2
2
|
|
|
3
3
|
This generator creates TypeScript/JavaScript client that utilizes [axios](https://github.com/axios/axios). The generated Node module can be used in the following environments:
|
|
4
4
|
|
|
@@ -36,7 +36,7 @@ navigate to the folder of your consuming project and run one of the following co
|
|
|
36
36
|
_published:_
|
|
37
37
|
|
|
38
38
|
```
|
|
39
|
-
npm install @gizone/rrs-client@3.11.
|
|
39
|
+
npm install @gizone/rrs-client@3.11.15 --save
|
|
40
40
|
```
|
|
41
41
|
|
|
42
42
|
_unPublished (not recommended):_
|
package/configuration.ts
CHANGED
|
@@ -92,7 +92,7 @@ export class Configuration {
|
|
|
92
92
|
this.baseOptions = {
|
|
93
93
|
headers: {
|
|
94
94
|
...param.baseOptions?.headers,
|
|
95
|
-
'User-Agent': "OpenAPI-Generator/3.11.
|
|
95
|
+
'User-Agent': "OpenAPI-Generator/3.11.15/typescript-axios"
|
|
96
96
|
},
|
|
97
97
|
...param.baseOptions
|
|
98
98
|
};
|
package/dist/configuration.js
CHANGED
|
@@ -23,7 +23,7 @@ class Configuration {
|
|
|
23
23
|
this.accessToken = param.accessToken;
|
|
24
24
|
this.basePath = param.basePath;
|
|
25
25
|
this.serverIndex = param.serverIndex;
|
|
26
|
-
this.baseOptions = Object.assign({ headers: Object.assign(Object.assign({}, (_a = param.baseOptions) === null || _a === void 0 ? void 0 : _a.headers), { 'User-Agent': "OpenAPI-Generator/3.11.
|
|
26
|
+
this.baseOptions = Object.assign({ headers: Object.assign(Object.assign({}, (_a = param.baseOptions) === null || _a === void 0 ? void 0 : _a.headers), { 'User-Agent': "OpenAPI-Generator/3.11.15/typescript-axios" }) }, param.baseOptions);
|
|
27
27
|
this.formDataCtor = param.formDataCtor;
|
|
28
28
|
}
|
|
29
29
|
/**
|
|
@@ -20,7 +20,7 @@ export class Configuration {
|
|
|
20
20
|
this.accessToken = param.accessToken;
|
|
21
21
|
this.basePath = param.basePath;
|
|
22
22
|
this.serverIndex = param.serverIndex;
|
|
23
|
-
this.baseOptions = Object.assign({ headers: Object.assign(Object.assign({}, (_a = param.baseOptions) === null || _a === void 0 ? void 0 : _a.headers), { 'User-Agent': "OpenAPI-Generator/3.11.
|
|
23
|
+
this.baseOptions = Object.assign({ headers: Object.assign(Object.assign({}, (_a = param.baseOptions) === null || _a === void 0 ? void 0 : _a.headers), { 'User-Agent': "OpenAPI-Generator/3.11.15/typescript-axios" }) }, param.baseOptions);
|
|
24
24
|
this.formDataCtor = param.formDataCtor;
|
|
25
25
|
}
|
|
26
26
|
/**
|
|
@@ -19,28 +19,22 @@ import type { GetUserWx200ResponseOutputStream } from './get-user-wx200-response
|
|
|
19
19
|
export interface GetUserWx200Response {
|
|
20
20
|
/**
|
|
21
21
|
*
|
|
22
|
-
* @type {
|
|
23
|
-
* @memberof GetUserWx200Response
|
|
24
|
-
*/
|
|
25
|
-
'status'?: number;
|
|
26
|
-
/**
|
|
27
|
-
*
|
|
28
|
-
* @type {Array<string>}
|
|
22
|
+
* @type {object}
|
|
29
23
|
* @memberof GetUserWx200Response
|
|
30
24
|
*/
|
|
31
|
-
'
|
|
25
|
+
'trailerFields'?: object;
|
|
32
26
|
/**
|
|
33
27
|
*
|
|
34
|
-
* @type {
|
|
28
|
+
* @type {number}
|
|
35
29
|
* @memberof GetUserWx200Response
|
|
36
30
|
*/
|
|
37
|
-
'
|
|
31
|
+
'status'?: number;
|
|
38
32
|
/**
|
|
39
33
|
*
|
|
40
|
-
* @type {
|
|
34
|
+
* @type {Array<string>}
|
|
41
35
|
* @memberof GetUserWx200Response
|
|
42
36
|
*/
|
|
43
|
-
'
|
|
37
|
+
'headerNames'?: Array<string>;
|
|
44
38
|
/**
|
|
45
39
|
*
|
|
46
40
|
* @type {number}
|
|
@@ -65,6 +59,12 @@ export interface GetUserWx200Response {
|
|
|
65
59
|
* @memberof GetUserWx200Response
|
|
66
60
|
*/
|
|
67
61
|
'outputStream'?: GetUserWx200ResponseOutputStream;
|
|
62
|
+
/**
|
|
63
|
+
*
|
|
64
|
+
* @type {GetUserWx200ResponseLocale}
|
|
65
|
+
* @memberof GetUserWx200Response
|
|
66
|
+
*/
|
|
67
|
+
'locale'?: GetUserWx200ResponseLocale;
|
|
68
68
|
/**
|
|
69
69
|
*
|
|
70
70
|
* @type {string}
|
|
@@ -30,29 +30,29 @@ export interface IPageAccessVO {
|
|
|
30
30
|
'current'?: number;
|
|
31
31
|
/**
|
|
32
32
|
*
|
|
33
|
-
* @type {
|
|
33
|
+
* @type {Array<AccessVO>}
|
|
34
34
|
* @memberof IPageAccessVO
|
|
35
|
-
* @deprecated
|
|
36
35
|
*/
|
|
37
|
-
'
|
|
36
|
+
'records'?: Array<AccessVO>;
|
|
38
37
|
/**
|
|
39
38
|
*
|
|
40
|
-
* @type {
|
|
39
|
+
* @type {boolean}
|
|
41
40
|
* @memberof IPageAccessVO
|
|
41
|
+
* @deprecated
|
|
42
42
|
*/
|
|
43
|
-
'
|
|
43
|
+
'hitCount'?: boolean;
|
|
44
44
|
/**
|
|
45
45
|
*
|
|
46
|
-
* @type {
|
|
46
|
+
* @type {boolean}
|
|
47
47
|
* @memberof IPageAccessVO
|
|
48
48
|
*/
|
|
49
|
-
'
|
|
49
|
+
'searchCount'?: boolean;
|
|
50
50
|
/**
|
|
51
51
|
*
|
|
52
|
-
* @type {
|
|
52
|
+
* @type {number}
|
|
53
53
|
* @memberof IPageAccessVO
|
|
54
54
|
*/
|
|
55
|
-
'
|
|
55
|
+
'pages'?: number;
|
|
56
56
|
/**
|
|
57
57
|
*
|
|
58
58
|
* @type {number}
|
|
@@ -357,14 +357,14 @@ export interface SysUser {
|
|
|
357
357
|
'supplierId'?: number;
|
|
358
358
|
/**
|
|
359
359
|
*
|
|
360
|
-
* @type {
|
|
360
|
+
* @type {string}
|
|
361
361
|
* @memberof SysUser
|
|
362
362
|
*/
|
|
363
|
-
'
|
|
363
|
+
'cid'?: string;
|
|
364
364
|
/**
|
|
365
365
|
*
|
|
366
|
-
* @type {
|
|
366
|
+
* @type {number}
|
|
367
367
|
* @memberof SysUser
|
|
368
368
|
*/
|
|
369
|
-
'
|
|
369
|
+
'cuserId'?: number;
|
|
370
370
|
}
|
|
@@ -19,28 +19,22 @@ import type { GetUserWx200ResponseOutputStream } from './get-user-wx200-response
|
|
|
19
19
|
export interface GetUserWx200Response {
|
|
20
20
|
/**
|
|
21
21
|
*
|
|
22
|
-
* @type {
|
|
23
|
-
* @memberof GetUserWx200Response
|
|
24
|
-
*/
|
|
25
|
-
'status'?: number;
|
|
26
|
-
/**
|
|
27
|
-
*
|
|
28
|
-
* @type {Array<string>}
|
|
22
|
+
* @type {object}
|
|
29
23
|
* @memberof GetUserWx200Response
|
|
30
24
|
*/
|
|
31
|
-
'
|
|
25
|
+
'trailerFields'?: object;
|
|
32
26
|
/**
|
|
33
27
|
*
|
|
34
|
-
* @type {
|
|
28
|
+
* @type {number}
|
|
35
29
|
* @memberof GetUserWx200Response
|
|
36
30
|
*/
|
|
37
|
-
'
|
|
31
|
+
'status'?: number;
|
|
38
32
|
/**
|
|
39
33
|
*
|
|
40
|
-
* @type {
|
|
34
|
+
* @type {Array<string>}
|
|
41
35
|
* @memberof GetUserWx200Response
|
|
42
36
|
*/
|
|
43
|
-
'
|
|
37
|
+
'headerNames'?: Array<string>;
|
|
44
38
|
/**
|
|
45
39
|
*
|
|
46
40
|
* @type {number}
|
|
@@ -65,6 +59,12 @@ export interface GetUserWx200Response {
|
|
|
65
59
|
* @memberof GetUserWx200Response
|
|
66
60
|
*/
|
|
67
61
|
'outputStream'?: GetUserWx200ResponseOutputStream;
|
|
62
|
+
/**
|
|
63
|
+
*
|
|
64
|
+
* @type {GetUserWx200ResponseLocale}
|
|
65
|
+
* @memberof GetUserWx200Response
|
|
66
|
+
*/
|
|
67
|
+
'locale'?: GetUserWx200ResponseLocale;
|
|
68
68
|
/**
|
|
69
69
|
*
|
|
70
70
|
* @type {string}
|
|
@@ -30,29 +30,29 @@ export interface IPageAccessVO {
|
|
|
30
30
|
'current'?: number;
|
|
31
31
|
/**
|
|
32
32
|
*
|
|
33
|
-
* @type {
|
|
33
|
+
* @type {Array<AccessVO>}
|
|
34
34
|
* @memberof IPageAccessVO
|
|
35
|
-
* @deprecated
|
|
36
35
|
*/
|
|
37
|
-
'
|
|
36
|
+
'records'?: Array<AccessVO>;
|
|
38
37
|
/**
|
|
39
38
|
*
|
|
40
|
-
* @type {
|
|
39
|
+
* @type {boolean}
|
|
41
40
|
* @memberof IPageAccessVO
|
|
41
|
+
* @deprecated
|
|
42
42
|
*/
|
|
43
|
-
'
|
|
43
|
+
'hitCount'?: boolean;
|
|
44
44
|
/**
|
|
45
45
|
*
|
|
46
|
-
* @type {
|
|
46
|
+
* @type {boolean}
|
|
47
47
|
* @memberof IPageAccessVO
|
|
48
48
|
*/
|
|
49
|
-
'
|
|
49
|
+
'searchCount'?: boolean;
|
|
50
50
|
/**
|
|
51
51
|
*
|
|
52
|
-
* @type {
|
|
52
|
+
* @type {number}
|
|
53
53
|
* @memberof IPageAccessVO
|
|
54
54
|
*/
|
|
55
|
-
'
|
|
55
|
+
'pages'?: number;
|
|
56
56
|
/**
|
|
57
57
|
*
|
|
58
58
|
* @type {number}
|
|
@@ -357,14 +357,14 @@ export interface SysUser {
|
|
|
357
357
|
'supplierId'?: number;
|
|
358
358
|
/**
|
|
359
359
|
*
|
|
360
|
-
* @type {
|
|
360
|
+
* @type {string}
|
|
361
361
|
* @memberof SysUser
|
|
362
362
|
*/
|
|
363
|
-
'
|
|
363
|
+
'cid'?: string;
|
|
364
364
|
/**
|
|
365
365
|
*
|
|
366
|
-
* @type {
|
|
366
|
+
* @type {number}
|
|
367
367
|
* @memberof SysUser
|
|
368
368
|
*/
|
|
369
|
-
'
|
|
369
|
+
'cuserId'?: number;
|
|
370
370
|
}
|
|
@@ -28,28 +28,22 @@ import type { GetUserWx200ResponseOutputStream } from './get-user-wx200-response
|
|
|
28
28
|
export interface GetUserWx200Response {
|
|
29
29
|
/**
|
|
30
30
|
*
|
|
31
|
-
* @type {
|
|
32
|
-
* @memberof GetUserWx200Response
|
|
33
|
-
*/
|
|
34
|
-
'status'?: number;
|
|
35
|
-
/**
|
|
36
|
-
*
|
|
37
|
-
* @type {Array<string>}
|
|
31
|
+
* @type {object}
|
|
38
32
|
* @memberof GetUserWx200Response
|
|
39
33
|
*/
|
|
40
|
-
'
|
|
34
|
+
'trailerFields'?: object;
|
|
41
35
|
/**
|
|
42
36
|
*
|
|
43
|
-
* @type {
|
|
37
|
+
* @type {number}
|
|
44
38
|
* @memberof GetUserWx200Response
|
|
45
39
|
*/
|
|
46
|
-
'
|
|
40
|
+
'status'?: number;
|
|
47
41
|
/**
|
|
48
42
|
*
|
|
49
|
-
* @type {
|
|
43
|
+
* @type {Array<string>}
|
|
50
44
|
* @memberof GetUserWx200Response
|
|
51
45
|
*/
|
|
52
|
-
'
|
|
46
|
+
'headerNames'?: Array<string>;
|
|
53
47
|
/**
|
|
54
48
|
*
|
|
55
49
|
* @type {number}
|
|
@@ -74,6 +68,12 @@ export interface GetUserWx200Response {
|
|
|
74
68
|
* @memberof GetUserWx200Response
|
|
75
69
|
*/
|
|
76
70
|
'outputStream'?: GetUserWx200ResponseOutputStream;
|
|
71
|
+
/**
|
|
72
|
+
*
|
|
73
|
+
* @type {GetUserWx200ResponseLocale}
|
|
74
|
+
* @memberof GetUserWx200Response
|
|
75
|
+
*/
|
|
76
|
+
'locale'?: GetUserWx200ResponseLocale;
|
|
77
77
|
/**
|
|
78
78
|
*
|
|
79
79
|
* @type {string}
|
|
@@ -37,29 +37,29 @@ export interface IPageAccessVO {
|
|
|
37
37
|
'current'?: number;
|
|
38
38
|
/**
|
|
39
39
|
*
|
|
40
|
-
* @type {
|
|
40
|
+
* @type {Array<AccessVO>}
|
|
41
41
|
* @memberof IPageAccessVO
|
|
42
|
-
* @deprecated
|
|
43
42
|
*/
|
|
44
|
-
'
|
|
43
|
+
'records'?: Array<AccessVO>;
|
|
45
44
|
/**
|
|
46
45
|
*
|
|
47
|
-
* @type {
|
|
46
|
+
* @type {boolean}
|
|
48
47
|
* @memberof IPageAccessVO
|
|
48
|
+
* @deprecated
|
|
49
49
|
*/
|
|
50
|
-
'
|
|
50
|
+
'hitCount'?: boolean;
|
|
51
51
|
/**
|
|
52
52
|
*
|
|
53
|
-
* @type {
|
|
53
|
+
* @type {boolean}
|
|
54
54
|
* @memberof IPageAccessVO
|
|
55
55
|
*/
|
|
56
|
-
'
|
|
56
|
+
'searchCount'?: boolean;
|
|
57
57
|
/**
|
|
58
58
|
*
|
|
59
|
-
* @type {
|
|
59
|
+
* @type {number}
|
|
60
60
|
* @memberof IPageAccessVO
|
|
61
61
|
*/
|
|
62
|
-
'
|
|
62
|
+
'pages'?: number;
|
|
63
63
|
/**
|
|
64
64
|
*
|
|
65
65
|
* @type {number}
|
package/models/sys-user.ts
CHANGED
|
@@ -364,15 +364,15 @@ export interface SysUser {
|
|
|
364
364
|
'supplierId'?: number;
|
|
365
365
|
/**
|
|
366
366
|
*
|
|
367
|
-
* @type {
|
|
367
|
+
* @type {string}
|
|
368
368
|
* @memberof SysUser
|
|
369
369
|
*/
|
|
370
|
-
'
|
|
370
|
+
'cid'?: string;
|
|
371
371
|
/**
|
|
372
372
|
*
|
|
373
|
-
* @type {
|
|
373
|
+
* @type {number}
|
|
374
374
|
* @memberof SysUser
|
|
375
375
|
*/
|
|
376
|
-
'
|
|
376
|
+
'cuserId'?: number;
|
|
377
377
|
}
|
|
378
378
|
|