@bratislava/ginis-sdk 1.3.0 → 2.0.0

This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
Files changed (4) hide show
  1. package/README.md +11 -2
  2. package/dist/index.d.ts +296 -2731
  3. package/dist/index.js +833 -367
  4. package/package.json +30 -30
package/dist/index.d.ts CHANGED
@@ -2,9 +2,15 @@ import { z } from 'zod';
2
2
  import { Readable } from 'stream';
3
3
  import { AxiosError } from 'axios';
4
4
 
5
+ interface RequestParamValue {
6
+ value: string;
7
+ attributes: string[];
8
+ }
9
+ type RequestParamType = string | undefined | RequestParamValue;
10
+
5
11
  declare const detailFunkcnihoMistaRequestProperties: readonly ["Id-funkce"];
6
12
  type GinDetailFunkcnihoMistaRequest = {
7
- [K in (typeof detailFunkcnihoMistaRequestProperties)[number] as K]?: string;
13
+ [K in (typeof detailFunkcnihoMistaRequestProperties)[number] as K]?: RequestParamType;
8
14
  };
9
15
  declare const detailFunkcnihoMistaSchema: z.ZodObject<{
10
16
  'Id-funkce': z.ZodString;
@@ -31,57 +37,7 @@ declare const detailFunkcnihoMistaSchema: z.ZodObject<{
31
37
  Telefon: z.ZodOptional<z.ZodString>;
32
38
  Fax: z.ZodOptional<z.ZodString>;
33
39
  'Datum-zmena': z.ZodString;
34
- }, "strip", z.ZodTypeAny, {
35
- 'Id-funkce': string;
36
- Aktivita: string;
37
- 'Datum-od': string;
38
- 'Datum-do': string;
39
- 'Id-spisoveho-uzlu': string;
40
- 'Uroven-funkce': string;
41
- 'Id-referenta': string;
42
- 'Id-orj': string;
43
- 'Datum-zmena': string;
44
- Nazev?: string | undefined;
45
- Zkratka?: string | undefined;
46
- 'Oficialni-nazev'?: string | undefined;
47
- Poznamka?: string | undefined;
48
- 'Nazev-spisoveho-uzlu'?: string | undefined;
49
- 'Zkratka-spisoveho-uzlu'?: string | undefined;
50
- 'Kod-funkce'?: string | undefined;
51
- 'Id-nad'?: string | undefined;
52
- 'Nazev-referenta'?: string | undefined;
53
- 'Nazev-orj'?: string | undefined;
54
- 'Kod-mistnosti'?: string | undefined;
55
- Url?: string | undefined;
56
- Mail?: string | undefined;
57
- Telefon?: string | undefined;
58
- Fax?: string | undefined;
59
- }, {
60
- 'Id-funkce': string;
61
- Aktivita: string;
62
- 'Datum-od': string;
63
- 'Datum-do': string;
64
- 'Id-spisoveho-uzlu': string;
65
- 'Uroven-funkce': string;
66
- 'Id-referenta': string;
67
- 'Id-orj': string;
68
- 'Datum-zmena': string;
69
- Nazev?: string | undefined;
70
- Zkratka?: string | undefined;
71
- 'Oficialni-nazev'?: string | undefined;
72
- Poznamka?: string | undefined;
73
- 'Nazev-spisoveho-uzlu'?: string | undefined;
74
- 'Zkratka-spisoveho-uzlu'?: string | undefined;
75
- 'Kod-funkce'?: string | undefined;
76
- 'Id-nad'?: string | undefined;
77
- 'Nazev-referenta'?: string | undefined;
78
- 'Nazev-orj'?: string | undefined;
79
- 'Kod-mistnosti'?: string | undefined;
80
- Url?: string | undefined;
81
- Mail?: string | undefined;
82
- Telefon?: string | undefined;
83
- Fax?: string | undefined;
84
- }>;
40
+ }, z.core.$strip>;
85
41
  declare const detailFunkcnihoMistaResponseSchema: z.ZodObject<{
86
42
  'Detail-funkcniho-mista': z.ZodObject<{
87
43
  'Id-funkce': z.ZodString;
@@ -108,119 +64,15 @@ declare const detailFunkcnihoMistaResponseSchema: z.ZodObject<{
108
64
  Telefon: z.ZodOptional<z.ZodString>;
109
65
  Fax: z.ZodOptional<z.ZodString>;
110
66
  'Datum-zmena': z.ZodString;
111
- }, "strip", z.ZodTypeAny, {
112
- 'Id-funkce': string;
113
- Aktivita: string;
114
- 'Datum-od': string;
115
- 'Datum-do': string;
116
- 'Id-spisoveho-uzlu': string;
117
- 'Uroven-funkce': string;
118
- 'Id-referenta': string;
119
- 'Id-orj': string;
120
- 'Datum-zmena': string;
121
- Nazev?: string | undefined;
122
- Zkratka?: string | undefined;
123
- 'Oficialni-nazev'?: string | undefined;
124
- Poznamka?: string | undefined;
125
- 'Nazev-spisoveho-uzlu'?: string | undefined;
126
- 'Zkratka-spisoveho-uzlu'?: string | undefined;
127
- 'Kod-funkce'?: string | undefined;
128
- 'Id-nad'?: string | undefined;
129
- 'Nazev-referenta'?: string | undefined;
130
- 'Nazev-orj'?: string | undefined;
131
- 'Kod-mistnosti'?: string | undefined;
132
- Url?: string | undefined;
133
- Mail?: string | undefined;
134
- Telefon?: string | undefined;
135
- Fax?: string | undefined;
136
- }, {
137
- 'Id-funkce': string;
138
- Aktivita: string;
139
- 'Datum-od': string;
140
- 'Datum-do': string;
141
- 'Id-spisoveho-uzlu': string;
142
- 'Uroven-funkce': string;
143
- 'Id-referenta': string;
144
- 'Id-orj': string;
145
- 'Datum-zmena': string;
146
- Nazev?: string | undefined;
147
- Zkratka?: string | undefined;
148
- 'Oficialni-nazev'?: string | undefined;
149
- Poznamka?: string | undefined;
150
- 'Nazev-spisoveho-uzlu'?: string | undefined;
151
- 'Zkratka-spisoveho-uzlu'?: string | undefined;
152
- 'Kod-funkce'?: string | undefined;
153
- 'Id-nad'?: string | undefined;
154
- 'Nazev-referenta'?: string | undefined;
155
- 'Nazev-orj'?: string | undefined;
156
- 'Kod-mistnosti'?: string | undefined;
157
- Url?: string | undefined;
158
- Mail?: string | undefined;
159
- Telefon?: string | undefined;
160
- Fax?: string | undefined;
161
- }>;
162
- }, "strip", z.ZodTypeAny, {
163
- 'Detail-funkcniho-mista': {
164
- 'Id-funkce': string;
165
- Aktivita: string;
166
- 'Datum-od': string;
167
- 'Datum-do': string;
168
- 'Id-spisoveho-uzlu': string;
169
- 'Uroven-funkce': string;
170
- 'Id-referenta': string;
171
- 'Id-orj': string;
172
- 'Datum-zmena': string;
173
- Nazev?: string | undefined;
174
- Zkratka?: string | undefined;
175
- 'Oficialni-nazev'?: string | undefined;
176
- Poznamka?: string | undefined;
177
- 'Nazev-spisoveho-uzlu'?: string | undefined;
178
- 'Zkratka-spisoveho-uzlu'?: string | undefined;
179
- 'Kod-funkce'?: string | undefined;
180
- 'Id-nad'?: string | undefined;
181
- 'Nazev-referenta'?: string | undefined;
182
- 'Nazev-orj'?: string | undefined;
183
- 'Kod-mistnosti'?: string | undefined;
184
- Url?: string | undefined;
185
- Mail?: string | undefined;
186
- Telefon?: string | undefined;
187
- Fax?: string | undefined;
188
- };
189
- }, {
190
- 'Detail-funkcniho-mista': {
191
- 'Id-funkce': string;
192
- Aktivita: string;
193
- 'Datum-od': string;
194
- 'Datum-do': string;
195
- 'Id-spisoveho-uzlu': string;
196
- 'Uroven-funkce': string;
197
- 'Id-referenta': string;
198
- 'Id-orj': string;
199
- 'Datum-zmena': string;
200
- Nazev?: string | undefined;
201
- Zkratka?: string | undefined;
202
- 'Oficialni-nazev'?: string | undefined;
203
- Poznamka?: string | undefined;
204
- 'Nazev-spisoveho-uzlu'?: string | undefined;
205
- 'Zkratka-spisoveho-uzlu'?: string | undefined;
206
- 'Kod-funkce'?: string | undefined;
207
- 'Id-nad'?: string | undefined;
208
- 'Nazev-referenta'?: string | undefined;
209
- 'Nazev-orj'?: string | undefined;
210
- 'Kod-mistnosti'?: string | undefined;
211
- Url?: string | undefined;
212
- Mail?: string | undefined;
213
- Telefon?: string | undefined;
214
- Fax?: string | undefined;
215
- };
216
- }>;
67
+ }, z.core.$strip>;
68
+ }, z.core.$strip>;
217
69
  type GinDetailFunkcnihoMistaDetailFunkcnihoMista = z.infer<typeof detailFunkcnihoMistaSchema>;
218
70
  type GinDetailFunkcnihoMistaResponse = z.infer<typeof detailFunkcnihoMistaResponseSchema>;
219
71
  declare function detailFunkcnihoMista(this: Ginis, bodyObj: GinDetailFunkcnihoMistaRequest): Promise<GinDetailFunkcnihoMistaResponse>;
220
72
 
221
73
  declare const detailReferentaRequestProperties: readonly ["Id-osoby"];
222
74
  type GinDetailReferentaRequest = {
223
- [K in (typeof detailReferentaRequestProperties)[number] as K]?: string;
75
+ [K in (typeof detailReferentaRequestProperties)[number] as K]?: RequestParamType;
224
76
  };
225
77
  declare const detailReferentaSchema: z.ZodObject<{
226
78
  'Id-osoby': z.ZodString;
@@ -249,73 +101,9 @@ declare const detailReferentaSchema: z.ZodObject<{
249
101
  'Datum-zmena': z.ZodString;
250
102
  'Login-cs': z.ZodOptional<z.ZodString>;
251
103
  'Alt-login-cs': z.ZodOptional<z.ZodString>;
252
- /**
253
- * Kód typu autentizace. Hodnoty: -10 = žádná/není určeno, 0 = databázová, 10 = Windows, 20 = virtuální účet, 30 = Azure AD
254
- */
255
104
  'Typ-autentizace-kod': z.ZodString;
256
- /**
257
- * Kód typu autentizace k alternativnímu účtu. Hodnoty: -10 = žádná/není určeno, 0 = databázová, 10 = Windows, 20 = virtuální účet, 30 = Azure AD
258
- */
259
105
  'Alt-typ-autentizace-kod': z.ZodString;
260
- }, "strip", z.ZodTypeAny, {
261
- Aktivita: string;
262
- 'Datum-od': string;
263
- 'Datum-do': string;
264
- 'Id-spisoveho-uzlu': string;
265
- 'Datum-zmena': string;
266
- 'Id-osoby': string;
267
- 'Typ-autentizace-kod': string;
268
- 'Alt-typ-autentizace-kod': string;
269
- Nazev?: string | undefined;
270
- Zkratka?: string | undefined;
271
- Poznamka?: string | undefined;
272
- Mail?: string | undefined;
273
- Telefon?: string | undefined;
274
- Fax?: string | undefined;
275
- Jmeno?: string | undefined;
276
- Prijmeni?: string | undefined;
277
- Login?: string | undefined;
278
- 'Alt-login'?: string | undefined;
279
- 'Ext-sys-login'?: string | undefined;
280
- 'Titul-pred'?: string | undefined;
281
- 'Titul-za'?: string | undefined;
282
- 'Osobni-cislo'?: string | undefined;
283
- 'Rodne-cislo'?: string | undefined;
284
- 'Rodne-prijmeni'?: string | undefined;
285
- 'Telefon-privat'?: string | undefined;
286
- 'Telefon-mobil'?: string | undefined;
287
- 'Login-cs'?: string | undefined;
288
- 'Alt-login-cs'?: string | undefined;
289
- }, {
290
- Aktivita: string;
291
- 'Datum-od': string;
292
- 'Datum-do': string;
293
- 'Id-spisoveho-uzlu': string;
294
- 'Datum-zmena': string;
295
- 'Id-osoby': string;
296
- 'Typ-autentizace-kod': string;
297
- 'Alt-typ-autentizace-kod': string;
298
- Nazev?: string | undefined;
299
- Zkratka?: string | undefined;
300
- Poznamka?: string | undefined;
301
- Mail?: string | undefined;
302
- Telefon?: string | undefined;
303
- Fax?: string | undefined;
304
- Jmeno?: string | undefined;
305
- Prijmeni?: string | undefined;
306
- Login?: string | undefined;
307
- 'Alt-login'?: string | undefined;
308
- 'Ext-sys-login'?: string | undefined;
309
- 'Titul-pred'?: string | undefined;
310
- 'Titul-za'?: string | undefined;
311
- 'Osobni-cislo'?: string | undefined;
312
- 'Rodne-cislo'?: string | undefined;
313
- 'Rodne-prijmeni'?: string | undefined;
314
- 'Telefon-privat'?: string | undefined;
315
- 'Telefon-mobil'?: string | undefined;
316
- 'Login-cs'?: string | undefined;
317
- 'Alt-login-cs'?: string | undefined;
318
- }>;
106
+ }, z.core.$strip>;
319
107
  declare const detailReferentaResponseSchema: z.ZodObject<{
320
108
  'Detail-referenta': z.ZodObject<{
321
109
  'Id-osoby': z.ZodString;
@@ -344,148 +132,102 @@ declare const detailReferentaResponseSchema: z.ZodObject<{
344
132
  'Datum-zmena': z.ZodString;
345
133
  'Login-cs': z.ZodOptional<z.ZodString>;
346
134
  'Alt-login-cs': z.ZodOptional<z.ZodString>;
347
- /**
348
- * Kód typu autentizace. Hodnoty: -10 = žádná/není určeno, 0 = databázová, 10 = Windows, 20 = virtuální účet, 30 = Azure AD
349
- */
350
135
  'Typ-autentizace-kod': z.ZodString;
351
- /**
352
- * Kód typu autentizace k alternativnímu účtu. Hodnoty: -10 = žádná/není určeno, 0 = databázová, 10 = Windows, 20 = virtuální účet, 30 = Azure AD
353
- */
354
136
  'Alt-typ-autentizace-kod': z.ZodString;
355
- }, "strip", z.ZodTypeAny, {
356
- Aktivita: string;
357
- 'Datum-od': string;
358
- 'Datum-do': string;
359
- 'Id-spisoveho-uzlu': string;
360
- 'Datum-zmena': string;
361
- 'Id-osoby': string;
362
- 'Typ-autentizace-kod': string;
363
- 'Alt-typ-autentizace-kod': string;
364
- Nazev?: string | undefined;
365
- Zkratka?: string | undefined;
366
- Poznamka?: string | undefined;
367
- Mail?: string | undefined;
368
- Telefon?: string | undefined;
369
- Fax?: string | undefined;
370
- Jmeno?: string | undefined;
371
- Prijmeni?: string | undefined;
372
- Login?: string | undefined;
373
- 'Alt-login'?: string | undefined;
374
- 'Ext-sys-login'?: string | undefined;
375
- 'Titul-pred'?: string | undefined;
376
- 'Titul-za'?: string | undefined;
377
- 'Osobni-cislo'?: string | undefined;
378
- 'Rodne-cislo'?: string | undefined;
379
- 'Rodne-prijmeni'?: string | undefined;
380
- 'Telefon-privat'?: string | undefined;
381
- 'Telefon-mobil'?: string | undefined;
382
- 'Login-cs'?: string | undefined;
383
- 'Alt-login-cs'?: string | undefined;
384
- }, {
385
- Aktivita: string;
386
- 'Datum-od': string;
387
- 'Datum-do': string;
388
- 'Id-spisoveho-uzlu': string;
389
- 'Datum-zmena': string;
390
- 'Id-osoby': string;
391
- 'Typ-autentizace-kod': string;
392
- 'Alt-typ-autentizace-kod': string;
393
- Nazev?: string | undefined;
394
- Zkratka?: string | undefined;
395
- Poznamka?: string | undefined;
396
- Mail?: string | undefined;
397
- Telefon?: string | undefined;
398
- Fax?: string | undefined;
399
- Jmeno?: string | undefined;
400
- Prijmeni?: string | undefined;
401
- Login?: string | undefined;
402
- 'Alt-login'?: string | undefined;
403
- 'Ext-sys-login'?: string | undefined;
404
- 'Titul-pred'?: string | undefined;
405
- 'Titul-za'?: string | undefined;
406
- 'Osobni-cislo'?: string | undefined;
407
- 'Rodne-cislo'?: string | undefined;
408
- 'Rodne-prijmeni'?: string | undefined;
409
- 'Telefon-privat'?: string | undefined;
410
- 'Telefon-mobil'?: string | undefined;
411
- 'Login-cs'?: string | undefined;
412
- 'Alt-login-cs'?: string | undefined;
413
- }>;
414
- }, "strip", z.ZodTypeAny, {
415
- 'Detail-referenta': {
416
- Aktivita: string;
417
- 'Datum-od': string;
418
- 'Datum-do': string;
419
- 'Id-spisoveho-uzlu': string;
420
- 'Datum-zmena': string;
421
- 'Id-osoby': string;
422
- 'Typ-autentizace-kod': string;
423
- 'Alt-typ-autentizace-kod': string;
424
- Nazev?: string | undefined;
425
- Zkratka?: string | undefined;
426
- Poznamka?: string | undefined;
427
- Mail?: string | undefined;
428
- Telefon?: string | undefined;
429
- Fax?: string | undefined;
430
- Jmeno?: string | undefined;
431
- Prijmeni?: string | undefined;
432
- Login?: string | undefined;
433
- 'Alt-login'?: string | undefined;
434
- 'Ext-sys-login'?: string | undefined;
435
- 'Titul-pred'?: string | undefined;
436
- 'Titul-za'?: string | undefined;
437
- 'Osobni-cislo'?: string | undefined;
438
- 'Rodne-cislo'?: string | undefined;
439
- 'Rodne-prijmeni'?: string | undefined;
440
- 'Telefon-privat'?: string | undefined;
441
- 'Telefon-mobil'?: string | undefined;
442
- 'Login-cs'?: string | undefined;
443
- 'Alt-login-cs'?: string | undefined;
444
- };
445
- }, {
446
- 'Detail-referenta': {
447
- Aktivita: string;
448
- 'Datum-od': string;
449
- 'Datum-do': string;
450
- 'Id-spisoveho-uzlu': string;
451
- 'Datum-zmena': string;
452
- 'Id-osoby': string;
453
- 'Typ-autentizace-kod': string;
454
- 'Alt-typ-autentizace-kod': string;
455
- Nazev?: string | undefined;
456
- Zkratka?: string | undefined;
457
- Poznamka?: string | undefined;
458
- Mail?: string | undefined;
459
- Telefon?: string | undefined;
460
- Fax?: string | undefined;
461
- Jmeno?: string | undefined;
462
- Prijmeni?: string | undefined;
463
- Login?: string | undefined;
464
- 'Alt-login'?: string | undefined;
465
- 'Ext-sys-login'?: string | undefined;
466
- 'Titul-pred'?: string | undefined;
467
- 'Titul-za'?: string | undefined;
468
- 'Osobni-cislo'?: string | undefined;
469
- 'Rodne-cislo'?: string | undefined;
470
- 'Rodne-prijmeni'?: string | undefined;
471
- 'Telefon-privat'?: string | undefined;
472
- 'Telefon-mobil'?: string | undefined;
473
- 'Login-cs'?: string | undefined;
474
- 'Alt-login-cs'?: string | undefined;
475
- };
476
- }>;
137
+ }, z.core.$strip>;
138
+ }, z.core.$strip>;
477
139
  type GinDetailReferentaDetailReferenta = z.infer<typeof detailReferentaSchema>;
478
140
  type GinDetailReferentaResponse = z.infer<typeof detailReferentaResponseSchema>;
479
141
  declare function detailReferenta(this: Ginis, bodyObj: GinDetailReferentaRequest): Promise<GinDetailReferentaResponse>;
480
142
 
143
+ declare const vytvorEsuRequestProperties: readonly ["Id-esu", "Typ-esu", "Nazev", "Zkratka", "Poznamka", "Verifikace", "Stat", "Psc", "Obec", "Cast-obce", "Ulice", "Cislo-orientacni", "Cislo-popisne", "Kod-uir-adr", "Po-box", "Telefon", "E-mail", "Fax", "Obchodni-jmeno", "Typ-organizace", "Ico", "Dic", "Rodne-cislo", "Jmeno", "Prijmeni", "Titul-pred", "Titul-za", "Esu-txt", "Radek-obalky0", "Radek-obalky1", "Radek-obalky2", "Radek-obalky3", "Radek-obalky4", "Radek-obalky5", "Radek-obalky6", "Radek-obalky7", "Platce-dph", "Datum-narozeni", "Datum-umrti", "Uroven-pristupu", "Url", "Rodne-prijmeni", "Id-dat-schranky", "Typ-adr", "Id-esu-hlavni", "Duvod-ucel", "Id-eu", "Url-autority", "Osobni-cislo", "Prevzit-adresu-podle-kod-uir-adr", "Statni-prislusnost"];
144
+ type GinEditEsuRequestVytvorEsu = {
145
+ [K in (typeof vytvorEsuRequestProperties)[number] as K]?: RequestParamType;
146
+ };
147
+ declare const vytvorEsuSchema: z.ZodObject<{
148
+ 'Id-esu': z.ZodString;
149
+ 'Datum-zmeny': z.ZodString;
150
+ 'Provedena-operace': z.ZodString;
151
+ }, z.core.$strip>;
152
+ declare const editEsuResponseSchema: z.ZodObject<{
153
+ 'Vytvor-esu': z.ZodObject<{
154
+ 'Id-esu': z.ZodString;
155
+ 'Datum-zmeny': z.ZodString;
156
+ 'Provedena-operace': z.ZodString;
157
+ }, z.core.$strip>;
158
+ }, z.core.$strip>;
159
+ type GinEditEsuVytvorEsu = z.infer<typeof vytvorEsuSchema>;
160
+ type GinEditEsuResponse = z.infer<typeof editEsuResponseSchema>;
161
+ declare function editEsu(this: Ginis, bodyObj: GinEditEsuRequestVytvorEsu): Promise<GinEditEsuResponse>;
162
+
163
+ declare const najdiEsuRequestProperties: readonly ["Lic", "Aktivita", "Poznamka", "Datum-zmeny", "Zkratka", "Nazev", "Obchodni-jmeno", "Typ-esu", "Verifikace", "Stat", "Psc", "Obec", "Cast-obce", "Ulice", "Cislo-orientacni", "Cislo-popisne", "Ico", "Dic", "Telefon", "E-mail", "Fax", "Typ-organizace", "Rodne-cislo", "Jmeno", "Prijmeni", "Titul-pred", "Titul-za", "Esu-txt", "Kod-uir-adr", "Po-box", "Radek-obalky0", "Radek-obalky1", "Radek-obalky2", "Radek-obalky3", "Radek-obalky4", "Radek-obalky5", "Radek-obalky6", "Radek-obalky7", "Platce-dph", "Datum-zmeny-od", "Datum-zmeny-do", "Id-dat-schranky", "Datum-narozeni", "Duvod-ucel", "Uroven-pristupu", "Id-esu-hlavni", "Id-aktualni-verze-esu", "Osobni-cislo", "Id-eu"];
164
+ type GinNajdiEsuRequest = {
165
+ [K in (typeof najdiEsuRequestProperties)[number] as K]?: RequestParamType;
166
+ };
167
+ declare const rizeniPrehleduRequestProperties$1: string[];
168
+ type GinNajdiEsuRequestRizeniPrehledu = {
169
+ [K in (typeof rizeniPrehleduRequestProperties$1)[number] as K]?: RequestParamType;
170
+ };
171
+ declare const najdiEsuSchema: z.ZodObject<{
172
+ 'Id-esu': z.ZodString;
173
+ 'Typ-esu': z.ZodOptional<z.ZodString>;
174
+ Nazev: z.ZodOptional<z.ZodString>;
175
+ Stat: z.ZodOptional<z.ZodString>;
176
+ Psc: z.ZodOptional<z.ZodString>;
177
+ Obec: z.ZodOptional<z.ZodString>;
178
+ Ulice: z.ZodOptional<z.ZodString>;
179
+ 'Cislo-orientacni': z.ZodOptional<z.ZodString>;
180
+ 'Cislo-popisne': z.ZodOptional<z.ZodString>;
181
+ Telefon: z.ZodOptional<z.ZodString>;
182
+ 'E-mail': z.ZodOptional<z.ZodString>;
183
+ 'Obchodni-jmeno': z.ZodOptional<z.ZodString>;
184
+ Ico: z.ZodOptional<z.ZodString>;
185
+ Dic: z.ZodOptional<z.ZodString>;
186
+ 'Rodne-cislo': z.ZodOptional<z.ZodString>;
187
+ Jmeno: z.ZodOptional<z.ZodString>;
188
+ Prijmeni: z.ZodOptional<z.ZodString>;
189
+ 'Id-dat-schranky': z.ZodOptional<z.ZodString>;
190
+ Verifikace: z.ZodString;
191
+ Aktivita: z.ZodString;
192
+ }, z.core.$strip>;
193
+ declare const najdiEsuResponseSchema: z.ZodObject<{
194
+ 'Najdi-esu': z.ZodPipe<z.ZodTransform<{} | null | undefined, unknown>, z.ZodDefault<z.ZodArray<z.ZodObject<{
195
+ 'Id-esu': z.ZodString;
196
+ 'Typ-esu': z.ZodOptional<z.ZodString>;
197
+ Nazev: z.ZodOptional<z.ZodString>;
198
+ Stat: z.ZodOptional<z.ZodString>;
199
+ Psc: z.ZodOptional<z.ZodString>;
200
+ Obec: z.ZodOptional<z.ZodString>;
201
+ Ulice: z.ZodOptional<z.ZodString>;
202
+ 'Cislo-orientacni': z.ZodOptional<z.ZodString>;
203
+ 'Cislo-popisne': z.ZodOptional<z.ZodString>;
204
+ Telefon: z.ZodOptional<z.ZodString>;
205
+ 'E-mail': z.ZodOptional<z.ZodString>;
206
+ 'Obchodni-jmeno': z.ZodOptional<z.ZodString>;
207
+ Ico: z.ZodOptional<z.ZodString>;
208
+ Dic: z.ZodOptional<z.ZodString>;
209
+ 'Rodne-cislo': z.ZodOptional<z.ZodString>;
210
+ Jmeno: z.ZodOptional<z.ZodString>;
211
+ Prijmeni: z.ZodOptional<z.ZodString>;
212
+ 'Id-dat-schranky': z.ZodOptional<z.ZodString>;
213
+ Verifikace: z.ZodString;
214
+ Aktivita: z.ZodString;
215
+ }, z.core.$strip>>>>;
216
+ }, z.core.$strip>;
217
+ type GinNajdiEsuNajdiEsuItem = z.infer<typeof najdiEsuSchema>;
218
+ type GinNajdiEsuResponse = z.infer<typeof najdiEsuResponseSchema>;
219
+ declare function najdiEsu(this: Ginis, requestNajdiEsu: GinNajdiEsuRequest, requestRizeniPrehledu: GinNajdiEsuRequestRizeniPrehledu): Promise<GinNajdiEsuResponse>;
220
+
481
221
  declare const _default$3: {
482
222
  detailFunkcnihoMista: typeof detailFunkcnihoMista;
483
223
  detailReferenta: typeof detailReferenta;
224
+ najdiEsu: typeof najdiEsu;
225
+ editEsu: typeof editEsu;
484
226
  };
