@gizone/rrs-client 3.11.13-alpha.62 → 3.11.13-alpha.63

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.
@@ -423,11 +423,10 @@ export const InspectionStandardApiAxiosParamCreator = function (configuration?:
423
423
  * @param {string} [searchValue] 内容
424
424
  * @param {InspectionCategoryEnum} [category] 巡检分类
425
425
  * @param {WorkOrderPlanRepeatsEnum} [repeats] 周期
426
- * @param {number} [equipmentSystemId] 设备系统ID
427
426
  * @param {*} [options] Override http request option.
428
427
  * @throws {RequiredError}
429
428
  */
430
- listInspectionStandard: async (parkId: number, pageSize: number, page: number, searchValue?: string, category?: InspectionCategoryEnum, repeats?: WorkOrderPlanRepeatsEnum, equipmentSystemId?: number, options: RawAxiosRequestConfig = {}): Promise<RequestArgs> => {
429
+ listInspectionStandard: async (parkId: number, pageSize: number, page: number, searchValue?: string, category?: InspectionCategoryEnum, repeats?: WorkOrderPlanRepeatsEnum, options: RawAxiosRequestConfig = {}): Promise<RequestArgs> => {
431
430
  // verify required parameter 'parkId' is not null or undefined
432
431
  assertParamExists('listInspectionStandard', 'parkId', parkId)
433
432
  // verify required parameter 'pageSize' is not null or undefined
@@ -474,10 +473,6 @@ export const InspectionStandardApiAxiosParamCreator = function (configuration?:
474
473
  localVarQueryParameter['repeats'] = repeats;
475
474
  }
476
475
 
477
- if (equipmentSystemId !== undefined) {
478
- localVarQueryParameter['equipmentSystemId'] = equipmentSystemId;
479
- }
480
-
481
476
 
482
477
 
483
478
  setSearchParams(localVarUrlObj, localVarQueryParameter);
@@ -801,12 +796,11 @@ export const InspectionStandardApiFp = function(configuration?: Configuration) {
801
796
  * @param {string} [searchValue] 内容
802
797
  * @param {InspectionCategoryEnum} [category] 巡检分类
803
798
  * @param {WorkOrderPlanRepeatsEnum} [repeats] 周期
804
- * @param {number} [equipmentSystemId] 设备系统ID
805
799
  * @param {*} [options] Override http request option.
806
800
  * @throws {RequiredError}
807
801
  */
808
- async listInspectionStandard(parkId: number, pageSize: number, page: number, searchValue?: string, category?: InspectionCategoryEnum, repeats?: WorkOrderPlanRepeatsEnum, equipmentSystemId?: number, options?: RawAxiosRequestConfig): Promise<(axios?: AxiosInstance, basePath?: string) => AxiosPromise<JsonResultPageDtoInspectionStandardDTO>> {
809
- const localVarAxiosArgs = await localVarAxiosParamCreator.listInspectionStandard(parkId, pageSize, page, searchValue, category, repeats, equipmentSystemId, options);
802
+ async listInspectionStandard(parkId: number, pageSize: number, page: number, searchValue?: string, category?: InspectionCategoryEnum, repeats?: WorkOrderPlanRepeatsEnum, options?: RawAxiosRequestConfig): Promise<(axios?: AxiosInstance, basePath?: string) => AxiosPromise<JsonResultPageDtoInspectionStandardDTO>> {
803
+ const localVarAxiosArgs = await localVarAxiosParamCreator.listInspectionStandard(parkId, pageSize, page, searchValue, category, repeats, options);
810
804
  const localVarOperationServerIndex = configuration?.serverIndex ?? 0;
811
805
  const localVarOperationServerBasePath = operationServerMap['InspectionStandardApi.listInspectionStandard']?.[localVarOperationServerIndex]?.url;
812
806
  return (axios, basePath) => createRequestFunction(localVarAxiosArgs, globalAxios, BASE_PATH, configuration)(axios, localVarOperationServerBasePath || basePath);
@@ -970,7 +964,7 @@ export const InspectionStandardApiFactory = function (configuration?: Configurat
970
964
  * @throws {RequiredError}
971
965
  */
972
966
  listInspectionStandard(requestParameters: InspectionStandardApiListInspectionStandardRequest, options?: RawAxiosRequestConfig): AxiosPromise<JsonResultPageDtoInspectionStandardDTO> {
973
- return localVarFp.listInspectionStandard(requestParameters.parkId, requestParameters.pageSize, requestParameters.page, requestParameters.searchValue, requestParameters.category, requestParameters.repeats, requestParameters.equipmentSystemId, options).then((request) => request(axios, basePath));
967
+ return localVarFp.listInspectionStandard(requestParameters.parkId, requestParameters.pageSize, requestParameters.page, requestParameters.searchValue, requestParameters.category, requestParameters.repeats, options).then((request) => request(axios, basePath));
974
968
  },
975
969
  /**
976
970
  *
@@ -1181,13 +1175,6 @@ export interface InspectionStandardApiListInspectionStandardRequest {
1181
1175
  * @memberof InspectionStandardApiListInspectionStandard
1182
1176
  */
1183
1177
  readonly repeats?: WorkOrderPlanRepeatsEnum
1184
-
1185
- /**
1186
- * 设备系统ID
1187
- * @type {number}
1188
- * @memberof InspectionStandardApiListInspectionStandard
1189
- */
1190
- readonly equipmentSystemId?: number
1191
1178
  }
1192
1179
 
1193
1180
  /**
@@ -1381,7 +1368,7 @@ export class InspectionStandardApi extends BaseAPI {
1381
1368
  * @memberof InspectionStandardApi
1382
1369
  */
1383
1370
  public listInspectionStandard(requestParameters: InspectionStandardApiListInspectionStandardRequest, options?: RawAxiosRequestConfig) {
1384
- return InspectionStandardApiFp(this.configuration).listInspectionStandard(requestParameters.parkId, requestParameters.pageSize, requestParameters.page, requestParameters.searchValue, requestParameters.category, requestParameters.repeats, requestParameters.equipmentSystemId, options).then((request) => request(this.axios, this.basePath));
1371
+ return InspectionStandardApiFp(this.configuration).listInspectionStandard(requestParameters.parkId, requestParameters.pageSize, requestParameters.page, requestParameters.searchValue, requestParameters.category, requestParameters.repeats, options).then((request) => request(this.axios, this.basePath));
1385
1372
  }
1386
1373
 
1387
1374
  /**
@@ -108,11 +108,10 @@ export declare const InspectionStandardApiAxiosParamCreator: (configuration?: Co
108
108
  * @param {string} [searchValue] 内容
109
109
  * @param {InspectionCategoryEnum} [category] 巡检分类
110
110
  * @param {WorkOrderPlanRepeatsEnum} [repeats] 周期
111
- * @param {number} [equipmentSystemId] 设备系统ID
112
111
  * @param {*} [options] Override http request option.
113
112
  * @throws {RequiredError}
114
113
  */
115
- listInspectionStandard: (parkId: number, pageSize: number, page: number, searchValue?: string, category?: InspectionCategoryEnum, repeats?: WorkOrderPlanRepeatsEnum, equipmentSystemId?: number, options?: RawAxiosRequestConfig) => Promise<RequestArgs>;
114
+ listInspectionStandard: (parkId: number, pageSize: number, page: number, searchValue?: string, category?: InspectionCategoryEnum, repeats?: WorkOrderPlanRepeatsEnum, options?: RawAxiosRequestConfig) => Promise<RequestArgs>;
116
115
  /**
117
116
  *
118
117
  * @summary 根据设备id查询维保标准
@@ -236,11 +235,10 @@ export declare const InspectionStandardApiFp: (configuration?: Configuration) =>
236
235
  * @param {string} [searchValue] 内容
237
236
  * @param {InspectionCategoryEnum} [category] 巡检分类
238
237
  * @param {WorkOrderPlanRepeatsEnum} [repeats] 周期
239
- * @param {number} [equipmentSystemId] 设备系统ID
240
238
  * @param {*} [options] Override http request option.
241
239
  * @throws {RequiredError}
242
240
  */
243
- listInspectionStandard(parkId: number, pageSize: number, page: number, searchValue?: string, category?: InspectionCategoryEnum, repeats?: WorkOrderPlanRepeatsEnum, equipmentSystemId?: number, options?: RawAxiosRequestConfig): Promise<(axios?: AxiosInstance, basePath?: string) => AxiosPromise<JsonResultPageDtoInspectionStandardDTO>>;
241
+ listInspectionStandard(parkId: number, pageSize: number, page: number, searchValue?: string, category?: InspectionCategoryEnum, repeats?: WorkOrderPlanRepeatsEnum, options?: RawAxiosRequestConfig): Promise<(axios?: AxiosInstance, basePath?: string) => AxiosPromise<JsonResultPageDtoInspectionStandardDTO>>;
244
242
  /**
245
243
  *
246
244
  * @summary 根据设备id查询维保标准
@@ -541,12 +539,6 @@ export interface InspectionStandardApiListInspectionStandardRequest {
541
539
  * @memberof InspectionStandardApiListInspectionStandard
542
540
  */
543
541
  readonly repeats?: WorkOrderPlanRepeatsEnum;
544
- /**
545
- * 设备系统ID
546
- * @type {number}
547
- * @memberof InspectionStandardApiListInspectionStandard
548
- */
549
- readonly equipmentSystemId?: number;
550
542
  }
551
543
  /**
552
544
  * Request parameters for listInspectionStandardByEquipmentId operation in InspectionStandardApi.
@@ -351,11 +351,10 @@ const InspectionStandardApiAxiosParamCreator = function (configuration) {
351
351
  * @param {string} [searchValue] 内容
352
352
  * @param {InspectionCategoryEnum} [category] 巡检分类
353
353
  * @param {WorkOrderPlanRepeatsEnum} [repeats] 周期
354
- * @param {number} [equipmentSystemId] 设备系统ID
355
354
  * @param {*} [options] Override http request option.
356
355
  * @throws {RequiredError}
357
356
  */
358
- listInspectionStandard: (parkId_1, pageSize_1, page_1, searchValue_1, category_1, repeats_1, equipmentSystemId_1, ...args_1) => __awaiter(this, [parkId_1, pageSize_1, page_1, searchValue_1, category_1, repeats_1, equipmentSystemId_1, ...args_1], void 0, function* (parkId, pageSize, page, searchValue, category, repeats, equipmentSystemId, options = {}) {
357
+ listInspectionStandard: (parkId_1, pageSize_1, page_1, searchValue_1, category_1, repeats_1, ...args_1) => __awaiter(this, [parkId_1, pageSize_1, page_1, searchValue_1, category_1, repeats_1, ...args_1], void 0, function* (parkId, pageSize, page, searchValue, category, repeats, options = {}) {
359
358
  // verify required parameter 'parkId' is not null or undefined
360
359
  (0, common_1.assertParamExists)('listInspectionStandard', 'parkId', parkId);
361
360
  // verify required parameter 'pageSize' is not null or undefined
@@ -393,9 +392,6 @@ const InspectionStandardApiAxiosParamCreator = function (configuration) {
393
392
  if (repeats !== undefined) {
394
393
  localVarQueryParameter['repeats'] = repeats;
395
394
  }
396
- if (equipmentSystemId !== undefined) {
397
- localVarQueryParameter['equipmentSystemId'] = equipmentSystemId;
398
- }
399
395
  (0, common_1.setSearchParams)(localVarUrlObj, localVarQueryParameter);
400
396
  let headersFromBaseOptions = baseOptions && baseOptions.headers ? baseOptions.headers : {};
401
397
  localVarRequestOptions.headers = Object.assign(Object.assign(Object.assign({}, localVarHeaderParameter), headersFromBaseOptions), options.headers);
@@ -714,14 +710,13 @@ const InspectionStandardApiFp = function (configuration) {
714
710
  * @param {string} [searchValue] 内容
715
711
  * @param {InspectionCategoryEnum} [category] 巡检分类
716
712
  * @param {WorkOrderPlanRepeatsEnum} [repeats] 周期
717
- * @param {number} [equipmentSystemId] 设备系统ID
718
713
  * @param {*} [options] Override http request option.
719
714
  * @throws {RequiredError}
720
715
  */
721
- listInspectionStandard(parkId, pageSize, page, searchValue, category, repeats, equipmentSystemId, options) {
716
+ listInspectionStandard(parkId, pageSize, page, searchValue, category, repeats, options) {
722
717
  return __awaiter(this, void 0, void 0, function* () {
723
718
  var _a, _b, _c;
724
- const localVarAxiosArgs = yield localVarAxiosParamCreator.listInspectionStandard(parkId, pageSize, page, searchValue, category, repeats, equipmentSystemId, options);
719
+ const localVarAxiosArgs = yield localVarAxiosParamCreator.listInspectionStandard(parkId, pageSize, page, searchValue, category, repeats, options);
725
720
  const localVarOperationServerIndex = (_a = configuration === null || configuration === void 0 ? void 0 : configuration.serverIndex) !== null && _a !== void 0 ? _a : 0;
726
721
  const localVarOperationServerBasePath = (_c = (_b = base_1.operationServerMap['InspectionStandardApi.listInspectionStandard']) === null || _b === void 0 ? void 0 : _b[localVarOperationServerIndex]) === null || _c === void 0 ? void 0 : _c.url;
727
722
  return (axios, basePath) => (0, common_1.createRequestFunction)(localVarAxiosArgs, axios_1.default, base_1.BASE_PATH, configuration)(axios, localVarOperationServerBasePath || basePath);
@@ -898,7 +893,7 @@ const InspectionStandardApiFactory = function (configuration, basePath, axios) {
898
893
  * @throws {RequiredError}
899
894
  */
900
895
  listInspectionStandard(requestParameters, options) {
901
- return localVarFp.listInspectionStandard(requestParameters.parkId, requestParameters.pageSize, requestParameters.page, requestParameters.searchValue, requestParameters.category, requestParameters.repeats, requestParameters.equipmentSystemId, options).then((request) => request(axios, basePath));
896
+ return localVarFp.listInspectionStandard(requestParameters.parkId, requestParameters.pageSize, requestParameters.page, requestParameters.searchValue, requestParameters.category, requestParameters.repeats, options).then((request) => request(axios, basePath));
902
897
  },
903
898
  /**
904
899
  *
@@ -1055,7 +1050,7 @@ class InspectionStandardApi extends base_1.BaseAPI {
1055
1050
  * @memberof InspectionStandardApi
1056
1051
  */
1057
1052
  listInspectionStandard(requestParameters, options) {
1058
- return (0, exports.InspectionStandardApiFp)(this.configuration).listInspectionStandard(requestParameters.parkId, requestParameters.pageSize, requestParameters.page, requestParameters.searchValue, requestParameters.category, requestParameters.repeats, requestParameters.equipmentSystemId, options).then((request) => request(this.axios, this.basePath));
1053
+ return (0, exports.InspectionStandardApiFp)(this.configuration).listInspectionStandard(requestParameters.parkId, requestParameters.pageSize, requestParameters.page, requestParameters.searchValue, requestParameters.category, requestParameters.repeats, options).then((request) => request(this.axios, this.basePath));
1059
1054
  }
1060
1055
  /**
1061
1056
  *
@@ -108,11 +108,10 @@ export declare const InspectionStandardApiAxiosParamCreator: (configuration?: Co
108
108
  * @param {string} [searchValue] 内容
109
109
  * @param {InspectionCategoryEnum} [category] 巡检分类
110
110
  * @param {WorkOrderPlanRepeatsEnum} [repeats] 周期
111
- * @param {number} [equipmentSystemId] 设备系统ID
112
111
  * @param {*} [options] Override http request option.
113
112
  * @throws {RequiredError}
114
113
  */
115
- listInspectionStandard: (parkId: number, pageSize: number, page: number, searchValue?: string, category?: InspectionCategoryEnum, repeats?: WorkOrderPlanRepeatsEnum, equipmentSystemId?: number, options?: RawAxiosRequestConfig) => Promise<RequestArgs>;
114
+ listInspectionStandard: (parkId: number, pageSize: number, page: number, searchValue?: string, category?: InspectionCategoryEnum, repeats?: WorkOrderPlanRepeatsEnum, options?: RawAxiosRequestConfig) => Promise<RequestArgs>;
116
115
  /**
117
116
  *
118
117
  * @summary 根据设备id查询维保标准
@@ -236,11 +235,10 @@ export declare const InspectionStandardApiFp: (configuration?: Configuration) =>
236
235
  * @param {string} [searchValue] 内容
237
236
  * @param {InspectionCategoryEnum} [category] 巡检分类
238
237
  * @param {WorkOrderPlanRepeatsEnum} [repeats] 周期
239
- * @param {number} [equipmentSystemId] 设备系统ID
240
238
  * @param {*} [options] Override http request option.
241
239
  * @throws {RequiredError}
242
240
  */
243
- listInspectionStandard(parkId: number, pageSize: number, page: number, searchValue?: string, category?: InspectionCategoryEnum, repeats?: WorkOrderPlanRepeatsEnum, equipmentSystemId?: number, options?: RawAxiosRequestConfig): Promise<(axios?: AxiosInstance, basePath?: string) => AxiosPromise<JsonResultPageDtoInspectionStandardDTO>>;
241
+ listInspectionStandard(parkId: number, pageSize: number, page: number, searchValue?: string, category?: InspectionCategoryEnum, repeats?: WorkOrderPlanRepeatsEnum, options?: RawAxiosRequestConfig): Promise<(axios?: AxiosInstance, basePath?: string) => AxiosPromise<JsonResultPageDtoInspectionStandardDTO>>;
244
242
  /**
245
243
  *
246
244
  * @summary 根据设备id查询维保标准
@@ -541,12 +539,6 @@ export interface InspectionStandardApiListInspectionStandardRequest {
541
539
  * @memberof InspectionStandardApiListInspectionStandard
542
540
  */
543
541
  readonly repeats?: WorkOrderPlanRepeatsEnum;
544
- /**
545
- * 设备系统ID
546
- * @type {number}
547
- * @memberof InspectionStandardApiListInspectionStandard
548
- */
549
- readonly equipmentSystemId?: number;
550
542
  }
551
543
  /**
552
544
  * Request parameters for listInspectionStandardByEquipmentId operation in InspectionStandardApi.
@@ -348,11 +348,10 @@ export const InspectionStandardApiAxiosParamCreator = function (configuration) {
348
348
  * @param {string} [searchValue] 内容
349
349
  * @param {InspectionCategoryEnum} [category] 巡检分类
350
350
  * @param {WorkOrderPlanRepeatsEnum} [repeats] 周期
351
- * @param {number} [equipmentSystemId] 设备系统ID
352
351
  * @param {*} [options] Override http request option.
353
352
  * @throws {RequiredError}
354
353
  */
355
- listInspectionStandard: (parkId_1, pageSize_1, page_1, searchValue_1, category_1, repeats_1, equipmentSystemId_1, ...args_1) => __awaiter(this, [parkId_1, pageSize_1, page_1, searchValue_1, category_1, repeats_1, equipmentSystemId_1, ...args_1], void 0, function* (parkId, pageSize, page, searchValue, category, repeats, equipmentSystemId, options = {}) {
354
+ listInspectionStandard: (parkId_1, pageSize_1, page_1, searchValue_1, category_1, repeats_1, ...args_1) => __awaiter(this, [parkId_1, pageSize_1, page_1, searchValue_1, category_1, repeats_1, ...args_1], void 0, function* (parkId, pageSize, page, searchValue, category, repeats, options = {}) {
356
355
  // verify required parameter 'parkId' is not null or undefined
357
356
  assertParamExists('listInspectionStandard', 'parkId', parkId);
358
357
  // verify required parameter 'pageSize' is not null or undefined
@@ -390,9 +389,6 @@ export const InspectionStandardApiAxiosParamCreator = function (configuration) {
390
389
  if (repeats !== undefined) {
391
390
  localVarQueryParameter['repeats'] = repeats;
392
391
  }
393
- if (equipmentSystemId !== undefined) {
394
- localVarQueryParameter['equipmentSystemId'] = equipmentSystemId;
395
- }
396
392
  setSearchParams(localVarUrlObj, localVarQueryParameter);
397
393
  let headersFromBaseOptions = baseOptions && baseOptions.headers ? baseOptions.headers : {};
398
394
  localVarRequestOptions.headers = Object.assign(Object.assign(Object.assign({}, localVarHeaderParameter), headersFromBaseOptions), options.headers);
@@ -710,14 +706,13 @@ export const InspectionStandardApiFp = function (configuration) {
710
706
  * @param {string} [searchValue] 内容
711
707
  * @param {InspectionCategoryEnum} [category] 巡检分类
712
708
  * @param {WorkOrderPlanRepeatsEnum} [repeats] 周期
713
- * @param {number} [equipmentSystemId] 设备系统ID
714
709
  * @param {*} [options] Override http request option.
715
710
  * @throws {RequiredError}
716
711
  */
717
- listInspectionStandard(parkId, pageSize, page, searchValue, category, repeats, equipmentSystemId, options) {
712
+ listInspectionStandard(parkId, pageSize, page, searchValue, category, repeats, options) {
718
713
  return __awaiter(this, void 0, void 0, function* () {
719
714
  var _a, _b, _c;
720
- const localVarAxiosArgs = yield localVarAxiosParamCreator.listInspectionStandard(parkId, pageSize, page, searchValue, category, repeats, equipmentSystemId, options);
715
+ const localVarAxiosArgs = yield localVarAxiosParamCreator.listInspectionStandard(parkId, pageSize, page, searchValue, category, repeats, options);
721
716
  const localVarOperationServerIndex = (_a = configuration === null || configuration === void 0 ? void 0 : configuration.serverIndex) !== null && _a !== void 0 ? _a : 0;
722
717
  const localVarOperationServerBasePath = (_c = (_b = operationServerMap['InspectionStandardApi.listInspectionStandard']) === null || _b === void 0 ? void 0 : _b[localVarOperationServerIndex]) === null || _c === void 0 ? void 0 : _c.url;
723
718
  return (axios, basePath) => createRequestFunction(localVarAxiosArgs, globalAxios, BASE_PATH, configuration)(axios, localVarOperationServerBasePath || basePath);
@@ -893,7 +888,7 @@ export const InspectionStandardApiFactory = function (configuration, basePath, a
893
888
  * @throws {RequiredError}
894
889
  */
895
890
  listInspectionStandard(requestParameters, options) {
896
- return localVarFp.listInspectionStandard(requestParameters.parkId, requestParameters.pageSize, requestParameters.page, requestParameters.searchValue, requestParameters.category, requestParameters.repeats, requestParameters.equipmentSystemId, options).then((request) => request(axios, basePath));
891
+ return localVarFp.listInspectionStandard(requestParameters.parkId, requestParameters.pageSize, requestParameters.page, requestParameters.searchValue, requestParameters.category, requestParameters.repeats, options).then((request) => request(axios, basePath));
897
892
  },
898
893
  /**
899
894
  *
@@ -1049,7 +1044,7 @@ export class InspectionStandardApi extends BaseAPI {
1049
1044
  * @memberof InspectionStandardApi
1050
1045
  */
1051
1046
  listInspectionStandard(requestParameters, options) {
1052
- return InspectionStandardApiFp(this.configuration).listInspectionStandard(requestParameters.parkId, requestParameters.pageSize, requestParameters.page, requestParameters.searchValue, requestParameters.category, requestParameters.repeats, requestParameters.equipmentSystemId, options).then((request) => request(this.axios, this.basePath));
1047
+ return InspectionStandardApiFp(this.configuration).listInspectionStandard(requestParameters.parkId, requestParameters.pageSize, requestParameters.page, requestParameters.searchValue, requestParameters.category, requestParameters.repeats, options).then((request) => request(this.axios, this.basePath));
1053
1048
  }
1054
1049
  /**
1055
1050
  *
@@ -35,6 +35,12 @@ export interface GetUserWx200Response {
35
35
  * @memberof GetUserWx200Response
36
36
  */
37
37
  'trailerFields'?: object;
38
+ /**
39
+ *
40
+ * @type {GetUserWx200ResponseLocale}
41
+ * @memberof GetUserWx200Response
42
+ */
43
+ 'locale'?: GetUserWx200ResponseLocale;
38
44
  /**
39
45
  *
40
46
  * @type {string}
@@ -53,12 +59,6 @@ export interface GetUserWx200Response {
53
59
  * @memberof GetUserWx200Response
54
60
  */
55
61
  'outputStream'?: GetUserWx200ResponseOutputStream;
56
- /**
57
- *
58
- * @type {GetUserWx200ResponseLocale}
59
- * @memberof GetUserWx200Response
60
- */
61
- 'locale'?: GetUserWx200ResponseLocale;
62
62
  /**
63
63
  *
64
64
  * @type {number}
@@ -67,16 +67,16 @@ export interface GetUserWx200Response {
67
67
  'bufferSize'?: number;
68
68
  /**
69
69
  *
70
- * @type {number}
70
+ * @type {string}
71
71
  * @memberof GetUserWx200Response
72
72
  */
73
- 'contentLengthLong'?: number;
73
+ 'characterEncoding'?: string;
74
74
  /**
75
75
  *
76
- * @type {string}
76
+ * @type {number}
77
77
  * @memberof GetUserWx200Response
78
78
  */
79
- 'characterEncoding'?: string;
79
+ 'contentLengthLong'?: number;
80
80
  /**
81
81
  *
82
82
  * @type {boolean}
@@ -36,10 +36,10 @@ export interface IPageAccessVO {
36
36
  'records'?: Array<AccessVO>;
37
37
  /**
38
38
  *
39
- * @type {number}
39
+ * @type {boolean}
40
40
  * @memberof IPageAccessVO
41
41
  */
42
- 'pages'?: number;
42
+ 'searchCount'?: boolean;
43
43
  /**
44
44
  *
45
45
  * @type {boolean}
@@ -49,10 +49,10 @@ export interface IPageAccessVO {
49
49
  'hitCount'?: boolean;
50
50
  /**
51
51
  *
52
- * @type {boolean}
52
+ * @type {number}
53
53
  * @memberof IPageAccessVO
54
54
  */
55
- 'searchCount'?: boolean;
55
+ 'pages'?: number;
56
56
  /**
57
57
  *
58
58
  * @type {number}
@@ -35,6 +35,12 @@ export interface GetUserWx200Response {
35
35
  * @memberof GetUserWx200Response
36
36
  */
37
37
  'trailerFields'?: object;
38
+ /**
39
+ *
40
+ * @type {GetUserWx200ResponseLocale}
41
+ * @memberof GetUserWx200Response
42
+ */
43
+ 'locale'?: GetUserWx200ResponseLocale;
38
44
  /**
39
45
  *
40
46
  * @type {string}
@@ -53,12 +59,6 @@ export interface GetUserWx200Response {
53
59
  * @memberof GetUserWx200Response
54
60
  */
55
61
  'outputStream'?: GetUserWx200ResponseOutputStream;
56
- /**
57
- *
58
- * @type {GetUserWx200ResponseLocale}
59
- * @memberof GetUserWx200Response
60
- */
61
- 'locale'?: GetUserWx200ResponseLocale;
62
62
  /**
63
63
  *
64
64
  * @type {number}
@@ -67,16 +67,16 @@ export interface GetUserWx200Response {
67
67
  'bufferSize'?: number;
68
68
  /**
69
69
  *
70
- * @type {number}
70
+ * @type {string}
71
71
  * @memberof GetUserWx200Response
72
72
  */
73
- 'contentLengthLong'?: number;
73
+ 'characterEncoding'?: string;
74
74
  /**
75
75
  *
76
- * @type {string}
76
+ * @type {number}
77
77
  * @memberof GetUserWx200Response
78
78
  */
79
- 'characterEncoding'?: string;
79
+ 'contentLengthLong'?: number;
80
80
  /**
81
81
  *
82
82
  * @type {boolean}
@@ -36,10 +36,10 @@ export interface IPageAccessVO {
36
36
  'records'?: Array<AccessVO>;
37
37
  /**
38
38
  *
39
- * @type {number}
39
+ * @type {boolean}
40
40
  * @memberof IPageAccessVO
41
41
  */
42
- 'pages'?: number;
42
+ 'searchCount'?: boolean;
43
43
  /**
44
44
  *
45
45
  * @type {boolean}
@@ -49,10 +49,10 @@ export interface IPageAccessVO {
49
49
  'hitCount'?: boolean;
50
50
  /**
51
51
  *
52
- * @type {boolean}
52
+ * @type {number}
53
53
  * @memberof IPageAccessVO
54
54
  */
55
- 'searchCount'?: boolean;
55
+ 'pages'?: number;
56
56
  /**
57
57
  *
58
58
  * @type {number}
@@ -44,6 +44,12 @@ export interface GetUserWx200Response {
44
44
  * @memberof GetUserWx200Response
45
45
  */
46
46
  'trailerFields'?: object;
47
+ /**
48
+ *
49
+ * @type {GetUserWx200ResponseLocale}
50
+ * @memberof GetUserWx200Response
51
+ */
52
+ 'locale'?: GetUserWx200ResponseLocale;
47
53
  /**
48
54
  *
49
55
  * @type {string}
@@ -62,12 +68,6 @@ export interface GetUserWx200Response {
62
68
  * @memberof GetUserWx200Response
63
69
  */
64
70
  'outputStream'?: GetUserWx200ResponseOutputStream;
65
- /**
66
- *
67
- * @type {GetUserWx200ResponseLocale}
68
- * @memberof GetUserWx200Response
69
- */
70
- 'locale'?: GetUserWx200ResponseLocale;
71
71
  /**
72
72
  *
73
73
  * @type {number}
@@ -76,16 +76,16 @@ export interface GetUserWx200Response {
76
76
  'bufferSize'?: number;
77
77
  /**
78
78
  *
79
- * @type {number}
79
+ * @type {string}
80
80
  * @memberof GetUserWx200Response
81
81
  */
82
- 'contentLengthLong'?: number;
82
+ 'characterEncoding'?: string;
83
83
  /**
84
84
  *
85
- * @type {string}
85
+ * @type {number}
86
86
  * @memberof GetUserWx200Response
87
87
  */
88
- 'characterEncoding'?: string;
88
+ 'contentLengthLong'?: number;
89
89
  /**
90
90
  *
91
91
  * @type {boolean}
@@ -43,10 +43,10 @@ export interface IPageAccessVO {
43
43
  'records'?: Array<AccessVO>;
44
44
  /**
45
45
  *
46
- * @type {number}
46
+ * @type {boolean}
47
47
  * @memberof IPageAccessVO
48
48
  */
49
- 'pages'?: number;
49
+ 'searchCount'?: boolean;
50
50
  /**
51
51
  *
52
52
  * @type {boolean}
@@ -56,10 +56,10 @@ export interface IPageAccessVO {
56
56
  'hitCount'?: boolean;
57
57
  /**
58
58
  *
59
- * @type {boolean}
59
+ * @type {number}
60
60
  * @memberof IPageAccessVO
61
61
  */
62
- 'searchCount'?: boolean;
62
+ 'pages'?: number;
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": "3.11.13-alpha.62",
3
+ "version": "3.11.13-alpha.63",
4
4
  "description": "OpenAPI client for @gizone/rrs-client",
5
5
  "author": "OpenAPI-Generator Contributors",
6
6
  "repository": {