eehitus-my-task-list-ui 1.0.12 → 1.0.13

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.
@@ -70,6 +70,21 @@ export declare enum MENTOIMLIIK {
70
70
  MENTOIMLIIK_KMH_PR = "MENTOIMLIIK_KMH_PR",
71
71
  MENTOIMLIIK_KMH_AR = "MENTOIMLIIK_KMH_AR"
72
72
  }
73
+ export declare const DOCUMENT_TYPE_CONSTRUCTION_PERMISSION_NOTIF: {
74
+ code: string;
75
+ nr: number;
76
+ name: string;
77
+ };
78
+ export declare const DOCUMENT_TYPE_WINDPARK_BUILDING_APPLI: {
79
+ code: string;
80
+ nr: number;
81
+ name: string;
82
+ };
83
+ export declare const DOCUMENT_TYPE_BUILDING_AREA_APPLI: {
84
+ code: string;
85
+ nr: number;
86
+ name: string;
87
+ };
73
88
  export declare const DOCUMENT_TYPE_SEA_WIND_FARM_BUILDING_AREA_PERMIT: {
74
89
  code: string;
75
90
  nr: number;
@@ -100,6 +115,28 @@ export declare const DOCUMENT_TYPE_BUILDING_AREA_SEA_WIND_FARM_PERMIT_ANNULMENT_
100
115
  nr: number;
101
116
  name: string;
102
117
  };
118
+ export declare const DOCUMENT_TYPE_INIITATE_SEA_WIND_FARM_DEVELOPMENT_PROCEEDING_DECISION: {
119
+ code: string;
120
+ nr: number;
121
+ name: string;
122
+ };
123
+ export declare const DOCUMENT_TYPE_DENYING_WIND_FARM_BUILDING_AREA_PERMIT: {
124
+ code: string;
125
+ nr: number;
126
+ name: string;
127
+ };
128
+ export declare const DOCUMENT_TYPE_INIITATE_DEVELOPMENT_PROCEEDING_DECISION: {
129
+ code: string;
130
+ nr: number;
131
+ name: string;
132
+ };
133
+ export declare const DOCUMENT_TYPE_DENYING_BUILDING_AREA_PERMIT: {
134
+ code: string;
135
+ nr: number;
136
+ name: string;
137
+ };
138
+ export declare const WINDPARK_DOCUMENT_CODES: string[];
139
+ export declare const BUILDING_AREA_DOCUMENT_CODES: string[];
103
140
  export declare const documentsThatCanBeCancelled: string[];
104
141
  export declare const annulmentDecisionByBaseDoty: {
105
142
  [x: string]: string;
@@ -1,11 +1,9 @@
1
1
  /// <reference types="react" />
2
2
  import { GlobalUserInfo } from 'ehr-auth-react';
3
- import { ProceedingDetail } from '../../../services/my_views_api_client';
4
3
  interface Props {
5
4
  linkGen: (event: any, type: string, path: string) => void;
6
5
  generateLink: (type: string, path: string, history: any, isExternal: boolean, isNewWindow?: boolean, state?: any) => string;
7
6
  userInfo: GlobalUserInfo | undefined;
8
7
  }
9
- export declare function setLinkGenType(value: ProceedingDetail): "PROCEEDING" | "ADMIN_PROCEEDING";
10
8
  declare const DetailSearchProceedings: (props: Props) => JSX.Element;
11
9
  export default DetailSearchProceedings;
@@ -0,0 +1,2 @@
1
+ import { RedirectType } from '../../../util/redirect-utils';
2
+ export declare const getProceedingRedirectType: (doty: string | undefined) => RedirectType.Proceeding | RedirectType.AdminProceeding | RedirectType.NotFound;
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "eehitus-my-task-list-ui",
3
- "version": "1.0.12",
3
+ "version": "1.0.13",
4
4
  "license": "ISC",
5
5
  "private": false,
6
6
  "type": "module",