485
227
 
486
228
  declare const detailElPodaniRequestProperties: readonly ["Id-zpravy", "Id-el-podani", "Id-esu", "Id-eu", "Zaradit-navazane"];
487
229
  type PodDetailElPodaniRequest = {
488
- [K in (typeof detailElPodaniRequestProperties)[number] as K]?: string;
230
+ [K in (typeof detailElPodaniRequestProperties)[number] as K]?: RequestParamType;
489
231
  };
490
232
  declare const detailElPodaniSchema: z.ZodObject<{
491
233
  'Datum-prijeti': z.ZodString;
@@ -499,47 +241,13 @@ declare const detailElPodaniSchema: z.ZodObject<{
499
241
  Vec: z.ZodOptional<z.ZodString>;
500
242
  'Spis-znacka': z.ZodOptional<z.ZodString>;
501
243
  Znacka: z.ZodOptional<z.ZodString>;
502
- }, "strip", z.ZodTypeAny, {
503
- 'Datum-prijeti': string;
504
- 'Stav-zpracovani': string;
505
- 'Stav-podani-kod': string;
506
- 'Stav-odpovedi-kod': string;
507
- 'Duvod-odmitnuti'?: string | undefined;
508
- 'Stav-podani-text'?: string | undefined;
509
- 'Stav-odpovedi-text'?: string | undefined;
510
- 'Id-dokumentu'?: string | undefined;
511
- Vec?: string | undefined;
512
- 'Spis-znacka'?: string | undefined;
513
- Znacka?: string | undefined;
514
- }, {
515
- 'Datum-prijeti': string;
516
- 'Stav-zpracovani': string;
517
- 'Stav-podani-kod': string;
518
- 'Stav-odpovedi-kod': string;
519
- 'Duvod-odmitnuti'?: string | undefined;
520
- 'Stav-podani-text'?: string | undefined;
521
- 'Stav-odpovedi-text'?: string | undefined;
522
- 'Id-dokumentu'?: string | undefined;
523
- Vec?: string | undefined;
524
- 'Spis-znacka'?: string | undefined;
525
- Znacka?: string | undefined;
526
- }>;
244
+ }, z.core.$strip>;
527
245
  declare const navazanyDokumentSchema: z.ZodObject<{
528
246
  'Id-dokumentu': z.ZodString;
529
247
  Vec: z.ZodOptional<z.ZodString>;
530
248
  'Spis-znacka': z.ZodOptional<z.ZodString>;
531
249
  Znacka: z.ZodOptional<z.ZodString>;
532
- }, "strip", z.ZodTypeAny, {
533
- 'Id-dokumentu': string;
534
- Vec?: string | undefined;
535
- 'Spis-znacka'?: string | undefined;
536
- Znacka?: string | undefined;
537
- }, {
538
- 'Id-dokumentu': string;
539
- Vec?: string | undefined;
540
- 'Spis-znacka'?: string | undefined;
541
- Znacka?: string | undefined;
542
- }>;
250
+ }, z.core.$strip>;
543
251
  declare const detailElPodaniResponseSchema: z.ZodObject<{
544
252
  'Detail-el-podani': z.ZodObject<{
545
253
  'Datum-prijeti': z.ZodString;
@@ -553,88 +261,14 @@ declare const detailElPodaniResponseSchema: z.ZodObject<{
553
261
  Vec: z.ZodOptional<z.ZodString>;
554
262
  'Spis-znacka': z.ZodOptional<z.ZodString>;
555
263
  Znacka: z.ZodOptional<z.ZodString>;
556
- }, "strip", z.ZodTypeAny, {
557
- 'Datum-prijeti': string;
558
- 'Stav-zpracovani': string;
559
- 'Stav-podani-kod': string;
560
- 'Stav-odpovedi-kod': string;
561
- 'Duvod-odmitnuti'?: string | undefined;
562
- 'Stav-podani-text'?: string | undefined;
563
- 'Stav-odpovedi-text'?: string | undefined;
564
- 'Id-dokumentu'?: string | undefined;
565
- Vec?: string | undefined;
566
- 'Spis-znacka'?: string | undefined;
567
- Znacka?: string | undefined;
568
- }, {
569
- 'Datum-prijeti': string;
570
- 'Stav-zpracovani': string;
571
- 'Stav-podani-kod': string;
572
- 'Stav-odpovedi-kod': string;
573
- 'Duvod-odmitnuti'?: string | undefined;
574
- 'Stav-podani-text'?: string | undefined;
575
- 'Stav-odpovedi-text'?: string | undefined;
576
- 'Id-dokumentu'?: string | undefined;
577
- Vec?: string | undefined;
578
- 'Spis-znacka'?: string | undefined;
579
- Znacka?: string | undefined;
580
- }>;
581
- 'Navazany-dokument': z.ZodEffects<z.ZodDefault<z.ZodArray<z.ZodObject<{
264
+ }, z.core.$strip>;
265
+ 'Navazany-dokument': z.ZodPipe<z.ZodTransform<{} | null | undefined, unknown>, z.ZodDefault<z.ZodArray<z.ZodObject<{
582
266
  'Id-dokumentu': z.ZodString;
583
267
  Vec: z.ZodOptional<z.ZodString>;
584
268
  'Spis-znacka': z.ZodOptional<z.ZodString>;
585
269
  Znacka: z.ZodOptional<z.ZodString>;
586
- }, "strip", z.ZodTypeAny, {
587
- 'Id-dokumentu': string;
588
- Vec?: string | undefined;
589
- 'Spis-znacka'?: string | undefined;
590
- Znacka?: string | undefined;
591
- }, {
592
- 'Id-dokumentu': string;
593
- Vec?: string | undefined;
594
- 'Spis-znacka'?: string | undefined;
595
- Znacka?: string | undefined;
596
- }>, "many">>, {
597
- 'Id-dokumentu': string;
598
- Vec?: string | undefined;
599
- 'Spis-znacka'?: string | undefined;
600
- Znacka?: string | undefined;
601
- }[], unknown>;
602
- }, "strip", z.ZodTypeAny, {
603
- 'Detail-el-podani': {
604
- 'Datum-prijeti': string;
605
- 'Stav-zpracovani': string;
606
- 'Stav-podani-kod': string;
607
- 'Stav-odpovedi-kod': string;
608
- 'Duvod-odmitnuti'?: string | undefined;
609
- 'Stav-podani-text'?: string | undefined;
610
- 'Stav-odpovedi-text'?: string | undefined;
611
- 'Id-dokumentu'?: string | undefined;
612
- Vec?: string | undefined;
613
- 'Spis-znacka'?: string | undefined;
614
- Znacka?: string | undefined;
615
- };
616
- 'Navazany-dokument': {
617
- 'Id-dokumentu': string;
618
- Vec?: string | undefined;
619
- 'Spis-znacka'?: string | undefined;
620
- Znacka?: string | undefined;
621
- }[];
622
- }, {
623
- 'Detail-el-podani': {
624
- 'Datum-prijeti': string;
625
- 'Stav-zpracovani': string;
626
- 'Stav-podani-kod': string;
627
- 'Stav-odpovedi-kod': string;
628
- 'Duvod-odmitnuti'?: string | undefined;
629
- 'Stav-podani-text'?: string | undefined;
630
- 'Stav-odpovedi-text'?: string | undefined;
631
- 'Id-dokumentu'?: string | undefined;
632
- Vec?: string | undefined;
633
- 'Spis-znacka'?: string | undefined;
634
- Znacka?: string | undefined;
635
- };
636
- 'Navazany-dokument'?: unknown;
637
- }>;
270
+ }, z.core.$strip>>>>;
271
+ }, z.core.$strip>;
638
272
  type PodDetailElPodaniDetailElPodani = z.infer<typeof detailElPodaniSchema>;
639
273
  type PodDetailElPodaniNavazanyDokumentItem = z.infer<typeof navazanyDokumentSchema>;
640
274
  type PodDetailElPodaniResponse = z.infer<typeof detailElPodaniResponseSchema>;
