@gizone/rrs-client 4.2.0-alpha.269 → 4.2.0-alpha.271

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/apis/space-api.ts CHANGED
@@ -140,6 +140,40 @@ export const SpaceApiAxiosParamCreator = function (configuration?: Configuration
140
140
  options: localVarRequestOptions,
141
141
  };
142
142
  },
143
+ /**
144
+ *
145
+ * @summary 批量导出空间
146
+ * @param {*} [options] Override http request option.
147
+ * @throws {RequiredError}
148
+ */
149
+ spaceBatchExport: async (options: RawAxiosRequestConfig = {}): Promise<RequestArgs> => {
150
+ const localVarPath = `/gizone/space/batchExport`;
151
+ // use dummy base URL string because the URL constructor only accepts absolute URLs.
152
+ const localVarUrlObj = new URL(localVarPath, DUMMY_BASE_URL);
153
+ let baseOptions;
154
+ if (configuration) {
155
+ baseOptions = configuration.baseOptions;
156
+ }
157
+
158
+ const localVarRequestOptions = { method: 'GET', ...baseOptions, ...options};
159
+ const localVarHeaderParameter = {} as any;
160
+ const localVarQueryParameter = {} as any;
161
+
162
+ // authentication tokenScheme required
163
+ // http bearer authentication required
164
+ await setBearerAuthToObject(localVarHeaderParameter, configuration)
165
+
166
+
167
+
168
+ setSearchParams(localVarUrlObj, localVarQueryParameter);
169
+ let headersFromBaseOptions = baseOptions && baseOptions.headers ? baseOptions.headers : {};
170
+ localVarRequestOptions.headers = {...localVarHeaderParameter, ...headersFromBaseOptions, ...options.headers};
171
+
172
+ return {
173
+ url: toPathString(localVarUrlObj),
174
+ options: localVarRequestOptions,
175
+ };
176
+ },
143
177
  /**
144
178
  *
145
179
  * @summary /新增---导入excel数据
@@ -903,6 +937,18 @@ export const SpaceApiFp = function(configuration?: Configuration) {
903
937
  const localVarOperationServerBasePath = operationServerMap['SpaceApi.spaceAdd']?.[localVarOperationServerIndex]?.url;
904
938
  return (axios, basePath) => createRequestFunction(localVarAxiosArgs, globalAxios, BASE_PATH, configuration)(axios, localVarOperationServerBasePath || basePath);
905
939
  },
940
+ /**
941
+ *
942
+ * @summary 批量导出空间
943
+ * @param {*} [options] Override http request option.
944
+ * @throws {RequiredError}
945
+ */
946
+ async spaceBatchExport(options?: RawAxiosRequestConfig): Promise<(axios?: AxiosInstance, basePath?: string) => AxiosPromise<void>> {
947
+ const localVarAxiosArgs = await localVarAxiosParamCreator.spaceBatchExport(options);
948
+ const localVarOperationServerIndex = configuration?.serverIndex ?? 0;
949
+ const localVarOperationServerBasePath = operationServerMap['SpaceApi.spaceBatchExport']?.[localVarOperationServerIndex]?.url;
950
+ return (axios, basePath) => createRequestFunction(localVarAxiosArgs, globalAxios, BASE_PATH, configuration)(axios, localVarOperationServerBasePath || basePath);
951
+ },
906
952
  /**
907
953
  *
908
954
  * @summary /新增---导入excel数据
@@ -1168,6 +1214,15 @@ export const SpaceApiFactory = function (configuration?: Configuration, basePath
1168
1214
  spaceAdd(requestParameters: SpaceApiSpaceAddRequest, options?: RawAxiosRequestConfig): AxiosPromise<JsonResult> {
1169
1215
  return localVarFp.spaceAdd(requestParameters.spaceAddVO, options).then((request) => request(axios, basePath));
1170
1216
  },
1217
+ /**
1218
+ *
1219
+ * @summary 批量导出空间
1220
+ * @param {*} [options] Override http request option.
1221
+ * @throws {RequiredError}
1222
+ */
1223
+ spaceBatchExport(options?: RawAxiosRequestConfig): AxiosPromise<void> {
1224
+ return localVarFp.spaceBatchExport(options).then((request) => request(axios, basePath));
1225
+ },
1171
1226
  /**
1172
1227
  *
1173
1228
  * @summary /新增---导入excel数据
@@ -1661,6 +1716,17 @@ export class SpaceApi extends BaseAPI {
1661
1716
  return SpaceApiFp(this.configuration).spaceAdd(requestParameters.spaceAddVO, options).then((request) => request(this.axios, this.basePath));
1662
1717
  }
1663
1718
 
1719
+ /**
1720
+ *
1721
+ * @summary 批量导出空间
1722
+ * @param {*} [options] Override http request option.
1723
+ * @throws {RequiredError}
1724
+ * @memberof SpaceApi
1725
+ */
1726
+ public spaceBatchExport(options?: RawAxiosRequestConfig) {
1727
+ return SpaceApiFp(this.configuration).spaceBatchExport(options).then((request) => request(this.axios, this.basePath));
1728
+ }
1729
+
1664
1730
  /**
1665
1731
  *
1666
1732
  * @summary /新增---导入excel数据
@@ -49,6 +49,13 @@ export declare const SpaceApiAxiosParamCreator: (configuration?: Configuration)
49
49
  * @throws {RequiredError}
50
50
  */
