eehitus-my-task-list-ui 1.1.4 → 1.2.0
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/dist/index.cjs.js +1 -74
- package/dist/index.cjs.js.LICENSE.txt +0 -87
- package/dist/index.esm.js +1 -74
- package/dist/index.esm.js.LICENSE.txt +0 -87
- package/dist/index.umd.js +1 -74
- package/dist/index.umd.js.LICENSE.txt +0 -87
- package/dist/l10n/eehitus-my-task-list-ui-combined_translations_et.json +1 -1
- package/dist/types/App.d.ts +1 -1
- package/dist/types/components/common/classificators/DocumentStates.d.ts +1 -5
- package/dist/types/components/common/constants/Constants.d.ts +6 -93
- package/dist/types/components/common/stateServices/DocumentStateService.d.ts +3 -5
- package/dist/types/components/common/stateServices/ProceedingStateService.d.ts +4 -8
- package/dist/types/components/services/buildings_actual_data_api_client/common.d.ts +1 -1
- package/dist/types/components/services/classifier_api_client/common.d.ts +1 -1
- package/dist/types/components/services/my_views_api_client/api.d.ts +65 -65
- package/dist/types/components/services/my_views_api_client/base.d.ts +14 -2
- package/dist/types/components/services/my_views_api_client/configuration.d.ts +8 -0
- package/dist/types/components/util/link-utils.d.ts +0 -2
- package/dist/types/components/util/redirect-utils.d.ts +0 -2
- package/dist/types/indexExport.d.ts +0 -1
- package/dist/types/redux/reducers/documentsSlice.d.ts +0 -10
- package/dist/types/redux/reducers/proceedingsSlice.d.ts +0 -16
- package/dist/types/redux/reducers/rootReducer.d.ts +0 -1
- package/package.json +4 -4
- package/dist/types/components/DemoPlannings.d.ts +0 -3
- package/dist/types/components/common/components/accordionSelect/AccordionSelect.d.ts +0 -15
- package/dist/types/components/common/components/icons/EhrIcon.d.ts +0 -3
- package/dist/types/components/common/components/modalWrapper/ModalWrapper.d.ts +0 -27
- package/dist/types/components/common/components/pageTitle/PageTitle.d.ts +0 -6
- package/dist/types/components/common/components/tediTable/TediTable.d.ts +0 -4
- package/dist/types/components/common/components/tediTable/tediTableHelpers.d.ts +0 -3
- package/dist/types/components/common/constants/planningDotyConsts.d.ts +0 -3
- package/dist/types/components/page/myPlannings/MyPlanningsPage.d.ts +0 -9
- package/dist/types/components/page/myPlannings/components/AddNewPlanningButton.d.ts +0 -3
- package/dist/types/components/page/myPlannings/components/PlanningsCompletedSection.d.ts +0 -3
- package/dist/types/components/page/myPlannings/components/PlanningsInstitutionSection.d.ts +0 -3
- package/dist/types/components/page/myPlannings/components/PlanningsOngoingSection.d.ts +0 -3
- package/dist/types/components/page/myPlannings/components/PlanningsProceedingsSection.d.ts +0 -3
- package/dist/types/components/page/myPlannings/components/documentsTable/PlanningsDocumentsTable.d.ts +0 -10
- package/dist/types/components/page/myPlannings/components/documentsTable/planningsDocTableHelpers.d.ts +0 -6
- package/dist/types/components/page/myPlannings/components/proceedingsTable/PlanningsProceedingsTable.d.ts +0 -3
- package/dist/types/components/page/myPlannings/components/proceedingsTable/planningsProcTableHelpers.d.ts +0 -6
- package/dist/types/contexts/NavigationContext.d.ts +0 -21
- package/dist/types/redux/reducers/myPlannings/myPlanningsSlice.d.ts +0 -23
- package/dist/types/redux/reducers/myPlannings/planningThunks/getAllPlanningsData.d.ts +0 -14
- package/dist/types/redux/reducers/myPlannings/planningThunks/getFinishedDocuments.d.ts +0 -15
- package/dist/types/redux/reducers/myPlannings/planningThunks/getIncomingDocuments.d.ts +0 -15
- package/dist/types/redux/reducers/myPlannings/planningThunks/getProceedings.d.ts +0 -15
- package/dist/types/redux/reducers/myPlannings/planningThunks/getWorkingDocuments.d.ts +0 -15
- package/dist/types/redux/reducers/myPlannings/types.d.ts +0 -31
|
@@ -10,7 +10,7 @@
|
|
|
10
10
|
* Do not edit the class manually.
|
|
11
11
|
*/
|
|
12
12
|
import type { Configuration } from './configuration';
|
|
13
|
-
import type { AxiosPromise, AxiosInstance,
|
|
13
|
+
import type { AxiosPromise, AxiosInstance, RawAxiosRequestConfig } from 'axios';
|
|
14
14
|
import globalAxios from 'axios';
|
|
15
15
|
import type { RequestArgs } from './base';
|
|
16
16
|
import { BaseAPI } from './base';
|
|
@@ -1229,14 +1229,14 @@ export declare const BaseMyDocumentsApiAxiosParamCreator: (configuration?: Confi
|
|
|
1229
1229
|
* @param {*} [options] Override http request option.
|
|
1230
1230
|
* @throws {RequiredError}
|
|
1231
1231
|
*/
|
|
1232
|
-
|
|
1232
|
+
findIncomingBaseDocuments: (documentBaseQueryDto: DocumentBaseQueryDto, options?: RawAxiosRequestConfig) => Promise<RequestArgs>;
|
|
1233
1233
|
/**
|
|
1234
1234
|
*
|
|
1235
1235
|
* @param {DocumentBaseQueryDto} documentBaseQueryDto
|
|
1236
1236
|
* @param {*} [options] Override http request option.
|
|
1237
1237
|
* @throws {RequiredError}
|
|
1238
1238
|
*/
|
|
1239
|
-
|
|
1239
|
+
findWorkingDocuments: (documentBaseQueryDto: DocumentBaseQueryDto, options?: RawAxiosRequestConfig) => Promise<RequestArgs>;
|
|
1240
1240
|
};
|
|
1241
1241
|
/**
|
|
1242
1242
|
* BaseMyDocumentsApi - functional programming interface
|
|
@@ -1249,14 +1249,14 @@ export declare const BaseMyDocumentsApiFp: (configuration?: Configuration) => {
|
|
|
1249
1249
|
* @param {*} [options] Override http request option.
|
|
1250
1250
|
* @throws {RequiredError}
|
|
1251
1251
|
*/
|
|
1252
|
-
|
|
1252
|
+
findIncomingBaseDocuments(documentBaseQueryDto: DocumentBaseQueryDto, options?: RawAxiosRequestConfig): Promise<(axios?: AxiosInstance, basePath?: string) => AxiosPromise<Array<BaseMyDocument>>>;
|
|
1253
1253
|
/**
|
|
1254
1254
|
*
|
|
1255
1255
|
* @param {DocumentBaseQueryDto} documentBaseQueryDto
|
|
1256
1256
|
* @param {*} [options] Override http request option.
|
|
1257
1257
|
* @throws {RequiredError}
|
|
1258
1258
|
*/
|
|
1259
|
-
|
|
1259
|
+
findWorkingDocuments(documentBaseQueryDto: DocumentBaseQueryDto, options?: RawAxiosRequestConfig): Promise<(axios?: AxiosInstance, basePath?: string) => AxiosPromise<Array<BaseMyDocument>>>;
|
|
1260
1260
|
};
|
|
1261
1261
|
/**
|
|
1262
1262
|
* BaseMyDocumentsApi - factory interface
|
|
@@ -1269,14 +1269,14 @@ export declare const BaseMyDocumentsApiFactory: (configuration?: Configuration,
|
|
|
1269
1269
|
* @param {*} [options] Override http request option.
|
|
1270
1270
|
* @throws {RequiredError}
|
|
1271
1271
|
*/
|
|
1272
|
-
|
|
1272
|
+
findIncomingBaseDocuments(documentBaseQueryDto: DocumentBaseQueryDto, options?: RawAxiosRequestConfig): AxiosPromise<Array<BaseMyDocument>>;
|
|
1273
1273
|
/**
|
|
1274
1274
|
*
|
|
1275
1275
|
* @param {DocumentBaseQueryDto} documentBaseQueryDto
|
|
1276
1276
|
* @param {*} [options] Override http request option.
|
|
1277
1277
|
* @throws {RequiredError}
|
|
1278
1278
|
*/
|
|
1279
|
-
|
|
1279
|
+
findWorkingDocuments(documentBaseQueryDto: DocumentBaseQueryDto, options?: RawAxiosRequestConfig): AxiosPromise<Array<BaseMyDocument>>;
|
|
1280
1280
|
};
|
|
1281
1281
|
/**
|
|
1282
1282
|
* BaseMyDocumentsApi - object-oriented interface
|
|
@@ -1292,7 +1292,7 @@ export declare class BaseMyDocumentsApi extends BaseAPI {
|
|
|
1292
1292
|
* @throws {RequiredError}
|
|
1293
1293
|
* @memberof BaseMyDocumentsApi
|
|
1294
1294
|
*/
|
|
1295
|
-
|
|
1295
|
+
findIncomingBaseDocuments(documentBaseQueryDto: DocumentBaseQueryDto, options?: RawAxiosRequestConfig): Promise<globalAxios.AxiosResponse<BaseMyDocument[], any>>;
|
|
1296
1296
|
/**
|
|
1297
1297
|
*
|
|
1298
1298
|
* @param {DocumentBaseQueryDto} documentBaseQueryDto
|
|
@@ -1300,7 +1300,7 @@ export declare class BaseMyDocumentsApi extends BaseAPI {
|
|
|
1300
1300
|
* @throws {RequiredError}
|
|
1301
1301
|
* @memberof BaseMyDocumentsApi
|
|
1302
1302
|
*/
|
|
1303
|
-
|
|
1303
|
+
findWorkingDocuments(documentBaseQueryDto: DocumentBaseQueryDto, options?: RawAxiosRequestConfig): Promise<globalAxios.AxiosResponse<BaseMyDocument[], any>>;
|
|
1304
1304
|
}
|
|
1305
1305
|
/**
|
|
1306
1306
|
* DetailSearchesApi - axios parameter creator
|
|
@@ -1313,21 +1313,21 @@ export declare const DetailSearchesApiAxiosParamCreator: (configuration?: Config
|
|
|
1313
1313
|
* @param {*} [options] Override http request option.
|
|
1314
1314
|
* @throws {RequiredError}
|
|
1315
1315
|
*/
|
|
1316
|
-
searchDetailBuildings: (buildingSearchDto: BuildingSearchDto, options?:
|
|
1316
|
+
searchDetailBuildings: (buildingSearchDto: BuildingSearchDto, options?: RawAxiosRequestConfig) => Promise<RequestArgs>;
|
|
1317
1317
|
/**
|
|
1318
1318
|
*
|
|
1319
1319
|
* @param {DocumentSearchDto} documentSearchDto
|
|
1320
1320
|
* @param {*} [options] Override http request option.
|
|
1321
1321
|
* @throws {RequiredError}
|
|
1322
1322
|
*/
|
|
1323
|
-
searchDetailDocuments: (documentSearchDto: DocumentSearchDto, options?:
|
|
1323
|
+
searchDetailDocuments: (documentSearchDto: DocumentSearchDto, options?: RawAxiosRequestConfig) => Promise<RequestArgs>;
|
|
1324
1324
|
/**
|
|
1325
1325
|
*
|
|
1326
1326
|
* @param {ProceedingSearchDto} proceedingSearchDto
|
|
1327
1327
|
* @param {*} [options] Override http request option.
|
|
1328
1328
|
* @throws {RequiredError}
|
|
1329
1329
|
*/
|
|
1330
|
-
searchDetailProceedings: (proceedingSearchDto: ProceedingSearchDto, options?:
|
|
1330
|
+
searchDetailProceedings: (proceedingSearchDto: ProceedingSearchDto, options?: RawAxiosRequestConfig) => Promise<RequestArgs>;
|
|
1331
1331
|
};
|
|
1332
1332
|
/**
|
|
1333
1333
|
* DetailSearchesApi - functional programming interface
|
|
@@ -1340,21 +1340,21 @@ export declare const DetailSearchesApiFp: (configuration?: Configuration) => {
|
|
|
1340
1340
|
* @param {*} [options] Override http request option.
|
|
1341
1341
|
* @throws {RequiredError}
|
|
1342
1342
|
*/
|
|
1343
|
-
searchDetailBuildings(buildingSearchDto: BuildingSearchDto, options?:
|
|
1343
|
+
searchDetailBuildings(buildingSearchDto: BuildingSearchDto, options?: RawAxiosRequestConfig): Promise<(axios?: AxiosInstance, basePath?: string) => AxiosPromise<Array<BuildingDetail>>>;
|
|
1344
1344
|
/**
|
|
1345
1345
|
*
|
|
1346
1346
|
* @param {DocumentSearchDto} documentSearchDto
|
|
1347
1347
|
* @param {*} [options] Override http request option.
|
|
1348
1348
|
* @throws {RequiredError}
|
|
1349
1349
|
*/
|
|
1350
|
-
searchDetailDocuments(documentSearchDto: DocumentSearchDto, options?:
|
|
1350
|
+
searchDetailDocuments(documentSearchDto: DocumentSearchDto, options?: RawAxiosRequestConfig): Promise<(axios?: AxiosInstance, basePath?: string) => AxiosPromise<Array<DocDetail>>>;
|
|
1351
1351
|
/**
|
|
1352
1352
|
*
|
|
1353
1353
|
* @param {ProceedingSearchDto} proceedingSearchDto
|
|
1354
1354
|
* @param {*} [options] Override http request option.
|
|
1355
1355
|
* @throws {RequiredError}
|
|
1356
1356
|
*/
|
|
1357
|
-
searchDetailProceedings(proceedingSearchDto: ProceedingSearchDto, options?:
|
|
1357
|
+
searchDetailProceedings(proceedingSearchDto: ProceedingSearchDto, options?: RawAxiosRequestConfig): Promise<(axios?: AxiosInstance, basePath?: string) => AxiosPromise<Array<ProceedingDetail>>>;
|
|
1358
1358
|
};
|
|
1359
1359
|
/**
|
|
1360
1360
|
* DetailSearchesApi - factory interface
|
|
@@ -1367,21 +1367,21 @@ export declare const DetailSearchesApiFactory: (configuration?: Configuration, b
|
|
|
1367
1367
|
* @param {*} [options] Override http request option.
|
|
1368
1368
|
* @throws {RequiredError}
|
|
1369
1369
|
*/
|
|
1370
|
-
searchDetailBuildings(buildingSearchDto: BuildingSearchDto, options?:
|
|
1370
|
+
searchDetailBuildings(buildingSearchDto: BuildingSearchDto, options?: RawAxiosRequestConfig): AxiosPromise<Array<BuildingDetail>>;
|
|
1371
1371
|
/**
|
|
1372
1372
|
*
|
|
1373
1373
|
* @param {DocumentSearchDto} documentSearchDto
|
|
1374
1374
|
* @param {*} [options] Override http request option.
|
|
1375
1375
|
* @throws {RequiredError}
|
|
1376
1376
|
*/
|
|
1377
|
-
searchDetailDocuments(documentSearchDto: DocumentSearchDto, options?:
|
|
1377
|
+
searchDetailDocuments(documentSearchDto: DocumentSearchDto, options?: RawAxiosRequestConfig): AxiosPromise<Array<DocDetail>>;
|
|
1378
1378
|
/**
|
|
1379
1379
|
*
|
|
1380
1380
|
* @param {ProceedingSearchDto} proceedingSearchDto
|
|
1381
1381
|
* @param {*} [options] Override http request option.
|
|
1382
1382
|
* @throws {RequiredError}
|
|
1383
1383
|
*/
|
|
1384
|
-
searchDetailProceedings(proceedingSearchDto: ProceedingSearchDto, options?:
|
|
1384
|
+
searchDetailProceedings(proceedingSearchDto: ProceedingSearchDto, options?: RawAxiosRequestConfig): AxiosPromise<Array<ProceedingDetail>>;
|
|
1385
1385
|
};
|
|
1386
1386
|
/**
|
|
1387
1387
|
* DetailSearchesApi - object-oriented interface
|
|
@@ -1397,7 +1397,7 @@ export declare class DetailSearchesApi extends BaseAPI {
|
|
|
1397
1397
|
* @throws {RequiredError}
|
|
1398
1398
|
* @memberof DetailSearchesApi
|
|
1399
1399
|
*/
|
|
1400
|
-
searchDetailBuildings(buildingSearchDto: BuildingSearchDto, options?:
|
|
1400
|
+
searchDetailBuildings(buildingSearchDto: BuildingSearchDto, options?: RawAxiosRequestConfig): Promise<globalAxios.AxiosResponse<BuildingDetail[], any>>;
|
|
1401
1401
|
/**
|
|
1402
1402
|
*
|
|
1403
1403
|
* @param {DocumentSearchDto} documentSearchDto
|
|
@@ -1405,7 +1405,7 @@ export declare class DetailSearchesApi extends BaseAPI {
|
|
|
1405
1405
|
* @throws {RequiredError}
|
|
1406
1406
|
* @memberof DetailSearchesApi
|
|
1407
1407
|
*/
|
|
1408
|
-
searchDetailDocuments(documentSearchDto: DocumentSearchDto, options?:
|
|
1408
|
+
searchDetailDocuments(documentSearchDto: DocumentSearchDto, options?: RawAxiosRequestConfig): Promise<globalAxios.AxiosResponse<DocDetail[], any>>;
|
|
1409
1409
|
/**
|
|
1410
1410
|
*
|
|
1411
1411
|
* @param {ProceedingSearchDto} proceedingSearchDto
|
|
@@ -1413,7 +1413,7 @@ export declare class DetailSearchesApi extends BaseAPI {
|
|
|
1413
1413
|
* @throws {RequiredError}
|
|
1414
1414
|
* @memberof DetailSearchesApi
|
|
1415
1415
|
*/
|
|
1416
|
-
searchDetailProceedings(proceedingSearchDto: ProceedingSearchDto, options?:
|
|
1416
|
+
searchDetailProceedings(proceedingSearchDto: ProceedingSearchDto, options?: RawAxiosRequestConfig): Promise<globalAxios.AxiosResponse<ProceedingDetail[], any>>;
|
|
1417
1417
|
}
|
|
1418
1418
|
/**
|
|
1419
1419
|
* MyDocumentsApi - axios parameter creator
|
|
@@ -1426,40 +1426,40 @@ export declare const MyDocumentsApiAxiosParamCreator: (configuration?: Configura
|
|
|
1426
1426
|
* @param {*} [options] Override http request option.
|
|
1427
1427
|
* @throws {RequiredError}
|
|
1428
1428
|
*/
|
|
1429
|
-
findFinishedDocuments: (documentQueryDto: DocumentQueryDto, options?:
|
|
1429
|
+
findFinishedDocuments: (documentQueryDto: DocumentQueryDto, options?: RawAxiosRequestConfig) => Promise<RequestArgs>;
|
|
1430
1430
|
/**
|
|
1431
1431
|
*
|
|
1432
1432
|
* @param {DocumentQueryDto} documentQueryDto
|
|
1433
1433
|
* @param {*} [options] Override http request option.
|
|
1434
1434
|
* @throws {RequiredError}
|
|
1435
1435
|
*/
|
|
1436
|
-
|
|
1436
|
+
findIncomingDocuments: (documentQueryDto: DocumentQueryDto, options?: RawAxiosRequestConfig) => Promise<RequestArgs>;
|
|
1437
1437
|
/**
|
|
1438
1438
|
*
|
|
1439
1439
|
* @param {DocumentQueryDto} documentQueryDto
|
|
1440
1440
|
* @param {*} [options] Override http request option.
|
|
1441
1441
|
* @throws {RequiredError}
|
|
1442
1442
|
*/
|
|
1443
|
-
findToSignDocuments: (documentQueryDto: DocumentQueryDto, options?:
|
|
1443
|
+
findToSignDocuments: (documentQueryDto: DocumentQueryDto, options?: RawAxiosRequestConfig) => Promise<RequestArgs>;
|
|
1444
1444
|
/**
|
|
1445
1445
|
*
|
|
1446
1446
|
* @param {DocumentQueryDto} documentQueryDto
|
|
1447
1447
|
* @param {*} [options] Override http request option.
|
|
1448
1448
|
* @throws {RequiredError}
|
|
1449
1449
|
*/
|
|
1450
|
-
|
|
1450
|
+
findWorkingDocuments1: (documentQueryDto: DocumentQueryDto, options?: RawAxiosRequestConfig) => Promise<RequestArgs>;
|
|
1451
1451
|
/**
|
|
1452
1452
|
*
|
|
1453
1453
|
* @param {*} [options] Override http request option.
|
|
1454
1454
|
* @throws {RequiredError}
|
|
1455
1455
|
*/
|
|
1456
|
-
getHealth: (options?:
|
|
1456
|
+
getHealth: (options?: RawAxiosRequestConfig) => Promise<RequestArgs>;
|
|
1457
1457
|
/**
|
|
1458
1458
|
*
|
|
1459
1459
|
* @param {*} [options] Override http request option.
|
|
1460
1460
|
* @throws {RequiredError}
|
|
1461
1461
|
*/
|
|
1462
|
-
versionAlive: (options?:
|
|
1462
|
+
versionAlive: (options?: RawAxiosRequestConfig) => Promise<RequestArgs>;
|
|
1463
1463
|
};
|
|
1464
1464
|
/**
|
|
1465
1465
|
* MyDocumentsApi - functional programming interface
|
|
@@ -1472,40 +1472,40 @@ export declare const MyDocumentsApiFp: (configuration?: Configuration) => {
|
|
|
1472
1472
|
* @param {*} [options] Override http request option.
|
|
1473
1473
|
* @throws {RequiredError}
|
|
1474
1474
|
*/
|
|
1475
|
-
findFinishedDocuments(documentQueryDto: DocumentQueryDto, options?:
|
|
1475
|
+
findFinishedDocuments(documentQueryDto: DocumentQueryDto, options?: RawAxiosRequestConfig): Promise<(axios?: AxiosInstance, basePath?: string) => AxiosPromise<Array<MyDocumentsDto>>>;
|
|
1476
1476
|
/**
|
|
1477
1477
|
*
|
|
1478
1478
|
* @param {DocumentQueryDto} documentQueryDto
|
|
1479
1479
|
* @param {*} [options] Override http request option.
|
|
1480
1480
|
* @throws {RequiredError}
|
|
1481
1481
|
*/
|
|
1482
|
-
|
|
1482
|
+
findIncomingDocuments(documentQueryDto: DocumentQueryDto, options?: RawAxiosRequestConfig): Promise<(axios?: AxiosInstance, basePath?: string) => AxiosPromise<Array<MyDocumentsDto>>>;
|
|
1483
1483
|
/**
|
|
1484
1484
|
*
|
|
1485
1485
|
* @param {DocumentQueryDto} documentQueryDto
|
|
1486
1486
|
* @param {*} [options] Override http request option.
|
|
1487
1487
|
* @throws {RequiredError}
|
|
1488
1488
|
*/
|
|
1489
|
-
findToSignDocuments(documentQueryDto: DocumentQueryDto, options?:
|
|
1489
|
+
findToSignDocuments(documentQueryDto: DocumentQueryDto, options?: RawAxiosRequestConfig): Promise<(axios?: AxiosInstance, basePath?: string) => AxiosPromise<Array<MyDocumentsDto>>>;
|
|
1490
1490
|
/**
|
|
1491
1491
|
*
|
|
1492
1492
|
* @param {DocumentQueryDto} documentQueryDto
|
|
1493
1493
|
* @param {*} [options] Override http request option.
|
|
1494
1494
|
* @throws {RequiredError}
|
|
1495
1495
|
*/
|
|
1496
|
-
|
|
1496
|
+
findWorkingDocuments1(documentQueryDto: DocumentQueryDto, options?: RawAxiosRequestConfig): Promise<(axios?: AxiosInstance, basePath?: string) => AxiosPromise<Array<MyDocumentsDto>>>;
|
|
1497
1497
|
/**
|
|
1498
1498
|
*
|
|
1499
1499
|
* @param {*} [options] Override http request option.
|
|
1500
1500
|
* @throws {RequiredError}
|
|
1501
1501
|
*/
|
|
1502
|
-
getHealth(options?:
|
|
1502
|
+
getHealth(options?: RawAxiosRequestConfig): Promise<(axios?: AxiosInstance, basePath?: string) => AxiosPromise<void>>;
|
|
1503
1503
|
/**
|
|
1504
1504
|
*
|
|
1505
1505
|
* @param {*} [options] Override http request option.
|
|
1506
1506
|
* @throws {RequiredError}
|
|
1507
1507
|
*/
|
|
1508
|
-
versionAlive(options?:
|
|
1508
|
+
versionAlive(options?: RawAxiosRequestConfig): Promise<(axios?: AxiosInstance, basePath?: string) => AxiosPromise<string>>;
|
|
1509
1509
|
};
|
|
1510
1510
|
/**
|
|
1511
1511
|
* MyDocumentsApi - factory interface
|
|
@@ -1518,40 +1518,40 @@ export declare const MyDocumentsApiFactory: (configuration?: Configuration, base
|
|
|
1518
1518
|
* @param {*} [options] Override http request option.
|
|
1519
1519
|
* @throws {RequiredError}
|
|
1520
1520
|
*/
|
|
1521
|
-
findFinishedDocuments(documentQueryDto: DocumentQueryDto, options?:
|
|
1521
|
+
findFinishedDocuments(documentQueryDto: DocumentQueryDto, options?: RawAxiosRequestConfig): AxiosPromise<Array<MyDocumentsDto>>;
|
|
1522
1522
|
/**
|
|
1523
1523
|
*
|
|
1524
1524
|
* @param {DocumentQueryDto} documentQueryDto
|
|
1525
1525
|
* @param {*} [options] Override http request option.
|
|
1526
1526
|
* @throws {RequiredError}
|
|
1527
1527
|
*/
|
|
1528
|
-
|
|
1528
|
+
findIncomingDocuments(documentQueryDto: DocumentQueryDto, options?: RawAxiosRequestConfig): AxiosPromise<Array<MyDocumentsDto>>;
|
|
1529
1529
|
/**
|
|
1530
1530
|
*
|
|
1531
1531
|
* @param {DocumentQueryDto} documentQueryDto
|
|
1532
1532
|
* @param {*} [options] Override http request option.
|
|
1533
1533
|
* @throws {RequiredError}
|
|
1534
1534
|
*/
|
|
1535
|
-
findToSignDocuments(documentQueryDto: DocumentQueryDto, options?:
|
|
1535
|
+
findToSignDocuments(documentQueryDto: DocumentQueryDto, options?: RawAxiosRequestConfig): AxiosPromise<Array<MyDocumentsDto>>;
|
|
1536
1536
|
/**
|
|
1537
1537
|
*
|
|
1538
1538
|
* @param {DocumentQueryDto} documentQueryDto
|
|
1539
1539
|
* @param {*} [options] Override http request option.
|
|
1540
1540
|
* @throws {RequiredError}
|
|
1541
1541
|
*/
|
|
1542
|
-
|
|
1542
|
+
findWorkingDocuments1(documentQueryDto: DocumentQueryDto, options?: RawAxiosRequestConfig): AxiosPromise<Array<MyDocumentsDto>>;
|
|
1543
1543
|
/**
|
|
1544
1544
|
*
|
|
1545
1545
|
* @param {*} [options] Override http request option.
|
|
1546
1546
|
* @throws {RequiredError}
|
|
1547
1547
|
*/
|
|
1548
|
-
getHealth(options?:
|
|
1548
|
+
getHealth(options?: RawAxiosRequestConfig): AxiosPromise<void>;
|
|
1549
1549
|
/**
|
|
1550
1550
|
*
|
|
1551
1551
|
* @param {*} [options] Override http request option.
|
|
1552
1552
|
* @throws {RequiredError}
|
|
1553
1553
|
*/
|
|
1554
|
-
versionAlive(options?:
|
|
1554
|
+
versionAlive(options?: RawAxiosRequestConfig): AxiosPromise<string>;
|
|
1555
1555
|
};
|
|
1556
1556
|
/**
|
|
1557
1557
|
* MyDocumentsApi - object-oriented interface
|
|
@@ -1567,7 +1567,7 @@ export declare class MyDocumentsApi extends BaseAPI {
|
|
|
1567
1567
|
* @throws {RequiredError}
|
|
1568
1568
|
* @memberof MyDocumentsApi
|
|
1569
1569
|
*/
|
|
1570
|
-
findFinishedDocuments(documentQueryDto: DocumentQueryDto, options?:
|
|
1570
|
+
findFinishedDocuments(documentQueryDto: DocumentQueryDto, options?: RawAxiosRequestConfig): Promise<globalAxios.AxiosResponse<MyDocumentsDto[], any>>;
|
|
1571
1571
|
/**
|
|
1572
1572
|
*
|
|
1573
1573
|
* @param {DocumentQueryDto} documentQueryDto
|
|
@@ -1575,7 +1575,7 @@ export declare class MyDocumentsApi extends BaseAPI {
|
|
|
1575
1575
|
* @throws {RequiredError}
|
|
1576
1576
|
* @memberof MyDocumentsApi
|
|
1577
1577
|
*/
|
|
1578
|
-
|
|
1578
|
+
findIncomingDocuments(documentQueryDto: DocumentQueryDto, options?: RawAxiosRequestConfig): Promise<globalAxios.AxiosResponse<MyDocumentsDto[], any>>;
|
|
1579
1579
|
/**
|
|
1580
1580
|
*
|
|
1581
1581
|
* @param {DocumentQueryDto} documentQueryDto
|
|
@@ -1583,7 +1583,7 @@ export declare class MyDocumentsApi extends BaseAPI {
|
|
|
1583
1583
|
* @throws {RequiredError}
|
|
1584
1584
|
* @memberof MyDocumentsApi
|
|
1585
1585
|
*/
|
|
1586
|
-
findToSignDocuments(documentQueryDto: DocumentQueryDto, options?:
|
|
1586
|
+
findToSignDocuments(documentQueryDto: DocumentQueryDto, options?: RawAxiosRequestConfig): Promise<globalAxios.AxiosResponse<MyDocumentsDto[], any>>;
|
|
1587
1587
|
/**
|
|
1588
1588
|
*
|
|
1589
1589
|
* @param {DocumentQueryDto} documentQueryDto
|
|
@@ -1591,21 +1591,21 @@ export declare class MyDocumentsApi extends BaseAPI {
|
|
|
1591
1591
|
* @throws {RequiredError}
|
|
1592
1592
|
* @memberof MyDocumentsApi
|
|
1593
1593
|
*/
|
|
1594
|
-
|
|
1594
|
+
findWorkingDocuments1(documentQueryDto: DocumentQueryDto, options?: RawAxiosRequestConfig): Promise<globalAxios.AxiosResponse<MyDocumentsDto[], any>>;
|
|
1595
1595
|
/**
|
|
1596
1596
|
*
|
|
1597
1597
|
* @param {*} [options] Override http request option.
|
|
1598
1598
|
* @throws {RequiredError}
|
|
1599
1599
|
* @memberof MyDocumentsApi
|
|
1600
1600
|
*/
|
|
1601
|
-
getHealth(options?:
|
|
1601
|
+
getHealth(options?: RawAxiosRequestConfig): Promise<globalAxios.AxiosResponse<void, any>>;
|
|
1602
1602
|
/**
|
|
1603
1603
|
*
|
|
1604
1604
|
* @param {*} [options] Override http request option.
|
|
1605
1605
|
* @throws {RequiredError}
|
|
1606
1606
|
* @memberof MyDocumentsApi
|
|
1607
1607
|
*/
|
|
1608
|
-
versionAlive(options?:
|
|
1608
|
+
versionAlive(options?: RawAxiosRequestConfig): Promise<globalAxios.AxiosResponse<string, any>>;
|
|
1609
1609
|
}
|
|
1610
1610
|
/**
|
|
1611
1611
|
* MyOperationsApi - axios parameter creator
|
|
@@ -1618,21 +1618,21 @@ export declare const MyOperationsApiAxiosParamCreator: (configuration?: Configur
|
|
|
1618
1618
|
* @param {*} [options] Override http request option.
|
|
1619
1619
|
* @throws {RequiredError}
|
|
1620
1620
|
*/
|
|
1621
|
-
findOperationInvitations: (operationQueryDto: OperationQueryDto, options?:
|
|
1621
|
+
findOperationInvitations: (operationQueryDto: OperationQueryDto, options?: RawAxiosRequestConfig) => Promise<RequestArgs>;
|
|
1622
1622
|
/**
|
|
1623
1623
|
*
|
|
1624
1624
|
* @param {OperationQueryDto} operationQueryDto
|
|
1625
1625
|
* @param {*} [options] Override http request option.
|
|
1626
1626
|
* @throws {RequiredError}
|
|
1627
1627
|
*/
|
|
1628
|
-
findOperations: (operationQueryDto: OperationQueryDto, options?:
|
|
1628
|
+
findOperations: (operationQueryDto: OperationQueryDto, options?: RawAxiosRequestConfig) => Promise<RequestArgs>;
|
|
1629
1629
|
/**
|
|
1630
1630
|
*
|
|
1631
1631
|
* @param {OperationQueryDto} operationQueryDto
|
|
1632
1632
|
* @param {*} [options] Override http request option.
|
|
1633
1633
|
* @throws {RequiredError}
|
|
1634
1634
|
*/
|
|
1635
|
-
findOperationsToComment: (operationQueryDto: OperationQueryDto, options?:
|
|
1635
|
+
findOperationsToComment: (operationQueryDto: OperationQueryDto, options?: RawAxiosRequestConfig) => Promise<RequestArgs>;
|
|
1636
1636
|
};
|
|
1637
1637
|
/**
|
|
1638
1638
|
* MyOperationsApi - functional programming interface
|
|
@@ -1645,21 +1645,21 @@ export declare const MyOperationsApiFp: (configuration?: Configuration) => {
|
|
|
1645
1645
|
* @param {*} [options] Override http request option.
|
|
1646
1646
|
* @throws {RequiredError}
|
|
1647
1647
|
*/
|
|
1648
|
-
findOperationInvitations(operationQueryDto: OperationQueryDto, options?:
|
|
1648
|
+
findOperationInvitations(operationQueryDto: OperationQueryDto, options?: RawAxiosRequestConfig): Promise<(axios?: AxiosInstance, basePath?: string) => AxiosPromise<Array<MyOperationDto>>>;
|
|
1649
1649
|
/**
|
|
1650
1650
|
*
|
|
1651
1651
|
* @param {OperationQueryDto} operationQueryDto
|
|
1652
1652
|
* @param {*} [options] Override http request option.
|
|
1653
1653
|
* @throws {RequiredError}
|
|
1654
1654
|
*/
|
|
1655
|
-
findOperations(operationQueryDto: OperationQueryDto, options?:
|
|
1655
|
+
findOperations(operationQueryDto: OperationQueryDto, options?: RawAxiosRequestConfig): Promise<(axios?: AxiosInstance, basePath?: string) => AxiosPromise<Array<MyOperationDto>>>;
|
|
1656
1656
|
/**
|
|
1657
1657
|
*
|
|
1658
1658
|
* @param {OperationQueryDto} operationQueryDto
|
|
1659
1659
|
* @param {*} [options] Override http request option.
|
|
1660
1660
|
* @throws {RequiredError}
|
|
1661
1661
|
*/
|
|
1662
|
-
findOperationsToComment(operationQueryDto: OperationQueryDto, options?:
|
|
1662
|
+
findOperationsToComment(operationQueryDto: OperationQueryDto, options?: RawAxiosRequestConfig): Promise<(axios?: AxiosInstance, basePath?: string) => AxiosPromise<Array<MyOperationDto>>>;
|
|
1663
1663
|
};
|
|
1664
1664
|
/**
|
|
1665
1665
|
* MyOperationsApi - factory interface
|
|
@@ -1672,21 +1672,21 @@ export declare const MyOperationsApiFactory: (configuration?: Configuration, bas
|
|
|
1672
1672
|
* @param {*} [options] Override http request option.
|
|
1673
1673
|
* @throws {RequiredError}
|
|
1674
1674
|
*/
|
|
1675
|
-
findOperationInvitations(operationQueryDto: OperationQueryDto, options?:
|
|
1675
|
+
findOperationInvitations(operationQueryDto: OperationQueryDto, options?: RawAxiosRequestConfig): AxiosPromise<Array<MyOperationDto>>;
|
|
1676
1676
|
/**
|
|
1677
1677
|
*
|
|
1678
1678
|
* @param {OperationQueryDto} operationQueryDto
|
|
1679
1679
|
* @param {*} [options] Override http request option.
|
|
1680
1680
|
* @throws {RequiredError}
|
|
1681
1681
|
*/
|
|
1682
|
-
findOperations(operationQueryDto: OperationQueryDto, options?:
|
|
1682
|
+
findOperations(operationQueryDto: OperationQueryDto, options?: RawAxiosRequestConfig): AxiosPromise<Array<MyOperationDto>>;
|
|
1683
1683
|
/**
|
|
1684
1684
|
*
|
|
1685
1685
|
* @param {OperationQueryDto} operationQueryDto
|
|
1686
1686
|
* @param {*} [options] Override http request option.
|
|
1687
1687
|
* @throws {RequiredError}
|
|
1688
1688
|
*/
|
|
1689
|
-
findOperationsToComment(operationQueryDto: OperationQueryDto, options?:
|
|
1689
|
+
findOperationsToComment(operationQueryDto: OperationQueryDto, options?: RawAxiosRequestConfig): AxiosPromise<Array<MyOperationDto>>;
|
|
1690
1690
|
};
|
|
1691
1691
|
/**
|
|
1692
1692
|
* MyOperationsApi - object-oriented interface
|
|
@@ -1702,7 +1702,7 @@ export declare class MyOperationsApi extends BaseAPI {
|
|
|
1702
1702
|
* @throws {RequiredError}
|
|
1703
1703
|
* @memberof MyOperationsApi
|
|
1704
1704
|
*/
|
|
1705
|
-
findOperationInvitations(operationQueryDto: OperationQueryDto, options?:
|
|
1705
|
+
findOperationInvitations(operationQueryDto: OperationQueryDto, options?: RawAxiosRequestConfig): Promise<globalAxios.AxiosResponse<MyOperationDto[], any>>;
|
|
1706
1706
|
/**
|
|
1707
1707
|
*
|
|
1708
1708
|
* @param {OperationQueryDto} operationQueryDto
|
|
@@ -1710,7 +1710,7 @@ export declare class MyOperationsApi extends BaseAPI {
|
|
|
1710
1710
|
* @throws {RequiredError}
|
|
1711
1711
|
* @memberof MyOperationsApi
|
|
1712
1712
|
*/
|
|
1713
|
-
findOperations(operationQueryDto: OperationQueryDto, options?:
|
|
1713
|
+
findOperations(operationQueryDto: OperationQueryDto, options?: RawAxiosRequestConfig): Promise<globalAxios.AxiosResponse<MyOperationDto[], any>>;
|
|
1714
1714
|
/**
|
|
1715
1715
|
*
|
|
1716
1716
|
* @param {OperationQueryDto} operationQueryDto
|
|
@@ -1718,7 +1718,7 @@ export declare class MyOperationsApi extends BaseAPI {
|
|
|
1718
1718
|
* @throws {RequiredError}
|
|
1719
1719
|
* @memberof MyOperationsApi
|
|
1720
1720
|
*/
|
|
1721
|
-
findOperationsToComment(operationQueryDto: OperationQueryDto, options?:
|
|
1721
|
+
findOperationsToComment(operationQueryDto: OperationQueryDto, options?: RawAxiosRequestConfig): Promise<globalAxios.AxiosResponse<MyOperationDto[], any>>;
|
|
1722
1722
|
}
|
|
1723
1723
|
/**
|
|
1724
1724
|
* MyProceedingsApi - axios parameter creator
|
|
@@ -1731,14 +1731,14 @@ export declare const MyProceedingsApiAxiosParamCreator: (configuration?: Configu
|
|
|
1731
1731
|
* @param {*} [options] Override http request option.
|
|
1732
1732
|
* @throws {RequiredError}
|
|
1733
1733
|
*/
|
|
1734
|
-
findAreaProceedings: (proceedingQueryDto: ProceedingQueryDto, options?:
|
|
1734
|
+
findAreaProceedings: (proceedingQueryDto: ProceedingQueryDto, options?: RawAxiosRequestConfig) => Promise<RequestArgs>;
|
|
1735
1735
|
/**
|
|
1736
1736
|
*
|
|
1737
1737
|
* @param {MyProceedingsRequestDto} myProceedingsRequestDto
|
|
1738
1738
|
* @param {*} [options] Override http request option.
|
|
1739
1739
|
* @throws {RequiredError}
|
|
1740
1740
|
*/
|
|
1741
|
-
findProceedings: (myProceedingsRequestDto: MyProceedingsRequestDto, options?:
|
|
1741
|
+
findProceedings: (myProceedingsRequestDto: MyProceedingsRequestDto, options?: RawAxiosRequestConfig) => Promise<RequestArgs>;
|
|
1742
1742
|
};
|
|
1743
1743
|
/**
|
|
1744
1744
|
* MyProceedingsApi - functional programming interface
|
|
@@ -1751,14 +1751,14 @@ export declare const MyProceedingsApiFp: (configuration?: Configuration) => {
|
|
|
1751
1751
|
* @param {*} [options] Override http request option.
|
|
1752
1752
|
* @throws {RequiredError}
|
|
1753
1753
|
*/
|
|
1754
|
-
findAreaProceedings(proceedingQueryDto: ProceedingQueryDto, options?:
|
|
1754
|
+
findAreaProceedings(proceedingQueryDto: ProceedingQueryDto, options?: RawAxiosRequestConfig): Promise<(axios?: AxiosInstance, basePath?: string) => AxiosPromise<Array<MyProceedingsDto>>>;
|
|
1755
1755
|
/**
|
|
1756
1756
|
*
|
|
1757
1757
|
* @param {MyProceedingsRequestDto} myProceedingsRequestDto
|
|
1758
1758
|
* @param {*} [options] Override http request option.
|
|
1759
1759
|
* @throws {RequiredError}
|
|
1760
1760
|
*/
|
|
1761
|
-
findProceedings(myProceedingsRequestDto: MyProceedingsRequestDto, options?:
|
|
1761
|
+
findProceedings(myProceedingsRequestDto: MyProceedingsRequestDto, options?: RawAxiosRequestConfig): Promise<(axios?: AxiosInstance, basePath?: string) => AxiosPromise<Array<MyProceedingsDto>>>;
|
|
1762
1762
|
};
|
|
1763
1763
|
/**
|
|
1764
1764
|
* MyProceedingsApi - factory interface
|
|
@@ -1771,14 +1771,14 @@ export declare const MyProceedingsApiFactory: (configuration?: Configuration, ba
|
|
|
1771
1771
|
* @param {*} [options] Override http request option.
|
|
1772
1772
|
* @throws {RequiredError}
|
|
1773
1773
|
*/
|
|
1774
|
-
findAreaProceedings(proceedingQueryDto: ProceedingQueryDto, options?:
|
|
1774
|
+
findAreaProceedings(proceedingQueryDto: ProceedingQueryDto, options?: RawAxiosRequestConfig): AxiosPromise<Array<MyProceedingsDto>>;
|
|
1775
1775
|
/**
|
|
1776
1776
|
*
|
|
1777
1777
|
* @param {MyProceedingsRequestDto} myProceedingsRequestDto
|
|
1778
1778
|
* @param {*} [options] Override http request option.
|
|
1779
1779
|
* @throws {RequiredError}
|
|
1780
1780
|
*/
|
|
1781
|
-
findProceedings(myProceedingsRequestDto: MyProceedingsRequestDto, options?:
|
|
1781
|
+
findProceedings(myProceedingsRequestDto: MyProceedingsRequestDto, options?: RawAxiosRequestConfig): AxiosPromise<Array<MyProceedingsDto>>;
|
|
1782
1782
|
};
|
|
1783
1783
|
/**
|
|
1784
1784
|
* MyProceedingsApi - object-oriented interface
|
|
@@ -1794,7 +1794,7 @@ export declare class MyProceedingsApi extends BaseAPI {
|
|
|
1794
1794
|
* @throws {RequiredError}
|
|
1795
1795
|
* @memberof MyProceedingsApi
|
|
1796
1796
|
*/
|
|
1797
|
-
findAreaProceedings(proceedingQueryDto: ProceedingQueryDto, options?:
|
|
1797
|
+
findAreaProceedings(proceedingQueryDto: ProceedingQueryDto, options?: RawAxiosRequestConfig): Promise<globalAxios.AxiosResponse<MyProceedingsDto[], any>>;
|
|
1798
1798
|
/**
|
|
1799
1799
|
*
|
|
1800
1800
|
* @param {MyProceedingsRequestDto} myProceedingsRequestDto
|
|
@@ -1802,5 +1802,5 @@ export declare class MyProceedingsApi extends BaseAPI {
|
|
|
1802
1802
|
* @throws {RequiredError}
|
|
1803
1803
|
* @memberof MyProceedingsApi
|
|
1804
1804
|
*/
|
|
1805
|
-
findProceedings(myProceedingsRequestDto: MyProceedingsRequestDto, options?:
|
|
1805
|
+
findProceedings(myProceedingsRequestDto: MyProceedingsRequestDto, options?: RawAxiosRequestConfig): Promise<globalAxios.AxiosResponse<MyProceedingsDto[], any>>;
|
|
1806
1806
|
}
|
|
@@ -10,7 +10,7 @@
|
|
|
10
10
|
* Do not edit the class manually.
|
|
11
11
|
*/
|
|
12
12
|
import type { Configuration } from './configuration';
|
|
13
|
-
import type { AxiosInstance,
|
|
13
|
+
import type { AxiosInstance, RawAxiosRequestConfig } from 'axios';
|
|
14
14
|
export declare const BASE_PATH: string;
|
|
15
15
|
/**
|
|
16
16
|
*
|
|
@@ -29,7 +29,7 @@ export declare const COLLECTION_FORMATS: {
|
|
|
29
29
|
*/
|
|
30
30
|
export interface RequestArgs {
|
|
31
31
|
url: string;
|
|
32
|
-
options:
|
|
32
|
+
options: RawAxiosRequestConfig;
|
|
33
33
|
}
|
|
34
34
|
/**
|
|
35
35
|
*
|
|
@@ -52,3 +52,15 @@ export declare class RequiredError extends Error {
|
|
|
52
52
|
field: string;
|
|
53
53
|
constructor(field: string, msg?: string);
|
|
54
54
|
}
|
|
55
|
+
interface ServerMap {
|
|
56
|
+
[key: string]: {
|
|
57
|
+
url: string;
|
|
58
|
+
description: string;
|
|
59
|
+
}[];
|
|
60
|
+
}
|
|
61
|
+
/**
|
|
62
|
+
*
|
|
63
|
+
* @export
|
|
64
|
+
*/
|
|
65
|
+
export declare const operationServerMap: ServerMap;
|
|
66
|
+
export {};
|
|
@@ -15,6 +15,7 @@ export interface ConfigurationParameters {
|
|
|
15
15
|
password?: string;
|
|
16
16
|
accessToken?: string | Promise<string> | ((name?: string, scopes?: string[]) => string) | ((name?: string, scopes?: string[]) => Promise<string>);
|
|
17
17
|
basePath?: string;
|
|
18
|
+
serverIndex?: number;
|
|
18
19
|
baseOptions?: any;
|
|
19
20
|
formDataCtor?: new () => any;
|
|
20
21
|
}
|
|
@@ -53,6 +54,13 @@ export declare class Configuration {
|
|
|
53
54
|
* @memberof Configuration
|
|
54
55
|
*/
|
|
55
56
|
basePath?: string;
|
|
57
|
+
/**
|
|
58
|
+
* override server index
|
|
59
|
+
*
|
|
60
|
+
* @type {number}
|
|
61
|
+
* @memberof Configuration
|
|
62
|
+
*/
|
|
63
|
+
serverIndex?: number;
|
|
56
64
|
/**
|
|
57
65
|
* base options for axios calls
|
|
58
66
|
*
|
|
@@ -1,14 +1,12 @@
|
|
|
1
1
|
export declare enum RedirectType {
|
|
2
2
|
Document = "DOCUMENT",
|
|
3
3
|
Proceeding = "PROCEEDING",
|
|
4
|
-
PlanningProceeding = "PLANNING_PROCEEDING",
|
|
5
4
|
AdminProceeding = "ADMIN_PROCEEDING",
|
|
6
5
|
AdminOperation = "ADMIN_OPERATION",
|
|
7
6
|
ProceedingDecision = "PROCEEDING_DECISION",
|
|
8
7
|
Operation = "OPERATION",
|
|
9
8
|
MyDocuments = "MY_DOCUMENTS",
|
|
10
9
|
MyProceedings = "MY_PROCEEDINGS",
|
|
11
|
-
MyPlannings = "MY_PLANNINGS",
|
|
12
10
|
MyAdministrativeProceedings = "MY_ADMIN_PROCEEDINGS",
|
|
13
11
|
Building = "BUILDING",
|
|
14
12
|
NewEnergy = "NEW_ENERGY",
|
|
@@ -1,13 +1,11 @@
|
|
|
1
1
|
export declare enum RedirectType {
|
|
2
2
|
Document = "DOCUMENT",
|
|
3
3
|
Proceeding = "PROCEEDING",
|
|
4
|
-
PlanningProceeding = "PLANNING_PROCEEDING",
|
|
5
4
|
AdminProceeding = "ADMIN_PROCEEDING",
|
|
6
5
|
ProceedingDecision = "PROCEEDING_DECISION",
|
|
7
6
|
Operation = "OPERATION",
|
|
8
7
|
MyDocuments = "MY_DOCUMENTS",
|
|
9
8
|
MyProceedings = "MY_PROCEEDINGS",
|
|
10
|
-
MyPlannings = "MY_PLANNINGS",
|
|
11
9
|
MyAdministrativeProceedings = "MY_ADMIN_PROCEEDINGS",
|
|
12
10
|
Building = "BUILDING",
|
|
13
11
|
NewEnergy = "NEW_ENERGY",
|
|
@@ -1,6 +1,5 @@
|
|
|
1
1
|
import rootReducer from './redux/reducers/rootReducer';
|
|
2
2
|
export { default as MyAdministrativeProceedings } from './components/page/myAdministrativeProceedings/MyAdministrativeProceedings';
|
|
3
|
-
export { default as MyPlanningsPage } from './components/page/myPlannings/MyPlanningsPage';
|
|
4
3
|
export { default as MyDocuments } from './components/page/mydocuments/mydocuments';
|
|
5
4
|
export { default as MyProceedings } from './components/page/myproceedings/myproceedings';
|
|
6
5
|
export { default as MyApprovals } from './components/page/myapprovals/myapprovals';
|
|
@@ -1,16 +1,6 @@
|
|
|
1
1
|
import { Classifier } from '../../components/services/document_api_client';
|
|
2
2
|
import { BaseMyDocument } from '../../components/services/my_views_api_client';
|
|
3
3
|
import { DocumentsState } from './documentsState';
|
|
4
|
-
export declare const workingDocumentsSelector: ((state: any) => any) & import("reselect").OutputSelectorFields<(args_0: any) => any, {
|
|
5
|
-
clearCache: () => void;
|
|
6
|
-
}> & {
|
|
7
|
-
clearCache: () => void;
|
|
8
|
-
};
|
|
9
|
-
export declare const finishedDocumentsSelector: ((state: any) => any) & import("reselect").OutputSelectorFields<(args_0: any) => any, {
|
|
10
|
-
clearCache: () => void;
|
|
11
|
-
}> & {
|
|
12
|
-
clearCache: () => void;
|
|
13
|
-
};
|
|
14
4
|
export declare const workingDocumentsLoaded: import("@reduxjs/toolkit").ActionCreatorWithPayload<BaseMyDocument[], "documents/workingDocumentsLoaded">, signingDocumentsLoaded: import("@reduxjs/toolkit").ActionCreatorWithPayload<BaseMyDocument[], "documents/signingDocumentsLoaded">, finishedDocumentsLoaded: import("@reduxjs/toolkit").ActionCreatorWithPayload<BaseMyDocument[], "documents/finishedDocumentsLoaded">, deleteDocument: import("@reduxjs/toolkit").ActionCreatorWithPayload<string, "documents/deleteDocument">, allowedDocumentTypesLoaded: import("@reduxjs/toolkit").ActionCreatorWithPayload<Classifier[], "documents/allowedDocumentTypesLoaded">;
|
|
15
5
|
declare const _default: import("@reduxjs/toolkit").Reducer<DocumentsState>;
|
|
16
6
|
export default _default;
|