@@ -646,7 +280,7 @@ declare const _default$2: {
646
280
 
647
281
  declare const detailDokumentuRequestProperties$1: readonly ["Id-dokumentu", "Vyradit-historii", "Vyradit-obsah-spisu", "Vyradit-prilohy", "Vyradit-souvisejici", "Id-esu", "Vyradit-doruceni", "Id-eu"];
648
282
  type SslDetailDokumentuRequest = {
649
- [K in (typeof detailDokumentuRequestProperties$1)[number] as K]?: string;
283
+ [K in (typeof detailDokumentuRequestProperties$1)[number] as K]?: RequestParamType;
650
284
  };
651
285
  declare const wflDokumentSchema: z.ZodObject<{
652
286
  'Id-dokumentu': z.ZodString;
@@ -677,65 +311,7 @@ declare const wflDokumentSchema: z.ZodObject<{
677
311
  'Velikost-souboru': z.ZodOptional<z.ZodString>;
678
312
  Barcode: z.ZodOptional<z.ZodString>;
679
313
  'Priznak-souboru-ro': z.ZodOptional<z.ZodString>;
680
- }, "strip", z.ZodTypeAny, {
681
- 'Id-dokumentu': string;
682
- 'Id-spisu': string;
683
- 'Priznak-spisu': string;
684
- 'Priznak-cj': string;
685
- 'Id-funkce-vlastnika': string;
686
- 'Stav-distribuce': string;
687
- 'Stav-dokumentu': string;
688
- 'Id-agendy': string;
689
- 'Id-typu-dokumentu': string;
690
- 'Priznak-doruceni': string;
691
- 'Priznak-evidence-ssl': string;
692
- 'Datum-podani': string;
693
- 'Priznak-fyz-existence': string;
694
- 'Priznak-el-obrazu': string;
695
- 'Datum-zmeny': string;
696
- 'Id-zmenu-provedl': string;
697
- Vec?: string | undefined;
698
- Znacka?: string | undefined;
699
- 'Misto-vzniku'?: string | undefined;
700
- 'Id-souboru'?: string | undefined;
701
- 'Jmeno-souboru'?: string | undefined;
702
- 'Popis-souboru'?: string | undefined;
703
- 'Id-originalu'?: string | undefined;
704
- 'Verze-souboru'?: string | undefined;
705
- 'Datum-zmeny-souboru'?: string | undefined;
706
- 'Velikost-souboru'?: string | undefined;
707
- Barcode?: string | undefined;
708
- 'Priznak-souboru-ro'?: string | undefined;
709
- }, {
710
- 'Id-dokumentu': string;
711
- 'Id-spisu': string;
712
- 'Priznak-spisu': string;
713
- 'Priznak-cj': string;
714
- 'Id-funkce-vlastnika': string;
715
- 'Stav-distribuce': string;
716
- 'Stav-dokumentu': string;
717
- 'Id-agendy': string;
718
- 'Id-typu-dokumentu': string;
719
- 'Priznak-doruceni': string;
720
- 'Priznak-evidence-ssl': string;
721
- 'Datum-podani': string;
722
- 'Priznak-fyz-existence': string;
723
- 'Priznak-el-obrazu': string;
724
- 'Datum-zmeny': string;
725
- 'Id-zmenu-provedl': string;
726
- Vec?: string | undefined;
727
- Znacka?: string | undefined;
728
- 'Misto-vzniku'?: string | undefined;
729
- 'Id-souboru'?: string | undefined;
730
- 'Jmeno-souboru'?: string | undefined;
731
- 'Popis-souboru'?: string | undefined;
732
- 'Id-originalu'?: string | undefined;
733
- 'Verze-souboru'?: string | undefined;
734
- 'Datum-zmeny-souboru'?: string | undefined;
735
- 'Velikost-souboru'?: string | undefined;
736
- Barcode?: string | undefined;
737
- 'Priznak-souboru-ro'?: string | undefined;
738
- }>;
314
+ }, z.core.$strip>;
739
315
  declare const doruceniSchema: z.ZodObject<{
740
316
  'Id-dokumentu': z.ZodString;
741
317
  Stat: z.ZodOptional<z.ZodString>;
@@ -757,62 +333,12 @@ declare const doruceniSchema: z.ZodObject<{
757
333
  'Poznamka-k-doruceni': z.ZodOptional<z.ZodString>;
758
334
  'Id-uzlu-podani': z.ZodOptional<z.ZodString>;
759
335
  'Poradove-cislo-podani': z.ZodString;
760
- }, "strip", z.ZodTypeAny, {
761
- 'Id-dokumentu': string;
762
- 'Druh-zasilky': string;
763
- 'Druh-zachazeni': string;
764
- 'Poradove-cislo-podani': string;
765
- Stat?: string | undefined;
766
- Psc?: string | undefined;
767
- 'Datum-odeslani'?: string | undefined;
768
- 'Znacka-odesilatele'?: string | undefined;
769
- 'Datum-ze-dne'?: string | undefined;
770
- 'Podaci-cislo'?: string | undefined;
771
- 'Zpusob-doruceni'?: string | undefined;
772
- 'Datum-prijmu-podani'?: string | undefined;
773
- 'Id-odesilatele'?: string | undefined;
774
- 'Pocet-listu'?: string | undefined;
775
- 'Pocet-priloh'?: string | undefined;
776
- 'Pocet-stran'?: string | undefined;
777
- 'Pocet-kopii'?: string | undefined;
778
- 'Pocet-listu-priloh'?: string | undefined;
779
- 'Poznamka-k-doruceni'?: string | undefined;
780
- 'Id-uzlu-podani'?: string | undefined;
781
- }, {
782
- 'Id-dokumentu': string;
783
- 'Druh-zasilky': string;
784
- 'Druh-zachazeni': string;
785
- 'Poradove-cislo-podani': string;
786
- Stat?: string | undefined;
787
- Psc?: string | undefined;
788
- 'Datum-odeslani'?: string | undefined;
789
- 'Znacka-odesilatele'?: string | undefined;
790
- 'Datum-ze-dne'?: string | undefined;
791
- 'Podaci-cislo'?: string | undefined;
792
- 'Zpusob-doruceni'?: string | undefined;
793
- 'Datum-prijmu-podani'?: string | undefined;
794
- 'Id-odesilatele'?: string | undefined;
795
- 'Pocet-listu'?: string | undefined;
796
- 'Pocet-priloh'?: string | undefined;
797
- 'Pocet-stran'?: string | undefined;
798
- 'Pocet-kopii'?: string | undefined;
799
- 'Pocet-listu-priloh'?: string | undefined;
800
- 'Poznamka-k-doruceni'?: string | undefined;
801
- 'Id-uzlu-podani'?: string | undefined;
802
- }>;
336
+ }, z.core.$strip>;
803
337
  declare const eDoruceniSchema: z.ZodObject<{
804
338
  'Datum-prijeti': z.ZodOptional<z.ZodString>;
805
339
  'Datum-doruceni': z.ZodOptional<z.ZodString>;
806
340
  'Id-ds-odesilatele': z.ZodString;
807
- }, "strip", z.ZodTypeAny, {
808
- 'Id-ds-odesilatele': string;
809
- 'Datum-prijeti'?: string | undefined;
810
- 'Datum-doruceni'?: string | undefined;
811
- }, {
812
- 'Id-ds-odesilatele': string;
813
- 'Datum-prijeti'?: string | undefined;
814
- 'Datum-doruceni'?: string | undefined;
815
- }>;
341
+ }, z.core.$strip>;
816
342
  declare const historieDokumentuSchema: z.ZodObject<{
817
343
  'Id-dokumentu': z.ZodString;
818
344
  'Text-zmeny': z.ZodOptional<z.ZodString>;
@@ -820,21 +346,7 @@ declare const historieDokumentuSchema: z.ZodObject<{
820
346
  'Datum-zmeny': z.ZodString;
821
347
  'Id-zmenu-provedl': z.ZodString;
822
348
  'Id-ktg-zmeny': z.ZodString;
823
- }, "strip", z.ZodTypeAny, {
824
- 'Id-dokumentu': string;
825
- 'Datum-zmeny': string;
826
- 'Id-zmenu-provedl': string;
827
- 'Id-ktg-zmeny': string;
828
- Poznamka?: string | undefined;
829
- 'Text-zmeny'?: string | undefined;
830
- }, {
831
- 'Id-dokumentu': string;
832
- 'Datum-zmeny': string;
833
- 'Id-zmenu-provedl': string;
834
- 'Id-ktg-zmeny': string;
835
- Poznamka?: string | undefined;
836
- 'Text-zmeny'?: string | undefined;
837
- }>;
349
+ }, z.core.$strip>;
838
350
  declare const sslDokumentSchema: z.ZodObject<{
839
351
  'Id-dokumentu': z.ZodString;
840
352
  'Id-spisoveho-planu': z.ZodOptional<z.ZodString>;
@@ -856,49 +368,7 @@ declare const sslDokumentSchema: z.ZodObject<{
856
368
  'Datum-ulozeni': z.ZodOptional<z.ZodString>;
857
369
  'Datum-pravni-moci': z.ZodOptional<z.ZodString>;
858
370
  'Datum-vykonatelnosti': z.ZodOptional<z.ZodString>;
859
- }, "strip", z.ZodTypeAny, {
860
- 'Id-dokumentu': string;
861
- Poznamka?: string | undefined;
862
- 'Pocet-listu'?: string | undefined;
863
- 'Pocet-priloh'?: string | undefined;
864
- 'Pocet-stran'?: string | undefined;
865
- 'Pocet-kopii'?: string | undefined;
866
- 'Pocet-listu-priloh'?: string | undefined;
867
- 'Id-spisoveho-planu'?: string | undefined;
868
- 'Id-spisoveho-znaku'?: string | undefined;
869
- 'Skartacni-znak'?: string | undefined;
870
- 'Skartacni-lhuta'?: string | undefined;
871
- Pristup?: string | undefined;
872
- 'Id-stupne-utajeni'?: string | undefined;
873
- 'Vec-podrobne'?: string | undefined;
874
- 'Id-umisteni'?: string | undefined;
875
- Umisteni?: string | undefined;
876
- 'Id-funkce-resitele'?: string | undefined;
877
- 'Datum-ulozeni'?: string | undefined;
878
- 'Datum-pravni-moci'?: string | undefined;
879
- 'Datum-vykonatelnosti'?: string | undefined;
880
- }, {
881
- 'Id-dokumentu': string;
882
- Poznamka?: string | undefined;
883
- 'Pocet-listu'?: string | undefined;
884
- 'Pocet-priloh'?: string | undefined;
885
- 'Pocet-stran'?: string | undefined;
886
- 'Pocet-kopii'?: string | undefined;
887
- 'Pocet-listu-priloh'?: string | undefined;
888
- 'Id-spisoveho-planu'?: string | undefined;
889
- 'Id-spisoveho-znaku'?: string | undefined;
890
- 'Skartacni-znak'?: string | undefined;
891
- 'Skartacni-lhuta'?: string | undefined;
892
- Pristup?: string | undefined;
893
- 'Id-stupne-utajeni'?: string | undefined;
894
- 'Vec-podrobne'?: string | undefined;
895
- 'Id-umisteni'?: string | undefined;
896
- Umisteni?: string | undefined;
897
- 'Id-funkce-resitele'?: string | undefined;
898
- 'Datum-ulozeni'?: string | undefined;
899
- 'Datum-pravni-moci'?: string | undefined;
900
- 'Datum-vykonatelnosti'?: string | undefined;
901
- }>;
371
+ }, z.core.$strip>;
902
372
  declare const sslSpisSchema: z.ZodObject<{
903
373
  'Id-spisu': z.ZodString;
904
374
  'Id-zpusob-vyrizeni': z.ZodOptional<z.ZodString>;
@@ -914,37 +384,7 @@ declare const sslSpisSchema: z.ZodObject<{
914
384
  'Rok-spisu': z.ZodString;
915
385
  'Poradove-cislo-spisu': z.ZodString;
916
386
  'Doplnek-cj': z.ZodOptional<z.ZodString>;
917
- }, "strip", z.ZodTypeAny, {
918
- 'Id-spisu': string;
919
- 'Denik-spisu': string;
920
- 'Rok-spisu': string;
921
- 'Poradove-cislo-spisu': string;
922
- 'Datum-pravni-moci'?: string | undefined;
923
- 'Id-zpusob-vyrizeni'?: string | undefined;
924
- 'Poznamka-k-vyrizeni'?: string | undefined;
925
- 'Datum-vyrizeni'?: string | undefined;
926
- 'Id-funkce-vyrizovatele'?: string | undefined;
927
- 'Id-funkce-schvalovatele'?: string | undefined;
928
- 'Datum-uzavreni'?: string | undefined;
929
- 'Id-funkce-uzaviratele'?: string | undefined;
930
- 'Datum-vyrizeni-do'?: string | undefined;
931
- 'Doplnek-cj'?: string | undefined;
932
- }, {
933
- 'Id-spisu': string;
934
- 'Denik-spisu': string;
935
- 'Rok-spisu': string;
936
- 'Poradove-cislo-spisu': string;
937
- 'Datum-pravni-moci'?: string | undefined;
938
- 'Id-zpusob-vyrizeni'?: string | undefined;
939
- 'Poznamka-k-vyrizeni'?: string | undefined;
940
- 'Datum-vyrizeni'?: string | undefined;
941
- 'Id-funkce-vyrizovatele'?: string | undefined;
942
- 'Id-funkce-schvalovatele'?: string | undefined;
943
- 'Datum-uzavreni'?: string | undefined;
944
- 'Id-funkce-uzaviratele'?: string | undefined;
945
- 'Datum-vyrizeni-do'?: string | undefined;
946
- 'Doplnek-cj'?: string | undefined;
947
- }>;
387
+ }, z.core.$strip>;
948
388
  declare const sslObsahSpisSchema: z.ZodObject<{
949
389
  'Id-spisu': z.ZodString;
950
390
  'Id-vlozeneho-dokumentu': z.ZodString;
@@ -955,27 +395,7 @@ declare const sslObsahSpisSchema: z.ZodObject<{
955
395
  Aktivita: z.ZodString;
956
396
  'Poradove-cislo-uziv': z.ZodOptional<z.ZodString>;
957
397
  Poznamka: z.ZodOptional<z.ZodString>;
958
- }, "strip", z.ZodTypeAny, {
959
- Aktivita: string;
960
- 'Id-spisu': string;
961
- 'Id-vlozeneho-dokumentu': string;
962
- Poznamka?: string | undefined;
963
- 'Poradove-cislo'?: string | undefined;
964
- 'Datum-vlozeni'?: string | undefined;
965
- 'Datum-vyjmuti'?: string | undefined;
966
- 'Vztah-ke-spisu'?: string | undefined;
967
- 'Poradove-cislo-uziv'?: string | undefined;
968
- }, {
969
- Aktivita: string;
970
- 'Id-spisu': string;
971
- 'Id-vlozeneho-dokumentu': string;
972
- Poznamka?: string | undefined;
973
- 'Poradove-cislo'?: string | undefined;
974
- 'Datum-vlozeni'?: string | undefined;
975
- 'Datum-vyjmuti'?: string | undefined;
976
- 'Vztah-ke-spisu'?: string | undefined;
977
- 'Poradove-cislo-uziv'?: string | undefined;
978
- }>;
398
+ }, z.core.$strip>;
979
399
  declare const cjDokumentuSchema: z.ZodObject<{
980
400
  'Id-init-dokumentu': z.ZodString;
981
401
  'Id-vyriz-dokumentu': z.ZodOptional<z.ZodString>;
@@ -992,39 +412,7 @@ declare const cjDokumentuSchema: z.ZodObject<{
992
412
  'Datum-vyjmuti': z.ZodOptional<z.ZodString>;
993
413
  'Id-zpusob-vyrizeni': z.ZodOptional<z.ZodString>;
994
414
  'Doplnek-cj': z.ZodOptional<z.ZodString>;
995
- }, "strip", z.ZodTypeAny, {
996
- 'Id-init-dokumentu': string;
997
- 'Denik-cj': string;
998
- 'Rok-cj': string;
999
- 'Poradove-cislo-cj': string;
1000
- 'Znacka-cj': string;
1001
- 'Stav-cj': string;
1002
- 'Datum-evidence': string;
1003
- 'Id-zpusob-vyrizeni'?: string | undefined;
1004
- 'Datum-vyrizeni'?: string | undefined;
1005
- 'Datum-vyrizeni-do'?: string | undefined;
1006
- 'Doplnek-cj'?: string | undefined;
1007
- 'Datum-vlozeni'?: string | undefined;
1008
- 'Datum-vyjmuti'?: string | undefined;
1009
- 'Id-vyriz-dokumentu'?: string | undefined;
1010
- 'Vec-cj'?: string | undefined;
1011
- }, {
1012
- 'Id-init-dokumentu': string;
1013
- 'Denik-cj': string;
1014
- 'Rok-cj': string;
1015
- 'Poradove-cislo-cj': string;
1016
- 'Znacka-cj': string;
1017
- 'Stav-cj': string;
1018
- 'Datum-evidence': string;
1019
- 'Id-zpusob-vyrizeni'?: string | undefined;
1020
- 'Datum-vyrizeni'?: string | undefined;
1021
- 'Datum-vyrizeni-do'?: string | undefined;
1022
- 'Doplnek-cj'?: string | undefined;
1023
- 'Datum-vlozeni'?: string | undefined;
1024
- 'Datum-vyjmuti'?: string | undefined;
1025
- 'Id-vyriz-dokumentu'?: string | undefined;
1026
- 'Vec-cj'?: string | undefined;
1027
- }>;
415
+ }, z.core.$strip>;
1028
416
  declare const prilohyDokumentuSchema: z.ZodObject<{
1029
417
  'Poradove-cislo': z.ZodString;
1030
418
  Titulek: z.ZodOptional<z.ZodString>;
@@ -1041,88 +429,26 @@ declare const prilohyDokumentuSchema: z.ZodObject<{
1041
429
  'Kategorie-prilohy': z.ZodString;
1042
430
  'Kategorie-prilohy-txt': z.ZodOptional<z.ZodString>;
1043
431
  'Priznak-souboru-ro': z.ZodOptional<z.ZodString>;
1044
- }, "strip", z.ZodTypeAny, {
1045
- 'Priznak-el-obrazu': string;
1046
- 'Poradove-cislo': string;
1047
- 'Kategorie-prilohy': string;
1048
- Poznamka?: string | undefined;
1049
- 'Id-souboru'?: string | undefined;
1050
- 'Jmeno-souboru'?: string | undefined;
1051
- 'Verze-souboru'?: string | undefined;
1052
- 'Datum-zmeny-souboru'?: string | undefined;
1053
- 'Velikost-souboru'?: string | undefined;
1054
- 'Priznak-souboru-ro'?: string | undefined;
1055
- Titulek?: string | undefined;
1056
- Popis?: string | undefined;
1057
- 'Ke-zverejneni'?: string | undefined;
1058
- 'Stav-anonymizace'?: string | undefined;
1059
- 'Kategorie-prilohy-txt'?: string | undefined;
1060
- }, {
1061
- 'Priznak-el-obrazu': string;
1062
- 'Poradove-cislo': string;
1063
- 'Kategorie-prilohy': string;
1064
- Poznamka?: string | undefined;
1065
- 'Id-souboru'?: string | undefined;
1066
- 'Jmeno-souboru'?: string | undefined;
1067
- 'Verze-souboru'?: string | undefined;
1068
- 'Datum-zmeny-souboru'?: string | undefined;
1069
- 'Velikost-souboru'?: string | undefined;
1070
- 'Priznak-souboru-ro'?: string | undefined;
1071
- Titulek?: string | undefined;
1072
- Popis?: string | undefined;
1073
- 'Ke-zverejneni'?: string | undefined;
1074
- 'Stav-anonymizace'?: string | undefined;
1075
- 'Kategorie-prilohy-txt'?: string | undefined;
1076
- }>;
432
+ }, z.core.$strip>;
1077
433
  declare const souvisejiciDokumentySchema: z.ZodObject<{
1078
434
  'Typ-vazby': z.ZodString;
1079
435
  'Id-dokumentu': z.ZodString;
1080
436
  Poznamka: z.ZodOptional<z.ZodString>;
1081
437
  'Id-agendy': z.ZodString;
1082
- }, "strip", z.ZodTypeAny, {
1083
- 'Id-dokumentu': string;
1084
- 'Id-agendy': string;
1085
- 'Typ-vazby': string;
1086
- Poznamka?: string | undefined;
1087
- }, {
1088
- 'Id-dokumentu': string;
1089
- 'Id-agendy': string;
1090
- 'Typ-vazby': string;
1091
- Poznamka?: string | undefined;
1092
- }>;
438
+ }, z.core.$strip>;
1093
439
  declare const spisovnaSchema: z.ZodObject<{
1094
440
  'Stav-ulozeni-kod': z.ZodString;
1095
441
  'Stav-ulozeni': z.ZodString;
1096
442
  'Datum-skartace': z.ZodOptional<z.ZodString>;
1097
443
  'Id-archivu-nda': z.ZodOptional<z.ZodString>;
1098
- }, "strip", z.ZodTypeAny, {
1099
- 'Stav-ulozeni-kod': string;
1100
- 'Stav-ulozeni': string;
1101
- 'Datum-skartace'?: string | undefined;
1102
- 'Id-archivu-nda'?: string | undefined;
1103
- }, {
1104
- 'Stav-ulozeni-kod': string;
1105
- 'Stav-ulozeni': string;
1106
- 'Datum-skartace'?: string | undefined;
1107
- 'Id-archivu-nda'?: string | undefined;
1108
- }>;
444
+ }, z.core.$strip>;
1109
445
  declare const vlozenoDoSpisuSchema: z.ZodObject<{
1110
446
  'Id-spisu': z.ZodString;
1111
447
  'Poradove-cislo': z.ZodOptional<z.ZodString>;
1112
448
  'Poradove-cislo-uziv': z.ZodOptional<z.ZodString>;
1113
449
  Poznamka: z.ZodOptional<z.ZodString>;
1114
- }, "strip", z.ZodTypeAny, {
1115
- 'Id-spisu': string;
1116
- Poznamka?: string | undefined;
1117
- 'Poradove-cislo'?: string | undefined;
1118
- 'Poradove-cislo-uziv'?: string | undefined;
1119
- }, {
1120
- 'Id-spisu': string;
1121
- Poznamka?: string | undefined;
1122
- 'Poradove-cislo'?: string | undefined;
1123
- 'Poradove-cislo-uziv'?: string | undefined;
1124
- }>;
1125
- declare const DetailDokumentuResponseSchema$1: z.ZodObject<{
450
+ }, z.core.$strip>;
451
+ declare const detailDokumentuResponseSchema$1: z.ZodObject<{
1126
452
  'Wfl-dokument': z.ZodObject<{
1127
453
  'Id-dokumentu': z.ZodString;
1128
454
  'Id-spisu': z.ZodString;
@@ -1152,65 +478,7 @@ declare const DetailDokumentuResponseSchema$1: z.ZodObject<{
1152
478
  'Velikost-souboru': z.ZodOptional<z.ZodString>;
1153
479
  Barcode: z.ZodOptional<z.ZodString>;
1154
480
  'Priznak-souboru-ro': z.ZodOptional<z.ZodString>;
1155
- }, "strip", z.ZodTypeAny, {
1156
- 'Id-dokumentu': string;
1157
- 'Id-spisu': string;
1158
- 'Priznak-spisu': string;
1159
- 'Priznak-cj': string;
1160
- 'Id-funkce-vlastnika': string;
1161
- 'Stav-distribuce': string;
1162
- 'Stav-dokumentu': string;
1163
- 'Id-agendy': string;
1164
- 'Id-typu-dokumentu': string;
1165
- 'Priznak-doruceni': string;
1166
- 'Priznak-evidence-ssl': string;
1167
- 'Datum-podani': string;
1168
- 'Priznak-fyz-existence': string;
1169
- 'Priznak-el-obrazu': string;
1170
- 'Datum-zmeny': string;
1171
- 'Id-zmenu-provedl': string;
1172
- Vec?: string | undefined;
1173
- Znacka?: string | undefined;
1174
- 'Misto-vzniku'?: string | undefined;
1175
- 'Id-souboru'?: string | undefined;
1176
- 'Jmeno-souboru'?: string | undefined;
1177
- 'Popis-souboru'?: string | undefined;
1178
- 'Id-originalu'?: string | undefined;
1179
- 'Verze-souboru'?: string | undefined;
1180
- 'Datum-zmeny-souboru'?: string | undefined;
1181
- 'Velikost-souboru'?: string | undefined;
1182
- Barcode?: string | undefined;
1183
- 'Priznak-souboru-ro'?: string | undefined;
1184
- }, {
1185
- 'Id-dokumentu': string;
1186
- 'Id-spisu': string;
1187
- 'Priznak-spisu': string;
1188
- 'Priznak-cj': string;
1189
- 'Id-funkce-vlastnika': string;
1190
- 'Stav-distribuce': string;
1191
- 'Stav-dokumentu': string;
1192
- 'Id-agendy': string;
1193
- 'Id-typu-dokumentu': string;
1194
- 'Priznak-doruceni': string;
1195
- 'Priznak-evidence-ssl': string;
1196
- 'Datum-podani': string;
1197
- 'Priznak-fyz-existence': string;
1198
- 'Priznak-el-obrazu': string;
1199
- 'Datum-zmeny': string;
1200
- 'Id-zmenu-provedl': string;
1201
- Vec?: string | undefined;
1202
- Znacka?: string | undefined;
1203
- 'Misto-vzniku'?: string | undefined;
1204
- 'Id-souboru'?: string | undefined;
1205
- 'Jmeno-souboru'?: string | undefined;
1206
- 'Popis-souboru'?: string | undefined;
1207
- 'Id-originalu'?: string | undefined;
1208
- 'Verze-souboru'?: string | undefined;
1209
- 'Datum-zmeny-souboru'?: string | undefined;
1210
- 'Velikost-souboru'?: string | undefined;
1211
- Barcode?: string | undefined;
1212
- 'Priznak-souboru-ro'?: string | undefined;
1213
- }>;
481
+ }, z.core.$strip>;
1214
482
  Doruceni: z.ZodOptional<z.ZodObject<{
1215
483
  'Id-dokumentu': z.ZodString;
1216
484
  Stat: z.ZodOptional<z.ZodString>;
@@ -1232,91 +500,20 @@ declare const DetailDokumentuResponseSchema$1: z.ZodObject<{
1232
500
  'Poznamka-k-doruceni': z.ZodOptional<z.ZodString>;
1233
501
  'Id-uzlu-podani': z.ZodOptional<z.ZodString>;
1234
502
  'Poradove-cislo-podani': z.ZodString;
1235
- }, "strip", z.ZodTypeAny, {
1236
- 'Id-dokumentu': string;
1237
- 'Druh-zasilky': string;
1238
- 'Druh-zachazeni': string;
1239
- 'Poradove-cislo-podani': string;
1240
- Stat?: string | undefined;
1241
- Psc?: string | undefined;
1242
- 'Datum-odeslani'?: string | undefined;
1243
- 'Znacka-odesilatele'?: string | undefined;
1244
- 'Datum-ze-dne'?: string | undefined;
1245
- 'Podaci-cislo'?: string | undefined;
1246
- 'Zpusob-doruceni'?: string | undefined;
1247
- 'Datum-prijmu-podani'?: string | undefined;
1248
- 'Id-odesilatele'?: string | undefined;
1249
- 'Pocet-listu'?: string | undefined;
1250
- 'Pocet-priloh'?: string | undefined;
1251
- 'Pocet-stran'?: string | undefined;
1252
- 'Pocet-kopii'?: string | undefined;
1253
- 'Pocet-listu-priloh'?: string | undefined;
1254
- 'Poznamka-k-doruceni'?: string | undefined;
1255
- 'Id-uzlu-podani'?: string | undefined;
1256
- }, {
1257
- 'Id-dokumentu': string;
1258
- 'Druh-zasilky': string;
1259
- 'Druh-zachazeni': string;
1260
- 'Poradove-cislo-podani': string;
1261
- Stat?: string | undefined;
1262
- Psc?: string | undefined;
1263
- 'Datum-odeslani'?: string | undefined;
1264
- 'Znacka-odesilatele'?: string | undefined;
1265
- 'Datum-ze-dne'?: string | undefined;
1266
- 'Podaci-cislo'?: string | undefined;
1267
- 'Zpusob-doruceni'?: string | undefined;
1268
- 'Datum-prijmu-podani'?: string | undefined;
1269
- 'Id-odesilatele'?: string | undefined;
1270
- 'Pocet-listu'?: string | undefined;
1271
- 'Pocet-priloh'?: string | undefined;
1272
- 'Pocet-stran'?: string | undefined;
1273
- 'Pocet-kopii'?: string | undefined;
1274
- 'Pocet-listu-priloh'?: string | undefined;
1275
- 'Poznamka-k-doruceni'?: string | undefined;
1276
- 'Id-uzlu-podani'?: string | undefined;
1277
- }>>;
503
+ }, z.core.$strip>>;
1278
504
  'E-doruceni': z.ZodOptional<z.ZodObject<{
1279
505
  'Datum-prijeti': z.ZodOptional<z.ZodString>;
1280
506
  'Datum-doruceni': z.ZodOptional<z.ZodString>;
1281
507
  'Id-ds-odesilatele': z.ZodString;
1282
- }, "strip", z.ZodTypeAny, {
1283
- 'Id-ds-odesilatele': string;
1284
- 'Datum-prijeti'?: string | undefined;
1285
- 'Datum-doruceni'?: string | undefined;
1286
- }, {
1287
- 'Id-ds-odesilatele': string;
1288
- 'Datum-prijeti'?: string | undefined;
1289
- 'Datum-doruceni'?: string | undefined;
1290
- }>>;
1291
- 'Historie-dokumentu': z.ZodEffects<z.ZodDefault<z.ZodArray<z.ZodObject<{
508
+ }, z.core.$strip>>;
509
+ 'Historie-dokumentu': z.ZodPipe<z.ZodTransform<{} | null | undefined, unknown>, z.ZodDefault<z.ZodArray<z.ZodObject<{
1292
510
  'Id-dokumentu': z.ZodString;
1293
511
  'Text-zmeny': z.ZodOptional<z.ZodString>;
1294
512
  Poznamka: z.ZodOptional<z.ZodString>;
1295
513
  'Datum-zmeny': z.ZodString;
1296
514
  'Id-zmenu-provedl': z.ZodString;
1297
515
  'Id-ktg-zmeny': z.ZodString;
1298
- }, "strip", z.ZodTypeAny, {
1299
- 'Id-dokumentu': string;
1300
- 'Datum-zmeny': string;
1301
- 'Id-zmenu-provedl': string;
1302
- 'Id-ktg-zmeny': string;
1303
- Poznamka?: string | undefined;
1304
- 'Text-zmeny'?: string | undefined;
1305
- }, {
1306
- 'Id-dokumentu': string;
1307
- 'Datum-zmeny': string;
1308
- 'Id-zmenu-provedl': string;
1309
- 'Id-ktg-zmeny': string;
1310
- Poznamka?: string | undefined;
1311
- 'Text-zmeny'?: string | undefined;
1312
- }>, "many">>, {
1313
- 'Id-dokumentu': string;
1314
- 'Datum-zmeny': string;
1315
- 'Id-zmenu-provedl': string;
1316
- 'Id-ktg-zmeny': string;
1317
- Poznamka?: string | undefined;
1318
- 'Text-zmeny'?: string | undefined;
1319
- }[], unknown>;
516
+ }, z.core.$strip>>>>;
1320
517
  'Ssl-dokument': z.ZodOptional<z.ZodObject<{
1321
518
  'Id-dokumentu': z.ZodString;
1322
519
  'Id-spisoveho-planu': z.ZodOptional<z.ZodString>;
@@ -1338,49 +535,7 @@ declare const DetailDokumentuResponseSchema$1: z.ZodObject<{
1338
535
  'Datum-ulozeni': z.ZodOptional<z.ZodString>;
1339
536
  'Datum-pravni-moci': z.ZodOptional<z.ZodString>;
1340
537
  'Datum-vykonatelnosti': z.ZodOptional<z.ZodString>;
1341
- }, "strip", z.ZodTypeAny, {
1342
- 'Id-dokumentu': string;
1343
- Poznamka?: string | undefined;
1344
- 'Pocet-listu'?: string | undefined;
1345
- 'Pocet-priloh'?: string | undefined;
1346
- 'Pocet-stran'?: string | undefined;
1347
- 'Pocet-kopii'?: string | undefined;
1348
- 'Pocet-listu-priloh'?: string | undefined;
1349
- 'Id-spisoveho-planu'?: string | undefined;
1350
- 'Id-spisoveho-znaku'?: string | undefined;
1351
- 'Skartacni-znak'?: string | undefined;
1352
- 'Skartacni-lhuta'?: string | undefined;
1353
- Pristup?: string | undefined;
1354
- 'Id-stupne-utajeni'?: string | undefined;
1355
- 'Vec-podrobne'?: string | undefined;
1356
- 'Id-umisteni'?: string | undefined;
1357
- Umisteni?: string | undefined;
1358
- 'Id-funkce-resitele'?: string | undefined;
1359
- 'Datum-ulozeni'?: string | undefined;
1360
- 'Datum-pravni-moci'?: string | undefined;
1361
- 'Datum-vykonatelnosti'?: string | undefined;
1362
- }, {
1363
- 'Id-dokumentu': string;
1364
- Poznamka?: string | undefined;
1365
- 'Pocet-listu'?: string | undefined;
1366
- 'Pocet-priloh'?: string | undefined;
1367
- 'Pocet-stran'?: string | undefined;
1368
- 'Pocet-kopii'?: string | undefined;
1369
- 'Pocet-listu-priloh'?: string | undefined;
1370
- 'Id-spisoveho-planu'?: string | undefined;
1371
- 'Id-spisoveho-znaku'?: string | undefined;
1372
- 'Skartacni-znak'?: string | undefined;
1373
- 'Skartacni-lhuta'?: string | undefined;
1374
- Pristup?: string | undefined;
1375
- 'Id-stupne-utajeni'?: string | undefined;
1376
- 'Vec-podrobne'?: string | undefined;
1377
- 'Id-umisteni'?: string | undefined;
1378
- Umisteni?: string | undefined;
1379
- 'Id-funkce-resitele'?: string | undefined;
1380
- 'Datum-ulozeni'?: string | undefined;
1381
- 'Datum-pravni-moci'?: string | undefined;
1382
- 'Datum-vykonatelnosti'?: string | undefined;
1383
- }>>;
538
+ }, z.core.$strip>>;
1384
539
  'Ssl-spis': z.ZodOptional<z.ZodObject<{
1385
540
  'Id-spisu': z.ZodString;
1386
541
  'Id-zpusob-vyrizeni': z.ZodOptional<z.ZodString>;
@@ -1396,38 +551,8 @@ declare const DetailDokumentuResponseSchema$1: z.ZodObject<{
1396
551
  'Rok-spisu': z.ZodString;
1397
552
  'Poradove-cislo-spisu': z.ZodString;
1398
553
  'Doplnek-cj': z.ZodOptional<z.ZodString>;
1399
- }, "strip", z.ZodTypeAny, {
1400
- 'Id-spisu': string;
1401
- 'Denik-spisu': string;
1402
- 'Rok-spisu': string;
1403
- 'Poradove-cislo-spisu': string;
1404
- 'Datum-pravni-moci'?: string | undefined;
1405
- 'Id-zpusob-vyrizeni'?: string | undefined;
1406
- 'Poznamka-k-vyrizeni'?: string | undefined;
1407
- 'Datum-vyrizeni'?: string | undefined;
1408
- 'Id-funkce-vyrizovatele'?: string | undefined;
1409
- 'Id-funkce-schvalovatele'?: string | undefined;
1410
- 'Datum-uzavreni'?: string | undefined;
1411
- 'Id-funkce-uzaviratele'?: string | undefined;
1412
- 'Datum-vyrizeni-do'?: string | undefined;
1413
- 'Doplnek-cj'?: string | undefined;
1414
- }, {
1415
- 'Id-spisu': string;
1416
- 'Denik-spisu': string;
1417
- 'Rok-spisu': string;
1418
- 'Poradove-cislo-spisu': string;
1419
- 'Datum-pravni-moci'?: string | undefined;
1420
- 'Id-zpusob-vyrizeni'?: string | undefined;
1421
- 'Poznamka-k-vyrizeni'?: string | undefined;
1422
- 'Datum-vyrizeni'?: string | undefined;
1423
- 'Id-funkce-vyrizovatele'?: string | undefined;
1424
- 'Id-funkce-schvalovatele'?: string | undefined;
1425
- 'Datum-uzavreni'?: string | undefined;
1426
- 'Id-funkce-uzaviratele'?: string | undefined;
1427
- 'Datum-vyrizeni-do'?: string | undefined;
1428
- 'Doplnek-cj'?: string | undefined;
1429
- }>>;
1430
- 'Ssl-obsah-spis': z.ZodEffects<z.ZodDefault<z.ZodArray<z.ZodObject<{
554
+ }, z.core.$strip>>;
555
+ 'Ssl-obsah-spis': z.ZodPipe<z.ZodTransform<{} | null | undefined, unknown>, z.ZodDefault<z.ZodArray<z.ZodObject<{
1431
556
  'Id-spisu': z.ZodString;
1432
557
  'Id-vlozeneho-dokumentu': z.ZodString;
1433
558
  'Poradove-cislo': z.ZodOptional<z.ZodString>;
@@ -1437,37 +562,7 @@ declare const DetailDokumentuResponseSchema$1: z.ZodObject<{
1437
562
  Aktivita: z.ZodString;
1438
563
  'Poradove-cislo-uziv': z.ZodOptional<z.ZodString>;
1439
564
  Poznamka: z.ZodOptional<z.ZodString>;
1440
- }, "strip", z.ZodTypeAny, {
1441
- Aktivita: string;
1442
- 'Id-spisu': string;
1443
- 'Id-vlozeneho-dokumentu': string;
1444
- Poznamka?: string | undefined;
1445
- 'Poradove-cislo'?: string | undefined;
1446
- 'Datum-vlozeni'?: string | undefined;
1447
- 'Datum-vyjmuti'?: string | undefined;
1448
- 'Vztah-ke-spisu'?: string | undefined;
1449
- 'Poradove-cislo-uziv'?: string | undefined;
1450
- }, {
1451
- Aktivita: string;
1452
- 'Id-spisu': string;
1453
- 'Id-vlozeneho-dokumentu': string;
1454
- Poznamka?: string | undefined;
1455
- 'Poradove-cislo'?: string | undefined;
1456
- 'Datum-vlozeni'?: string | undefined;
1457
- 'Datum-vyjmuti'?: string | undefined;
1458
- 'Vztah-ke-spisu'?: string | undefined;
1459
- 'Poradove-cislo-uziv'?: string | undefined;
1460
- }>, "many">>, {
1461
- Aktivita: string;
1462
- 'Id-spisu': string;
1463
- 'Id-vlozeneho-dokumentu': string;
1464
- Poznamka?: string | undefined;
1465
- 'Poradove-cislo'?: string | undefined;
1466
- 'Datum-vlozeni'?: string | undefined;
1467
- 'Datum-vyjmuti'?: string | undefined;
1468
- 'Vztah-ke-spisu'?: string | undefined;
1469
- 'Poradove-cislo-uziv'?: string | undefined;
1470
- }[], unknown>;
565
+ }, z.core.$strip>>>>;
1471
566
  'Cj-dokumentu': z.ZodOptional<z.ZodObject<{
1472
567
  'Id-init-dokumentu': z.ZodString;
1473
568
  'Id-vyriz-dokumentu': z.ZodOptional<z.ZodString>;
@@ -1484,40 +579,8 @@ declare const DetailDokumentuResponseSchema$1: z.ZodObject<{
1484
579
  'Datum-vyjmuti': z.ZodOptional<z.ZodString>;
1485
580
  'Id-zpusob-vyrizeni': z.ZodOptional<z.ZodString>;
1486
581
  'Doplnek-cj': z.ZodOptional<z.ZodString>;
1487
- }, "strip", z.ZodTypeAny, {
1488
- 'Id-init-dokumentu': string;
1489
- 'Denik-cj': string;
1490
- 'Rok-cj': string;
1491
- 'Poradove-cislo-cj': string;
1492
- 'Znacka-cj': string;
1493
- 'Stav-cj': string;
1494
- 'Datum-evidence': string;
1495
- 'Id-zpusob-vyrizeni'?: string | undefined;
1496
- 'Datum-vyrizeni'?: string | undefined;
1497
- 'Datum-vyrizeni-do'?: string | undefined;
1498
- 'Doplnek-cj'?: string | undefined;
1499
- 'Datum-vlozeni'?: string | undefined;
1500
- 'Datum-vyjmuti'?: string | undefined;
1501
- 'Id-vyriz-dokumentu'?: string | undefined;
1502
- 'Vec-cj'?: string | undefined;
1503
- }, {
1504
- 'Id-init-dokumentu': string;
1505
- 'Denik-cj': string;
1506
- 'Rok-cj': string;
1507
- 'Poradove-cislo-cj': string;
1508
- 'Znacka-cj': string;
1509
- 'Stav-cj': string;
1510
- 'Datum-evidence': string;
1511
- 'Id-zpusob-vyrizeni'?: string | undefined;
1512
- 'Datum-vyrizeni'?: string | undefined;
1513
- 'Datum-vyrizeni-do'?: string | undefined;
1514
- 'Doplnek-cj'?: string | undefined;
1515
- 'Datum-vlozeni'?: string | undefined;
1516
- 'Datum-vyjmuti'?: string | undefined;
1517
- 'Id-vyriz-dokumentu'?: string | undefined;
1518
- 'Vec-cj'?: string | undefined;
1519
- }>>;
1520
- 'Prilohy-dokumentu': z.ZodEffects<z.ZodDefault<z.ZodArray<z.ZodObject<{
582
+ }, z.core.$strip>>;
583
+ 'Prilohy-dokumentu': z.ZodPipe<z.ZodTransform<{} | null | undefined, unknown>, z.ZodDefault<z.ZodArray<z.ZodObject<{
1521
584
  'Poradove-cislo': z.ZodString;
1522
585
  Titulek: z.ZodOptional<z.ZodString>;
1523
586
  Popis: z.ZodOptional<z.ZodString>;
@@ -1533,405 +596,26 @@ declare const DetailDokumentuResponseSchema$1: z.ZodObject<{
1533
596
  'Kategorie-prilohy': z.ZodString;
1534
597
  'Kategorie-prilohy-txt': z.ZodOptional<z.ZodString>;
1535
598
  'Priznak-souboru-ro': z.ZodOptional<z.ZodString>;
1536
- }, "strip", z.ZodTypeAny, {
1537
- 'Priznak-el-obrazu': string;
1538
- 'Poradove-cislo': string;
1539
- 'Kategorie-prilohy': string;
1540
- Poznamka?: string | undefined;
1541
- 'Id-souboru'?: string | undefined;
1542
- 'Jmeno-souboru'?: string | undefined;
1543
- 'Verze-souboru'?: string | undefined;
1544
- 'Datum-zmeny-souboru'?: string | undefined;
1545
- 'Velikost-souboru'?: string | undefined;
1546
- 'Priznak-souboru-ro'?: string | undefined;
1547
- Titulek?: string | undefined;
1548
- Popis?: string | undefined;
1549
- 'Ke-zverejneni'?: string | undefined;
1550
- 'Stav-anonymizace'?: string | undefined;
1551
- 'Kategorie-prilohy-txt'?: string | undefined;
1552
- }, {
1553
- 'Priznak-el-obrazu': string;
1554
- 'Poradove-cislo': string;
1555
- 'Kategorie-prilohy': string;
1556
- Poznamka?: string | undefined;
1557
- 'Id-souboru'?: string | undefined;
1558
- 'Jmeno-souboru'?: string | undefined;
1559
- 'Verze-souboru'?: string | undefined;
1560
- 'Datum-zmeny-souboru'?: string | undefined;
1561
- 'Velikost-souboru'?: string | undefined;
1562
- 'Priznak-souboru-ro'?: string | undefined;
1563
- Titulek?: string | undefined;
1564
- Popis?: string | undefined;
1565
- 'Ke-zverejneni'?: string | undefined;
1566
- 'Stav-anonymizace'?: string | undefined;
1567
- 'Kategorie-prilohy-txt'?: string | undefined;
1568
- }>, "many">>, {
1569
- 'Priznak-el-obrazu': string;
1570
- 'Poradove-cislo': string;
1571
- 'Kategorie-prilohy': string;
1572
- Poznamka?: string | undefined;
1573
- 'Id-souboru'?: string | undefined;
1574
- 'Jmeno-souboru'?: string | undefined;
1575
- 'Verze-souboru'?: string | undefined;
1576
- 'Datum-zmeny-souboru'?: string | undefined;
1577
- 'Velikost-souboru'?: string | undefined;
1578
- 'Priznak-souboru-ro'?: string | undefined;
1579
- Titulek?: string | undefined;
1580
- Popis?: string | undefined;
1581
- 'Ke-zverejneni'?: string | undefined;
1582
- 'Stav-anonymizace'?: string | undefined;
1583
- 'Kategorie-prilohy-txt'?: string | undefined;
1584
- }[], unknown>;
1585
- 'Souvisejici-dokumenty': z.ZodEffects<z.ZodDefault<z.ZodArray<z.ZodObject<{
599
+ }, z.core.$strip>>>>;
600
+ 'Souvisejici-dokumenty': z.ZodPipe<z.ZodTransform<{} | null | undefined, unknown>, z.ZodDefault<z.ZodArray<z.ZodObject<{
1586
601
  'Typ-vazby': z.ZodString;
1587
602
  'Id-dokumentu': z.ZodString;
1588
603
  Poznamka: z.ZodOptional<z.ZodString>;
1589
604
  'Id-agendy': z.ZodString;
1590
- }, "strip", z.ZodTypeAny, {
1591
- 'Id-dokumentu': string;
1592
- 'Id-agendy': string;
1593
- 'Typ-vazby': string;
1594
- Poznamka?: string | undefined;
1595
- }, {
1596
- 'Id-dokumentu': string;
1597
- 'Id-agendy': string;
1598
- 'Typ-vazby': string;
1599
- Poznamka?: string | undefined;
1600
- }>, "many">>, {
1601
- 'Id-dokumentu': string;
1602
- 'Id-agendy': string;
1603
- 'Typ-vazby': string;
1604
- Poznamka?: string | undefined;
1605
- }[], unknown>;
1606
- Spisovna: z.ZodEffects<z.ZodDefault<z.ZodArray<z.ZodObject<{
605
+ }, z.core.$strip>>>>;
606
+ Spisovna: z.ZodPipe<z.ZodTransform<{} | null | undefined, unknown>, z.ZodDefault<z.ZodArray<z.ZodObject<{
1607
607
  'Stav-ulozeni-kod': z.ZodString;
1608
608
  'Stav-ulozeni': z.ZodString;
1609
609
  'Datum-skartace': z.ZodOptional<z.ZodString>;
1610
610
  'Id-archivu-nda': z.ZodOptional<z.ZodString>;
1611
- }, "strip", z.ZodTypeAny, {
1612
- 'Stav-ulozeni-kod': string;
1613
- 'Stav-ulozeni': string;
1614
- 'Datum-skartace'?: string | undefined;
1615
- 'Id-archivu-nda'?: string | undefined;
1616
- }, {
1617
- 'Stav-ulozeni-kod': string;
1618
- 'Stav-ulozeni': string;
1619
- 'Datum-skartace'?: string | undefined;
1620
- 'Id-archivu-nda'?: string | undefined;
1621
- }>, "many">>, {
1622
- 'Stav-ulozeni-kod': string;
1623
- 'Stav-ulozeni': string;
1624
- 'Datum-skartace'?: string | undefined;
1625
- 'Id-archivu-nda'?: string | undefined;
1626
- }[], unknown>;
611
+ }, z.core.$strip>>>>;
1627
612
  'Vlozeno-do-spisu': z.ZodOptional<z.ZodObject<{
1628
613
  'Id-spisu': z.ZodString;
1629
614
  'Poradove-cislo': z.ZodOptional<z.ZodString>;
1630
615
  'Poradove-cislo-uziv': z.ZodOptional<z.ZodString>;
1631
616
  Poznamka: z.ZodOptional<z.ZodString>;
1632
- }, "strip", z.ZodTypeAny, {
1633
- 'Id-spisu': string;
1634
- Poznamka?: string | undefined;
1635
- 'Poradove-cislo'?: string | undefined;
1636
- 'Poradove-cislo-uziv'?: string | undefined;
1637
- }, {
1638
- 'Id-spisu': string;
1639
- Poznamka?: string | undefined;
1640
- 'Poradove-cislo'?: string | undefined;
1641
- 'Poradove-cislo-uziv'?: string | undefined;
1642
- }>>;
1643
- }, "strip", z.ZodTypeAny, {
1644
- 'Wfl-dokument': {
1645
- 'Id-dokumentu': string;
1646
- 'Id-spisu': string;
1647
- 'Priznak-spisu': string;
1648
- 'Priznak-cj': string;
1649
- 'Id-funkce-vlastnika': string;
1650
- 'Stav-distribuce': string;
1651
- 'Stav-dokumentu': string;
1652
- 'Id-agendy': string;
1653
- 'Id-typu-dokumentu': string;
1654
- 'Priznak-doruceni': string;
1655
- 'Priznak-evidence-ssl': string;
1656
- 'Datum-podani': string;
1657
- 'Priznak-fyz-existence': string;
1658
- 'Priznak-el-obrazu': string;
1659
- 'Datum-zmeny': string;
1660
- 'Id-zmenu-provedl': string;
1661
- Vec?: string | undefined;
1662
- Znacka?: string | undefined;
1663
- 'Misto-vzniku'?: string | undefined;
1664
- 'Id-souboru'?: string | undefined;
1665
- 'Jmeno-souboru'?: string | undefined;
1666
- 'Popis-souboru'?: string | undefined;
1667
- 'Id-originalu'?: string | undefined;
1668
- 'Verze-souboru'?: string | undefined;
1669
- 'Datum-zmeny-souboru'?: string | undefined;
1670
- 'Velikost-souboru'?: string | undefined;
1671
- Barcode?: string | undefined;
1672
- 'Priznak-souboru-ro'?: string | undefined;
1673
- };
1674
- 'Historie-dokumentu': {
1675
- 'Id-dokumentu': string;
1676
- 'Datum-zmeny': string;
1677
- 'Id-zmenu-provedl': string;
1678
- 'Id-ktg-zmeny': string;
1679
- Poznamka?: string | undefined;
1680
- 'Text-zmeny'?: string | undefined;
1681
- }[];
1682
- 'Ssl-obsah-spis': {
1683
- Aktivita: string;
1684
- 'Id-spisu': string;
1685
- 'Id-vlozeneho-dokumentu': string;
1686
- Poznamka?: string | undefined;
1687
- 'Poradove-cislo'?: string | undefined;
1688
- 'Datum-vlozeni'?: string | undefined;
1689
- 'Datum-vyjmuti'?: string | undefined;
1690
- 'Vztah-ke-spisu'?: string | undefined;
1691
- 'Poradove-cislo-uziv'?: string | undefined;
1692
- }[];
1693
- 'Prilohy-dokumentu': {
1694
- 'Priznak-el-obrazu': string;
1695
- 'Poradove-cislo': string;
1696
- 'Kategorie-prilohy': string;
1697
- Poznamka?: string | undefined;
1698
- 'Id-souboru'?: string | undefined;
1699
- 'Jmeno-souboru'?: string | undefined;
1700
- 'Verze-souboru'?: string | undefined;
1701
- 'Datum-zmeny-souboru'?: string | undefined;
1702
- 'Velikost-souboru'?: string | undefined;
1703
- 'Priznak-souboru-ro'?: string | undefined;
1704
- Titulek?: string | undefined;
1705
- Popis?: string | undefined;
1706
- 'Ke-zverejneni'?: string | undefined;
1707
- 'Stav-anonymizace'?: string | undefined;
1708
- 'Kategorie-prilohy-txt'?: string | undefined;
1709
- }[];
1710
- 'Souvisejici-dokumenty': {
1711
- 'Id-dokumentu': string;
1712
- 'Id-agendy': string;
1713
- 'Typ-vazby': string;
1714
- Poznamka?: string | undefined;
1715
- }[];
1716
- Spisovna: {
1717
- 'Stav-ulozeni-kod': string;
1718
- 'Stav-ulozeni': string;
1719
- 'Datum-skartace'?: string | undefined;
1720
- 'Id-archivu-nda'?: string | undefined;
1721
- }[];
1722
- Doruceni?: {
1723
- 'Id-dokumentu': string;
1724
- 'Druh-zasilky': string;
1725
- 'Druh-zachazeni': string;
1726
- 'Poradove-cislo-podani': string;
1727
- Stat?: string | undefined;
1728
- Psc?: string | undefined;
1729
- 'Datum-odeslani'?: string | undefined;
1730
- 'Znacka-odesilatele'?: string | undefined;
1731
- 'Datum-ze-dne'?: string | undefined;
1732
- 'Podaci-cislo'?: string | undefined;
1733
- 'Zpusob-doruceni'?: string | undefined;
1734
- 'Datum-prijmu-podani'?: string | undefined;
1735
- 'Id-odesilatele'?: string | undefined;
1736
- 'Pocet-listu'?: string | undefined;
1737
- 'Pocet-priloh'?: string | undefined;
1738
- 'Pocet-stran'?: string | undefined;
1739
- 'Pocet-kopii'?: string | undefined;
1740
- 'Pocet-listu-priloh'?: string | undefined;
1741
- 'Poznamka-k-doruceni'?: string | undefined;
1742
- 'Id-uzlu-podani'?: string | undefined;
1743
- } | undefined;
1744
- 'E-doruceni'?: {
1745
- 'Id-ds-odesilatele': string;
1746
- 'Datum-prijeti'?: string | undefined;
1747
- 'Datum-doruceni'?: string | undefined;
1748
- } | undefined;
1749
- 'Ssl-dokument'?: {
1750
- 'Id-dokumentu': string;
1751
- Poznamka?: string | undefined;
1752
- 'Pocet-listu'?: string | undefined;
1753
- 'Pocet-priloh'?: string | undefined;
1754
- 'Pocet-stran'?: string | undefined;
1755
- 'Pocet-kopii'?: string | undefined;
1756
- 'Pocet-listu-priloh'?: string | undefined;
1757
- 'Id-spisoveho-planu'?: string | undefined;
1758
- 'Id-spisoveho-znaku'?: string | undefined;
1759
- 'Skartacni-znak'?: string | undefined;
1760
- 'Skartacni-lhuta'?: string | undefined;
1761
- Pristup?: string | undefined;
1762
- 'Id-stupne-utajeni'?: string | undefined;
1763
- 'Vec-podrobne'?: string | undefined;
1764
- 'Id-umisteni'?: string | undefined;
1765
- Umisteni?: string | undefined;
1766
- 'Id-funkce-resitele'?: string | undefined;
1767
- 'Datum-ulozeni'?: string | undefined;
1768
- 'Datum-pravni-moci'?: string | undefined;
1769
- 'Datum-vykonatelnosti'?: string | undefined;
1770
- } | undefined;
1771
- 'Ssl-spis'?: {
1772
- 'Id-spisu': string;
1773
- 'Denik-spisu': string;
1774
- 'Rok-spisu': string;
1775
- 'Poradove-cislo-spisu': string;
1776
- 'Datum-pravni-moci'?: string | undefined;
1777
- 'Id-zpusob-vyrizeni'?: string | undefined;
1778
- 'Poznamka-k-vyrizeni'?: string | undefined;
1779
- 'Datum-vyrizeni'?: string | undefined;
1780
- 'Id-funkce-vyrizovatele'?: string | undefined;
1781
- 'Id-funkce-schvalovatele'?: string | undefined;
1782
- 'Datum-uzavreni'?: string | undefined;
1783
- 'Id-funkce-uzaviratele'?: string | undefined;
1784
- 'Datum-vyrizeni-do'?: string | undefined;
1785
- 'Doplnek-cj'?: string | undefined;
1786
- } | undefined;
1787
- 'Cj-dokumentu'?: {
1788
- 'Id-init-dokumentu': string;
1789
- 'Denik-cj': string;
1790
- 'Rok-cj': string;
1791
- 'Poradove-cislo-cj': string;
1792
- 'Znacka-cj': string;
1793
- 'Stav-cj': string;
1794
- 'Datum-evidence': string;
1795
- 'Id-zpusob-vyrizeni'?: string | undefined;
1796
- 'Datum-vyrizeni'?: string | undefined;
1797
- 'Datum-vyrizeni-do'?: string | undefined;
1798
- 'Doplnek-cj'?: string | undefined;
1799
- 'Datum-vlozeni'?: string | undefined;
1800
- 'Datum-vyjmuti'?: string | undefined;
1801
- 'Id-vyriz-dokumentu'?: string | undefined;
1802
- 'Vec-cj'?: string | undefined;
1803
- } | undefined;
1804
- 'Vlozeno-do-spisu'?: {
1805
- 'Id-spisu': string;
1806
- Poznamka?: string | undefined;
1807
- 'Poradove-cislo'?: string | undefined;
1808
- 'Poradove-cislo-uziv'?: string | undefined;
1809
- } | undefined;
1810
- }, {
1811
- 'Wfl-dokument': {
1812
- 'Id-dokumentu': string;
1813
- 'Id-spisu': string;
1814
- 'Priznak-spisu': string;
1815
- 'Priznak-cj': string;
1816
- 'Id-funkce-vlastnika': string;
1817
- 'Stav-distribuce': string;
1818
- 'Stav-dokumentu': string;
1819
- 'Id-agendy': string;
1820
- 'Id-typu-dokumentu': string;
1821
- 'Priznak-doruceni': string;
1822
- 'Priznak-evidence-ssl': string;
1823
- 'Datum-podani': string;
1824
- 'Priznak-fyz-existence': string;
1825
- 'Priznak-el-obrazu': string;
1826
- 'Datum-zmeny': string;
1827
- 'Id-zmenu-provedl': string;
1828
- Vec?: string | undefined;
1829
- Znacka?: string | undefined;
1830
- 'Misto-vzniku'?: string | undefined;
1831
- 'Id-souboru'?: string | undefined;
1832
- 'Jmeno-souboru'?: string | undefined;
1833
- 'Popis-souboru'?: string | undefined;
1834
- 'Id-originalu'?: string | undefined;
1835
- 'Verze-souboru'?: string | undefined;
1836
- 'Datum-zmeny-souboru'?: string | undefined;
1837
- 'Velikost-souboru'?: string | undefined;
1838
- Barcode?: string | undefined;
1839
- 'Priznak-souboru-ro'?: string | undefined;
1840
- };
1841
- Doruceni?: {
1842
- 'Id-dokumentu': string;
1843
- 'Druh-zasilky': string;
1844
- 'Druh-zachazeni': string;
1845
- 'Poradove-cislo-podani': string;
1846
- Stat?: string | undefined;
1847
- Psc?: string | undefined;
1848
- 'Datum-odeslani'?: string | undefined;
1849
- 'Znacka-odesilatele'?: string | undefined;
1850
- 'Datum-ze-dne'?: string | undefined;
1851
- 'Podaci-cislo'?: string | undefined;
1852
- 'Zpusob-doruceni'?: string | undefined;
1853
- 'Datum-prijmu-podani'?: string | undefined;
1854
- 'Id-odesilatele'?: string | undefined;
1855
- 'Pocet-listu'?: string | undefined;
1856
- 'Pocet-priloh'?: string | undefined;
1857
- 'Pocet-stran'?: string | undefined;
1858
- 'Pocet-kopii'?: string | undefined;
1859
- 'Pocet-listu-priloh'?: string | undefined;
1860
- 'Poznamka-k-doruceni'?: string | undefined;
1861
- 'Id-uzlu-podani'?: string | undefined;
1862
- } | undefined;
1863
- 'E-doruceni'?: {
1864
- 'Id-ds-odesilatele': string;
1865
- 'Datum-prijeti'?: string | undefined;
1866
- 'Datum-doruceni'?: string | undefined;
1867
- } | undefined;
1868
- 'Historie-dokumentu'?: unknown;
1869
- 'Ssl-dokument'?: {
1870
- 'Id-dokumentu': string;
1871
- Poznamka?: string | undefined;
1872
- 'Pocet-listu'?: string | undefined;
1873
- 'Pocet-priloh'?: string | undefined;
1874
- 'Pocet-stran'?: string | undefined;
1875
- 'Pocet-kopii'?: string | undefined;
1876
- 'Pocet-listu-priloh'?: string | undefined;
1877
- 'Id-spisoveho-planu'?: string | undefined;
1878
- 'Id-spisoveho-znaku'?: string | undefined;
1879
- 'Skartacni-znak'?: string | undefined;
1880
- 'Skartacni-lhuta'?: string | undefined;
1881
- Pristup?: string | undefined;
1882
- 'Id-stupne-utajeni'?: string | undefined;
1883
- 'Vec-podrobne'?: string | undefined;
1884
- 'Id-umisteni'?: string | undefined;
1885
- Umisteni?: string | undefined;
1886
- 'Id-funkce-resitele'?: string | undefined;
1887
- 'Datum-ulozeni'?: string | undefined;
1888
- 'Datum-pravni-moci'?: string | undefined;
1889
- 'Datum-vykonatelnosti'?: string | undefined;
1890
- } | undefined;
1891
- 'Ssl-spis'?: {
1892
- 'Id-spisu': string;
1893
- 'Denik-spisu': string;
1894
- 'Rok-spisu': string;
1895
- 'Poradove-cislo-spisu': string;
1896
- 'Datum-pravni-moci'?: string | undefined;
1897
- 'Id-zpusob-vyrizeni'?: string | undefined;
1898
- 'Poznamka-k-vyrizeni'?: string | undefined;
1899
- 'Datum-vyrizeni'?: string | undefined;
1900
- 'Id-funkce-vyrizovatele'?: string | undefined;
1901
- 'Id-funkce-schvalovatele'?: string | undefined;
1902
- 'Datum-uzavreni'?: string | undefined;
1903
- 'Id-funkce-uzaviratele'?: string | undefined;
1904
- 'Datum-vyrizeni-do'?: string | undefined;
1905
- 'Doplnek-cj'?: string | undefined;
1906
- } | undefined;
1907
- 'Ssl-obsah-spis'?: unknown;
1908
- 'Cj-dokumentu'?: {
1909
- 'Id-init-dokumentu': string;
1910
- 'Denik-cj': string;
1911
- 'Rok-cj': string;
1912
- 'Poradove-cislo-cj': string;
1913
- 'Znacka-cj': string;
1914
- 'Stav-cj': string;
1915
- 'Datum-evidence': string;
1916
- 'Id-zpusob-vyrizeni'?: string | undefined;
1917
- 'Datum-vyrizeni'?: string | undefined;
1918
- 'Datum-vyrizeni-do'?: string | undefined;
1919
- 'Doplnek-cj'?: string | undefined;
1920
- 'Datum-vlozeni'?: string | undefined;
1921
- 'Datum-vyjmuti'?: string | undefined;
1922
- 'Id-vyriz-dokumentu'?: string | undefined;
1923
- 'Vec-cj'?: string | undefined;
1924
- } | undefined;
1925
- 'Prilohy-dokumentu'?: unknown;
1926
- 'Souvisejici-dokumenty'?: unknown;
1927
- Spisovna?: unknown;
1928
- 'Vlozeno-do-spisu'?: {
1929
- 'Id-spisu': string;
1930
- Poznamka?: string | undefined;
1931
- 'Poradove-cislo'?: string | undefined;
1932
- 'Poradove-cislo-uziv'?: string | undefined;
1933
- } | undefined;
1934
- }>;
617
+ }, z.core.$strip>>;
618
+ }, z.core.$strip>;
1935
619
  type SslDetailDokumentuWflDokument = z.infer<typeof wflDokumentSchema>;
