abra-flexi 0.7.0 → 0.8.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.mts CHANGED
@@ -48,6 +48,7 @@ declare const Filter: (expr?: string, params?: Params) => AFFilter;
48
48
  declare const ID: (id: number) => AFID;
49
49
  declare const CODE: (code: string) => AFCODE;
50
50
  declare const EXT: (ext: string) => AFEXT;
51
+ type AFSingleEntityID = AFID | AFCODE | AFEXT;
51
52
  //#endregion
52
53
  //#region src/abra/AFTypes.d.ts
53
54
  declare enum PropertyType {
@@ -105,7 +106,14 @@ declare enum NestedUnknownStrategy {
105
106
  Strict = "strict",
106
107
  }
107
108
  type AFApiFetch = (input: RequestInfo | URL, init?: RequestInit | undefined) => Promise<Response>;
108
- type AFResponseFormat = 'json' | 'xml' | 'pdf' | 'html' | 'csv' | 'isdoc' | (string & {});
109
+ declare enum AFResponseFormat {
110
+ Json = "json",
111
+ Xml = "xml",
112
+ Pdf = "pdf",
113
+ Html = "html",
114
+ Csv = "csv",
115
+ Isdoc = "isdoc",
116
+ }
109
117
  type AFFileResult = {
110
118
  blob: Blob;
111
119
  contentType: string;
@@ -169,8 +177,31 @@ type AFQueryOptions = {
169
177
  abortController?: AbortController;
170
178
  };
171
179
  type AFQueryFileOptions = AFQueryOptions & {
172
- reportName?: string;
173
- reportLang?: string;
180
+ reportName?: string | AFReportInfo;
181
+ reportLang?: string | AFReportLanguage;
182
+ };
183
+ type AFReportLanguage = {
184
+ code: string;
185
+ name: string;
186
+ };
187
+ type AFReportInfo = {
188
+ reportId: string;
189
+ reportName: string;
190
+ reportDescription?: string;
191
+ reportCode?: string;
192
+ sumKod?: string;
193
+ isDefault?: string;
194
+ rozsiritelna?: string;
195
+ sumovana?: string;
196
+ predvybranyPocet?: string;
197
+ autotiskReport?: string;
198
+ statCodes?: string;
199
+ languages?: {
200
+ language: AFReportLanguage[];
201
+ };
202
+ };
203
+ type AFQueryReportsOptions = {
204
+ abortController?: AbortController;
174
205
  };
175
206
  type AFURelOptions = {
176
207
  detail?: AFNestedDetail | AFQueryDetail;
@@ -332,7 +363,6 @@ declare class AFStitek extends AFEntity {
332
363
  vsbPhl?: boolean | null;
333
364
  vsbFap?: boolean | null;
334
365
  vsbZav?: boolean | null;
335
- vsbTxp?: boolean | null;
336
366
  vsbTxz?: boolean | null;
337
367
  vsbBan?: boolean | null;
338
368
  vsbPok?: boolean | null;
@@ -371,6 +401,7 @@ declare class AFEntity {
371
401
  static EntityPath: string;
372
402
  static EntityName: string;
373
403
  static EntityType: string;
404
+ static Actions: Record<string, string>;
374
405
  static propAnnotations: Record<string, TypeAnnotation>;
375
406
  private _stitkyCache;
376
407
  private _id?;
@@ -431,6 +462,7 @@ declare class AFApiClient {
431
462
  queryRaw(entityPath: string, options?: AFQueryOptions): Promise<any>;
432
463
  queryFileRaw(entityPath: string, format: AFResponseFormat, options?: AFQueryFileOptions): Promise<AFFileResult>;
433
464
  queryFile<T extends typeof AFEntity>(entity: T, format: AFResponseFormat, options?: AFQueryFileOptions): Promise<AFFileResult>;
465
+ queryReports<T extends typeof AFEntity>(entity: T, options?: AFQueryReportsOptions): Promise<AFReportInfo[]>;
434
466
  query<T extends typeof AFEntity>(entity: T, options?: AFQueryOptions): Promise<AFQueryResult<InstanceType<T>>>;
435
467
  queryOne<T extends typeof AFEntity>(entity: T, options: AFQueryOptions): Promise<InstanceType<T>>;
436
468
  queryURels<T extends typeof AFEntity = typeof AFEntity>(relatedEntity: T, forObjects: AFURelMinimal | AFURelMinimal[], options?: AFURelOptions): Promise<AFURelResult<InstanceType<T>>[]>;
@@ -449,13 +481,14 @@ declare class AFApiClient {
449
481
  /**
450
482
  * Resolves an entity by a validated identifier string or numeric id.
451
483
  * Accepted identifier forms:
452
- * - number → looks up by internal id
453
- * - "code:X" → looks up by business code
454
- * - "ext:X" → looks up by external id
484
+ * - number → looks up by internal id
485
+ * - "code:X" → looks up by business code
486
+ * - "ext:X" → looks up by external id
487
+ * - AFSingleEntityID → an ID()/CODE()/EXT() value (AFID/AFCODE/AFEXT)
455
488
  * Throws INVALID_IDENTIFIER for any other string.
456
489
  * Throws OBJECT_NOT_FOUND if the server returns 404.
457
490
  */
458
- resolveStubId<T extends typeof AFEntity>(entity: T, identifier: number | string): Promise<InstanceType<T>>;
491
+ resolveStubId<T extends typeof AFEntity>(entity: T, identifier: number | string | AFSingleEntityID): Promise<InstanceType<T>>;
459
492
  /**
460
493
  * Resolves an entity in-place — determines and sets its server id.
461
494
  * Fast-path: if the entity already has a confirmed id, returns immediately.
@@ -473,8 +506,8 @@ declare class AFApiClient {
473
506
  save<T extends typeof AFEntity = typeof AFEntity>(entity: InstanceType<T>, options?: AFSaveOptions): Promise<InstanceType<T>>;
474
507
  deleteRaw(entityPath: string, id: string | number | undefined | null, options?: AFDeleteOptions): Promise<any>;
475
508
  delete<T extends typeof AFEntity = typeof AFEntity>(entity: InstanceType<T>, options?: AFDeleteOptions): Promise<boolean>;
476
- callEntityActionRaw(entityPath: string, id: string | number, actionName: string, options?: AFActionOptions): Promise<boolean>;
477
- callEntityAction<T extends typeof AFEntity = typeof AFEntity>(entity: InstanceType<T>, actionName: string, options?: AFActionOptions): Promise<boolean>;
509
+ actionRaw(entityPath: string, id: string | number, actionName: string, options?: AFActionOptions): Promise<boolean>;
510
+ action<T extends typeof AFEntity = typeof AFEntity>(entity: InstanceType<T>, actionName: string, options?: AFActionOptions): Promise<boolean>;
478
511
  private _applySaveResultToEntity;
479
512
  private _extractAbraErrors;
480
513
  private _decodeEntityObj;
@@ -486,6 +519,21 @@ declare class AFApiClient {
486
519
  * Priority: _stub.kod > entity.kod > _stub.ext
487
520
  */
488
521
  private _getEntityIdentifierString;
522
+ /**
523
+ * Encodes a single related AFEntity for inclusion in a save request body.
524
+ * Centralizes tri-state (`isNew` true/false/undefined) handling and the
525
+ * NestedUnknownStrategy so both the to-1 relation branch and per-item
526
+ * array encoding share one implementation.
527
+ *
528
+ * Returns either a primitive (numeric id, "code:..." / "ext:..." string)
529
+ * or an object `{ id?, ...changedFields }`.
530
+ *
531
+ * `inCollection` controls one divergence: collection items always emit an
532
+ * object form for existing entities (so Flexi matches by id under
533
+ * `@removeAll: true`), while to-1 relations can collapse to a bare id
534
+ * reference when the nested entity has no field changes.
535
+ */
536
+ private _encodeRelatedEntity;
489
537
  private _encodeProperty;
490
538
  }
491
539
  //#endregion
@@ -574,7 +622,7 @@ declare class AFKurz extends AFEntity {
574
622
  static EntityType: string;
575
623
  lastUpdate?: Date | null;
576
624
  platiOdData?: Date | null;
577
- nbStred?: Big | null;
625
+ kurz?: Big | null;
578
626
  kurzMnozstvi?: Big | null;
579
627
  mena?: AFMena | null;
580
628
  'uzivatelske-vazby'?: AFUzivatelskaVazba[];
@@ -909,6 +957,34 @@ declare enum TypPrav {
909
957
  jenCist = "typPrav.jenCist",
910
958
  zablokovan = "typPrav.zablokovan",
911
959
  }
960
+ declare enum TypPristPrav {
961
+ plny = "typPristPrav.plny",
962
+ nepripustne = "typPristPrav.nepripustne",
963
+ pouzeCist = "typPristPrav.pouzeCist",
964
+ upresneni = "typPristPrav.upresneni",
965
+ }
966
+ declare enum PristupovePravoFeatureK {
967
+ pridavat = "Pridavat",
968
+ menit = "Menit",
969
+ mazat = "Mazat",
970
+ export = "Export",
971
+ import = "Import",
972
+ oteviratDetail = "OteviratDetail",
973
+ sloupce = "Sloupce",
974
+ kusovnik = "Kusovnik",
975
+ storno = "Storno",
976
+ slevaZmenaCeny = "SlevaZmenaCeny",
977
+ sumace = "Sumace",
978
+ sluzby = "Sluzby",
979
+ vazby = "Vazby",
980
+ hromZmeny = "HromZmeny",
981
+ nakupCena = "NakupCena",
982
+ menitZauctovani = "MenitZauctovani",
983
+ menitTuo = "MenitTuo",
984
+ generovatZeSmluv = "GenerovatZeSmluv",
985
+ podepsatFaktury = "PodepsatFaktury",
986
+ prodejPodMinMarzi = "ProdejPodMinMarzi",
987
+ }
912
988
  declare enum TypUcJednotky {
913
989
  mikro = "typUcJednotky.mikro",
914
990
  mala = "typUcJednotky.mala",
@@ -973,6 +1049,20 @@ declare enum ZobrazWebKompMod {
973
1049
  auto = "zobrazWebKompMod.auto",
974
1050
  browser = "zobrazWebKompMod.browser",
975
1051
  }
1052
+ declare enum MzdKolSmlouva {
1053
+ _0 = "mzdKolSmlouva.0",
1054
+ _1 = "mzdKolSmlouva.1",
1055
+ _2 = "mzdKolSmlouva.2",
1056
+ _3 = "mzdKolSmlouva.3",
1057
+ _4 = "mzdKolSmlouva.4",
1058
+ _5 = "mzdKolSmlouva.5",
1059
+ }
1060
+ declare enum MzdFormaKontroly {
1061
+ _1 = "mzdFormaKontroly.1",
1062
+ _2 = "mzdFormaKontroly.2",
1063
+ _3 = "mzdFormaKontroly.3",
1064
+ _4 = "mzdFormaKontroly.4",
1065
+ }
976
1066
  declare enum PredvybranyPocet {
977
1067
  aktualni = "predvybranyPocet.aktualni",
978
1068
  vsechny = "predvybranyPocet.vsechny",
@@ -1381,6 +1471,92 @@ declare enum ZpusobPlatby {
1381
1471
  adresa = "zpusobPlatby.adresa",
1382
1472
  pokladna = "zpusobPlatby.pokladna",
1383
1473
  }
1474
+ declare enum MzdTypDanIdentifOsoba {
1475
+ D = "mzdTypDanIdentifOsoba.D",
1476
+ R = "mzdTypDanIdentifOsoba.R",
1477
+ S = "mzdTypDanIdentifOsoba.S",
1478
+ J = "mzdTypDanIdentifOsoba.J",
1479
+ }
1480
+ declare enum MzdTypDokladuCiz {
1481
+ I = "mzdTypDokladuCiz.I",
1482
+ P = "mzdTypDokladuCiz.P",
1483
+ O = "mzdTypDokladuCiz.O",
1484
+ }
1485
+ declare enum MzdTypZdravOmezeni {
1486
+ _1 = "mzdTypZdravOmezeni.1",
1487
+ _2 = "mzdTypZdravOmezeni.2",
1488
+ _3 = "mzdTypZdravOmezeni.3",
1489
+ _4 = "mzdTypZdravOmezeni.4",
1490
+ _5 = "mzdTypZdravOmezeni.5",
1491
+ }
1492
+ declare enum MzdKatDosazVzdelani {
1493
+ A = "mzdKatDosazVzdelani.A",
1494
+ B = "mzdKatDosazVzdelani.B",
1495
+ C = "mzdKatDosazVzdelani.C",
1496
+ D = "mzdKatDosazVzdelani.D",
1497
+ E = "mzdKatDosazVzdelani.E",
1498
+ H = "mzdKatDosazVzdelani.H",
1499
+ J = "mzdKatDosazVzdelani.J",
1500
+ K = "mzdKatDosazVzdelani.K",
1501
+ L = "mzdKatDosazVzdelani.L",
1502
+ M = "mzdKatDosazVzdelani.M",
1503
+ N = "mzdKatDosazVzdelani.N",
1504
+ P = "mzdKatDosazVzdelani.P",
1505
+ R = "mzdKatDosazVzdelani.R",
1506
+ T = "mzdKatDosazVzdelani.T",
1507
+ V = "mzdKatDosazVzdelani.V",
1508
+ Z = "mzdKatDosazVzdelani.Z",
1509
+ }
1510
+ declare enum MzdCizNositelPojisteni {
1511
+ P = "mzdCizNositelPojisteni.P",
1512
+ S = "mzdCizNositelPojisteni.S",
1513
+ N = "mzdCizNositelPojisteni.N",
1514
+ }
1515
+ declare enum MzdCizVolnyTrhPrace {
1516
+ _1 = "mzdCizVolnyTrhPrace.1",
1517
+ _2 = "mzdCizVolnyTrhPrace.2",
1518
+ _3 = "mzdCizVolnyTrhPrace.3",
1519
+ _4 = "mzdCizVolnyTrhPrace.4",
1520
+ _5 = "mzdCizVolnyTrhPrace.5",
1521
+ _6 = "mzdCizVolnyTrhPrace.6",
1522
+ _7 = "mzdCizVolnyTrhPrace.7",
1523
+ _8 = "mzdCizVolnyTrhPrace.8",
1524
+ _9 = "mzdCizVolnyTrhPrace.9",
1525
+ _10 = "mzdCizVolnyTrhPrace.10",
1526
+ _11 = "mzdCizVolnyTrhPrace.11",
1527
+ _12 = "mzdCizVolnyTrhPrace.12",
1528
+ _13 = "mzdCizVolnyTrhPrace.13",
1529
+ _14 = "mzdCizVolnyTrhPrace.14",
1530
+ _15 = "mzdCizVolnyTrhPrace.15",
1531
+ _16 = "mzdCizVolnyTrhPrace.16",
1532
+ _17 = "mzdCizVolnyTrhPrace.17",
1533
+ _18 = "mzdCizVolnyTrhPrace.18",
1534
+ _19 = "mzdCizVolnyTrhPrace.19",
1535
+ _20 = "mzdCizVolnyTrhPrace.20",
1536
+ _21 = "mzdCizVolnyTrhPrace.21",
1537
+ }
1538
+ declare enum MzdCizDruhPracOpravneni {
1539
+ _1 = "mzdCizDruhPracOpravneni.1",
1540
+ _2 = "mzdCizDruhPracOpravneni.2",
1541
+ _3 = "mzdCizDruhPracOpravneni.3",
1542
+ _4 = "mzdCizDruhPracOpravneni.4",
1543
+ }
1544
+ declare enum MzdPobockaUP {
1545
+ HMP = "mzdPobockaUP.HMP",
1546
+ JMK = "mzdPobockaUP.JMK",
1547
+ JCK = "mzdPobockaUP.JCK",
1548
+ HKK = "mzdPobockaUP.HKK",
1549
+ VYK = "mzdPobockaUP.VYK",
1550
+ KVK = "mzdPobockaUP.KVK",
1551
+ LBK = "mzdPobockaUP.LBK",
1552
+ OLK = "mzdPobockaUP.OLK",
1553
+ MSK = "mzdPobockaUP.MSK",
1554
+ PAK = "mzdPobockaUP.PAK",
1555
+ PMK = "mzdPobockaUP.PMK",
1556
+ SCK = "mzdPobockaUP.SCK",
1557
+ ULK = "mzdPobockaUP.ULK",
1558
+ ZLK = "mzdPobockaUP.ZLK",
1559
+ }
1384
1560
  declare enum CsszDuvodOsetrovne {
1385
1561
  onemocnela = "csszDuvodOsetrovne.onemocnela",
1386
1562
  narizenaKaran = "csszDuvodOsetrovne.narizenaKaran",
@@ -1483,6 +1659,34 @@ declare enum CsszDuvodNeposkytnuti {
1483
1659
  _02 = "csszDuvodNeposkytnuti.02",
1484
1660
  _03 = "csszDuvodNeposkytnuti.03",
1485
1661
  }
1662
+ declare enum MzdDuvodPredcasKonceZam {
1663
+ _1 = "mzdDuvodPredcasKonceZam.1",
1664
+ _2 = "mzdDuvodPredcasKonceZam.2",
1665
+ _3 = "mzdDuvodPredcasKonceZam.3",
1666
+ }
1667
+ declare enum MzdPracRezim {
1668
+ _1 = "mzdPracRezim.1",
1669
+ _2 = "mzdPracRezim.2",
1670
+ _3 = "mzdPracRezim.3",
1671
+ _4 = "mzdPracRezim.4",
1672
+ }
1673
+ declare enum MzdPrubehPrace {
1674
+ _1 = "mzdPrubehPrace.1",
1675
+ _2 = "mzdPrubehPrace.2",
1676
+ _3 = "mzdPrubehPrace.3",
1677
+ _4 = "mzdPrubehPrace.4",
1678
+ }
1679
+ declare enum MzdNastrojAPZ {
1680
+ _1 = "mzdNastrojAPZ.1",
1681
+ _2 = "mzdNastrojAPZ.2",
1682
+ _3 = "mzdNastrojAPZ.3",
1683
+ _4 = "mzdNastrojAPZ.4",
1684
+ }
1685
+ declare enum MzdyBlizsiUrceniPPV {
1686
+ _1 = "mzdyBlizsiUrceniPPV.1",
1687
+ _2 = "mzdyBlizsiUrceniPPV.2",
1688
+ _3 = "mzdyBlizsiUrceniPPV.3",
1689
+ }
1486
1690
  declare enum VyznamSlozky {
1487
1691
  dobaFond = "vyznamSlozky.dobaFond",
1488
1692
  dobaNeodpr = "vyznamSlozky.dobaNeodpr",
@@ -1577,6 +1781,17 @@ declare enum DashboardPanelVisibility {
1577
1781
  shared = "dashboardPanelVisibility.shared",
1578
1782
  shared_all = "dashboardPanelVisibility.shared-all",
1579
1783
  }
1784
+ declare enum StatusDoplnku {
1785
+ aktivni = "statusDoplnku.aktivni",
1786
+ neaktivni = "statusDoplnku.neaktivni",
1787
+ nefunkcni = "statusDoplnku.nefunkcni",
1788
+ cekajici = "statusDoplnku.cekajici",
1789
+ pozastaveny = "statusDoplnku.pozastaveny",
1790
+ }
1791
+ declare enum StatusIntegrace {
1792
+ aktivni = "statusIntegrace.aktivni",
1793
+ cekajici = "statusIntegrace.cekajici",
1794
+ }
1580
1795
  declare enum TypSestavy {
1581
1796
  rozvaha = "typSestavy.rozvaha",
1582
1797
  vysledov = "typSestavy.vysledov",
@@ -1814,6 +2029,19 @@ declare class AFStredisko extends AFEntity {
1814
2029
  static propAnnotations: Record<string, TypeAnnotation>;
1815
2030
  }
1816
2031
  //#endregion
2032
+ //#region src/generated/entities/AFPristupovePravo.d.ts
2033
+ declare class AFPristupovePravo extends AFEntity {
2034
+ static EntityPath: string;
2035
+ static EntityName: string;
2036
+ static EntityType: string;
2037
+ lastUpdate?: Date | null;
2038
+ typeK?: TypPristPrav | null;
2039
+ groupKey?: string | null;
2040
+ role?: AFRole | null;
2041
+ featureK?: PristupovePravoFeatureK[] | null;
2042
+ static propAnnotations: Record<string, TypeAnnotation>;
2043
+ }
2044
+ //#endregion
1817
2045
  //#region src/generated/entities/AFRole.d.ts
1818
2046
  declare class AFRole extends AFEntity {
1819
2047
  static EntityPath: string;
@@ -1830,8 +2058,11 @@ declare class AFRole extends AFEntity {
1830
2058
  visible?: boolean | null;
1831
2059
  standard?: boolean | null;
1832
2060
  pristupK?: TypPrav | null;
2061
+ otecRole?: AFRole | null;
1833
2062
  'uzivatelske-vazby'?: AFUzivatelskaVazba[];
1834
2063
  get uzivatelskeVazby(): AFUzivatelskaVazba[] | undefined;
2064
+ 'pristupova-prava'?: AFPristupovePravo[];
2065
+ get pristupovaPrava(): AFPristupovePravo[] | undefined;
1835
2066
  static propAnnotations: Record<string, TypeAnnotation>;
1836
2067
  }
1837
2068
  //#endregion
@@ -2571,10 +2802,14 @@ declare class AFVyrobniCislo extends AFEntity {
2571
2802
  }
2572
2803
  //#endregion
2573
2804
  //#region src/generated/entities/AFSkladovyPohybPolozka.d.ts
2805
+ declare enum AFSkladovyPohybPolozkaAction {
2806
+ Storno = "storno",
2807
+ }
2574
2808
  declare class AFSkladovyPohybPolozka extends AFEntity {
2575
2809
  static EntityPath: string;
2576
2810
  static EntityName: string;
2577
2811
  static EntityType: string;
2812
+ static Actions: typeof AFSkladovyPohybPolozkaAction;
2578
2813
  lastUpdate?: Date | null;
2579
2814
  updatedBy?: AFUzivatel | null;
2580
2815
  createdBy?: AFUzivatel | null;
@@ -2724,6 +2959,8 @@ declare class AFSadyAKomplety extends AFEntity {
2724
2959
  lastUpdate?: Date | null;
2725
2960
  mnozMj?: Big | null;
2726
2961
  poznam?: string | null;
2962
+ baleniId?: number | null;
2963
+ mnozBaleni?: Big | null;
2727
2964
  cenikSada?: AFCenik | null;
2728
2965
  cenik?: AFCenik | null;
2729
2966
  'uzivatelske-vazby'?: AFUzivatelskaVazba[];
@@ -2991,6 +3228,7 @@ declare class AFCenik extends AFEntity {
2991
3228
  techParam?: string | null;
2992
3229
  dodaciLhuta?: Big | null;
2993
3230
  prodejKasa?: boolean | null;
3231
+ kodGenerated?: boolean | null;
2994
3232
  createdDate?: Date | null;
2995
3233
  skupZboz?: AFSkupinaZbozi | null;
2996
3234
  mj1?: AFMernaJednotka | null;
@@ -3308,10 +3546,15 @@ declare class AFVazba extends AFEntity {
3308
3546
  }
3309
3547
  //#endregion
3310
3548
  //#region src/generated/entities/AFSkladovyPohyb.d.ts
3549
+ declare enum AFSkladovyPohybAction {
3550
+ Storno = "storno",
3551
+ DokoncitPrevodku = "dokoncit-prevodku",
3552
+ }
3311
3553
  declare class AFSkladovyPohyb extends AFEntity {
3312
3554
  static EntityPath: string;
3313
3555
  static EntityName: string;
3314
3556
  static EntityType: string;
3557
+ static Actions: typeof AFSkladovyPohybAction;
3315
3558
  lastUpdate?: Date | null;
3316
3559
  updatedBy?: AFUzivatel | null;
3317
3560
  createdBy?: AFUzivatel | null;
@@ -4538,6 +4781,29 @@ declare class AFTypBanka extends AFEntity {
4538
4781
  static propAnnotations: Record<string, TypeAnnotation>;
4539
4782
  }
4540
4783
  //#endregion
4784
+ //#region src/generated/entities/AFDefiniceSekvence.d.ts
4785
+ declare class AFDefiniceSekvence extends AFEntity {
4786
+ static EntityPath: string;
4787
+ static EntityName: string;
4788
+ static EntityType: string;
4789
+ lastUpdate?: Date | null;
4790
+ kod?: string | null;
4791
+ nazev?: string | null;
4792
+ nazevA?: string | null;
4793
+ nazevB?: string | null;
4794
+ nazevC?: string | null;
4795
+ poznam?: string | null;
4796
+ popis?: string | null;
4797
+ nextValue?: string | null;
4798
+ uuid?: string | null;
4799
+ createdDate?: Date | null;
4800
+ updatedBy?: AFUzivatel | null;
4801
+ createdBy?: AFUzivatel | null;
4802
+ 'uzivatelske-vazby'?: AFUzivatelskaVazba[];
4803
+ get uzivatelskeVazby(): AFUzivatelskaVazba[] | undefined;
4804
+ static propAnnotations: Record<string, TypeAnnotation>;
4805
+ }
4806
+ //#endregion
4541
4807
  //#region src/generated/entities/AFAdresarBankovniUcet.d.ts
4542
4808
  declare class AFAdresarBankovniUcet extends AFEntity {
4543
4809
  static EntityPath: string;
@@ -4679,6 +4945,7 @@ declare class AFNastaveni extends AFEntity {
4679
4945
  mzdSplatDobirka?: number | null;
4680
4946
  mzdSplatPrispevky?: number | null;
4681
4947
  mzdTydenPracDobaK?: TydenPracDoba | null;
4948
+ mzdFondSta?: Big | null;
4682
4949
  denniKurzK?: DenniKurz | null;
4683
4950
  rocniKurzK?: RocniKurz | null;
4684
4951
  jakyTypFavK?: JakyTypDokl | null;
@@ -4713,6 +4980,9 @@ declare class AFNastaveni extends AFEntity {
4713
4980
  zpracovaniGdpr?: boolean | null;
4714
4981
  polozkyCenikObrazky?: boolean | null;
4715
4982
  datZacNovelyZdph19?: Date | null;
4983
+ mzdTypKolSmlouvaK?: MzdKolSmlouva | null;
4984
+ mzdFormaKontrolyK?: MzdFormaKontroly | null;
4985
+ mzdChranTrhPrace?: boolean | null;
4716
4986
  statLegislativa?: AFStat | null;
4717
4987
  typOrganizace?: AFTypOrganizace | null;
4718
4988
  mena?: AFMena | null;
@@ -4754,6 +5024,7 @@ declare class AFNastaveni extends AFEntity {
4754
5024
  fuUzemPrac?: AFAdresar | null;
4755
5025
  tdBanPrijem?: AFTypBanka | null;
4756
5026
  tdBanVydej?: AFTypBanka | null;
5027
+ seqDefProduct?: AFDefiniceSekvence | null;
4757
5028
  mzdAdrSocPoj?: AFAdresar | null;
4758
5029
  mzdAdrDan?: AFAdresar | null;
4759
5030
  mzdBanDanZal?: AFAdresarBankovniUcet | null;
@@ -4935,10 +5206,14 @@ declare class AFSmlouvaPolozka extends AFEntity {
4935
5206
  }
4936
5207
  //#endregion
4937
5208
  //#region src/generated/entities/AFSmlouva.d.ts
5209
+ declare enum AFSmlouvaAction {
5210
+ GenerovaniFaktur = "generovani-faktur",
5211
+ }
4938
5212
  declare class AFSmlouva extends AFEntity {
4939
5213
  static EntityPath: string;
4940
5214
  static EntityName: string;
4941
5215
  static EntityType: string;
5216
+ static Actions: typeof AFSmlouvaAction;
4942
5217
  lastUpdate?: Date | null;
4943
5218
  kod?: string | null;
4944
5219
  nazev?: string | null;
@@ -5306,10 +5581,14 @@ declare class AFDodavatelskyTypSmlouvy extends AFEntity {
5306
5581
  }
5307
5582
  //#endregion
5308
5583
  //#region src/generated/entities/AFDodavatelskaSmlouva.d.ts
5584
+ declare enum AFDodavatelskaSmlouvaAction {
5585
+ GenerovaniFaktur = "generovani-faktur",
5586
+ }
5309
5587
  declare class AFDodavatelskaSmlouva extends AFEntity {
5310
5588
  static EntityPath: string;
5311
5589
  static EntityName: string;
5312
5590
  static EntityType: string;
5591
+ static Actions: typeof AFDodavatelskaSmlouvaAction;
5313
5592
  lastUpdate?: Date | null;
5314
5593
  kod?: string | null;
5315
5594
  nazev?: string | null;
@@ -5391,10 +5670,14 @@ declare class AFSkupinaPlneni extends AFEntity {
5391
5670
  }
5392
5671
  //#endregion
5393
5672
  //#region src/generated/entities/AFFakturaPrijataPolozka.d.ts
5673
+ declare enum AFFakturaPrijataPolozkaAction {
5674
+ Storno = "storno",
5675
+ }
5394
5676
  declare class AFFakturaPrijataPolozka extends AFEntity {
5395
5677
  static EntityPath: string;
5396
5678
  static EntityName: string;
5397
5679
  static EntityType: string;
5680
+ static Actions: typeof AFFakturaPrijataPolozkaAction;
5398
5681
  lastUpdate?: Date | null;
5399
5682
  updatedBy?: AFUzivatel | null;
5400
5683
  createdBy?: AFUzivatel | null;
@@ -5564,10 +5847,15 @@ declare class AFCastkyKOdpoctu extends AFEntity {
5564
5847
  }
5565
5848
  //#endregion
5566
5849
  //#region src/generated/entities/AFFakturaPrijata.d.ts
5850
+ declare enum AFFakturaPrijataAction {
5851
+ Storno = "storno",
5852
+ UhradZapoctem = "uhrad-zapoctem",
5853
+ }
5567
5854
  declare class AFFakturaPrijata extends AFEntity {
5568
5855
  static EntityPath: string;
5569
5856
  static EntityName: string;
5570
5857
  static EntityType: string;
5858
+ static Actions: typeof AFFakturaPrijataAction;
5571
5859
  lastUpdate?: Date | null;
5572
5860
  updatedBy?: AFUzivatel | null;
5573
5861
  createdBy?: AFUzivatel | null;
@@ -6431,10 +6719,14 @@ declare class AFStavObchodnihoDokladu extends AFEntity {
6431
6719
  }
6432
6720
  //#endregion
6433
6721
  //#region src/generated/entities/AFObjednavkaPrijataPolozka.d.ts
6722
+ declare enum AFObjednavkaPrijataPolozkaAction {
6723
+ Storno = "storno",
6724
+ }
6434
6725
  declare class AFObjednavkaPrijataPolozka extends AFEntity {
6435
6726
  static EntityPath: string;
6436
6727
  static EntityName: string;
6437
6728
  static EntityType: string;
6729
+ static Actions: typeof AFObjednavkaPrijataPolozkaAction;
6438
6730
  lastUpdate?: Date | null;
6439
6731
  updatedBy?: AFUzivatel | null;
6440
6732
  createdBy?: AFUzivatel | null;
@@ -6517,10 +6809,14 @@ declare class AFObjednavkaPrijataPolozka extends AFEntity {
6517
6809
  }
6518
6810
  //#endregion
6519
6811
  //#region src/generated/entities/AFObjednavkaPrijata.d.ts
6812
+ declare enum AFObjednavkaPrijataAction {
6813
+ Storno = "storno",
6814
+ }
6520
6815
  declare class AFObjednavkaPrijata extends AFEntity {
6521
6816
  static EntityPath: string;
6522
6817
  static EntityName: string;
6523
6818
  static EntityType: string;
6819
+ static Actions: typeof AFObjednavkaPrijataAction;
6524
6820
  lastUpdate?: Date | null;
6525
6821
  updatedBy?: AFUzivatel | null;
6526
6822
  createdBy?: AFUzivatel | null;
@@ -6649,10 +6945,14 @@ declare class AFObjednavkaPrijata extends AFEntity {
6649
6945
  }
6650
6946
  //#endregion
6651
6947
  //#region src/generated/entities/AFObjednavkaVydanaPolozka.d.ts
6948
+ declare enum AFObjednavkaVydanaPolozkaAction {
6949
+ Storno = "storno",
6950
+ }
6652
6951
  declare class AFObjednavkaVydanaPolozka extends AFEntity {
6653
6952
  static EntityPath: string;
6654
6953
  static EntityName: string;
6655
6954
  static EntityType: string;
6955
+ static Actions: typeof AFObjednavkaVydanaPolozkaAction;
6656
6956
  lastUpdate?: Date | null;
6657
6957
  updatedBy?: AFUzivatel | null;
6658
6958
  createdBy?: AFUzivatel | null;
@@ -6719,10 +7019,14 @@ declare class AFObjednavkaVydanaPolozka extends AFEntity {
6719
7019
  }
6720
7020
  //#endregion
6721
7021
  //#region src/generated/entities/AFObjednavkaVydana.d.ts
7022
+ declare enum AFObjednavkaVydanaAction {
7023
+ Storno = "storno",
7024
+ }
6722
7025
  declare class AFObjednavkaVydana extends AFEntity {
6723
7026
  static EntityPath: string;
6724
7027
  static EntityName: string;
6725
7028
  static EntityType: string;
7029
+ static Actions: typeof AFObjednavkaVydanaAction;
6726
7030
  lastUpdate?: Date | null;
6727
7031
  updatedBy?: AFUzivatel | null;
6728
7032
  createdBy?: AFUzivatel | null;
@@ -6831,10 +7135,14 @@ declare class AFObjednavkaVydana extends AFEntity {
6831
7135
  }
6832
7136
  //#endregion
6833
7137
  //#region src/generated/entities/AFPoptavkaVydanaPolozka.d.ts
7138
+ declare enum AFPoptavkaVydanaPolozkaAction {
7139
+ Storno = "storno",
7140
+ }
6834
7141
  declare class AFPoptavkaVydanaPolozka extends AFEntity {
6835
7142
  static EntityPath: string;
6836
7143
  static EntityName: string;
6837
7144
  static EntityType: string;
7145
+ static Actions: typeof AFPoptavkaVydanaPolozkaAction;
6838
7146
  lastUpdate?: Date | null;
6839
7147
  updatedBy?: AFUzivatel | null;
6840
7148
  createdBy?: AFUzivatel | null;
@@ -6895,10 +7203,14 @@ declare class AFPoptavkaVydanaPolozka extends AFEntity {
6895
7203
  }
6896
7204
  //#endregion
6897
7205
  //#region src/generated/entities/AFPoptavkaVydana.d.ts
7206
+ declare enum AFPoptavkaVydanaAction {
7207
+ Storno = "storno",
7208
+ }
6898
7209
  declare class AFPoptavkaVydana extends AFEntity {
6899
7210
  static EntityPath: string;
6900
7211
  static EntityName: string;
6901
7212
  static EntityType: string;
7213
+ static Actions: typeof AFPoptavkaVydanaAction;
6902
7214
  lastUpdate?: Date | null;
6903
7215
  updatedBy?: AFUzivatel | null;
6904
7216
  createdBy?: AFUzivatel | null;
@@ -7063,10 +7375,14 @@ declare class AFTypPoptavkyPrijate extends AFEntity {
7063
7375
  }
7064
7376
  //#endregion
7065
7377
  //#region src/generated/entities/AFPoptavkaPrijataPolozka.d.ts
7378
+ declare enum AFPoptavkaPrijataPolozkaAction {
7379
+ Storno = "storno",
7380
+ }
7066
7381
  declare class AFPoptavkaPrijataPolozka extends AFEntity {
7067
7382
  static EntityPath: string;
7068
7383
  static EntityName: string;
7069
7384
  static EntityType: string;
7385
+ static Actions: typeof AFPoptavkaPrijataPolozkaAction;
7070
7386
  lastUpdate?: Date | null;
7071
7387
  updatedBy?: AFUzivatel | null;
7072
7388
  createdBy?: AFUzivatel | null;
@@ -7140,10 +7456,14 @@ declare class AFPoptavkaPrijataPolozka extends AFEntity {
7140
7456
  }
7141
7457
  //#endregion
7142
7458
  //#region src/generated/entities/AFPoptavkaPrijata.d.ts
7459
+ declare enum AFPoptavkaPrijataAction {
7460
+ Storno = "storno",
7461
+ }
7143
7462
  declare class AFPoptavkaPrijata extends AFEntity {
7144
7463
  static EntityPath: string;
7145
7464
  static EntityName: string;
7146
7465
  static EntityType: string;
7466
+ static Actions: typeof AFPoptavkaPrijataAction;
7147
7467
  lastUpdate?: Date | null;
7148
7468
  updatedBy?: AFUzivatel | null;
7149
7469
  createdBy?: AFUzivatel | null;
@@ -7251,10 +7571,14 @@ declare class AFPoptavkaPrijata extends AFEntity {
7251
7571
  }
7252
7572
  //#endregion
7253
7573
  //#region src/generated/entities/AFNabidkaVydanaPolozka.d.ts
7574
+ declare enum AFNabidkaVydanaPolozkaAction {
7575
+ Storno = "storno",
7576
+ }
7254
7577
  declare class AFNabidkaVydanaPolozka extends AFEntity {
7255
7578
  static EntityPath: string;
7256
7579
  static EntityName: string;
7257
7580
  static EntityType: string;
7581
+ static Actions: typeof AFNabidkaVydanaPolozkaAction;
7258
7582
  lastUpdate?: Date | null;
7259
7583
  updatedBy?: AFUzivatel | null;
7260
7584
  createdBy?: AFUzivatel | null;
@@ -7328,10 +7652,14 @@ declare class AFNabidkaVydanaPolozka extends AFEntity {
7328
7652
  }
7329
7653
  //#endregion
7330
7654
  //#region src/generated/entities/AFNabidkaVydana.d.ts
7655
+ declare enum AFNabidkaVydanaAction {
7656
+ Storno = "storno",
7657
+ }
7331
7658
  declare class AFNabidkaVydana extends AFEntity {
7332
7659
  static EntityPath: string;
7333
7660
  static EntityName: string;
7334
7661
  static EntityType: string;
7662
+ static Actions: typeof AFNabidkaVydanaAction;
7335
7663
  lastUpdate?: Date | null;
7336
7664
  updatedBy?: AFUzivatel | null;
7337
7665
  createdBy?: AFUzivatel | null;
@@ -7440,10 +7768,14 @@ declare class AFNabidkaVydana extends AFEntity {
7440
7768
  }
7441
7769
  //#endregion
7442
7770
  //#region src/generated/entities/AFNabidkaPrijataPolozka.d.ts
7771
+ declare enum AFNabidkaPrijataPolozkaAction {
7772
+ Storno = "storno",
7773
+ }
7443
7774
  declare class AFNabidkaPrijataPolozka extends AFEntity {
7444
7775
  static EntityPath: string;
7445
7776
  static EntityName: string;
7446
7777
  static EntityType: string;
7778
+ static Actions: typeof AFNabidkaPrijataPolozkaAction;
7447
7779
  lastUpdate?: Date | null;
7448
7780
  updatedBy?: AFUzivatel | null;
7449
7781
  createdBy?: AFUzivatel | null;
@@ -7504,10 +7836,14 @@ declare class AFNabidkaPrijataPolozka extends AFEntity {
7504
7836
  }
7505
7837
  //#endregion
7506
7838
  //#region src/generated/entities/AFNabidkaPrijata.d.ts
7839
+ declare enum AFNabidkaPrijataAction {
7840
+ Storno = "storno",
7841
+ }
7507
7842
  declare class AFNabidkaPrijata extends AFEntity {
7508
7843
  static EntityPath: string;
7509
7844
  static EntityName: string;
7510
7845
  static EntityType: string;
7846
+ static Actions: typeof AFNabidkaPrijataAction;
7511
7847
  lastUpdate?: Date | null;
7512
7848
  updatedBy?: AFUzivatel | null;
7513
7849
  createdBy?: AFUzivatel | null;
@@ -7871,10 +8207,14 @@ declare class AFBankovniUcetPokladna extends AFEntity {
7871
8207
  }
7872
8208
  //#endregion
7873
8209
  //#region src/generated/entities/AFInterniDokladPolozka.d.ts
8210
+ declare enum AFInterniDokladPolozkaAction {
8211
+ Storno = "storno",
8212
+ }
7874
8213
  declare class AFInterniDokladPolozka extends AFEntity {
7875
8214
  static EntityPath: string;
7876
8215
  static EntityName: string;
7877
8216
  static EntityType: string;
8217
+ static Actions: typeof AFInterniDokladPolozkaAction;
7878
8218
  lastUpdate?: Date | null;
7879
8219
  updatedBy?: AFUzivatel | null;
7880
8220
  createdBy?: AFUzivatel | null;
@@ -7969,10 +8309,14 @@ declare class AFInterniDokladPolozka extends AFEntity {
7969
8309
  }
7970
8310
  //#endregion
7971
8311
  //#region src/generated/entities/AFInterniDoklad.d.ts
8312
+ declare enum AFInterniDokladAction {
8313
+ Storno = "storno",
8314
+ }
7972
8315
  declare class AFInterniDoklad extends AFEntity {
7973
8316
  static EntityPath: string;
7974
8317
  static EntityName: string;
7975
8318
  static EntityType: string;
8319
+ static Actions: typeof AFInterniDokladAction;
7976
8320
  lastUpdate?: Date | null;
7977
8321
  updatedBy?: AFUzivatel | null;
7978
8322
  createdBy?: AFUzivatel | null;
@@ -8049,7 +8393,6 @@ declare class AFInterniDoklad extends AFEntity {
8049
8393
  protiUcet?: AFUcet | null;
8050
8394
  dphZaklUcet?: AFUcet | null;
8051
8395
  dphSnizUcet?: AFUcet | null;
8052
- dphSniz2Ucet?: AFUcet | null;
8053
8396
  statDph?: AFStatDph | null;
8054
8397
  clenDph?: AFCleneniDph | null;
8055
8398
  stredisko?: AFStredisko | null;
@@ -8231,10 +8574,14 @@ declare class AFNeuhrazenePoSplatnosti2 extends AFEntity {
8231
8574
  }
8232
8575
  //#endregion
8233
8576
  //#region src/generated/entities/AFPokladniPohybPolozka.d.ts
8577
+ declare enum AFPokladniPohybPolozkaAction {
8578
+ Storno = "storno",
8579
+ }
8234
8580
  declare class AFPokladniPohybPolozka extends AFEntity {
8235
8581
  static EntityPath: string;
8236
8582
  static EntityName: string;
8237
8583
  static EntityType: string;
8584
+ static Actions: typeof AFPokladniPohybPolozkaAction;
8238
8585
  lastUpdate?: Date | null;
8239
8586
  updatedBy?: AFUzivatel | null;
8240
8587
  createdBy?: AFUzivatel | null;
@@ -8343,10 +8690,15 @@ declare class AFPokladniPohybPolozka extends AFEntity {
8343
8690
  }
8344
8691
  //#endregion
8345
8692
  //#region src/generated/entities/AFDokladKUhrade.d.ts
8693
+ declare enum AFDokladKUhradeAction {
8694
+ Storno = "storno",
8695
+ UhradZapoctem = "uhrad-zapoctem",
8696
+ }
8346
8697
  declare class AFDokladKUhrade extends AFEntity {
8347
8698
  static EntityPath: string;
8348
8699
  static EntityName: string;
8349
8700
  static EntityType: string;
8701
+ static Actions: typeof AFDokladKUhradeAction;
8350
8702
  lastUpdate?: Date | null;
8351
8703
  kod?: string | null;
8352
8704
  modul?: string | null;
@@ -8553,10 +8905,15 @@ declare class AFDokladKUhrade extends AFEntity {
8553
8905
  }
8554
8906
  //#endregion
8555
8907
  //#region src/generated/entities/AFPokladniPohyb.d.ts
8908
+ declare enum AFPokladniPohybAction {
8909
+ Storno = "storno",
8910
+ AutomatickeParovani = "automaticke-parovani",
8911
+ }
8556
8912
  declare class AFPokladniPohyb extends AFEntity {
8557
8913
  static EntityPath: string;
8558
8914
  static EntityName: string;
8559
8915
  static EntityType: string;
8916
+ static Actions: typeof AFPokladniPohybAction;
8560
8917
  lastUpdate?: Date | null;
8561
8918
  updatedBy?: AFUzivatel | null;
8562
8919
  createdBy?: AFUzivatel | null;
@@ -8691,10 +9048,14 @@ declare class AFPokladniPohyb extends AFEntity {
8691
9048
  }
8692
9049
  //#endregion
8693
9050
  //#region src/generated/entities/AFBankaPolozka.d.ts
9051
+ declare enum AFBankaPolozkaAction {
9052
+ Storno = "storno",
9053
+ }
8694
9054
  declare class AFBankaPolozka extends AFEntity {
8695
9055
  static EntityPath: string;
8696
9056
  static EntityName: string;
8697
9057
  static EntityType: string;
9058
+ static Actions: typeof AFBankaPolozkaAction;
8698
9059
  lastUpdate?: Date | null;
8699
9060
  updatedBy?: AFUzivatel | null;
8700
9061
  createdBy?: AFUzivatel | null;
@@ -8754,10 +9115,15 @@ declare class AFBankaPolozka extends AFEntity {
8754
9115
  }
8755
9116
  //#endregion
8756
9117
  //#region src/generated/entities/AFBanka.d.ts
9118
+ declare enum AFBankaAction {
9119
+ Storno = "storno",
9120
+ AutomatickeParovani = "automaticke-parovani",
9121
+ }
8757
9122
  declare class AFBanka extends AFEntity {
8758
9123
  static EntityPath: string;
8759
9124
  static EntityName: string;
8760
9125
  static EntityType: string;
9126
+ static Actions: typeof AFBankaAction;
8761
9127
  lastUpdate?: Date | null;
8762
9128
  updatedBy?: AFUzivatel | null;
8763
9129
  createdBy?: AFUzivatel | null;
@@ -8883,10 +9249,14 @@ declare class AFBanka extends AFEntity {
8883
9249
  }
8884
9250
  //#endregion
8885
9251
  //#region src/generated/entities/AFPohledavkaPolozka.d.ts
9252
+ declare enum AFPohledavkaPolozkaAction {
9253
+ Storno = "storno",
9254
+ }
8886
9255
  declare class AFPohledavkaPolozka extends AFEntity {
8887
9256
  static EntityPath: string;
8888
9257
  static EntityName: string;
8889
9258
  static EntityType: string;
9259
+ static Actions: typeof AFPohledavkaPolozkaAction;
8890
9260
  lastUpdate?: Date | null;
8891
9261
  updatedBy?: AFUzivatel | null;
8892
9262
  createdBy?: AFUzivatel | null;
@@ -8981,10 +9351,15 @@ declare class AFPohledavkaPolozka extends AFEntity {
8981
9351
  }
8982
9352
  //#endregion
8983
9353
  //#region src/generated/entities/AFPohledavka.d.ts
9354
+ declare enum AFPohledavkaAction {
9355
+ Storno = "storno",
9356
+ UhradZapoctem = "uhrad-zapoctem",
9357
+ }
8984
9358
  declare class AFPohledavka extends AFEntity {
8985
9359
  static EntityPath: string;
8986
9360
  static EntityName: string;
8987
9361
  static EntityType: string;
9362
+ static Actions: typeof AFPohledavkaAction;
8988
9363
  lastUpdate?: Date | null;
8989
9364
  updatedBy?: AFUzivatel | null;
8990
9365
  createdBy?: AFUzivatel | null;
@@ -9203,10 +9578,14 @@ declare class AFTypUplatneniDaneZavazku extends AFEntity {
9203
9578
  }
9204
9579
  //#endregion
9205
9580
  //#region src/generated/entities/AFUplatneniDaneZavazkuPolozka.d.ts
9581
+ declare enum AFUplatneniDaneZavazkuPolozkaAction {
9582
+ Storno = "storno",
9583
+ }
9206
9584
  declare class AFUplatneniDaneZavazkuPolozka extends AFEntity {
9207
9585
  static EntityPath: string;
9208
9586
  static EntityName: string;
9209
9587
  static EntityType: string;
9588
+ static Actions: typeof AFUplatneniDaneZavazkuPolozkaAction;
9210
9589
  lastUpdate?: Date | null;
9211
9590
  updatedBy?: AFUzivatel | null;
9212
9591
  createdBy?: AFUzivatel | null;
@@ -9302,10 +9681,14 @@ declare class AFUplatneniDaneZavazkuPolozka extends AFEntity {
9302
9681
  }
9303
9682
  //#endregion
9304
9683
  //#region src/generated/entities/AFUplatneniDaneZavazku.d.ts
9684
+ declare enum AFUplatneniDaneZavazkuAction {
9685
+ Storno = "storno",
9686
+ }
9305
9687
  declare class AFUplatneniDaneZavazku extends AFEntity {
9306
9688
  static EntityPath: string;
9307
9689
  static EntityName: string;
9308
9690
  static EntityType: string;
9691
+ static Actions: typeof AFUplatneniDaneZavazkuAction;
9309
9692
  lastUpdate?: Date | null;
9310
9693
  updatedBy?: AFUzivatel | null;
9311
9694
  createdBy?: AFUzivatel | null;
@@ -9602,10 +9985,15 @@ declare class AFTypVzajemnychZapoctu extends AFEntity {
9602
9985
  }
9603
9986
  //#endregion
9604
9987
  //#region src/generated/entities/AFVzajemnyZapocet.d.ts
9988
+ declare enum AFVzajemnyZapocetAction {
9989
+ Storno = "storno",
9990
+ AutomatickeParovani = "automaticke-parovani",
9991
+ }
9605
9992
  declare class AFVzajemnyZapocet extends AFEntity {
9606
9993
  static EntityPath: string;
9607
9994
  static EntityName: string;
9608
9995
  static EntityType: string;
9996
+ static Actions: typeof AFVzajemnyZapocetAction;
9609
9997
  lastUpdate?: Date | null;
9610
9998
  updatedBy?: AFUzivatel | null;
9611
9999
  createdBy?: AFUzivatel | null;
@@ -9751,10 +10139,14 @@ declare class AFDoklad extends AFEntity {
9751
10139
  }
9752
10140
  //#endregion
9753
10141
  //#region src/generated/entities/AFFakturaVydanaPolozka.d.ts
10142
+ declare enum AFFakturaVydanaPolozkaAction {
10143
+ Storno = "storno",
10144
+ }
9754
10145
  declare class AFFakturaVydanaPolozka extends AFEntity {
9755
10146
  static EntityPath: string;
9756
10147
  static EntityName: string;
9757
10148
  static EntityType: string;
10149
+ static Actions: typeof AFFakturaVydanaPolozkaAction;
9758
10150
  lastUpdate?: Date | null;
9759
10151
  updatedBy?: AFUzivatel | null;
9760
10152
  createdBy?: AFUzivatel | null;
@@ -9869,10 +10261,16 @@ declare class AFFakturaVydanaPolozka extends AFEntity {
9869
10261
  }
9870
10262
  //#endregion
9871
10263
  //#region src/generated/entities/AFFakturaVydana.d.ts
10264
+ declare enum AFFakturaVydanaAction {
10265
+ Storno = "storno",
10266
+ UhradPreplatky = "uhrad-preplatky",
10267
+ UhradZapoctem = "uhrad-zapoctem",
10268
+ }
9872
10269
  declare class AFFakturaVydana extends AFEntity {
9873
10270
  static EntityPath: string;
9874
10271
  static EntityName: string;
9875
10272
  static EntityType: string;
10273
+ static Actions: typeof AFFakturaVydanaAction;
9876
10274
  lastUpdate?: Date | null;
9877
10275
  updatedBy?: AFUzivatel | null;
9878
10276
  createdBy?: AFUzivatel | null;
@@ -10140,10 +10538,16 @@ declare class AFTypProdejky extends AFEntity {
10140
10538
  }
10141
10539
  //#endregion
10142
10540
  //#region src/generated/entities/AFProdejka.d.ts
10541
+ declare enum AFProdejkaAction {
10542
+ Storno = "storno",
10543
+ UhradPreplatky = "uhrad-preplatky",
10544
+ UhradZapoctem = "uhrad-zapoctem",
10545
+ }
10143
10546
  declare class AFProdejka extends AFEntity {
10144
10547
  static EntityPath: string;
10145
10548
  static EntityName: string;
10146
10549
  static EntityType: string;
10550
+ static Actions: typeof AFProdejkaAction;
10147
10551
  lastUpdate?: Date | null;
10148
10552
  updatedBy?: AFUzivatel | null;
10149
10553
  createdBy?: AFUzivatel | null;
@@ -10348,40 +10752,6 @@ declare class AFPravoViditelnosti extends AFEntity {
10348
10752
  static propAnnotations: Record<string, TypeAnnotation>;
10349
10753
  }
10350
10754
  //#endregion
10351
- //#region src/generated/entities/AFZamek.d.ts
10352
- declare class AFZamek extends AFEntity {
10353
- static EntityPath: string;
10354
- static EntityName: string;
10355
- static EntityType: string;
10356
- lastUpdate?: Date | null;
10357
- zamekK?: Zamek | null;
10358
- platiOdData?: Date | null;
10359
- platiDoData?: Date | null;
10360
- modulFav?: boolean | null;
10361
- modulFap?: boolean | null;
10362
- modulPhl?: boolean | null;
10363
- modulZav?: boolean | null;
10364
- modulTxp?: boolean | null;
10365
- modulTxz?: boolean | null;
10366
- modulBan?: boolean | null;
10367
- modulPok?: boolean | null;
10368
- modulInt?: boolean | null;
10369
- modulSkl?: boolean | null;
10370
- modulPpp?: boolean | null;
10371
- modulPpv?: boolean | null;
10372
- modulNap?: boolean | null;
10373
- modulNav?: boolean | null;
10374
- modulObp?: boolean | null;
10375
- modulObv?: boolean | null;
10376
- modulMaj?: boolean | null;
10377
- modulLea?: boolean | null;
10378
- modulMzd?: boolean | null;
10379
- neucetni?: boolean | null;
10380
- 'uzivatelske-vazby'?: AFUzivatelskaVazba[];
10381
- get uzivatelskeVazby(): AFUzivatelskaVazba[] | undefined;
10382
- static propAnnotations: Record<string, TypeAnnotation>;
10383
- }
10384
- //#endregion
10385
10755
  //#region src/generated/entities/AFKurzProCenotvorbu.d.ts
10386
10756
  declare class AFKurzProCenotvorbu extends AFEntity {
10387
10757
  static EntityPath: string;
@@ -10389,7 +10759,7 @@ declare class AFKurzProCenotvorbu extends AFEntity {
10389
10759
  static EntityType: string;
10390
10760
  lastUpdate?: Date | null;
10391
10761
  platiOdData?: Date | null;
10392
- nbStred?: Big | null;
10762
+ kurz?: Big | null;
10393
10763
  kurzMnozstvi?: Big | null;
10394
10764
  mena?: AFMena | null;
10395
10765
  'uzivatelske-vazby'?: AFUzivatelskaVazba[];
@@ -10404,7 +10774,7 @@ declare class AFKurzProPreceneni extends AFEntity {
10404
10774
  static EntityType: string;
10405
10775
  lastUpdate?: Date | null;
10406
10776
  platiOdData?: Date | null;
10407
- nbStred?: Big | null;
10777
+ kurz?: Big | null;
10408
10778
  kurzMnozstvi?: Big | null;
10409
10779
  mena?: AFMena | null;
10410
10780
  'uzivatelske-vazby'?: AFUzivatelskaVazba[];
@@ -10576,7 +10946,7 @@ declare class AFIntrastatKurz extends AFEntity {
10576
10946
  static EntityType: string;
10577
10947
  lastUpdate?: Date | null;
10578
10948
  platiOdData?: Date | null;
10579
- nbStred?: Big | null;
10949
+ kurz?: Big | null;
10580
10950
  kurzMnozstvi?: Big | null;
10581
10951
  mena?: AFMena | null;
10582
10952
  'uzivatelske-vazby'?: AFUzivatelskaVazba[];
@@ -10612,10 +10982,15 @@ declare class AFIndividualniCenik extends AFEntity {
10612
10982
  }
10613
10983
  //#endregion
10614
10984
  //#region src/generated/entities/AFKusovnik.d.ts
10985
+ declare enum AFKusovnikAction {
10986
+ PrepoctiNakupniCenu = "prepocti-nakupni-cenu",
10987
+ PrepoctiProdejniCenu = "prepocti-prodejni-cenu",
10988
+ }
10615
10989
  declare class AFKusovnik extends AFEntity {
10616
10990
  static EntityPath: string;
10617
10991
  static EntityName: string;
10618
10992
  static EntityType: string;
10993
+ static Actions: typeof AFKusovnikAction;
10619
10994
  lastUpdate?: Date | null;
10620
10995
  nazev?: string | null;
10621
10996
  nazevA?: string | null;
@@ -10824,6 +11199,10 @@ declare class AFOsobaHlavicka extends AFEntity {
10824
11199
  titul?: string | null;
10825
11200
  password?: string | null;
10826
11201
  email?: string | null;
11202
+ rodCis?: string | null;
11203
+ ecp?: string | null;
11204
+ oic?: string | null;
11205
+ duchodOd?: Date | null;
10827
11206
  prilohy?: AFPriloha[];
10828
11207
  'uzivatelske-vazby'?: AFUzivatelskaVazba[];
10829
11208
  get uzivatelskeVazby(): AFUzivatelskaVazba[] | undefined;
@@ -10846,6 +11225,7 @@ declare class AFSkupinaOsob extends AFEntity {
10846
11225
  platiOd?: Date | null;
10847
11226
  platiDo?: Date | null;
10848
11227
  tydenPracDobaK?: TydenPracDoba | null;
11228
+ fondSta?: Big | null;
10849
11229
  workFlow?: boolean | null;
10850
11230
  tdIntHruba?: AFTypInternihoDokladu | null;
10851
11231
  tdIntNahrad?: AFTypInternihoDokladu | null;
@@ -10868,25 +11248,17 @@ declare class AFSkupinaOsob extends AFEntity {
10868
11248
  static propAnnotations: Record<string, TypeAnnotation>;
10869
11249
  }
10870
11250
  //#endregion
10871
- //#region src/generated/entities/AFDite.d.ts
10872
- declare class AFDite extends AFEntity {
11251
+ //#region src/generated/entities/AFOsobaBlizkaHlav.d.ts
11252
+ declare class AFOsobaBlizkaHlav extends AFEntity {
10873
11253
  static EntityPath: string;
10874
11254
  static EntityName: string;
10875
11255
  static EntityType: string;
10876
11256
  lastUpdate?: Date | null;
10877
11257
  prijmeni?: string | null;
10878
11258
  jmeno?: string | null;
10879
- datNaroz?: Date | null;
10880
- pohlaviK?: Pohlavi | null;
10881
11259
  rodCis?: string | null;
10882
- ztp_P?: boolean | null;
10883
- ztp_POd?: Date | null;
10884
- ztp_PDo?: Date | null;
10885
- poznam?: string | null;
10886
- dite?: boolean | null;
10887
- stitky?: string | null;
11260
+ datNaroz?: Date | null;
10888
11261
  osoba?: AFOsobaHlavicka | null;
10889
- vztah?: AFVztah | null;
10890
11262
  'uzivatelske-vazby'?: AFUzivatelskaVazba[];
10891
11263
  get uzivatelskeVazby(): AFUzivatelskaVazba[] | undefined;
10892
11264
  static propAnnotations: Record<string, TypeAnnotation>;
@@ -10907,6 +11279,7 @@ declare class AFOsoba extends AFEntity {
10907
11279
  titul?: string | null;
10908
11280
  datNaroz?: Date | null;
10909
11281
  rodCis?: string | null;
11282
+ ecp?: string | null;
10910
11283
  pohlaviK?: Pohlavi | null;
10911
11284
  kvalifikace?: string | null;
10912
11285
  funkce?: string | null;
@@ -10936,12 +11309,10 @@ declare class AFOsoba extends AFEntity {
10936
11309
  nezDo?: Date | null;
10937
11310
  poznam?: string | null;
10938
11311
  ulice?: string | null;
10939
- cisDomu?: string | null;
10940
11312
  psc?: string | null;
10941
11313
  posta?: string | null;
10942
11314
  mesto?: string | null;
10943
11315
  uliceKon?: string | null;
10944
- cisDomuKon?: string | null;
10945
11316
  pscKon?: string | null;
10946
11317
  postaKon?: string | null;
10947
11318
  mestoKon?: string | null;
@@ -10950,7 +11321,6 @@ declare class AFOsoba extends AFEntity {
10950
11321
  mobil?: string | null;
10951
11322
  telefon?: string | null;
10952
11323
  uliceKonTuz?: string | null;
10953
- cisDomuKonTuz?: string | null;
10954
11324
  pscKonTuz?: string | null;
10955
11325
  postaKonTuz?: string | null;
10956
11326
  mestoKonTuz?: string | null;
@@ -10958,6 +11328,7 @@ declare class AFOsoba extends AFEntity {
10958
11328
  podpisProhl?: boolean | null;
10959
11329
  danNerezid?: boolean | null;
10960
11330
  zdrPojDoplat?: boolean | null;
11331
+ zdrPojDoplatVzdy?: boolean | null;
10961
11332
  zdrPojDoplatRozdel?: boolean | null;
10962
11333
  cisPojist?: string | null;
10963
11334
  prukazZTP?: boolean | null;
@@ -10968,14 +11339,10 @@ declare class AFOsoba extends AFEntity {
10968
11339
  minuleZdrav?: Big | null;
10969
11340
  invalCast?: boolean | null;
10970
11341
  invalPlna?: boolean | null;
10971
- invalOd?: Date | null;
10972
11342
  student?: boolean | null;
10973
11343
  slevaPoplat?: boolean | null;
10974
11344
  odpocetDeti?: number | null;
10975
11345
  odpocetDeti3?: number | null;
10976
- odpocetDetiZtp?: number | null;
10977
- odpocetDite1Ztp?: boolean | null;
10978
- odpocetDite2Ztp?: boolean | null;
10979
11346
  snizVymZaklZp?: boolean | null;
10980
11347
  password?: string | null;
10981
11348
  predNemPoj?: string | null;
@@ -10984,14 +11351,49 @@ declare class AFOsoba extends AFEntity {
10984
11351
  cisUcastDuchSpor?: string | null;
10985
11352
  slevaSpPracDuchodce?: boolean | null;
10986
11353
  cizPojNazev?: string | null;
10987
- cizPojSpec?: string | null;
10988
11354
  cizPojUlice?: string | null;
10989
- cizPojCisDomu?: string | null;
10990
11355
  cizPojMesto?: string | null;
10991
11356
  cizPojPsc?: string | null;
10992
11357
  cizPojCislo?: string | null;
10993
11358
  pocetPriloh?: number | null;
10994
11359
  stitky?: string | null;
11360
+ oic?: string | null;
11361
+ cizVcp?: string | null;
11362
+ cizTypDanIdentifK?: MzdTypDanIdentifOsoba | null;
11363
+ cizTaxIdRez?: string | null;
11364
+ cizTypDokladuK?: MzdTypDokladuCiz | null;
11365
+ cizCisDoklTotoznosti?: string | null;
11366
+ cizDoklTotoznostiVydal?: string | null;
11367
+ cisPopisne?: string | null;
11368
+ cisOrientacni?: string | null;
11369
+ cisPopisneKon?: string | null;
11370
+ cisOrientacniKon?: string | null;
11371
+ cisPopisneKonTuz?: string | null;
11372
+ cisOrientacniKonTuz?: string | null;
11373
+ cizPojPopisneCis?: string | null;
11374
+ cizPojOrientacniCis?: string | null;
11375
+ kodRuian?: string | null;
11376
+ kodRuianKon?: string | null;
11377
+ kodRuianKonTuz?: string | null;
11378
+ zdravOmezeniDo?: Date | null;
11379
+ typZdravOmezeniK?: MzdTypZdravOmezeni | null;
11380
+ nejvyssiVzdelaniK?: MzdKatDosazVzdelani | null;
11381
+ cizPojSpecK?: MzdCizNositelPojisteni | null;
11382
+ volnyPristupTrhPrace?: boolean | null;
11383
+ cizVolnyPristupTrhPraceDuvodK?: MzdCizVolnyTrhPrace | null;
11384
+ cizDruhPracOpravneniK?: MzdCizDruhPracOpravneni | null;
11385
+ pracOpravneniVydalK?: MzdPobockaUP | null;
11386
+ idPracOpravneni?: string | null;
11387
+ pracOpravneniOd?: Date | null;
11388
+ pracOpravneniDo?: Date | null;
11389
+ ciziPravniPredpisy?: boolean | null;
11390
+ snizDuchVek?: boolean | null;
11391
+ duchVekOd?: Date | null;
11392
+ duchodMimoCssz?: boolean | null;
11393
+ duchodJinyNositelPojisteniOd?: Date | null;
11394
+ detiVyzivujeJinaOsoba?: boolean | null;
11395
+ hesloVyplneno?: boolean | null;
11396
+ nepobiraDuchodVPlneVysi?: boolean | null;
10995
11397
  osobaHlav?: AFOsobaHlavicka | null;
10996
11398
  skupOsob?: AFSkupinaOsob | null;
10997
11399
  nadzizeny?: AFOsobaHlavicka | null;
@@ -11005,14 +11407,46 @@ declare class AFOsoba extends AFEntity {
11005
11407
  cizPojStat?: AFStat | null;
11006
11408
  tdDobirka?: AFTypZavazku | null;
11007
11409
  tdZaloha?: AFTypZavazku | null;
11008
- diteOdpoc1?: AFDite | null;
11009
- diteOdpoc2?: AFDite | null;
11410
+ diteOdpoc1?: AFOsobaBlizkaHlav | null;
11411
+ diteOdpoc2?: AFOsobaBlizkaHlav | null;
11412
+ osobaVyzivDeti?: AFOsobaBlizkaHlav | null;
11413
+ statRezidentstvi?: AFStat | null;
11414
+ statVydalDoklTotoznosti?: AFStat | null;
11415
+ statCiziPravniPredpisy?: AFStat | null;
11010
11416
  prilohy?: AFPriloha[];
11011
11417
  'uzivatelske-vazby'?: AFUzivatelskaVazba[];
11012
11418
  get uzivatelskeVazby(): AFUzivatelskaVazba[] | undefined;
11013
11419
  static propAnnotations: Record<string, TypeAnnotation>;
11014
11420
  }
11015
11421
  //#endregion
11422
+ //#region src/generated/entities/AFDite.d.ts
11423
+ declare class AFDite extends AFEntity {
11424
+ static EntityPath: string;
11425
+ static EntityName: string;
11426
+ static EntityType: string;
11427
+ lastUpdate?: Date | null;
11428
+ prijmeni?: string | null;
11429
+ jmeno?: string | null;
11430
+ datNaroz?: Date | null;
11431
+ pohlaviK?: Pohlavi | null;
11432
+ rodCis?: string | null;
11433
+ ztp_P?: boolean | null;
11434
+ ztp_POd?: Date | null;
11435
+ ztp_PDo?: Date | null;
11436
+ poznam?: string | null;
11437
+ dite?: boolean | null;
11438
+ student?: boolean | null;
11439
+ platiOd?: Date | null;
11440
+ platiDo?: Date | null;
11441
+ stitky?: string | null;
11442
+ osoba?: AFOsobaHlavicka | null;
11443
+ vztah?: AFVztah | null;
11444
+ osobaBlizkaHlav?: AFOsobaBlizkaHlav | null;
11445
+ 'uzivatelske-vazby'?: AFUzivatelskaVazba[];
11446
+ get uzivatelskeVazby(): AFUzivatelskaVazba[] | undefined;
11447
+ static propAnnotations: Record<string, TypeAnnotation>;
11448
+ }
11449
+ //#endregion
11016
11450
  //#region src/generated/entities/AFOsobaBlizka.d.ts
11017
11451
  declare class AFOsobaBlizka extends AFEntity {
11018
11452
  static EntityPath: string;
@@ -11029,9 +11463,13 @@ declare class AFOsobaBlizka extends AFEntity {
11029
11463
  ztp_PDo?: Date | null;
11030
11464
  poznam?: string | null;
11031
11465
  dite?: boolean | null;
11466
+ student?: boolean | null;
11467
+ platiOd?: Date | null;
11468
+ platiDo?: Date | null;
11032
11469
  stitky?: string | null;
11033
11470
  osoba?: AFOsobaHlavicka | null;
11034
11471
  vztah?: AFVztah | null;
11472
+ osobaBlizkaHlav?: AFOsobaBlizkaHlav | null;
11035
11473
  'uzivatelske-vazby'?: AFUzivatelskaVazba[];
11036
11474
  get uzivatelskeVazby(): AFUzivatelskaVazba[] | undefined;
11037
11475
  static propAnnotations: Record<string, TypeAnnotation>;
@@ -11120,6 +11558,7 @@ declare class AFPracovniPomerHlavicka extends AFEntity {
11120
11558
  konecPomeru?: Date | null;
11121
11559
  konecZkusDoby?: Date | null;
11122
11560
  konecUrciteDoby?: Date | null;
11561
+ idPpv?: string | null;
11123
11562
  osoba?: AFOsobaHlavicka | null;
11124
11563
  'uzivatelske-vazby'?: AFUzivatelskaVazba[];
11125
11564
  get uzivatelskeVazby(): AFUzivatelskaVazba[] | undefined;
@@ -11284,6 +11723,7 @@ declare class AFPracovniPomer extends AFEntity {
11284
11723
  dovoleneRocne?: Big | null;
11285
11724
  dovoleneRocneHod?: Big | null;
11286
11725
  tydenPracDobaK?: TydenPracDoba | null;
11726
+ fondSta?: Big | null;
11287
11727
  uvazPo?: boolean | null;
11288
11728
  uvazUt?: boolean | null;
11289
11729
  uvazSt?: boolean | null;
@@ -11297,6 +11737,29 @@ declare class AFPracovniPomer extends AFEntity {
11297
11737
  duvodUkonceniCsszK?: CsszDuvodUkonceni | null;
11298
11738
  duvodNeposkytnutiCsszK?: CsszDuvodNeposkytnuti | null;
11299
11739
  stitky?: string | null;
11740
+ ukoncenoSmrti?: boolean | null;
11741
+ zamNenastoupil?: boolean | null;
11742
+ cizDuvodPredcasUkonceniK?: MzdDuvodPredcasKonceZam | null;
11743
+ idPpv?: string | null;
11744
+ pracovniRezimK?: MzdPracRezim | null;
11745
+ nepretrzityProvoz?: boolean | null;
11746
+ praceProbihaK?: MzdPrubehPrace | null;
11747
+ mistoVykPracePredpokl?: string | null;
11748
+ mistoVykPracePracSmlouva?: string | null;
11749
+ mistoVykPracePracSmlouvaObec?: string | null;
11750
+ mistoVykPraceObecPracSmlouvaKod?: string | null;
11751
+ mistoVykPraceObec?: string | null;
11752
+ mistoVykPraceObecKod?: string | null;
11753
+ prispevekApz?: boolean | null;
11754
+ nastrojApzK?: MzdNastrojAPZ | null;
11755
+ profeseKod?: string | null;
11756
+ poziceNazev?: string | null;
11757
+ vedouciPozice?: boolean | null;
11758
+ blizsiUrceniPpvK?: MzdyBlizsiUrceniPPV | null;
11759
+ profeseMinVzdelaniK?: MzdKatDosazVzdelani | null;
11760
+ postaveniVZamestnani?: string | null;
11761
+ dppOvocnarstvi?: boolean | null;
11762
+ rizikPrace3sk?: boolean | null;
11300
11763
  pracPomHlav?: AFPracovniPomerHlavicka | null;
11301
11764
  osoba?: AFOsobaHlavicka | null;
11302
11765
  typPracPom?: AFTypPracovnihoPomeru | null;
@@ -11314,6 +11777,7 @@ declare class AFPracovniPomer extends AFEntity {
11314
11777
  tuoZavZdrFir?: AFPredpisZauctovani | null;
11315
11778
  tuoZavDan?: AFPredpisZauctovani | null;
11316
11779
  tdSrazkaStrav?: AFTypDokladu | null;
11780
+ statMistoVykPrace?: AFStat | null;
11317
11781
  'uzivatelske-vazby'?: AFUzivatelskaVazba[];
11318
11782
  get uzivatelskeVazby(): AFUzivatelskaVazba[] | undefined;
11319
11783
  static propAnnotations: Record<string, TypeAnnotation>;
@@ -11600,10 +12064,14 @@ declare class AFPrehledZamestnancu extends AFEntity {
11600
12064
  }
11601
12065
  //#endregion
11602
12066
  //#region src/generated/entities/AFZavazekPolozka.d.ts
12067
+ declare enum AFZavazekPolozkaAction {
12068
+ Storno = "storno",
12069
+ }
11603
12070
  declare class AFZavazekPolozka extends AFEntity {
11604
12071
  static EntityPath: string;
11605
12072
  static EntityName: string;
11606
12073
  static EntityType: string;
12074
+ static Actions: typeof AFZavazekPolozkaAction;
11607
12075
  lastUpdate?: Date | null;
11608
12076
  updatedBy?: AFUzivatel | null;
11609
12077
  createdBy?: AFUzivatel | null;
@@ -11698,10 +12166,15 @@ declare class AFZavazekPolozka extends AFEntity {
11698
12166
  }
11699
12167
  //#endregion
11700
12168
  //#region src/generated/entities/AFZavazek.d.ts
12169
+ declare enum AFZavazekAction {
12170
+ Storno = "storno",
12171
+ UhradZapoctem = "uhrad-zapoctem",
12172
+ }
11701
12173
  declare class AFZavazek extends AFEntity {
11702
12174
  static EntityPath: string;
11703
12175
  static EntityName: string;
11704
12176
  static EntityType: string;
12177
+ static Actions: typeof AFZavazekAction;
11705
12178
  lastUpdate?: Date | null;
11706
12179
  updatedBy?: AFUzivatel | null;
11707
12180
  createdBy?: AFUzivatel | null;
@@ -12078,6 +12551,68 @@ declare class AFInsight extends AFEntity {
12078
12551
  static propAnnotations: Record<string, TypeAnnotation>;
12079
12552
  }
12080
12553
  //#endregion
12554
+ //#region src/generated/entities/AFIntegrace.d.ts
12555
+ declare class AFIntegrace extends AFEntity {
12556
+ static EntityPath: string;
12557
+ static EntityName: string;
12558
+ static EntityType: string;
12559
+ nazev?: string | null;
12560
+ kod?: string | null;
12561
+ registerUrl?: string | null;
12562
+ authTokenPart?: string | null;
12563
+ orgId?: string | null;
12564
+ instanceId?: string | null;
12565
+ addonStoreId?: number | null;
12566
+ statusK?: StatusIntegrace | null;
12567
+ 'uzivatelske-vazby'?: AFUzivatelskaVazba[];
12568
+ get uzivatelskeVazby(): AFUzivatelskaVazba[] | undefined;
12569
+ static propAnnotations: Record<string, TypeAnnotation>;
12570
+ }
12571
+ //#endregion
12572
+ //#region src/generated/entities/AFDoplnek.d.ts
12573
+ declare class AFDoplnek extends AFEntity {
12574
+ static EntityPath: string;
12575
+ static EntityName: string;
12576
+ static EntityType: string;
12577
+ kod?: string | null;
12578
+ nazev?: string | null;
12579
+ integratorAddonId?: string | null;
12580
+ statusK?: StatusDoplnku | null;
12581
+ version?: string | null;
12582
+ price?: Big | null;
12583
+ priceUrl?: string | null;
12584
+ activateUrl?: string | null;
12585
+ configUrl?: string | null;
12586
+ pauseUrl?: string | null;
12587
+ unpauseUrl?: string | null;
12588
+ statusUrl?: string | null;
12589
+ deactivateUrl?: string | null;
12590
+ cenikKodFakturace?: string | null;
12591
+ addonStoreId?: number | null;
12592
+ createdDate?: Date | null;
12593
+ integrace?: AFIntegrace | null;
12594
+ apiUser?: AFUzivatel | null;
12595
+ updatedBy?: AFUzivatel | null;
12596
+ createdBy?: AFUzivatel | null;
12597
+ 'uzivatelske-vazby'?: AFUzivatelskaVazba[];
12598
+ get uzivatelskeVazby(): AFUzivatelskaVazba[] | undefined;
12599
+ static propAnnotations: Record<string, TypeAnnotation>;
12600
+ }
12601
+ //#endregion
12602
+ //#region src/generated/entities/AFObjektDoplnku.d.ts
12603
+ declare class AFObjektDoplnku extends AFEntity {
12604
+ static EntityPath: string;
12605
+ static EntityName: string;
12606
+ static EntityType: string;
12607
+ objektId?: number | null;
12608
+ beanResourceKey?: string | null;
12609
+ isOwner?: boolean | null;
12610
+ doplnek?: AFDoplnek | null;
12611
+ 'uzivatelske-vazby'?: AFUzivatelskaVazba[];
12612
+ get uzivatelskeVazby(): AFUzivatelskaVazba[] | undefined;
12613
+ static propAnnotations: Record<string, TypeAnnotation>;
12614
+ }
12615
+ //#endregion
12081
12616
  //#region src/generated/entities/AFXslt.d.ts
12082
12617
  declare class AFXslt extends AFEntity {
12083
12618
  static EntityPath: string;
@@ -12346,6 +12881,7 @@ declare class AFPodkladyDph extends AFEntity {
12346
12881
  rokDuzp?: number | null;
12347
12882
  typUcOp?: AFPredpisZauctovani | null;
12348
12883
  dic?: string | null;
12884
+ cisDosle?: string | null;
12349
12885
  vypRozdilDphMen?: Big | null;
12350
12886
  vypRozdilDphTuz?: Big | null;
12351
12887
  vypSumDphMen?: Big | null;
@@ -12433,6 +12969,7 @@ declare class AFAnalyzaZakazky extends AFEntity {
12433
12969
  modul?: string | null;
12434
12970
  nazFirmy?: string | null;
12435
12971
  dic?: string | null;
12972
+ cisDosle?: string | null;
12436
12973
  popis?: string | null;
12437
12974
  protiUcet?: AFUcet | null;
12438
12975
  statDph?: AFStatDph | null;
@@ -12483,6 +13020,7 @@ declare class AFPohybNaUctech extends AFEntity {
12483
13020
  modul?: string | null;
12484
13021
  nazFirmy?: string | null;
12485
13022
  dic?: string | null;
13023
+ cisDosle?: string | null;
12486
13024
  popis?: string | null;
12487
13025
  protiUcet?: AFUcet | null;
12488
13026
  statDph?: AFStatDph | null;
@@ -12797,6 +13335,7 @@ declare class AFSaldo extends AFEntity {
12797
13335
  modul?: string | null;
12798
13336
  nazFirmy?: string | null;
12799
13337
  dic?: string | null;
13338
+ cisDosle?: string | null;
12800
13339
  popis?: string | null;
12801
13340
  protiUcet?: AFUcet | null;
12802
13341
  statDph?: AFStatDph | null;
@@ -13784,5 +14323,5 @@ declare function extractServer(inUrl: string): string;
13784
14323
  declare function extractCompany(inUrl: string): string;
13785
14324
  declare function extractEvidence(inUrl: string): string;
13786
14325
  //#endregion
13787
- export { AFAdresar, AFAdresarBankovniUcet, AFAnalyzaNakupu, AFAnalyzaProdeje, AFAnalyzaZakazky, AFApiClient, type AFApiConfig, AFApiSession, AFAtribut, AFAutotisk, AFBanka, AFBankaPolozka, AFBankovniUcet, AFBankovniUcetPokladna, AFBankovniUcetSkladPokladna, AFCastkyKOdpoctu, AFCenik, AFCenikObal, AFCenikTypSazbyDph, AFCenikovaSkupina, AFCenikovyPohybNakup, AFCenikovyPohybProdej, AFCenovaUroven, AFCertifikacniAutorita, AFCertifikat, AFCertifikatFinbricks, AFCinnost, AFCiselnikMzdovychSlozek, AFCisloBaliku, AFCleneniDph, AFCleneniKontrolniHlaseni, type AFCompany, AFCustomButton, AFDanovyNaklad, AFDanovyOdpis, AFDashboardPanel, AFDashboardSharing, AFDefStore, AFDite, AFDodavatel, AFDodavatelskaSmlouva, AFDodavatelskyTypSmlouvy, AFDoklad, AFDokladKUhrade, AFDoporuceni, AFEntity, AFError, AFErrorCode, AFFakturaPrijata, AFFakturaPrijataPolozka, AFFakturaVydana, AFFakturaVydanaPolozka, AFFilter, AFFiltr, AFFormaDopravy, AFFormaUhrady, AFFormaUhradyZauctovani, AFFormatElektronickehoBankovnictvi, AFFormatElektronickehoPrikazu, AFGlobalStore, AFHlavniKniha, AFHodnoceniZakazky, AFIndividualniCenik, AFInsight, AFInterniDoklad, AFInterniDokladPolozka, AFIntrastatDodaciPodminky, AFIntrastatDruhDopravy, AFIntrastatKodNomenklatury, AFIntrastatKrajUrceni, AFIntrastatKurz, AFIntrastatMernaJednotka, AFIntrastatObchodniTransakce, AFIntrastatZvlastniPohyb, AFInventura, AFInventuraPolozka, AFKonstSymbol, AFKontakt, AFKontrolniHlaseniDph, AFKurz, AFKurzProCenotvorbu, AFKurzProPreceneni, AFKusovnik, AFLeasing, AFMajetek, AFMajetekUdalost, AFMapovaniSkladu, AFMena, AFMernaJednotka, AFMistoUrceni, AFMzda, AFMzdovaSlozka, AFMzdyBankovniSpojeni, AFNabidkaPrijata, AFNabidkaPrijataPolozka, AFNabidkaVydana, AFNabidkaVydanaPolozka, AFNaklad, AFNastaveni, AFNepritomnost, type AFNestedDetail, AFNeuhrazenePoSplatnosti, AFNeuhrazenePoSplatnosti2, AFObjednavkaPrijata, AFObjednavkaPrijataPolozka, AFObjednavkaVydana, AFObjednavkaVydanaPolozka, AFObrat, AFObratPolozky, AFObratovaPredvaha, AFOdberatel, AFOdpisovaSkupina, AFOsoba, AFOsobaBlizka, AFOsobaHlavicka, AFParametr, AFPenezniUstav, AFPoSplatnosti, AFPodkladyDph, AFPodobneZbozi, AFPohledavka, AFPohledavkaPolozka, AFPohybNaUctech, AFPokladna, AFPokladniPohyb, AFPokladniPohybPolozka, AFPoplatek, AFPoptavkaPrijata, AFPoptavkaPrijataPolozka, AFPoptavkaVydana, AFPoptavkaVydanaPolozka, type AFPopulateOptions, AFPrace, AFPraceMesic, AFPracovniPomer, AFPracovniPomerHlavicka, AFPravoViditelnosti, AFPredpisZauctovani, AFPrehledZamestnancu, AFPreneseniDph, AFPricteniRozdilu, AFPrikazKInkasu, AFPrikazKInkasuPolozka, AFPrikazKUhrade, AFPrikazKUhradePolozka, AFPriloha, AFPrislustenstvi, AFProdejka, AFProdejkaPlatba, AFPsc, AFQueryDetail, type AFQueryOptions, AFRada, AFRadaBanka, AFRadaFakturyPrijate, AFRadaFakturyVydane, AFRadaInternihoDokladu, AFRadaNabidkyPrijate, AFRadaNabidkyVydane, AFRadaObjednavkyPrijate, AFRadaObjednavkyVydane, AFRadaPohledavky, AFRadaPokladniPohyb, AFRadaPoptavkyPrijate, AFRadaPoptavkyVydane, AFRadaSkladovyPohyb, AFRadaUplatneniDaneZavazku, AFRadaZavazku, AFRadekPriznaniDph, AFRadekSestavy, AFRegion, AFReport, AFRezervace, AFRocniRada, AFRole, AFRozvahaPoUctech, AFSablonaMail, AFSablonaUpominky, AFSadyAKomplety, AFSaldo, AFSaldoKDatu, AFSarzeExpirace, AFSazbaDph, type AFSessionConfig, AFSessionStatus, AFSestava, AFSettingStore, AFSklad, AFSkladovaKarta, AFSkladovyPohyb, AFSkladovyPohybPolozka, AFSkupinaAtributu, AFSkupinaFirem, AFSkupinaOsob, AFSkupinaPlneni, AFSkupinaStitku, AFSkupinaZbozi, AFSmena, AFSmlouva, AFSmlouvaPolozka, AFSmlouvaZurnal, AFSouhrnneHlaseniDph, AFSplatkovyKalendar, AFSrazka, AFStalaMzdovaSlozka, AFStandardniPredpis, AFStat, AFStatDph, AFStavCeniku, AFStavObchodnihoDokladu, AFStavSkladuKDatu, AFStavSmlouvy, AFStavUctu, AFStavZakazky, AFStitek, AFStredisko, AFStrom, AFStromCenik, AFStromKoren, AFSubjekt, AFSumaceSestavy, AFText, AFTypAktivity, AFTypAtributu, AFTypBanka, AFTypDokladu, AFTypFakturyPrijate, AFTypFakturyVydane, AFTypInternihoDokladu, AFTypLeasingu, AFTypMajetku, AFTypNabidkyPrijate, AFTypNabidkyVydane, AFTypNakladu, AFTypObjednavkyPrijate, AFTypObjednavkyVydane, AFTypOrganizace, AFTypPohledavky, AFTypPokladniPohyb, AFTypPoptavkyPrijate, AFTypPoptavkyVydane, AFTypPracovnihoPomeru, AFTypProdejky, AFTypSkladovyPohyb, AFTypSmlouvy, AFTypStavuCeniku, AFTypUplatneniDaneZavazku, AFTypUzivatelskeVazby, AFTypVzajemnychZapoctu, AFTypZakazky, AFTypZavazku, type AFURelOptions, type AFURelResult, AFUcet, AFUcetniDenik, AFUcetniDenikZjednoduseny, AFUcetniObdobi, AFUcetniOdpis, AFUcetniOsnova, AFUdalost, AFUlozenePriznaniDph, AFUlozenePriznaniKonVykDph, AFUmisteni, AFUmisteniUctu, AFUmisteniVeSkladu, AFUmisteniVeSkladuMistnost, AFUmisteniVeSkladuPolice, AFUmisteniVeSkladuRegal, AFUplatneniDaneZavazku, AFUplatneniDaneZavazkuPolozka, AFUzivatel, AFUzivatelskaVazba, AFUzivatelskyDotaz, AFUzivatelskyDotazParametr, AFUzivatelskyDotazVlastnost, AFVazba, AFVazebniDoklad, AFVykazHospodareni, AFVyrobniCislo, AFVysledovkaPoUctech, AFVzajemnyZapocet, AFVztah, AFXslt, AFZakazka, AFZalohaKOdpoctu, AFZamek, AFZapujcka, AFZavazek, AFZavazekPolozka, AFZurnal, AutoSendMailMod, BarvaMaterialu, CODE, ClenSpl, CsszDuvodNeposkytnuti, CsszDuvodOsetrovne, CsszDuvodOtcovske, CsszDuvodPrevzeti, CsszDuvodUkonceni, CsszRodVztahKod, CsszVztahKod, DashboardPanelVisibility, DatazTypParam, DefinitionType, DenniKurz, DoporuceniCil, DruhLeas, DruhMaj, DruhStavuZakazky, DruhUctu, DruhUdal, DuvodSlevaSpFirma, EXT, EetStav, EetTyp, Ekokom, ElPrikazPoplatek, ElPrikazStav, ElVypisDuplicita, EntityByName, FapDatProDuzpUctoK, Filter, FormExport, FormaDopravy, FormaUhr, FrDanNakl, GdprTypVztahu, ID, IsdocPrilohaMailu, JakUhrazeno, JakyTypDokl, Jazyk, KodPlneni, LitterObal, LogoPozice, Material, MetodaZaokr, MjHmot, MjZaruky, ModulUcetni, NO_LIMIT, type NO_LIMIT_T, NahrUcet, NormalMj, Objednat, OmezPrenDanPov, OperaceZurnalSmlouvy, PlneniOdprDoby, Pohlavi, PracRozvrh, PredvybranyPocet, PrepocetCen, Priorita, RazeniProTisk, RezimRezervaci, RocniKurz, RodStav, SkupinaSlozky, StavDoklObch, StavInventury, StavMail, StavOdp, StavPriznaniDph, StavPriznaniKonVykDph, StavSklad, StavUdal, StavUhr, StavUziv, type StitkyCacheStrategy, Surovina, TydenPracDoba, TypAtribut, TypBanUctu, TypCeny, TypCenyVychozi, TypDokladu, TypMj, TypMzdy, TypObalu, TypObchodu, TypOdp, TypPlneni, TypPohybu, TypPohybuSklad, TypPolozky, TypPoplatku, TypPouziti, TypPrav, TypPrilohy, TypSablony, TypSestavy, TypSlozky, TypSpl, TypSzbDph, TypUcJednotky, TypUctu, TypUdal, TypUmisteniSklad, TypVazbyDokl, TypVypCeny, TypVypSestavy, TypVzniku, TypVztahu, TypVztahuOsoba, TypZak, TypZasoby, UcelCertK, VyznamSlozky, Zamek, ZaokrJak, ZaokrNa, ZastupceTyp, ZobrLogo, ZobrazWebKompMod, ZpusobFakt, ZpusobOdp, ZpusobPlatby, ZpusobStahKurz, ZpusobVypo, ZvysZrych, extractCompany, extractEvidence, extractServer };
14326
+ export { AFAdresar, AFAdresarBankovniUcet, AFAnalyzaNakupu, AFAnalyzaProdeje, AFAnalyzaZakazky, AFApiClient, type AFApiConfig, AFApiSession, AFAtribut, AFAutotisk, AFBanka, AFBankaAction, AFBankaPolozka, AFBankaPolozkaAction, AFBankovniUcet, AFBankovniUcetPokladna, AFBankovniUcetSkladPokladna, AFCastkyKOdpoctu, AFCenik, AFCenikObal, AFCenikTypSazbyDph, AFCenikovaSkupina, AFCenikovyPohybNakup, AFCenikovyPohybProdej, AFCenovaUroven, AFCertifikacniAutorita, AFCertifikat, AFCertifikatFinbricks, AFCinnost, AFCiselnikMzdovychSlozek, AFCisloBaliku, AFCleneniDph, AFCleneniKontrolniHlaseni, type AFCompany, AFCustomButton, AFDanovyNaklad, AFDanovyOdpis, AFDashboardPanel, AFDashboardSharing, AFDefStore, AFDefiniceSekvence, AFDite, AFDodavatel, AFDodavatelskaSmlouva, AFDodavatelskaSmlouvaAction, AFDodavatelskyTypSmlouvy, AFDoklad, AFDokladKUhrade, AFDokladKUhradeAction, AFDoplnek, AFDoporuceni, AFEntity, AFError, AFErrorCode, AFFakturaPrijata, AFFakturaPrijataAction, AFFakturaPrijataPolozka, AFFakturaPrijataPolozkaAction, AFFakturaVydana, AFFakturaVydanaAction, AFFakturaVydanaPolozka, AFFakturaVydanaPolozkaAction, type AFFileResult, AFFilter, AFFiltr, AFFormaDopravy, AFFormaUhrady, AFFormaUhradyZauctovani, AFFormatElektronickehoBankovnictvi, AFFormatElektronickehoPrikazu, AFGlobalStore, AFHlavniKniha, AFHodnoceniZakazky, AFIndividualniCenik, AFInsight, AFIntegrace, AFInterniDoklad, AFInterniDokladAction, AFInterniDokladPolozka, AFInterniDokladPolozkaAction, AFIntrastatDodaciPodminky, AFIntrastatDruhDopravy, AFIntrastatKodNomenklatury, AFIntrastatKrajUrceni, AFIntrastatKurz, AFIntrastatMernaJednotka, AFIntrastatObchodniTransakce, AFIntrastatZvlastniPohyb, AFInventura, AFInventuraPolozka, AFKonstSymbol, AFKontakt, AFKontrolniHlaseniDph, AFKurz, AFKurzProCenotvorbu, AFKurzProPreceneni, AFKusovnik, AFKusovnikAction, AFLeasing, AFMajetek, AFMajetekUdalost, AFMapovaniSkladu, AFMena, AFMernaJednotka, AFMistoUrceni, AFMzda, AFMzdovaSlozka, AFMzdyBankovniSpojeni, AFNabidkaPrijata, AFNabidkaPrijataAction, AFNabidkaPrijataPolozka, AFNabidkaPrijataPolozkaAction, AFNabidkaVydana, AFNabidkaVydanaAction, AFNabidkaVydanaPolozka, AFNabidkaVydanaPolozkaAction, AFNaklad, AFNastaveni, AFNepritomnost, type AFNestedDetail, AFNeuhrazenePoSplatnosti, AFNeuhrazenePoSplatnosti2, AFObjednavkaPrijata, AFObjednavkaPrijataAction, AFObjednavkaPrijataPolozka, AFObjednavkaPrijataPolozkaAction, AFObjednavkaVydana, AFObjednavkaVydanaAction, AFObjednavkaVydanaPolozka, AFObjednavkaVydanaPolozkaAction, AFObjektDoplnku, AFObrat, AFObratPolozky, AFObratovaPredvaha, AFOdberatel, AFOdpisovaSkupina, AFOsoba, AFOsobaBlizka, AFOsobaBlizkaHlav, AFOsobaHlavicka, AFParametr, AFPenezniUstav, AFPoSplatnosti, AFPodkladyDph, AFPodobneZbozi, AFPohledavka, AFPohledavkaAction, AFPohledavkaPolozka, AFPohledavkaPolozkaAction, AFPohybNaUctech, AFPokladna, AFPokladniPohyb, AFPokladniPohybAction, AFPokladniPohybPolozka, AFPokladniPohybPolozkaAction, AFPoplatek, AFPoptavkaPrijata, AFPoptavkaPrijataAction, AFPoptavkaPrijataPolozka, AFPoptavkaPrijataPolozkaAction, AFPoptavkaVydana, AFPoptavkaVydanaAction, AFPoptavkaVydanaPolozka, AFPoptavkaVydanaPolozkaAction, type AFPopulateOptions, AFPrace, AFPraceMesic, AFPracovniPomer, AFPracovniPomerHlavicka, AFPravoViditelnosti, AFPredpisZauctovani, AFPrehledZamestnancu, AFPreneseniDph, AFPricteniRozdilu, AFPrikazKInkasu, AFPrikazKInkasuPolozka, AFPrikazKUhrade, AFPrikazKUhradePolozka, AFPriloha, AFPrislustenstvi, AFPristupovePravo, AFProdejka, AFProdejkaAction, AFProdejkaPlatba, AFPsc, AFQueryDetail, type AFQueryFileOptions, type AFQueryOptions, type AFQueryReportsOptions, AFRada, AFRadaBanka, AFRadaFakturyPrijate, AFRadaFakturyVydane, AFRadaInternihoDokladu, AFRadaNabidkyPrijate, AFRadaNabidkyVydane, AFRadaObjednavkyPrijate, AFRadaObjednavkyVydane, AFRadaPohledavky, AFRadaPokladniPohyb, AFRadaPoptavkyPrijate, AFRadaPoptavkyVydane, AFRadaSkladovyPohyb, AFRadaUplatneniDaneZavazku, AFRadaZavazku, AFRadekPriznaniDph, AFRadekSestavy, AFRegion, AFReport, type AFReportInfo, type AFReportLanguage, type AFResponseFormat, AFRezervace, AFRocniRada, AFRole, AFRozvahaPoUctech, AFSablonaMail, AFSablonaUpominky, AFSadyAKomplety, AFSaldo, AFSaldoKDatu, AFSarzeExpirace, AFSazbaDph, type AFSessionConfig, AFSessionStatus, AFSestava, AFSettingStore, AFSklad, AFSkladovaKarta, AFSkladovyPohyb, AFSkladovyPohybAction, AFSkladovyPohybPolozka, AFSkladovyPohybPolozkaAction, AFSkupinaAtributu, AFSkupinaFirem, AFSkupinaOsob, AFSkupinaPlneni, AFSkupinaStitku, AFSkupinaZbozi, AFSmena, AFSmlouva, AFSmlouvaAction, AFSmlouvaPolozka, AFSmlouvaZurnal, AFSouhrnneHlaseniDph, AFSplatkovyKalendar, AFSrazka, AFStalaMzdovaSlozka, AFStandardniPredpis, AFStat, AFStatDph, AFStavCeniku, AFStavObchodnihoDokladu, AFStavSkladuKDatu, AFStavSmlouvy, AFStavUctu, AFStavZakazky, AFStitek, AFStredisko, AFStrom, AFStromCenik, AFStromKoren, AFSubjekt, AFSumaceSestavy, AFText, AFTypAktivity, AFTypAtributu, AFTypBanka, AFTypDokladu, AFTypFakturyPrijate, AFTypFakturyVydane, AFTypInternihoDokladu, AFTypLeasingu, AFTypMajetku, AFTypNabidkyPrijate, AFTypNabidkyVydane, AFTypNakladu, AFTypObjednavkyPrijate, AFTypObjednavkyVydane, AFTypOrganizace, AFTypPohledavky, AFTypPokladniPohyb, AFTypPoptavkyPrijate, AFTypPoptavkyVydane, AFTypPracovnihoPomeru, AFTypProdejky, AFTypSkladovyPohyb, AFTypSmlouvy, AFTypStavuCeniku, AFTypUplatneniDaneZavazku, AFTypUzivatelskeVazby, AFTypVzajemnychZapoctu, AFTypZakazky, AFTypZavazku, type AFURelOptions, type AFURelResult, AFUcet, AFUcetniDenik, AFUcetniDenikZjednoduseny, AFUcetniObdobi, AFUcetniOdpis, AFUcetniOsnova, AFUdalost, AFUlozenePriznaniDph, AFUlozenePriznaniKonVykDph, AFUmisteni, AFUmisteniUctu, AFUmisteniVeSkladu, AFUmisteniVeSkladuMistnost, AFUmisteniVeSkladuPolice, AFUmisteniVeSkladuRegal, AFUplatneniDaneZavazku, AFUplatneniDaneZavazkuAction, AFUplatneniDaneZavazkuPolozka, AFUplatneniDaneZavazkuPolozkaAction, AFUzivatel, AFUzivatelskaVazba, AFUzivatelskyDotaz, AFUzivatelskyDotazParametr, AFUzivatelskyDotazVlastnost, AFVazba, AFVazebniDoklad, AFVykazHospodareni, AFVyrobniCislo, AFVysledovkaPoUctech, AFVzajemnyZapocet, AFVzajemnyZapocetAction, AFVztah, AFXslt, AFZakazka, AFZalohaKOdpoctu, AFZapujcka, AFZavazek, AFZavazekAction, AFZavazekPolozka, AFZavazekPolozkaAction, AFZurnal, AutoSendMailMod, BarvaMaterialu, CODE, ClenSpl, CsszDuvodNeposkytnuti, CsszDuvodOsetrovne, CsszDuvodOtcovske, CsszDuvodPrevzeti, CsszDuvodUkonceni, CsszRodVztahKod, CsszVztahKod, DashboardPanelVisibility, DatazTypParam, DefinitionType, DenniKurz, DoporuceniCil, DruhLeas, DruhMaj, DruhStavuZakazky, DruhUctu, DruhUdal, DuvodSlevaSpFirma, EXT, EetStav, EetTyp, Ekokom, ElPrikazPoplatek, ElPrikazStav, ElVypisDuplicita, EntityByName, FapDatProDuzpUctoK, Filter, FormExport, FormaDopravy, FormaUhr, FrDanNakl, GdprTypVztahu, ID, IsdocPrilohaMailu, JakUhrazeno, JakyTypDokl, Jazyk, KodPlneni, LitterObal, LogoPozice, Material, MetodaZaokr, MjHmot, MjZaruky, ModulUcetni, MzdCizDruhPracOpravneni, MzdCizNositelPojisteni, MzdCizVolnyTrhPrace, MzdDuvodPredcasKonceZam, MzdFormaKontroly, MzdKatDosazVzdelani, MzdKolSmlouva, MzdNastrojAPZ, MzdPobockaUP, MzdPracRezim, MzdPrubehPrace, MzdTypDanIdentifOsoba, MzdTypDokladuCiz, MzdTypZdravOmezeni, MzdyBlizsiUrceniPPV, NO_LIMIT, type NO_LIMIT_T, NahrUcet, NormalMj, Objednat, OmezPrenDanPov, OperaceZurnalSmlouvy, PlneniOdprDoby, Pohlavi, PracRozvrh, PredvybranyPocet, PrepocetCen, Priorita, PristupovePravoFeatureK, RazeniProTisk, RezimRezervaci, RocniKurz, RodStav, SkupinaSlozky, StatusDoplnku, StatusIntegrace, StavDoklObch, StavInventury, StavMail, StavOdp, StavPriznaniDph, StavPriznaniKonVykDph, StavSklad, StavUdal, StavUhr, StavUziv, type StitkyCacheStrategy, Surovina, TydenPracDoba, TypAtribut, TypBanUctu, TypCeny, TypCenyVychozi, TypDokladu, TypMj, TypMzdy, TypObalu, TypObchodu, TypOdp, TypPlneni, TypPohybu, TypPohybuSklad, TypPolozky, TypPoplatku, TypPouziti, TypPrav, TypPrilohy, TypPristPrav, TypSablony, TypSestavy, TypSlozky, TypSpl, TypSzbDph, TypUcJednotky, TypUctu, TypUdal, TypUmisteniSklad, TypVazbyDokl, TypVypCeny, TypVypSestavy, TypVzniku, TypVztahu, TypVztahuOsoba, TypZak, TypZasoby, UcelCertK, VyznamSlozky, Zamek, ZaokrJak, ZaokrNa, ZastupceTyp, ZobrLogo, ZobrazWebKompMod, ZpusobFakt, ZpusobOdp, ZpusobPlatby, ZpusobStahKurz, ZpusobVypo, ZvysZrych, extractCompany, extractEvidence, extractServer };
13788
14327
  //# sourceMappingURL=index.d.mts.map