51
51
  spaceAdd: (spaceAddVO: SpaceAddVO, options?: RawAxiosRequestConfig) => Promise<RequestArgs>;
52
+ /**
53
+ *
54
+ * @summary 批量导出空间
55
+ * @param {*} [options] Override http request option.
56
+ * @throws {RequiredError}
57
+ */
58
+ spaceBatchExport: (options?: RawAxiosRequestConfig) => Promise<RequestArgs>;
52
59
  /**
53
60
  *
54
61
  * @summary /新增---导入excel数据
@@ -216,6 +223,13 @@ export declare const SpaceApiFp: (configuration?: Configuration) => {
216
223
  * @throws {RequiredError}
217
224
  */
218
225
  spaceAdd(spaceAddVO: SpaceAddVO, options?: RawAxiosRequestConfig): Promise<(axios?: AxiosInstance, basePath?: string) => AxiosPromise<JsonResult>>;
226
+ /**
227
+ *
228
+ * @summary 批量导出空间
229
+ * @param {*} [options] Override http request option.
230
+ * @throws {RequiredError}
231
+ */
232
+ spaceBatchExport(options?: RawAxiosRequestConfig): Promise<(axios?: AxiosInstance, basePath?: string) => AxiosPromise<void>>;
219
233
  /**
220
234
  *
221
235
  * @summary /新增---导入excel数据
@@ -383,6 +397,13 @@ export declare const SpaceApiFactory: (configuration?: Configuration, basePath?:
383
397
  * @throws {RequiredError}
384
398
  */
385
399
  spaceAdd(requestParameters: SpaceApiSpaceAddRequest, options?: RawAxiosRequestConfig): AxiosPromise<JsonResult>;
400
+ /**
401
+ *
402
+ * @summary 批量导出空间
403
+ * @param {*} [options] Override http request option.
404
+ * @throws {RequiredError}
405
+ */
406
+ spaceBatchExport(options?: RawAxiosRequestConfig): AxiosPromise<void>;
386
407
  /**
387
408
  *
388
409
  * @summary /新增---导入excel数据
@@ -811,6 +832,14 @@ export declare class SpaceApi extends BaseAPI {
811
832
  * @memberof SpaceApi
812
833
  */
813
834
  spaceAdd(requestParameters: SpaceApiSpaceAddRequest, options?: RawAxiosRequestConfig): Promise<import("axios").AxiosResponse<JsonResult, any>>;