1936
620
  type SslDetailDokumentuDoruceni = z.infer<typeof doruceniSchema>;
1937
621
  type SslDetailDokumentuEDoruceni = z.infer<typeof eDoruceniSchema>;
@@ -1944,16 +628,44 @@ type SslDetailDokumentuPrilohyDokumentuItem = z.infer<typeof prilohyDokumentuSch
1944
628
  type SslDetailDokumentuSouvisejiciDokumentyItem = z.infer<typeof souvisejiciDokumentySchema>;
1945
629
  type SslDetailDokumentuSpisovnaItem = z.infer<typeof spisovnaSchema>;
1946
630
  type SslDetailDokumentuVlozenoDoSpisu = z.infer<typeof vlozenoDoSpisuSchema>;
1947
- type SslDetailDokumentuResponse = z.infer<typeof DetailDokumentuResponseSchema$1>;
631
+ type SslDetailDokumentuResponse = z.infer<typeof detailDokumentuResponseSchema$1>;
1948
632
  declare function detailDokumentu$1(this: Ginis, bodyObj: SslDetailDokumentuRequest): Promise<SslDetailDokumentuResponse>;
1949
633
 
634
+ declare const nastavitVlastnostDokumentuRequestProperties: string[];
635
+ type SslNastavitVlastnostDokumentuRequest = {
636
+ [K in (typeof nastavitVlastnostDokumentuRequestProperties)[number] as K]?: RequestParamType;
637
+ };
638
+ declare const nastavitVlastnostDokumentuSchema: z.ZodObject<{
639
+ 'Id-dokumentu': z.ZodString;
640
+ 'Id-profilu': z.ZodString;
641
+ 'Id-struktury': z.ZodString;
642
+ 'Id-vlastnosti': z.ZodString;
643
+ 'Poradove-cislo': z.ZodString;
644
+ 'Hodnota-raw': z.ZodOptional<z.ZodString>;
645
+ 'Hodnota-popis': z.ZodOptional<z.ZodString>;
646
+ }, z.core.$strip>;
647
+ declare const nastavitVlastnostDokumentuResponseSchema: z.ZodObject<{
648
+ 'Nastavit-vlastnost-dokumentu': z.ZodObject<{
649
+ 'Id-dokumentu': z.ZodString;
650
+ 'Id-profilu': z.ZodString;
651
+ 'Id-struktury': z.ZodString;
652
+ 'Id-vlastnosti': z.ZodString;
653
+ 'Poradove-cislo': z.ZodString;
654
+ 'Hodnota-raw': z.ZodOptional<z.ZodString>;
655
+ 'Hodnota-popis': z.ZodOptional<z.ZodString>;
656
+ }, z.core.$strip>;
657
+ }, z.core.$strip>;
658
+ type SslNastavitVlastnostDokumentuNastavitVlastnostDokumentu = z.infer<typeof nastavitVlastnostDokumentuSchema>;
659
+ type SslNastavitVlastnostDokumentuResponse = z.infer<typeof nastavitVlastnostDokumentuResponseSchema>;
660
+ declare function nastavitVlastnostDokumentu(this: Ginis, bodyObj: SslNastavitVlastnostDokumentuRequest): Promise<SslNastavitVlastnostDokumentuResponse>;
661
+
1950
662
  declare const prehledDokumentuRequestProperties: string[];
