eehitus-my-task-list-ui 0.6.5
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
- package/README.md +41 -0
- package/dist/index.cjs.js +2 -0
- package/dist/index.cjs.js.LICENSE.txt +9 -0
- package/dist/index.esm.js +2 -0
- package/dist/index.esm.js.LICENSE.txt +9 -0
- package/dist/index.umd.js +2 -0
- package/dist/index.umd.js.LICENSE.txt +9 -0
- package/dist/l10n/eehitus-my-proceeding-ui-combined_translations_en.json +1 -0
- package/dist/l10n/eehitus-my-proceeding-ui-combined_translations_et.json +1 -0
- package/dist/l10n/eehitus-my-proceeding-ui-combined_translations_ru.json +1 -0
- package/dist/types/App.d.ts +5 -0
- package/dist/types/Reducer.d.ts +2 -0
- package/dist/types/__mocks__/fileMock.d.ts +2 -0
- package/dist/types/components/Demo.d.ts +3 -0
- package/dist/types/components/DemoAdministrativeProceedings.d.ts +3 -0
- package/dist/types/components/DemoApprovals.d.ts +3 -0
- package/dist/types/components/DemoDetailSearch.d.ts +3 -0
- package/dist/types/components/DemoDocuments.d.ts +3 -0
- package/dist/types/components/DemoInvolvements.d.ts +3 -0
- package/dist/types/components/DemoOpinions.d.ts +3 -0
- package/dist/types/components/DemoProceedings.d.ts +3 -0
- package/dist/types/components/common/AddressesService.d.ts +5 -0
- package/dist/types/components/common/CommonServices.d.ts +5 -0
- package/dist/types/components/common/TableService.d.ts +18 -0
- package/dist/types/components/common/classificators/BuildingStates.d.ts +9 -0
- package/dist/types/components/common/classificators/DocumentStates.d.ts +25 -0
- package/dist/types/components/common/classificators/OperationStates.d.ts +34 -0
- package/dist/types/components/common/classificators/ProceedingStates.d.ts +9 -0
- package/dist/types/components/common/components/DateRangeExtended.d.ts +14 -0
- package/dist/types/components/common/components/DeletePopoverExtended.d.ts +12 -0
- package/dist/types/components/common/components/DeleteTableRow.d.ts +7 -0
- package/dist/types/components/common/components/DownloadTableRow.d.ts +9 -0
- package/dist/types/components/common/components/LinkWithDarkTooltip.d.ts +9 -0
- package/dist/types/components/common/components/LinkWithTooltip.d.ts +7 -0
- package/dist/types/components/common/components/Phone.d.ts +13 -0
- package/dist/types/components/common/components/TableSortingArrows.d.ts +6 -0
- package/dist/types/components/common/components/operation/filter/OperationsFilter.d.ts +10 -0
- package/dist/types/components/common/components/operation/filter/OperationsFilterService.d.ts +10 -0
- package/dist/types/components/common/components/operation/operationsTable/OperationsTable.d.ts +11 -0
- package/dist/types/components/common/components/operation/types/OperationsFilterType.d.ts +18 -0
- package/dist/types/components/common/components/personalCodeValidator.d.ts +2 -0
- package/dist/types/components/common/components/tablecomponent/TableComponentUtils.d.ts +2 -0
- package/dist/types/components/common/constants/Constants.d.ts +72 -0
- package/dist/types/components/common/filterService/CommonFilterService.d.ts +6 -0
- package/dist/types/components/common/stateServices/BuildingStateService.d.ts +9 -0
- package/dist/types/components/common/stateServices/DocumentStateService.d.ts +6 -0
- package/dist/types/components/common/stateServices/OperationStateService.d.ts +25 -0
- package/dist/types/components/common/stateServices/ProceedingStateService.d.ts +9 -0
- package/dist/types/components/common/types/MultiselectTypeOption.d.ts +9 -0
- package/dist/types/components/dto/MyDocuments.d.ts +40 -0
- package/dist/types/components/form/checkBox.d.ts +2 -0
- package/dist/types/components/model/StatusTypes.d.ts +15 -0
- package/dist/types/components/page/detailsearch/detailsearch.d.ts +14 -0
- package/dist/types/components/page/detailsearch/detailsearch.test.d.ts +1 -0
- package/dist/types/components/page/detailsearch/filter/BuildingsDetailSearchFilter.d.ts +10 -0
- package/dist/types/components/page/detailsearch/filter/BuildingsDetailSearchFilter.test.d.ts +1 -0
- package/dist/types/components/page/detailsearch/filter/DetailSearchFilterService.d.ts +12 -0
- package/dist/types/components/page/detailsearch/filter/DocumentsDetailSearchFilter.d.ts +9 -0
- package/dist/types/components/page/detailsearch/filter/DocumentsDetailSearchFilter.test.d.ts +1 -0
- package/dist/types/components/page/detailsearch/filter/ProceedingsDetailSearchFilter.d.ts +6 -0
- package/dist/types/components/page/detailsearch/tables/DetailSearchBuildings.d.ts +9 -0
- package/dist/types/components/page/detailsearch/tables/DetailSearchBuildings.test.d.ts +1 -0
- package/dist/types/components/page/detailsearch/tables/DetailSearchDocuments.d.ts +12 -0
- package/dist/types/components/page/detailsearch/tables/DetailSearchDocuments.test.d.ts +1 -0
- package/dist/types/components/page/detailsearch/tables/DetailSearchProceedings.d.ts +11 -0
- package/dist/types/components/page/detailsearch/tables/DetailSearchProceedings.test.d.ts +1 -0
- package/dist/types/components/page/detailsearch/tables/linkGenMock.d.ts +2 -0
- package/dist/types/components/page/detailsearch/types/BuildingsDetailSearchFilterType.d.ts +16 -0
- package/dist/types/components/page/detailsearch/types/DocumentsDetailSearchFilterType.d.ts +13 -0
- package/dist/types/components/page/detailsearch/types/ProceedingsDetailSearchFilterType.d.ts +10 -0
- package/dist/types/components/page/myAdministrativeProceedings/AdministrativeProceedingsTable.d.ts +8 -0
- package/dist/types/components/page/myAdministrativeProceedings/MyAdministrativeProceedings.d.ts +8 -0
- package/dist/types/components/page/myAdministrativeProceedings/components/AdminProceedingsReminderSection.d.ts +6 -0
- package/dist/types/components/page/myAdministrativeProceedings/components/AdminProceedingsSection.d.ts +7 -0
- package/dist/types/components/page/myapprovals/myapprovals.d.ts +11 -0
- package/dist/types/components/page/mydocuments/common/AddNewDocumentButton.d.ts +5 -0
- package/dist/types/components/page/mydocuments/common/FinishedDocDotys.d.ts +1 -0
- package/dist/types/components/page/mydocuments/common/SigningDocDocys.d.ts +1 -0
- package/dist/types/components/page/mydocuments/common/WorkingDocDotys.d.ts +1 -0
- package/dist/types/components/page/mydocuments/documentTable/DocumentTableMoreActionsPopover.d.ts +8 -0
- package/dist/types/components/page/mydocuments/documentTable/DocumentsTable.d.ts +17 -0
- package/dist/types/components/page/mydocuments/filter/DocumentsFilter.d.ts +10 -0
- package/dist/types/components/page/mydocuments/filter/DocumentsFilterService.d.ts +5 -0
- package/dist/types/components/page/mydocuments/filter/FilterDocumentStatesBasedOnDocTypes.d.ts +9 -0
- package/dist/types/components/page/mydocuments/filter/FilterDocumentTypes.d.ts +1 -0
- package/dist/types/components/page/mydocuments/mydocuments.d.ts +8 -0
- package/dist/types/components/page/mydocuments/types/DocumentsFilterType.d.ts +17 -0
- package/dist/types/components/page/myinvolvements/filter/InvolvementsFilter.d.ts +8 -0
- package/dist/types/components/page/myinvolvements/myinvolvements.d.ts +11 -0
- package/dist/types/components/page/myopinions/myopinions.d.ts +11 -0
- package/dist/types/components/page/myproceedings/filter/ProceedingsFilter.d.ts +9 -0
- package/dist/types/components/page/myproceedings/filter/ProceedingsFilterService.d.ts +12 -0
- package/dist/types/components/page/myproceedings/myproceedings.d.ts +12 -0
- package/dist/types/components/page/myproceedings/proceedingTable/MyProceedingsTable.d.ts +11 -0
- package/dist/types/components/page/myproceedings/types/ProceedingsFilterType.d.ts +17 -0
- package/dist/types/components/services/buildings_actual_data_api_client/api.d.ts +8403 -0
- package/dist/types/components/services/buildings_actual_data_api_client/base.d.ts +55 -0
- package/dist/types/components/services/buildings_actual_data_api_client/common.d.ts +65 -0
- package/dist/types/components/services/buildings_actual_data_api_client/configuration.d.ts +83 -0
- package/dist/types/components/services/buildings_actual_data_api_client/index.d.ts +13 -0
- package/dist/types/components/services/classifier_api_client/api.d.ts +499 -0
- package/dist/types/components/services/classifier_api_client/base.d.ts +55 -0
- package/dist/types/components/services/classifier_api_client/common.d.ts +65 -0
- package/dist/types/components/services/classifier_api_client/configuration.d.ts +83 -0
- package/dist/types/components/services/classifier_api_client/index.d.ts +13 -0
- package/dist/types/components/services/document_api_client/api.d.ts +8727 -0
- package/dist/types/components/services/document_api_client/base.d.ts +55 -0
- package/dist/types/components/services/document_api_client/common.d.ts +65 -0
- package/dist/types/components/services/document_api_client/configuration.d.ts +83 -0
- package/dist/types/components/services/document_api_client/index.d.ts +13 -0
- package/dist/types/components/services/file_api_client/api.d.ts +782 -0
- package/dist/types/components/services/file_api_client/base.d.ts +55 -0
- package/dist/types/components/services/file_api_client/common.d.ts +65 -0
- package/dist/types/components/services/file_api_client/configuration.d.ts +83 -0
- package/dist/types/components/services/file_api_client/index.d.ts +13 -0
- package/dist/types/components/services/my_views_api_client/api.d.ts +1806 -0
- package/dist/types/components/services/my_views_api_client/base.d.ts +66 -0
- package/dist/types/components/services/my_views_api_client/common.d.ts +65 -0
- package/dist/types/components/services/my_views_api_client/configuration.d.ts +91 -0
- package/dist/types/components/services/my_views_api_client/index.d.ts +13 -0
- package/dist/types/components/services/user_api_client/api.d.ts +4706 -0
- package/dist/types/components/services/user_api_client/base.d.ts +54 -0
- package/dist/types/components/services/user_api_client/common.d.ts +65 -0
- package/dist/types/components/services/user_api_client/configuration.d.ts +83 -0
- package/dist/types/components/services/user_api_client/index.d.ts +13 -0
- package/dist/types/components/services/yld_esi_api_client/api.d.ts +401 -0
- package/dist/types/components/services/yld_esi_api_client/base.d.ts +54 -0
- package/dist/types/components/services/yld_esi_api_client/common.d.ts +65 -0
- package/dist/types/components/services/yld_esi_api_client/configuration.d.ts +83 -0
- package/dist/types/components/services/yld_esi_api_client/index.d.ts +13 -0
- package/dist/types/components/util/DateFormatUtils.d.ts +12 -0
- package/dist/types/components/util/link-utils.d.ts +18 -0
- package/dist/types/components/util/redirect-utils.d.ts +19 -0
- package/dist/types/hooks/useAreaProceedings.d.ts +8 -0
- package/dist/types/index.d.ts +1 -0
- package/dist/types/indexExport.d.ts +13 -0
- package/dist/types/mocks/kaosClassifierMock.d.ts +20 -0
- package/dist/types/rbac-rules.d.ts +57 -0
- package/dist/types/redux/actions/parametersAction.d.ts +4 -0
- package/dist/types/redux/api/index.d.ts +25 -0
- package/dist/types/redux/constants/action.d.ts +2 -0
- package/dist/types/redux/middleware/middleware.d.ts +4 -0
- package/dist/types/redux/parametersService.d.ts +5 -0
- package/dist/types/redux/reducers/detailSearchSlice.d.ts +6 -0
- package/dist/types/redux/reducers/detailSearchState.d.ts +7 -0
- package/dist/types/redux/reducers/documentsSlice.d.ts +6 -0
- package/dist/types/redux/reducers/documentsState.d.ts +8 -0
- package/dist/types/redux/reducers/filterSlice.d.ts +8 -0
- package/dist/types/redux/reducers/filterState.d.ts +11 -0
- package/dist/types/redux/reducers/myOperationsSlice.d.ts +5 -0
- package/dist/types/redux/reducers/myOperationsState.d.ts +6 -0
- package/dist/types/redux/reducers/parametersReducer.d.ts +2 -0
- package/dist/types/redux/reducers/proceedingsSlice.d.ts +5 -0
- package/dist/types/redux/reducers/proceedingsState.d.ts +6 -0
- package/dist/types/redux/reducers/reducer.d.ts +4 -0
- package/dist/types/redux/reducers/rootReducer.d.ts +9 -0
- package/dist/types/redux/store.d.ts +2 -0
- package/dist/types/redux/types/parameters.d.ts +3 -0
- package/dist/types/serviceWorker.d.ts +2 -0
- package/dist/types/setupTests.d.ts +2 -0
- package/package.json +256 -0
|
@@ -0,0 +1,65 @@
|
|
|
1
|
+
/**
|
|
2
|
+
* ehr-yld-esi API
|
|
3
|
+
* e-ehitus Dokumendi liigi esileht API
|
|
4
|
+
*
|
|
5
|
+
* The version of the OpenAPI document: 1.4.0
|
|
6
|
+
*
|
|
7
|
+
*
|
|
8
|
+
* NOTE: This class is auto generated by OpenAPI Generator (https://openapi-generator.tech).
|
|
9
|
+
* https://openapi-generator.tech
|
|
10
|
+
* Do not edit the class manually.
|
|
11
|
+
*/
|
|
12
|
+
import type { Configuration } from "./configuration";
|
|
13
|
+
import type { RequestArgs } from "./base";
|
|
14
|
+
import type { AxiosInstance, AxiosResponse } from 'axios';
|
|
15
|
+
/**
|
|
16
|
+
*
|
|
17
|
+
* @export
|
|
18
|
+
*/
|
|
19
|
+
export declare const DUMMY_BASE_URL = "https://example.com";
|
|
20
|
+
/**
|
|
21
|
+
*
|
|
22
|
+
* @throws {RequiredError}
|
|
23
|
+
* @export
|
|
24
|
+
*/
|
|
25
|
+
export declare const assertParamExists: (functionName: string, paramName: string, paramValue: unknown) => void;
|
|
26
|
+
/**
|
|
27
|
+
*
|
|
28
|
+
* @export
|
|
29
|
+
*/
|
|
30
|
+
export declare const setApiKeyToObject: (object: any, keyParamName: string, configuration?: Configuration) => Promise<void>;
|
|
31
|
+
/**
|
|
32
|
+
*
|
|
33
|
+
* @export
|
|
34
|
+
*/
|
|
35
|
+
export declare const setBasicAuthToObject: (object: any, configuration?: Configuration) => void;
|
|
36
|
+
/**
|
|
37
|
+
*
|
|
38
|
+
* @export
|
|
39
|
+
*/
|
|
40
|
+
export declare const setBearerAuthToObject: (object: any, configuration?: Configuration) => Promise<void>;
|
|
41
|
+
/**
|
|
42
|
+
*
|
|
43
|
+
* @export
|
|
44
|
+
*/
|
|
45
|
+
export declare const setOAuthToObject: (object: any, name: string, scopes: string[], configuration?: Configuration) => Promise<void>;
|
|
46
|
+
/**
|
|
47
|
+
*
|
|
48
|
+
* @export
|
|
49
|
+
*/
|
|
50
|
+
export declare const setSearchParams: (url: URL, ...objects: any[]) => void;
|
|
51
|
+
/**
|
|
52
|
+
*
|
|
53
|
+
* @export
|
|
54
|
+
*/
|
|
55
|
+
export declare const serializeDataIfNeeded: (value: any, requestOptions: any, configuration?: Configuration) => any;
|
|
56
|
+
/**
|
|
57
|
+
*
|
|
58
|
+
* @export
|
|
59
|
+
*/
|
|
60
|
+
export declare const toPathString: (url: URL) => string;
|
|
61
|
+
/**
|
|
62
|
+
*
|
|
63
|
+
* @export
|
|
64
|
+
*/
|
|
65
|
+
export declare const createRequestFunction: (axiosArgs: RequestArgs, globalAxios: AxiosInstance, BASE_PATH: string, configuration?: Configuration) => <T = unknown, R = AxiosResponse<T, any>>(axios?: AxiosInstance, basePath?: string) => Promise<R>;
|
|
@@ -0,0 +1,83 @@
|
|
|
1
|
+
/**
|
|
2
|
+
* ehr-yld-esi API
|
|
3
|
+
* e-ehitus Dokumendi liigi esileht API
|
|
4
|
+
*
|
|
5
|
+
* The version of the OpenAPI document: 1.4.0
|
|
6
|
+
*
|
|
7
|
+
*
|
|
8
|
+
* NOTE: This class is auto generated by OpenAPI Generator (https://openapi-generator.tech).
|
|
9
|
+
* https://openapi-generator.tech
|
|
10
|
+
* Do not edit the class manually.
|
|
11
|
+
*/
|
|
12
|
+
export interface ConfigurationParameters {
|
|
13
|
+
apiKey?: string | Promise<string> | ((name: string) => string) | ((name: string) => Promise<string>);
|
|
14
|
+
username?: string;
|
|
15
|
+
password?: string;
|
|
16
|
+
accessToken?: string | Promise<string> | ((name?: string, scopes?: string[]) => string) | ((name?: string, scopes?: string[]) => Promise<string>);
|
|
17
|
+
basePath?: string;
|
|
18
|
+
baseOptions?: any;
|
|
19
|
+
formDataCtor?: new () => any;
|
|
20
|
+
}
|
|
21
|
+
export declare class Configuration {
|
|
22
|
+
/**
|
|
23
|
+
* parameter for apiKey security
|
|
24
|
+
* @param name security name
|
|
25
|
+
* @memberof Configuration
|
|
26
|
+
*/
|
|
27
|
+
apiKey?: string | Promise<string> | ((name: string) => string) | ((name: string) => Promise<string>);
|
|
28
|
+
/**
|
|
29
|
+
* parameter for basic security
|
|
30
|
+
*
|
|
31
|
+
* @type {string}
|
|
32
|
+
* @memberof Configuration
|
|
33
|
+
*/
|
|
34
|
+
username?: string;
|
|
35
|
+
/**
|
|
36
|
+
* parameter for basic security
|
|
37
|
+
*
|
|
38
|
+
* @type {string}
|
|
39
|
+
* @memberof Configuration
|
|
40
|
+
*/
|
|
41
|
+
password?: string;
|
|
42
|
+
/**
|
|
43
|
+
* parameter for oauth2 security
|
|
44
|
+
* @param name security name
|
|
45
|
+
* @param scopes oauth2 scope
|
|
46
|
+
* @memberof Configuration
|
|
47
|
+
*/
|
|
48
|
+
accessToken?: string | Promise<string> | ((name?: string, scopes?: string[]) => string) | ((name?: string, scopes?: string[]) => Promise<string>);
|
|
49
|
+
/**
|
|
50
|
+
* override base path
|
|
51
|
+
*
|
|
52
|
+
* @type {string}
|
|
53
|
+
* @memberof Configuration
|
|
54
|
+
*/
|
|
55
|
+
basePath?: string;
|
|
56
|
+
/**
|
|
57
|
+
* base options for axios calls
|
|
58
|
+
*
|
|
59
|
+
* @type {any}
|
|
60
|
+
* @memberof Configuration
|
|
61
|
+
*/
|
|
62
|
+
baseOptions?: any;
|
|
63
|
+
/**
|
|
64
|
+
* The FormData constructor that will be used to create multipart form data
|
|
65
|
+
* requests. You can inject this here so that execution environments that
|
|
66
|
+
* do not support the FormData class can still run the generated client.
|
|
67
|
+
*
|
|
68
|
+
* @type {new () => FormData}
|
|
69
|
+
*/
|
|
70
|
+
formDataCtor?: new () => any;
|
|
71
|
+
constructor(param?: ConfigurationParameters);
|
|
72
|
+
/**
|
|
73
|
+
* Check if the given MIME is a JSON MIME.
|
|
74
|
+
* JSON MIME examples:
|
|
75
|
+
* application/json
|
|
76
|
+
* application/json; charset=UTF8
|
|
77
|
+
* APPLICATION/JSON
|
|
78
|
+
* application/vnd.company+json
|
|
79
|
+
* @param mime - MIME (Multipurpose Internet Mail Extensions)
|
|
80
|
+
* @return True if the given MIME is JSON, false otherwise.
|
|
81
|
+
*/
|
|
82
|
+
isJsonMime(mime: string): boolean;
|
|
83
|
+
}
|
|
@@ -0,0 +1,13 @@
|
|
|
1
|
+
/**
|
|
2
|
+
* ehr-yld-esi API
|
|
3
|
+
* e-ehitus Dokumendi liigi esileht API
|
|
4
|
+
*
|
|
5
|
+
* The version of the OpenAPI document: 1.4.0
|
|
6
|
+
*
|
|
7
|
+
*
|
|
8
|
+
* NOTE: This class is auto generated by OpenAPI Generator (https://openapi-generator.tech).
|
|
9
|
+
* https://openapi-generator.tech
|
|
10
|
+
* Do not edit the class manually.
|
|
11
|
+
*/
|
|
12
|
+
export * from "./api";
|
|
13
|
+
export * from "./configuration";
|
|
@@ -0,0 +1,12 @@
|
|
|
1
|
+
export declare const UI_DATE_FORMAT = "YYYY-MM-DD";
|
|
2
|
+
export declare const DATE_FORMAT: {
|
|
3
|
+
DDMMYYYY: string;
|
|
4
|
+
YYYYMMDD: string;
|
|
5
|
+
};
|
|
6
|
+
export default class DateFormatUtils {
|
|
7
|
+
static dateToStr(date?: Date): string;
|
|
8
|
+
static dateToStrForDatepicker(date?: Date): string;
|
|
9
|
+
static dateWithTimeToStr(date?: Date): string;
|
|
10
|
+
private static formatDate;
|
|
11
|
+
static dateToMs(format: string, date?: Date): number | undefined;
|
|
12
|
+
}
|
|
@@ -0,0 +1,18 @@
|
|
|
1
|
+
export declare enum RedirectType {
|
|
2
|
+
Document = "DOCUMENT",
|
|
3
|
+
Proceeding = "PROCEEDING",
|
|
4
|
+
AdminProceeding = "ADMIN_PROCEEDING",
|
|
5
|
+
AdminOperation = "ADMIN_OPERATION",
|
|
6
|
+
ProceedingDecision = "PROCEEDING_DECISION",
|
|
7
|
+
Operation = "OPERATION",
|
|
8
|
+
MyDocuments = "MY_DOCUMENTS",
|
|
9
|
+
MyProceedings = "MY_PROCEEDINGS",
|
|
10
|
+
MyAdministrativeProceedings = "MY_ADMIN_PROCEEDINGS",
|
|
11
|
+
Building = "BUILDING",
|
|
12
|
+
NewEnergy = "NEW_ENERGY",
|
|
13
|
+
ArchiveBuildingRegistryFile = "ARCHIVE_BUILDINGREGISTRYFILE",
|
|
14
|
+
ArchiveBuildingDatasOf2003 = "ARCHIVE_BUILDINGDATAASOF2003",
|
|
15
|
+
ArchiveBuildingDatasOf2014 = "ARCHIVE_BUILDINGDATAASOF2014",
|
|
16
|
+
Restriction = "RESTRICTION",
|
|
17
|
+
NotFound = "404"
|
|
18
|
+
}
|
|
@@ -0,0 +1,19 @@
|
|
|
1
|
+
export declare enum RedirectType {
|
|
2
|
+
Document = "DOCUMENT",
|
|
3
|
+
Proceeding = "PROCEEDING",
|
|
4
|
+
AdminProceeding = "ADMIN_PROCEEDING",
|
|
5
|
+
ProceedingDecision = "PROCEEDING_DECISION",
|
|
6
|
+
Operation = "OPERATION",
|
|
7
|
+
MyDocuments = "MY_DOCUMENTS",
|
|
8
|
+
MyProceedings = "MY_PROCEEDINGS",
|
|
9
|
+
MyAdministrativeProceedings = "MY_ADMIN_PROCEEDINGS",
|
|
10
|
+
Building = "BUILDING",
|
|
11
|
+
NewEnergy = "NEW_ENERGY",
|
|
12
|
+
ArchiveBuildingRegistryFile = "ARCHIVE_BUILDINGREGISTRYFILE",
|
|
13
|
+
ArchiveBuildingDatasOf2003 = "ARCHIVE_BUILDINGDATAASOF2003",
|
|
14
|
+
ArchiveBuildingDatasOf2014 = "ARCHIVE_BUILDINGDATAASOF2014",
|
|
15
|
+
Restriction = "RESTRICTION",
|
|
16
|
+
NotFound = "404"
|
|
17
|
+
}
|
|
18
|
+
export declare const redirectWithType: (type: string, path: string, history: any, isExternal: boolean, isNewWindow?: boolean, state?: any) => void;
|
|
19
|
+
export declare const linkGen: (type: string, path: string, history: any, isExternal: boolean, isNewWindow?: boolean, state?: any) => string | undefined;
|
|
@@ -0,0 +1,8 @@
|
|
|
1
|
+
import { MyProceedingsDto } from '../components/services/my_views_api_client';
|
|
2
|
+
interface UseAreaProceedingReturnType {
|
|
3
|
+
loading: boolean;
|
|
4
|
+
error: string | undefined;
|
|
5
|
+
proceedings: MyProceedingsDto[];
|
|
6
|
+
}
|
|
7
|
+
declare const useAreaProceedings: (userInfo: GlobalUserInfo, allInstitutionProceedings?: boolean) => UseAreaProceedingReturnType;
|
|
8
|
+
export default useAreaProceedings;
|
|
@@ -0,0 +1 @@
|
|
|
1
|
+
export {};
|
|
@@ -0,0 +1,13 @@
|
|
|
1
|
+
import rootReducer from './redux/reducers/rootReducer';
|
|
2
|
+
export { default as MyAdministrativeProceedings } from './components/page/myAdministrativeProceedings/MyAdministrativeProceedings';
|
|
3
|
+
export { default as MyDocuments } from './components/page/mydocuments/mydocuments';
|
|
4
|
+
export { default as MyProceedings } from './components/page/myproceedings/myproceedings';
|
|
5
|
+
export { default as MyApprovals } from './components/page/myapprovals/myapprovals';
|
|
6
|
+
export { default as MyOpinions } from './components/page/myopinions/myopinions';
|
|
7
|
+
export { default as MyInvolvements } from './components/page/myinvolvements/myinvolvements';
|
|
8
|
+
export { default as DetailSearch } from './components/page/detailsearch/detailsearch';
|
|
9
|
+
export { default as filterReducer } from './redux/reducers/filterSlice';
|
|
10
|
+
export { default as documentsReducer } from './redux/reducers/documentsSlice';
|
|
11
|
+
export { default as proceedingsReducer } from './redux/reducers/proceedingsSlice';
|
|
12
|
+
export { default as myOperationsReducer } from './redux/reducers/myOperationsSlice';
|
|
13
|
+
export { rootReducer };
|
|
@@ -0,0 +1,20 @@
|
|
|
1
|
+
declare const MOCK_OPTIONS_DATA: ({
|
|
2
|
+
id: number;
|
|
3
|
+
name: string;
|
|
4
|
+
code: string;
|
|
5
|
+
name_eng: string;
|
|
6
|
+
validTo: undefined;
|
|
7
|
+
} | {
|
|
8
|
+
id: number;
|
|
9
|
+
name: string;
|
|
10
|
+
code: string;
|
|
11
|
+
name_eng: string;
|
|
12
|
+
validTo: string;
|
|
13
|
+
} | {
|
|
14
|
+
id: number;
|
|
15
|
+
name: string;
|
|
16
|
+
code: string;
|
|
17
|
+
name_eng: undefined;
|
|
18
|
+
validTo: undefined;
|
|
19
|
+
})[];
|
|
20
|
+
export default MOCK_OPTIONS_DATA;
|
|
@@ -0,0 +1,57 @@
|
|
|
1
|
+
export namespace rules {
|
|
2
|
+
namespace menetlus {
|
|
3
|
+
namespace minu_menetlused {
|
|
4
|
+
export namespace edit_menetlus {
|
|
5
|
+
const allowed: string[];
|
|
6
|
+
}
|
|
7
|
+
const allowed_1: string[];
|
|
8
|
+
export { allowed_1 as allowed };
|
|
9
|
+
}
|
|
10
|
+
}
|
|
11
|
+
namespace minu_vaated {
|
|
12
|
+
export namespace minu_dokumendid {
|
|
13
|
+
const allowed_2: string[];
|
|
14
|
+
export { allowed_2 as allowed };
|
|
15
|
+
}
|
|
16
|
+
export namespace minu_menetlused_1 {
|
|
17
|
+
const allowed_3: string[];
|
|
18
|
+
export { allowed_3 as allowed };
|
|
19
|
+
}
|
|
20
|
+
export { minu_menetlused_1 as minu_menetlused };
|
|
21
|
+
}
|
|
22
|
+
const arhiiv: {
|
|
23
|
+
main: {
|
|
24
|
+
allowed: string[];
|
|
25
|
+
};
|
|
26
|
+
document_ehr_kood: {
|
|
27
|
+
allowed: string[];
|
|
28
|
+
};
|
|
29
|
+
hr_register: {
|
|
30
|
+
allowed: string[];
|
|
31
|
+
};
|
|
32
|
+
toimik_otsing: {
|
|
33
|
+
allowed: string[];
|
|
34
|
+
};
|
|
35
|
+
ehitis_shr: {
|
|
36
|
+
allowed: string[];
|
|
37
|
+
};
|
|
38
|
+
doc_ehitis_hr: {
|
|
39
|
+
allowed: string[];
|
|
40
|
+
};
|
|
41
|
+
ehitis_hr: {
|
|
42
|
+
allowed: string[];
|
|
43
|
+
};
|
|
44
|
+
ehitis_toimik: {
|
|
45
|
+
allowed: string[];
|
|
46
|
+
};
|
|
47
|
+
toimik: {
|
|
48
|
+
allowed: string[];
|
|
49
|
+
};
|
|
50
|
+
lukus: {
|
|
51
|
+
allowed: string[];
|
|
52
|
+
};
|
|
53
|
+
404: {
|
|
54
|
+
allowed: string[];
|
|
55
|
+
};
|
|
56
|
+
};
|
|
57
|
+
}
|
|
@@ -0,0 +1,25 @@
|
|
|
1
|
+
import { ClassifierApiEndpointApi } from '../../components/services/classifier_api_client';
|
|
2
|
+
import { PersonApiEndpointApi, UserApiEndpointApi, InstitutionKovEndpointApi } from '../../components/services/user_api_client';
|
|
3
|
+
import { MyProceedingsApi, BaseMyDocumentsApi } from '../../components/services/my_views_api_client';
|
|
4
|
+
import { ApplicationApiEndpointApi } from '../../components/services/document_api_client';
|
|
5
|
+
import { CommonFileUploadControllerApi } from '../../components/services/file_api_client';
|
|
6
|
+
import { YldApi } from '../../components/services/yld_esi_api_client';
|
|
7
|
+
export declare const serviceEndpoints: {
|
|
8
|
+
myViewsApiEndpoint: any;
|
|
9
|
+
classifierApiEndpoint: any;
|
|
10
|
+
userApiEndpoint: any;
|
|
11
|
+
documentApiEndpoint: any;
|
|
12
|
+
fileUploadApiEndpoint: any;
|
|
13
|
+
frontPageApiEndpoint: any;
|
|
14
|
+
};
|
|
15
|
+
export declare const api: {
|
|
16
|
+
proceedingApiService: MyProceedingsApi;
|
|
17
|
+
classifierApiService: ClassifierApiEndpointApi;
|
|
18
|
+
personApiService: PersonApiEndpointApi;
|
|
19
|
+
userApiService: UserApiEndpointApi;
|
|
20
|
+
myDocumentBaseApiService: BaseMyDocumentsApi;
|
|
21
|
+
documentApiService: ApplicationApiEndpointApi;
|
|
22
|
+
fileApiService: CommonFileUploadControllerApi;
|
|
23
|
+
frontPageApi: YldApi;
|
|
24
|
+
institutionKovEndpointApi: InstitutionKovEndpointApi;
|
|
25
|
+
};
|
|
@@ -0,0 +1,6 @@
|
|
|
1
|
+
import { BSearchOResponseArray } from '../../components/services/buildings_actual_data_api_client';
|
|
2
|
+
import { DocDetail, ProceedingDetail } from '../../components/services/my_views_api_client';
|
|
3
|
+
import { DetailSearchState } from './detailSearchState';
|
|
4
|
+
export declare const buildingsLoaded: import("@reduxjs/toolkit").ActionCreatorWithPayload<BSearchOResponseArray[], "detailSearch/buildingsLoaded">, documentsLoaded: import("@reduxjs/toolkit").ActionCreatorWithPayload<DocDetail[], "detailSearch/documentsLoaded">, proceedingsLoaded: import("@reduxjs/toolkit").ActionCreatorWithPayload<ProceedingDetail[], "detailSearch/proceedingsLoaded">;
|
|
5
|
+
declare const _default: import("@reduxjs/toolkit").Reducer<DetailSearchState>;
|
|
6
|
+
export default _default;
|
|
@@ -0,0 +1,7 @@
|
|
|
1
|
+
import { BSearchOResponseArray } from '../../components/services/buildings_actual_data_api_client';
|
|
2
|
+
import { DocDetail, ProceedingDetail } from '../../components/services/my_views_api_client';
|
|
3
|
+
export interface DetailSearchState {
|
|
4
|
+
buildings: BSearchOResponseArray[];
|
|
5
|
+
documents: DocDetail[];
|
|
6
|
+
proceedings: ProceedingDetail[];
|
|
7
|
+
}
|
|
@@ -0,0 +1,6 @@
|
|
|
1
|
+
import { Classifier } from '../../components/services/document_api_client';
|
|
2
|
+
import { BaseMyDocument } from '../../components/services/my_views_api_client';
|
|
3
|
+
import { DocumentsState } from './documentsState';
|
|
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">;
|
|
5
|
+
declare const _default: import("@reduxjs/toolkit").Reducer<DocumentsState>;
|
|
6
|
+
export default _default;
|
|
@@ -0,0 +1,8 @@
|
|
|
1
|
+
import { Classifier } from '../../components/services/document_api_client';
|
|
2
|
+
import { BaseMyDocument } from '../../components/services/my_views_api_client';
|
|
3
|
+
export interface DocumentsState {
|
|
4
|
+
workingDocuments: BaseMyDocument[];
|
|
5
|
+
signingDocuments: BaseMyDocument[];
|
|
6
|
+
finishedDocuments: BaseMyDocument[];
|
|
7
|
+
allowedDocumentTypesToStart: Classifier[];
|
|
8
|
+
}
|
|
@@ -0,0 +1,8 @@
|
|
|
1
|
+
import { Classifier, DocumentType, FileType } from '../../components/services/classifier_api_client';
|
|
2
|
+
import { JurPersonDto, UserDto } from '../../components/services/user_api_client';
|
|
3
|
+
import { FilterState } from './filterState';
|
|
4
|
+
export declare const classifiersLoaded: import("@reduxjs/toolkit").ActionCreatorWithPayload<{
|
|
5
|
+
[key: string]: Classifier[];
|
|
6
|
+
}, "filter/classifiersLoaded">, documentTypesLoaded: import("@reduxjs/toolkit").ActionCreatorWithPayload<DocumentType[], "filter/documentTypesLoaded">, institutionUsersLoaded: import("@reduxjs/toolkit").ActionCreatorWithPayload<UserDto[], "filter/institutionUsersLoaded">, institutionsLoaded: import("@reduxjs/toolkit").ActionCreatorWithPayload<JurPersonDto[], "filter/institutionsLoaded">, usageClassifierTypesLoaded: import("@reduxjs/toolkit").ActionCreatorWithPayload<FileType[], "filter/usageClassifierTypesLoaded">;
|
|
7
|
+
declare const _default: import("@reduxjs/toolkit").Reducer<FilterState>;
|
|
8
|
+
export default _default;
|
|
@@ -0,0 +1,11 @@
|
|
|
1
|
+
import { Classifier, DocumentType, FileType } from '../../components/services/classifier_api_client';
|
|
2
|
+
import { JurPersonDto, UserDto } from '../../components/services/user_api_client';
|
|
3
|
+
export interface FilterState {
|
|
4
|
+
classifiers: {
|
|
5
|
+
[key: string]: Array<Classifier>;
|
|
6
|
+
};
|
|
7
|
+
documentTypes: DocumentType[];
|
|
8
|
+
institutionUsers: UserDto[];
|
|
9
|
+
institutions: JurPersonDto[];
|
|
10
|
+
usageClassifierTypes: FileType[];
|
|
11
|
+
}
|
|
@@ -0,0 +1,5 @@
|
|
|
1
|
+
import { MyOperationDto } from '../../components/services/my_views_api_client';
|
|
2
|
+
import { MyOperationsState } from './myOperationsState';
|
|
3
|
+
export declare const myOperationsLoaded: import("@reduxjs/toolkit").ActionCreatorWithPayload<MyOperationDto[], "myOperations/myOperationsLoaded">, toCommentOperationsLoaded: import("@reduxjs/toolkit").ActionCreatorWithPayload<MyOperationDto[], "myOperations/toCommentOperationsLoaded">, operationInvitationsLoaded: import("@reduxjs/toolkit").ActionCreatorWithPayload<MyOperationDto[], "myOperations/operationInvitationsLoaded">;
|
|
4
|
+
declare const _default: import("@reduxjs/toolkit").Reducer<MyOperationsState>;
|
|
5
|
+
export default _default;
|
|
@@ -0,0 +1,5 @@
|
|
|
1
|
+
import { BaseMyDocument, MyOperationDto, MyProceedingsDto } from '../../components/services/my_views_api_client';
|
|
2
|
+
import { ProceedingState } from './proceedingsState';
|
|
3
|
+
export declare const myProceedingsLoaded: import("@reduxjs/toolkit").ActionCreatorWithPayload<MyProceedingsDto[], "proceedings/myProceedingsLoaded">, proceedingsToCommentLoaded: import("@reduxjs/toolkit").ActionCreatorWithPayload<MyOperationDto[], "proceedings/proceedingsToCommentLoaded">, incomingDocumentsLoaded: import("@reduxjs/toolkit").ActionCreatorWithPayload<BaseMyDocument[], "proceedings/incomingDocumentsLoaded">;
|
|
4
|
+
declare const _default: import("@reduxjs/toolkit").Reducer<ProceedingState>;
|
|
5
|
+
export default _default;
|
|
@@ -0,0 +1,6 @@
|
|
|
1
|
+
import { BaseMyDocument, MyOperationDto, MyProceedingsDto } from '../../components/services/my_views_api_client';
|
|
2
|
+
export interface ProceedingState {
|
|
3
|
+
myProceedings: MyProceedingsDto[];
|
|
4
|
+
proceedingsToComment: MyOperationDto[];
|
|
5
|
+
incomingDocuments: BaseMyDocument[];
|
|
6
|
+
}
|
|
@@ -0,0 +1,9 @@
|
|
|
1
|
+
declare const rootReducer: import("@reduxjs/toolkit").Reducer<import("@reduxjs/toolkit").CombinedState<{
|
|
2
|
+
filter: import("./filterState").FilterState;
|
|
3
|
+
myDocuments: import("./documentsState").DocumentsState;
|
|
4
|
+
myProceedings: import("./proceedingsState").ProceedingState;
|
|
5
|
+
myOperations: import("./myOperationsState").MyOperationsState;
|
|
6
|
+
detailSearch: import("./detailSearchState").DetailSearchState;
|
|
7
|
+
}>, import("@reduxjs/toolkit").AnyAction>;
|
|
8
|
+
export type RootState = ReturnType<typeof rootReducer>;
|
|
9
|
+
export default rootReducer;
|