835
+ /**
836
+ *
837
+ * @summary 批量导出空间
838
+ * @param {*} [options] Override http request option.
839
+ * @throws {RequiredError}
840
+ * @memberof SpaceApi
841
+ */
842
+ spaceBatchExport(options?: RawAxiosRequestConfig): Promise<import("axios").AxiosResponse<void, any>>;
814
843
  /**
815
844
  *
816
845
  * @summary /新增---导入excel数据
@@ -102,6 +102,34 @@ const SpaceApiAxiosParamCreator = function (configuration) {
102
102
  options: localVarRequestOptions,
103
103
  };
104
104
  }),
105
+ /**
106
+ *
107
+ * @summary 批量导出空间
108
+ * @param {*} [options] Override http request option.
109
+ * @throws {RequiredError}
110
+ */
111
+ spaceBatchExport: (...args_1) => __awaiter(this, [...args_1], void 0, function* (options = {}) {
112
+ const localVarPath = `/gizone/space/batchExport`;
113
+ // use dummy base URL string because the URL constructor only accepts absolute URLs.
114
+ const localVarUrlObj = new URL(localVarPath, common_1.DUMMY_BASE_URL);
115
+ let baseOptions;
116
+ if (configuration) {
117
+ baseOptions = configuration.baseOptions;
118
+ }
119
+ const localVarRequestOptions = Object.assign(Object.assign({ method: 'GET' }, baseOptions), options);
120
+ const localVarHeaderParameter = {};
121
+ const localVarQueryParameter = {};
122
+ // authentication tokenScheme required
123
+ // http bearer authentication required
124
+ yield (0, common_1.setBearerAuthToObject)(localVarHeaderParameter, configuration);
125
+ (0, common_1.setSearchParams)(localVarUrlObj, localVarQueryParameter);
126
+ let headersFromBaseOptions = baseOptions && baseOptions.headers ? baseOptions.headers : {};
127
+ localVarRequestOptions.headers = Object.assign(Object.assign(Object.assign({}, localVarHeaderParameter), headersFromBaseOptions), options.headers);
128
+ return {
129
+ url: (0, common_1.toPathString)(localVarUrlObj),
130
+ options: localVarRequestOptions,
131
+ };
132
+ }),
105
133
  /**
106
134
  *
107
135
  * @summary /新增---导入excel数据
@@ -746,6 +774,21 @@ const SpaceApiFp = function (configuration) {
746
774
  return (axios, basePath) => (0, common_1.createRequestFunction)(localVarAxiosArgs, axios_1.default, base_1.BASE_PATH, configuration)(axios, localVarOperationServerBasePath || basePath);
747
775
  });
748
776
  },
777
+ /**
778
+ *
779
+ * @summary 批量导出空间
780
+ * @param {*} [options] Override http request option.
781
+ * @throws {RequiredError}
782
+ */
783
+ spaceBatchExport(options) {
784
+ return __awaiter(this, void 0, void 0, function* () {
785
+ var _a, _b, _c;
786
+ const localVarAxiosArgs = yield localVarAxiosParamCreator.spaceBatchExport(options);
787
+ const localVarOperationServerIndex = (_a = configuration === null || configuration === void 0 ? void 0 : configuration.serverIndex) !== null && _a !== void 0 ? _a : 0;
788
+ const localVarOperationServerBasePath = (_c = (_b = base_1.operationServerMap['SpaceApi.spaceBatchExport']) === null || _b === void 0 ? void 0 : _b[localVarOperationServerIndex]) === null || _c === void 0 ? void 0 : _c.url;
789
+ return (axios, basePath) => (0, common_1.createRequestFunction)(localVarAxiosArgs, axios_1.default, base_1.BASE_PATH, configuration)(axios, localVarOperationServerBasePath || basePath);
790
+ });
791
+ },
749
792
  /**
750
793
  *
751
794
  * @summary /新增---导入excel数据
@@ -1065,6 +1108,15 @@ const SpaceApiFactory = function (configuration, basePath, axios) {
1065
1108
  spaceAdd(requestParameters, options) {
1066
1109
  return localVarFp.spaceAdd(requestParameters.spaceAddVO, options).then((request) => request(axios, basePath));
1067
1110
  },
1111
+ /**
1112
+ *
1113
+ * @summary 批量导出空间
1114
+ * @param {*} [options] Override http request option.
1115
+ * @throws {RequiredError}
1116
+ */
1117
+ spaceBatchExport(options) {
1118
+ return localVarFp.spaceBatchExport(options).then((request) => request(axios, basePath));
1119
+ },
1068
1120
  /**
1069
1121
  *
1070
1122
  * @summary /新增---导入excel数据
@@ -1276,6 +1328,16 @@ class SpaceApi extends base_1.BaseAPI {
1276
1328
  spaceAdd(requestParameters, options) {
1277
1329
  return (0, exports.SpaceApiFp)(this.configuration).spaceAdd(requestParameters.spaceAddVO, options).then((request) => request(this.axios, this.basePath));
1278
1330
  }
1331
+ /**
1332
+ *
1333
+ * @summary 批量导出空间
1334
+ * @param {*} [options] Override http request option.
1335
+ * @throws {RequiredError}
1336
+ * @memberof SpaceApi
1337
+ */
1338
+ spaceBatchExport(options) {
1339
+ return (0, exports.SpaceApiFp)(this.configuration).spaceBatchExport(options).then((request) => request(this.axios, this.basePath));
1340
+ }
1279
1341
  /**
1280
1342
  *
1281
1343
  * @summary /新增---导入excel数据
@@ -49,6 +49,13 @@ export declare const SpaceApiAxiosParamCreator: (configuration?: Configuration)
49
49
  * @throws {RequiredError}
50
50
  */