1951
663
  type SslPrehledDokumentuRequest = {
1952
- [K in (typeof prehledDokumentuRequestProperties)[number] as K]?: string;
664
+ [K in (typeof prehledDokumentuRequestProperties)[number] as K]?: RequestParamType;
1953
665
  };
1954
666
  declare const rizeniPrehleduRequestProperties: string[];
1955
667
  type SslPrehledDokumentuRequestRizeniPrehledu = {
1956
- [K in (typeof rizeniPrehleduRequestProperties)[number] as K]?: string;
668
+ [K in (typeof rizeniPrehleduRequestProperties)[number] as K]?: RequestParamType;
1957
669
  };
1958
670
  declare const prehledDokumentuSchema: z.ZodObject<{
1959
671
  'Id-dokumentu': z.ZodString;
@@ -1985,82 +697,14 @@ declare const prehledDokumentuSchema: z.ZodObject<{
1985
697
  'Id-vyriz-dokumentu': z.ZodOptional<z.ZodString>;
1986
698
  'Id-odesilatele': z.ZodOptional<z.ZodString>;
1987
699
  'Id-osoby-vlastnika': z.ZodString;
1988
- }, "strip", z.ZodTypeAny, {
1989
- 'Id-dokumentu': string;
1990
- 'Id-spisu': string;
1991
- 'Priznak-spisu': string;
1992
- 'Priznak-cj': string;
1993
- 'Id-funkce-vlastnika': string;
1994
- 'Stav-distribuce': string;
1995
- 'Stav-dokumentu': string;
1996
- 'Id-agendy': string;
1997
- 'Id-typu-dokumentu': string;
1998
- 'Priznak-doruceni': string;
1999
- 'Priznak-evidence-ssl': string;
2000
- 'Misto-vzniku': string;
2001
- 'Datum-podani': string;
2002
- 'Priznak-fyz-existence': string;
2003
- 'Priznak-el-obrazu': string;
2004
- 'Datum-zmeny': string;
2005
- 'Id-zmenu-provedl': string;
2006
- 'Id-osoby-vlastnika': string;
2007
- Vec?: string | undefined;
2008
- Znacka?: string | undefined;
2009
- 'Id-odesilatele'?: string | undefined;
2010
- 'Id-spisoveho-planu'?: string | undefined;
2011
- 'Id-spisoveho-znaku'?: string | undefined;
2012
- 'Vec-podrobne'?: string | undefined;
2013
- 'Id-init-dokumentu'?: string | undefined;
2014
- 'Id-vyriz-dokumentu'?: string | undefined;
2015
- 'Vec-cj'?: string | undefined;
2016
- 'Znacka-cj'?: string | undefined;
2017
- 'Stav-cj'?: string | undefined;
2018
- }, {
2019
- 'Id-dokumentu': string;
2020
- 'Id-spisu': string;
2021
- 'Priznak-spisu': string;
2022
- 'Priznak-cj': string;
2023
- 'Id-funkce-vlastnika': string;
2024
- 'Stav-distribuce': string;
2025
- 'Stav-dokumentu': string;
2026
- 'Id-agendy': string;
2027
- 'Id-typu-dokumentu': string;
2028
- 'Priznak-doruceni': string;
2029
- 'Priznak-evidence-ssl': string;
2030
- 'Misto-vzniku': string;
2031
- 'Datum-podani': string;
2032
- 'Priznak-fyz-existence': string;
2033
- 'Priznak-el-obrazu': string;
2034
- 'Datum-zmeny': string;
2035
- 'Id-zmenu-provedl': string;
2036
- 'Id-osoby-vlastnika': string;
2037
- Vec?: string | undefined;
2038
- Znacka?: string | undefined;
2039
- 'Id-odesilatele'?: string | undefined;
2040
- 'Id-spisoveho-planu'?: string | undefined;
2041
- 'Id-spisoveho-znaku'?: string | undefined;
2042
- 'Vec-podrobne'?: string | undefined;
2043
- 'Id-init-dokumentu'?: string | undefined;
2044
- 'Id-vyriz-dokumentu'?: string | undefined;
2045
- 'Vec-cj'?: string | undefined;
2046
- 'Znacka-cj'?: string | undefined;
2047
- 'Stav-cj'?: string | undefined;
2048
- }>;
700
+ }, z.core.$strip>;
2049
701
  declare const stavPrehleduSchema: z.ZodObject<{
2050
702
  'Radek-od': z.ZodString;
2051
703
  'Radek-do': z.ZodString;
2052
704
  'Radku-celkem': z.ZodString;
2053
- }, "strip", z.ZodTypeAny, {
2054
- 'Radek-od': string;
2055
- 'Radek-do': string;
2056
- 'Radku-celkem': string;
2057
- }, {
2058
- 'Radek-od': string;
2059
- 'Radek-do': string;
2060
- 'Radku-celkem': string;
2061
- }>;
2062
- declare const PrehledDokumentuResponseSchema: z.ZodObject<{
2063
- 'Prehled-dokumentu': z.ZodEffects<z.ZodDefault<z.ZodArray<z.ZodObject<{
705
+ }, z.core.$strip>;
706
+ declare const prehledDokumentuResponseSchema: z.ZodObject<{
707
+ 'Prehled-dokumentu': z.ZodPipe<z.ZodTransform<{} | null | undefined, unknown>, z.ZodDefault<z.ZodArray<z.ZodObject<{
2064
708
  'Id-dokumentu': z.ZodString;
2065
709
  'Id-spisu': z.ZodString;
2066
710
  'Priznak-spisu': z.ZodString;
@@ -2090,262 +734,147 @@ declare const PrehledDokumentuResponseSchema: z.ZodObject<{
2090
734
  'Id-vyriz-dokumentu': z.ZodOptional<z.ZodString>;
2091
735
  'Id-odesilatele': z.ZodOptional<z.ZodString>;
2092
736
  'Id-osoby-vlastnika': z.ZodString;
2093
- }, "strip", z.ZodTypeAny, {
2094
- 'Id-dokumentu': string;
2095
- 'Id-spisu': string;
2096
- 'Priznak-spisu': string;
2097
- 'Priznak-cj': string;
2098
- 'Id-funkce-vlastnika': string;
2099
- 'Stav-distribuce': string;
2100
- 'Stav-dokumentu': string;
2101
- 'Id-agendy': string;
2102
- 'Id-typu-dokumentu': string;
2103
- 'Priznak-doruceni': string;
2104
- 'Priznak-evidence-ssl': string;
2105
- 'Misto-vzniku': string;
2106
- 'Datum-podani': string;
2107
- 'Priznak-fyz-existence': string;
2108
- 'Priznak-el-obrazu': string;
2109
- 'Datum-zmeny': string;
2110
- 'Id-zmenu-provedl': string;
2111
- 'Id-osoby-vlastnika': string;
2112
- Vec?: string | undefined;
2113
- Znacka?: string | undefined;
2114
- 'Id-odesilatele'?: string | undefined;
2115
- 'Id-spisoveho-planu'?: string | undefined;
2116
- 'Id-spisoveho-znaku'?: string | undefined;
2117
- 'Vec-podrobne'?: string | undefined;
2118
- 'Id-init-dokumentu'?: string | undefined;
2119
- 'Id-vyriz-dokumentu'?: string | undefined;
2120
- 'Vec-cj'?: string | undefined;
2121
- 'Znacka-cj'?: string | undefined;
2122
- 'Stav-cj'?: string | undefined;
2123
- }, {
2124
- 'Id-dokumentu': string;
2125
- 'Id-spisu': string;
2126
- 'Priznak-spisu': string;
2127
- 'Priznak-cj': string;
2128
- 'Id-funkce-vlastnika': string;
2129
- 'Stav-distribuce': string;
2130
- 'Stav-dokumentu': string;
2131
- 'Id-agendy': string;
2132
- 'Id-typu-dokumentu': string;
2133
- 'Priznak-doruceni': string;
2134
- 'Priznak-evidence-ssl': string;
2135
- 'Misto-vzniku': string;
2136
- 'Datum-podani': string;
2137
- 'Priznak-fyz-existence': string;
2138
- 'Priznak-el-obrazu': string;
2139
- 'Datum-zmeny': string;
2140
- 'Id-zmenu-provedl': string;
2141
- 'Id-osoby-vlastnika': string;
2142
- Vec?: string | undefined;
2143
- Znacka?: string | undefined;
2144
- 'Id-odesilatele'?: string | undefined;
2145
- 'Id-spisoveho-planu'?: string | undefined;
2146
- 'Id-spisoveho-znaku'?: string | undefined;
2147
- 'Vec-podrobne'?: string | undefined;
2148
- 'Id-init-dokumentu'?: string | undefined;
2149
- 'Id-vyriz-dokumentu'?: string | undefined;
2150
- 'Vec-cj'?: string | undefined;
2151
- 'Znacka-cj'?: string | undefined;
2152
- 'Stav-cj'?: string | undefined;
2153
- }>, "many">>, {
2154
- 'Id-dokumentu': string;
2155
- 'Id-spisu': string;
2156
- 'Priznak-spisu': string;
2157
- 'Priznak-cj': string;
2158
- 'Id-funkce-vlastnika': string;
2159
- 'Stav-distribuce': string;
2160
- 'Stav-dokumentu': string;
2161
- 'Id-agendy': string;
2162
- 'Id-typu-dokumentu': string;
2163
- 'Priznak-doruceni': string;
2164
- 'Priznak-evidence-ssl': string;
2165
- 'Misto-vzniku': string;
2166
- 'Datum-podani': string;
2167
- 'Priznak-fyz-existence': string;
2168
- 'Priznak-el-obrazu': string;
2169
- 'Datum-zmeny': string;
2170
- 'Id-zmenu-provedl': string;
2171
- 'Id-osoby-vlastnika': string;
2172
- Vec?: string | undefined;
2173
- Znacka?: string | undefined;
2174
- 'Id-odesilatele'?: string | undefined;
2175
- 'Id-spisoveho-planu'?: string | undefined;
2176
- 'Id-spisoveho-znaku'?: string | undefined;
2177
- 'Vec-podrobne'?: string | undefined;
2178
- 'Id-init-dokumentu'?: string | undefined;
2179
- 'Id-vyriz-dokumentu'?: string | undefined;
2180
- 'Vec-cj'?: string | undefined;
2181
- 'Znacka-cj'?: string | undefined;
2182
- 'Stav-cj'?: string | undefined;
2183
- }[], unknown>;
737
+ }, z.core.$strip>>>>;
2184
738
  'Stav-prehledu': z.ZodObject<{
2185
739
  'Radek-od': z.ZodString;
2186
740
  'Radek-do': z.ZodString;
2187
741
  'Radku-celkem': z.ZodString;
2188
- }, "strip", z.ZodTypeAny, {
2189
- 'Radek-od': string;
2190
- 'Radek-do': string;
2191
- 'Radku-celkem': string;
2192
- }, {
2193
- 'Radek-od': string;
2194
- 'Radek-do': string;
2195
- 'Radku-celkem': string;
2196
- }>;
2197
- }, "strip", z.ZodTypeAny, {
2198
- 'Prehled-dokumentu': {
2199
- 'Id-dokumentu': string;
2200
- 'Id-spisu': string;
2201
- 'Priznak-spisu': string;
2202
- 'Priznak-cj': string;
2203
- 'Id-funkce-vlastnika': string;
2204
- 'Stav-distribuce': string;
2205
- 'Stav-dokumentu': string;
2206
- 'Id-agendy': string;
2207
- 'Id-typu-dokumentu': string;
2208
- 'Priznak-doruceni': string;
2209
- 'Priznak-evidence-ssl': string;
2210
- 'Misto-vzniku': string;
2211
- 'Datum-podani': string;
2212
- 'Priznak-fyz-existence': string;
2213
- 'Priznak-el-obrazu': string;
2214
- 'Datum-zmeny': string;
2215
- 'Id-zmenu-provedl': string;
2216
- 'Id-osoby-vlastnika': string;
2217
- Vec?: string | undefined;
2218
- Znacka?: string | undefined;
2219
- 'Id-odesilatele'?: string | undefined;
2220
- 'Id-spisoveho-planu'?: string | undefined;
2221
- 'Id-spisoveho-znaku'?: string | undefined;
2222
- 'Vec-podrobne'?: string | undefined;
2223
- 'Id-init-dokumentu'?: string | undefined;
2224
- 'Id-vyriz-dokumentu'?: string | undefined;
2225
- 'Vec-cj'?: string | undefined;
2226
- 'Znacka-cj'?: string | undefined;
2227
- 'Stav-cj'?: string | undefined;
2228
- }[];
2229
- 'Stav-prehledu': {
2230
- 'Radek-od': string;
2231
- 'Radek-do': string;
2232
- 'Radku-celkem': string;
2233
- };
2234
- }, {
2235
- 'Stav-prehledu': {
2236
- 'Radek-od': string;
2237
- 'Radek-do': string;
2238
- 'Radku-celkem': string;
2239
- };
2240
- 'Prehled-dokumentu'?: unknown;
2241
- }>;
742
+ }, z.core.$strip>;
743
+ }, z.core.$strip>;
2242
744
  type SslPrehledDokumentuPrehledDokumentuItem = z.infer<typeof prehledDokumentuSchema>;
2243
745
  type SslPrehledDokumentuStavPrehledu = z.infer<typeof stavPrehleduSchema>;
2244
- type SslPrehledDokumentuResponse = z.infer<typeof PrehledDokumentuResponseSchema>;
746
+ type SslPrehledDokumentuResponse = z.infer<typeof prehledDokumentuResponseSchema>;
2245
747
  declare function prehledDokumentu(this: Ginis, requestPrehledDokumentu: SslPrehledDokumentuRequest, requestRizeniPrehledu: SslPrehledDokumentuRequestRizeniPrehledu): Promise<SslPrehledDokumentuResponse>;
2246
748
 
2247
749
  declare const pridatSouborRequestProperties: readonly ["Id-dokumentu", "Id-souboru", "Jmeno-souboru", "Typ-vazby", "Popis-souboru", "Podrobny-popis-souboru", "Data", "Kontrola-podpisu", "Priz-platna-verze", "Priz-archiv-verze", "Id-kategorie-typu-prilohy"];
2248
- /**
2249
- * File can be provided according to the documentation as base64 encoded string
2250
- * of its content inside of the Data attribute to send using a regular request.
2251
- *
2252
- * It is also possible to provide file as byte array inside of Obsah attribute.
2253
- * In this scenario a multipart request is sent and the file is send using MTOM XOP
2254
- * inside of Mime envelope. It allows for much faster a larger file transfers.
2255
- */
2256
750
  type SslPridatSouborRequest = {
2257
- [K in (typeof pridatSouborRequestProperties)[number] as K]?: string;
2258
- } & {
2259
- Obsah?: Readable;
751
+ [K in (typeof pridatSouborRequestProperties)[number] as K]?: RequestParamType;
2260
752
  };
2261
753
  declare const pridatSouborSchema: z.ZodObject<{
2262
754
  'Datum-zmeny': z.ZodString;
2263
755
  'Id-souboru': z.ZodString;
2264
756
  'Verze-souboru': z.ZodString;
2265
- }, "strip", z.ZodTypeAny, {
2266
- 'Id-souboru': string;
2267
- 'Datum-zmeny': string;
2268
- 'Verze-souboru': string;
2269
- }, {
2270
- 'Id-souboru': string;
2271
- 'Datum-zmeny': string;
2272
- 'Verze-souboru': string;
2273
- }>;
757
+ }, z.core.$strip>;
2274
758
  declare const pridatSouborResponseSchema: z.ZodObject<{
2275
759
  'Pridat-soubor': z.ZodObject<{
2276
760
  'Datum-zmeny': z.ZodString;
2277
761
  'Id-souboru': z.ZodString;
2278
762
  'Verze-souboru': z.ZodString;
2279
- }, "strip", z.ZodTypeAny, {
2280
- 'Id-souboru': string;
2281
- 'Datum-zmeny': string;
2282
- 'Verze-souboru': string;
2283
- }, {
2284
- 'Id-souboru': string;
2285
- 'Datum-zmeny': string;
2286
- 'Verze-souboru': string;
2287
- }>;
2288
- }, "strip", z.ZodTypeAny, {
2289
- 'Pridat-soubor': {
2290
- 'Id-souboru': string;
2291
- 'Datum-zmeny': string;
2292
- 'Verze-souboru': string;
2293
- };
2294
- }, {
2295
- 'Pridat-soubor': {
2296
- 'Id-souboru': string;
2297
- 'Datum-zmeny': string;
2298
- 'Verze-souboru': string;
2299
- };
2300
- }>;
763
+ }, z.core.$strip>;
764
+ }, z.core.$strip>;
2301
765
  type SslPridatSouborPridatSoubor = z.infer<typeof pridatSouborSchema>;
2302
766
  type SslPridatSouborResponse = z.infer<typeof pridatSouborResponseSchema>;
2303
767
  declare function pridatSoubor(this: Ginis, bodyObj: SslPridatSouborRequest): Promise<SslPridatSouborResponse>;
2304
- declare function pridatSouborMtom(this: Ginis, bodyObj: SslPridatSouborRequest): Promise<SslPridatSouborResponse>;
768
+ declare function pridatSouborMtom(this: Ginis, bodyObj: SslPridatSouborRequest, fileStream?: Readable): Promise<SslPridatSouborResponse>;
2305
769
 
2306
770
  declare const prideleniRequestProperties: string[];
2307
771
  type SslPrideleniRequest = {
2308
- [K in (typeof prideleniRequestProperties)[number] as K]?: string;
772
+ [K in (typeof prideleniRequestProperties)[number] as K]?: RequestParamType;
2309
773
  };
2310
774
  declare const prideleniSchema: z.ZodObject<{
2311
775
  'Datum-zmeny': z.ZodString;
2312
- }, "strip", z.ZodTypeAny, {
2313
- 'Datum-zmeny': string;
2314
- }, {
2315
- 'Datum-zmeny': string;
2316
- }>;
2317
- declare const PrideleniResponseSchema: z.ZodObject<{
776
+ }, z.core.$strip>;
777
+ declare const prideleniResponseSchema: z.ZodObject<{
2318
778
  Prideleni: z.ZodObject<{
2319
779
  'Datum-zmeny': z.ZodString;
2320
- }, "strip", z.ZodTypeAny, {
2321
- 'Datum-zmeny': string;
2322
- }, {
2323
- 'Datum-zmeny': string;
2324
- }>;
2325
- }, "strip", z.ZodTypeAny, {
2326
- Prideleni: {
2327
- 'Datum-zmeny': string;
2328
- };
2329
- }, {
2330
- Prideleni: {
2331
- 'Datum-zmeny': string;
2332
- };
2333
- }>;
780
+ }, z.core.$strip>;
781
+ }, z.core.$strip>;
2334
782
  type SslPrideleniPrideleni = z.infer<typeof prideleniSchema>;
2335
- type SslPrideleniResponse = z.infer<typeof PrideleniResponseSchema>;
783
+ type SslPrideleniResponse = z.infer<typeof prideleniResponseSchema>;
2336
784
  declare function prideleni(this: Ginis, bodyObj: SslPrideleniRequest): Promise<SslPrideleniResponse>;
2337
785
 
