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.
Files changed (161) hide show
  1. package/README.md +41 -0
  2. package/dist/index.cjs.js +2 -0
  3. package/dist/index.cjs.js.LICENSE.txt +9 -0
  4. package/dist/index.esm.js +2 -0
  5. package/dist/index.esm.js.LICENSE.txt +9 -0
  6. package/dist/index.umd.js +2 -0
  7. package/dist/index.umd.js.LICENSE.txt +9 -0
  8. package/dist/l10n/eehitus-my-proceeding-ui-combined_translations_en.json +1 -0
  9. package/dist/l10n/eehitus-my-proceeding-ui-combined_translations_et.json +1 -0
  10. package/dist/l10n/eehitus-my-proceeding-ui-combined_translations_ru.json +1 -0
  11. package/dist/types/App.d.ts +5 -0
  12. package/dist/types/Reducer.d.ts +2 -0
  13. package/dist/types/__mocks__/fileMock.d.ts +2 -0
  14. package/dist/types/components/Demo.d.ts +3 -0
  15. package/dist/types/components/DemoAdministrativeProceedings.d.ts +3 -0
  16. package/dist/types/components/DemoApprovals.d.ts +3 -0
  17. package/dist/types/components/DemoDetailSearch.d.ts +3 -0
  18. package/dist/types/components/DemoDocuments.d.ts +3 -0
  19. package/dist/types/components/DemoInvolvements.d.ts +3 -0
  20. package/dist/types/components/DemoOpinions.d.ts +3 -0
  21. package/dist/types/components/DemoProceedings.d.ts +3 -0
  22. package/dist/types/components/common/AddressesService.d.ts +5 -0
  23. package/dist/types/components/common/CommonServices.d.ts +5 -0
  24. package/dist/types/components/common/TableService.d.ts +18 -0
  25. package/dist/types/components/common/classificators/BuildingStates.d.ts +9 -0
  26. package/dist/types/components/common/classificators/DocumentStates.d.ts +25 -0
  27. package/dist/types/components/common/classificators/OperationStates.d.ts +34 -0
  28. package/dist/types/components/common/classificators/ProceedingStates.d.ts +9 -0
  29. package/dist/types/components/common/components/DateRangeExtended.d.ts +14 -0
  30. package/dist/types/components/common/components/DeletePopoverExtended.d.ts +12 -0
  31. package/dist/types/components/common/components/DeleteTableRow.d.ts +7 -0
  32. package/dist/types/components/common/components/DownloadTableRow.d.ts +9 -0
  33. package/dist/types/components/common/components/LinkWithDarkTooltip.d.ts +9 -0
  34. package/dist/types/components/common/components/LinkWithTooltip.d.ts +7 -0
  35. package/dist/types/components/common/components/Phone.d.ts +13 -0
  36. package/dist/types/components/common/components/TableSortingArrows.d.ts +6 -0
  37. package/dist/types/components/common/components/operation/filter/OperationsFilter.d.ts +10 -0
  38. package/dist/types/components/common/components/operation/filter/OperationsFilterService.d.ts +10 -0
  39. package/dist/types/components/common/components/operation/operationsTable/OperationsTable.d.ts +11 -0
  40. package/dist/types/components/common/components/operation/types/OperationsFilterType.d.ts +18 -0
  41. package/dist/types/components/common/components/personalCodeValidator.d.ts +2 -0
  42. package/dist/types/components/common/components/tablecomponent/TableComponentUtils.d.ts +2 -0
  43. package/dist/types/components/common/constants/Constants.d.ts +72 -0
  44. package/dist/types/components/common/filterService/CommonFilterService.d.ts +6 -0
  45. package/dist/types/components/common/stateServices/BuildingStateService.d.ts +9 -0
  46. package/dist/types/components/common/stateServices/DocumentStateService.d.ts +6 -0
  47. package/dist/types/components/common/stateServices/OperationStateService.d.ts +25 -0
  48. package/dist/types/components/common/stateServices/ProceedingStateService.d.ts +9 -0
  49. package/dist/types/components/common/types/MultiselectTypeOption.d.ts +9 -0
  50. package/dist/types/components/dto/MyDocuments.d.ts +40 -0
  51. package/dist/types/components/form/checkBox.d.ts +2 -0
  52. package/dist/types/components/model/StatusTypes.d.ts +15 -0
  53. package/dist/types/components/page/detailsearch/detailsearch.d.ts +14 -0
  54. package/dist/types/components/page/detailsearch/detailsearch.test.d.ts +1 -0
  55. package/dist/types/components/page/detailsearch/filter/BuildingsDetailSearchFilter.d.ts +10 -0
  56. package/dist/types/components/page/detailsearch/filter/BuildingsDetailSearchFilter.test.d.ts +1 -0
  57. package/dist/types/components/page/detailsearch/filter/DetailSearchFilterService.d.ts +12 -0
  58. package/dist/types/components/page/detailsearch/filter/DocumentsDetailSearchFilter.d.ts +9 -0
  59. package/dist/types/components/page/detailsearch/filter/DocumentsDetailSearchFilter.test.d.ts +1 -0
  60. package/dist/types/components/page/detailsearch/filter/ProceedingsDetailSearchFilter.d.ts +6 -0
  61. package/dist/types/components/page/detailsearch/tables/DetailSearchBuildings.d.ts +9 -0
  62. package/dist/types/components/page/detailsearch/tables/DetailSearchBuildings.test.d.ts +1 -0
  63. package/dist/types/components/page/detailsearch/tables/DetailSearchDocuments.d.ts +12 -0
  64. package/dist/types/components/page/detailsearch/tables/DetailSearchDocuments.test.d.ts +1 -0
  65. package/dist/types/components/page/detailsearch/tables/DetailSearchProceedings.d.ts +11 -0
  66. package/dist/types/components/page/detailsearch/tables/DetailSearchProceedings.test.d.ts +1 -0
  67. package/dist/types/components/page/detailsearch/tables/linkGenMock.d.ts +2 -0
  68. package/dist/types/components/page/detailsearch/types/BuildingsDetailSearchFilterType.d.ts +16 -0
  69. package/dist/types/components/page/detailsearch/types/DocumentsDetailSearchFilterType.d.ts +13 -0
  70. package/dist/types/components/page/detailsearch/types/ProceedingsDetailSearchFilterType.d.ts +10 -0
  71. package/dist/types/components/page/myAdministrativeProceedings/AdministrativeProceedingsTable.d.ts +8 -0
  72. package/dist/types/components/page/myAdministrativeProceedings/MyAdministrativeProceedings.d.ts +8 -0
  73. package/dist/types/components/page/myAdministrativeProceedings/components/AdminProceedingsReminderSection.d.ts +6 -0
  74. package/dist/types/components/page/myAdministrativeProceedings/components/AdminProceedingsSection.d.ts +7 -0
  75. package/dist/types/components/page/myapprovals/myapprovals.d.ts +11 -0
  76. package/dist/types/components/page/mydocuments/common/AddNewDocumentButton.d.ts +5 -0
  77. package/dist/types/components/page/mydocuments/common/FinishedDocDotys.d.ts +1 -0
  78. package/dist/types/components/page/mydocuments/common/SigningDocDocys.d.ts +1 -0
  79. package/dist/types/components/page/mydocuments/common/WorkingDocDotys.d.ts +1 -0
  80. package/dist/types/components/page/mydocuments/documentTable/DocumentTableMoreActionsPopover.d.ts +8 -0
  81. package/dist/types/components/page/mydocuments/documentTable/DocumentsTable.d.ts +17 -0
  82. package/dist/types/components/page/mydocuments/filter/DocumentsFilter.d.ts +10 -0
  83. package/dist/types/components/page/mydocuments/filter/DocumentsFilterService.d.ts +5 -0
  84. package/dist/types/components/page/mydocuments/filter/FilterDocumentStatesBasedOnDocTypes.d.ts +9 -0
  85. package/dist/types/components/page/mydocuments/filter/FilterDocumentTypes.d.ts +1 -0
  86. package/dist/types/components/page/mydocuments/mydocuments.d.ts +8 -0
  87. package/dist/types/components/page/mydocuments/types/DocumentsFilterType.d.ts +17 -0
  88. package/dist/types/components/page/myinvolvements/filter/InvolvementsFilter.d.ts +8 -0
  89. package/dist/types/components/page/myinvolvements/myinvolvements.d.ts +11 -0
  90. package/dist/types/components/page/myopinions/myopinions.d.ts +11 -0
  91. package/dist/types/components/page/myproceedings/filter/ProceedingsFilter.d.ts +9 -0
  92. package/dist/types/components/page/myproceedings/filter/ProceedingsFilterService.d.ts +12 -0
  93. package/dist/types/components/page/myproceedings/myproceedings.d.ts +12 -0
  94. package/dist/types/components/page/myproceedings/proceedingTable/MyProceedingsTable.d.ts +11 -0
  95. package/dist/types/components/page/myproceedings/types/ProceedingsFilterType.d.ts +17 -0
  96. package/dist/types/components/services/buildings_actual_data_api_client/api.d.ts +8403 -0
  97. package/dist/types/components/services/buildings_actual_data_api_client/base.d.ts +55 -0
  98. package/dist/types/components/services/buildings_actual_data_api_client/common.d.ts +65 -0
  99. package/dist/types/components/services/buildings_actual_data_api_client/configuration.d.ts +83 -0
  100. package/dist/types/components/services/buildings_actual_data_api_client/index.d.ts +13 -0
  101. package/dist/types/components/services/classifier_api_client/api.d.ts +499 -0
  102. package/dist/types/components/services/classifier_api_client/base.d.ts +55 -0
  103. package/dist/types/components/services/classifier_api_client/common.d.ts +65 -0
  104. package/dist/types/components/services/classifier_api_client/configuration.d.ts +83 -0
  105. package/dist/types/components/services/classifier_api_client/index.d.ts +13 -0
  106. package/dist/types/components/services/document_api_client/api.d.ts +8727 -0
  107. package/dist/types/components/services/document_api_client/base.d.ts +55 -0
  108. package/dist/types/components/services/document_api_client/common.d.ts +65 -0
  109. package/dist/types/components/services/document_api_client/configuration.d.ts +83 -0
  110. package/dist/types/components/services/document_api_client/index.d.ts +13 -0
  111. package/dist/types/components/services/file_api_client/api.d.ts +782 -0
  112. package/dist/types/components/services/file_api_client/base.d.ts +55 -0
  113. package/dist/types/components/services/file_api_client/common.d.ts +65 -0
  114. package/dist/types/components/services/file_api_client/configuration.d.ts +83 -0
  115. package/dist/types/components/services/file_api_client/index.d.ts +13 -0
  116. package/dist/types/components/services/my_views_api_client/api.d.ts +1806 -0
  117. package/dist/types/components/services/my_views_api_client/base.d.ts +66 -0
  118. package/dist/types/components/services/my_views_api_client/common.d.ts +65 -0
  119. package/dist/types/components/services/my_views_api_client/configuration.d.ts +91 -0
  120. package/dist/types/components/services/my_views_api_client/index.d.ts +13 -0
  121. package/dist/types/components/services/user_api_client/api.d.ts +4706 -0
  122. package/dist/types/components/services/user_api_client/base.d.ts +54 -0
  123. package/dist/types/components/services/user_api_client/common.d.ts +65 -0
  124. package/dist/types/components/services/user_api_client/configuration.d.ts +83 -0
  125. package/dist/types/components/services/user_api_client/index.d.ts +13 -0
  126. package/dist/types/components/services/yld_esi_api_client/api.d.ts +401 -0
  127. package/dist/types/components/services/yld_esi_api_client/base.d.ts +54 -0
  128. package/dist/types/components/services/yld_esi_api_client/common.d.ts +65 -0
  129. package/dist/types/components/services/yld_esi_api_client/configuration.d.ts +83 -0
  130. package/dist/types/components/services/yld_esi_api_client/index.d.ts +13 -0
  131. package/dist/types/components/util/DateFormatUtils.d.ts +12 -0
  132. package/dist/types/components/util/link-utils.d.ts +18 -0
  133. package/dist/types/components/util/redirect-utils.d.ts +19 -0
  134. package/dist/types/hooks/useAreaProceedings.d.ts +8 -0
  135. package/dist/types/index.d.ts +1 -0
  136. package/dist/types/indexExport.d.ts +13 -0
  137. package/dist/types/mocks/kaosClassifierMock.d.ts +20 -0
  138. package/dist/types/rbac-rules.d.ts +57 -0
  139. package/dist/types/redux/actions/parametersAction.d.ts +4 -0
  140. package/dist/types/redux/api/index.d.ts +25 -0
  141. package/dist/types/redux/constants/action.d.ts +2 -0
  142. package/dist/types/redux/middleware/middleware.d.ts +4 -0
  143. package/dist/types/redux/parametersService.d.ts +5 -0
  144. package/dist/types/redux/reducers/detailSearchSlice.d.ts +6 -0
  145. package/dist/types/redux/reducers/detailSearchState.d.ts +7 -0
  146. package/dist/types/redux/reducers/documentsSlice.d.ts +6 -0
  147. package/dist/types/redux/reducers/documentsState.d.ts +8 -0
  148. package/dist/types/redux/reducers/filterSlice.d.ts +8 -0
  149. package/dist/types/redux/reducers/filterState.d.ts +11 -0
  150. package/dist/types/redux/reducers/myOperationsSlice.d.ts +5 -0
  151. package/dist/types/redux/reducers/myOperationsState.d.ts +6 -0
  152. package/dist/types/redux/reducers/parametersReducer.d.ts +2 -0
  153. package/dist/types/redux/reducers/proceedingsSlice.d.ts +5 -0
  154. package/dist/types/redux/reducers/proceedingsState.d.ts +6 -0
  155. package/dist/types/redux/reducers/reducer.d.ts +4 -0
  156. package/dist/types/redux/reducers/rootReducer.d.ts +9 -0
  157. package/dist/types/redux/store.d.ts +2 -0
  158. package/dist/types/redux/types/parameters.d.ts +3 -0
  159. package/dist/types/serviceWorker.d.ts +2 -0
  160. package/dist/types/setupTests.d.ts +2 -0
  161. package/package.json +256 -0