51
51
  spaceAdd: (spaceAddVO: SpaceAddVO, options?: RawAxiosRequestConfig) => Promise<RequestArgs>;
52
+ /**
53
+ *
54
+ * @summary 批量导出空间
55
+ * @param {*} [options] Override http request option.
56
+ * @throws {RequiredError}
57
+ */
58
+ spaceBatchExport: (options?: RawAxiosRequestConfig) => Promise<RequestArgs>;
52
59
  /**
53
60
  *
54
61
  * @summary /新增---导入excel数据
@@ -216,6 +223,13 @@ export declare const SpaceApiFp: (configuration?: Configuration) => {
216
223
  * @throws {RequiredError}
217
224
  */
218
225
  spaceAdd(spaceAddVO: SpaceAddVO, options?: RawAxiosRequestConfig): Promise<(axios?: AxiosInstance, basePath?: string) => AxiosPromise<JsonResult>>;
226
+ /**
227
+ *
228
+ * @summary 批量导出空间
229
+ * @param {*} [options] Override http request option.
230
+ * @throws {RequiredError}
231
+ */
232
+ spaceBatchExport(options?: RawAxiosRequestConfig): Promise<(axios?: AxiosInstance, basePath?: string) => AxiosPromise<void>>;
219
233
  /**
220
234
  *
221
235
  * @summary /新增---导入excel数据
@@ -383,6 +397,13 @@ export declare const SpaceApiFactory: (configuration?: Configuration, basePath?:
383
397
  * @throws {RequiredError}
384
398
  */
385
399
  spaceAdd(requestParameters: SpaceApiSpaceAddRequest, options?: RawAxiosRequestConfig): AxiosPromise<JsonResult>;
400
+ /**
401
+ *
402
+ * @summary 批量导出空间
403
+ * @param {*} [options] Override http request option.
404
+ * @throws {RequiredError}
405
+ */
406
+ spaceBatchExport(options?: RawAxiosRequestConfig): AxiosPromise<void>;
386
407
  /**
387
408
  *
388
409
  * @summary /新增---导入excel数据
@@ -811,6 +832,14 @@ export declare class SpaceApi extends BaseAPI {
811
832
  * @memberof SpaceApi
812
833
  */
813
834
  spaceAdd(requestParameters: SpaceApiSpaceAddRequest, options?: RawAxiosRequestConfig): Promise<import("axios").AxiosResponse<JsonResult, any>>;