786
+ declare const zalozCjRequestProperties: string[];
787
+ type SslZalozCjRequest = {
788
+ [K in (typeof zalozCjRequestProperties)[number] as K]?: RequestParamType;
789
+ };
790
+ declare const zalozCjSchema: z.ZodObject<{
791
+ 'Id-init-dokumentu': z.ZodString;
792
+ 'Denik-cj': z.ZodString;
793
+ 'Rok-cj': z.ZodString;
794
+ 'Poradove-cislo-cj': z.ZodString;
795
+ 'Vec-cj': z.ZodOptional<z.ZodString>;
796
+ 'Znacka-cj': z.ZodString;
797
+ }, z.core.$strip>;
798
+ declare const zalozCjResponseSchema: z.ZodObject<{
799
+ 'Zaloz-cj': z.ZodObject<{
800
+ 'Id-init-dokumentu': z.ZodString;
801
+ 'Denik-cj': z.ZodString;
802
+ 'Rok-cj': z.ZodString;
803
+ 'Poradove-cislo-cj': z.ZodString;
804
+ 'Vec-cj': z.ZodOptional<z.ZodString>;
805
+ 'Znacka-cj': z.ZodString;
806
+ }, z.core.$strip>;
807
+ }, z.core.$strip>;
808
+ type SslZalozCjZalozCj = z.infer<typeof zalozCjSchema>;
809
+ type SslZalozCjResponse = z.infer<typeof zalozCjResponseSchema>;
810
+ /** Cj = číslo jednacie */
811
+ declare function zalozCj(this: Ginis, bodyObj: SslZalozCjRequest): Promise<SslZalozCjResponse>;
812
+
813
+ declare const wflDokumentRequestProperties: string[];
814
+ type SslZalozPisemnostRequestWflDokument = {
815
+ [K in (typeof wflDokumentRequestProperties)[number] as K]?: RequestParamType;
816
+ };
817
+ declare const doruceniRequestProperties: string[];
818
+ type SslZalozPisemnostRequestDoruceni = {
819
+ [K in (typeof doruceniRequestProperties)[number] as K]?: RequestParamType;
820
+ };
821
+ declare const sslDokumentRequestProperties: string[];
822
+ type SslZalozPisemnostRequestSslDokument = {
823
+ [K in (typeof sslDokumentRequestProperties)[number] as K]?: RequestParamType;
824
+ };
825
+ declare const zalozPisemnostSchema: z.ZodObject<{
826
+ 'Id-dokumentu': z.ZodString;
827
+ 'Datum-zmeny': z.ZodString;
828
+ }, z.core.$strip>;
829
+ declare const zalozPisemnostResponseSchema: z.ZodObject<{
830
+ 'Zaloz-pisemnost': z.ZodObject<{
831
+ 'Id-dokumentu': z.ZodString;
832
+ 'Datum-zmeny': z.ZodString;
833
+ }, z.core.$strip>;
834
+ }, z.core.$strip>;
835
+ type SslZalozPisemnostZalozPisemnost = z.infer<typeof zalozPisemnostSchema>;
836
+ type SslZalozPisemnostResponse = z.infer<typeof zalozPisemnostResponseSchema>;
837
+ declare function zalozPisemnost(this: Ginis, requestWflDokument: SslZalozPisemnostRequestWflDokument, requestDoruceni: SslZalozPisemnostRequestDoruceni, requestSslDokument: SslZalozPisemnostRequestSslDokument): Promise<SslZalozPisemnostResponse>;
838
+
839
+ declare const zalozitVlastnostDokumentuRequestProperties: string[];
840
+ type SslZalozitVlastnostDokumentuRequest = {
841
+ [K in (typeof zalozitVlastnostDokumentuRequestProperties)[number] as K]?: RequestParamType;
842
+ };
843
+ declare const zalozitVlastnostDokumentuSchema: z.ZodObject<{
844
+ 'Id-dokumentu': z.ZodString;
845
+ 'Id-profilu': z.ZodString;
846
+ 'Id-struktury': z.ZodOptional<z.ZodString>;
847
+ 'Id-vlastnosti': z.ZodOptional<z.ZodString>;
848
+ 'Poradove-cislo': z.ZodString;
849
+ }, z.core.$strip>;
850
+ declare const zalozitVlastnostDokumentuResponseSchema: z.ZodObject<{
851
+ 'Zalozit-vlastnost-dokumentu': z.ZodObject<{
852
+ 'Id-dokumentu': z.ZodString;
853
+ 'Id-profilu': z.ZodString;
854
+ 'Id-struktury': z.ZodOptional<z.ZodString>;
855
+ 'Id-vlastnosti': z.ZodOptional<z.ZodString>;
856
+ 'Poradove-cislo': z.ZodString;
857
+ }, z.core.$strip>;
858
+ }, z.core.$strip>;
859
+ type SslZalozitVlastnostDokumentuZalozitVlastnostDokumentu = z.infer<typeof zalozitVlastnostDokumentuSchema>;
860
+ type SslZalozitVlastnostDokumentuResponse = z.infer<typeof zalozitVlastnostDokumentuResponseSchema>;
861
+ declare function zalozitVlastnostDokumentu(this: Ginis, bodyObj: SslZalozitVlastnostDokumentuRequest): Promise<SslZalozitVlastnostDokumentuResponse>;
862
+
2338
863
  declare const _default$1: {
2339
864
  detailDokumentu: typeof detailDokumentu$1;
2340
865
  prehledDokumentu: typeof prehledDokumentu;
2341
866
  pridatSoubor: typeof pridatSoubor;
2342
867
  pridatSouborMtom: typeof pridatSouborMtom;
2343
868
  prideleni: typeof prideleni;
869
+ zalozCj: typeof zalozCj;
870
+ zalozPisemnost: typeof zalozPisemnost;
871
+ zalozitVlastnostDokumentu: typeof zalozitVlastnostDokumentu;
872
+ nastavitVlastnostDokumentu: typeof nastavitVlastnostDokumentu;
2344
873
  };
2345
874
 
2346
875
  declare const detailDokumentuRequestProperties: readonly ["Vratit-info", "Id-zaznamu"];
2347
876
  type UdeDetailDokumentuRequest = {
2348
- [K in (typeof detailDokumentuRequestProperties)[number] as K]?: string;
877
+ [K in (typeof detailDokumentuRequestProperties)[number] as K]?: RequestParamType;
2349
878
  };
2350
879
  /** These types were created manually:
2351
880
  * - copied from https://robot.gordic.cz/xrg/Default.html?c=OpenMethodDetail&moduleName=UDE&version=524&methodName=detail-dokumentu&type=response
@@ -2361,13 +890,7 @@ declare const detailDokumentuSchema: z.ZodObject<{
2361
890
  Nazev: z.ZodString;
2362
891
  Popis: z.ZodOptional<z.ZodString>;
2363
892
  Poznamka: z.ZodOptional<z.ZodString>;
2364
- /**
2365
- * date
2366
- */
2367
893
  'Vyveseno-dne': z.ZodString;
2368
- /**
2369
- * date
2370
- */
2371
894
  'Sejmuto-dne': z.ZodOptional<z.ZodString>;
2372
895
  Zdroj: z.ZodString;
2373
896
  'Id-fun-navrhl': z.ZodString;
@@ -2375,29 +898,12 @@ declare const detailDokumentuSchema: z.ZodObject<{
2375
898
  'Id-fun-schvalil': z.ZodString;
2376
899
  Schvalil: z.ZodString;
2377
900
  Cj: z.ZodOptional<z.ZodString>;
2378
- /**
2379
- * Počet vyvěšených souborů.
2380
- * int
2381
- */
2382
901
  'Pocet-souboru': z.ZodString;
2383
902
  'Id-dokumentu': z.ZodOptional<z.ZodString>;
2384
- /**
2385
- * Datum a čas změny záznamu na úřední desce (změna nastala po tomto okamžiku).
2386
- * dateTime
2387
- */
2388
903
  'Datum-zmeny': z.ZodString;
2389
904
  'Puvod-dokumentu': z.ZodOptional<z.ZodString>;
2390
905
  'Odesilatel-dokumentu': z.ZodOptional<z.ZodString>;
2391
906
  'Typ-dokumentu': z.ZodOptional<z.ZodString>;
2392
- /**
2393
- * Příznak, zda je elektronický obraz podepsán. Vráceno v případě, že byl záznam vyvěšen zveřejněním el. obrazu nebo příloh z GINIS dokumentu.
2394
- * int
2395
- *
2396
- * 0 - Soubor není elektronicky podepsán.
2397
- * 1 - Soubor je elektronicky podepsán.
2398
- * 2 - Soubor je elektronicky podepsán čas. razítkem.
2399
- * 3 - Dokument je opatřen čas. razítkem.
2400
- */
2401
907
  'El-obraz-podpis': z.ZodOptional<z.ZodString>;
2402
908
  'Cj-spisu': z.ZodOptional<z.ZodString>;
2403
909
  'Cislo-sml': z.ZodOptional<z.ZodString>;
@@ -2418,134 +924,15 @@ declare const detailDokumentuSchema: z.ZodObject<{
2418
924
  'Odbor-sml': z.ZodOptional<z.ZodString>;
2419
925
  'Celkova-castka-sml': z.ZodOptional<z.ZodString>;
2420
926
  'Mena-sml': z.ZodOptional<z.ZodString>;
2421
- }, "strip", z.ZodTypeAny, {
2422
- Nazev: string;
2423
- 'Datum-zmeny': string;
2424
- 'Id-zaznamu': string;
2425
- Kategorie: string;
2426
- 'Vyveseno-dne': string;
2427
- Zdroj: string;
2428
- 'Id-fun-navrhl': string;
2429
- Navrhl: string;
2430
- 'Id-fun-schvalil': string;
2431
- Schvalil: string;
2432
- 'Pocet-souboru': string;
2433
- Poznamka?: string | undefined;
2434
- 'Id-dokumentu'?: string | undefined;
2435
- Popis?: string | undefined;
2436
- Stav?: string | undefined;
2437
- 'Sejmuto-dne'?: string | undefined;
2438
- Cj?: string | undefined;
2439
- 'Puvod-dokumentu'?: string | undefined;
2440
- 'Odesilatel-dokumentu'?: string | undefined;
2441
- 'Typ-dokumentu'?: string | undefined;
2442
- 'El-obraz-podpis'?: string | undefined;
2443
- 'Cj-spisu'?: string | undefined;
2444
- 'Cislo-sml'?: string | undefined;
2445
- 'Typ-sml'?: string | undefined;
2446
- 'Nazev-sml'?: string | undefined;
2447
- 'Subjekt-sml'?: string | undefined;
2448
- 'Nazev-sub-sml'?: string | undefined;
2449
- 'Prijmeni-sub-sml'?: string | undefined;
2450
- 'Jmeno-sub-sml'?: string | undefined;
2451
- 'Ico-sub-sml'?: string | undefined;
2452
- 'Obec-sub-sml'?: string | undefined;
2453
- 'Ulice-sub-sml'?: string | undefined;
2454
- 'Cor-sub-sml'?: string | undefined;
2455
- 'Cpop-sub-sml'?: string | undefined;
2456
- 'Psc-sub-sml'?: string | undefined;
2457
- 'Typ-sub-sml'?: string | undefined;
2458
- 'Datum-uzavreni-sml'?: string | undefined;
2459
- 'Odbor-sml'?: string | undefined;
2460
- 'Celkova-castka-sml'?: string | undefined;
2461
- 'Mena-sml'?: string | undefined;
2462
- }, {
2463
- Nazev: string;
2464
- 'Datum-zmeny': string;
2465
- 'Id-zaznamu': string;
2466
- Kategorie: string;
2467
- 'Vyveseno-dne': string;
2468
- Zdroj: string;
2469
- 'Id-fun-navrhl': string;
2470
- Navrhl: string;
2471
- 'Id-fun-schvalil': string;
2472
- Schvalil: string;
2473
- 'Pocet-souboru': string;
2474
- Poznamka?: string | undefined;
2475
- 'Id-dokumentu'?: string | undefined;
2476
- Popis?: string | undefined;
2477
- Stav?: string | undefined;
2478
- 'Sejmuto-dne'?: string | undefined;
2479
- Cj?: string | undefined;
2480
- 'Puvod-dokumentu'?: string | undefined;
2481
- 'Odesilatel-dokumentu'?: string | undefined;
2482
- 'Typ-dokumentu'?: string | undefined;
2483
- 'El-obraz-podpis'?: string | undefined;
2484
- 'Cj-spisu'?: string | undefined;
2485
- 'Cislo-sml'?: string | undefined;
2486
- 'Typ-sml'?: string | undefined;
2487
- 'Nazev-sml'?: string | undefined;
2488
- 'Subjekt-sml'?: string | undefined;
2489
- 'Nazev-sub-sml'?: string | undefined;
2490
- 'Prijmeni-sub-sml'?: string | undefined;
2491
- 'Jmeno-sub-sml'?: string | undefined;
2492
- 'Ico-sub-sml'?: string | undefined;
2493
- 'Obec-sub-sml'?: string | undefined;
2494
- 'Ulice-sub-sml'?: string | undefined;
2495
- 'Cor-sub-sml'?: string | undefined;
2496
- 'Cpop-sub-sml'?: string | undefined;
2497
- 'Psc-sub-sml'?: string | undefined;
2498
- 'Typ-sub-sml'?: string | undefined;
2499
- 'Datum-uzavreni-sml'?: string | undefined;
2500
- 'Odbor-sml'?: string | undefined;
2501
- 'Celkova-castka-sml'?: string | undefined;
2502
- 'Mena-sml'?: string | undefined;
2503
- }>;
927
+ }, z.core.$strip>;
2504
928
  declare const souboryDokumentuSchema: z.ZodObject<{
2505
929
  'Id-souboru': z.ZodString;
2506
930
  Nazev: z.ZodString;
2507
- /**
2508
- * Velikost souboru včetně jednotky (např. KB).
2509
- * string
2510
- */
2511
931
  Velikost: z.ZodOptional<z.ZodString>;
2512
- /**
2513
- * Příznak, zda se jedná o el. obraz GINIS dokumentu. Informace je k dispozici u záznamů vyvěšených přes GINIS v. 364 a vyšší.
2514
- * short
2515
- *
2516
- * 0 - Soubor není el. obraz GINIS dokumentu (soubor je příloha, nebo vložen přes modul UDA01).
2517
- * 1 - Soubor je el. obraz GINIS dokumentu.
2518
- */
2519
932
  'Priznak-el-obr': z.ZodOptional<z.ZodString>;
2520
- /**
2521
- * Poznámka k souboru.
2522
- */
2523
933
  Poznamka: z.ZodOptional<z.ZodString>;
2524
- /**
2525
- * Příznak, zda je soubor el. podepsán. Vráceno v případě, že byl záznam vyvěšen zveřejněním el. obrazu nebo příloh z GINIS dokumentu.
2526
- * short
2527
- *
2528
- * 0 - Soubor není elektronicky podepsán.
2529
- * 1 - Soubor je elektronicky podepsán.
2530
- * 2 - Soubor je elektronicky podepsán čas. razítkem.
2531
- * 3 - Dokument je opatřen čas. razítkem.
2532
- */
2533
934
  'Priznak-podpis': z.ZodOptional<z.ZodString>;
2534
- }, "strip", z.ZodTypeAny, {
2535
- Nazev: string;
2536
- 'Id-souboru': string;
2537
- Poznamka?: string | undefined;
2538
- Velikost?: string | undefined;
2539
- 'Priznak-el-obr'?: string | undefined;
2540
- 'Priznak-podpis'?: string | undefined;
2541
- }, {
2542
- Nazev: string;
2543
- 'Id-souboru': string;
2544
- Poznamka?: string | undefined;
2545
- Velikost?: string | undefined;
2546
- 'Priznak-el-obr'?: string | undefined;
2547
- 'Priznak-podpis'?: string | undefined;
2548
- }>;
935
+ }, z.core.$strip>;
2549
936
  declare const protistranySmlSchema: z.ZodObject<{
2550
937
  'Typ-protistrany': z.ZodOptional<z.ZodString>;
2551
938
  Subjekt: z.ZodOptional<z.ZodString>;
@@ -2558,48 +945,14 @@ declare const protistranySmlSchema: z.ZodObject<{
2558
945
  'Cor-sub': z.ZodOptional<z.ZodString>;
2559
946
  'Cpop-sub': z.ZodOptional<z.ZodString>;
2560
947
  'Psc-sub': z.ZodOptional<z.ZodString>;
2561
- /**
2562
- * Typ subjektu smlouvy.
2563
- *
2564
- * neurceno - Neurčeno
2565
- * pravnicka-osoba - Právnická osoba
2566
- * fyz-osoba - Fyzická osoba
2567
- * fyz-osoba-osvc - Fyzická osoba OSVČ
2568
- */
2569
948
  'Typ-sub': z.ZodOptional<z.ZodString>;
2570
- }, "strip", z.ZodTypeAny, {
2571
- 'Typ-protistrany'?: string | undefined;
2572
- Subjekt?: string | undefined;
2573
- 'Nazev-sub'?: string | undefined;
2574
- 'Prijmeni-sub'?: string | undefined;
2575
- 'Jmeno-sub'?: string | undefined;
2576
- 'Ico-sub'?: string | undefined;
2577
- 'Obec-sub'?: string | undefined;
2578
- 'Ulice-sub'?: string | undefined;
2579
- 'Cor-sub'?: string | undefined;
2580
- 'Cpop-sub'?: string | undefined;
2581
- 'Psc-sub'?: string | undefined;
2582
- 'Typ-sub'?: string | undefined;
2583
- }, {
2584
- 'Typ-protistrany'?: string | undefined;
2585
- Subjekt?: string | undefined;
2586
- 'Nazev-sub'?: string | undefined;
2587
- 'Prijmeni-sub'?: string | undefined;
2588
- 'Jmeno-sub'?: string | undefined;
2589
- 'Ico-sub'?: string | undefined;
2590
- 'Obec-sub'?: string | undefined;
2591
- 'Ulice-sub'?: string | undefined;
2592
- 'Cor-sub'?: string | undefined;
2593
- 'Cpop-sub'?: string | undefined;
2594
- 'Psc-sub'?: string | undefined;
2595
- 'Typ-sub'?: string | undefined;
2596
- }>;
949
+ }, z.core.$strip>;
2597
950
  /**
2598
951
  * Note:
2599
952
  * - DetailDokumentu usually comes as an array with one item
2600
953
  * - SouboryDokumentu usually comes as play item it there is only one file, array otherwise
2601
954
  */
