@bratislava/ginis-sdk 0.6.0 → 1.1.0
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
- package/dist/index.d.ts +1242 -29
- package/package.json +11 -11
package/dist/index.d.ts
CHANGED
|
@@ -3,9 +3,85 @@ import { ReadStream } from 'fs';
|
|
|
3
3
|
import { AxiosError } from 'axios';
|
|
4
4
|
|
|
5
5
|
declare const detailFunkcnihoMistaRequestProperties: readonly ["Id-funkce"];
|
|
6
|
-
type
|
|
6
|
+
type GinDetailFunkcnihoMistaRequest = {
|
|
7
7
|
[K in (typeof detailFunkcnihoMistaRequestProperties)[number] as K]?: string;
|
|
8
8
|
};
|
|
9
|
+
declare const detailFunkcnihoMistaSchema: z.ZodObject<{
|
|
10
|
+
'Id-funkce': z.ZodString;
|
|
11
|
+
Aktivita: z.ZodString;
|
|
12
|
+
Nazev: z.ZodOptional<z.ZodString>;
|
|
13
|
+
Zkratka: z.ZodOptional<z.ZodString>;
|
|
14
|
+
'Oficialni-nazev': z.ZodOptional<z.ZodString>;
|
|
15
|
+
Poznamka: z.ZodOptional<z.ZodString>;
|
|
16
|
+
'Datum-od': z.ZodString;
|
|
17
|
+
'Datum-do': z.ZodString;
|
|
18
|
+
'Id-spisoveho-uzlu': z.ZodString;
|
|
19
|
+
'Nazev-spisoveho-uzlu': z.ZodOptional<z.ZodString>;
|
|
20
|
+
'Zkratka-spisoveho-uzlu': z.ZodOptional<z.ZodString>;
|
|
21
|
+
'Uroven-funkce': z.ZodString;
|
|
22
|
+
'Kod-funkce': z.ZodOptional<z.ZodString>;
|
|
23
|
+
'Id-nad': z.ZodOptional<z.ZodString>;
|
|
24
|
+
'Id-referenta': z.ZodString;
|
|
25
|
+
'Nazev-referenta': z.ZodOptional<z.ZodString>;
|
|
26
|
+
'Id-orj': z.ZodString;
|
|
27
|
+
'Nazev-orj': z.ZodOptional<z.ZodString>;
|
|
28
|
+
'Kod-mistnosti': z.ZodOptional<z.ZodString>;
|
|
29
|
+
Url: z.ZodOptional<z.ZodString>;
|
|
30
|
+
Mail: z.ZodOptional<z.ZodString>;
|
|
31
|
+
Telefon: z.ZodOptional<z.ZodString>;
|
|
32
|
+
Fax: z.ZodOptional<z.ZodString>;
|
|
33
|
+
'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
|
+
}>;
|
|
9
85
|
declare const detailFunkcnihoMistaResponseSchema: z.ZodObject<{
|
|
10
86
|
'Detail-funkcniho-mista': z.ZodObject<{
|
|
11
87
|
'Id-funkce': z.ZodString;
|
|
@@ -138,13 +214,108 @@ declare const detailFunkcnihoMistaResponseSchema: z.ZodObject<{
|
|
|
138
214
|
Fax?: string | undefined;
|
|
139
215
|
};
|
|
140
216
|
}>;
|
|
141
|
-
type
|
|
142
|
-
|
|
217
|
+
type GinDetailFunkcnihoMistaDetailFunkcnihoMista = z.infer<typeof detailFunkcnihoMistaSchema>;
|
|
218
|
+
type GinDetailFunkcnihoMistaResponse = z.infer<typeof detailFunkcnihoMistaResponseSchema>;
|
|
219
|
+
declare function detailFunkcnihoMista(this: Ginis, bodyObj: GinDetailFunkcnihoMistaRequest): Promise<GinDetailFunkcnihoMistaResponse>;
|
|
143
220
|
|
|
144
221
|
declare const detailReferentaRequestProperties: readonly ["Id-osoby"];
|
|
145
|
-
type
|
|
222
|
+
type GinDetailReferentaRequest = {
|
|
146
223
|
[K in (typeof detailReferentaRequestProperties)[number] as K]?: string;
|
|
147
224
|
};
|
|
225
|
+
declare const detailReferentaSchema: z.ZodObject<{
|
|
226
|
+
'Id-osoby': z.ZodString;
|
|
227
|
+
Aktivita: z.ZodString;
|
|
228
|
+
Nazev: z.ZodOptional<z.ZodString>;
|
|
229
|
+
Zkratka: z.ZodOptional<z.ZodString>;
|
|
230
|
+
Jmeno: z.ZodOptional<z.ZodString>;
|
|
231
|
+
Prijmeni: z.ZodOptional<z.ZodString>;
|
|
232
|
+
Poznamka: z.ZodOptional<z.ZodString>;
|
|
233
|
+
'Datum-od': z.ZodString;
|
|
234
|
+
'Datum-do': z.ZodString;
|
|
235
|
+
'Id-spisoveho-uzlu': z.ZodString;
|
|
236
|
+
Login: z.ZodOptional<z.ZodString>;
|
|
237
|
+
'Alt-login': z.ZodOptional<z.ZodString>;
|
|
238
|
+
'Ext-sys-login': z.ZodOptional<z.ZodString>;
|
|
239
|
+
'Titul-pred': z.ZodOptional<z.ZodString>;
|
|
240
|
+
'Titul-za': z.ZodOptional<z.ZodString>;
|
|
241
|
+
'Osobni-cislo': z.ZodOptional<z.ZodString>;
|
|
242
|
+
'Rodne-cislo': z.ZodOptional<z.ZodString>;
|
|
243
|
+
'Rodne-prijmeni': z.ZodOptional<z.ZodString>;
|
|
244
|
+
Mail: z.ZodOptional<z.ZodString>;
|
|
245
|
+
Telefon: z.ZodOptional<z.ZodString>;
|
|
246
|
+
'Telefon-privat': z.ZodOptional<z.ZodString>;
|
|
247
|
+
'Telefon-mobil': z.ZodOptional<z.ZodString>;
|
|
248
|
+
Fax: z.ZodOptional<z.ZodString>;
|
|
249
|
+
'Datum-zmena': z.ZodString;
|
|
250
|
+
'Login-cs': z.ZodOptional<z.ZodString>;
|
|
251
|
+
'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
|
+
'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
|
+
'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
|
+
}>;
|
|
148
319
|
declare const detailReferentaResponseSchema: z.ZodObject<{
|
|
149
320
|
'Detail-referenta': z.ZodObject<{
|
|
150
321
|
'Id-osoby': z.ZodString;
|
|
@@ -303,8 +474,9 @@ declare const detailReferentaResponseSchema: z.ZodObject<{
|
|
|
303
474
|
'Alt-login-cs'?: string | undefined;
|
|
304
475
|
};
|
|
305
476
|
}>;
|
|
306
|
-
type
|
|
307
|
-
|
|
477
|
+
type GinDetailReferentaDetailReferenta = z.infer<typeof detailReferentaSchema>;
|
|
478
|
+
type GinDetailReferentaResponse = z.infer<typeof detailReferentaResponseSchema>;
|
|
479
|
+
declare function detailReferenta(this: Ginis, bodyObj: GinDetailReferentaRequest): Promise<GinDetailReferentaResponse>;
|
|
308
480
|
|
|
309
481
|
declare const _default$3: {
|
|
310
482
|
detailFunkcnihoMista: typeof detailFunkcnihoMista;
|
|
@@ -312,9 +484,62 @@ declare const _default$3: {
|
|
|
312
484
|
};
|
|
313
485
|
|
|
314
486
|
declare const detailElPodaniRequestProperties: readonly ["Id-zpravy", "Id-el-podani", "Id-esu", "Id-eu", "Zaradit-navazane"];
|
|
315
|
-
type
|
|
487
|
+
type PodDetailElPodaniRequest = {
|
|
316
488
|
[K in (typeof detailElPodaniRequestProperties)[number] as K]?: string;
|
|
317
489
|
};
|
|
490
|
+
declare const detailElPodaniSchema: z.ZodObject<{
|
|
491
|
+
'Datum-prijeti': z.ZodString;
|
|
492
|
+
'Stav-zpracovani': z.ZodString;
|
|
493
|
+
'Duvod-odmitnuti': z.ZodOptional<z.ZodString>;
|
|
494
|
+
'Stav-podani-kod': z.ZodString;
|
|
495
|
+
'Stav-podani-text': z.ZodOptional<z.ZodString>;
|
|
496
|
+
'Stav-odpovedi-kod': z.ZodString;
|
|
497
|
+
'Stav-odpovedi-text': z.ZodOptional<z.ZodString>;
|
|
498
|
+
'Id-dokumentu': z.ZodOptional<z.ZodString>;
|
|
499
|
+
Vec: z.ZodOptional<z.ZodString>;
|
|
500
|
+
'Spis-znacka': z.ZodOptional<z.ZodString>;
|
|
501
|
+
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
|
+
}>;
|
|
527
|
+
declare const navazanyDokumentSchema: z.ZodObject<{
|
|
528
|
+
'Id-dokumentu': z.ZodString;
|
|
529
|
+
Vec: z.ZodOptional<z.ZodString>;
|
|
530
|
+
'Spis-znacka': z.ZodOptional<z.ZodString>;
|
|
531
|
+
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
|
+
}>;
|
|
318
543
|
declare const detailElPodaniResponseSchema: z.ZodObject<{
|
|
319
544
|
'Detail-el-podani': z.ZodObject<{
|
|
320
545
|
'Datum-prijeti': z.ZodString;
|
|
@@ -410,17 +635,493 @@ declare const detailElPodaniResponseSchema: z.ZodObject<{
|
|
|
410
635
|
};
|
|
411
636
|
'Navazany-dokument'?: unknown;
|
|
412
637
|
}>;
|
|
413
|
-
type
|
|
414
|
-
|
|
638
|
+
type PodDetailElPodaniDetailElPodani = z.infer<typeof detailElPodaniSchema>;
|
|
639
|
+
type PodDetailElPodaniNavazanyDokumentItem = z.infer<typeof navazanyDokumentSchema>;
|
|
640
|
+
type PodDetailElPodaniResponse = z.infer<typeof detailElPodaniResponseSchema>;
|
|
641
|
+
declare function detailElPodani(this: Ginis, bodyObj: PodDetailElPodaniRequest): Promise<PodDetailElPodaniResponse>;
|
|
415
642
|
|
|
416
643
|
declare const _default$2: {
|
|
417
644
|
detailElPodani: typeof detailElPodani;
|
|
418
645
|
};
|
|
419
646
|
|
|
420
647
|
declare const detailDokumentuRequestProperties$1: readonly ["Id-dokumentu", "Vyradit-historii", "Vyradit-obsah-spisu", "Vyradit-prilohy", "Vyradit-souvisejici", "Id-esu", "Vyradit-doruceni", "Id-eu"];
|
|
421
|
-
type
|
|
648
|
+
type SslDetailDokumentuRequest = {
|
|
422
649
|
[K in (typeof detailDokumentuRequestProperties$1)[number] as K]?: string;
|
|
423
650
|
};
|
|
651
|
+
declare const wflDokumentSchema: z.ZodObject<{
|
|
652
|
+
'Id-dokumentu': z.ZodString;
|
|
653
|
+
'Id-spisu': z.ZodString;
|
|
654
|
+
'Priznak-spisu': z.ZodString;
|
|
655
|
+
'Priznak-cj': z.ZodString;
|
|
656
|
+
'Id-funkce-vlastnika': z.ZodString;
|
|
657
|
+
Vec: z.ZodOptional<z.ZodString>;
|
|
658
|
+
Znacka: z.ZodOptional<z.ZodString>;
|
|
659
|
+
'Stav-distribuce': z.ZodString;
|
|
660
|
+
'Stav-dokumentu': z.ZodString;
|
|
661
|
+
'Id-agendy': z.ZodString;
|
|
662
|
+
'Id-typu-dokumentu': z.ZodString;
|
|
663
|
+
'Priznak-doruceni': z.ZodString;
|
|
664
|
+
'Priznak-evidence-ssl': z.ZodString;
|
|
665
|
+
'Misto-vzniku': z.ZodOptional<z.ZodString>;
|
|
666
|
+
'Datum-podani': z.ZodString;
|
|
667
|
+
'Priznak-fyz-existence': z.ZodString;
|
|
668
|
+
'Priznak-el-obrazu': z.ZodString;
|
|
669
|
+
'Id-souboru': z.ZodOptional<z.ZodString>;
|
|
670
|
+
'Jmeno-souboru': z.ZodOptional<z.ZodString>;
|
|
671
|
+
'Popis-souboru': z.ZodOptional<z.ZodString>;
|
|
672
|
+
'Datum-zmeny': z.ZodString;
|
|
673
|
+
'Id-zmenu-provedl': z.ZodString;
|
|
674
|
+
'Id-originalu': z.ZodOptional<z.ZodString>;
|
|
675
|
+
'Verze-souboru': z.ZodOptional<z.ZodString>;
|
|
676
|
+
'Datum-zmeny-souboru': z.ZodOptional<z.ZodString>;
|
|
677
|
+
'Velikost-souboru': z.ZodOptional<z.ZodString>;
|
|
678
|
+
Barcode: z.ZodOptional<z.ZodString>;
|
|
679
|
+
'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
|
+
}>;
|
|
739
|
+
declare const doruceniSchema: z.ZodObject<{
|
|
740
|
+
'Id-dokumentu': z.ZodString;
|
|
741
|
+
Stat: z.ZodOptional<z.ZodString>;
|
|
742
|
+
Psc: z.ZodOptional<z.ZodString>;
|
|
743
|
+
'Datum-odeslani': z.ZodOptional<z.ZodString>;
|
|
744
|
+
'Znacka-odesilatele': z.ZodOptional<z.ZodString>;
|
|
745
|
+
'Datum-ze-dne': z.ZodOptional<z.ZodString>;
|
|
746
|
+
'Podaci-cislo': z.ZodOptional<z.ZodString>;
|
|
747
|
+
'Zpusob-doruceni': z.ZodOptional<z.ZodString>;
|
|
748
|
+
'Druh-zasilky': z.ZodString;
|
|
749
|
+
'Druh-zachazeni': z.ZodString;
|
|
750
|
+
'Datum-prijmu-podani': z.ZodOptional<z.ZodString>;
|
|
751
|
+
'Id-odesilatele': z.ZodOptional<z.ZodString>;
|
|
752
|
+
'Pocet-listu': z.ZodOptional<z.ZodString>;
|
|
753
|
+
'Pocet-priloh': z.ZodOptional<z.ZodString>;
|
|
754
|
+
'Pocet-stran': z.ZodOptional<z.ZodString>;
|
|
755
|
+
'Pocet-kopii': z.ZodOptional<z.ZodString>;
|
|
756
|
+
'Pocet-listu-priloh': z.ZodOptional<z.ZodString>;
|
|
757
|
+
'Poznamka-k-doruceni': z.ZodOptional<z.ZodString>;
|
|
758
|
+
'Id-uzlu-podani': z.ZodOptional<z.ZodString>;
|
|
759
|
+
'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
|
+
}>;
|
|
803
|
+
declare const eDoruceniSchema: z.ZodObject<{
|
|
804
|
+
'Datum-prijeti': z.ZodOptional<z.ZodString>;
|
|
805
|
+
'Datum-doruceni': z.ZodOptional<z.ZodString>;
|
|
806
|
+
'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
|
+
}>;
|
|
816
|
+
declare const historieDokumentuSchema: z.ZodObject<{
|
|
817
|
+
'Id-dokumentu': z.ZodString;
|
|
818
|
+
'Text-zmeny': z.ZodOptional<z.ZodString>;
|
|
819
|
+
Poznamka: z.ZodOptional<z.ZodString>;
|
|
820
|
+
'Datum-zmeny': z.ZodString;
|
|
821
|
+
'Id-zmenu-provedl': z.ZodString;
|
|
822
|
+
'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
|
+
}>;
|
|
838
|
+
declare const sslDokumentSchema: z.ZodObject<{
|
|
839
|
+
'Id-dokumentu': z.ZodString;
|
|
840
|
+
'Id-spisoveho-planu': z.ZodOptional<z.ZodString>;
|
|
841
|
+
'Id-spisoveho-znaku': z.ZodOptional<z.ZodString>;
|
|
842
|
+
'Skartacni-znak': z.ZodOptional<z.ZodString>;
|
|
843
|
+
'Skartacni-lhuta': z.ZodOptional<z.ZodString>;
|
|
844
|
+
Pristup: z.ZodOptional<z.ZodString>;
|
|
845
|
+
'Id-stupne-utajeni': z.ZodOptional<z.ZodString>;
|
|
846
|
+
'Vec-podrobne': z.ZodOptional<z.ZodString>;
|
|
847
|
+
Poznamka: z.ZodOptional<z.ZodString>;
|
|
848
|
+
'Pocet-listu': z.ZodOptional<z.ZodString>;
|
|
849
|
+
'Pocet-priloh': z.ZodOptional<z.ZodString>;
|
|
850
|
+
'Pocet-stran': z.ZodOptional<z.ZodString>;
|
|
851
|
+
'Pocet-kopii': z.ZodOptional<z.ZodString>;
|
|
852
|
+
'Pocet-listu-priloh': z.ZodOptional<z.ZodString>;
|
|
853
|
+
'Id-umisteni': z.ZodOptional<z.ZodString>;
|
|
854
|
+
Umisteni: z.ZodOptional<z.ZodString>;
|
|
855
|
+
'Id-funkce-resitele': z.ZodOptional<z.ZodString>;
|
|
856
|
+
'Datum-ulozeni': z.ZodOptional<z.ZodString>;
|
|
857
|
+
'Datum-pravni-moci': z.ZodOptional<z.ZodString>;
|
|
858
|
+
'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
|
+
}>;
|
|
902
|
+
declare const sslSpisSchema: z.ZodObject<{
|
|
903
|
+
'Id-spisu': z.ZodString;
|
|
904
|
+
'Id-zpusob-vyrizeni': z.ZodOptional<z.ZodString>;
|
|
905
|
+
'Poznamka-k-vyrizeni': z.ZodOptional<z.ZodString>;
|
|
906
|
+
'Datum-vyrizeni': z.ZodOptional<z.ZodString>;
|
|
907
|
+
'Id-funkce-vyrizovatele': z.ZodOptional<z.ZodString>;
|
|
908
|
+
'Id-funkce-schvalovatele': z.ZodOptional<z.ZodString>;
|
|
909
|
+
'Datum-uzavreni': z.ZodOptional<z.ZodString>;
|
|
910
|
+
'Id-funkce-uzaviratele': z.ZodOptional<z.ZodString>;
|
|
911
|
+
'Datum-pravni-moci': z.ZodOptional<z.ZodString>;
|
|
912
|
+
'Datum-vyrizeni-do': z.ZodOptional<z.ZodString>;
|
|
913
|
+
'Denik-spisu': z.ZodString;
|
|
914
|
+
'Rok-spisu': z.ZodString;
|
|
915
|
+
'Poradove-cislo-spisu': z.ZodString;
|
|
916
|
+
'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
|
+
}>;
|
|
948
|
+
declare const sslObsahSpisSchema: z.ZodObject<{
|
|
949
|
+
'Id-spisu': z.ZodString;
|
|
950
|
+
'Id-vlozeneho-dokumentu': z.ZodString;
|
|
951
|
+
'Poradove-cislo': z.ZodOptional<z.ZodString>;
|
|
952
|
+
'Datum-vlozeni': z.ZodOptional<z.ZodString>;
|
|
953
|
+
'Datum-vyjmuti': z.ZodOptional<z.ZodString>;
|
|
954
|
+
'Vztah-ke-spisu': z.ZodOptional<z.ZodString>;
|
|
955
|
+
Aktivita: z.ZodString;
|
|
956
|
+
'Poradove-cislo-uziv': z.ZodOptional<z.ZodString>;
|
|
957
|
+
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
|
+
}>;
|
|
979
|
+
declare const cjDokumentuSchema: z.ZodObject<{
|
|
980
|
+
'Id-init-dokumentu': z.ZodString;
|
|
981
|
+
'Id-vyriz-dokumentu': z.ZodOptional<z.ZodString>;
|
|
982
|
+
'Denik-cj': z.ZodString;
|
|
983
|
+
'Rok-cj': z.ZodString;
|
|
984
|
+
'Poradove-cislo-cj': z.ZodString;
|
|
985
|
+
'Vec-cj': z.ZodOptional<z.ZodString>;
|
|
986
|
+
'Znacka-cj': z.ZodString;
|
|
987
|
+
'Stav-cj': z.ZodString;
|
|
988
|
+
'Datum-evidence': z.ZodString;
|
|
989
|
+
'Datum-vyrizeni-do': z.ZodOptional<z.ZodString>;
|
|
990
|
+
'Datum-vyrizeni': z.ZodOptional<z.ZodString>;
|
|
991
|
+
'Datum-vlozeni': z.ZodOptional<z.ZodString>;
|
|
992
|
+
'Datum-vyjmuti': z.ZodOptional<z.ZodString>;
|
|
993
|
+
'Id-zpusob-vyrizeni': z.ZodOptional<z.ZodString>;
|
|
994
|
+
'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
|
+
}>;
|
|
1028
|
+
declare const prilohyDokumentuSchema: z.ZodObject<{
|
|
1029
|
+
'Poradove-cislo': z.ZodString;
|
|
1030
|
+
Titulek: z.ZodOptional<z.ZodString>;
|
|
1031
|
+
Popis: z.ZodOptional<z.ZodString>;
|
|
1032
|
+
Poznamka: z.ZodOptional<z.ZodString>;
|
|
1033
|
+
'Priznak-el-obrazu': z.ZodString;
|
|
1034
|
+
'Id-souboru': z.ZodOptional<z.ZodString>;
|
|
1035
|
+
'Verze-souboru': z.ZodOptional<z.ZodString>;
|
|
1036
|
+
'Datum-zmeny-souboru': z.ZodOptional<z.ZodString>;
|
|
1037
|
+
'Jmeno-souboru': z.ZodOptional<z.ZodString>;
|
|
1038
|
+
'Velikost-souboru': z.ZodOptional<z.ZodString>;
|
|
1039
|
+
'Ke-zverejneni': z.ZodOptional<z.ZodString>;
|
|
1040
|
+
'Stav-anonymizace': z.ZodOptional<z.ZodString>;
|
|
1041
|
+
'Kategorie-prilohy': z.ZodString;
|
|
1042
|
+
'Kategorie-prilohy-txt': z.ZodOptional<z.ZodString>;
|
|
1043
|
+
'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
|
+
}>;
|
|
1077
|
+
declare const souvisejiciDokumentySchema: z.ZodObject<{
|
|
1078
|
+
'Typ-vazby': z.ZodString;
|
|
1079
|
+
'Id-dokumentu': z.ZodString;
|
|
1080
|
+
Poznamka: z.ZodOptional<z.ZodString>;
|
|
1081
|
+
'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
|
+
}>;
|
|
1093
|
+
declare const spisovnaSchema: z.ZodObject<{
|
|
1094
|
+
'Stav-ulozeni-kod': z.ZodString;
|
|
1095
|
+
'Stav-ulozeni': z.ZodString;
|
|
1096
|
+
'Datum-skartace': z.ZodOptional<z.ZodString>;
|
|
1097
|
+
'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
|
+
}>;
|
|
1109
|
+
declare const vlozenoDoSpisuSchema: z.ZodObject<{
|
|
1110
|
+
'Id-spisu': z.ZodString;
|
|
1111
|
+
'Poradove-cislo': z.ZodOptional<z.ZodString>;
|
|
1112
|
+
'Poradove-cislo-uziv': z.ZodOptional<z.ZodString>;
|
|
1113
|
+
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
|
+
}>;
|
|
424
1125
|
declare const DetailDokumentuResponseSchema$1: z.ZodObject<{
|
|
425
1126
|
'Wfl-dokument': z.ZodObject<{
|
|
426
1127
|
'Id-dokumentu': z.ZodString;
|
|
@@ -1231,8 +1932,20 @@ declare const DetailDokumentuResponseSchema$1: z.ZodObject<{
|
|
|
1231
1932
|
'Poradove-cislo-uziv'?: string | undefined;
|
|
1232
1933
|
} | undefined;
|
|
1233
1934
|
}>;
|
|
1234
|
-
type
|
|
1235
|
-
|
|
1935
|
+
type SslDetailDokumentuWflDokument = z.infer<typeof wflDokumentSchema>;
|
|
1936
|
+
type SslDetailDokumentuDoruceni = z.infer<typeof doruceniSchema>;
|
|
1937
|
+
type SslDetailDokumentuEDoruceni = z.infer<typeof eDoruceniSchema>;
|
|
1938
|
+
type SslDetailDokumentuHistorieDokumentuItem = z.infer<typeof historieDokumentuSchema>;
|
|
1939
|
+
type SslDetailDokumentuSslDokument = z.infer<typeof sslDokumentSchema>;
|
|
1940
|
+
type SslDetailDokumentuSslSpis = z.infer<typeof sslSpisSchema>;
|
|
1941
|
+
type SslDetailDokumentuSslObsahSpisItem = z.infer<typeof sslObsahSpisSchema>;
|
|
1942
|
+
type SslDetailDokumentuCjDokumentu = z.infer<typeof cjDokumentuSchema>;
|
|
1943
|
+
type SslDetailDokumentuPrilohyDokumentuItem = z.infer<typeof prilohyDokumentuSchema>;
|
|
1944
|
+
type SslDetailDokumentuSouvisejiciDokumentyItem = z.infer<typeof souvisejiciDokumentySchema>;
|
|
1945
|
+
type SslDetailDokumentuSpisovnaItem = z.infer<typeof spisovnaSchema>;
|
|
1946
|
+
type SslDetailDokumentuVlozenoDoSpisu = z.infer<typeof vlozenoDoSpisuSchema>;
|
|
1947
|
+
type SslDetailDokumentuResponse = z.infer<typeof DetailDokumentuResponseSchema$1>;
|
|
1948
|
+
declare function detailDokumentu$1(this: Ginis, bodyObj: SslDetailDokumentuRequest): Promise<SslDetailDokumentuResponse>;
|
|
1236
1949
|
|
|
1237
1950
|
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"];
|
|
1238
1951
|
/**
|
|
@@ -1243,11 +1956,24 @@ declare const pridatSouborRequestProperties: readonly ["Id-dokumentu", "Id-soubo
|
|
|
1243
1956
|
* In this scenario a multipart request is sent and the file is send using MTOM XOP
|
|
1244
1957
|
* inside of Mime envelope. It allows for much faster a larger file transfers.
|
|
1245
1958
|
*/
|
|
1246
|
-
type
|
|
1959
|
+
type SslPridatSouborRequest = {
|
|
1247
1960
|
[K in (typeof pridatSouborRequestProperties)[number] as K]?: string;
|
|
1248
1961
|
} & {
|
|
1249
1962
|
Obsah?: ReadStream;
|
|
1250
1963
|
};
|
|
1964
|
+
declare const pridatSouborSchema: z.ZodObject<{
|
|
1965
|
+
'Datum-zmeny': z.ZodString;
|
|
1966
|
+
'Id-souboru': z.ZodString;
|
|
1967
|
+
'Verze-souboru': z.ZodString;
|
|
1968
|
+
}, "strip", z.ZodTypeAny, {
|
|
1969
|
+
'Id-souboru': string;
|
|
1970
|
+
'Datum-zmeny': string;
|
|
1971
|
+
'Verze-souboru': string;
|
|
1972
|
+
}, {
|
|
1973
|
+
'Id-souboru': string;
|
|
1974
|
+
'Datum-zmeny': string;
|
|
1975
|
+
'Verze-souboru': string;
|
|
1976
|
+
}>;
|
|
1251
1977
|
declare const pridatSouborResponseSchema: z.ZodObject<{
|
|
1252
1978
|
'Pridat-soubor': z.ZodObject<{
|
|
1253
1979
|
'Datum-zmeny': z.ZodString;
|
|
@@ -1275,9 +2001,10 @@ declare const pridatSouborResponseSchema: z.ZodObject<{
|
|
|
1275
2001
|
'Verze-souboru': string;
|
|
1276
2002
|
};
|
|
1277
2003
|
}>;
|
|
1278
|
-
type
|
|
1279
|
-
|
|
1280
|
-
declare function
|
|
2004
|
+
type SslPridatSouborPridatSoubor = z.infer<typeof pridatSouborSchema>;
|
|
2005
|
+
type SslPridatSouborResponse = z.infer<typeof pridatSouborResponseSchema>;
|
|
2006
|
+
declare function pridatSoubor(this: Ginis, bodyObj: SslPridatSouborRequest): Promise<SslPridatSouborResponse>;
|
|
2007
|
+
declare function pridatSouborMtom(this: Ginis, bodyObj: SslPridatSouborRequest): Promise<SslPridatSouborResponse>;
|
|
1281
2008
|
|
|
1282
2009
|
declare const _default$1: {
|
|
1283
2010
|
detailDokumentu: typeof detailDokumentu$1;
|
|
@@ -1286,9 +2013,256 @@ declare const _default$1: {
|
|
|
1286
2013
|
};
|
|
1287
2014
|
|
|
1288
2015
|
declare const detailDokumentuRequestProperties: readonly ["Vratit-info", "Id-zaznamu"];
|
|
1289
|
-
type
|
|
2016
|
+
type UdeDetailDokumentuRequest = {
|
|
1290
2017
|
[K in (typeof detailDokumentuRequestProperties)[number] as K]?: string;
|
|
1291
2018
|
};
|
|
2019
|
+
/** These types were created manually:
|
|
2020
|
+
* - copied from https://robot.gordic.cz/xrg/Default.html?c=OpenMethodDetail&moduleName=UDE&version=524&methodName=detail-dokumentu&type=response
|
|
2021
|
+
* - typed all fields as string
|
|
2022
|
+
* - marked all fields as optional
|
|
2023
|
+
* - manually checked which fields are required and changed them to required
|
|
2024
|
+
* - manually check type and add TSDoc comments for each field
|
|
2025
|
+
*/
|
|
2026
|
+
declare const detailDokumentuSchema: z.ZodObject<{
|
|
2027
|
+
'Id-zaznamu': z.ZodString;
|
|
2028
|
+
Stav: z.ZodOptional<z.ZodString>;
|
|
2029
|
+
Kategorie: z.ZodString;
|
|
2030
|
+
Nazev: z.ZodString;
|
|
2031
|
+
Popis: z.ZodOptional<z.ZodString>;
|
|
2032
|
+
Poznamka: z.ZodOptional<z.ZodString>;
|
|
2033
|
+
/**
|
|
2034
|
+
* date
|
|
2035
|
+
*/
|
|
2036
|
+
'Vyveseno-dne': z.ZodString;
|
|
2037
|
+
/**
|
|
2038
|
+
* date
|
|
2039
|
+
*/
|
|
2040
|
+
'Sejmuto-dne': z.ZodOptional<z.ZodString>;
|
|
2041
|
+
Zdroj: z.ZodString;
|
|
2042
|
+
'Id-fun-navrhl': z.ZodString;
|
|
2043
|
+
Navrhl: z.ZodString;
|
|
2044
|
+
'Id-fun-schvalil': z.ZodString;
|
|
2045
|
+
Schvalil: z.ZodString;
|
|
2046
|
+
Cj: z.ZodOptional<z.ZodString>;
|
|
2047
|
+
/**
|
|
2048
|
+
* Počet vyvěšených souborů.
|
|
2049
|
+
* int
|
|
2050
|
+
*/
|
|
2051
|
+
'Pocet-souboru': z.ZodString;
|
|
2052
|
+
'Id-dokumentu': z.ZodOptional<z.ZodString>;
|
|
2053
|
+
/**
|
|
2054
|
+
* Datum a čas změny záznamu na úřední desce (změna nastala po tomto okamžiku).
|
|
2055
|
+
* dateTime
|
|
2056
|
+
*/
|
|
2057
|
+
'Datum-zmeny': z.ZodString;
|
|
2058
|
+
'Puvod-dokumentu': z.ZodOptional<z.ZodString>;
|
|
2059
|
+
'Odesilatel-dokumentu': z.ZodOptional<z.ZodString>;
|
|
2060
|
+
'Typ-dokumentu': z.ZodOptional<z.ZodString>;
|
|
2061
|
+
/**
|
|
2062
|
+
* 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.
|
|
2063
|
+
* int
|
|
2064
|
+
*
|
|
2065
|
+
* 0 - Soubor není elektronicky podepsán.
|
|
2066
|
+
* 1 - Soubor je elektronicky podepsán.
|
|
2067
|
+
* 2 - Soubor je elektronicky podepsán čas. razítkem.
|
|
2068
|
+
* 3 - Dokument je opatřen čas. razítkem.
|
|
2069
|
+
*/
|
|
2070
|
+
'El-obraz-podpis': z.ZodOptional<z.ZodString>;
|
|
2071
|
+
'Cj-spisu': z.ZodOptional<z.ZodString>;
|
|
2072
|
+
'Cislo-sml': z.ZodOptional<z.ZodString>;
|
|
2073
|
+
'Typ-sml': z.ZodOptional<z.ZodString>;
|
|
2074
|
+
'Nazev-sml': z.ZodOptional<z.ZodString>;
|
|
2075
|
+
'Subjekt-sml': z.ZodOptional<z.ZodString>;
|
|
2076
|
+
'Nazev-sub-sml': z.ZodOptional<z.ZodString>;
|
|
2077
|
+
'Prijmeni-sub-sml': z.ZodOptional<z.ZodString>;
|
|
2078
|
+
'Jmeno-sub-sml': z.ZodOptional<z.ZodString>;
|
|
2079
|
+
'Ico-sub-sml': z.ZodOptional<z.ZodString>;
|
|
2080
|
+
'Obec-sub-sml': z.ZodOptional<z.ZodString>;
|
|
2081
|
+
'Ulice-sub-sml': z.ZodOptional<z.ZodString>;
|
|
2082
|
+
'Cor-sub-sml': z.ZodOptional<z.ZodString>;
|
|
2083
|
+
'Cpop-sub-sml': z.ZodOptional<z.ZodString>;
|
|
2084
|
+
'Psc-sub-sml': z.ZodOptional<z.ZodString>;
|
|
2085
|
+
'Typ-sub-sml': z.ZodOptional<z.ZodString>;
|
|
2086
|
+
'Datum-uzavreni-sml': z.ZodOptional<z.ZodString>;
|
|
2087
|
+
'Odbor-sml': z.ZodOptional<z.ZodString>;
|
|
2088
|
+
'Celkova-castka-sml': z.ZodOptional<z.ZodString>;
|
|
2089
|
+
'Mena-sml': z.ZodOptional<z.ZodString>;
|
|
2090
|
+
}, "strip", z.ZodTypeAny, {
|
|
2091
|
+
Nazev: string;
|
|
2092
|
+
'Datum-zmeny': string;
|
|
2093
|
+
'Id-zaznamu': string;
|
|
2094
|
+
Kategorie: string;
|
|
2095
|
+
'Vyveseno-dne': string;
|
|
2096
|
+
Zdroj: string;
|
|
2097
|
+
'Id-fun-navrhl': string;
|
|
2098
|
+
Navrhl: string;
|
|
2099
|
+
'Id-fun-schvalil': string;
|
|
2100
|
+
Schvalil: string;
|
|
2101
|
+
'Pocet-souboru': string;
|
|
2102
|
+
Poznamka?: string | undefined;
|
|
2103
|
+
'Id-dokumentu'?: string | undefined;
|
|
2104
|
+
Popis?: string | undefined;
|
|
2105
|
+
Stav?: string | undefined;
|
|
2106
|
+
'Sejmuto-dne'?: string | undefined;
|
|
2107
|
+
Cj?: string | undefined;
|
|
2108
|
+
'Puvod-dokumentu'?: string | undefined;
|
|
2109
|
+
'Odesilatel-dokumentu'?: string | undefined;
|
|
2110
|
+
'Typ-dokumentu'?: string | undefined;
|
|
2111
|
+
'El-obraz-podpis'?: string | undefined;
|
|
2112
|
+
'Cj-spisu'?: string | undefined;
|
|
2113
|
+
'Cislo-sml'?: string | undefined;
|
|
2114
|
+
'Typ-sml'?: string | undefined;
|
|
2115
|
+
'Nazev-sml'?: string | undefined;
|
|
2116
|
+
'Subjekt-sml'?: string | undefined;
|
|
2117
|
+
'Nazev-sub-sml'?: string | undefined;
|
|
2118
|
+
'Prijmeni-sub-sml'?: string | undefined;
|
|
2119
|
+
'Jmeno-sub-sml'?: string | undefined;
|
|
2120
|
+
'Ico-sub-sml'?: string | undefined;
|
|
2121
|
+
'Obec-sub-sml'?: string | undefined;
|
|
2122
|
+
'Ulice-sub-sml'?: string | undefined;
|
|
2123
|
+
'Cor-sub-sml'?: string | undefined;
|
|
2124
|
+
'Cpop-sub-sml'?: string | undefined;
|
|
2125
|
+
'Psc-sub-sml'?: string | undefined;
|
|
2126
|
+
'Typ-sub-sml'?: string | undefined;
|
|
2127
|
+
'Datum-uzavreni-sml'?: string | undefined;
|
|
2128
|
+
'Odbor-sml'?: string | undefined;
|
|
2129
|
+
'Celkova-castka-sml'?: string | undefined;
|
|
2130
|
+
'Mena-sml'?: string | undefined;
|
|
2131
|
+
}, {
|
|
2132
|
+
Nazev: string;
|
|
2133
|
+
'Datum-zmeny': string;
|
|
2134
|
+
'Id-zaznamu': string;
|
|
2135
|
+
Kategorie: string;
|
|
2136
|
+
'Vyveseno-dne': string;
|
|
2137
|
+
Zdroj: string;
|
|
2138
|
+
'Id-fun-navrhl': string;
|
|
2139
|
+
Navrhl: string;
|
|
2140
|
+
'Id-fun-schvalil': string;
|
|
2141
|
+
Schvalil: string;
|
|
2142
|
+
'Pocet-souboru': string;
|
|
2143
|
+
Poznamka?: string | undefined;
|
|
2144
|
+
'Id-dokumentu'?: string | undefined;
|
|
2145
|
+
Popis?: string | undefined;
|
|
2146
|
+
Stav?: string | undefined;
|
|
2147
|
+
'Sejmuto-dne'?: string | undefined;
|
|
2148
|
+
Cj?: string | undefined;
|
|
2149
|
+
'Puvod-dokumentu'?: string | undefined;
|
|
2150
|
+
'Odesilatel-dokumentu'?: string | undefined;
|
|
2151
|
+
'Typ-dokumentu'?: string | undefined;
|
|
2152
|
+
'El-obraz-podpis'?: string | undefined;
|
|
2153
|
+
'Cj-spisu'?: string | undefined;
|
|
2154
|
+
'Cislo-sml'?: string | undefined;
|
|
2155
|
+
'Typ-sml'?: string | undefined;
|
|
2156
|
+
'Nazev-sml'?: string | undefined;
|
|
2157
|
+
'Subjekt-sml'?: string | undefined;
|
|
2158
|
+
'Nazev-sub-sml'?: string | undefined;
|
|
2159
|
+
'Prijmeni-sub-sml'?: string | undefined;
|
|
2160
|
+
'Jmeno-sub-sml'?: string | undefined;
|
|
2161
|
+
'Ico-sub-sml'?: string | undefined;
|
|
2162
|
+
'Obec-sub-sml'?: string | undefined;
|
|
2163
|
+
'Ulice-sub-sml'?: string | undefined;
|
|
2164
|
+
'Cor-sub-sml'?: string | undefined;
|
|
2165
|
+
'Cpop-sub-sml'?: string | undefined;
|
|
2166
|
+
'Psc-sub-sml'?: string | undefined;
|
|
2167
|
+
'Typ-sub-sml'?: string | undefined;
|
|
2168
|
+
'Datum-uzavreni-sml'?: string | undefined;
|
|
2169
|
+
'Odbor-sml'?: string | undefined;
|
|
2170
|
+
'Celkova-castka-sml'?: string | undefined;
|
|
2171
|
+
'Mena-sml'?: string | undefined;
|
|
2172
|
+
}>;
|
|
2173
|
+
declare const souboryDokumentuSchema: z.ZodObject<{
|
|
2174
|
+
'Id-souboru': z.ZodString;
|
|
2175
|
+
Nazev: z.ZodString;
|
|
2176
|
+
/**
|
|
2177
|
+
* Velikost souboru včetně jednotky (např. KB).
|
|
2178
|
+
* string
|
|
2179
|
+
*/
|
|
2180
|
+
Velikost: z.ZodOptional<z.ZodString>;
|
|
2181
|
+
/**
|
|
2182
|
+
* 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šší.
|
|
2183
|
+
* short
|
|
2184
|
+
*
|
|
2185
|
+
* 0 - Soubor není el. obraz GINIS dokumentu (soubor je příloha, nebo vložen přes modul UDA01).
|
|
2186
|
+
* 1 - Soubor je el. obraz GINIS dokumentu.
|
|
2187
|
+
*/
|
|
2188
|
+
'Priznak-el-obr': z.ZodOptional<z.ZodString>;
|
|
2189
|
+
/**
|
|
2190
|
+
* Poznámka k souboru.
|
|
2191
|
+
*/
|
|
2192
|
+
Poznamka: z.ZodOptional<z.ZodString>;
|
|
2193
|
+
/**
|
|
2194
|
+
* 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.
|
|
2195
|
+
* short
|
|
2196
|
+
*
|
|
2197
|
+
* 0 - Soubor není elektronicky podepsán.
|
|
2198
|
+
* 1 - Soubor je elektronicky podepsán.
|
|
2199
|
+
* 2 - Soubor je elektronicky podepsán čas. razítkem.
|
|
2200
|
+
* 3 - Dokument je opatřen čas. razítkem.
|
|
2201
|
+
*/
|
|
2202
|
+
'Priznak-podpis': z.ZodOptional<z.ZodString>;
|
|
2203
|
+
}, "strip", z.ZodTypeAny, {
|
|
2204
|
+
Nazev: string;
|
|
2205
|
+
'Id-souboru': string;
|
|
2206
|
+
Poznamka?: string | undefined;
|
|
2207
|
+
Velikost?: string | undefined;
|
|
2208
|
+
'Priznak-el-obr'?: string | undefined;
|
|
2209
|
+
'Priznak-podpis'?: string | undefined;
|
|
2210
|
+
}, {
|
|
2211
|
+
Nazev: string;
|
|
2212
|
+
'Id-souboru': string;
|
|
2213
|
+
Poznamka?: string | undefined;
|
|
2214
|
+
Velikost?: string | undefined;
|
|
2215
|
+
'Priznak-el-obr'?: string | undefined;
|
|
2216
|
+
'Priznak-podpis'?: string | undefined;
|
|
2217
|
+
}>;
|
|
2218
|
+
declare const protistranySmlSchema: z.ZodObject<{
|
|
2219
|
+
'Typ-protistrany': z.ZodOptional<z.ZodString>;
|
|
2220
|
+
Subjekt: z.ZodOptional<z.ZodString>;
|
|
2221
|
+
'Nazev-sub': z.ZodOptional<z.ZodString>;
|
|
2222
|
+
'Prijmeni-sub': z.ZodOptional<z.ZodString>;
|
|
2223
|
+
'Jmeno-sub': z.ZodOptional<z.ZodString>;
|
|
2224
|
+
'Ico-sub': z.ZodOptional<z.ZodString>;
|
|
2225
|
+
'Obec-sub': z.ZodOptional<z.ZodString>;
|
|
2226
|
+
'Ulice-sub': z.ZodOptional<z.ZodString>;
|
|
2227
|
+
'Cor-sub': z.ZodOptional<z.ZodString>;
|
|
2228
|
+
'Cpop-sub': z.ZodOptional<z.ZodString>;
|
|
2229
|
+
'Psc-sub': z.ZodOptional<z.ZodString>;
|
|
2230
|
+
/**
|
|
2231
|
+
* Typ subjektu smlouvy.
|
|
2232
|
+
*
|
|
2233
|
+
* neurceno - Neurčeno
|
|
2234
|
+
* pravnicka-osoba - Právnická osoba
|
|
2235
|
+
* fyz-osoba - Fyzická osoba
|
|
2236
|
+
* fyz-osoba-osvc - Fyzická osoba OSVČ
|
|
2237
|
+
*/
|
|
2238
|
+
'Typ-sub': z.ZodOptional<z.ZodString>;
|
|
2239
|
+
}, "strip", z.ZodTypeAny, {
|
|
2240
|
+
'Typ-protistrany'?: string | undefined;
|
|
2241
|
+
Subjekt?: string | undefined;
|
|
2242
|
+
'Nazev-sub'?: string | undefined;
|
|
2243
|
+
'Prijmeni-sub'?: string | undefined;
|
|
2244
|
+
'Jmeno-sub'?: string | undefined;
|
|
2245
|
+
'Ico-sub'?: string | undefined;
|
|
2246
|
+
'Obec-sub'?: string | undefined;
|
|
2247
|
+
'Ulice-sub'?: string | undefined;
|
|
2248
|
+
'Cor-sub'?: string | undefined;
|
|
2249
|
+
'Cpop-sub'?: string | undefined;
|
|
2250
|
+
'Psc-sub'?: string | undefined;
|
|
2251
|
+
'Typ-sub'?: string | undefined;
|
|
2252
|
+
}, {
|
|
2253
|
+
'Typ-protistrany'?: string | undefined;
|
|
2254
|
+
Subjekt?: string | undefined;
|
|
2255
|
+
'Nazev-sub'?: string | undefined;
|
|
2256
|
+
'Prijmeni-sub'?: string | undefined;
|
|
2257
|
+
'Jmeno-sub'?: string | undefined;
|
|
2258
|
+
'Ico-sub'?: string | undefined;
|
|
2259
|
+
'Obec-sub'?: string | undefined;
|
|
2260
|
+
'Ulice-sub'?: string | undefined;
|
|
2261
|
+
'Cor-sub'?: string | undefined;
|
|
2262
|
+
'Cpop-sub'?: string | undefined;
|
|
2263
|
+
'Psc-sub'?: string | undefined;
|
|
2264
|
+
'Typ-sub'?: string | undefined;
|
|
2265
|
+
}>;
|
|
1292
2266
|
/**
|
|
1293
2267
|
* Note:
|
|
1294
2268
|
* - DetailDokumentu usually comes as an array with one item
|
|
@@ -1666,13 +2640,35 @@ declare const DetailDokumentuResponseSchema: z.ZodObject<{
|
|
|
1666
2640
|
'Soubory-dokumentu'?: unknown;
|
|
1667
2641
|
'Protistrany-sml'?: unknown;
|
|
1668
2642
|
}>;
|
|
1669
|
-
type
|
|
1670
|
-
|
|
2643
|
+
type UdeDetailDokumentuDetailDokumentu = z.infer<typeof detailDokumentuSchema>;
|
|
2644
|
+
type UdeDetailDokumentuSouboryDokumentuItem = z.infer<typeof souboryDokumentuSchema>;
|
|
2645
|
+
type UdeDetailDokumentuProtistranySmlItem = z.infer<typeof protistranySmlSchema>;
|
|
2646
|
+
type UdeDetailDokumentuResponse = z.infer<typeof DetailDokumentuResponseSchema>;
|
|
2647
|
+
declare function detailDokumentu(this: Ginis, bodyObj: UdeDetailDokumentuRequest): Promise<UdeDetailDokumentuResponse>;
|
|
1671
2648
|
|
|
1672
2649
|
declare const nacistSouborRequestProperties: readonly ["Id-souboru"];
|
|
1673
|
-
type
|
|
2650
|
+
type UdeNacistSouborRequest = {
|
|
1674
2651
|
[K in (typeof nacistSouborRequestProperties)[number] as K]?: string;
|
|
1675
2652
|
};
|
|
2653
|
+
declare const nacistSouborSchema: z.ZodObject<{
|
|
2654
|
+
/**
|
|
2655
|
+
* Jméno el. souboru.
|
|
2656
|
+
* string
|
|
2657
|
+
* Max. délka: 254, Min. délka: 1,
|
|
2658
|
+
*/
|
|
2659
|
+
'Jmeno-souboru': z.ZodString;
|
|
2660
|
+
/**
|
|
2661
|
+
* Binární data souboru v base64 formátu.
|
|
2662
|
+
* base64Binary
|
|
2663
|
+
*/
|
|
2664
|
+
Data: z.ZodString;
|
|
2665
|
+
}, "strip", z.ZodTypeAny, {
|
|
2666
|
+
'Jmeno-souboru': string;
|
|
2667
|
+
Data: string;
|
|
2668
|
+
}, {
|
|
2669
|
+
'Jmeno-souboru': string;
|
|
2670
|
+
Data: string;
|
|
2671
|
+
}>;
|
|
1676
2672
|
declare const nacistSouborResponseSchema: z.ZodObject<{
|
|
1677
2673
|
/**
|
|
1678
2674
|
* Nacist-soubor - vyžadován: Ne , max. výskyt: 1
|
|
@@ -1707,8 +2703,9 @@ declare const nacistSouborResponseSchema: z.ZodObject<{
|
|
|
1707
2703
|
Data: string;
|
|
1708
2704
|
} | undefined;
|
|
1709
2705
|
}>;
|
|
1710
|
-
type
|
|
1711
|
-
|
|
2706
|
+
type UdeNacistSouborNacistSoubor = z.infer<typeof nacistSouborSchema>;
|
|
2707
|
+
type UdeNacistSouborResponse = z.infer<typeof nacistSouborResponseSchema>;
|
|
2708
|
+
declare function nacistSoubor(this: Ginis, bodyObj: UdeNacistSouborRequest): Promise<UdeNacistSouborResponse>;
|
|
1712
2709
|
|
|
1713
2710
|
/**
|
|
1714
2711
|
* Full docs: https://robot.gordic.cz/xrg/Default.html?c=OpenMethodDetail&moduleName=UDE&version=390&methodName=seznam-dokumentu&type=request
|
|
@@ -1735,9 +2732,197 @@ declare const seznamDokumentuRequestProperties: readonly ["Vratit-info", "Stav",
|
|
|
1735
2732
|
* datova-schranka - datová schránka
|
|
1736
2733
|
* interface-xrg - interface, xrg
|
|
1737
2734
|
*/
|
|
1738
|
-
type
|
|
2735
|
+
type UdeSeznamDokumentuRequest = {
|
|
1739
2736
|
[K in (typeof seznamDokumentuRequestProperties)[number] as K]?: string;
|
|
1740
2737
|
};
|
|
2738
|
+
/**
|
|
2739
|
+
* Manually typed according to https://robot.gordic.cz/xrg/Default.html?c=OpenMethodDetail&moduleName=UDE&version=390&methodName=seznam-dokumentu&type=response#
|
|
2740
|
+
*/
|
|
2741
|
+
declare const seznamDokumentuSchema: z.ZodObject<{
|
|
2742
|
+
'Id-zaznamu': z.ZodString;
|
|
2743
|
+
/**
|
|
2744
|
+
* 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'.
|
|
2745
|
+
* vyveseno - Vyvěšeno – schváleno k vyvěšení + nastalo datum vyvěšení (a ještě nenastalo datum sejmutí)
|
|
2746
|
+
* 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í)
|
|
2747
|
+
*/
|
|
2748
|
+
Stav: z.ZodOptional<z.ZodString>;
|
|
2749
|
+
/**
|
|
2750
|
+
* Název kategorie.
|
|
2751
|
+
*/
|
|
2752
|
+
Kategorie: z.ZodString;
|
|
2753
|
+
Nazev: z.ZodString;
|
|
2754
|
+
Popis: z.ZodOptional<z.ZodString>;
|
|
2755
|
+
/**
|
|
2756
|
+
* ISO-string date
|
|
2757
|
+
*/
|
|
2758
|
+
'Vyveseno-dne': z.ZodString;
|
|
2759
|
+
/**
|
|
2760
|
+
* ISO-string date
|
|
2761
|
+
*/
|
|
2762
|
+
'Sejmuto-dne': z.ZodOptional<z.ZodString>;
|
|
2763
|
+
Zdroj: z.ZodString;
|
|
2764
|
+
/**
|
|
2765
|
+
* Identifikace GINIS funkce, která navrhla dokument k vyvěšení.
|
|
2766
|
+
*/
|
|
2767
|
+
'Id-fun-navrhl': z.ZodString;
|
|
2768
|
+
/**
|
|
2769
|
+
* Osoba, která navrhla dokument k vyvěšení.
|
|
2770
|
+
*/
|
|
2771
|
+
Navrhl: z.ZodString;
|
|
2772
|
+
/**
|
|
2773
|
+
* Identifikace GINIS funkce, která dokument schválila resp. vyvěsila.
|
|
2774
|
+
*/
|
|
2775
|
+
'Id-fun-schvalil': z.ZodString;
|
|
2776
|
+
/**
|
|
2777
|
+
* Osoba, která dokument schválila resp. vyvěsila.
|
|
2778
|
+
*/
|
|
2779
|
+
Schvalil: z.ZodString;
|
|
2780
|
+
/**
|
|
2781
|
+
* Číslo jednací resp. značka.
|
|
2782
|
+
*/
|
|
2783
|
+
Cj: z.ZodOptional<z.ZodString>;
|
|
2784
|
+
/**
|
|
2785
|
+
* Počet vyvěšených souborů.
|
|
2786
|
+
* int
|
|
2787
|
+
*/
|
|
2788
|
+
'Pocet-souboru': z.ZodString;
|
|
2789
|
+
/**
|
|
2790
|
+
* 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.
|
|
2791
|
+
*/
|
|
2792
|
+
'Id-dokumentu': z.ZodOptional<z.ZodString>;
|
|
2793
|
+
/**
|
|
2794
|
+
* Celkový počet vyvěšených dokumentů/záznamů.
|
|
2795
|
+
* int
|
|
2796
|
+
*/
|
|
2797
|
+
'Pocet-vyveseno': z.ZodString;
|
|
2798
|
+
/**
|
|
2799
|
+
* Celkový počet dokumentů/záznamů v archivu (sejmutých).
|
|
2800
|
+
* int
|
|
2801
|
+
*/
|
|
2802
|
+
'Pocet-archiv': z.ZodString;
|
|
2803
|
+
/**
|
|
2804
|
+
* Datum a čas změny záznamu na úřední desce.
|
|
2805
|
+
* dateTime
|
|
2806
|
+
*/
|
|
2807
|
+
'Datum-zmeny': z.ZodString;
|
|
2808
|
+
'Puvod-dokumentu': z.ZodOptional<z.ZodString>;
|
|
2809
|
+
'Odesilatel-dokumentu': z.ZodOptional<z.ZodString>;
|
|
2810
|
+
'Typ-dokumentu': z.ZodOptional<z.ZodString>;
|
|
2811
|
+
'El-obraz-podpis': z.ZodOptional<z.ZodString>;
|
|
2812
|
+
'Cj-spisu': z.ZodOptional<z.ZodString>;
|
|
2813
|
+
'Cislo-sml': z.ZodOptional<z.ZodString>;
|
|
2814
|
+
'Typ-sml': z.ZodOptional<z.ZodString>;
|
|
2815
|
+
'Nazev-sml': z.ZodOptional<z.ZodString>;
|
|
2816
|
+
'Subjekt-sml': z.ZodOptional<z.ZodString>;
|
|
2817
|
+
'Nazev-sub-sml': z.ZodOptional<z.ZodString>;
|
|
2818
|
+
'Prijmeni-sub-sml': z.ZodOptional<z.ZodString>;
|
|
2819
|
+
'Jmeno-sub-sml': z.ZodOptional<z.ZodString>;
|
|
2820
|
+
'Ico-sub-sml': z.ZodOptional<z.ZodString>;
|
|
2821
|
+
'Obec-sub-sml': z.ZodOptional<z.ZodString>;
|
|
2822
|
+
'Ulice-sub-sml': z.ZodOptional<z.ZodString>;
|
|
2823
|
+
'Cor-sub-sml': z.ZodOptional<z.ZodString>;
|
|
2824
|
+
'Cpop-sub-sml': z.ZodOptional<z.ZodString>;
|
|
2825
|
+
'Psc-sub-sml': z.ZodOptional<z.ZodString>;
|
|
2826
|
+
'Typ-sub-sml': z.ZodOptional<z.ZodString>;
|
|
2827
|
+
'Datum-uzavreni-sml': z.ZodOptional<z.ZodString>;
|
|
2828
|
+
'Odbor-sml': z.ZodOptional<z.ZodString>;
|
|
2829
|
+
'Celkova-castka-sml': z.ZodOptional<z.ZodString>;
|
|
2830
|
+
'Mena-sml': z.ZodOptional<z.ZodString>;
|
|
2831
|
+
}, "strip", z.ZodTypeAny, {
|
|
2832
|
+
Nazev: string;
|
|
2833
|
+
'Datum-zmeny': string;
|
|
2834
|
+
'Id-zaznamu': string;
|
|
2835
|
+
Kategorie: string;
|
|
2836
|
+
'Vyveseno-dne': string;
|
|
2837
|
+
Zdroj: string;
|
|
2838
|
+
'Id-fun-navrhl': string;
|
|
2839
|
+
Navrhl: string;
|
|
2840
|
+
'Id-fun-schvalil': string;
|
|
2841
|
+
Schvalil: string;
|
|
2842
|
+
'Pocet-souboru': string;
|
|
2843
|
+
'Pocet-vyveseno': string;
|
|
2844
|
+
'Pocet-archiv': string;
|
|
2845
|
+
'Id-dokumentu'?: string | undefined;
|
|
2846
|
+
Popis?: string | undefined;
|
|
2847
|
+
Stav?: string | undefined;
|
|
2848
|
+
'Sejmuto-dne'?: string | undefined;
|
|
2849
|
+
Cj?: string | undefined;
|
|
2850
|
+
'Puvod-dokumentu'?: string | undefined;
|
|
2851
|
+
'Odesilatel-dokumentu'?: string | undefined;
|
|
2852
|
+
'Typ-dokumentu'?: string | undefined;
|
|
2853
|
+
'El-obraz-podpis'?: string | undefined;
|
|
2854
|
+
'Cj-spisu'?: string | undefined;
|
|
2855
|
+
'Cislo-sml'?: string | undefined;
|
|
2856
|
+
'Typ-sml'?: string | undefined;
|
|
2857
|
+
'Nazev-sml'?: string | undefined;
|
|
2858
|
+
'Subjekt-sml'?: string | undefined;
|
|
2859
|
+
'Nazev-sub-sml'?: string | undefined;
|
|
2860
|
+
'Prijmeni-sub-sml'?: string | undefined;
|
|
2861
|
+
'Jmeno-sub-sml'?: string | undefined;
|
|
2862
|
+
'Ico-sub-sml'?: string | undefined;
|
|
2863
|
+
'Obec-sub-sml'?: string | undefined;
|
|
2864
|
+
'Ulice-sub-sml'?: string | undefined;
|
|
2865
|
+
'Cor-sub-sml'?: string | undefined;
|
|
2866
|
+
'Cpop-sub-sml'?: string | undefined;
|
|
2867
|
+
'Psc-sub-sml'?: string | undefined;
|
|
2868
|
+
'Typ-sub-sml'?: string | undefined;
|
|
2869
|
+
'Datum-uzavreni-sml'?: string | undefined;
|
|
2870
|
+
'Odbor-sml'?: string | undefined;
|
|
2871
|
+
'Celkova-castka-sml'?: string | undefined;
|
|
2872
|
+
'Mena-sml'?: string | undefined;
|
|
2873
|
+
}, {
|
|
2874
|
+
Nazev: string;
|
|
2875
|
+
'Datum-zmeny': string;
|
|
2876
|
+
'Id-zaznamu': string;
|
|
2877
|
+
Kategorie: string;
|
|
2878
|
+
'Vyveseno-dne': string;
|
|
2879
|
+
Zdroj: string;
|
|
2880
|
+
'Id-fun-navrhl': string;
|
|
2881
|
+
Navrhl: string;
|
|
2882
|
+
'Id-fun-schvalil': string;
|
|
2883
|
+
Schvalil: string;
|
|
2884
|
+
'Pocet-souboru': string;
|
|
2885
|
+
'Pocet-vyveseno': string;
|
|
2886
|
+
'Pocet-archiv': string;
|
|
2887
|
+
'Id-dokumentu'?: string | undefined;
|
|
2888
|
+
Popis?: string | undefined;
|
|
2889
|
+
Stav?: string | undefined;
|
|
2890
|
+
'Sejmuto-dne'?: string | undefined;
|
|
2891
|
+
Cj?: string | undefined;
|
|
2892
|
+
'Puvod-dokumentu'?: string | undefined;
|
|
2893
|
+
'Odesilatel-dokumentu'?: string | undefined;
|
|
2894
|
+
'Typ-dokumentu'?: string | undefined;
|
|
2895
|
+
'El-obraz-podpis'?: string | undefined;
|
|
2896
|
+
'Cj-spisu'?: string | undefined;
|
|
2897
|
+
'Cislo-sml'?: string | undefined;
|
|
2898
|
+
'Typ-sml'?: string | undefined;
|
|
2899
|
+
'Nazev-sml'?: string | undefined;
|
|
2900
|
+
'Subjekt-sml'?: string | undefined;
|
|
2901
|
+
'Nazev-sub-sml'?: string | undefined;
|
|
2902
|
+
'Prijmeni-sub-sml'?: string | undefined;
|
|
2903
|
+
'Jmeno-sub-sml'?: string | undefined;
|
|
2904
|
+
'Ico-sub-sml'?: string | undefined;
|
|
2905
|
+
'Obec-sub-sml'?: string | undefined;
|
|
2906
|
+
'Ulice-sub-sml'?: string | undefined;
|
|
2907
|
+
'Cor-sub-sml'?: string | undefined;
|
|
2908
|
+
'Cpop-sub-sml'?: string | undefined;
|
|
2909
|
+
'Psc-sub-sml'?: string | undefined;
|
|
2910
|
+
'Typ-sub-sml'?: string | undefined;
|
|
2911
|
+
'Datum-uzavreni-sml'?: string | undefined;
|
|
2912
|
+
'Odbor-sml'?: string | undefined;
|
|
2913
|
+
'Celkova-castka-sml'?: string | undefined;
|
|
2914
|
+
'Mena-sml'?: string | undefined;
|
|
2915
|
+
}>;
|
|
2916
|
+
declare const dokumentySchema: z.ZodObject<{
|
|
2917
|
+
'Id-zaznamu': z.ZodOptional<z.ZodString>;
|
|
2918
|
+
'Datum-zmeny': z.ZodOptional<z.ZodString>;
|
|
2919
|
+
}, "strip", z.ZodTypeAny, {
|
|
2920
|
+
'Datum-zmeny'?: string | undefined;
|
|
2921
|
+
'Id-zaznamu'?: string | undefined;
|
|
2922
|
+
}, {
|
|
2923
|
+
'Datum-zmeny'?: string | undefined;
|
|
2924
|
+
'Id-zaznamu'?: string | undefined;
|
|
2925
|
+
}>;
|
|
1741
2926
|
declare const seznamDokumentuResponseSchema: z.ZodObject<{
|
|
1742
2927
|
'Seznam-dokumentu': z.ZodEffects<z.ZodDefault<z.ZodArray<z.ZodObject<{
|
|
1743
2928
|
'Id-zaznamu': z.ZodString;
|
|
@@ -2039,16 +3224,43 @@ declare const seznamDokumentuResponseSchema: z.ZodObject<{
|
|
|
2039
3224
|
'Sejmute-dokumenty'?: unknown;
|
|
2040
3225
|
'Zrusene-dokumenty'?: unknown;
|
|
2041
3226
|
}>;
|
|
2042
|
-
type
|
|
2043
|
-
|
|
3227
|
+
type UdeSeznamDokumentuSeznamDokumentuItem = z.infer<typeof seznamDokumentuSchema>;
|
|
3228
|
+
type UdeSeznamDokumentuSejmuteDokumentyItem = z.infer<typeof dokumentySchema>;
|
|
3229
|
+
type UdeSeznamDokumentuZruseneDokumentyItem = UdeSeznamDokumentuSejmuteDokumentyItem;
|
|
3230
|
+
type UdeSeznamDokumentuResponse = z.infer<typeof seznamDokumentuResponseSchema>;
|
|
3231
|
+
declare function seznamDokumentu(this: Ginis, bodyObj: UdeSeznamDokumentuRequest): Promise<UdeSeznamDokumentuResponse>;
|
|
2044
3232
|
|
|
2045
3233
|
declare const seznamKategoriiRequestProperties: readonly ["Id-uredni-desky"];
|
|
2046
3234
|
/**
|
|
2047
3235
|
* 'Id-uredni-desky' - Identifikátor úřední desky. Pokud je v GINIS naadministrována jen jedna deska, nemusí být uvedeno.
|
|
2048
3236
|
*/
|
|
2049
|
-
type
|
|
3237
|
+
type UdeSeznamKategoriiRequest = {
|
|
2050
3238
|
[K in (typeof seznamKategoriiRequestProperties)[number] as K]?: string;
|
|
2051
3239
|
};
|
|
3240
|
+
declare const seznamKategoriiSchema: z.ZodObject<{
|
|
3241
|
+
'Id-kategorie': z.ZodString;
|
|
3242
|
+
Nazev: z.ZodOptional<z.ZodString>;
|
|
3243
|
+
/**
|
|
3244
|
+
* Počet vyvěšených dokumentů/záznamů v této kategorii.
|
|
3245
|
+
* int
|
|
3246
|
+
*/
|
|
3247
|
+
'Pocet-vyveseno': z.ZodString;
|
|
3248
|
+
/**
|
|
3249
|
+
* Počet dokumentů/záznamů v archivu (sejmutých) této kategorie.
|
|
3250
|
+
* int
|
|
3251
|
+
*/
|
|
3252
|
+
'Pocet-archiv': z.ZodString;
|
|
3253
|
+
}, "strip", z.ZodTypeAny, {
|
|
3254
|
+
'Id-kategorie': string;
|
|
3255
|
+
'Pocet-vyveseno': string;
|
|
3256
|
+
'Pocet-archiv': string;
|
|
3257
|
+
Nazev?: string | undefined;
|
|
3258
|
+
}, {
|
|
3259
|
+
'Id-kategorie': string;
|
|
3260
|
+
'Pocet-vyveseno': string;
|
|
3261
|
+
'Pocet-archiv': string;
|
|
3262
|
+
Nazev?: string | undefined;
|
|
3263
|
+
}>;
|
|
2052
3264
|
declare const seznamKategoriiResponseSchema: z.ZodObject<{
|
|
2053
3265
|
/**
|
|
2054
3266
|
* Seznam-kategorii - vyžadován: Ne , max. výskyt: neomezeně
|
|
@@ -2092,8 +3304,9 @@ declare const seznamKategoriiResponseSchema: z.ZodObject<{
|
|
|
2092
3304
|
}, {
|
|
2093
3305
|
'Seznam-kategorii'?: unknown;
|
|
2094
3306
|
}>;
|
|
2095
|
-
type
|
|
2096
|
-
|
|
3307
|
+
type UdeSeznamKategoriiSeznamKategoriiItem = z.infer<typeof seznamKategoriiSchema>;
|
|
3308
|
+
type UdeSeznamKategoriiResponse = z.infer<typeof seznamKategoriiResponseSchema>;
|
|
3309
|
+
declare function seznamKategorii(this: Ginis, bodyObj: UdeSeznamKategoriiRequest): Promise<UdeSeznamKategoriiResponse>;
|
|
2097
3310
|
|
|
2098
3311
|
declare const _default: {
|
|
2099
3312
|
detailDokumentu: typeof detailDokumentu;
|
|
@@ -2156,4 +3369,4 @@ declare class GinisError extends Error {
|
|
|
2156
3369
|
constructor(message: string, axiosError?: AxiosError);
|
|
2157
3370
|
}
|
|
2158
3371
|
|
|
2159
|
-
export { Ginis, type GinisConfig, GinisError };
|
|
3372
|
+
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 SslPridatSouborPridatSoubor, type SslPridatSouborRequest, type SslPridatSouborResponse, 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 };
|