835
+ /**
836
+ *
837
+ * @summary 批量导出空间
838
+ * @param {*} [options] Override http request option.
839
+ * @throws {RequiredError}
840
+ * @memberof SpaceApi
841
+ */
842
+ spaceBatchExport(options?: RawAxiosRequestConfig): Promise<import("axios").AxiosResponse<void, any>>;
814
843
  /**
815
844
  *
816
845
  * @summary /新增---导入excel数据
@@ -99,6 +99,34 @@ export const SpaceApiAxiosParamCreator = function (configuration) {
99
99
  options: localVarRequestOptions,
100
100
  };
101
101
  }),
102
+ /**
103
+ *
104
+ * @summary 批量导出空间
105
+ * @param {*} [options] Override http request option.
106
+ * @throws {RequiredError}
107
+ */
108
+ spaceBatchExport: (...args_1) => __awaiter(this, [...args_1], void 0, function* (options = {}) {
109
+ const localVarPath = `/gizone/space/batchExport`;
110
+ // use dummy base URL string because the URL constructor only accepts absolute URLs.
111
+ const localVarUrlObj = new URL(localVarPath, DUMMY_BASE_URL);
112
+ let baseOptions;
113
+ if (configuration) {
114
+ baseOptions = configuration.baseOptions;
115
+ }
116
+ const localVarRequestOptions = Object.assign(Object.assign({ method: 'GET' }, baseOptions), options);
117
+ const localVarHeaderParameter = {};
118
+ const localVarQueryParameter = {};
119
+ // authentication tokenScheme required
120
+ // http bearer authentication required
121
+ yield setBearerAuthToObject(localVarHeaderParameter, configuration);
122
+ setSearchParams(localVarUrlObj, localVarQueryParameter);
123
+ let headersFromBaseOptions = baseOptions && baseOptions.headers ? baseOptions.headers : {};
124
+ localVarRequestOptions.headers = Object.assign(Object.assign(Object.assign({}, localVarHeaderParameter), headersFromBaseOptions), options.headers);
125
+ return {
126
+ url: toPathString(localVarUrlObj),
127
+ options: localVarRequestOptions,
128
+ };
129
+ }),
102
130
  /**
103
131
  *
104
132
  * @summary /新增---导入excel数据
@@ -742,6 +770,21 @@ export const SpaceApiFp = function (configuration) {
742
770
  return (axios, basePath) => createRequestFunction(localVarAxiosArgs, globalAxios, BASE_PATH, configuration)(axios, localVarOperationServerBasePath || basePath);
743
771
  });
744
772
  },
773
+ /**
774
+ *
775
+ * @summary 批量导出空间
776
+ * @param {*} [options] Override http request option.
777
+ * @throws {RequiredError}
778
+ */
779
+ spaceBatchExport(options) {
780
+ return __awaiter(this, void 0, void 0, function* () {
781
+ var _a, _b, _c;
782
+ const localVarAxiosArgs = yield localVarAxiosParamCreator.spaceBatchExport(options);
783
+ const localVarOperationServerIndex = (_a = configuration === null || configuration === void 0 ? void 0 : configuration.serverIndex) !== null && _a !== void 0 ? _a : 0;
784
+ const localVarOperationServerBasePath = (_c = (_b = operationServerMap['SpaceApi.spaceBatchExport']) === null || _b === void 0 ? void 0 : _b[localVarOperationServerIndex]) === null || _c === void 0 ? void 0 : _c.url;
785
+ return (axios, basePath) => createRequestFunction(localVarAxiosArgs, globalAxios, BASE_PATH, configuration)(axios, localVarOperationServerBasePath || basePath);
786
+ });
787
+ },
745
788
  /**
746
789
  *
747
790
  * @summary /新增---导入excel数据
@@ -1060,6 +1103,15 @@ export const SpaceApiFactory = function (configuration, basePath, axios) {
1060
1103
  spaceAdd(requestParameters, options) {
1061
1104
  return localVarFp.spaceAdd(requestParameters.spaceAddVO, options).then((request) => request(axios, basePath));
1062
1105
  },
1106
+ /**
1107
+ *
1108
+ * @summary 批量导出空间
1109
+ * @param {*} [options] Override http request option.
1110
+ * @throws {RequiredError}
1111
+ */
1112
+ spaceBatchExport(options) {
1113
+ return localVarFp.spaceBatchExport(options).then((request) => request(axios, basePath));
1114
+ },
1063
1115
  /**
1064
1116
  *
1065
1117
  * @summary /新增---导入excel数据
@@ -1270,6 +1322,16 @@ export class SpaceApi extends BaseAPI {
1270
1322
  spaceAdd(requestParameters, options) {
1271
1323
  return SpaceApiFp(this.configuration).spaceAdd(requestParameters.spaceAddVO, options).then((request) => request(this.axios, this.basePath));
1272
1324
  }
1325
+ /**
1326
+ *
1327
+ * @summary 批量导出空间
1328
+ * @param {*} [options] Override http request option.
1329
+ * @throws {RequiredError}
1330
+ * @memberof SpaceApi
1331
+ */
1332
+ spaceBatchExport(options) {
1333
+ return SpaceApiFp(this.configuration).spaceBatchExport(options).then((request) => request(this.axios, this.basePath));
1334
+ }
1273
1335
  /**
1274
1336
  *
1275
1337
  * @summary /新增---导入excel数据
@@ -19,10 +19,10 @@ import type { GetUserWx200ResponseOutputStream } from './get-user-wx200-response
19
19
  export interface GetUserWx200Response {
20
20
  /**
21
21
  *
22
- * @type {object}
22
+ * @type {Array<string>}
23
23
  * @memberof GetUserWx200Response
24
24
  */