2602
- declare const DetailDokumentuResponseSchema: z.ZodObject<{
955
+ declare const detailDokumentuResponseSchema: z.ZodObject<{
2603
956
  'Detail-dokumentu': z.ZodOptional<z.ZodObject<{
2604
957
  'Id-zaznamu': z.ZodString;
2605
958
  Stav: z.ZodOptional<z.ZodString>;
@@ -2607,13 +960,7 @@ declare const DetailDokumentuResponseSchema: z.ZodObject<{
2607
960
  Nazev: z.ZodString;
2608
961
  Popis: z.ZodOptional<z.ZodString>;
2609
962
  Poznamka: z.ZodOptional<z.ZodString>;
2610
- /**
2611
- * date
2612
- */
2613
963
  'Vyveseno-dne': z.ZodString;
2614
- /**
2615
- * date
2616
- */
2617
964
  'Sejmuto-dne': z.ZodOptional<z.ZodString>;
2618
965
  Zdroj: z.ZodString;
2619
966
  'Id-fun-navrhl': z.ZodString;
@@ -2621,29 +968,12 @@ declare const DetailDokumentuResponseSchema: z.ZodObject<{
2621
968
  'Id-fun-schvalil': z.ZodString;
2622
969
  Schvalil: z.ZodString;
2623
970
  Cj: z.ZodOptional<z.ZodString>;
2624
- /**
2625
- * Počet vyvěšených souborů.
2626
- * int
2627
- */
2628
971
  'Pocet-souboru': z.ZodString;
2629
972
  'Id-dokumentu': z.ZodOptional<z.ZodString>;
2630
- /**
2631
- * Datum a čas změny záznamu na úřední desce (změna nastala po tomto okamžiku).
2632
- * dateTime
2633
- */
2634
973
  'Datum-zmeny': z.ZodString;
2635
974
  'Puvod-dokumentu': z.ZodOptional<z.ZodString>;
2636
975
  'Odesilatel-dokumentu': z.ZodOptional<z.ZodString>;
2637
976
  'Typ-dokumentu': z.ZodOptional<z.ZodString>;
2638
- /**
2639
- * Příznak, zda je elektronický obraz podepsán. Vráceno v případě, že byl záznam vyvěšen zveřejněním el. obrazu nebo příloh z GINIS dokumentu.
2640
- * int
2641
- *
2642
- * 0 - Soubor není elektronicky podepsán.
2643
- * 1 - Soubor je elektronicky podepsán.
2644
- * 2 - Soubor je elektronicky podepsán čas. razítkem.
2645
- * 3 - Dokument je opatřen čas. razítkem.
2646
- */
2647
977
  'El-obraz-podpis': z.ZodOptional<z.ZodString>;
2648
978
  'Cj-spisu': z.ZodOptional<z.ZodString>;
2649
979
  'Cislo-sml': z.ZodOptional<z.ZodString>;
@@ -2664,142 +994,16 @@ declare const DetailDokumentuResponseSchema: z.ZodObject<{
2664
994
  'Odbor-sml': z.ZodOptional<z.ZodString>;
2665
995
  'Celkova-castka-sml': z.ZodOptional<z.ZodString>;
2666
996
  'Mena-sml': z.ZodOptional<z.ZodString>;
2667
- }, "strip", z.ZodTypeAny, {
2668
- Nazev: string;
2669
- 'Datum-zmeny': string;
2670
- 'Id-zaznamu': string;
2671
- Kategorie: string;
2672
- 'Vyveseno-dne': string;
2673
- Zdroj: string;
2674
- 'Id-fun-navrhl': string;
2675
- Navrhl: string;
2676
- 'Id-fun-schvalil': string;
2677
- Schvalil: string;
2678
- 'Pocet-souboru': string;
2679
- Poznamka?: string | undefined;
2680
- 'Id-dokumentu'?: string | undefined;
2681
- Popis?: string | undefined;
2682
- Stav?: string | undefined;
2683
- 'Sejmuto-dne'?: string | undefined;
2684
- Cj?: string | undefined;
2685
- 'Puvod-dokumentu'?: string | undefined;
2686
- 'Odesilatel-dokumentu'?: string | undefined;
2687
- 'Typ-dokumentu'?: string | undefined;
2688
- 'El-obraz-podpis'?: string | undefined;
2689
- 'Cj-spisu'?: string | undefined;
2690
- 'Cislo-sml'?: string | undefined;
2691
- 'Typ-sml'?: string | undefined;
2692
- 'Nazev-sml'?: string | undefined;
2693
- 'Subjekt-sml'?: string | undefined;
2694
- 'Nazev-sub-sml'?: string | undefined;
2695
- 'Prijmeni-sub-sml'?: string | undefined;
2696
- 'Jmeno-sub-sml'?: string | undefined;
2697
- 'Ico-sub-sml'?: string | undefined;
2698
- 'Obec-sub-sml'?: string | undefined;
2699
- 'Ulice-sub-sml'?: string | undefined;
2700
- 'Cor-sub-sml'?: string | undefined;
2701
- 'Cpop-sub-sml'?: string | undefined;
2702
- 'Psc-sub-sml'?: string | undefined;
2703
- 'Typ-sub-sml'?: string | undefined;
2704
- 'Datum-uzavreni-sml'?: string | undefined;
2705
- 'Odbor-sml'?: string | undefined;
2706
- 'Celkova-castka-sml'?: string | undefined;
2707
- 'Mena-sml'?: string | undefined;
2708
- }, {
2709
- Nazev: string;
2710
- 'Datum-zmeny': string;
2711
- 'Id-zaznamu': string;
2712
- Kategorie: string;
2713
- 'Vyveseno-dne': string;
2714
- Zdroj: string;
2715
- 'Id-fun-navrhl': string;
2716
- Navrhl: string;
2717
- 'Id-fun-schvalil': string;
2718
- Schvalil: string;
2719
- 'Pocet-souboru': string;
2720
- Poznamka?: string | undefined;
2721
- 'Id-dokumentu'?: string | undefined;
2722
- Popis?: string | undefined;
2723
- Stav?: string | undefined;
2724
- 'Sejmuto-dne'?: string | undefined;
2725
- Cj?: string | undefined;
2726
- 'Puvod-dokumentu'?: string | undefined;
2727
- 'Odesilatel-dokumentu'?: string | undefined;
2728
- 'Typ-dokumentu'?: string | undefined;
2729
- 'El-obraz-podpis'?: string | undefined;
2730
- 'Cj-spisu'?: string | undefined;
2731
- 'Cislo-sml'?: string | undefined;
2732
- 'Typ-sml'?: string | undefined;
2733
- 'Nazev-sml'?: string | undefined;
2734
- 'Subjekt-sml'?: string | undefined;
2735
- 'Nazev-sub-sml'?: string | undefined;
2736
- 'Prijmeni-sub-sml'?: string | undefined;
2737
- 'Jmeno-sub-sml'?: string | undefined;
2738
- 'Ico-sub-sml'?: string | undefined;
2739
- 'Obec-sub-sml'?: string | undefined;
2740
- 'Ulice-sub-sml'?: string | undefined;
2741
- 'Cor-sub-sml'?: string | undefined;
2742
- 'Cpop-sub-sml'?: string | undefined;
2743
- 'Psc-sub-sml'?: string | undefined;
2744
- 'Typ-sub-sml'?: string | undefined;
2745
- 'Datum-uzavreni-sml'?: string | undefined;
2746
- 'Odbor-sml'?: string | undefined;
2747
- 'Celkova-castka-sml'?: string | undefined;
2748
- 'Mena-sml'?: string | undefined;
2749
- }>>;
2750
- 'Soubory-dokumentu': z.ZodEffects<z.ZodDefault<z.ZodArray<z.ZodObject<{
997
+ }, z.core.$strip>>;
998
+ 'Soubory-dokumentu': z.ZodPipe<z.ZodTransform<{} | null | undefined, unknown>, z.ZodDefault<z.ZodArray<z.ZodObject<{
2751
999
  'Id-souboru': z.ZodString;
2752
1000
  Nazev: z.ZodString;
2753
- /**
2754
- * Velikost souboru včetně jednotky (např. KB).
2755
- * string
2756
- */
2757
1001
  Velikost: z.ZodOptional<z.ZodString>;
2758
- /**
2759
- * Příznak, zda se jedná o el. obraz GINIS dokumentu. Informace je k dispozici u záznamů vyvěšených přes GINIS v. 364 a vyšší.
2760
- * short
2761
- *
2762
- * 0 - Soubor není el. obraz GINIS dokumentu (soubor je příloha, nebo vložen přes modul UDA01).
2763
- * 1 - Soubor je el. obraz GINIS dokumentu.
2764
- */
2765
1002
  'Priznak-el-obr': z.ZodOptional<z.ZodString>;
2766
- /**
2767
- * Poznámka k souboru.
2768
- */
2769
1003
  Poznamka: z.ZodOptional<z.ZodString>;
2770
- /**
2771
- * Příznak, zda je soubor el. podepsán. Vráceno v případě, že byl záznam vyvěšen zveřejněním el. obrazu nebo příloh z GINIS dokumentu.
2772
- * short
2773
- *
2774
- * 0 - Soubor není elektronicky podepsán.
2775
- * 1 - Soubor je elektronicky podepsán.
2776
- * 2 - Soubor je elektronicky podepsán čas. razítkem.
2777
- * 3 - Dokument je opatřen čas. razítkem.
2778
- */
2779
1004
  'Priznak-podpis': z.ZodOptional<z.ZodString>;
2780
- }, "strip", z.ZodTypeAny, {
2781
- Nazev: string;
2782
- 'Id-souboru': string;
2783
- Poznamka?: string | undefined;
2784
- Velikost?: string | undefined;
2785
- 'Priznak-el-obr'?: string | undefined;
2786
- 'Priznak-podpis'?: string | undefined;
2787
- }, {
2788
- Nazev: string;
2789
- 'Id-souboru': string;
2790
- Poznamka?: string | undefined;
2791
- Velikost?: string | undefined;
2792
- 'Priznak-el-obr'?: string | undefined;
2793
- 'Priznak-podpis'?: string | undefined;
2794
- }>, "many">>, {
2795
- Nazev: string;
2796
- 'Id-souboru': string;
2797
- Poznamka?: string | undefined;
2798
- Velikost?: string | undefined;
2799
- 'Priznak-el-obr'?: string | undefined;
2800
- 'Priznak-podpis'?: string | undefined;
2801
- }[], unknown>;
2802
- 'Protistrany-sml': z.ZodEffects<z.ZodDefault<z.ZodArray<z.ZodObject<{
1005
+ }, z.core.$strip>>>>;
1006
+ 'Protistrany-sml': z.ZodPipe<z.ZodTransform<{} | null | undefined, unknown>, z.ZodDefault<z.ZodArray<z.ZodObject<{
2803
1007
  'Typ-protistrany': z.ZodOptional<z.ZodString>;
2804
1008
  Subjekt: z.ZodOptional<z.ZodString>;
2805
1009
  'Nazev-sub': z.ZodOptional<z.ZodString>;
@@ -2811,229 +1015,29 @@ declare const DetailDokumentuResponseSchema: z.ZodObject<{
2811
1015
  'Cor-sub': z.ZodOptional<z.ZodString>;
2812
1016
  'Cpop-sub': z.ZodOptional<z.ZodString>;
2813
1017
  'Psc-sub': z.ZodOptional<z.ZodString>;
2814
- /**
2815
- * Typ subjektu smlouvy.
2816
- *
2817
- * neurceno - Neurčeno
2818
- * pravnicka-osoba - Právnická osoba
2819
- * fyz-osoba - Fyzická osoba
2820
- * fyz-osoba-osvc - Fyzická osoba OSVČ
2821
- */
2822
1018
  'Typ-sub': z.ZodOptional<z.ZodString>;
2823
- }, "strip", z.ZodTypeAny, {
2824
- 'Typ-protistrany'?: string | undefined;
2825
- Subjekt?: string | undefined;
2826
- 'Nazev-sub'?: string | undefined;
2827
- 'Prijmeni-sub'?: string | undefined;
2828
- 'Jmeno-sub'?: string | undefined;
2829
- 'Ico-sub'?: string | undefined;
2830
- 'Obec-sub'?: string | undefined;
2831
- 'Ulice-sub'?: string | undefined;
2832
- 'Cor-sub'?: string | undefined;
2833
- 'Cpop-sub'?: string | undefined;
2834
- 'Psc-sub'?: string | undefined;
2835
- 'Typ-sub'?: string | undefined;
2836
- }, {
2837
- 'Typ-protistrany'?: string | undefined;
2838
- Subjekt?: string | undefined;
2839
- 'Nazev-sub'?: string | undefined;
2840
- 'Prijmeni-sub'?: string | undefined;
2841
- 'Jmeno-sub'?: string | undefined;
2842
- 'Ico-sub'?: string | undefined;
2843
- 'Obec-sub'?: string | undefined;
2844
- 'Ulice-sub'?: string | undefined;
2845
- 'Cor-sub'?: string | undefined;
2846
- 'Cpop-sub'?: string | undefined;
2847
- 'Psc-sub'?: string | undefined;
2848
- 'Typ-sub'?: string | undefined;
2849
- }>, "many">>, {
2850
- 'Typ-protistrany'?: string | undefined;
2851
- Subjekt?: string | undefined;
2852
- 'Nazev-sub'?: string | undefined;
2853
- 'Prijmeni-sub'?: string | undefined;
2854
- 'Jmeno-sub'?: string | undefined;
2855
- 'Ico-sub'?: string | undefined;
2856
- 'Obec-sub'?: string | undefined;
2857
- 'Ulice-sub'?: string | undefined;
2858
- 'Cor-sub'?: string | undefined;
2859
- 'Cpop-sub'?: string | undefined;
2860
- 'Psc-sub'?: string | undefined;
2861
- 'Typ-sub'?: string | undefined;
2862
- }[], unknown>;
2863
- }, "strip", z.ZodTypeAny, {
2864
- 'Soubory-dokumentu': {
2865
- Nazev: string;
2866
- 'Id-souboru': string;
2867
- Poznamka?: string | undefined;
2868
- Velikost?: string | undefined;
2869
- 'Priznak-el-obr'?: string | undefined;
2870
- 'Priznak-podpis'?: string | undefined;
2871
- }[];
2872
- 'Protistrany-sml': {
2873
- 'Typ-protistrany'?: string | undefined;
2874
- Subjekt?: string | undefined;
2875
- 'Nazev-sub'?: string | undefined;
2876
- 'Prijmeni-sub'?: string | undefined;
2877
- 'Jmeno-sub'?: string | undefined;
2878
- 'Ico-sub'?: string | undefined;
2879
- 'Obec-sub'?: string | undefined;
2880
- 'Ulice-sub'?: string | undefined;
2881
- 'Cor-sub'?: string | undefined;
2882
- 'Cpop-sub'?: string | undefined;
2883
- 'Psc-sub'?: string | undefined;
2884
- 'Typ-sub'?: string | undefined;
2885
- }[];
2886
- 'Detail-dokumentu'?: {
2887
- Nazev: string;
2888
- 'Datum-zmeny': string;
2889
- 'Id-zaznamu': string;
2890
- Kategorie: string;
2891
- 'Vyveseno-dne': string;
2892
- Zdroj: string;
2893
- 'Id-fun-navrhl': string;
2894
- Navrhl: string;
2895
- 'Id-fun-schvalil': string;
2896
- Schvalil: string;
2897
- 'Pocet-souboru': string;
2898
- Poznamka?: string | undefined;
2899
- 'Id-dokumentu'?: string | undefined;
2900
- Popis?: string | undefined;
2901
- Stav?: string | undefined;
2902
- 'Sejmuto-dne'?: string | undefined;
2903
- Cj?: string | undefined;
2904
- 'Puvod-dokumentu'?: string | undefined;
2905
- 'Odesilatel-dokumentu'?: string | undefined;
2906
- 'Typ-dokumentu'?: string | undefined;
2907
- 'El-obraz-podpis'?: string | undefined;
2908
- 'Cj-spisu'?: string | undefined;
2909
- 'Cislo-sml'?: string | undefined;
2910
- 'Typ-sml'?: string | undefined;
2911
- 'Nazev-sml'?: string | undefined;
2912
- 'Subjekt-sml'?: string | undefined;
2913
- 'Nazev-sub-sml'?: string | undefined;
2914
- 'Prijmeni-sub-sml'?: string | undefined;
2915
- 'Jmeno-sub-sml'?: string | undefined;
2916
- 'Ico-sub-sml'?: string | undefined;
2917
- 'Obec-sub-sml'?: string | undefined;
2918
- 'Ulice-sub-sml'?: string | undefined;
2919
- 'Cor-sub-sml'?: string | undefined;
2920
- 'Cpop-sub-sml'?: string | undefined;
2921
- 'Psc-sub-sml'?: string | undefined;
2922
- 'Typ-sub-sml'?: string | undefined;
2923
- 'Datum-uzavreni-sml'?: string | undefined;
2924
- 'Odbor-sml'?: string | undefined;
2925
- 'Celkova-castka-sml'?: string | undefined;
2926
- 'Mena-sml'?: string | undefined;
2927
- } | undefined;
2928
- }, {
2929
- 'Detail-dokumentu'?: {
2930
- Nazev: string;
2931
- 'Datum-zmeny': string;
2932
- 'Id-zaznamu': string;
2933
- Kategorie: string;
2934
- 'Vyveseno-dne': string;
2935
- Zdroj: string;
2936
- 'Id-fun-navrhl': string;
2937
- Navrhl: string;
2938
- 'Id-fun-schvalil': string;
2939
- Schvalil: string;
2940
- 'Pocet-souboru': string;
2941
- Poznamka?: string | undefined;
2942
- 'Id-dokumentu'?: string | undefined;
2943
- Popis?: string | undefined;
2944
- Stav?: string | undefined;
2945
- 'Sejmuto-dne'?: string | undefined;
2946
- Cj?: string | undefined;
2947
- 'Puvod-dokumentu'?: string | undefined;
2948
- 'Odesilatel-dokumentu'?: string | undefined;
2949
- 'Typ-dokumentu'?: string | undefined;
2950
- 'El-obraz-podpis'?: string | undefined;
2951
- 'Cj-spisu'?: string | undefined;
2952
- 'Cislo-sml'?: string | undefined;
2953
- 'Typ-sml'?: string | undefined;
2954
- 'Nazev-sml'?: string | undefined;
2955
- 'Subjekt-sml'?: string | undefined;
2956
- 'Nazev-sub-sml'?: string | undefined;
2957
- 'Prijmeni-sub-sml'?: string | undefined;
2958
- 'Jmeno-sub-sml'?: string | undefined;
2959
- 'Ico-sub-sml'?: string | undefined;
2960
- 'Obec-sub-sml'?: string | undefined;
2961
- 'Ulice-sub-sml'?: string | undefined;
2962
- 'Cor-sub-sml'?: string | undefined;
2963
- 'Cpop-sub-sml'?: string | undefined;
2964
- 'Psc-sub-sml'?: string | undefined;
2965
- 'Typ-sub-sml'?: string | undefined;
2966
- 'Datum-uzavreni-sml'?: string | undefined;
2967
- 'Odbor-sml'?: string | undefined;
2968
- 'Celkova-castka-sml'?: string | undefined;
2969
- 'Mena-sml'?: string | undefined;
2970
- } | undefined;
2971
- 'Soubory-dokumentu'?: unknown;
2972
- 'Protistrany-sml'?: unknown;
2973
- }>;
1019
+ }, z.core.$strip>>>>;
1020
+ }, z.core.$strip>;
2974
1021
  type UdeDetailDokumentuDetailDokumentu = z.infer<typeof detailDokumentuSchema>;
2975
1022
  type UdeDetailDokumentuSouboryDokumentuItem = z.infer<typeof souboryDokumentuSchema>;
2976
1023
  type UdeDetailDokumentuProtistranySmlItem = z.infer<typeof protistranySmlSchema>;
2977
- type UdeDetailDokumentuResponse = z.infer<typeof DetailDokumentuResponseSchema>;
1024
+ type UdeDetailDokumentuResponse = z.infer<typeof detailDokumentuResponseSchema>;
2978
1025
  declare function detailDokumentu(this: Ginis, bodyObj: UdeDetailDokumentuRequest): Promise<UdeDetailDokumentuResponse>;
2979
1026
 
2980
1027
  declare const nacistSouborRequestProperties: readonly ["Id-souboru"];
2981
1028
  type UdeNacistSouborRequest = {
2982
- [K in (typeof nacistSouborRequestProperties)[number] as K]?: string;
1029
+ [K in (typeof nacistSouborRequestProperties)[number] as K]?: RequestParamType;
2983
1030
  };
2984
1031
  declare const nacistSouborSchema: z.ZodObject<{
2985
- /**
2986
- * Jméno el. souboru.
2987
- * string
2988
- * Max. délka: 254, Min. délka: 1,
2989
- */
2990
1032
  'Jmeno-souboru': z.ZodString;
2991
- /**
2992
- * Binární data souboru v base64 formátu.
2993
- * base64Binary
2994
- */
2995
1033
  Data: z.ZodString;
2996
- }, "strip", z.ZodTypeAny, {
2997
- 'Jmeno-souboru': string;
2998
- Data: string;
2999
- }, {
3000
- 'Jmeno-souboru': string;
3001
- Data: string;
3002
- }>;
1034
+ }, z.core.$strip>;
3003
1035
  declare const nacistSouborResponseSchema: z.ZodObject<{
3004
- /**
3005
- * Nacist-soubor - vyžadován: Ne , max. výskyt: 1
3006
- */
3007
1036
  'Nacist-soubor': z.ZodOptional<z.ZodObject<{
3008
- /**
3009
- * Jméno el. souboru.
3010
- * string
3011
- * Max. délka: 254, Min. délka: 1,
3012
- */
3013
1037
  'Jmeno-souboru': z.ZodString;
3014
- /**
3015
- * Binární data souboru v base64 formátu.
3016
- * base64Binary
3017
- */
3018
1038
  Data: z.ZodString;
3019
- }, "strip", z.ZodTypeAny, {
3020
- 'Jmeno-souboru': string;
3021
- Data: string;
3022
- }, {
3023
- 'Jmeno-souboru': string;
3024
- Data: string;
3025
- }>>;
3026
- }, "strip", z.ZodTypeAny, {
3027
- 'Nacist-soubor'?: {
3028
- 'Jmeno-souboru': string;
3029
- Data: string;
3030
- } | undefined;
3031
- }, {
3032
- 'Nacist-soubor'?: {
3033
- 'Jmeno-souboru': string;
3034
- Data: string;
3035
- } | undefined;
3036
- }>;
1039
+ }, z.core.$strip>>;
1040
+ }, z.core.$strip>;
3037
1041
  type UdeNacistSouborNacistSoubor = z.infer<typeof nacistSouborSchema>;
3038
1042
  type UdeNacistSouborResponse = z.infer<typeof nacistSouborResponseSchema>;
3039
1043
  declare function nacistSoubor(this: Ginis, bodyObj: UdeNacistSouborRequest): Promise<UdeNacistSouborResponse>;
