@gizone/rrs-client 3.11.12-alpha.13 → 3.11.12-alpha.14

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 (36) hide show
  1. package/.openapi-generator/FILES +0 -2
  2. package/apis/calendar-api.ts +70 -4
  3. package/apis/setting-api.ts +70 -4
  4. package/dist/apis/calendar-api.d.ts +33 -4
  5. package/dist/apis/calendar-api.js +62 -0
  6. package/dist/apis/setting-api.d.ts +33 -4
  7. package/dist/apis/setting-api.js +62 -0
  8. package/dist/esm/apis/calendar-api.d.ts +33 -4
  9. package/dist/esm/apis/calendar-api.js +62 -0
  10. package/dist/esm/apis/setting-api.d.ts +33 -4
  11. package/dist/esm/apis/setting-api.js +62 -0
  12. package/dist/esm/models/get-user-wx200-response.d.ts +8 -8
  13. package/dist/esm/models/index.d.ts +0 -2
  14. package/dist/esm/models/index.js +0 -2
  15. package/dist/esm/models/inspection-point-item.d.ts +12 -0
  16. package/dist/esm/models/ipage-access-vo.d.ts +4 -4
  17. package/dist/models/get-user-wx200-response.d.ts +8 -8
  18. package/dist/models/index.d.ts +0 -2
  19. package/dist/models/index.js +0 -2
  20. package/dist/models/inspection-point-item.d.ts +12 -0
  21. package/dist/models/ipage-access-vo.d.ts +4 -4
  22. package/models/get-user-wx200-response.ts +8 -8
  23. package/models/index.ts +0 -2
  24. package/models/inspection-point-item.ts +12 -0
  25. package/models/ipage-access-vo.ts +4 -4
  26. package/package.json +1 -1
  27. package/dist/esm/models/excel-import-upload-to-redis-vo-calendar-export-dto.d.ts +0 -43
  28. package/dist/esm/models/excel-import-upload-to-redis-vo-calendar-export-dto.js +0 -14
  29. package/dist/esm/models/json-result-excel-import-upload-to-redis-vo-calendar-export-dto.d.ts +0 -56
  30. package/dist/esm/models/json-result-excel-import-upload-to-redis-vo-calendar-export-dto.js +0 -14
  31. package/dist/models/excel-import-upload-to-redis-vo-calendar-export-dto.d.ts +0 -43
  32. package/dist/models/excel-import-upload-to-redis-vo-calendar-export-dto.js +0 -15
  33. package/dist/models/json-result-excel-import-upload-to-redis-vo-calendar-export-dto.d.ts +0 -56
  34. package/dist/models/json-result-excel-import-upload-to-redis-vo-calendar-export-dto.js +0 -15
  35. package/models/excel-import-upload-to-redis-vo-calendar-export-dto.ts +0 -51
  36. package/models/json-result-excel-import-upload-to-redis-vo-calendar-export-dto.ts +0 -66
@@ -258,7 +258,6 @@ models/esg-user-statistics-dto.ts
258
258
  models/esgpark-waste-statistics-dto.ts
259
259
  models/excel-import-result-dtocalendar-export-dto.ts
260
260
  models/excel-import-result-dtoequipment-excel-add-dto.ts
261
- models/excel-import-upload-to-redis-vo-calendar-export-dto.ts
262
261
  models/export-energy-meter-record-bo.ts
263
262
  models/export-hire-energy-meter-record-bo.ts
264
263
  models/export-in-park-vehicle-bo.ts
@@ -400,7 +399,6 @@ models/json-result-esg-user-statistics-dto.ts
400
399
  models/json-result-esgpark-waste-statistics-dto.ts
401
400
  models/json-result-excel-import-result-dtocalendar-export-dto.ts
402
401
  models/json-result-excel-import-result-dtoequipment-excel-add-dto.ts
403
- models/json-result-excel-import-upload-to-redis-vo-calendar-export-dto.ts
404
402
  models/json-result-feedback-record-detail-vo.ts
405
403
  models/json-result-feedback-statistics-count-dto.ts
406
404
  models/json-result-feedback-statistics-satisfaction-rating-dto.ts
@@ -30,9 +30,9 @@ import type { JsonResultCalendarEntity } from '../models';
30
30
  // @ts-ignore
31
31
  import type { JsonResultExcelImportResultDTOCalendarExportDto } from '../models';
32
32
  // @ts-ignore
33
- import type { JsonResultExcelImportUploadToRedisVoCalendarExportDto } from '../models';
34
- // @ts-ignore
35
33
  import type { JsonResultListCalendarEntity } from '../models';