25
- 'trailerFields'?: object;
25
+ 'headerNames'?: Array<string>;
26
26
  /**
27
27
  *
28
28
  * @type {number}
@@ -31,40 +31,40 @@ export interface GetUserWx200Response {
31
31
  'status'?: number;
32
32
  /**
33
33
  *
34
- * @type {Array<string>}
34
+ * @type {object}
35
35
  * @memberof GetUserWx200Response
36
36
  */
37
- 'headerNames'?: Array<string>;
37
+ 'trailerFields'?: object;
38
38
  /**
39
39
  *
40
- * @type {GetUserWx200ResponseLocale}
40
+ * @type {string}
41
41
  * @memberof GetUserWx200Response
42
42
  */
43
- 'locale'?: GetUserWx200ResponseLocale;
43
+ 'contentType'?: string;
44
44
  /**
45
45
  *
46
46
  * @type {number}
47
47
  * @memberof GetUserWx200Response
48
48
  */
49
- 'bufferSize'?: number;
49
+ 'contentLength'?: number;
50
50
  /**
51
51
  *
52
- * @type {string}
52
+ * @type {GetUserWx200ResponseOutputStream}
53
53
  * @memberof GetUserWx200Response
54
54
  */
55
- 'contentType'?: string;
55
+ 'outputStream'?: GetUserWx200ResponseOutputStream;
56
56
  /**
57
57
  *
58
- * @type {number}
58
+ * @type {GetUserWx200ResponseLocale}
59
59
  * @memberof GetUserWx200Response
60
60
  */
61
- 'contentLength'?: number;
61
+ 'locale'?: GetUserWx200ResponseLocale;
62
62
  /**
63
63
  *
64
- * @type {GetUserWx200ResponseOutputStream}
64
+ * @type {number}
65
65
  * @memberof GetUserWx200Response
66
66
  */
67
- 'outputStream'?: GetUserWx200ResponseOutputStream;
67
+ 'bufferSize'?: number;
68
68
  /**
69
69
  *
70
70
  * @type {string}
@@ -73,20 +73,20 @@ export interface GetUserWx200Response {
73
73
  'characterEncoding'?: string;
74
74
  /**
75
75
  *
76
- * @type {number}
76
+ * @type {object}
77
77
  * @memberof GetUserWx200Response
78
78
  */
79
- 'contentLengthLong'?: number;
79
+ 'writer'?: object;
80
80
  /**
81
81
  *
82
- * @type {boolean}
82
+ * @type {number}
83
83
  * @memberof GetUserWx200Response
84
84
  */