@@ -3064,77 +1068,29 @@ declare const seznamDokumentuRequestProperties: readonly ["Vratit-info", "Stav",
3064
1068
  * interface-xrg - interface, xrg
3065
1069
  */
3066
1070
  type UdeSeznamDokumentuRequest = {
3067
- [K in (typeof seznamDokumentuRequestProperties)[number] as K]?: string;
1071
+ [K in (typeof seznamDokumentuRequestProperties)[number] as K]?: RequestParamType;
3068
1072
  };
3069
1073
  /**
3070
1074
  * Manually typed according to https://robot.gordic.cz/xrg/Default.html?c=OpenMethodDetail&moduleName=UDE&version=390&methodName=seznam-dokumentu&type=response#
3071
1075
  */
3072
1076
  declare const seznamDokumentuSchema: z.ZodObject<{
3073
1077
  'Id-zaznamu': z.ZodString;
3074
- /**
3075
- * pripraveno - Připraveno – schváleno k vyvěšení, ale ještě nenastalo datum vyvěšení. Záznamy s touto hodnotou se na výstupu mohou objevit pouze u desek, které vrací v metodě seznam-desek element Stav-pripraveno = 'true'.
3076
- * vyveseno - Vyvěšeno – schváleno k vyvěšení + nastalo datum vyvěšení (a ještě nenastalo datum sejmutí)
3077
- * sejmuto - Sejmuto – záznam byl na desce, ale už nastalo datum sejmutí a nebo byl ručně sejmut (a do okamžiku ručního sejmutí se posunulo datum sejmutí)
3078
- */
3079
1078
  Stav: z.ZodOptional<z.ZodString>;
3080
- /**
3081
- * Název kategorie.
3082
- */
3083
1079
  Kategorie: z.ZodString;
3084
1080
  Nazev: z.ZodString;
3085
1081
  Popis: z.ZodOptional<z.ZodString>;
3086
- /**
3087
- * ISO-string date
3088
- */
3089
1082
  'Vyveseno-dne': z.ZodString;
3090
- /**
3091
- * ISO-string date
3092
- */
3093
1083
  'Sejmuto-dne': z.ZodOptional<z.ZodString>;
3094
1084
  Zdroj: z.ZodString;
3095
- /**
3096
- * Identifikace GINIS funkce, která navrhla dokument k vyvěšení.
3097
- */
3098
1085
  'Id-fun-navrhl': z.ZodString;
3099
- /**
3100
- * Osoba, která navrhla dokument k vyvěšení.
3101
- */
3102
1086
  Navrhl: z.ZodString;
3103
- /**
3104
- * Identifikace GINIS funkce, která dokument schválila resp. vyvěsila.
3105
- */
3106
1087
  'Id-fun-schvalil': z.ZodString;
3107
- /**
3108
- * Osoba, která dokument schválila resp. vyvěsila.
3109
- */
3110
1088
  Schvalil: z.ZodString;
3111
- /**
3112
- * Číslo jednací resp. značka.
3113
- */
3114
1089
  Cj: z.ZodOptional<z.ZodString>;
3115
- /**
3116
- * Počet vyvěšených souborů.
3117
- * int
3118
- */
3119
1090
  'Pocet-souboru': z.ZodString;
3120
- /**
3121
- * Identifikace GINIS dokumentu. Vráceno v případě, že byl záznam vyvěšen zveřejněním el. obrazu nebo příloh z GINIS dokumentu.
3122
- */
3123
1091
  'Id-dokumentu': z.ZodOptional<z.ZodString>;
3124
- /**
3125
- * Celkový počet vyvěšených dokumentů/záznamů.
3126
- * int
3127
- */
3128
1092
  'Pocet-vyveseno': z.ZodString;
3129
- /**
3130
- * Celkový počet dokumentů/záznamů v archivu (sejmutých).
3131
- * int
3132
- */
3133
1093
  'Pocet-archiv': z.ZodString;
3134
- /**
3135
- * Datum a čas změny záznamu na úřední desce.
3136
- * dateTime
3137
- */
3138
1094
  'Datum-zmeny': z.ZodString;
3139
1095
  'Puvod-dokumentu': z.ZodOptional<z.ZodString>;
3140
1096
  'Odesilatel-dokumentu': z.ZodOptional<z.ZodString>;
@@ -3159,168 +1115,30 @@ declare const seznamDokumentuSchema: z.ZodObject<{
3159
1115
  'Odbor-sml': z.ZodOptional<z.ZodString>;
3160
1116
  'Celkova-castka-sml': z.ZodOptional<z.ZodString>;
3161
1117
  'Mena-sml': z.ZodOptional<z.ZodString>;
3162
- }, "strip", z.ZodTypeAny, {
3163
- Nazev: string;
3164
- 'Datum-zmeny': string;
3165
- 'Id-zaznamu': string;
3166
- Kategorie: string;
3167
- 'Vyveseno-dne': string;
3168
- Zdroj: string;
3169
- 'Id-fun-navrhl': string;
3170
- Navrhl: string;
3171
- 'Id-fun-schvalil': string;
3172
- Schvalil: string;
3173
- 'Pocet-souboru': string;
3174
- 'Pocet-vyveseno': string;
3175
- 'Pocet-archiv': string;
3176
- 'Id-dokumentu'?: string | undefined;
3177
- Popis?: string | undefined;
3178
- Stav?: string | undefined;
3179
- 'Sejmuto-dne'?: string | undefined;
3180
- Cj?: string | undefined;
3181
- 'Puvod-dokumentu'?: string | undefined;
3182
- 'Odesilatel-dokumentu'?: string | undefined;
3183
- 'Typ-dokumentu'?: string | undefined;
3184
- 'El-obraz-podpis'?: string | undefined;
3185
- 'Cj-spisu'?: string | undefined;
3186
- 'Cislo-sml'?: string | undefined;
3187
- 'Typ-sml'?: string | undefined;
3188
- 'Nazev-sml'?: string | undefined;
3189
- 'Subjekt-sml'?: string | undefined;
3190
- 'Nazev-sub-sml'?: string | undefined;
3191
- 'Prijmeni-sub-sml'?: string | undefined;
3192
- 'Jmeno-sub-sml'?: string | undefined;
3193
- 'Ico-sub-sml'?: string | undefined;
3194
- 'Obec-sub-sml'?: string | undefined;
3195
- 'Ulice-sub-sml'?: string | undefined;
3196
- 'Cor-sub-sml'?: string | undefined;
3197
- 'Cpop-sub-sml'?: string | undefined;
3198
- 'Psc-sub-sml'?: string | undefined;
3199
- 'Typ-sub-sml'?: string | undefined;
3200
- 'Datum-uzavreni-sml'?: string | undefined;
3201
- 'Odbor-sml'?: string | undefined;
3202
- 'Celkova-castka-sml'?: string | undefined;
3203
- 'Mena-sml'?: string | undefined;
3204
- }, {
3205
- Nazev: string;
3206
- 'Datum-zmeny': string;
3207
- 'Id-zaznamu': string;
3208
- Kategorie: string;
3209
- 'Vyveseno-dne': string;
3210
- Zdroj: string;
3211
- 'Id-fun-navrhl': string;
3212
- Navrhl: string;
3213
- 'Id-fun-schvalil': string;
3214
- Schvalil: string;
3215
- 'Pocet-souboru': string;
3216
- 'Pocet-vyveseno': string;
3217
- 'Pocet-archiv': string;
3218
- 'Id-dokumentu'?: string | undefined;
3219
- Popis?: string | undefined;
3220
- Stav?: string | undefined;
3221
- 'Sejmuto-dne'?: string | undefined;
3222
- Cj?: string | undefined;
3223
- 'Puvod-dokumentu'?: string | undefined;
3224
- 'Odesilatel-dokumentu'?: string | undefined;
3225
- 'Typ-dokumentu'?: string | undefined;
3226
- 'El-obraz-podpis'?: string | undefined;
3227
- 'Cj-spisu'?: string | undefined;
3228
- 'Cislo-sml'?: string | undefined;
3229
- 'Typ-sml'?: string | undefined;
3230
- 'Nazev-sml'?: string | undefined;
3231
- 'Subjekt-sml'?: string | undefined;
3232
- 'Nazev-sub-sml'?: string | undefined;
3233
- 'Prijmeni-sub-sml'?: string | undefined;
3234
- 'Jmeno-sub-sml'?: string | undefined;
3235
- 'Ico-sub-sml'?: string | undefined;
3236
- 'Obec-sub-sml'?: string | undefined;
3237
- 'Ulice-sub-sml'?: string | undefined;
3238
- 'Cor-sub-sml'?: string | undefined;
3239
- 'Cpop-sub-sml'?: string | undefined;
3240
- 'Psc-sub-sml'?: string | undefined;
3241
- 'Typ-sub-sml'?: string | undefined;
3242
- 'Datum-uzavreni-sml'?: string | undefined;
3243
- 'Odbor-sml'?: string | undefined;
3244
- 'Celkova-castka-sml'?: string | undefined;
3245
- 'Mena-sml'?: string | undefined;
3246
- }>;
1118
+ }, z.core.$strip>;
3247
1119
  declare const dokumentySchema: z.ZodObject<{
3248
1120
  'Id-zaznamu': z.ZodOptional<z.ZodString>;
3249
1121
  'Datum-zmeny': z.ZodOptional<z.ZodString>;
3250
- }, "strip", z.ZodTypeAny, {
3251
- 'Datum-zmeny'?: string | undefined;
3252
- 'Id-zaznamu'?: string | undefined;
3253
- }, {
3254
- 'Datum-zmeny'?: string | undefined;
3255
- 'Id-zaznamu'?: string | undefined;
3256
- }>;
1122
+ }, z.core.$strip>;
3257
1123
  declare const seznamDokumentuResponseSchema: z.ZodObject<{
3258
- 'Seznam-dokumentu': z.ZodEffects<z.ZodDefault<z.ZodArray<z.ZodObject<{
1124
+ 'Seznam-dokumentu': z.ZodPipe<z.ZodTransform<{} | null | undefined, unknown>, z.ZodDefault<z.ZodArray<z.ZodObject<{
3259
1125
  'Id-zaznamu': z.ZodString;
3260
- /**
3261
- * pripraveno - Připraveno – schváleno k vyvěšení, ale ještě nenastalo datum vyvěšení. Záznamy s touto hodnotou se na výstupu mohou objevit pouze u desek, které vrací v metodě seznam-desek element Stav-pripraveno = 'true'.
3262
- * vyveseno - Vyvěšeno – schváleno k vyvěšení + nastalo datum vyvěšení (a ještě nenastalo datum sejmutí)
3263
- * sejmuto - Sejmuto – záznam byl na desce, ale už nastalo datum sejmutí a nebo byl ručně sejmut (a do okamžiku ručního sejmutí se posunulo datum sejmutí)
3264
- */
3265
1126
  Stav: z.ZodOptional<z.ZodString>;
3266
- /**
3267
- * Název kategorie.
3268
- */
3269
1127
  Kategorie: z.ZodString;
3270
1128
  Nazev: z.ZodString;
3271
1129
  Popis: z.ZodOptional<z.ZodString>;
3272
- /**
3273
- * ISO-string date
3274
- */
3275
1130
  'Vyveseno-dne': z.ZodString;
3276
- /**
3277
- * ISO-string date
3278
- */
3279
1131
  'Sejmuto-dne': z.ZodOptional<z.ZodString>;
3280
1132
  Zdroj: z.ZodString;
3281
- /**
3282
- * Identifikace GINIS funkce, která navrhla dokument k vyvěšení.
3283
- */
3284
1133
  'Id-fun-navrhl': z.ZodString;
3285
- /**
3286
- * Osoba, která navrhla dokument k vyvěšení.
3287
- */
3288
1134
  Navrhl: z.ZodString;
3289
- /**
3290
- * Identifikace GINIS funkce, která dokument schválila resp. vyvěsila.
3291
- */
3292
1135
  'Id-fun-schvalil': z.ZodString;
3293
- /**
3294
- * Osoba, která dokument schválila resp. vyvěsila.
3295
- */
3296
1136
  Schvalil: z.ZodString;
3297
- /**
3298
- * Číslo jednací resp. značka.
3299
- */
3300
1137
  Cj: z.ZodOptional<z.ZodString>;
3301
- /**
3302
- * Počet vyvěšených souborů.
3303
- * int
3304
- */
3305
1138
  'Pocet-souboru': z.ZodString;
3306
- /**
3307
- * Identifikace GINIS dokumentu. Vráceno v případě, že byl záznam vyvěšen zveřejněním el. obrazu nebo příloh z GINIS dokumentu.
3308
- */
3309
1139
  'Id-dokumentu': z.ZodOptional<z.ZodString>;
3310
- /**
3311
- * Celkový počet vyvěšených dokumentů/záznamů.
3312
- * int
3313
- */
3314
1140
  'Pocet-vyveseno': z.ZodString;
3315
- /**
3316
- * Celkový počet dokumentů/záznamů v archivu (sejmutých).
3317
- * int
3318
- */
3319
1141
  'Pocet-archiv': z.ZodString;
3320
- /**
3321
- * Datum a čas změny záznamu na úřední desce.
3322
- * dateTime
3323
- */
3324
1142
  'Datum-zmeny': z.ZodString;
3325
1143
  'Puvod-dokumentu': z.ZodOptional<z.ZodString>;
3326
1144
  'Odesilatel-dokumentu': z.ZodOptional<z.ZodString>;
@@ -3345,216 +1163,16 @@ declare const seznamDokumentuResponseSchema: z.ZodObject<{
3345
1163
  'Odbor-sml': z.ZodOptional<z.ZodString>;
3346
1164
  'Celkova-castka-sml': z.ZodOptional<z.ZodString>;
3347
1165
  'Mena-sml': z.ZodOptional<z.ZodString>;
3348
- }, "strip", z.ZodTypeAny, {
3349
- Nazev: string;
3350
- 'Datum-zmeny': string;
3351
- 'Id-zaznamu': string;
3352
- Kategorie: string;
3353
- 'Vyveseno-dne': string;
3354
- Zdroj: string;
3355
- 'Id-fun-navrhl': string;
3356
- Navrhl: string;
3357
- 'Id-fun-schvalil': string;
3358
- Schvalil: string;
3359
- 'Pocet-souboru': string;
3360
- 'Pocet-vyveseno': string;
3361
- 'Pocet-archiv': string;
3362
- 'Id-dokumentu'?: string | undefined;
3363
- Popis?: string | undefined;
3364
- Stav?: string | undefined;
3365
- 'Sejmuto-dne'?: string | undefined;
3366
- Cj?: string | undefined;
3367
- 'Puvod-dokumentu'?: string | undefined;
3368
- 'Odesilatel-dokumentu'?: string | undefined;
3369
- 'Typ-dokumentu'?: string | undefined;
3370
- 'El-obraz-podpis'?: string | undefined;
3371
- 'Cj-spisu'?: string | undefined;
3372
- 'Cislo-sml'?: string | undefined;
3373
- 'Typ-sml'?: string | undefined;
3374
- 'Nazev-sml'?: string | undefined;
3375
- 'Subjekt-sml'?: string | undefined;
3376
- 'Nazev-sub-sml'?: string | undefined;
3377
- 'Prijmeni-sub-sml'?: string | undefined;
3378
- 'Jmeno-sub-sml'?: string | undefined;
3379
- 'Ico-sub-sml'?: string | undefined;
3380
- 'Obec-sub-sml'?: string | undefined;
3381
- 'Ulice-sub-sml'?: string | undefined;
3382
- 'Cor-sub-sml'?: string | undefined;
3383
- 'Cpop-sub-sml'?: string | undefined;
3384
- 'Psc-sub-sml'?: string | undefined;
3385
- 'Typ-sub-sml'?: string | undefined;
3386
- 'Datum-uzavreni-sml'?: string | undefined;
3387
- 'Odbor-sml'?: string | undefined;
3388
- 'Celkova-castka-sml'?: string | undefined;
3389
- 'Mena-sml'?: string | undefined;
3390
- }, {
3391
- Nazev: string;
3392
- 'Datum-zmeny': string;
3393
- 'Id-zaznamu': string;
3394
- Kategorie: string;
3395
- 'Vyveseno-dne': string;
3396
- Zdroj: string;
3397
- 'Id-fun-navrhl': string;
3398
- Navrhl: string;
3399
- 'Id-fun-schvalil': string;
3400
- Schvalil: string;
3401
- 'Pocet-souboru': string;
3402
- 'Pocet-vyveseno': string;
3403
- 'Pocet-archiv': string;
3404
- 'Id-dokumentu'?: string | undefined;
3405
- Popis?: string | undefined;
3406
- Stav?: string | undefined;
3407
- 'Sejmuto-dne'?: string | undefined;
3408
- Cj?: string | undefined;
3409
- 'Puvod-dokumentu'?: string | undefined;
3410
- 'Odesilatel-dokumentu'?: string | undefined;
3411
- 'Typ-dokumentu'?: string | undefined;
3412
- 'El-obraz-podpis'?: string | undefined;
3413
- 'Cj-spisu'?: string | undefined;
3414
- 'Cislo-sml'?: string | undefined;
3415
- 'Typ-sml'?: string | undefined;
3416
- 'Nazev-sml'?: string | undefined;
3417
- 'Subjekt-sml'?: string | undefined;
3418
- 'Nazev-sub-sml'?: string | undefined;
3419
- 'Prijmeni-sub-sml'?: string | undefined;
3420
- 'Jmeno-sub-sml'?: string | undefined;
3421
- 'Ico-sub-sml'?: string | undefined;
3422
- 'Obec-sub-sml'?: string | undefined;
3423
- 'Ulice-sub-sml'?: string | undefined;
3424
- 'Cor-sub-sml'?: string | undefined;
3425
- 'Cpop-sub-sml'?: string | undefined;
3426
- 'Psc-sub-sml'?: string | undefined;
3427
- 'Typ-sub-sml'?: string | undefined;
3428
- 'Datum-uzavreni-sml'?: string | undefined;
3429
- 'Odbor-sml'?: string | undefined;
3430
- 'Celkova-castka-sml'?: string | undefined;
3431
- 'Mena-sml'?: string | undefined;
3432
- }>, "many">>, {
3433
- Nazev: string;
3434
- 'Datum-zmeny': string;
3435
- 'Id-zaznamu': string;
3436
- Kategorie: string;
3437
- 'Vyveseno-dne': string;
3438
- Zdroj: string;
3439
- 'Id-fun-navrhl': string;
3440
- Navrhl: string;
3441
- 'Id-fun-schvalil': string;
3442
- Schvalil: string;
3443
- 'Pocet-souboru': string;
3444
- 'Pocet-vyveseno': string;
3445
- 'Pocet-archiv': string;
3446
- 'Id-dokumentu'?: string | undefined;
3447
- Popis?: string | undefined;
3448
- Stav?: string | undefined;
3449
- 'Sejmuto-dne'?: string | undefined;
3450
- Cj?: string | undefined;
3451
- 'Puvod-dokumentu'?: string | undefined;
3452
- 'Odesilatel-dokumentu'?: string | undefined;
3453
- 'Typ-dokumentu'?: string | undefined;
3454
- 'El-obraz-podpis'?: string | undefined;
3455
- 'Cj-spisu'?: string | undefined;
3456
- 'Cislo-sml'?: string | undefined;
3457
- 'Typ-sml'?: string | undefined;
3458
- 'Nazev-sml'?: string | undefined;
3459
- 'Subjekt-sml'?: string | undefined;
3460
- 'Nazev-sub-sml'?: string | undefined;
3461
- 'Prijmeni-sub-sml'?: string | undefined;
3462
- 'Jmeno-sub-sml'?: string | undefined;
3463
- 'Ico-sub-sml'?: string | undefined;
3464
- 'Obec-sub-sml'?: string | undefined;
3465
- 'Ulice-sub-sml'?: string | undefined;
3466
- 'Cor-sub-sml'?: string | undefined;
3467
- 'Cpop-sub-sml'?: string | undefined;
3468
- 'Psc-sub-sml'?: string | undefined;
3469
- 'Typ-sub-sml'?: string | undefined;
3470
- 'Datum-uzavreni-sml'?: string | undefined;
3471
- 'Odbor-sml'?: string | undefined;
3472
- 'Celkova-castka-sml'?: string | undefined;
3473
- 'Mena-sml'?: string | undefined;
3474
- }[], unknown>;
3475
- 'Sejmute-dokumenty': z.ZodEffects<z.ZodDefault<z.ZodArray<z.ZodObject<{
1166
+ }, z.core.$strip>>>>;
1167
+ 'Sejmute-dokumenty': z.ZodPipe<z.ZodTransform<{} | null | undefined, unknown>, z.ZodDefault<z.ZodArray<z.ZodObject<{
3476
1168
  'Id-zaznamu': z.ZodOptional<z.ZodString>;
3477
1169
  'Datum-zmeny': z.ZodOptional<z.ZodString>;
3478
- }, "strip", z.ZodTypeAny, {
3479
- 'Datum-zmeny'?: string | undefined;
3480
- 'Id-zaznamu'?: string | undefined;
3481
- }, {
3482
- 'Datum-zmeny'?: string | undefined;
3483
- 'Id-zaznamu'?: string | undefined;
3484
- }>, "many">>, {
3485
- 'Datum-zmeny'?: string | undefined;
3486
- 'Id-zaznamu'?: string | undefined;
3487
- }[], unknown>;
3488
- 'Zrusene-dokumenty': z.ZodEffects<z.ZodDefault<z.ZodArray<z.ZodObject<{
1170
+ }, z.core.$strip>>>>;
1171
+ 'Zrusene-dokumenty': z.ZodPipe<z.ZodTransform<{} | null | undefined, unknown>, z.ZodDefault<z.ZodArray<z.ZodObject<{
3489
1172
  'Id-zaznamu': z.ZodOptional<z.ZodString>;
3490
1173
  'Datum-zmeny': z.ZodOptional<z.ZodString>;
3491
- }, "strip", z.ZodTypeAny, {
3492
- 'Datum-zmeny'?: string | undefined;
3493
- 'Id-zaznamu'?: string | undefined;
3494
- }, {
3495
- 'Datum-zmeny'?: string | undefined;
3496
- 'Id-zaznamu'?: string | undefined;
3497
- }>, "many">>, {
3498
- 'Datum-zmeny'?: string | undefined;
3499
- 'Id-zaznamu'?: string | undefined;
3500
- }[], unknown>;
3501
- }, "strip", z.ZodTypeAny, {
3502
- 'Seznam-dokumentu': {
3503
- Nazev: string;
3504
- 'Datum-zmeny': string;
3505
- 'Id-zaznamu': string;
3506
- Kategorie: string;
3507
- 'Vyveseno-dne': string;
3508
- Zdroj: string;
3509
- 'Id-fun-navrhl': string;
3510
- Navrhl: string;
3511
- 'Id-fun-schvalil': string;
3512
- Schvalil: string;
3513
- 'Pocet-souboru': string;
3514
- 'Pocet-vyveseno': string;
3515
- 'Pocet-archiv': string;
3516
- 'Id-dokumentu'?: string | undefined;
3517
- Popis?: string | undefined;
3518
- Stav?: string | undefined;
3519
- 'Sejmuto-dne'?: string | undefined;
3520
- Cj?: string | undefined;
3521
- 'Puvod-dokumentu'?: string | undefined;
3522
- 'Odesilatel-dokumentu'?: string | undefined;
3523
- 'Typ-dokumentu'?: string | undefined;
3524
- 'El-obraz-podpis'?: string | undefined;
3525
- 'Cj-spisu'?: string | undefined;
3526
- 'Cislo-sml'?: string | undefined;
3527
- 'Typ-sml'?: string | undefined;
3528
- 'Nazev-sml'?: string | undefined;
3529
- 'Subjekt-sml'?: string | undefined;
3530
- 'Nazev-sub-sml'?: string | undefined;
3531
- 'Prijmeni-sub-sml'?: string | undefined;
3532
- 'Jmeno-sub-sml'?: string | undefined;
3533
- 'Ico-sub-sml'?: string | undefined;
3534
- 'Obec-sub-sml'?: string | undefined;
3535
- 'Ulice-sub-sml'?: string | undefined;
3536
- 'Cor-sub-sml'?: string | undefined;
3537
- 'Cpop-sub-sml'?: string | undefined;
3538
- 'Psc-sub-sml'?: string | undefined;
3539
- 'Typ-sub-sml'?: string | undefined;
3540
- 'Datum-uzavreni-sml'?: string | undefined;
3541
- 'Odbor-sml'?: string | undefined;
3542
- 'Celkova-castka-sml'?: string | undefined;
3543
- 'Mena-sml'?: string | undefined;
3544
- }[];
3545
- 'Sejmute-dokumenty': {
3546
- 'Datum-zmeny'?: string | undefined;
3547
- 'Id-zaznamu'?: string | undefined;
3548
- }[];
3549
- 'Zrusene-dokumenty': {
3550
- 'Datum-zmeny'?: string | undefined;
3551
- 'Id-zaznamu'?: string | undefined;
3552
- }[];
3553
- }, {
3554
- 'Seznam-dokumentu'?: unknown;
3555
- 'Sejmute-dokumenty'?: unknown;
3556
- 'Zrusene-dokumenty'?: unknown;
3557
- }>;
1174
+ }, z.core.$strip>>>>;
1175
+ }, z.core.$strip>;
3558
1176
  type UdeSeznamDokumentuSeznamDokumentuItem = z.infer<typeof seznamDokumentuSchema>;
3559
1177
  type UdeSeznamDokumentuSejmuteDokumentyItem = z.infer<typeof dokumentySchema>;
3560
1178
  type UdeSeznamDokumentuZruseneDokumentyItem = UdeSeznamDokumentuSejmuteDokumentyItem;
@@ -3566,75 +1184,22 @@ declare const seznamKategoriiRequestProperties: readonly ["Id-uredni-desky"];
3566
1184
  * 'Id-uredni-desky' - Identifikátor úřední desky. Pokud je v GINIS naadministrována jen jedna deska, nemusí být uvedeno.
3567
1185
  */
3568
1186
  type UdeSeznamKategoriiRequest = {
3569
- [K in (typeof seznamKategoriiRequestProperties)[number] as K]?: string;
1187
+ [K in (typeof seznamKategoriiRequestProperties)[number] as K]?: RequestParamType;
3570
1188
  };
3571
1189
  declare const seznamKategoriiSchema: z.ZodObject<{
3572
1190
  'Id-kategorie': z.ZodString;
3573
1191
  Nazev: z.ZodOptional<z.ZodString>;
3574
- /**
3575
- * Počet vyvěšených dokumentů/záznamů v této kategorii.
3576
- * int
3577
- */
3578
1192
  'Pocet-vyveseno': z.ZodString;
3579
- /**
3580
- * Počet dokumentů/záznamů v archivu (sejmutých) této kategorie.
3581
- * int
3582
- */
3583
1193
  'Pocet-archiv': z.ZodString;
3584
- }, "strip", z.ZodTypeAny, {
3585
- 'Id-kategorie': string;
3586
- 'Pocet-vyveseno': string;
3587
- 'Pocet-archiv': string;
3588
- Nazev?: string | undefined;
3589
- }, {
3590
- 'Id-kategorie': string;
3591
- 'Pocet-vyveseno': string;
3592
- 'Pocet-archiv': string;
3593
- Nazev?: string | undefined;
3594
- }>;
1194
+ }, z.core.$strip>;
3595
1195
  declare const seznamKategoriiResponseSchema: z.ZodObject<{
3596
- /**
3597
- * Seznam-kategorii - vyžadován: Ne , max. výskyt: neomezeně
3598
- */
3599
- 'Seznam-kategorii': z.ZodEffects<z.ZodDefault<z.ZodArray<z.ZodObject<{
1196
+ 'Seznam-kategorii': z.ZodPipe<z.ZodTransform<{} | null | undefined, unknown>, z.ZodDefault<z.ZodArray<z.ZodObject<{
3600
1197
  'Id-kategorie': z.ZodString;
3601
1198
  Nazev: z.ZodOptional<z.ZodString>;
3602
- /**
3603
- * Počet vyvěšených dokumentů/záznamů v této kategorii.
3604
- * int
3605
- */
3606
1199
  'Pocet-vyveseno': z.ZodString;
3607
- /**
3608
- * Počet dokumentů/záznamů v archivu (sejmutých) této kategorie.
3609
- * int
3610
- */
3611
1200
  'Pocet-archiv': z.ZodString;
3612
- }, "strip", z.ZodTypeAny, {
3613
- 'Id-kategorie': string;
3614
- 'Pocet-vyveseno': string;
3615
- 'Pocet-archiv': string;
3616
- Nazev?: string | undefined;
3617
- }, {
3618
- 'Id-kategorie': string;
3619
- 'Pocet-vyveseno': string;
3620
- 'Pocet-archiv': string;
3621
- Nazev?: string | undefined;
3622
- }>, "many">>, {
3623
- 'Id-kategorie': string;
3624
- 'Pocet-vyveseno': string;
3625
- 'Pocet-archiv': string;
3626
- Nazev?: string | undefined;
3627
- }[], unknown>;
3628
- }, "strip", z.ZodTypeAny, {
3629
- 'Seznam-kategorii': {
3630
- 'Id-kategorie': string;
3631
- 'Pocet-vyveseno': string;
3632
- 'Pocet-archiv': string;
3633
- Nazev?: string | undefined;
3634
- }[];
3635
- }, {
3636
- 'Seznam-kategorii'?: unknown;
3637
- }>;
1201
+ }, z.core.$strip>>>>;
1202
+ }, z.core.$strip>;
3638
1203
  type UdeSeznamKategoriiSeznamKategoriiItem = z.infer<typeof seznamKategoriiSchema>;
3639
1204
  type UdeSeznamKategoriiResponse = z.infer<typeof seznamKategoriiResponseSchema>;
3640
1205
  declare function seznamKategorii(this: Ginis, bodyObj: UdeSeznamKategoriiRequest): Promise<UdeSeznamKategoriiResponse>;
@@ -3700,4 +1265,4 @@ declare class GinisError extends Error {
3700
1265
  constructor(message: string, axiosError?: AxiosError);
3701
1266
  }
3702
1267
 
3703
- export { type GinDetailFunkcnihoMistaDetailFunkcnihoMista, type GinDetailFunkcnihoMistaRequest, type GinDetailFunkcnihoMistaResponse, type GinDetailReferentaDetailReferenta, type GinDetailReferentaRequest, type GinDetailReferentaResponse, Ginis, type GinisConfig, GinisError, type PodDetailElPodaniDetailElPodani, type PodDetailElPodaniNavazanyDokumentItem, type PodDetailElPodaniRequest, type PodDetailElPodaniResponse, type SslDetailDokumentuCjDokumentu, type SslDetailDokumentuDoruceni, type SslDetailDokumentuEDoruceni, type SslDetailDokumentuHistorieDokumentuItem, type SslDetailDokumentuPrilohyDokumentuItem, type SslDetailDokumentuRequest, type SslDetailDokumentuResponse, type SslDetailDokumentuSouvisejiciDokumentyItem, type SslDetailDokumentuSpisovnaItem, type SslDetailDokumentuSslDokument, type SslDetailDokumentuSslObsahSpisItem, type SslDetailDokumentuSslSpis, type SslDetailDokumentuVlozenoDoSpisu, type SslDetailDokumentuWflDokument, type SslPrehledDokumentuPrehledDokumentuItem, type SslPrehledDokumentuRequest, type SslPrehledDokumentuRequestRizeniPrehledu, type SslPrehledDokumentuResponse, type SslPrehledDokumentuStavPrehledu, type SslPridatSouborPridatSoubor, type SslPridatSouborRequest, type SslPridatSouborResponse, type SslPrideleniPrideleni, type SslPrideleniRequest, type SslPrideleniResponse, type UdeDetailDokumentuDetailDokumentu, type UdeDetailDokumentuProtistranySmlItem, type UdeDetailDokumentuRequest, type UdeDetailDokumentuResponse, type UdeDetailDokumentuSouboryDokumentuItem, type UdeNacistSouborNacistSoubor, type UdeNacistSouborRequest, type UdeNacistSouborResponse, type UdeSeznamDokumentuRequest, type UdeSeznamDokumentuResponse, type UdeSeznamDokumentuSejmuteDokumentyItem, type UdeSeznamDokumentuSeznamDokumentuItem, type UdeSeznamDokumentuZruseneDokumentyItem, type UdeSeznamKategoriiRequest, type UdeSeznamKategoriiResponse, type UdeSeznamKategoriiSeznamKategoriiItem };
1268
+ export { type GinDetailFunkcnihoMistaDetailFunkcnihoMista, type GinDetailFunkcnihoMistaRequest, type GinDetailFunkcnihoMistaResponse, type GinDetailReferentaDetailReferenta, type GinDetailReferentaRequest, type GinDetailReferentaResponse, type GinEditEsuRequestVytvorEsu, type GinEditEsuResponse, type GinEditEsuVytvorEsu, type GinNajdiEsuNajdiEsuItem, type GinNajdiEsuRequest, type GinNajdiEsuResponse, Ginis, type GinisConfig, GinisError, type PodDetailElPodaniDetailElPodani, type PodDetailElPodaniNavazanyDokumentItem, type PodDetailElPodaniRequest, type PodDetailElPodaniResponse, type SslDetailDokumentuCjDokumentu, type SslDetailDokumentuDoruceni, type SslDetailDokumentuEDoruceni, type SslDetailDokumentuHistorieDokumentuItem, type SslDetailDokumentuPrilohyDokumentuItem, type SslDetailDokumentuRequest, type SslDetailDokumentuResponse, type SslDetailDokumentuSouvisejiciDokumentyItem, type SslDetailDokumentuSpisovnaItem, type SslDetailDokumentuSslDokument, type SslDetailDokumentuSslObsahSpisItem, type SslDetailDokumentuSslSpis, type SslDetailDokumentuVlozenoDoSpisu, type SslDetailDokumentuWflDokument, type SslNastavitVlastnostDokumentuNastavitVlastnostDokumentu, type SslNastavitVlastnostDokumentuRequest, type SslNastavitVlastnostDokumentuResponse, type SslPrehledDokumentuPrehledDokumentuItem, type SslPrehledDokumentuRequest, type SslPrehledDokumentuRequestRizeniPrehledu, type SslPrehledDokumentuResponse, type SslPrehledDokumentuStavPrehledu, type SslPridatSouborPridatSoubor, type SslPridatSouborRequest, type SslPridatSouborResponse, type SslPrideleniPrideleni, type SslPrideleniRequest, type SslPrideleniResponse, type SslZalozCjRequest, type SslZalozCjResponse, type SslZalozCjZalozCj, type SslZalozPisemnostRequestDoruceni, type SslZalozPisemnostRequestSslDokument, type SslZalozPisemnostRequestWflDokument, type SslZalozPisemnostResponse, type SslZalozPisemnostZalozPisemnost, type SslZalozitVlastnostDokumentuRequest, type SslZalozitVlastnostDokumentuResponse, type SslZalozitVlastnostDokumentuZalozitVlastnostDokumentu, type UdeDetailDokumentuDetailDokumentu, type UdeDetailDokumentuProtistranySmlItem, type UdeDetailDokumentuRequest, type UdeDetailDokumentuResponse, type UdeDetailDokumentuSouboryDokumentuItem, type UdeNacistSouborNacistSoubor, type UdeNacistSouborRequest, type UdeNacistSouborResponse, type UdeSeznamDokumentuRequest, type UdeSeznamDokumentuResponse, type UdeSeznamDokumentuSejmuteDokumentyItem, type UdeSeznamDokumentuSeznamDokumentuItem, type UdeSeznamDokumentuZruseneDokumentyItem, type UdeSeznamKategoriiRequest, type UdeSeznamKategoriiResponse, type UdeSeznamKategoriiSeznamKategoriiItem };