@@ -0,0 +1,1806 @@
1
+ /**
2
+ * EHR MyViews API
3
+ * My Views API for persons views
4
+ *
5
+ * The version of the OpenAPI document: 1.0.0
6
+ * Contact: risto.poldsalu@tietoevry.com
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 { AxiosPromise, AxiosInstance, RawAxiosRequestConfig } from 'axios';
14
+ import globalAxios from 'axios';
15
+ import type { RequestArgs } from './base';
16
+ import { BaseAPI } from './base';
17
+ /**
18
+ *
19
+ * @export
20
+ * @interface BaseMyDocument
21
+ */
22
+ export interface BaseMyDocument {
23
+ /**
24
+ *
25
+ * @type {number}
26
+ * @memberof BaseMyDocument
27
+ */
28
+ 'docId'?: number;
29
+ /**
30
+ *
31
+ * @type {Date}
32
+ * @memberof BaseMyDocument
33
+ */
34
+ 'docDate'?: Date;
35
+ /**
36
+ *
37
+ * @type {Date}
38
+ * @memberof BaseMyDocument
39
+ */
40
+ 'regDate'?: Date;
41
+ /**
42
+ *
43
+ * @type {Date}
44
+ * @memberof BaseMyDocument
45
+ */
46
+ 'deadlineDate'?: Date;
47
+ /**
48
+ *
49
+ * @type {string}
50
+ * @memberof BaseMyDocument
51
+ */
52
+ 'docNr'?: string;
53
+ /**
54
+ *
55
+ * @type {string}
56
+ * @memberof BaseMyDocument
57
+ */
58
+ 'documentType'?: string;
59
+ /**
60
+ *
61
+ * @type {string}
62
+ * @memberof BaseMyDocument
63
+ */
64
+ 'doty'?: string;
65
+ /**
66
+ *
67
+ * @type {Array<string>}
68
+ * @memberof BaseMyDocument
69
+ */
70
+ 'buildingName'?: Array<string>;
71
+ /**
72
+ *
73
+ * @type {Array<string>}
74
+ * @memberof BaseMyDocument
75
+ */
76
+ 'ehrCode'?: Array<string>;
77
+ /**
78
+ *
79
+ * @type {Array<string>}
80
+ * @memberof BaseMyDocument
81
+ */
82
+ 'buildingAddress'?: Array<string>;
83
+ /**
84
+ *
85
+ * @type {string}
86
+ * @memberof BaseMyDocument
87
+ */
88
+ 'state'?: string;
89
+ /**
90
+ *
91
+ * @type {string}
92
+ * @memberof BaseMyDocument
93
+ */
94
+ 'stateCode'?: string;
95
+ /**
96
+ *
97
+ * @type {string}
98
+ * @memberof BaseMyDocument
99
+ */
100
+ 'proceedingNr'?: string;
101
+ /**
102
+ *
103
+ * @type {Array<string>}
104
+ * @memberof BaseMyDocument
105
+ */
106
+ 'presenter'?: Array<string>;
107
+ /**
108
+ *
109
+ * @type {Array<string>}
110
+ * @memberof BaseMyDocument
111
+ */
112
+ 'connectedPersonId'?: Array<string>;
113
+ /**
114
+ *
115
+ * @type {string}
116
+ * @memberof BaseMyDocument
117
+ */
118
+ 'institutionId'?: string;
119
+ /**
120
+ *
121
+ * @type {number}
122
+ * @memberof BaseMyDocument
123
+ */
124
+ 'generatedFileId'?: number;
125
+ }
126
+ /**
127
+ *
128
+ * @export
129
+ * @interface BuildingDetail
130
+ */
131
+ export interface BuildingDetail {
132
+ /**
133
+ *
134
+ * @type {number}
135
+ * @memberof BuildingDetail
136
+ */
137
+ 'buildingId'?: number;
138
+ /**
139
+ *
140
+ * @type {string}
141
+ * @memberof BuildingDetail
142
+ */
143
+ 'ehrCode'?: string;
144
+ /**
145
+ *
146
+ * @type {string}
147
+ * @memberof BuildingDetail
148
+ */
149
+ 'buildingName'?: string;
150
+ /**
151
+ *
152
+ * @type {string}
153
+ * @memberof BuildingDetail
154
+ */
155
+ 'state'?: string;
156
+ /**
157
+ *
158
+ * @type {string}
159
+ * @memberof BuildingDetail
160
+ */
161
+ 'stateCode'?: string;
162
+ /**
163
+ *
164
+ * @type {string}
165
+ * @memberof BuildingDetail
166
+ */
167
+ 'buildingAddress'?: string;
168
+ /**
169
+ *
170
+ * @type {number}
171
+ * @memberof BuildingDetail
172
+ */
173
+ 'firstUseDate'?: number;
174
+ /**
175
+ *
176
+ * @type {string}
177
+ * @memberof BuildingDetail
178
+ */
179
+ 'buildingType'?: string;
180
+ /**
181
+ *
182
+ * @type {number}
183
+ * @memberof BuildingDetail
184
+ */
185
+ 'purposeOfUseCode'?: number;
186
+ /**
187
+ *
188
+ * @type {string}
189
+ * @memberof BuildingDetail
190
+ */
191
+ 'purposeOfUse'?: string;
192
+ /**
193
+ *
194
+ * @type {string}
195
+ * @memberof BuildingDetail
196
+ */
197
+ 'ownershipType'?: string;
198
+ /**
199
+ *
200
+ * @type {Array<string>}
201
+ * @memberof BuildingDetail
202
+ */
203
+ 'owners'?: Array<string>;
204
+ /**
205
+ *
206
+ * @type {number}
207
+ * @memberof BuildingDetail
208
+ */
209
+ 'fullCount'?: number;
210
+ }
211
+ /**
212
+ *
213
+ * @export
214
+ * @interface BuildingSearchDto
215
+ */
216
+ export interface BuildingSearchDto {
217
+ /**
218
+ *
219
+ * @type {string}
220
+ * @memberof BuildingSearchDto
221
+ */
222
+ 'buildingLocation'?: string;
223
+ /**
224
+ *
225
+ * @type {string}
226
+ * @memberof BuildingSearchDto
227
+ */
228
+ 'buildingName'?: string;
229
+ /**
230
+ *
231
+ * @type {Array<string>}
232
+ * @memberof BuildingSearchDto
233
+ */
234
+ 'buildingStates'?: Array<string>;
235
+ /**
236
+ *
237
+ * @type {DocumentSearchDateDto}
238
+ * @memberof BuildingSearchDto
239
+ */
240
+ 'firstUseDate'?: DocumentSearchDateDto;
241
+ /**
242
+ *
243
+ * @type {boolean}
244
+ * @memberof BuildingSearchDto
245
+ */
246
+ 'firstUseMissing'?: boolean;
247
+ /**
248
+ *
249
+ * @type {Array<string>}
250
+ * @memberof BuildingSearchDto
251
+ */
252
+ 'buildingType'?: Array<string>;
253
+ /**
254
+ *
255
+ * @type {Array<string>}
256
+ * @memberof BuildingSearchDto
257
+ */
258
+ 'purposeOfUse'?: Array<string>;
259
+ /**
260
+ *
261
+ * @type {Array<string>}
262
+ * @memberof BuildingSearchDto
263
+ */
264
+ 'ownershipType'?: Array<string>;
265
+ /**
266
+ *
267
+ * @type {number}
268
+ * @memberof BuildingSearchDto
269
+ */
270
+ 'owner'?: number;
271
+ /**
272
+ *
273
+ * @type {Array<string>}
274
+ * @memberof BuildingSearchDto
275
+ */
276
+ 'orderBy'?: Array<string>;
277
+ /**
278
+ *
279
+ * @type {number}
280
+ * @memberof BuildingSearchDto
281
+ */
282
+ 'offset'?: number;
283
+ /**
284
+ *
285
+ * @type {number}
286
+ * @memberof BuildingSearchDto
287
+ */
288
+ 'limit'?: number;
289
+ }
290
+ /**
291
+ *
292
+ * @export
293
+ * @interface DocDetail
294
+ */
295
+ export interface DocDetail {
296
+ /**
297
+ *
298
+ * @type {number}
299
+ * @memberof DocDetail
300
+ */
301
+ 'docId'?: number;
302
+ /**
303
+ *
304
+ * @type {Date}
305
+ * @memberof DocDetail
306
+ */
307
+ 'docDate'?: Date;
308
+ /**
309
+ *
310
+ * @type {Date}
311
+ * @memberof DocDetail
312
+ */
313
+ 'regDate'?: Date;
314
+ /**
315
+ *
316
+ * @type {Date}
317
+ * @memberof DocDetail
318
+ */
319
+ 'deadlineDate'?: Date;
320
+ /**
321
+ *
322
+ * @type {string}
323
+ * @memberof DocDetail
324
+ */
325
+ 'docNr'?: string;
326
+ /**
327
+ *
328
+ * @type {string}
329
+ * @memberof DocDetail
330
+ */
331
+ 'documentType'?: string;
332
+ /**
333
+ *
334
+ * @type {number}
335
+ * @memberof DocDetail
336
+ */
337
+ 'doty'?: number;
338
+ /**
339
+ *
340
+ * @type {Array<string>}
341
+ * @memberof DocDetail
342
+ */
343
+ 'buildingName'?: Array<string>;
344
+ /**
345
+ *
346
+ * @type {Array<string>}
347
+ * @memberof DocDetail
348
+ */
349
+ 'ehrCode'?: Array<string>;
350
+ /**
351
+ *
352
+ * @type {Array<string>}
353
+ * @memberof DocDetail
354
+ */
355
+ 'buildingAddress'?: Array<string>;
356
+ /**
357
+ *
358
+ * @type {string}
359
+ * @memberof DocDetail
360
+ */
361
+ 'state'?: string;
362
+ /**
363
+ *
364
+ * @type {string}
365
+ * @memberof DocDetail
366
+ */
367
+ 'stateCode'?: string;
368
+ /**
369
+ *
370
+ * @type {string}
371
+ * @memberof DocDetail
372
+ */
373
+ 'proceedingNr'?: string;
374
+ /**
375
+ *
376
+ * @type {Array<string>}
377
+ * @memberof DocDetail
378
+ */
379
+ 'presenter'?: Array<string>;
380
+ /**
381
+ *
382
+ * @type {number}
383
+ * @memberof DocDetail
384
+ */
385
+ 'institutionId'?: number;
386
+ /**
387
+ *
388
+ * @type {number}
389
+ * @memberof DocDetail
390
+ */
391
+ 'fullCount'?: number;
392
+ }
393
+ /**
394
+ *
395
+ * @export
396
+ * @interface DocumentBaseQueryDto
397
+ */
398
+ export interface DocumentBaseQueryDto {
399
+ /**
400
+ *
401
+ * @type {number}
402
+ * @memberof DocumentBaseQueryDto
403
+ */
404
+ 'userId'?: number;
405
+ /**
406
+ *
407
+ * @type {number}
408
+ * @memberof DocumentBaseQueryDto
409
+ */
410
+ 'personId'?: number;
411
+ /**
412
+ *
413
+ * @type {Array<string>}
414
+ * @memberof DocumentBaseQueryDto
415
+ */
416
+ 'dotys'?: Array<string>;
417
+ /**
418
+ *
419
+ * @type {Array<string>}
420
+ * @memberof DocumentBaseQueryDto
421
+ */
422
+ 'states'?: Array<string>;
423
+ /**
424
+ *
425
+ * @type {Array<string>}
426
+ * @memberof DocumentBaseQueryDto
427
+ */
428
+ 'roles'?: Array<string>;
429
+ /**
430
+ *
431
+ * @type {Array<string>}
432
+ * @memberof DocumentBaseQueryDto
433
+ */
434
+ 'orderBy'?: Array<string>;
435
+ /**
436
+ *
437
+ * @type {number}
438
+ * @memberof DocumentBaseQueryDto
439
+ */
440
+ 'offset'?: number;
441
+ }
442
+ /**
443
+ *
444
+ * @export
445
+ * @interface DocumentQueryDto
446
+ */
447
+ export interface DocumentQueryDto {
448
+ /**
449
+ *
450
+ * @type {number}
451
+ * @memberof DocumentQueryDto
452
+ */
453
+ 'userId'?: number;
454
+ /**
455
+ *
456
+ * @type {number}
457
+ * @memberof DocumentQueryDto
458
+ */
459
+ 'personId'?: number;
460
+ /**
461
+ *
462
+ * @type {string}
463
+ * @memberof DocumentQueryDto
464
+ */
465
+ 'doty'?: string;
466
+ /**
467
+ *
468
+ * @type {Array<string>}
469
+ * @memberof DocumentQueryDto
470
+ */
471
+ 'orderBy'?: Array<string>;
472
+ /**
473
+ *
474
+ * @type {number}
475
+ * @memberof DocumentQueryDto
476
+ */
477
+ 'offset'?: number;
478
+ }
479
+ /**
480
+ *
481
+ * @export
482
+ * @interface DocumentSearchDateDto
483
+ */
484
+ export interface DocumentSearchDateDto {
485
+ /**
486
+ *
487
+ * @type {string}
488
+ * @memberof DocumentSearchDateDto
489
+ */
490
+ 'from'?: string;
491
+ /**
492
+ *
493
+ * @type {string}
494
+ * @memberof DocumentSearchDateDto
495
+ */
496
+ 'to'?: string;
497
+ }
498
+ /**
499
+ *
500
+ * @export
501
+ * @interface DocumentSearchDto
502
+ */
503
+ export interface DocumentSearchDto {
504
+ /**
505
+ *
506
+ * @type {string}
507
+ * @memberof DocumentSearchDto
508
+ */
509
+ 'buildingLocation'?: string;
510
+ /**
511
+ *
512
+ * @type {string}
513
+ * @memberof DocumentSearchDto
514
+ */
515
+ 'buildingName'?: string;
516
+ /**
517
+ *
518
+ * @type {Array<string>}
519
+ * @memberof DocumentSearchDto
520
+ */
521
+ 'institutions'?: Array<string>;
522
+ /**
523
+ *
524
+ * @type {DocumentSearchDateDto}
525
+ * @memberof DocumentSearchDto
526
+ */
527
+ 'documentDate'?: DocumentSearchDateDto;
528
+ /**
529
+ *
530
+ * @type {Array<string>}
531
+ * @memberof DocumentSearchDto
532
+ */
533
+ 'documentType'?: Array<string>;
534
+ /**
535
+ *
536
+ * @type {string}
537
+ * @memberof DocumentSearchDto
538
+ */
539
+ 'documentNr'?: string;
540
+ /**
541
+ *
542
+ * @type {Array<string>}
543
+ * @memberof DocumentSearchDto
544
+ */
545
+ 'documentState'?: Array<string>;
546
+ /**
547
+ *
548
+ * @type {number}
549
+ * @memberof DocumentSearchDto
550
+ */
551
+ 'connectedPerson'?: number;
552
+ /**
553
+ *
554
+ * @type {Array<string>}
555
+ * @memberof DocumentSearchDto
556
+ */
557
+ 'orderBy'?: Array<string>;
558
+ /**
559
+ *
560
+ * @type {number}
561
+ * @memberof DocumentSearchDto
562
+ */
563
+ 'offset'?: number;
564
+ /**
565
+ *
566
+ * @type {number}
567
+ * @memberof DocumentSearchDto
568
+ */
569
+ 'limit'?: number;
570
+ }
571
+ /**
572
+ *
573
+ * @export
574
+ * @interface MyDocumentsDto
575
+ */
576
+ export interface MyDocumentsDto {
577
+ /**
578
+ *
579
+ * @type {string}
580
+ * @memberof MyDocumentsDto
581
+ */
582
+ 'docId'?: string;
583
+ /**
584
+ *
585
+ * @type {Date}
586
+ * @memberof MyDocumentsDto
587
+ */
588
+ 'docDate'?: Date;
589
+ /**
590
+ *
591
+ * @type {Date}
592
+ * @memberof MyDocumentsDto
593
+ */
594
+ 'regDate'?: Date;
595
+ /**
596
+ *
597
+ * @type {Date}
598
+ * @memberof MyDocumentsDto
599
+ */
600
+ 'deadline'?: Date;
601
+ /**
602
+ *
603
+ * @type {string}
604
+ * @memberof MyDocumentsDto
605
+ */
606
+ 'docNr'?: string;
607
+ /**
608
+ *
609
+ * @type {string}
610
+ * @memberof MyDocumentsDto
611
+ */
612
+ 'documentType'?: string;
613
+ /**
614
+ *
615
+ * @type {string}
616
+ * @memberof MyDocumentsDto
617
+ */
618
+ 'doty'?: string;
619
+ /**
620
+ *
621
+ * @type {Array<string>}
622
+ * @memberof MyDocumentsDto
623
+ */
624
+ 'buildingName'?: Array<string>;
625
+ /**
626
+ *
627
+ * @type {Array<string>}
628
+ * @memberof MyDocumentsDto
629
+ */
630
+ 'ehrCode'?: Array<string>;
631
+ /**
632
+ *
633
+ * @type {Array<string>}
634
+ * @memberof MyDocumentsDto
635
+ */
636
+ 'buildingAddress'?: Array<string>;
637
+ /**
638
+ *
639
+ * @type {string}
640
+ * @memberof MyDocumentsDto
641
+ */
642
+ 'state'?: string;
643
+ /**
644
+ *
645
+ * @type {string}
646
+ * @memberof MyDocumentsDto
647
+ */
648
+ 'stateCode'?: string;
649
+ /**
650
+ *
651
+ * @type {string}
652
+ * @memberof MyDocumentsDto
653
+ */
654
+ 'proceedingNr'?: string;
655
+ /**
656
+ *
657
+ * @type {string}
658
+ * @memberof MyDocumentsDto
659
+ */
660
+ 'presenter'?: string;
661
+ /**
662
+ *
663
+ * @type {string}
664
+ * @memberof MyDocumentsDto
665
+ */
666
+ 'presenterId'?: string;
667
+ /**
668
+ *
669
+ * @type {string}
670
+ * @memberof MyDocumentsDto
671
+ */
672
+ 'institutionId'?: string;
673
+ }
674
+ /**
675
+ *
676
+ * @export
677
+ * @interface MyOperationDto
678
+ */
679
+ export interface MyOperationDto {
680
+ /**
681
+ *
682
+ * @type {number}
683
+ * @memberof MyOperationDto
684
+ */
685
+ 'id'?: number;
686
+ /**
687
+ *
688
+ * @type {Date}
689
+ * @memberof MyOperationDto
690
+ */
691
+ 'invitationDate'?: Date;
692
+ /**
693
+ *
694
+ * @type {Date}
695
+ * @memberof MyOperationDto
696
+ */
697
+ 'deadline'?: Date;
698
+ /**
699
+ *
700
+ * @type {string}
701
+ * @memberof MyOperationDto
702
+ */
703
+ 'proceedingNr'?: string;
704
+ /**
705
+ *
706
+ * @type {string}
707
+ * @memberof MyOperationDto
708
+ */
709
+ 'typeCode'?: string;
710
+ /**
711
+ *
712
+ * @type {string}
713
+ * @memberof MyOperationDto
714
+ */
715
+ 'state'?: string;
716
+ /**
717
+ *
718
+ * @type {string}
719
+ * @memberof MyOperationDto
720
+ */
721
+ 'stateCode'?: string;
722
+ /**
723
+ *
724
+ * @type {string}
725
+ * @memberof MyOperationDto
726
+ */
727
+ 'operationExecutor'?: string;
728
+ /**
729
+ *
730
+ * @type {number}
731
+ * @memberof MyOperationDto
732
+ */
733
+ 'operationExecutorId'?: number;
734
+ /**
735
+ *
736
+ * @type {number}
737
+ * @memberof MyOperationDto
738
+ */
739
+ 'operationExecutorPersonId'?: number;
740
+ /**
741
+ *
742
+ * @type {string}
743
+ * @memberof MyOperationDto
744
+ */
745
+ 'document'?: string;
746
+ /**
747
+ *
748
+ * @type {string}
749
+ * @memberof MyOperationDto
750
+ */
751
+ 'doty'?: string;
752
+ /**
753
+ *
754
+ * @type {Array<string>}
755
+ * @memberof MyOperationDto
756
+ */
757
+ 'buildingName'?: Array<string>;
758
+ /**
759
+ *
760
+ * @type {Array<string>}
761
+ * @memberof MyOperationDto
762
+ */
763
+ 'ehrCode'?: Array<string>;
764
+ /**
765
+ *
766
+ * @type {Array<string>}
767
+ * @memberof MyOperationDto
768
+ */
769
+ 'address'?: Array<string>;
770
+ /**
771
+ *
772
+ * @type {number}
773
+ * @memberof MyOperationDto
774
+ */
775
+ 'institutionId'?: number;
776
+ /**
777
+ *
778
+ * @type {string}
779
+ * @memberof MyOperationDto
780
+ */
781
+ 'institution'?: string;
782
+ /**
783
+ *
784
+ * @type {string}
785
+ * @memberof MyOperationDto
786
+ */
787
+ 'supervisor'?: string;
788
+ /**
789
+ *
790
+ * @type {number}
791
+ * @memberof MyOperationDto
792
+ */
793
+ 'supervisorId'?: number;
794
+ /**
795
+ *
796
+ * @type {number}
797
+ * @memberof MyOperationDto
798
+ */
799
+ 'supervisorJurId'?: number;
800
+ }
801
+ /**
802
+ *
803
+ * @export
804
+ * @interface MyProceedingsDto
805
+ */
806
+ export interface MyProceedingsDto {
807
+ /**
808
+ *
809
+ * @type {number}
810
+ * @memberof MyProceedingsDto
811
+ */
812
+ 'id'?: number;
813
+ /**
814
+ *
815
+ * @type {string}
816
+ * @memberof MyProceedingsDto
817
+ */
818
+ 'operationsCount'?: string;
819
+ /**
820
+ *
821
+ * @type {string}
822
+ * @memberof MyProceedingsDto
823
+ */
824
+ 'proceedingCircleNr'?: string;
825
+ /**
826
+ *
827
+ * @type {Array<string>}
828
+ * @memberof MyProceedingsDto
829
+ */
830
+ 'ehrCode'?: Array<string>;
831
+ /**
832
+ *
833
+ * @type {Array<string>}
834
+ * @memberof MyProceedingsDto
835
+ */
836
+ 'buildingName'?: Array<string>;
837
+ /**
838
+ *
839
+ * @type {Array<string>}
840
+ * @memberof MyProceedingsDto
841
+ */
842
+ 'address'?: Array<string>;
843
+ /**
844
+ *
845
+ * @type {string}
846
+ * @memberof MyProceedingsDto
847
+ */
848
+ 'archived'?: string;
849
+ /**
850
+ *
851
+ * @type {string}
852
+ * @memberof MyProceedingsDto
853
+ */
854
+ 'supervisor'?: string;
855
+ /**
856
+ *
857
+ * @type {number}
858
+ * @memberof MyProceedingsDto
859
+ */
860
+ 'supervisorId'?: number;
861
+ /**
862
+ *
863
+ * @type {number}
864
+ * @memberof MyProceedingsDto
865
+ */
866
+ 'supervisorJurId'?: number;
867
+ /**
868
+ *
869
+ * @type {Date}
870
+ * @memberof MyProceedingsDto
871
+ */
872
+ 'dateStart'?: Date;
873
+ /**
874
+ *
875
+ * @type {string}
876
+ * @memberof MyProceedingsDto
877
+ */
878
+ 'proceedingName'?: string;
879
+ /**
880
+ *
881
+ * @type {string}
882
+ * @memberof MyProceedingsDto
883
+ */
884
+ 'proceedingNr'?: string;
885
+ /**
886
+ *
887
+ * @type {number}
888
+ * @memberof MyProceedingsDto
889
+ */
890
+ 'proceedingLength'?: number;
891
+ /**
892
+ *
893
+ * @type {string}
894
+ * @memberof MyProceedingsDto
895
+ */
896
+ 'state'?: string;
897
+ /**
898
+ *
899
+ * @type {string}
900
+ * @memberof MyProceedingsDto
901
+ */
902
+ 'stateCode'?: string;
903
+ /**
904
+ *
905
+ * @type {string}
906
+ * @memberof MyProceedingsDto
907
+ */
908
+ 'documentType'?: string;
909
+ /**
910
+ *
911
+ * @type {string}
912
+ * @memberof MyProceedingsDto
913
+ */
914
+ 'documentPresenter'?: string;
915
+ /**
916
+ *
917
+ * @type {string}
918
+ * @memberof MyProceedingsDto
919
+ */
920
+ 'document'?: string;
921
+ /**
922
+ *
923
+ * @type {string}
924
+ * @memberof MyProceedingsDto
925
+ */
926
+ 'doty'?: string;
927
+ /**
928
+ *
929
+ * @type {Date}
930
+ * @memberof MyProceedingsDto
931
+ */
932
+ 'deadline'?: Date;
933
+ /**
934
+ *
935
+ * @type {Date}
936
+ * @memberof MyProceedingsDto
937
+ */
938
+ 'innerCommentDeadline'?: Date;
939
+ /**
940
+ *
941
+ * @type {Date}
942
+ * @memberof MyProceedingsDto
943
+ */
944
+ 'lastEventDate'?: Date;
945
+ }
946
+ /**
947
+ *
948
+ * @export
949
+ * @interface MyProceedingsRequestDto
950
+ */
951
+ export interface MyProceedingsRequestDto {
952
+ /**
953
+ *
954
+ * @type {number}
955
+ * @memberof MyProceedingsRequestDto
956
+ */
957
+ 'userId'?: number;
958
+ /**
959
+ *
960
+ * @type {number}
961
+ * @memberof MyProceedingsRequestDto
962
+ */
963
+ 'personId'?: number;
964
+ /**
965
+ *
966
+ * @type {Array<string>}
967
+ * @memberof MyProceedingsRequestDto
968
+ */
969
+ 'states'?: Array<string>;
970
+ /**
971
+ *
972
+ * @type {Array<string>}
973
+ * @memberof MyProceedingsRequestDto
974
+ */
975
+ 'dotys'?: Array<string>;
976
+ }
977
+ /**
978
+ *
979
+ * @export
980
+ * @interface OperationQueryDto
981
+ */
982
+ export interface OperationQueryDto {
983
+ /**
984
+ *
985
+ * @type {number}
986
+ * @memberof OperationQueryDto
987
+ */
988
+ 'userId'?: number;
989
+ /**
990
+ *
991
+ * @type {number}
992
+ * @memberof OperationQueryDto
993
+ */
994
+ 'personId'?: number;
995
+ /**
996
+ *
997
+ * @type {Array<string>}
998
+ * @memberof OperationQueryDto
999
+ */
1000
+ 'type'?: Array<string>;
1001
+ /**
1002
+ *
1003
+ * @type {Array<string>}
1004
+ * @memberof OperationQueryDto
1005
+ */
1006
+ 'states'?: Array<string>;
1007
+ /**
1008
+ *
1009
+ * @type {Array<string>}
1010
+ * @memberof OperationQueryDto
1011
+ */
1012
+ 'orderBy'?: Array<string>;
1013
+ /**
1014
+ *
1015
+ * @type {number}
1016
+ * @memberof OperationQueryDto
1017
+ */
1018
+ 'offset'?: number;
1019
+ }
1020
+ /**
1021
+ *
1022
+ * @export
1023
+ * @interface ProceedingDetail
1024
+ */
1025
+ export interface ProceedingDetail {
1026
+ /**
1027
+ *
1028
+ * @type {number}
1029
+ * @memberof ProceedingDetail
1030
+ */
1031
+ 'proceedingId'?: number;
1032
+ /**
1033
+ *
1034
+ * @type {Date}
1035
+ * @memberof ProceedingDetail
1036
+ */
1037
+ 'dateStart'?: Date;
1038
+ /**
1039
+ *
1040
+ * @type {Date}
1041
+ * @memberof ProceedingDetail
1042
+ */
1043
+ 'dateEnd'?: Date;
1044
+ /**
1045
+ *
1046
+ * @type {Date}
1047
+ * @memberof ProceedingDetail
1048
+ */
1049
+ 'proceedingDeadLine'?: Date;
1050
+ /**
1051
+ *
1052
+ * @type {string}
1053
+ * @memberof ProceedingDetail
1054
+ */
1055
+ 'proceedingNr'?: string;
1056
+ /**
1057
+ *
1058
+ * @type {string}
1059
+ * @memberof ProceedingDetail
1060
+ */
1061
+ 'proceedingState'?: string;
1062
+ /**
1063
+ *
1064
+ * @type {string}
1065
+ * @memberof ProceedingDetail
1066
+ */
1067
+ 'proceedingStateCode'?: string;
1068
+ /**
1069
+ *
1070
+ * @type {string}
1071
+ * @memberof ProceedingDetail
1072
+ */
1073
+ 'docNr'?: string;
1074
+ /**
1075
+ *
1076
+ * @type {string}
1077
+ * @memberof ProceedingDetail
1078
+ */
1079
+ 'documentType'?: string;
1080
+ /**
1081
+ *
1082
+ * @type {string}
1083
+ * @memberof ProceedingDetail
1084
+ */
1085
+ 'proceedingName'?: string;
1086
+ /**
1087
+ *
1088
+ * @type {number}
1089
+ * @memberof ProceedingDetail
1090
+ */
1091
+ 'institutionId'?: number;
1092
+ /**
1093
+ *
1094
+ * @type {number}
1095
+ * @memberof ProceedingDetail
1096
+ */
1097
+ 'supervisorId'?: number;
1098
+ /**
1099
+ *
1100
+ * @type {string}
1101
+ * @memberof ProceedingDetail
1102
+ */
1103
+ 'supervisorName'?: string;
1104
+ /**
1105
+ *
1106
+ * @type {string}
1107
+ * @memberof ProceedingDetail
1108
+ */
1109
+ 'archived'?: string;
1110
+ /**
1111
+ *
1112
+ * @type {Array<string>}
1113
+ * @memberof ProceedingDetail
1114
+ */
1115
+ 'buildingName'?: Array<string>;
1116
+ /**
1117
+ *
1118
+ * @type {Array<string>}
1119
+ * @memberof ProceedingDetail
1120
+ */
1121
+ 'ehrCode'?: Array<string>;
1122
+ /**
1123
+ *
1124
+ * @type {Array<string>}
1125
+ * @memberof ProceedingDetail
1126
+ */
1127
+ 'buildingAddress'?: Array<string>;
1128
+ /**
1129
+ *
1130
+ * @type {number}
1131
+ * @memberof ProceedingDetail
1132
+ */
1133
+ 'fullCount'?: number;
1134
+ }
1135
+ /**
1136
+ *
1137
+ * @export
1138
+ * @interface ProceedingQueryDto
1139
+ */
1140
+ export interface ProceedingQueryDto {
1141
+ /**
1142
+ *
1143
+ * @type {number}
1144
+ * @memberof ProceedingQueryDto
1145
+ */
1146
+ 'institutionId'?: number;
1147
+ /**
1148
+ *
1149
+ * @type {number}
1150
+ * @memberof ProceedingQueryDto
1151
+ */
1152
+ 'userId'?: number;
1153
+ /**
1154
+ *
1155
+ * @type {boolean}
1156
+ * @memberof ProceedingQueryDto
1157
+ */
1158
+ 'showProceedingsWithoutDocument'?: boolean;
1159
+ /**
1160
+ *
1161
+ * @type {Array<string>}
1162
+ * @memberof ProceedingQueryDto
1163
+ */
1164
+ 'dotyIds'?: Array<string>;
1165
+ }
1166
+ /**
1167
+ *
1168
+ * @export
1169
+ * @interface ProceedingSearchDto
1170
+ */
1171
+ export interface ProceedingSearchDto {
1172
+ /**
1173
+ *
1174
+ * @type {Array<string>}
1175
+ * @memberof ProceedingSearchDto
1176
+ */
1177
+ 'documentType'?: Array<string>;
1178
+ /**
1179
+ *
1180
+ * @type {string}
1181
+ * @memberof ProceedingSearchDto
1182
+ */
1183
+ 'documentNr'?: string;
1184
+ /**
1185
+ *
1186
+ * @type {DocumentSearchDateDto}
1187
+ * @memberof ProceedingSearchDto
1188
+ */
1189
+ 'proceedingDate'?: DocumentSearchDateDto;
1190
+ /**
1191
+ *
1192
+ * @type {string}
1193
+ * @memberof ProceedingSearchDto
1194
+ */
1195
+ 'proceedingNr'?: string;
1196
+ /**
1197
+ *
1198
+ * @type {Array<string>}
1199
+ * @memberof ProceedingSearchDto
1200
+ */
1201
+ 'institutions'?: Array<string>;
1202
+ /**
1203
+ *
1204
+ * @type {Array<string>}
1205
+ * @memberof ProceedingSearchDto
1206
+ */
1207
+ 'orderBy'?: Array<string>;
1208
+ /**
1209
+ *
1210
+ * @type {number}
1211
+ * @memberof ProceedingSearchDto
1212
+ */
1213
+ 'offset'?: number;
1214
+ /**
1215
+ *
1216
+ * @type {number}
1217
+ * @memberof ProceedingSearchDto
1218
+ */
1219
+ 'limit'?: number;
1220
+ }
1221
+ /**
1222
+ * BaseMyDocumentsApi - axios parameter creator
1223
+ * @export
1224
+ */
1225
+ export declare const BaseMyDocumentsApiAxiosParamCreator: (configuration?: Configuration) => {
1226
+ /**
1227
+ *
1228
+ * @param {DocumentBaseQueryDto} documentBaseQueryDto
1229
+ * @param {*} [options] Override http request option.
1230
+ * @throws {RequiredError}
1231
+ */
1232
+ findIncomingBaseDocuments: (documentBaseQueryDto: DocumentBaseQueryDto, options?: RawAxiosRequestConfig) => Promise<RequestArgs>;
1233
+ /**
1234
+ *
1235
+ * @param {DocumentBaseQueryDto} documentBaseQueryDto
1236
+ * @param {*} [options] Override http request option.
1237
+ * @throws {RequiredError}
1238
+ */
1239
+ findWorkingDocuments: (documentBaseQueryDto: DocumentBaseQueryDto, options?: RawAxiosRequestConfig) => Promise<RequestArgs>;
1240
+ };
1241
+ /**
1242
+ * BaseMyDocumentsApi - functional programming interface
1243
+ * @export
1244
+ */
1245
+ export declare const BaseMyDocumentsApiFp: (configuration?: Configuration) => {
1246
+ /**
1247
+ *
1248
+ * @param {DocumentBaseQueryDto} documentBaseQueryDto
1249
+ * @param {*} [options] Override http request option.
1250
+ * @throws {RequiredError}
1251
+ */
1252
+ findIncomingBaseDocuments(documentBaseQueryDto: DocumentBaseQueryDto, options?: RawAxiosRequestConfig): Promise<(axios?: AxiosInstance, basePath?: string) => AxiosPromise<Array<BaseMyDocument>>>;
1253
+ /**
1254
+ *
1255
+ * @param {DocumentBaseQueryDto} documentBaseQueryDto
1256
+ * @param {*} [options] Override http request option.
1257
+ * @throws {RequiredError}
1258
+ */
1259
+ findWorkingDocuments(documentBaseQueryDto: DocumentBaseQueryDto, options?: RawAxiosRequestConfig): Promise<(axios?: AxiosInstance, basePath?: string) => AxiosPromise<Array<BaseMyDocument>>>;
1260
+ };
1261
+ /**
1262
+ * BaseMyDocumentsApi - factory interface
1263
+ * @export
1264
+ */
1265
+ export declare const BaseMyDocumentsApiFactory: (configuration?: Configuration, basePath?: string, axios?: AxiosInstance) => {
1266
+ /**
1267
+ *
1268
+ * @param {DocumentBaseQueryDto} documentBaseQueryDto
1269
+ * @param {*} [options] Override http request option.
1270
+ * @throws {RequiredError}
1271
+ */
1272
+ findIncomingBaseDocuments(documentBaseQueryDto: DocumentBaseQueryDto, options?: RawAxiosRequestConfig): AxiosPromise<Array<BaseMyDocument>>;
1273
+ /**
1274
+ *
1275
+ * @param {DocumentBaseQueryDto} documentBaseQueryDto
1276
+ * @param {*} [options] Override http request option.
1277
+ * @throws {RequiredError}
1278
+ */
1279
+ findWorkingDocuments(documentBaseQueryDto: DocumentBaseQueryDto, options?: RawAxiosRequestConfig): AxiosPromise<Array<BaseMyDocument>>;
1280
+ };
1281
+ /**
1282
+ * BaseMyDocumentsApi - object-oriented interface
1283
+ * @export
1284
+ * @class BaseMyDocumentsApi
1285
+ * @extends {BaseAPI}
1286
+ */
1287
+ export declare class BaseMyDocumentsApi extends BaseAPI {
1288
+ /**
1289
+ *
1290
+ * @param {DocumentBaseQueryDto} documentBaseQueryDto
1291
+ * @param {*} [options] Override http request option.
1292
+ * @throws {RequiredError}
1293
+ * @memberof BaseMyDocumentsApi
1294
+ */
1295
+ findIncomingBaseDocuments(documentBaseQueryDto: DocumentBaseQueryDto, options?: RawAxiosRequestConfig): Promise<globalAxios.AxiosResponse<BaseMyDocument[], any>>;
1296
+ /**
1297
+ *
1298
+ * @param {DocumentBaseQueryDto} documentBaseQueryDto
1299
+ * @param {*} [options] Override http request option.
1300
+ * @throws {RequiredError}
1301
+ * @memberof BaseMyDocumentsApi
1302
+ */
1303
+ findWorkingDocuments(documentBaseQueryDto: DocumentBaseQueryDto, options?: RawAxiosRequestConfig): Promise<globalAxios.AxiosResponse<BaseMyDocument[], any>>;
1304
+ }
1305
+ /**
1306
+ * DetailSearchesApi - axios parameter creator
1307
+ * @export
1308
+ */
1309
+ export declare const DetailSearchesApiAxiosParamCreator: (configuration?: Configuration) => {
1310
+ /**
1311
+ *
1312
+ * @param {BuildingSearchDto} buildingSearchDto
1313
+ * @param {*} [options] Override http request option.
1314
+ * @throws {RequiredError}
1315
+ */
1316
+ searchDetailBuildings: (buildingSearchDto: BuildingSearchDto, options?: RawAxiosRequestConfig) => Promise<RequestArgs>;
1317
+ /**
1318
+ *
1319
+ * @param {DocumentSearchDto} documentSearchDto
1320
+ * @param {*} [options] Override http request option.
1321
+ * @throws {RequiredError}
1322
+ */
1323
+ searchDetailDocuments: (documentSearchDto: DocumentSearchDto, options?: RawAxiosRequestConfig) => Promise<RequestArgs>;
1324
+ /**
1325
+ *
1326
+ * @param {ProceedingSearchDto} proceedingSearchDto
1327
+ * @param {*} [options] Override http request option.
1328
+ * @throws {RequiredError}
1329
+ */
1330
+ searchDetailProceedings: (proceedingSearchDto: ProceedingSearchDto, options?: RawAxiosRequestConfig) => Promise<RequestArgs>;
1331
+ };
1332
+ /**
1333
+ * DetailSearchesApi - functional programming interface
1334
+ * @export
1335
+ */
1336
+ export declare const DetailSearchesApiFp: (configuration?: Configuration) => {
1337
+ /**
1338
+ *
1339
+ * @param {BuildingSearchDto} buildingSearchDto
1340
+ * @param {*} [options] Override http request option.
1341
+ * @throws {RequiredError}
1342
+ */
1343
+ searchDetailBuildings(buildingSearchDto: BuildingSearchDto, options?: RawAxiosRequestConfig): Promise<(axios?: AxiosInstance, basePath?: string) => AxiosPromise<Array<BuildingDetail>>>;
1344
+ /**
1345
+ *
1346
+ * @param {DocumentSearchDto} documentSearchDto
1347
+ * @param {*} [options] Override http request option.
1348
+ * @throws {RequiredError}
1349
+ */
1350
+ searchDetailDocuments(documentSearchDto: DocumentSearchDto, options?: RawAxiosRequestConfig): Promise<(axios?: AxiosInstance, basePath?: string) => AxiosPromise<Array<DocDetail>>>;
1351
+ /**
1352
+ *
1353
+ * @param {ProceedingSearchDto} proceedingSearchDto
1354
+ * @param {*} [options] Override http request option.
1355
+ * @throws {RequiredError}
1356
+ */
1357
+ searchDetailProceedings(proceedingSearchDto: ProceedingSearchDto, options?: RawAxiosRequestConfig): Promise<(axios?: AxiosInstance, basePath?: string) => AxiosPromise<Array<ProceedingDetail>>>;
1358
+ };
1359
+ /**
1360
+ * DetailSearchesApi - factory interface
1361
+ * @export
1362
+ */
1363
+ export declare const DetailSearchesApiFactory: (configuration?: Configuration, basePath?: string, axios?: AxiosInstance) => {
1364
+ /**
1365
+ *
1366
+ * @param {BuildingSearchDto} buildingSearchDto
1367
+ * @param {*} [options] Override http request option.
1368
+ * @throws {RequiredError}
1369
+ */
1370
+ searchDetailBuildings(buildingSearchDto: BuildingSearchDto, options?: RawAxiosRequestConfig): AxiosPromise<Array<BuildingDetail>>;
1371
+ /**
1372
+ *
1373
+ * @param {DocumentSearchDto} documentSearchDto
1374
+ * @param {*} [options] Override http request option.
1375
+ * @throws {RequiredError}
1376
+ */
1377
+ searchDetailDocuments(documentSearchDto: DocumentSearchDto, options?: RawAxiosRequestConfig): AxiosPromise<Array<DocDetail>>;
1378
+ /**
1379
+ *
1380
+ * @param {ProceedingSearchDto} proceedingSearchDto
1381
+ * @param {*} [options] Override http request option.
1382
+ * @throws {RequiredError}
1383
+ */
1384
+ searchDetailProceedings(proceedingSearchDto: ProceedingSearchDto, options?: RawAxiosRequestConfig): AxiosPromise<Array<ProceedingDetail>>;
1385
+ };
1386
+ /**
1387
+ * DetailSearchesApi - object-oriented interface
1388
+ * @export
1389
+ * @class DetailSearchesApi
1390
+ * @extends {BaseAPI}
1391
+ */
1392
+ export declare class DetailSearchesApi extends BaseAPI {
1393
+ /**
1394
+ *
1395
+ * @param {BuildingSearchDto} buildingSearchDto
1396
+ * @param {*} [options] Override http request option.
1397
+ * @throws {RequiredError}
1398
+ * @memberof DetailSearchesApi
1399
+ */
1400
+ searchDetailBuildings(buildingSearchDto: BuildingSearchDto, options?: RawAxiosRequestConfig): Promise<globalAxios.AxiosResponse<BuildingDetail[], any>>;
1401
+ /**
1402
+ *
1403
+ * @param {DocumentSearchDto} documentSearchDto
1404
+ * @param {*} [options] Override http request option.
1405
+ * @throws {RequiredError}
1406
+ * @memberof DetailSearchesApi
1407
+ */
1408
+ searchDetailDocuments(documentSearchDto: DocumentSearchDto, options?: RawAxiosRequestConfig): Promise<globalAxios.AxiosResponse<DocDetail[], any>>;
1409
+ /**
1410
+ *
1411
+ * @param {ProceedingSearchDto} proceedingSearchDto
1412
+ * @param {*} [options] Override http request option.
1413
+ * @throws {RequiredError}
1414
+ * @memberof DetailSearchesApi
1415
+ */
1416
+ searchDetailProceedings(proceedingSearchDto: ProceedingSearchDto, options?: RawAxiosRequestConfig): Promise<globalAxios.AxiosResponse<ProceedingDetail[], any>>;
1417
+ }
1418
+ /**
1419
+ * MyDocumentsApi - axios parameter creator
1420
+ * @export
1421
+ */
1422
+ export declare const MyDocumentsApiAxiosParamCreator: (configuration?: Configuration) => {
1423
+ /**
1424
+ *
1425
+ * @param {DocumentQueryDto} documentQueryDto
1426
+ * @param {*} [options] Override http request option.
1427
+ * @throws {RequiredError}
1428
+ */
1429
+ findFinishedDocuments: (documentQueryDto: DocumentQueryDto, options?: RawAxiosRequestConfig) => Promise<RequestArgs>;
1430
+ /**
1431
+ *
1432
+ * @param {DocumentQueryDto} documentQueryDto
1433
+ * @param {*} [options] Override http request option.
1434
+ * @throws {RequiredError}
1435
+ */
1436
+ findIncomingDocuments: (documentQueryDto: DocumentQueryDto, options?: RawAxiosRequestConfig) => Promise<RequestArgs>;
1437
+ /**
1438
+ *
1439
+ * @param {DocumentQueryDto} documentQueryDto
1440
+ * @param {*} [options] Override http request option.
1441
+ * @throws {RequiredError}
1442
+ */
1443
+ findToSignDocuments: (documentQueryDto: DocumentQueryDto, options?: RawAxiosRequestConfig) => Promise<RequestArgs>;
1444
+ /**
1445
+ *
1446
+ * @param {DocumentQueryDto} documentQueryDto
1447
+ * @param {*} [options] Override http request option.
1448
+ * @throws {RequiredError}
1449
+ */
1450
+ findWorkingDocuments1: (documentQueryDto: DocumentQueryDto, options?: RawAxiosRequestConfig) => Promise<RequestArgs>;
1451
+ /**
1452
+ *
1453
+ * @param {*} [options] Override http request option.
1454
+ * @throws {RequiredError}
1455
+ */
1456
+ getHealth: (options?: RawAxiosRequestConfig) => Promise<RequestArgs>;
1457
+ /**
1458
+ *
1459
+ * @param {*} [options] Override http request option.
1460
+ * @throws {RequiredError}
1461
+ */
1462
+ versionAlive: (options?: RawAxiosRequestConfig) => Promise<RequestArgs>;
1463
+ };
1464
+ /**
1465
+ * MyDocumentsApi - functional programming interface
1466
+ * @export
1467
+ */
1468
+ export declare const MyDocumentsApiFp: (configuration?: Configuration) => {
1469
+ /**
1470
+ *
1471
+ * @param {DocumentQueryDto} documentQueryDto
1472
+ * @param {*} [options] Override http request option.
1473
+ * @throws {RequiredError}
1474
+ */
1475
+ findFinishedDocuments(documentQueryDto: DocumentQueryDto, options?: RawAxiosRequestConfig): Promise<(axios?: AxiosInstance, basePath?: string) => AxiosPromise<Array<MyDocumentsDto>>>;
1476
+ /**
1477
+ *
1478
+ * @param {DocumentQueryDto} documentQueryDto
1479
+ * @param {*} [options] Override http request option.
1480
+ * @throws {RequiredError}
1481
+ */
1482
+ findIncomingDocuments(documentQueryDto: DocumentQueryDto, options?: RawAxiosRequestConfig): Promise<(axios?: AxiosInstance, basePath?: string) => AxiosPromise<Array<MyDocumentsDto>>>;
1483
+ /**
1484
+ *
1485
+ * @param {DocumentQueryDto} documentQueryDto
1486
+ * @param {*} [options] Override http request option.
1487
+ * @throws {RequiredError}
1488
+ */
1489
+ findToSignDocuments(documentQueryDto: DocumentQueryDto, options?: RawAxiosRequestConfig): Promise<(axios?: AxiosInstance, basePath?: string) => AxiosPromise<Array<MyDocumentsDto>>>;
1490
+ /**
1491
+ *
1492
+ * @param {DocumentQueryDto} documentQueryDto
1493
+ * @param {*} [options] Override http request option.
1494
+ * @throws {RequiredError}
1495
+ */
1496
+ findWorkingDocuments1(documentQueryDto: DocumentQueryDto, options?: RawAxiosRequestConfig): Promise<(axios?: AxiosInstance, basePath?: string) => AxiosPromise<Array<MyDocumentsDto>>>;
1497
+ /**
1498
+ *
1499
+ * @param {*} [options] Override http request option.
1500
+ * @throws {RequiredError}
1501
+ */
1502
+ getHealth(options?: RawAxiosRequestConfig): Promise<(axios?: AxiosInstance, basePath?: string) => AxiosPromise<void>>;
1503
+ /**
1504
+ *
1505
+ * @param {*} [options] Override http request option.
1506
+ * @throws {RequiredError}
1507
+ */
1508
+ versionAlive(options?: RawAxiosRequestConfig): Promise<(axios?: AxiosInstance, basePath?: string) => AxiosPromise<string>>;
1509
+ };
1510
+ /**
1511
+ * MyDocumentsApi - factory interface
1512
+ * @export
1513
+ */
1514
+ export declare const MyDocumentsApiFactory: (configuration?: Configuration, basePath?: string, axios?: AxiosInstance) => {
1515
+ /**
1516
+ *
1517
+ * @param {DocumentQueryDto} documentQueryDto
1518
+ * @param {*} [options] Override http request option.
1519
+ * @throws {RequiredError}
1520
+ */
1521
+ findFinishedDocuments(documentQueryDto: DocumentQueryDto, options?: RawAxiosRequestConfig): AxiosPromise<Array<MyDocumentsDto>>;
1522
+ /**
1523
+ *
1524
+ * @param {DocumentQueryDto} documentQueryDto
1525
+ * @param {*} [options] Override http request option.
1526
+ * @throws {RequiredError}
1527
+ */
1528
+ findIncomingDocuments(documentQueryDto: DocumentQueryDto, options?: RawAxiosRequestConfig): AxiosPromise<Array<MyDocumentsDto>>;
1529
+ /**
1530
+ *
1531
+ * @param {DocumentQueryDto} documentQueryDto
1532
+ * @param {*} [options] Override http request option.
1533
+ * @throws {RequiredError}
1534
+ */
1535
+ findToSignDocuments(documentQueryDto: DocumentQueryDto, options?: RawAxiosRequestConfig): AxiosPromise<Array<MyDocumentsDto>>;
1536
+ /**
1537
+ *
1538
+ * @param {DocumentQueryDto} documentQueryDto
1539
+ * @param {*} [options] Override http request option.
1540
+ * @throws {RequiredError}
1541
+ */
1542
+ findWorkingDocuments1(documentQueryDto: DocumentQueryDto, options?: RawAxiosRequestConfig): AxiosPromise<Array<MyDocumentsDto>>;
1543
+ /**
1544
+ *
1545
+ * @param {*} [options] Override http request option.
1546
+ * @throws {RequiredError}
1547
+ */
1548
+ getHealth(options?: RawAxiosRequestConfig): AxiosPromise<void>;
1549
+ /**
1550
+ *
1551
+ * @param {*} [options] Override http request option.
1552
+ * @throws {RequiredError}
1553
+ */
1554
+ versionAlive(options?: RawAxiosRequestConfig): AxiosPromise<string>;
1555
+ };
1556
+ /**
1557
+ * MyDocumentsApi - object-oriented interface
1558
+ * @export
1559
+ * @class MyDocumentsApi
1560
+ * @extends {BaseAPI}
1561
+ */
1562
+ export declare class MyDocumentsApi extends BaseAPI {
1563
+ /**
1564
+ *
1565
+ * @param {DocumentQueryDto} documentQueryDto
1566
+ * @param {*} [options] Override http request option.
1567
+ * @throws {RequiredError}
1568
+ * @memberof MyDocumentsApi
1569
+ */
1570
+ findFinishedDocuments(documentQueryDto: DocumentQueryDto, options?: RawAxiosRequestConfig): Promise<globalAxios.AxiosResponse<MyDocumentsDto[], any>>;
1571
+ /**
1572
+ *
1573
+ * @param {DocumentQueryDto} documentQueryDto
1574
+ * @param {*} [options] Override http request option.
1575
+ * @throws {RequiredError}
1576
+ * @memberof MyDocumentsApi
1577
+ */
1578
+ findIncomingDocuments(documentQueryDto: DocumentQueryDto, options?: RawAxiosRequestConfig): Promise<globalAxios.AxiosResponse<MyDocumentsDto[], any>>;
1579
+ /**
1580
+ *
1581
+ * @param {DocumentQueryDto} documentQueryDto
1582
+ * @param {*} [options] Override http request option.
1583
+ * @throws {RequiredError}
1584
+ * @memberof MyDocumentsApi
1585
+ */
1586
+ findToSignDocuments(documentQueryDto: DocumentQueryDto, options?: RawAxiosRequestConfig): Promise<globalAxios.AxiosResponse<MyDocumentsDto[], any>>;
1587
+ /**
1588
+ *
1589
+ * @param {DocumentQueryDto} documentQueryDto
1590
+ * @param {*} [options] Override http request option.
1591
+ * @throws {RequiredError}
1592
+ * @memberof MyDocumentsApi
1593
+ */
1594
+ findWorkingDocuments1(documentQueryDto: DocumentQueryDto, options?: RawAxiosRequestConfig): Promise<globalAxios.AxiosResponse<MyDocumentsDto[], any>>;
1595
+ /**
1596
+ *
1597
+ * @param {*} [options] Override http request option.
1598
+ * @throws {RequiredError}
1599
+ * @memberof MyDocumentsApi
1600
+ */
1601
+ getHealth(options?: RawAxiosRequestConfig): Promise<globalAxios.AxiosResponse<void, any>>;
1602
+ /**
1603
+ *
1604
+ * @param {*} [options] Override http request option.
1605
+ * @throws {RequiredError}
1606
+ * @memberof MyDocumentsApi
1607
+ */
1608
+ versionAlive(options?: RawAxiosRequestConfig): Promise<globalAxios.AxiosResponse<string, any>>;
1609
+ }
1610
+ /**
1611
+ * MyOperationsApi - axios parameter creator
1612
+ * @export
1613
+ */
1614
+ export declare const MyOperationsApiAxiosParamCreator: (configuration?: Configuration) => {
1615
+ /**
1616
+ *
1617
+ * @param {OperationQueryDto} operationQueryDto
1618
+ * @param {*} [options] Override http request option.
1619
+ * @throws {RequiredError}
1620
+ */
1621
+ findOperationInvitations: (operationQueryDto: OperationQueryDto, options?: RawAxiosRequestConfig) => Promise<RequestArgs>;
1622
+ /**
1623
+ *
1624
+ * @param {OperationQueryDto} operationQueryDto
1625
+ * @param {*} [options] Override http request option.
1626
+ * @throws {RequiredError}
1627
+ */
1628
+ findOperations: (operationQueryDto: OperationQueryDto, options?: RawAxiosRequestConfig) => Promise<RequestArgs>;
1629
+ /**
1630
+ *
1631
+ * @param {OperationQueryDto} operationQueryDto
1632
+ * @param {*} [options] Override http request option.
1633
+ * @throws {RequiredError}
1634
+ */
1635
+ findOperationsToComment: (operationQueryDto: OperationQueryDto, options?: RawAxiosRequestConfig) => Promise<RequestArgs>;
1636
+ };
1637
+ /**
1638
+ * MyOperationsApi - functional programming interface
1639
+ * @export
1640
+ */
1641
+ export declare const MyOperationsApiFp: (configuration?: Configuration) => {
1642
+ /**
1643
+ *
1644
+ * @param {OperationQueryDto} operationQueryDto
1645
+ * @param {*} [options] Override http request option.
1646
+ * @throws {RequiredError}
1647
+ */
1648
+ findOperationInvitations(operationQueryDto: OperationQueryDto, options?: RawAxiosRequestConfig): Promise<(axios?: AxiosInstance, basePath?: string) => AxiosPromise<Array<MyOperationDto>>>;
1649
+ /**
1650
+ *
1651
+ * @param {OperationQueryDto} operationQueryDto
1652
+ * @param {*} [options] Override http request option.
1653
+ * @throws {RequiredError}
1654
+ */
1655
+ findOperations(operationQueryDto: OperationQueryDto, options?: RawAxiosRequestConfig): Promise<(axios?: AxiosInstance, basePath?: string) => AxiosPromise<Array<MyOperationDto>>>;
1656
+ /**
1657
+ *
1658
+ * @param {OperationQueryDto} operationQueryDto
1659
+ * @param {*} [options] Override http request option.
1660
+ * @throws {RequiredError}
1661
+ */
1662
+ findOperationsToComment(operationQueryDto: OperationQueryDto, options?: RawAxiosRequestConfig): Promise<(axios?: AxiosInstance, basePath?: string) => AxiosPromise<Array<MyOperationDto>>>;
1663
+ };
1664
+ /**
1665
+ * MyOperationsApi - factory interface
1666
+ * @export
1667
+ */
1668
+ export declare const MyOperationsApiFactory: (configuration?: Configuration, basePath?: string, axios?: AxiosInstance) => {
1669
+ /**
1670
+ *
1671
+ * @param {OperationQueryDto} operationQueryDto
1672
+ * @param {*} [options] Override http request option.
1673
+ * @throws {RequiredError}
1674
+ */
1675
+ findOperationInvitations(operationQueryDto: OperationQueryDto, options?: RawAxiosRequestConfig): AxiosPromise<Array<MyOperationDto>>;
1676
+ /**
1677
+ *
1678
+ * @param {OperationQueryDto} operationQueryDto
1679
+ * @param {*} [options] Override http request option.
1680
+ * @throws {RequiredError}
1681
+ */
1682
+ findOperations(operationQueryDto: OperationQueryDto, options?: RawAxiosRequestConfig): AxiosPromise<Array<MyOperationDto>>;
1683
+ /**
1684
+ *
1685
+ * @param {OperationQueryDto} operationQueryDto
1686
+ * @param {*} [options] Override http request option.
1687
+ * @throws {RequiredError}
1688
+ */
1689
+ findOperationsToComment(operationQueryDto: OperationQueryDto, options?: RawAxiosRequestConfig): AxiosPromise<Array<MyOperationDto>>;
1690
+ };
1691
+ /**
1692
+ * MyOperationsApi - object-oriented interface
1693
+ * @export
1694
+ * @class MyOperationsApi
1695
+ * @extends {BaseAPI}
1696
+ */
1697
+ export declare class MyOperationsApi extends BaseAPI {
1698
+ /**
1699
+ *
1700
+ * @param {OperationQueryDto} operationQueryDto
1701
+ * @param {*} [options] Override http request option.
1702
+ * @throws {RequiredError}
1703
+ * @memberof MyOperationsApi
1704
+ */
1705
+ findOperationInvitations(operationQueryDto: OperationQueryDto, options?: RawAxiosRequestConfig): Promise<globalAxios.AxiosResponse<MyOperationDto[], any>>;
1706
+ /**
1707
+ *
1708
+ * @param {OperationQueryDto} operationQueryDto
1709
+ * @param {*} [options] Override http request option.
1710
+ * @throws {RequiredError}
1711
+ * @memberof MyOperationsApi
1712
+ */
1713
+ findOperations(operationQueryDto: OperationQueryDto, options?: RawAxiosRequestConfig): Promise<globalAxios.AxiosResponse<MyOperationDto[], any>>;
1714
+ /**
1715
+ *
1716
+ * @param {OperationQueryDto} operationQueryDto
1717
+ * @param {*} [options] Override http request option.
1718
+ * @throws {RequiredError}
1719
+ * @memberof MyOperationsApi
1720
+ */
1721
+ findOperationsToComment(operationQueryDto: OperationQueryDto, options?: RawAxiosRequestConfig): Promise<globalAxios.AxiosResponse<MyOperationDto[], any>>;
1722
+ }
1723
+ /**
1724
+ * MyProceedingsApi - axios parameter creator
1725
+ * @export
1726
+ */
1727
+ export declare const MyProceedingsApiAxiosParamCreator: (configuration?: Configuration) => {
1728
+ /**
1729
+ *
1730
+ * @param {ProceedingQueryDto} proceedingQueryDto
1731
+ * @param {*} [options] Override http request option.
1732
+ * @throws {RequiredError}
1733
+ */
1734
+ findAreaProceedings: (proceedingQueryDto: ProceedingQueryDto, options?: RawAxiosRequestConfig) => Promise<RequestArgs>;
1735
+ /**
1736
+ *
1737
+ * @param {MyProceedingsRequestDto} myProceedingsRequestDto
1738
+ * @param {*} [options] Override http request option.
1739
+ * @throws {RequiredError}
1740
+ */
1741
+ findProceedings: (myProceedingsRequestDto: MyProceedingsRequestDto, options?: RawAxiosRequestConfig) => Promise<RequestArgs>;
1742
+ };
1743
+ /**
1744
+ * MyProceedingsApi - functional programming interface
1745
+ * @export
1746
+ */
1747
+ export declare const MyProceedingsApiFp: (configuration?: Configuration) => {
1748
+ /**
1749
+ *
1750
+ * @param {ProceedingQueryDto} proceedingQueryDto
1751
+ * @param {*} [options] Override http request option.
1752
+ * @throws {RequiredError}
1753
+ */
1754
+ findAreaProceedings(proceedingQueryDto: ProceedingQueryDto, options?: RawAxiosRequestConfig): Promise<(axios?: AxiosInstance, basePath?: string) => AxiosPromise<Array<MyProceedingsDto>>>;
1755
+ /**
1756
+ *
1757
+ * @param {MyProceedingsRequestDto} myProceedingsRequestDto
1758
+ * @param {*} [options] Override http request option.
1759
+ * @throws {RequiredError}
1760
+ */
1761
+ findProceedings(myProceedingsRequestDto: MyProceedingsRequestDto, options?: RawAxiosRequestConfig): Promise<(axios?: AxiosInstance, basePath?: string) => AxiosPromise<Array<MyProceedingsDto>>>;
1762
+ };
1763
+ /**
1764
+ * MyProceedingsApi - factory interface
1765
+ * @export
1766
+ */
1767
+ export declare const MyProceedingsApiFactory: (configuration?: Configuration, basePath?: string, axios?: AxiosInstance) => {
1768
+ /**
1769
+ *
1770
+ * @param {ProceedingQueryDto} proceedingQueryDto
1771
+ * @param {*} [options] Override http request option.
1772
+ * @throws {RequiredError}
1773
+ */
1774
+ findAreaProceedings(proceedingQueryDto: ProceedingQueryDto, options?: RawAxiosRequestConfig): AxiosPromise<Array<MyProceedingsDto>>;
1775
+ /**
1776
+ *
1777
+ * @param {MyProceedingsRequestDto} myProceedingsRequestDto
1778
+ * @param {*} [options] Override http request option.
1779
+ * @throws {RequiredError}
1780
+ */
1781
+ findProceedings(myProceedingsRequestDto: MyProceedingsRequestDto, options?: RawAxiosRequestConfig): AxiosPromise<Array<MyProceedingsDto>>;
1782
+ };
1783
+ /**
1784
+ * MyProceedingsApi - object-oriented interface
1785
+ * @export
1786
+ * @class MyProceedingsApi
1787
+ * @extends {BaseAPI}
1788
+ */
1789
+ export declare class MyProceedingsApi extends BaseAPI {
1790
+ /**
1791
+ *
1792
+ * @param {ProceedingQueryDto} proceedingQueryDto
1793
+ * @param {*} [options] Override http request option.
1794
+ * @throws {RequiredError}
1795
+ * @memberof MyProceedingsApi
1796
+ */
1797
+ findAreaProceedings(proceedingQueryDto: ProceedingQueryDto, options?: RawAxiosRequestConfig): Promise<globalAxios.AxiosResponse<MyProceedingsDto[], any>>;
1798
+ /**
1799
+ *
1800
+ * @param {MyProceedingsRequestDto} myProceedingsRequestDto
1801
+ * @param {*} [options] Override http request option.
1802
+ * @throws {RequiredError}
1803
+ * @memberof MyProceedingsApi
1804
+ */
1805
+ findProceedings(myProceedingsRequestDto: MyProceedingsRequestDto, options?: RawAxiosRequestConfig): Promise<globalAxios.AxiosResponse<MyProceedingsDto[], any>>;
1806
+ }