85
- 'committed'?: boolean;
85
+ 'contentLengthLong'?: number;
86
86
  /**
87
87
  *
88
- * @type {object}
88
+ * @type {boolean}
89
89
  * @memberof GetUserWx200Response
90
90
  */
91
- 'writer'?: object;
91
+ 'committed'?: boolean;
92
92
  }
@@ -34,12 +34,6 @@ export interface IPageAccessVO {
34
34
  * @memberof IPageAccessVO
35
35
  */
36
36
  'records'?: Array<AccessVO>;
37
- /**
38
- *
39
- * @type {boolean}
40
- * @memberof IPageAccessVO
41
- */
42
- 'searchCount'?: boolean;
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}
@@ -19,10 +19,10 @@ import type { GetUserWx200ResponseOutputStream } from './get-user-wx200-response
19
19
  export interface GetUserWx200Response {
20
20
  /**
21
21
  *
22
- * @type {object}
22
+ * @type {Array<string>}
23
23
  * @memberof GetUserWx200Response
24
24
  */
25
- 'trailerFields'?: object;
25
+ 'headerNames'?: Array<string>;
26
26
  /**
27
27
  *
28
28
  * @type {number}
@@ -31,40 +31,40 @@ export interface GetUserWx200Response {
31
31
  'status'?: number;
32
32
  /**
33
33
  *
34
- * @type {Array<string>}
34
+ * @type {object}
35
35
  * @memberof GetUserWx200Response
36
36
  */
37
- 'headerNames'?: Array<string>;
37
+ 'trailerFields'?: object;
38
38
  /**
39
39
  *
40
- * @type {GetUserWx200ResponseLocale}
40
+ * @type {string}
41
41
  * @memberof GetUserWx200Response
42
42
  */
43
- 'locale'?: GetUserWx200ResponseLocale;
43
+ 'contentType'?: string;
44
44
  /**
45
45
  *
46
46
  * @type {number}
47
47
  * @memberof GetUserWx200Response
48
48
  */
49
- 'bufferSize'?: number;
49
+ 'contentLength'?: number;
50
50
  /**
51
51
  *
52
- * @type {string}
52
+ * @type {GetUserWx200ResponseOutputStream}
53
53
  * @memberof GetUserWx200Response
54
54
  */
55
- 'contentType'?: string;
55
+ 'outputStream'?: GetUserWx200ResponseOutputStream;
56
56
  /**
57
57
  *
58
- * @type {number}
58
+ * @type {GetUserWx200ResponseLocale}
59
59
  * @memberof GetUserWx200Response
60
60
  */
61
- 'contentLength'?: number;
61
+ 'locale'?: GetUserWx200ResponseLocale;
62
62
  /**
63
63
  *
64
- * @type {GetUserWx200ResponseOutputStream}
64
+ * @type {number}
65
65
  * @memberof GetUserWx200Response
66
66
  */
67
- 'outputStream'?: GetUserWx200ResponseOutputStream;
67
+ 'bufferSize'?: number;
68
68
  /**
69
69
  *
70
70
  * @type {string}
@@ -73,20 +73,20 @@ export interface GetUserWx200Response {
73
73
  'characterEncoding'?: string;
74
74
  /**
75
75
  *
76
- * @type {number}
76
+ * @type {object}
77
77
  * @memberof GetUserWx200Response
78
78
  */
79
- 'contentLengthLong'?: number;
79
+ 'writer'?: object;
80
80
  /**
81
81
  *
82
- * @type {boolean}
82
+ * @type {number}
83
83
  * @memberof GetUserWx200Response
84
84
  */
85
- 'committed'?: boolean;
85
+ 'contentLengthLong'?: number;
86
86
  /**
87
87
  *
88
- * @type {object}
88
+ * @type {boolean}
89
89
  * @memberof GetUserWx200Response
90
90
  */
91
- 'writer'?: object;
91
+ 'committed'?: boolean;
92
92
  }