34
+ // @ts-ignore
35
+ import type { JsonResultVoid } from '../models';
36
36
  /**
37
37
  * CalendarApi - axios parameter creator
38
38
  * @export
@@ -64,6 +64,40 @@ export const CalendarApiAxiosParamCreator = function (configuration?: Configurat
64
64
 
65
65
 
66
66
 
67
+ setSearchParams(localVarUrlObj, localVarQueryParameter);
68
+ let headersFromBaseOptions = baseOptions && baseOptions.headers ? baseOptions.headers : {};
69
+ localVarRequestOptions.headers = {...localVarHeaderParameter, ...headersFromBaseOptions, ...options.headers};
70
+
71
+ return {
72
+ url: toPathString(localVarUrlObj),
73
+ options: localVarRequestOptions,
74
+ };
75
+ },
76
+ /**
77
+ *
78
+ * @summary 导入-预览
79
+ * @param {*} [options] Override http request option.
80
+ * @throws {RequiredError}
81
+ */
82
+ calendarBatchImportPreView: async (options: RawAxiosRequestConfig = {}): Promise<RequestArgs> => {
83
+ const localVarPath = `/calendar/batchImport/preView`;
84
+ // use dummy base URL string because the URL constructor only accepts absolute URLs.
85
+ const localVarUrlObj = new URL(localVarPath, DUMMY_BASE_URL);
86
+ let baseOptions;
87
+ if (configuration) {
88
+ baseOptions = configuration.baseOptions;
89
+ }
90
+
91
+ const localVarRequestOptions = { method: 'GET', ...baseOptions, ...options};
92
+ const localVarHeaderParameter = {} as any;
93
+ const localVarQueryParameter = {} as any;
94
+
95
+ // authentication tokenScheme required
96
+ // http bearer authentication required
97
+ await setBearerAuthToObject(localVarHeaderParameter, configuration)
98
+
99
+
100
+
67
101
  setSearchParams(localVarUrlObj, localVarQueryParameter);
68
102
  let headersFromBaseOptions = baseOptions && baseOptions.headers ? baseOptions.headers : {};
69
103
  localVarRequestOptions.headers = {...localVarHeaderParameter, ...headersFromBaseOptions, ...options.headers};
@@ -365,6 +399,18 @@ export const CalendarApiFp = function(configuration?: Configuration) {
365
399
  const localVarOperationServerBasePath = operationServerMap['CalendarApi.calendarBatchImportConfirm']?.[localVarOperationServerIndex]?.url;
366
400
  return (axios, basePath) => createRequestFunction(localVarAxiosArgs, globalAxios, BASE_PATH, configuration)(axios, localVarOperationServerBasePath || basePath);
367
401
  },
402
+ /**
403
+ *
404
+ * @summary 导入-预览
405
+ * @param {*} [options] Override http request option.
406
+ * @throws {RequiredError}
407
+ */
408
+ async calendarBatchImportPreView(options?: RawAxiosRequestConfig): Promise<(axios?: AxiosInstance, basePath?: string) => AxiosPromise<JsonResultExcelImportResultDTOCalendarExportDto>> {
409
+ const localVarAxiosArgs = await localVarAxiosParamCreator.calendarBatchImportPreView(options);
410
+ const localVarOperationServerIndex = configuration?.serverIndex ?? 0;
411
+ const localVarOperationServerBasePath = operationServerMap['CalendarApi.calendarBatchImportPreView']?.[localVarOperationServerIndex]?.url;
412
+ return (axios, basePath) => createRequestFunction(localVarAxiosArgs, globalAxios, BASE_PATH, configuration)(axios, localVarOperationServerBasePath || basePath);
413
+ },
368
414
  /**
369
415
  *
370
416
  * @summary 导入-下载模板
@@ -387,7 +433,7 @@ export const CalendarApiFp = function(configuration?: Configuration) {
387
433
  * @param {*} [options] Override http request option.
388
434
  * @throws {RequiredError}
389
435
  */
390
- async calendarBatchImportUpload(parkId: number, file: File, language?: string, options?: RawAxiosRequestConfig): Promise<(axios?: AxiosInstance, basePath?: string) => AxiosPromise<JsonResultExcelImportUploadToRedisVoCalendarExportDto>> {
436
+ async calendarBatchImportUpload(parkId: number, file: File, language?: string, options?: RawAxiosRequestConfig): Promise<(axios?: AxiosInstance, basePath?: string) => AxiosPromise<JsonResultVoid>> {
391
437
  const localVarAxiosArgs = await localVarAxiosParamCreator.calendarBatchImportUpload(parkId, file, language, options);
392
438
  const localVarOperationServerIndex = configuration?.serverIndex ?? 0;
393
439
  const localVarOperationServerBasePath = operationServerMap['CalendarApi.calendarBatchImportUpload']?.[localVarOperationServerIndex]?.url;
@@ -466,6 +512,15 @@ export const CalendarApiFactory = function (configuration?: Configuration, baseP
466
512
  calendarBatchImportConfirm(options?: RawAxiosRequestConfig): AxiosPromise<JsonResultExcelImportResultDTOCalendarExportDto> {
467
513
  return localVarFp.calendarBatchImportConfirm(options).then((request) => request(axios, basePath));
468
514
  },
515
+ /**
516
+ *
517
+ * @summary 导入-预览
518
+ * @param {*} [options] Override http request option.
519
+ * @throws {RequiredError}
520
+ */
521
+ calendarBatchImportPreView(options?: RawAxiosRequestConfig): AxiosPromise<JsonResultExcelImportResultDTOCalendarExportDto> {
522
+ return localVarFp.calendarBatchImportPreView(options).then((request) => request(axios, basePath));
523
+ },
469
524
  /**
470
525
  *
471
526
  * @summary 导入-下载模板
@@ -483,7 +538,7 @@ export const CalendarApiFactory = function (configuration?: Configuration, baseP
483
538
  * @param {*} [options] Override http request option.
484
539
  * @throws {RequiredError}
485
540
  */
486
- calendarBatchImportUpload(requestParameters: CalendarApiCalendarBatchImportUploadRequest, options?: RawAxiosRequestConfig): AxiosPromise<JsonResultExcelImportUploadToRedisVoCalendarExportDto> {
541
+ calendarBatchImportUpload(requestParameters: CalendarApiCalendarBatchImportUploadRequest, options?: RawAxiosRequestConfig): AxiosPromise<JsonResultVoid> {
487
542
  return localVarFp.calendarBatchImportUpload(requestParameters.parkId, requestParameters.file, requestParameters.language, options).then((request) => request(axios, basePath));
488
543
  },
489
544
  /**
@@ -659,6 +714,17 @@ export class CalendarApi extends BaseAPI {
659
714
  return CalendarApiFp(this.configuration).calendarBatchImportConfirm(options).then((request) => request(this.axios, this.basePath));
660
715
  }
661
716
 
717
+ /**
718
+ *
719
+ * @summary 导入-预览
720
+ * @param {*} [options] Override http request option.
721
+ * @throws {RequiredError}
722
+ * @memberof CalendarApi
723
+ */
724
+ public calendarBatchImportPreView(options?: RawAxiosRequestConfig) {
725
+ return CalendarApiFp(this.configuration).calendarBatchImportPreView(options).then((request) => request(this.axios, this.basePath));
726
+ }
727
+
662
728
  /**
663
729
  *
664
730
  * @summary 导入-下载模板
@@ -44,8 +44,6 @@ import type { JsonResultCalendarEntity } from '../models';
44
44
  // @ts-ignore
45
45
  import type { JsonResultExcelImportResultDTOCalendarExportDto } from '../models';
46
46
  // @ts-ignore
47
- import type { JsonResultExcelImportUploadToRedisVoCalendarExportDto } from '../models';
48
- // @ts-ignore
49
47
  import type { JsonResultGizoneAccessSetVO } from '../models';
50
48
  // @ts-ignore
51
49
  import type { JsonResultListCalendarEntity } from '../models';
@@ -54,6 +52,8 @@ import type { JsonResultListWorkOrderPushSettingsEntity } from '../models';
54
52
  // @ts-ignore
55
53
  import type { JsonResultUserSettingsEntity } from '../models';
56
54
  // @ts-ignore
55
+ import type { JsonResultVoid } from '../models';
56
+ // @ts-ignore
57
57
  import type { ParkPushSettingsAddBO } from '../models';
58
58
  // @ts-ignore
59
59
  import type { UserSettingsUpdateBO } from '../models';
@@ -501,6 +501,40 @@ export const SettingApiAxiosParamCreator = function (configuration?: Configurati
501
501
 
502
502
 
503
503
 
504
+ setSearchParams(localVarUrlObj, localVarQueryParameter);
505
+ let headersFromBaseOptions = baseOptions && baseOptions.headers ? baseOptions.headers : {};
506
+ localVarRequestOptions.headers = {...localVarHeaderParameter, ...headersFromBaseOptions, ...options.headers};
507
+
508
+ return {
509
+ url: toPathString(localVarUrlObj),
510
+ options: localVarRequestOptions,
511
+ };
512
+ },
513
+ /**
514
+ *
515
+ * @summary 导入-预览
516
+ * @param {*} [options] Override http request option.
517
+ * @throws {RequiredError}
518
+ */
519
+ calendarBatchImportPreView: async (options: RawAxiosRequestConfig = {}): Promise<RequestArgs> => {
520
+ const localVarPath = `/calendar/batchImport/preView`;
521
+ // use dummy base URL string because the URL constructor only accepts absolute URLs.
522
+ const localVarUrlObj = new URL(localVarPath, DUMMY_BASE_URL);
523
+ let baseOptions;
524
+ if (configuration) {
525
+ baseOptions = configuration.baseOptions;
526
+ }
527
+
528
+ const localVarRequestOptions = { method: 'GET', ...baseOptions, ...options};
529
+ const localVarHeaderParameter = {} as any;
530
+ const localVarQueryParameter = {} as any;
531
+
532
+ // authentication tokenScheme required
533
+ // http bearer authentication required
534
+ await setBearerAuthToObject(localVarHeaderParameter, configuration)
535
+
536
+
537
+
504
538
  setSearchParams(localVarUrlObj, localVarQueryParameter);
505
539
  let headersFromBaseOptions = baseOptions && baseOptions.headers ? baseOptions.headers : {};
506
540
  localVarRequestOptions.headers = {...localVarHeaderParameter, ...headersFromBaseOptions, ...options.headers};
@@ -1305,6 +1339,18 @@ export const SettingApiFp = function(configuration?: Configuration) {
1305
1339
  const localVarOperationServerBasePath = operationServerMap['SettingApi.calendarBatchImportConfirm']?.[localVarOperationServerIndex]?.url;
1306
1340
  return (axios, basePath) => createRequestFunction(localVarAxiosArgs, globalAxios, BASE_PATH, configuration)(axios, localVarOperationServerBasePath || basePath);
1307
1341
  },
1342
+ /**
1343
+ *
1344
+ * @summary 导入-预览
1345
+ * @param {*} [options] Override http request option.
1346
+ * @throws {RequiredError}
1347
+ */
1348
+ async calendarBatchImportPreView(options?: RawAxiosRequestConfig): Promise<(axios?: AxiosInstance, basePath?: string) => AxiosPromise<JsonResultExcelImportResultDTOCalendarExportDto>> {
1349
+ const localVarAxiosArgs = await localVarAxiosParamCreator.calendarBatchImportPreView(options);
1350
+ const localVarOperationServerIndex = configuration?.serverIndex ?? 0;
1351
+ const localVarOperationServerBasePath = operationServerMap['SettingApi.calendarBatchImportPreView']?.[localVarOperationServerIndex]?.url;
1352
+ return (axios, basePath) => createRequestFunction(localVarAxiosArgs, globalAxios, BASE_PATH, configuration)(axios, localVarOperationServerBasePath || basePath);
1353
+ },
1308
1354
  /**
1309
1355
  *
1310
1356
  * @summary 导入-下载模板
@@ -1327,7 +1373,7 @@ export const SettingApiFp = function(configuration?: Configuration) {
1327
1373
  * @param {*} [options] Override http request option.
1328
1374
  * @throws {RequiredError}
1329
1375
  */
1330
- async calendarBatchImportUpload(parkId: number, file: File, language?: string, options?: RawAxiosRequestConfig): Promise<(axios?: AxiosInstance, basePath?: string) => AxiosPromise<JsonResultExcelImportUploadToRedisVoCalendarExportDto>> {
1376
+ async calendarBatchImportUpload(parkId: number, file: File, language?: string, options?: RawAxiosRequestConfig): Promise<(axios?: AxiosInstance, basePath?: string) => AxiosPromise<JsonResultVoid>> {
1331
1377
  const localVarAxiosArgs = await localVarAxiosParamCreator.calendarBatchImportUpload(parkId, file, language, options);
1332
1378
  const localVarOperationServerIndex = configuration?.serverIndex ?? 0;
1333
1379
  const localVarOperationServerBasePath = operationServerMap['SettingApi.calendarBatchImportUpload']?.[localVarOperationServerIndex]?.url;
@@ -1627,6 +1673,15 @@ export const SettingApiFactory = function (configuration?: Configuration, basePa
1627
1673
  calendarBatchImportConfirm(options?: RawAxiosRequestConfig): AxiosPromise<JsonResultExcelImportResultDTOCalendarExportDto> {
1628
1674
  return localVarFp.calendarBatchImportConfirm(options).then((request) => request(axios, basePath));
1629
1675
  },
1676
+ /**
1677
+ *
1678
+ * @summary 导入-预览
1679
+ * @param {*} [options] Override http request option.
1680
+ * @throws {RequiredError}
1681
+ */
1682
+ calendarBatchImportPreView(options?: RawAxiosRequestConfig): AxiosPromise<JsonResultExcelImportResultDTOCalendarExportDto> {
1683
+ return localVarFp.calendarBatchImportPreView(options).then((request) => request(axios, basePath));
1684
+ },
1630
1685
  /**
1631
1686
  *
1632
1687
  * @summary 导入-下载模板
@@ -1644,7 +1699,7 @@ export const SettingApiFactory = function (configuration?: Configuration, basePa
1644
1699
  * @param {*} [options] Override http request option.
1645
1700
  * @throws {RequiredError}
1646
1701
  */
1647
- calendarBatchImportUpload(requestParameters: SettingApiCalendarBatchImportUploadRequest, options?: RawAxiosRequestConfig): AxiosPromise<JsonResultExcelImportUploadToRedisVoCalendarExportDto> {
1702
+ calendarBatchImportUpload(requestParameters: SettingApiCalendarBatchImportUploadRequest, options?: RawAxiosRequestConfig): AxiosPromise<JsonResultVoid> {
1648
1703
  return localVarFp.calendarBatchImportUpload(requestParameters.parkId, requestParameters.file, requestParameters.language, options).then((request) => request(axios, basePath));
1649
1704
  },
1650
1705
  /**
@@ -2338,6 +2393,17 @@ export class SettingApi extends BaseAPI {
2338
2393
  return SettingApiFp(this.configuration).calendarBatchImportConfirm(options).then((request) => request(this.axios, this.basePath));
2339
2394
  }
2340
2395
 
2396
+ /**
2397
+ *
2398
+ * @summary 导入-预览
2399
+ * @param {*} [options] Override http request option.
2400
+ * @throws {RequiredError}
2401
+ * @memberof SettingApi
2402
+ */
2403
+ public calendarBatchImportPreView(options?: RawAxiosRequestConfig) {
2404
+ return SettingApiFp(this.configuration).calendarBatchImportPreView(options).then((request) => request(this.axios, this.basePath));
2405
+ }
2406
+
2341
2407
  /**
2342
2408
  *
2343
2409
  * @summary 导入-下载模板
@@ -16,8 +16,8 @@ import type { CalendarSaveUpdateDto } from '../models';
16
16
  import type { JsonResult } from '../models';
17
17
  import type { JsonResultCalendarEntity } from '../models';
18
18
  import type { JsonResultExcelImportResultDTOCalendarExportDto } from '../models';
19
- import type { JsonResultExcelImportUploadToRedisVoCalendarExportDto } from '../models';
20
19
  import type { JsonResultListCalendarEntity } from '../models';
20
+ import type { JsonResultVoid } from '../models';
21
21
  /**
22
22
  * CalendarApi - axios parameter creator
23
23
  * @export
@@ -30,6 +30,13 @@ export declare const CalendarApiAxiosParamCreator: (configuration?: Configuratio
30
30
  * @throws {RequiredError}
31
31
  */
32
32
  calendarBatchImportConfirm: (options?: RawAxiosRequestConfig) => Promise<RequestArgs>;
33
+ /**
34
+ *
35
+ * @summary 导入-预览
36
+ * @param {*} [options] Override http request option.
37
+ * @throws {RequiredError}
38
+ */
39
+ calendarBatchImportPreView: (options?: RawAxiosRequestConfig) => Promise<RequestArgs>;
33
40
  /**
34
41
  *
35
42
  * @summary 导入-下载模板
@@ -95,6 +102,13 @@ export declare const CalendarApiFp: (configuration?: Configuration) => {
95
102
  * @throws {RequiredError}
96
103
  */
97
104
  calendarBatchImportConfirm(options?: RawAxiosRequestConfig): Promise<(axios?: AxiosInstance, basePath?: string) => AxiosPromise<JsonResultExcelImportResultDTOCalendarExportDto>>;
105
+ /**
106
+ *
107
+ * @summary 导入-预览
108
+ * @param {*} [options] Override http request option.
109
+ * @throws {RequiredError}
110
+ */
111
+ calendarBatchImportPreView(options?: RawAxiosRequestConfig): Promise<(axios?: AxiosInstance, basePath?: string) => AxiosPromise<JsonResultExcelImportResultDTOCalendarExportDto>>;
98
112
  /**
99
113
  *
100
114
  * @summary 导入-下载模板
@@ -112,7 +126,7 @@ export declare const CalendarApiFp: (configuration?: Configuration) => {
112
126
  * @param {*} [options] Override http request option.
113
127
  * @throws {RequiredError}
114
128
  */
115
- calendarBatchImportUpload(parkId: number, file: File, language?: string, options?: RawAxiosRequestConfig): Promise<(axios?: AxiosInstance, basePath?: string) => AxiosPromise<JsonResultExcelImportUploadToRedisVoCalendarExportDto>>;
129
+ calendarBatchImportUpload(parkId: number, file: File, language?: string, options?: RawAxiosRequestConfig): Promise<(axios?: AxiosInstance, basePath?: string) => AxiosPromise<JsonResultVoid>>;
116
130
  /**
117
131
  *
118
132
  * @summary 导出
@@ -160,6 +174,13 @@ export declare const CalendarApiFactory: (configuration?: Configuration, basePat
160
174
  * @throws {RequiredError}
161
175
  */
162
176
  calendarBatchImportConfirm(options?: RawAxiosRequestConfig): AxiosPromise<JsonResultExcelImportResultDTOCalendarExportDto>;
177
+ /**
178
+ *
179
+ * @summary 导入-预览
180
+ * @param {*} [options] Override http request option.
181
+ * @throws {RequiredError}
182
+ */
183
+ calendarBatchImportPreView(options?: RawAxiosRequestConfig): AxiosPromise<JsonResultExcelImportResultDTOCalendarExportDto>;
163
184
  /**
164
185
  *
165
186
  * @summary 导入-下载模板
@@ -175,7 +196,7 @@ export declare const CalendarApiFactory: (configuration?: Configuration, basePat
175
196
  * @param {*} [options] Override http request option.
176
197
  * @throws {RequiredError}
177
198
  */
178
- calendarBatchImportUpload(requestParameters: CalendarApiCalendarBatchImportUploadRequest, options?: RawAxiosRequestConfig): AxiosPromise<JsonResultExcelImportUploadToRedisVoCalendarExportDto>;
199
+ calendarBatchImportUpload(requestParameters: CalendarApiCalendarBatchImportUploadRequest, options?: RawAxiosRequestConfig): AxiosPromise<JsonResultVoid>;
179
200
  /**
180
201
  *
181
202
  * @summary 导出
@@ -326,6 +347,14 @@ export declare class CalendarApi extends BaseAPI {
326
347
  * @memberof CalendarApi
327
348
  */
328
349
  calendarBatchImportConfirm(options?: RawAxiosRequestConfig): Promise<import("axios").AxiosResponse<JsonResultExcelImportResultDTOCalendarExportDto, any>>;
350
+ /**
351
+ *
352
+ * @summary 导入-预览
353
+ * @param {*} [options] Override http request option.
354
+ * @throws {RequiredError}
355
+ * @memberof CalendarApi
356
+ */
357
+ calendarBatchImportPreView(options?: RawAxiosRequestConfig): Promise<import("axios").AxiosResponse<JsonResultExcelImportResultDTOCalendarExportDto, any>>;
329
358
  /**
330
359
  *
331
360
  * @summary 导入-下载模板
@@ -343,7 +372,7 @@ export declare class CalendarApi extends BaseAPI {
343
372
  * @throws {RequiredError}
344
373
  * @memberof CalendarApi
345
374
  */
346
- calendarBatchImportUpload(requestParameters: CalendarApiCalendarBatchImportUploadRequest, options?: RawAxiosRequestConfig): Promise<import("axios").AxiosResponse<JsonResultExcelImportUploadToRedisVoCalendarExportDto, any>>;
375
+ calendarBatchImportUpload(requestParameters: CalendarApiCalendarBatchImportUploadRequest, options?: RawAxiosRequestConfig): Promise<import("axios").AxiosResponse<JsonResultVoid, any>>;
347
376
  /**
348
377
  *
349
378
  * @summary 导出
@@ -63,6 +63,34 @@ const CalendarApiAxiosParamCreator = function (configuration) {
63
63
  options: localVarRequestOptions,
64
64
  };
65
65
  }),
66
+ /**
67
+ *
68
+ * @summary 导入-预览
69
+ * @param {*} [options] Override http request option.
70
+ * @throws {RequiredError}
71
+ */
72
+ calendarBatchImportPreView: (...args_1) => __awaiter(this, [...args_1], void 0, function* (options = {}) {
73
+ const localVarPath = `/calendar/batchImport/preView`;
74
+ // use dummy base URL string because the URL constructor only accepts absolute URLs.
75
+ const localVarUrlObj = new URL(localVarPath, common_1.DUMMY_BASE_URL);
76
+ let baseOptions;
77
+ if (configuration) {
78
+ baseOptions = configuration.baseOptions;
79
+ }
80
+ const localVarRequestOptions = Object.assign(Object.assign({ method: 'GET' }, baseOptions), options);
81
+ const localVarHeaderParameter = {};
82
+ const localVarQueryParameter = {};
83
+ // authentication tokenScheme required
84
+ // http bearer authentication required
85
+ yield (0, common_1.setBearerAuthToObject)(localVarHeaderParameter, configuration);
86
+ (0, common_1.setSearchParams)(localVarUrlObj, localVarQueryParameter);
87
+ let headersFromBaseOptions = baseOptions && baseOptions.headers ? baseOptions.headers : {};
88
+ localVarRequestOptions.headers = Object.assign(Object.assign(Object.assign({}, localVarHeaderParameter), headersFromBaseOptions), options.headers);
89
+ return {
90
+ url: (0, common_1.toPathString)(localVarUrlObj),
91
+ options: localVarRequestOptions,
92
+ };
93
+ }),
66
94
  /**
67
95
  *
68
96
  * @summary 导入-下载模板
@@ -312,6 +340,21 @@ const CalendarApiFp = function (configuration) {
312
340
  return (axios, basePath) => (0, common_1.createRequestFunction)(localVarAxiosArgs, axios_1.default, base_1.BASE_PATH, configuration)(axios, localVarOperationServerBasePath || basePath);
313
341
  });
314
342
  },
343
+ /**
344
+ *
345
+ * @summary 导入-预览
346
+ * @param {*} [options] Override http request option.
347
+ * @throws {RequiredError}
348
+ */
349
+ calendarBatchImportPreView(options) {
350
+ return __awaiter(this, void 0, void 0, function* () {
351
+ var _a, _b, _c;
352
+ const localVarAxiosArgs = yield localVarAxiosParamCreator.calendarBatchImportPreView(options);
353
+ const localVarOperationServerIndex = (_a = configuration === null || configuration === void 0 ? void 0 : configuration.serverIndex) !== null && _a !== void 0 ? _a : 0;
354
+ const localVarOperationServerBasePath = (_c = (_b = base_1.operationServerMap['CalendarApi.calendarBatchImportPreView']) === null || _b === void 0 ? void 0 : _b[localVarOperationServerIndex]) === null || _c === void 0 ? void 0 : _c.url;
355
+ return (axios, basePath) => (0, common_1.createRequestFunction)(localVarAxiosArgs, axios_1.default, base_1.BASE_PATH, configuration)(axios, localVarOperationServerBasePath || basePath);
356
+ });
357
+ },
315
358
  /**
316
359
  *
317
360
  * @summary 导入-下载模板
@@ -431,6 +474,15 @@ const CalendarApiFactory = function (configuration, basePath, axios) {
431
474
  calendarBatchImportConfirm(options) {
432
475
  return localVarFp.calendarBatchImportConfirm(options).then((request) => request(axios, basePath));
433
476
  },
477
+ /**
478
+ *
479
+ * @summary 导入-预览
480
+ * @param {*} [options] Override http request option.
481
+ * @throws {RequiredError}
482
+ */
483
+ calendarBatchImportPreView(options) {
484
+ return localVarFp.calendarBatchImportPreView(options).then((request) => request(axios, basePath));
485
+ },
434
486
  /**
435
487
  *
436
488
  * @summary 导入-下载模板
@@ -511,6 +563,16 @@ class CalendarApi extends base_1.BaseAPI {
511
563
  calendarBatchImportConfirm(options) {
512
564
  return (0, exports.CalendarApiFp)(this.configuration).calendarBatchImportConfirm(options).then((request) => request(this.axios, this.basePath));
513
565
  }
566
+ /**
567
+ *
568
+ * @summary 导入-预览
569
+ * @param {*} [options] Override http request option.
570
+ * @throws {RequiredError}
571
+ * @memberof CalendarApi
572
+ */
573
+ calendarBatchImportPreView(options) {
574
+ return (0, exports.CalendarApiFp)(this.configuration).calendarBatchImportPreView(options).then((request) => request(this.axios, this.basePath));
575
+ }
514
576
  /**
515
577
  *
516
578
  * @summary 导入-下载模板
@@ -23,11 +23,11 @@ import type { JsonResultAppointmentSetVo } from '../models';
23
23
  import type { JsonResultBoolean } from '../models';
24
24
  import type { JsonResultCalendarEntity } from '../models';
25
25
  import type { JsonResultExcelImportResultDTOCalendarExportDto } from '../models';
26
- import type { JsonResultExcelImportUploadToRedisVoCalendarExportDto } from '../models';
27
26
  import type { JsonResultGizoneAccessSetVO } from '../models';
28
27
  import type { JsonResultListCalendarEntity } from '../models';
29
28
  import type { JsonResultListWorkOrderPushSettingsEntity } from '../models';
30
29
  import type { JsonResultUserSettingsEntity } from '../models';
30
+ import type { JsonResultVoid } from '../models';
31
31
  import type { ParkPushSettingsAddBO } from '../models';
32
32
  import type { UserSettingsUpdateBO } from '../models';
33
33
  import type { WorkOrderPushSettingsVO } from '../models';
@@ -125,6 +125,13 @@ export declare const SettingApiAxiosParamCreator: (configuration?: Configuration
125
125
  * @throws {RequiredError}
126
126
  */
127
127
  calendarBatchImportConfirm: (options?: RawAxiosRequestConfig) => Promise<RequestArgs>;
128
+ /**
129
+ *
130
+ * @summary 导入-预览
131
+ * @param {*} [options] Override http request option.
132
+ * @throws {RequiredError}
133
+ */
134
+ calendarBatchImportPreView: (options?: RawAxiosRequestConfig) => Promise<RequestArgs>;
128
135
  /**
129
136
  *
130
137
  * @summary 导入-下载模板
@@ -348,6 +355,13 @@ export declare const SettingApiFp: (configuration?: Configuration) => {
348
355
  * @throws {RequiredError}
349
356
  */
350
357
  calendarBatchImportConfirm(options?: RawAxiosRequestConfig): Promise<(axios?: AxiosInstance, basePath?: string) => AxiosPromise<JsonResultExcelImportResultDTOCalendarExportDto>>;
358
+ /**
359
+ *
360
+ * @summary 导入-预览
361
+ * @param {*} [options] Override http request option.
362
+ * @throws {RequiredError}
363
+ */
364
+ calendarBatchImportPreView(options?: RawAxiosRequestConfig): Promise<(axios?: AxiosInstance, basePath?: string) => AxiosPromise<JsonResultExcelImportResultDTOCalendarExportDto>>;
351
365
  /**
352
366
  *
353
367
  * @summary 导入-下载模板
@@ -365,7 +379,7 @@ export declare const SettingApiFp: (configuration?: Configuration) => {
365
379
  * @param {*} [options] Override http request option.
366
380
  * @throws {RequiredError}
367
381
  */
368
- calendarBatchImportUpload(parkId: number, file: File, language?: string, options?: RawAxiosRequestConfig): Promise<(axios?: AxiosInstance, basePath?: string) => AxiosPromise<JsonResultExcelImportUploadToRedisVoCalendarExportDto>>;
382
+ calendarBatchImportUpload(parkId: number, file: File, language?: string, options?: RawAxiosRequestConfig): Promise<(axios?: AxiosInstance, basePath?: string) => AxiosPromise<JsonResultVoid>>;
369
383
  /**
370
384
  *
371
385
  * @summary 导出
@@ -569,6 +583,13 @@ export declare const SettingApiFactory: (configuration?: Configuration, basePath
569
583
  * @throws {RequiredError}
570
584
  */
571
585
  calendarBatchImportConfirm(options?: RawAxiosRequestConfig): AxiosPromise<JsonResultExcelImportResultDTOCalendarExportDto>;
586
+ /**
587
+ *
588
+ * @summary 导入-预览
589
+ * @param {*} [options] Override http request option.
590
+ * @throws {RequiredError}
591
+ */
592
+ calendarBatchImportPreView(options?: RawAxiosRequestConfig): AxiosPromise<JsonResultExcelImportResultDTOCalendarExportDto>;
572
593
  /**
573
594
  *
574
595
  * @summary 导入-下载模板
@@ -584,7 +605,7 @@ export declare const SettingApiFactory: (configuration?: Configuration, basePath
584
605
  * @param {*} [options] Override http request option.
585
606
  * @throws {RequiredError}
586
607
  */
587
- calendarBatchImportUpload(requestParameters: SettingApiCalendarBatchImportUploadRequest, options?: RawAxiosRequestConfig): AxiosPromise<JsonResultExcelImportUploadToRedisVoCalendarExportDto>;
608
+ calendarBatchImportUpload(requestParameters: SettingApiCalendarBatchImportUploadRequest, options?: RawAxiosRequestConfig): AxiosPromise<JsonResultVoid>;
588
609
  /**
589
610
  *
590
611
  * @summary 导出
@@ -1180,6 +1201,14 @@ export declare class SettingApi extends BaseAPI {
1180
1201
  * @memberof SettingApi
1181
1202
  */
1182
1203
  calendarBatchImportConfirm(options?: RawAxiosRequestConfig): Promise<import("axios").AxiosResponse<JsonResultExcelImportResultDTOCalendarExportDto, any>>;
1204
+ /**
1205
+ *
1206
+ * @summary 导入-预览
1207
+ * @param {*} [options] Override http request option.
1208
+ * @throws {RequiredError}
1209
+ * @memberof SettingApi
1210
+ */
1211
+ calendarBatchImportPreView(options?: RawAxiosRequestConfig): Promise<import("axios").AxiosResponse<JsonResultExcelImportResultDTOCalendarExportDto, any>>;
1183
1212
  /**
1184
1213
  *
1185
1214
  * @summary 导入-下载模板
@@ -1197,7 +1226,7 @@ export declare class SettingApi extends BaseAPI {
1197
1226
  * @throws {RequiredError}
1198
1227
  * @memberof SettingApi
1199
1228
  */
1200
- calendarBatchImportUpload(requestParameters: SettingApiCalendarBatchImportUploadRequest, options?: RawAxiosRequestConfig): Promise<import("axios").AxiosResponse<JsonResultExcelImportUploadToRedisVoCalendarExportDto, any>>;
1229
+ calendarBatchImportUpload(requestParameters: SettingApiCalendarBatchImportUploadRequest, options?: RawAxiosRequestConfig): Promise<import("axios").AxiosResponse<JsonResultVoid, any>>;
1201
1230
  /**
1202
1231
  *
1203
1232
  * @summary 导出
@@ -404,6 +404,34 @@ const SettingApiAxiosParamCreator = function (configuration) {
404
404
  options: localVarRequestOptions,
405
405
  };
406
406
  }),
407
+ /**
408
+ *
409
+ * @summary 导入-预览
410
+ * @param {*} [options] Override http request option.
411
+ * @throws {RequiredError}
412
+ */
413
+ calendarBatchImportPreView: (...args_1) => __awaiter(this, [...args_1], void 0, function* (options = {}) {
414
+ const localVarPath = `/calendar/batchImport/preView`;
415
+ // use dummy base URL string because the URL constructor only accepts absolute URLs.
416
+ const localVarUrlObj = new URL(localVarPath, common_1.DUMMY_BASE_URL);
417
+ let baseOptions;
418
+ if (configuration) {
419
+ baseOptions = configuration.baseOptions;
420
+ }
421
+ const localVarRequestOptions = Object.assign(Object.assign({ method: 'GET' }, baseOptions), options);
422
+ const localVarHeaderParameter = {};
423
+ const localVarQueryParameter = {};
424
+ // authentication tokenScheme required
425
+ // http bearer authentication required
426
+ yield (0, common_1.setBearerAuthToObject)(localVarHeaderParameter, configuration);
427
+ (0, common_1.setSearchParams)(localVarUrlObj, localVarQueryParameter);
428
+ let headersFromBaseOptions = baseOptions && baseOptions.headers ? baseOptions.headers : {};
429
+ localVarRequestOptions.headers = Object.assign(Object.assign(Object.assign({}, localVarHeaderParameter), headersFromBaseOptions), options.headers);
430
+ return {
431
+ url: (0, common_1.toPathString)(localVarUrlObj),
432
+ options: localVarRequestOptions,
433
+ };
434
+ }),
407
435
  /**
408
436
  *
409
437
  * @summary 导入-下载模板
@@ -1126,6 +1154,21 @@ const SettingApiFp = function (configuration) {
1126
1154
  return (axios, basePath) => (0, common_1.createRequestFunction)(localVarAxiosArgs, axios_1.default, base_1.BASE_PATH, configuration)(axios, localVarOperationServerBasePath || basePath);
1127
1155
  });
1128
1156
  },
1157
+ /**
1158
+ *
1159
+ * @summary 导入-预览
1160
+ * @param {*} [options] Override http request option.
1161
+ * @throws {RequiredError}
1162
+ */
1163
+ calendarBatchImportPreView(options) {
1164
+ return __awaiter(this, void 0, void 0, function* () {
1165
+ var _a, _b, _c;
1166
+ const localVarAxiosArgs = yield localVarAxiosParamCreator.calendarBatchImportPreView(options);
1167
+ const localVarOperationServerIndex = (_a = configuration === null || configuration === void 0 ? void 0 : configuration.serverIndex) !== null && _a !== void 0 ? _a : 0;
1168
+ const localVarOperationServerBasePath = (_c = (_b = base_1.operationServerMap['SettingApi.calendarBatchImportPreView']) === null || _b === void 0 ? void 0 : _b[localVarOperationServerIndex]) === null || _c === void 0 ? void 0 : _c.url;
1169
+ return (axios, basePath) => (0, common_1.createRequestFunction)(localVarAxiosArgs, axios_1.default, base_1.BASE_PATH, configuration)(axios, localVarOperationServerBasePath || basePath);
1170
+ });
1171
+ },
1129
1172
  /**
1130
1173
  *
1131
1174
  * @summary 导入-下载模板
@@ -1493,6 +1536,15 @@ const SettingApiFactory = function (configuration, basePath, axios) {
1493
1536
  calendarBatchImportConfirm(options) {
1494
1537
  return localVarFp.calendarBatchImportConfirm(options).then((request) => request(axios, basePath));
1495
1538
  },
1539
+ /**
1540
+ *
1541
+ * @summary 导入-预览
1542
+ * @param {*} [options] Override http request option.
1543
+ * @throws {RequiredError}
1544
+ */
1545
+ calendarBatchImportPreView(options) {
1546
+ return localVarFp.calendarBatchImportPreView(options).then((request) => request(axios, basePath));
1547
+ },
1496
1548
  /**
1497
1549
  *
1498
1550
  * @summary 导入-下载模板
@@ -1773,6 +1825,16 @@ class SettingApi extends base_1.BaseAPI {
1773
1825
  calendarBatchImportConfirm(options) {
1774
1826
  return (0, exports.SettingApiFp)(this.configuration).calendarBatchImportConfirm(options).then((request) => request(this.axios, this.basePath));
1775
1827
  }
1828
+ /**
1829
+ *
1830
+ * @summary 导入-预览
1831
+ * @param {*} [options] Override http request option.
1832
+ * @throws {RequiredError}
1833
+ * @memberof SettingApi
1834
+ */
1835
+ calendarBatchImportPreView(options) {
1836
+ return (0, exports.SettingApiFp)(this.configuration).calendarBatchImportPreView(options).then((request) => request(this.axios, this.basePath));
1837
+ }
1776
1838
  /**
1777
1839
  *
1778
1840
  * @summary 导入-下载模板