@@ -34,12 +34,6 @@ export interface IPageAccessVO {
34
34
  * @memberof IPageAccessVO
35
35
  */
36
36
  'records'?: Array<AccessVO>;
37
- /**
38
- *
39
- * @type {boolean}
40
- * @memberof IPageAccessVO
41
- */
42
- 'searchCount'?: boolean;
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}
@@ -28,10 +28,10 @@ import type { GetUserWx200ResponseOutputStream } from './get-user-wx200-response
28
28
  export interface GetUserWx200Response {
29
29
  /**
30
30
  *
31
- * @type {object}
31
+ * @type {Array<string>}
32
32
  * @memberof GetUserWx200Response
33
33
  */
34
- 'trailerFields'?: object;
34
+ 'headerNames'?: Array<string>;
35
35
  /**
36
36
  *
37
37
  * @type {number}
@@ -40,40 +40,40 @@ export interface GetUserWx200Response {
40
40
  'status'?: number;
41
41
  /**
42
42
  *
43
- * @type {Array<string>}
43
+ * @type {object}
44
44
  * @memberof GetUserWx200Response
45
45
  */
46
- 'headerNames'?: Array<string>;
46
+ 'trailerFields'?: object;
47
47
  /**
48
48
  *
49
- * @type {GetUserWx200ResponseLocale}
49
+ * @type {string}
50
50
  * @memberof GetUserWx200Response
51
51
  */
52
- 'locale'?: GetUserWx200ResponseLocale;
52
+ 'contentType'?: string;
53
53
  /**
54
54
  *
55
55
  * @type {number}
56
56
  * @memberof GetUserWx200Response
57
57
  */
58
- 'bufferSize'?: number;
58
+ 'contentLength'?: number;
59
59
  /**
60
60
  *
61
- * @type {string}
61
+ * @type {GetUserWx200ResponseOutputStream}
62
62
  * @memberof GetUserWx200Response
63
63
  */
64
- 'contentType'?: string;
64
+ 'outputStream'?: GetUserWx200ResponseOutputStream;
65
65
  /**
66
66
  *
67
- * @type {number}
67
+ * @type {GetUserWx200ResponseLocale}
68
68
  * @memberof GetUserWx200Response
69
69
  */
70
- 'contentLength'?: number;
70
+ 'locale'?: GetUserWx200ResponseLocale;
71
71
  /**
72
72
  *
73
- * @type {GetUserWx200ResponseOutputStream}
73
+ * @type {number}
74
74
  * @memberof GetUserWx200Response
75
75
  */
76
- 'outputStream'?: GetUserWx200ResponseOutputStream;
76
+ 'bufferSize'?: number;
77
77
  /**
78
78
  *
79
79
  * @type {string}
@@ -82,21 +82,21 @@ export interface GetUserWx200Response {
82
82
  'characterEncoding'?: string;
83
83
  /**
84
84
  *
85
- * @type {number}
85
+ * @type {object}
86
86
  * @memberof GetUserWx200Response
87
87
  */
88
- 'contentLengthLong'?: number;
88
+ 'writer'?: object;
89
89
  /**
90
90
  *
91
- * @type {boolean}
91
+ * @type {number}
92
92
  * @memberof GetUserWx200Response
93
93
  */
94
- 'committed'?: boolean;
94
+ 'contentLengthLong'?: number;
95
95
  /**
96
96
  *
97
- * @type {object}
97
+ * @type {boolean}
98
98
  * @memberof GetUserWx200Response
99
99
  */
100
- 'writer'?: object;
100
+ 'committed'?: boolean;
101
101
  }
102
102
 
@@ -41,12 +41,6 @@ export interface IPageAccessVO {
41
41
  * @memberof IPageAccessVO
42
42
  */
43
43
  'records'?: Array<AccessVO>;
44
- /**
45
- *
46
- * @type {boolean}
47
- * @memberof IPageAccessVO
48
- */
49
- 'searchCount'?: boolean;
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}
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@gizone/rrs-client",
3
- "version": "4.2.0-alpha.269",
3
+ "version": "4.2.0-alpha.271",
4
4
  "description": "OpenAPI client for @gizone/rrs-client",
5
5
  "author": "OpenAPI-Generator Contributors",
6
6
  "repository": {