abra-flexi 0.6.0 → 0.7.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/README.md +169 -27
- package/dist/index.cjs +236 -1237
- package/dist/index.d.cts +114 -248
- package/dist/index.d.cts.map +1 -1
- package/dist/index.d.mts +114 -248
- package/dist/index.d.mts.map +1 -1
- package/dist/index.mjs +236 -1237
- package/dist/index.mjs.map +1 -1
- package/package.json +5 -2
package/dist/index.d.cts
CHANGED
|
@@ -81,8 +81,28 @@ declare enum StitkyCacheStrategy {
|
|
|
81
81
|
// Default
|
|
82
82
|
Eager = 2,
|
|
83
83
|
}
|
|
84
|
-
|
|
85
|
-
|
|
84
|
+
/**
|
|
85
|
+
* Controls how nested entities in 'unknown' state are handled during
|
|
86
|
+
* serialisation in save(). See spec §7 — Nested entity encoding.
|
|
87
|
+
*/
|
|
88
|
+
declare enum NestedUnknownStrategy {
|
|
89
|
+
/**
|
|
90
|
+
* Resolve each 'unknown' nested entity via _resolveId before encoding.
|
|
91
|
+
* Falls back to ByIdentifier behaviour if resolution returns null.
|
|
92
|
+
* This is the default.
|
|
93
|
+
*/
|
|
94
|
+
Resolve = "resolve",
|
|
95
|
+
/**
|
|
96
|
+
* Encode using the available identifier (kod / ext) without a network call.
|
|
97
|
+
* Throws AFError(MISSING_IDENTIFIER) if no identifier is present.
|
|
98
|
+
*/
|
|
99
|
+
ByIdentifier = "by-identifier",
|
|
100
|
+
/**
|
|
101
|
+
* Throw AFError(UNRESOLVED_ENTITY) immediately if any nested entity is
|
|
102
|
+
* still 'unknown' at encode time. The caller must resolve all relations
|
|
103
|
+
* before calling save().
|
|
104
|
+
*/
|
|
105
|
+
Strict = "strict",
|
|
86
106
|
}
|
|
87
107
|
type AFApiFetch = (input: RequestInfo | URL, init?: RequestInit | undefined) => Promise<Response>;
|
|
88
108
|
type AFResponseFormat = 'json' | 'xml' | 'pdf' | 'html' | 'csv' | 'isdoc' | (string & {});
|
|
@@ -114,6 +134,18 @@ declare enum AFQueryDetail {
|
|
|
114
134
|
SUMMARY = "summary",
|
|
115
135
|
}
|
|
116
136
|
type AFNestedDetail = (string | [string, AFNestedDetail])[];
|
|
137
|
+
/**
|
|
138
|
+
* Return type of `api.query()`. A standard array of entity instances extended
|
|
139
|
+
* with an optional `totalCount` property that is populated when the query was
|
|
140
|
+
* made with `addRowCount: true`. The value reflects the total number of
|
|
141
|
+
* matching records on the server, independent of `limit`/`start`.
|
|
142
|
+
*
|
|
143
|
+
* Because this is still a plain array, all existing code that iterates or
|
|
144
|
+
* spreads the result continues to work without any changes.
|
|
145
|
+
*/
|
|
146
|
+
type AFQueryResult<T> = T[] & {
|
|
147
|
+
totalCount?: number;
|
|
148
|
+
};
|
|
117
149
|
type AFQueryOptions = {
|
|
118
150
|
detail?: AFNestedDetail | AFQueryDetail;
|
|
119
151
|
filter?: AFFilter;
|
|
@@ -166,7 +198,11 @@ type AFURelMinimal = AFEntity & {
|
|
|
166
198
|
}[];
|
|
167
199
|
};
|
|
168
200
|
type AFSaveOptions = {
|
|
169
|
-
|
|
201
|
+
/**
|
|
202
|
+
* How to handle nested entities in 'unknown' state during serialisation.
|
|
203
|
+
* @default NestedUnknownStrategy.Resolve
|
|
204
|
+
*/
|
|
205
|
+
nestedUnknown?: NestedUnknownStrategy;
|
|
170
206
|
abortController?: AbortController;
|
|
171
207
|
removeStitky?: boolean;
|
|
172
208
|
};
|
|
@@ -197,6 +233,7 @@ declare enum AFSessionStatus {
|
|
|
197
233
|
Online = "online",
|
|
198
234
|
LogingOut = "logingout",
|
|
199
235
|
}
|
|
236
|
+
/** @deprecated Use api.resolveStubId() instead. */
|
|
200
237
|
type IdStub = {
|
|
201
238
|
id?: number;
|
|
202
239
|
kod?: string;
|
|
@@ -208,7 +245,6 @@ declare class AFTypUzivatelskeVazby extends AFEntity {
|
|
|
208
245
|
static EntityPath: string;
|
|
209
246
|
static EntityName: string;
|
|
210
247
|
static EntityType: string;
|
|
211
|
-
id?: number | null;
|
|
212
248
|
lastUpdate?: Date | null;
|
|
213
249
|
kod?: string | null;
|
|
214
250
|
nazev?: string | null;
|
|
@@ -239,7 +275,6 @@ declare class AFUzivatelskaVazba extends AFEntity {
|
|
|
239
275
|
static EntityPath: string;
|
|
240
276
|
static EntityName: string;
|
|
241
277
|
static EntityType: string;
|
|
242
|
-
id?: number | null;
|
|
243
278
|
vazbaTyp?: AFTypUzivatelskeVazby | null;
|
|
244
279
|
modul?: string | null;
|
|
245
280
|
kod?: string | null;
|
|
@@ -259,7 +294,6 @@ declare class AFSkupinaStitku extends AFEntity {
|
|
|
259
294
|
static EntityPath: string;
|
|
260
295
|
static EntityName: string;
|
|
261
296
|
static EntityType: string;
|
|
262
|
-
id?: number | null;
|
|
263
297
|
lastUpdate?: Date | null;
|
|
264
298
|
kod?: string | null;
|
|
265
299
|
nazev?: string | null;
|
|
@@ -281,7 +315,6 @@ declare class AFStitek extends AFEntity {
|
|
|
281
315
|
static EntityPath: string;
|
|
282
316
|
static EntityName: string;
|
|
283
317
|
static EntityType: string;
|
|
284
|
-
id?: number | null;
|
|
285
318
|
lastUpdate?: Date | null;
|
|
286
319
|
kod?: string | null;
|
|
287
320
|
nazev?: string | null;
|
|
@@ -340,17 +373,42 @@ declare class AFEntity {
|
|
|
340
373
|
static EntityType: string;
|
|
341
374
|
static propAnnotations: Record<string, TypeAnnotation>;
|
|
342
375
|
private _stitkyCache;
|
|
343
|
-
|
|
376
|
+
private _id?;
|
|
377
|
+
private _state;
|
|
378
|
+
/**
|
|
379
|
+
* Server-assigned internal id. Readonly — never set by application code.
|
|
380
|
+
* Use api.resolveStubId() or api.resolve() to obtain a confirmed id.
|
|
381
|
+
*/
|
|
382
|
+
get id(): number | null | undefined;
|
|
383
|
+
/**
|
|
384
|
+
* @internal — called only by AFApiClient. Do NOT call from application code.
|
|
385
|
+
* Sets the confirmed server id and transitions state to 'exists'.
|
|
386
|
+
*/
|
|
387
|
+
_setId(id: number): void;
|
|
388
|
+
/**
|
|
389
|
+
* Pending unverified identifiers stored by the deprecated createIdStub().
|
|
390
|
+
* @internal
|
|
391
|
+
*/
|
|
392
|
+
_stub?: {
|
|
393
|
+
id?: number;
|
|
394
|
+
kod?: string;
|
|
395
|
+
ext?: string[];
|
|
396
|
+
};
|
|
344
397
|
kod?: string | null;
|
|
345
398
|
stitky?: string | null;
|
|
346
399
|
_orig: Record<string, any>;
|
|
347
|
-
|
|
400
|
+
/**
|
|
401
|
+
* Returns the entity's existence state:
|
|
402
|
+
* - true — definitely no server record ('new')
|
|
403
|
+
* - undefined — has identifiers but existence unconfirmed ('unknown')
|
|
404
|
+
* - false — server existence confirmed ('exists')
|
|
405
|
+
*/
|
|
406
|
+
get isNew(): boolean | undefined;
|
|
348
407
|
constructor(stitkyCache: AFStitkyCache);
|
|
349
408
|
getPropertyTypeAnnotation(key: string): TypeAnnotation | undefined;
|
|
350
409
|
getStitky(): AFStitek[] | undefined;
|
|
351
410
|
getStitkyBySkupina(skup: string | AFSkupinaStitku): AFStitek[] | undefined;
|
|
352
411
|
get pristine(): boolean;
|
|
353
|
-
get isNew(): boolean;
|
|
354
412
|
protected getCotr(): typeof AFEntity;
|
|
355
413
|
hasChanged(key?: string): boolean;
|
|
356
414
|
wasLoaded(key: string): boolean;
|
|
@@ -373,12 +431,43 @@ declare class AFApiClient {
|
|
|
373
431
|
queryRaw(entityPath: string, options?: AFQueryOptions): Promise<any>;
|
|
374
432
|
queryFileRaw(entityPath: string, format: AFResponseFormat, options?: AFQueryFileOptions): Promise<AFFileResult>;
|
|
375
433
|
queryFile<T extends typeof AFEntity>(entity: T, format: AFResponseFormat, options?: AFQueryFileOptions): Promise<AFFileResult>;
|
|
376
|
-
query<T extends typeof AFEntity>(entity: T, options?: AFQueryOptions): Promise<InstanceType<T
|
|
434
|
+
query<T extends typeof AFEntity>(entity: T, options?: AFQueryOptions): Promise<AFQueryResult<InstanceType<T>>>;
|
|
377
435
|
queryOne<T extends typeof AFEntity>(entity: T, options: AFQueryOptions): Promise<InstanceType<T>>;
|
|
378
436
|
queryURels<T extends typeof AFEntity = typeof AFEntity>(relatedEntity: T, forObjects: AFURelMinimal | AFURelMinimal[], options?: AFURelOptions): Promise<AFURelResult<InstanceType<T>>[]>;
|
|
379
437
|
populate<T extends typeof AFEntity = typeof AFEntity>(entities: InstanceType<T>[], options?: AFPopulateOptions): Promise<InstanceType<T>[]>;
|
|
380
438
|
populateOne<T extends typeof AFEntity = typeof AFEntity>(entity: InstanceType<T>, options?: AFPopulateOptions): Promise<InstanceType<T>>;
|
|
381
439
|
create<T extends typeof AFEntity>(entity: T): Promise<InstanceType<T>>;
|
|
440
|
+
/**
|
|
441
|
+
* Resolves the server-assigned id for an entity that may be in 'unknown' state.
|
|
442
|
+
* Priority order: confirmed _id → _stub.id → _stub.kod / entity.kod → _stub.ext
|
|
443
|
+
*
|
|
444
|
+
* Returns the resolved id (number), or null if the entity was not found.
|
|
445
|
+
* On a 404 response, the entity state is reset to 'new'.
|
|
446
|
+
* @internal
|
|
447
|
+
*/
|
|
448
|
+
private _resolveId;
|
|
449
|
+
/**
|
|
450
|
+
* Resolves an entity by a validated identifier string or numeric id.
|
|
451
|
+
* 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
|
|
455
|
+
* Throws INVALID_IDENTIFIER for any other string.
|
|
456
|
+
* Throws OBJECT_NOT_FOUND if the server returns 404.
|
|
457
|
+
*/
|
|
458
|
+
resolveStubId<T extends typeof AFEntity>(entity: T, identifier: number | string): Promise<InstanceType<T>>;
|
|
459
|
+
/**
|
|
460
|
+
* Resolves an entity in-place — determines and sets its server id.
|
|
461
|
+
* Fast-path: if the entity already has a confirmed id, returns immediately.
|
|
462
|
+
* For 'unknown' state: calls _resolveId; if not found and throwIfNotFound is
|
|
463
|
+
* true, throws OBJECT_NOT_FOUND.
|
|
464
|
+
* Always returns the same entity instance.
|
|
465
|
+
*/
|
|
466
|
+
resolve<T extends AFEntity>(entity: T, throwIfNotFound?: boolean): Promise<T>;
|
|
467
|
+
/**
|
|
468
|
+
* @deprecated Use resolveStubId() or resolve() instead.
|
|
469
|
+
* Creates an entity instance in 'unknown' state with unverified identifiers.
|
|
470
|
+
*/
|
|
382
471
|
createIdStub<T extends typeof AFEntity>(entity: T, id: IdStub): Promise<InstanceType<T>>;
|
|
383
472
|
saveRaw(entityPath: string, data: any, options?: AFSaveOptions): Promise<any>;
|
|
384
473
|
save<T extends typeof AFEntity = typeof AFEntity>(entity: InstanceType<T>, options?: AFSaveOptions): Promise<InstanceType<T>>;
|
|
@@ -391,6 +480,12 @@ declare class AFApiClient {
|
|
|
391
480
|
private _decodeEntityObj;
|
|
392
481
|
private _encodeEntity;
|
|
393
482
|
private _decodeProperty;
|
|
483
|
+
/**
|
|
484
|
+
* Returns the best available identifier string for an entity, or undefined.
|
|
485
|
+
* Used for ByIdentifier and Resolve fallback strategies.
|
|
486
|
+
* Priority: _stub.kod > entity.kod > _stub.ext
|
|
487
|
+
*/
|
|
488
|
+
private _getEntityIdentifierString;
|
|
394
489
|
private _encodeProperty;
|
|
395
490
|
}
|
|
396
491
|
//#endregion
|
|
@@ -417,6 +512,14 @@ declare enum AFErrorCode {
|
|
|
417
512
|
PASSWORD_EMPTY = "PASSWORD_EMPTY",
|
|
418
513
|
PATH_WITHOUT_COMPANY = "PATH_WITHOUT_COMPANY",
|
|
419
514
|
PATH_WITHOUT_EVIDENCE = "PATH_WITHOUT_EVIDENCE",
|
|
515
|
+
INVALID_IDENTIFIER = "INVALID_IDENTIFIER",
|
|
516
|
+
// malformed identifier string in resolveStubId
|
|
517
|
+
ID_MISMATCH = "ID_MISMATCH",
|
|
518
|
+
// resolve found a different id than already set
|
|
519
|
+
MISSING_IDENTIFIER = "MISSING_IDENTIFIER",
|
|
520
|
+
// 'unknown' nested entity has no identifier to encode
|
|
521
|
+
UNRESOLVED_ENTITY = "UNRESOLVED_ENTITY",
|
|
522
|
+
// Strict strategy: nested entity is 'unknown'
|
|
420
523
|
UNKNOWN = "UNKNOWN",
|
|
421
524
|
}
|
|
422
525
|
declare class AFError extends Error {
|
|
@@ -469,7 +572,6 @@ declare class AFKurz extends AFEntity {
|
|
|
469
572
|
static EntityPath: string;
|
|
470
573
|
static EntityName: string;
|
|
471
574
|
static EntityType: string;
|
|
472
|
-
id?: number | null;
|
|
473
575
|
lastUpdate?: Date | null;
|
|
474
576
|
platiOdData?: Date | null;
|
|
475
577
|
nbStred?: Big | null;
|
|
@@ -1522,7 +1624,6 @@ declare class AFMena extends AFEntity {
|
|
|
1522
1624
|
static EntityPath: string;
|
|
1523
1625
|
static EntityName: string;
|
|
1524
1626
|
static EntityType: string;
|
|
1525
|
-
id?: number | null;
|
|
1526
1627
|
lastUpdate?: Date | null;
|
|
1527
1628
|
kod?: string | null;
|
|
1528
1629
|
nazev?: string | null;
|
|
@@ -1547,7 +1648,6 @@ declare class AFRegion extends AFEntity {
|
|
|
1547
1648
|
static EntityPath: string;
|
|
1548
1649
|
static EntityName: string;
|
|
1549
1650
|
static EntityType: string;
|
|
1550
|
-
id?: number | null;
|
|
1551
1651
|
lastUpdate?: Date | null;
|
|
1552
1652
|
kod?: string | null;
|
|
1553
1653
|
nazev?: string | null;
|
|
@@ -1573,7 +1673,6 @@ declare class AFUcetniObdobi extends AFEntity {
|
|
|
1573
1673
|
static EntityPath: string;
|
|
1574
1674
|
static EntityName: string;
|
|
1575
1675
|
static EntityType: string;
|
|
1576
|
-
id?: number | null;
|
|
1577
1676
|
lastUpdate?: Date | null;
|
|
1578
1677
|
platiOdData?: Date | null;
|
|
1579
1678
|
platiDoData?: Date | null;
|
|
@@ -1591,7 +1690,6 @@ declare class AFTypOrganizace extends AFEntity {
|
|
|
1591
1690
|
static EntityPath: string;
|
|
1592
1691
|
static EntityName: string;
|
|
1593
1692
|
static EntityType: string;
|
|
1594
|
-
id?: number | null;
|
|
1595
1693
|
lastUpdate?: Date | null;
|
|
1596
1694
|
kod?: string | null;
|
|
1597
1695
|
nazev?: string | null;
|
|
@@ -1611,7 +1709,6 @@ declare class AFUcetniOsnova extends AFEntity {
|
|
|
1611
1709
|
static EntityPath: string;
|
|
1612
1710
|
static EntityName: string;
|
|
1613
1711
|
static EntityType: string;
|
|
1614
|
-
id?: number | null;
|
|
1615
1712
|
lastUpdate?: Date | null;
|
|
1616
1713
|
kod?: string | null;
|
|
1617
1714
|
nazev?: string | null;
|
|
@@ -1636,7 +1733,6 @@ declare class AFUcet extends AFEntity {
|
|
|
1636
1733
|
static EntityPath: string;
|
|
1637
1734
|
static EntityName: string;
|
|
1638
1735
|
static EntityType: string;
|
|
1639
|
-
id?: number | null;
|
|
1640
1736
|
lastUpdate?: Date | null;
|
|
1641
1737
|
kod?: string | null;
|
|
1642
1738
|
nazev?: string | null;
|
|
@@ -1664,7 +1760,6 @@ declare class AFSkupinaFirem extends AFEntity {
|
|
|
1664
1760
|
static EntityPath: string;
|
|
1665
1761
|
static EntityName: string;
|
|
1666
1762
|
static EntityType: string;
|
|
1667
|
-
id?: number | null;
|
|
1668
1763
|
lastUpdate?: Date | null;
|
|
1669
1764
|
kod?: string | null;
|
|
1670
1765
|
nazev?: string | null;
|
|
@@ -1688,7 +1783,6 @@ declare class AFStredisko extends AFEntity {
|
|
|
1688
1783
|
static EntityPath: string;
|
|
1689
1784
|
static EntityName: string;
|
|
1690
1785
|
static EntityType: string;
|
|
1691
|
-
id?: number | null;
|
|
1692
1786
|
lastUpdate?: Date | null;
|
|
1693
1787
|
kod?: string | null;
|
|
1694
1788
|
nazev?: string | null;
|
|
@@ -1725,7 +1819,6 @@ declare class AFRole extends AFEntity {
|
|
|
1725
1819
|
static EntityPath: string;
|
|
1726
1820
|
static EntityName: string;
|
|
1727
1821
|
static EntityType: string;
|
|
1728
|
-
id?: number | null;
|
|
1729
1822
|
lastUpdate?: Date | null;
|
|
1730
1823
|
kod?: string | null;
|
|
1731
1824
|
nazev?: string | null;
|
|
@@ -1747,7 +1840,6 @@ declare class AFTypAktivity extends AFEntity {
|
|
|
1747
1840
|
static EntityPath: string;
|
|
1748
1841
|
static EntityName: string;
|
|
1749
1842
|
static EntityType: string;
|
|
1750
|
-
id?: number | null;
|
|
1751
1843
|
lastUpdate?: Date | null;
|
|
1752
1844
|
kod?: string | null;
|
|
1753
1845
|
nazev?: string | null;
|
|
@@ -1772,7 +1864,6 @@ declare class AFMistoUrceni extends AFEntity {
|
|
|
1772
1864
|
static EntityPath: string;
|
|
1773
1865
|
static EntityName: string;
|
|
1774
1866
|
static EntityType: string;
|
|
1775
|
-
id?: number | null;
|
|
1776
1867
|
lastUpdate?: Date | null;
|
|
1777
1868
|
ulice?: string | null;
|
|
1778
1869
|
mesto?: string | null;
|
|
@@ -1807,7 +1898,6 @@ declare class AFStavZakazky extends AFEntity {
|
|
|
1807
1898
|
static EntityPath: string;
|
|
1808
1899
|
static EntityName: string;
|
|
1809
1900
|
static EntityType: string;
|
|
1810
|
-
id?: number | null;
|
|
1811
1901
|
lastUpdate?: Date | null;
|
|
1812
1902
|
kod?: string | null;
|
|
1813
1903
|
nazev?: string | null;
|
|
@@ -1827,7 +1917,6 @@ declare class AFTypZakazky extends AFEntity {
|
|
|
1827
1917
|
static EntityPath: string;
|
|
1828
1918
|
static EntityName: string;
|
|
1829
1919
|
static EntityType: string;
|
|
1830
|
-
id?: number | null;
|
|
1831
1920
|
lastUpdate?: Date | null;
|
|
1832
1921
|
kod?: string | null;
|
|
1833
1922
|
nazev?: string | null;
|
|
@@ -1852,7 +1941,6 @@ declare class AFHodnoceniZakazky extends AFEntity {
|
|
|
1852
1941
|
static EntityPath: string;
|
|
1853
1942
|
static EntityName: string;
|
|
1854
1943
|
static EntityType: string;
|
|
1855
|
-
id?: number | null;
|
|
1856
1944
|
lastUpdate?: Date | null;
|
|
1857
1945
|
kod?: string | null;
|
|
1858
1946
|
nazev?: string | null;
|
|
@@ -1873,7 +1961,6 @@ declare class AFRada extends AFEntity {
|
|
|
1873
1961
|
static EntityPath: string;
|
|
1874
1962
|
static EntityName: string;
|
|
1875
1963
|
static EntityType: string;
|
|
1876
|
-
id?: number | null;
|
|
1877
1964
|
lastUpdate?: Date | null;
|
|
1878
1965
|
kod?: string | null;
|
|
1879
1966
|
nazev?: string | null;
|
|
@@ -1896,7 +1983,6 @@ declare class AFRocniRada extends AFEntity {
|
|
|
1896
1983
|
static EntityPath: string;
|
|
1897
1984
|
static EntityName: string;
|
|
1898
1985
|
static EntityType: string;
|
|
1899
|
-
id?: number | null;
|
|
1900
1986
|
lastUpdate?: Date | null;
|
|
1901
1987
|
cisDelka?: number | null;
|
|
1902
1988
|
zobrazNuly?: boolean | null;
|
|
@@ -1916,7 +2002,6 @@ declare class AFRadaSkladovyPohyb extends AFEntity {
|
|
|
1916
2002
|
static EntityPath: string;
|
|
1917
2003
|
static EntityName: string;
|
|
1918
2004
|
static EntityType: string;
|
|
1919
|
-
id?: number | null;
|
|
1920
2005
|
lastUpdate?: Date | null;
|
|
1921
2006
|
kod?: string | null;
|
|
1922
2007
|
nazev?: string | null;
|
|
@@ -1939,7 +2024,6 @@ declare class AFCinnost extends AFEntity {
|
|
|
1939
2024
|
static EntityPath: string;
|
|
1940
2025
|
static EntityName: string;
|
|
1941
2026
|
static EntityType: string;
|
|
1942
|
-
id?: number | null;
|
|
1943
2027
|
lastUpdate?: Date | null;
|
|
1944
2028
|
kod?: string | null;
|
|
1945
2029
|
nazev?: string | null;
|
|
@@ -1961,7 +2045,6 @@ declare class AFSklad extends AFEntity {
|
|
|
1961
2045
|
static EntityPath: string;
|
|
1962
2046
|
static EntityName: string;
|
|
1963
2047
|
static EntityType: string;
|
|
1964
|
-
id?: number | null;
|
|
1965
2048
|
lastUpdate?: Date | null;
|
|
1966
2049
|
kod?: string | null;
|
|
1967
2050
|
nazev?: string | null;
|
|
@@ -1993,7 +2076,6 @@ declare class AFPredpisZauctovani extends AFEntity {
|
|
|
1993
2076
|
static EntityPath: string;
|
|
1994
2077
|
static EntityName: string;
|
|
1995
2078
|
static EntityType: string;
|
|
1996
|
-
id?: number | null;
|
|
1997
2079
|
lastUpdate?: Date | null;
|
|
1998
2080
|
kod?: string | null;
|
|
1999
2081
|
nazev?: string | null;
|
|
@@ -2032,7 +2114,6 @@ declare class AFIntrastatDodaciPodminky extends AFEntity {
|
|
|
2032
2114
|
static EntityPath: string;
|
|
2033
2115
|
static EntityName: string;
|
|
2034
2116
|
static EntityType: string;
|
|
2035
|
-
id?: number | null;
|
|
2036
2117
|
lastUpdate?: Date | null;
|
|
2037
2118
|
kod?: string | null;
|
|
2038
2119
|
nazev?: string | null;
|
|
@@ -2053,7 +2134,6 @@ declare class AFIntrastatZvlastniPohyb extends AFEntity {
|
|
|
2053
2134
|
static EntityPath: string;
|
|
2054
2135
|
static EntityName: string;
|
|
2055
2136
|
static EntityType: string;
|
|
2056
|
-
id?: number | null;
|
|
2057
2137
|
lastUpdate?: Date | null;
|
|
2058
2138
|
kod?: string | null;
|
|
2059
2139
|
nazev?: string | null;
|
|
@@ -2074,7 +2154,6 @@ declare class AFIntrastatObchodniTransakce extends AFEntity {
|
|
|
2074
2154
|
static EntityPath: string;
|
|
2075
2155
|
static EntityName: string;
|
|
2076
2156
|
static EntityType: string;
|
|
2077
|
-
id?: number | null;
|
|
2078
2157
|
lastUpdate?: Date | null;
|
|
2079
2158
|
kod?: string | null;
|
|
2080
2159
|
nazev?: string | null;
|
|
@@ -2095,7 +2174,6 @@ declare class AFIntrastatDruhDopravy extends AFEntity {
|
|
|
2095
2174
|
static EntityPath: string;
|
|
2096
2175
|
static EntityName: string;
|
|
2097
2176
|
static EntityType: string;
|
|
2098
|
-
id?: number | null;
|
|
2099
2177
|
lastUpdate?: Date | null;
|
|
2100
2178
|
kod?: string | null;
|
|
2101
2179
|
nazev?: string | null;
|
|
@@ -2116,7 +2194,6 @@ declare class AFIntrastatKrajUrceni extends AFEntity {
|
|
|
2116
2194
|
static EntityPath: string;
|
|
2117
2195
|
static EntityName: string;
|
|
2118
2196
|
static EntityType: string;
|
|
2119
|
-
id?: number | null;
|
|
2120
2197
|
lastUpdate?: Date | null;
|
|
2121
2198
|
kod?: string | null;
|
|
2122
2199
|
nazev?: string | null;
|
|
@@ -2137,7 +2214,6 @@ declare class AFSkupinaZbozi extends AFEntity {
|
|
|
2137
2214
|
static EntityPath: string;
|
|
2138
2215
|
static EntityName: string;
|
|
2139
2216
|
static EntityType: string;
|
|
2140
|
-
id?: number | null;
|
|
2141
2217
|
lastUpdate?: Date | null;
|
|
2142
2218
|
kod?: string | null;
|
|
2143
2219
|
nazev?: string | null;
|
|
@@ -2186,7 +2262,6 @@ declare class AFMernaJednotka extends AFEntity {
|
|
|
2186
2262
|
static EntityPath: string;
|
|
2187
2263
|
static EntityName: string;
|
|
2188
2264
|
static EntityType: string;
|
|
2189
|
-
id?: number | null;
|
|
2190
2265
|
lastUpdate?: Date | null;
|
|
2191
2266
|
kod?: string | null;
|
|
2192
2267
|
nazev?: string | null;
|
|
@@ -2213,7 +2288,6 @@ declare class AFIntrastatMernaJednotka extends AFEntity {
|
|
|
2213
2288
|
static EntityPath: string;
|
|
2214
2289
|
static EntityName: string;
|
|
2215
2290
|
static EntityType: string;
|
|
2216
|
-
id?: number | null;
|
|
2217
2291
|
lastUpdate?: Date | null;
|
|
2218
2292
|
kod?: string | null;
|
|
2219
2293
|
nazev?: string | null;
|
|
@@ -2234,7 +2308,6 @@ declare class AFIntrastatKodNomenklatury extends AFEntity {
|
|
|
2234
2308
|
static EntityPath: string;
|
|
2235
2309
|
static EntityName: string;
|
|
2236
2310
|
static EntityType: string;
|
|
2237
|
-
id?: number | null;
|
|
2238
2311
|
lastUpdate?: Date | null;
|
|
2239
2312
|
kod?: string | null;
|
|
2240
2313
|
nazev?: string | null;
|
|
@@ -2256,7 +2329,6 @@ declare class AFPreneseniDph extends AFEntity {
|
|
|
2256
2329
|
static EntityPath: string;
|
|
2257
2330
|
static EntityName: string;
|
|
2258
2331
|
static EntityType: string;
|
|
2259
|
-
id?: number | null;
|
|
2260
2332
|
lastUpdate?: Date | null;
|
|
2261
2333
|
kod?: string | null;
|
|
2262
2334
|
nazev?: string | null;
|
|
@@ -2278,7 +2350,6 @@ declare class AFCenikovaSkupina extends AFEntity {
|
|
|
2278
2350
|
static EntityPath: string;
|
|
2279
2351
|
static EntityName: string;
|
|
2280
2352
|
static EntityType: string;
|
|
2281
|
-
id?: number | null;
|
|
2282
2353
|
lastUpdate?: Date | null;
|
|
2283
2354
|
kod?: string | null;
|
|
2284
2355
|
nazev?: string | null;
|
|
@@ -2299,7 +2370,6 @@ declare class AFOdberatel extends AFEntity {
|
|
|
2299
2370
|
static EntityPath: string;
|
|
2300
2371
|
static EntityName: string;
|
|
2301
2372
|
static EntityType: string;
|
|
2302
|
-
id?: number | null;
|
|
2303
2373
|
lastUpdate?: Date | null;
|
|
2304
2374
|
kodIndi?: string | null;
|
|
2305
2375
|
prodejCena?: Big | null;
|
|
@@ -2330,7 +2400,6 @@ declare class AFCenikObal extends AFEntity {
|
|
|
2330
2400
|
static EntityPath: string;
|
|
2331
2401
|
static EntityName: string;
|
|
2332
2402
|
static EntityType: string;
|
|
2333
|
-
id?: number | null;
|
|
2334
2403
|
lastUpdate?: Date | null;
|
|
2335
2404
|
nazev?: string | null;
|
|
2336
2405
|
nazevA?: string | null;
|
|
@@ -2362,7 +2431,6 @@ declare class AFTypAtributu extends AFEntity {
|
|
|
2362
2431
|
static EntityPath: string;
|
|
2363
2432
|
static EntityName: string;
|
|
2364
2433
|
static EntityType: string;
|
|
2365
|
-
id?: number | null;
|
|
2366
2434
|
lastUpdate?: Date | null;
|
|
2367
2435
|
kod?: string | null;
|
|
2368
2436
|
nazev?: string | null;
|
|
@@ -2389,7 +2457,6 @@ declare class AFAtribut extends AFEntity {
|
|
|
2389
2457
|
static EntityPath: string;
|
|
2390
2458
|
static EntityName: string;
|
|
2391
2459
|
static EntityType: string;
|
|
2392
|
-
id?: number | null;
|
|
2393
2460
|
lastUpdate?: Date | null;
|
|
2394
2461
|
valBoolean?: boolean | null;
|
|
2395
2462
|
valInteger?: number | null;
|
|
@@ -2415,7 +2482,6 @@ declare class AFUmisteniVeSkladu extends AFEntity {
|
|
|
2415
2482
|
static EntityPath: string;
|
|
2416
2483
|
static EntityName: string;
|
|
2417
2484
|
static EntityType: string;
|
|
2418
|
-
id?: number | null;
|
|
2419
2485
|
lastUpdate?: Date | null;
|
|
2420
2486
|
kod?: string | null;
|
|
2421
2487
|
nazev?: string | null;
|
|
@@ -2438,7 +2504,6 @@ declare class AFCenovaUroven extends AFEntity {
|
|
|
2438
2504
|
static EntityPath: string;
|
|
2439
2505
|
static EntityName: string;
|
|
2440
2506
|
static EntityType: string;
|
|
2441
|
-
id?: number | null;
|
|
2442
2507
|
lastUpdate?: Date | null;
|
|
2443
2508
|
kod?: string | null;
|
|
2444
2509
|
nazev?: string | null;
|
|
@@ -2486,7 +2551,6 @@ declare class AFVyrobniCislo extends AFEntity {
|
|
|
2486
2551
|
static EntityPath: string;
|
|
2487
2552
|
static EntityName: string;
|
|
2488
2553
|
static EntityType: string;
|
|
2489
|
-
id?: number | null;
|
|
2490
2554
|
kod?: string | null;
|
|
2491
2555
|
cenik?: AFCenik | null;
|
|
2492
2556
|
sklad?: AFSklad | null;
|
|
@@ -2511,7 +2575,6 @@ declare class AFSkladovyPohybPolozka extends AFEntity {
|
|
|
2511
2575
|
static EntityPath: string;
|
|
2512
2576
|
static EntityName: string;
|
|
2513
2577
|
static EntityType: string;
|
|
2514
|
-
id?: number | null;
|
|
2515
2578
|
lastUpdate?: Date | null;
|
|
2516
2579
|
updatedBy?: AFUzivatel | null;
|
|
2517
2580
|
createdBy?: AFUzivatel | null;
|
|
@@ -2604,7 +2667,6 @@ declare class AFSkladovaKarta extends AFEntity {
|
|
|
2604
2667
|
static EntityPath: string;
|
|
2605
2668
|
static EntityName: string;
|
|
2606
2669
|
static EntityType: string;
|
|
2607
|
-
id?: number | null;
|
|
2608
2670
|
lastUpdate?: Date | null;
|
|
2609
2671
|
prumCenaTuz?: Big | null;
|
|
2610
2672
|
prumCenaMen?: Big | null;
|
|
@@ -2659,7 +2721,6 @@ declare class AFSadyAKomplety extends AFEntity {
|
|
|
2659
2721
|
static EntityPath: string;
|
|
2660
2722
|
static EntityName: string;
|
|
2661
2723
|
static EntityType: string;
|
|
2662
|
-
id?: number | null;
|
|
2663
2724
|
lastUpdate?: Date | null;
|
|
2664
2725
|
mnozMj?: Big | null;
|
|
2665
2726
|
poznam?: string | null;
|
|
@@ -2675,7 +2736,6 @@ declare class AFPrislustenstvi extends AFEntity {
|
|
|
2675
2736
|
static EntityPath: string;
|
|
2676
2737
|
static EntityName: string;
|
|
2677
2738
|
static EntityType: string;
|
|
2678
|
-
id?: number | null;
|
|
2679
2739
|
lastUpdate?: Date | null;
|
|
2680
2740
|
poznam?: string | null;
|
|
2681
2741
|
cenikOtec?: AFCenik | null;
|
|
@@ -2690,7 +2750,6 @@ declare class AFPoplatek extends AFEntity {
|
|
|
2690
2750
|
static EntityPath: string;
|
|
2691
2751
|
static EntityName: string;
|
|
2692
2752
|
static EntityType: string;
|
|
2693
|
-
id?: number | null;
|
|
2694
2753
|
lastUpdate?: Date | null;
|
|
2695
2754
|
mnozMj?: Big | null;
|
|
2696
2755
|
poznam?: string | null;
|
|
@@ -2708,7 +2767,6 @@ declare class AFDodavatel extends AFEntity {
|
|
|
2708
2767
|
static EntityPath: string;
|
|
2709
2768
|
static EntityName: string;
|
|
2710
2769
|
static EntityType: string;
|
|
2711
|
-
id?: number | null;
|
|
2712
2770
|
lastUpdate?: Date | null;
|
|
2713
2771
|
kodIndi?: string | null;
|
|
2714
2772
|
nakupCena?: Big | null;
|
|
@@ -2739,7 +2797,6 @@ declare class AFStavCeniku extends AFEntity {
|
|
|
2739
2797
|
static EntityPath: string;
|
|
2740
2798
|
static EntityName: string;
|
|
2741
2799
|
static EntityType: string;
|
|
2742
|
-
id?: number | null;
|
|
2743
2800
|
lastUpdate?: Date | null;
|
|
2744
2801
|
kod?: string | null;
|
|
2745
2802
|
nazev?: string | null;
|
|
@@ -2764,7 +2821,6 @@ declare class AFPodobneZbozi extends AFEntity {
|
|
|
2764
2821
|
static EntityPath: string;
|
|
2765
2822
|
static EntityName: string;
|
|
2766
2823
|
static EntityType: string;
|
|
2767
|
-
id?: number | null;
|
|
2768
2824
|
lastUpdate?: Date | null;
|
|
2769
2825
|
poznam?: string | null;
|
|
2770
2826
|
cenikOtec?: AFCenik | null;
|
|
@@ -2779,7 +2835,6 @@ declare class AFStatDph extends AFEntity {
|
|
|
2779
2835
|
static EntityPath: string;
|
|
2780
2836
|
static EntityName: string;
|
|
2781
2837
|
static EntityType: string;
|
|
2782
|
-
id?: number | null;
|
|
2783
2838
|
lastUpdate?: Date | null;
|
|
2784
2839
|
kod?: string | null;
|
|
2785
2840
|
nazev?: string | null;
|
|
@@ -2809,7 +2864,6 @@ declare class AFCenikTypSazbyDph extends AFEntity {
|
|
|
2809
2864
|
static EntityPath: string;
|
|
2810
2865
|
static EntityName: string;
|
|
2811
2866
|
static EntityType: string;
|
|
2812
|
-
id?: number | null;
|
|
2813
2867
|
lastUpdate?: Date | null;
|
|
2814
2868
|
typSzbDphK?: TypSzbDph | null;
|
|
2815
2869
|
kodPlneniK?: KodPlneni | null;
|
|
@@ -2827,7 +2881,6 @@ declare class AFRezervace extends AFEntity {
|
|
|
2827
2881
|
static EntityPath: string;
|
|
2828
2882
|
static EntityName: string;
|
|
2829
2883
|
static EntityType: string;
|
|
2830
|
-
id?: number | null;
|
|
2831
2884
|
lastUpdate?: Date | null;
|
|
2832
2885
|
datumOd?: Date | null;
|
|
2833
2886
|
datumDo?: Date | null;
|
|
@@ -2849,7 +2902,6 @@ declare class AFCenik extends AFEntity {
|
|
|
2849
2902
|
static EntityPath: string;
|
|
2850
2903
|
static EntityName: string;
|
|
2851
2904
|
static EntityType: string;
|
|
2852
|
-
id?: number | null;
|
|
2853
2905
|
lastUpdate?: Date | null;
|
|
2854
2906
|
kod?: string | null;
|
|
2855
2907
|
nazev?: string | null;
|
|
@@ -2993,7 +3045,6 @@ declare class AFFormaDopravy extends AFEntity {
|
|
|
2993
3045
|
static EntityPath: string;
|
|
2994
3046
|
static EntityName: string;
|
|
2995
3047
|
static EntityType: string;
|
|
2996
|
-
id?: number | null;
|
|
2997
3048
|
lastUpdate?: Date | null;
|
|
2998
3049
|
kod?: string | null;
|
|
2999
3050
|
nazev?: string | null;
|
|
@@ -3033,7 +3084,6 @@ declare class AFSablonaMail extends AFEntity {
|
|
|
3033
3084
|
static EntityPath: string;
|
|
3034
3085
|
static EntityName: string;
|
|
3035
3086
|
static EntityType: string;
|
|
3036
|
-
id?: number | null;
|
|
3037
3087
|
lastUpdate?: Date | null;
|
|
3038
3088
|
kod?: string | null;
|
|
3039
3089
|
nazev?: string | null;
|
|
@@ -3056,7 +3106,6 @@ declare class AFTypDokladu extends AFEntity {
|
|
|
3056
3106
|
static EntityPath: string;
|
|
3057
3107
|
static EntityName: string;
|
|
3058
3108
|
static EntityType: string;
|
|
3059
|
-
id?: number | null;
|
|
3060
3109
|
lastUpdate?: Date | null;
|
|
3061
3110
|
kod?: string | null;
|
|
3062
3111
|
nazev?: string | null;
|
|
@@ -3091,7 +3140,6 @@ declare class AFAutotisk extends AFEntity {
|
|
|
3091
3140
|
static EntityPath: string;
|
|
3092
3141
|
static EntityName: string;
|
|
3093
3142
|
static EntityType: string;
|
|
3094
|
-
id?: number | null;
|
|
3095
3143
|
lastUpdate?: Date | null;
|
|
3096
3144
|
pocet?: number | null;
|
|
3097
3145
|
typTiskDoklK?: any | null;
|
|
@@ -3109,7 +3157,6 @@ declare class AFTypSkladovyPohyb extends AFEntity {
|
|
|
3109
3157
|
static EntityPath: string;
|
|
3110
3158
|
static EntityName: string;
|
|
3111
3159
|
static EntityType: string;
|
|
3112
|
-
id?: number | null;
|
|
3113
3160
|
lastUpdate?: Date | null;
|
|
3114
3161
|
kod?: string | null;
|
|
3115
3162
|
nazev?: string | null;
|
|
@@ -3164,7 +3211,6 @@ declare class AFInventuraPolozka extends AFEntity {
|
|
|
3164
3211
|
static EntityPath: string;
|
|
3165
3212
|
static EntityName: string;
|
|
3166
3213
|
static EntityType: string;
|
|
3167
|
-
id?: number | null;
|
|
3168
3214
|
lastUpdate?: Date | null;
|
|
3169
3215
|
mnozMjReal?: Big | null;
|
|
3170
3216
|
mnozMjKarta?: Big | null;
|
|
@@ -3198,7 +3244,6 @@ declare class AFInventura extends AFEntity {
|
|
|
3198
3244
|
static EntityPath: string;
|
|
3199
3245
|
static EntityName: string;
|
|
3200
3246
|
static EntityType: string;
|
|
3201
|
-
id?: number | null;
|
|
3202
3247
|
lastUpdate?: Date | null;
|
|
3203
3248
|
popisInventury?: string | null;
|
|
3204
3249
|
typInventury?: string | null;
|
|
@@ -3256,7 +3301,6 @@ declare class AFVazba extends AFEntity {
|
|
|
3256
3301
|
static EntityPath: string;
|
|
3257
3302
|
static EntityName: string;
|
|
3258
3303
|
static EntityType: string;
|
|
3259
|
-
id?: number | null;
|
|
3260
3304
|
typVazbyK?: TypVazbyDokl | null;
|
|
3261
3305
|
castka?: Big | null;
|
|
3262
3306
|
storno?: boolean | null;
|
|
@@ -3268,7 +3312,6 @@ declare class AFSkladovyPohyb extends AFEntity {
|
|
|
3268
3312
|
static EntityPath: string;
|
|
3269
3313
|
static EntityName: string;
|
|
3270
3314
|
static EntityType: string;
|
|
3271
|
-
id?: number | null;
|
|
3272
3315
|
lastUpdate?: Date | null;
|
|
3273
3316
|
updatedBy?: AFUzivatel | null;
|
|
3274
3317
|
createdBy?: AFUzivatel | null;
|
|
@@ -3372,7 +3415,6 @@ declare class AFFormaUhradyZauctovani extends AFEntity {
|
|
|
3372
3415
|
static EntityPath: string;
|
|
3373
3416
|
static EntityName: string;
|
|
3374
3417
|
static EntityType: string;
|
|
3375
|
-
id?: number | null;
|
|
3376
3418
|
lastUpdate?: Date | null;
|
|
3377
3419
|
formaUhradyCis?: AFFormaUhrady | null;
|
|
3378
3420
|
typDokl?: AFTypDokladu | null;
|
|
@@ -3387,7 +3429,6 @@ declare class AFFormaUhrady extends AFEntity {
|
|
|
3387
3429
|
static EntityPath: string;
|
|
3388
3430
|
static EntityName: string;
|
|
3389
3431
|
static EntityType: string;
|
|
3390
|
-
id?: number | null;
|
|
3391
3432
|
lastUpdate?: Date | null;
|
|
3392
3433
|
kod?: string | null;
|
|
3393
3434
|
nazev?: string | null;
|
|
@@ -3420,7 +3461,6 @@ declare class AFRadaFakturyVydane extends AFEntity {
|
|
|
3420
3461
|
static EntityPath: string;
|
|
3421
3462
|
static EntityName: string;
|
|
3422
3463
|
static EntityType: string;
|
|
3423
|
-
id?: number | null;
|
|
3424
3464
|
lastUpdate?: Date | null;
|
|
3425
3465
|
kod?: string | null;
|
|
3426
3466
|
nazev?: string | null;
|
|
@@ -3443,7 +3483,6 @@ declare class AFRadaBanka extends AFEntity {
|
|
|
3443
3483
|
static EntityPath: string;
|
|
3444
3484
|
static EntityName: string;
|
|
3445
3485
|
static EntityType: string;
|
|
3446
|
-
id?: number | null;
|
|
3447
3486
|
lastUpdate?: Date | null;
|
|
3448
3487
|
kod?: string | null;
|
|
3449
3488
|
nazev?: string | null;
|
|
@@ -3466,7 +3505,6 @@ declare class AFPenezniUstav extends AFEntity {
|
|
|
3466
3505
|
static EntityPath: string;
|
|
3467
3506
|
static EntityName: string;
|
|
3468
3507
|
static EntityType: string;
|
|
3469
|
-
id?: number | null;
|
|
3470
3508
|
lastUpdate?: Date | null;
|
|
3471
3509
|
kod?: string | null;
|
|
3472
3510
|
nazev?: string | null;
|
|
@@ -3487,7 +3525,6 @@ declare class AFFormatElektronickehoBankovnictvi extends AFEntity {
|
|
|
3487
3525
|
static EntityPath: string;
|
|
3488
3526
|
static EntityName: string;
|
|
3489
3527
|
static EntityType: string;
|
|
3490
|
-
id?: number | null;
|
|
3491
3528
|
lastUpdate?: Date | null;
|
|
3492
3529
|
kod?: string | null;
|
|
3493
3530
|
nazev?: string | null;
|
|
@@ -3509,7 +3546,6 @@ declare class AFFormatElektronickehoPrikazu extends AFEntity {
|
|
|
3509
3546
|
static EntityPath: string;
|
|
3510
3547
|
static EntityName: string;
|
|
3511
3548
|
static EntityType: string;
|
|
3512
|
-
id?: number | null;
|
|
3513
3549
|
lastUpdate?: Date | null;
|
|
3514
3550
|
kod?: string | null;
|
|
3515
3551
|
nazev?: string | null;
|
|
@@ -3536,7 +3572,6 @@ declare class AFBankovniUcet extends AFEntity {
|
|
|
3536
3572
|
static EntityPath: string;
|
|
3537
3573
|
static EntityName: string;
|
|
3538
3574
|
static EntityType: string;
|
|
3539
|
-
id?: number | null;
|
|
3540
3575
|
lastUpdate?: Date | null;
|
|
3541
3576
|
kod?: string | null;
|
|
3542
3577
|
nazev?: string | null;
|
|
@@ -3601,7 +3636,6 @@ declare class AFKonstSymbol extends AFEntity {
|
|
|
3601
3636
|
static EntityPath: string;
|
|
3602
3637
|
static EntityName: string;
|
|
3603
3638
|
static EntityType: string;
|
|
3604
|
-
id?: number | null;
|
|
3605
3639
|
lastUpdate?: Date | null;
|
|
3606
3640
|
kod?: string | null;
|
|
3607
3641
|
nazev?: string | null;
|
|
@@ -3622,7 +3656,6 @@ declare class AFCleneniKontrolniHlaseni extends AFEntity {
|
|
|
3622
3656
|
static EntityPath: string;
|
|
3623
3657
|
static EntityName: string;
|
|
3624
3658
|
static EntityType: string;
|
|
3625
|
-
id?: number | null;
|
|
3626
3659
|
lastUpdate?: Date | null;
|
|
3627
3660
|
kod?: string | null;
|
|
3628
3661
|
nazev?: string | null;
|
|
@@ -3649,7 +3682,6 @@ declare class AFTypFakturyVydane extends AFEntity {
|
|
|
3649
3682
|
static EntityPath: string;
|
|
3650
3683
|
static EntityName: string;
|
|
3651
3684
|
static EntityType: string;
|
|
3652
|
-
id?: number | null;
|
|
3653
3685
|
lastUpdate?: Date | null;
|
|
3654
3686
|
kod?: string | null;
|
|
3655
3687
|
nazev?: string | null;
|
|
@@ -3727,7 +3759,6 @@ declare class AFRadaFakturyPrijate extends AFEntity {
|
|
|
3727
3759
|
static EntityPath: string;
|
|
3728
3760
|
static EntityName: string;
|
|
3729
3761
|
static EntityType: string;
|
|
3730
|
-
id?: number | null;
|
|
3731
3762
|
lastUpdate?: Date | null;
|
|
3732
3763
|
kod?: string | null;
|
|
3733
3764
|
nazev?: string | null;
|
|
@@ -3750,7 +3781,6 @@ declare class AFTypFakturyPrijate extends AFEntity {
|
|
|
3750
3781
|
static EntityPath: string;
|
|
3751
3782
|
static EntityName: string;
|
|
3752
3783
|
static EntityType: string;
|
|
3753
|
-
id?: number | null;
|
|
3754
3784
|
lastUpdate?: Date | null;
|
|
3755
3785
|
kod?: string | null;
|
|
3756
3786
|
nazev?: string | null;
|
|
@@ -3812,7 +3842,6 @@ declare class AFRadaNabidkyVydane extends AFEntity {
|
|
|
3812
3842
|
static EntityPath: string;
|
|
3813
3843
|
static EntityName: string;
|
|
3814
3844
|
static EntityType: string;
|
|
3815
|
-
id?: number | null;
|
|
3816
3845
|
lastUpdate?: Date | null;
|
|
3817
3846
|
kod?: string | null;
|
|
3818
3847
|
nazev?: string | null;
|
|
@@ -3835,7 +3864,6 @@ declare class AFTypNabidkyVydane extends AFEntity {
|
|
|
3835
3864
|
static EntityPath: string;
|
|
3836
3865
|
static EntityName: string;
|
|
3837
3866
|
static EntityType: string;
|
|
3838
|
-
id?: number | null;
|
|
3839
3867
|
lastUpdate?: Date | null;
|
|
3840
3868
|
kod?: string | null;
|
|
3841
3869
|
nazev?: string | null;
|
|
@@ -3877,7 +3905,6 @@ declare class AFRadaObjednavkyPrijate extends AFEntity {
|
|
|
3877
3905
|
static EntityPath: string;
|
|
3878
3906
|
static EntityName: string;
|
|
3879
3907
|
static EntityType: string;
|
|
3880
|
-
id?: number | null;
|
|
3881
3908
|
lastUpdate?: Date | null;
|
|
3882
3909
|
kod?: string | null;
|
|
3883
3910
|
nazev?: string | null;
|
|
@@ -3900,7 +3927,6 @@ declare class AFTypObjednavkyPrijate extends AFEntity {
|
|
|
3900
3927
|
static EntityPath: string;
|
|
3901
3928
|
static EntityName: string;
|
|
3902
3929
|
static EntityType: string;
|
|
3903
|
-
id?: number | null;
|
|
3904
3930
|
lastUpdate?: Date | null;
|
|
3905
3931
|
kod?: string | null;
|
|
3906
3932
|
nazev?: string | null;
|
|
@@ -3956,7 +3982,6 @@ declare class AFRadaPoptavkyVydane extends AFEntity {
|
|
|
3956
3982
|
static EntityPath: string;
|
|
3957
3983
|
static EntityName: string;
|
|
3958
3984
|
static EntityType: string;
|
|
3959
|
-
id?: number | null;
|
|
3960
3985
|
lastUpdate?: Date | null;
|
|
3961
3986
|
kod?: string | null;
|
|
3962
3987
|
nazev?: string | null;
|
|
@@ -3979,7 +4004,6 @@ declare class AFTypPoptavkyVydane extends AFEntity {
|
|
|
3979
4004
|
static EntityPath: string;
|
|
3980
4005
|
static EntityName: string;
|
|
3981
4006
|
static EntityType: string;
|
|
3982
|
-
id?: number | null;
|
|
3983
4007
|
lastUpdate?: Date | null;
|
|
3984
4008
|
kod?: string | null;
|
|
3985
4009
|
nazev?: string | null;
|
|
@@ -4019,7 +4043,6 @@ declare class AFRadaNabidkyPrijate extends AFEntity {
|
|
|
4019
4043
|
static EntityPath: string;
|
|
4020
4044
|
static EntityName: string;
|
|
4021
4045
|
static EntityType: string;
|
|
4022
|
-
id?: number | null;
|
|
4023
4046
|
lastUpdate?: Date | null;
|
|
4024
4047
|
kod?: string | null;
|
|
4025
4048
|
nazev?: string | null;
|
|
@@ -4042,7 +4065,6 @@ declare class AFTypNabidkyPrijate extends AFEntity {
|
|
|
4042
4065
|
static EntityPath: string;
|
|
4043
4066
|
static EntityName: string;
|
|
4044
4067
|
static EntityType: string;
|
|
4045
|
-
id?: number | null;
|
|
4046
4068
|
lastUpdate?: Date | null;
|
|
4047
4069
|
kod?: string | null;
|
|
4048
4070
|
nazev?: string | null;
|
|
@@ -4081,7 +4103,6 @@ declare class AFRadaObjednavkyVydane extends AFEntity {
|
|
|
4081
4103
|
static EntityPath: string;
|
|
4082
4104
|
static EntityName: string;
|
|
4083
4105
|
static EntityType: string;
|
|
4084
|
-
id?: number | null;
|
|
4085
4106
|
lastUpdate?: Date | null;
|
|
4086
4107
|
kod?: string | null;
|
|
4087
4108
|
nazev?: string | null;
|
|
@@ -4104,7 +4125,6 @@ declare class AFTypObjednavkyVydane extends AFEntity {
|
|
|
4104
4125
|
static EntityPath: string;
|
|
4105
4126
|
static EntityName: string;
|
|
4106
4127
|
static EntityType: string;
|
|
4107
|
-
id?: number | null;
|
|
4108
4128
|
lastUpdate?: Date | null;
|
|
4109
4129
|
kod?: string | null;
|
|
4110
4130
|
nazev?: string | null;
|
|
@@ -4147,7 +4167,6 @@ declare class AFRadaInternihoDokladu extends AFEntity {
|
|
|
4147
4167
|
static EntityPath: string;
|
|
4148
4168
|
static EntityName: string;
|
|
4149
4169
|
static EntityType: string;
|
|
4150
|
-
id?: number | null;
|
|
4151
4170
|
lastUpdate?: Date | null;
|
|
4152
4171
|
kod?: string | null;
|
|
4153
4172
|
nazev?: string | null;
|
|
@@ -4170,7 +4189,6 @@ declare class AFTypInternihoDokladu extends AFEntity {
|
|
|
4170
4189
|
static EntityPath: string;
|
|
4171
4190
|
static EntityName: string;
|
|
4172
4191
|
static EntityType: string;
|
|
4173
|
-
id?: number | null;
|
|
4174
4192
|
lastUpdate?: Date | null;
|
|
4175
4193
|
kod?: string | null;
|
|
4176
4194
|
nazev?: string | null;
|
|
@@ -4211,7 +4229,6 @@ declare class AFRadaPohledavky extends AFEntity {
|
|
|
4211
4229
|
static EntityPath: string;
|
|
4212
4230
|
static EntityName: string;
|
|
4213
4231
|
static EntityType: string;
|
|
4214
|
-
id?: number | null;
|
|
4215
4232
|
lastUpdate?: Date | null;
|
|
4216
4233
|
kod?: string | null;
|
|
4217
4234
|
nazev?: string | null;
|
|
@@ -4234,7 +4251,6 @@ declare class AFTypPohledavky extends AFEntity {
|
|
|
4234
4251
|
static EntityPath: string;
|
|
4235
4252
|
static EntityName: string;
|
|
4236
4253
|
static EntityType: string;
|
|
4237
|
-
id?: number | null;
|
|
4238
4254
|
lastUpdate?: Date | null;
|
|
4239
4255
|
kod?: string | null;
|
|
4240
4256
|
nazev?: string | null;
|
|
@@ -4290,7 +4306,6 @@ declare class AFRadaZavazku extends AFEntity {
|
|
|
4290
4306
|
static EntityPath: string;
|
|
4291
4307
|
static EntityName: string;
|
|
4292
4308
|
static EntityType: string;
|
|
4293
|
-
id?: number | null;
|
|
4294
4309
|
lastUpdate?: Date | null;
|
|
4295
4310
|
kod?: string | null;
|
|
4296
4311
|
nazev?: string | null;
|
|
@@ -4313,7 +4328,6 @@ declare class AFTypZavazku extends AFEntity {
|
|
|
4313
4328
|
static EntityPath: string;
|
|
4314
4329
|
static EntityName: string;
|
|
4315
4330
|
static EntityType: string;
|
|
4316
|
-
id?: number | null;
|
|
4317
4331
|
lastUpdate?: Date | null;
|
|
4318
4332
|
kod?: string | null;
|
|
4319
4333
|
nazev?: string | null;
|
|
@@ -4369,7 +4383,6 @@ declare class AFRadaPokladniPohyb extends AFEntity {
|
|
|
4369
4383
|
static EntityPath: string;
|
|
4370
4384
|
static EntityName: string;
|
|
4371
4385
|
static EntityType: string;
|
|
4372
|
-
id?: number | null;
|
|
4373
4386
|
lastUpdate?: Date | null;
|
|
4374
4387
|
kod?: string | null;
|
|
4375
4388
|
nazev?: string | null;
|
|
@@ -4392,7 +4405,6 @@ declare class AFPokladna extends AFEntity {
|
|
|
4392
4405
|
static EntityPath: string;
|
|
4393
4406
|
static EntityName: string;
|
|
4394
4407
|
static EntityType: string;
|
|
4395
|
-
id?: number | null;
|
|
4396
4408
|
lastUpdate?: Date | null;
|
|
4397
4409
|
kod?: string | null;
|
|
4398
4410
|
nazev?: string | null;
|
|
@@ -4423,7 +4435,6 @@ declare class AFTypPokladniPohyb extends AFEntity {
|
|
|
4423
4435
|
static EntityPath: string;
|
|
4424
4436
|
static EntityName: string;
|
|
4425
4437
|
static EntityType: string;
|
|
4426
|
-
id?: number | null;
|
|
4427
4438
|
lastUpdate?: Date | null;
|
|
4428
4439
|
kod?: string | null;
|
|
4429
4440
|
nazev?: string | null;
|
|
@@ -4488,7 +4499,6 @@ declare class AFTypBanka extends AFEntity {
|
|
|
4488
4499
|
static EntityPath: string;
|
|
4489
4500
|
static EntityName: string;
|
|
4490
4501
|
static EntityType: string;
|
|
4491
|
-
id?: number | null;
|
|
4492
4502
|
lastUpdate?: Date | null;
|
|
4493
4503
|
kod?: string | null;
|
|
4494
4504
|
nazev?: string | null;
|
|
@@ -4533,7 +4543,6 @@ declare class AFAdresarBankovniUcet extends AFEntity {
|
|
|
4533
4543
|
static EntityPath: string;
|
|
4534
4544
|
static EntityName: string;
|
|
4535
4545
|
static EntityType: string;
|
|
4536
|
-
id?: number | null;
|
|
4537
4546
|
lastUpdate?: Date | null;
|
|
4538
4547
|
ulice?: string | null;
|
|
4539
4548
|
mesto?: string | null;
|
|
@@ -4563,7 +4572,6 @@ declare class AFNastaveni extends AFEntity {
|
|
|
4563
4572
|
static EntityPath: string;
|
|
4564
4573
|
static EntityName: string;
|
|
4565
4574
|
static EntityType: string;
|
|
4566
|
-
id?: number | null;
|
|
4567
4575
|
lastUpdate?: Date | null;
|
|
4568
4576
|
platiOdData?: Date | null;
|
|
4569
4577
|
nazFirmy?: string | null;
|
|
@@ -4787,7 +4795,6 @@ declare class AFReport extends AFEntity {
|
|
|
4787
4795
|
static EntityPath: string;
|
|
4788
4796
|
static EntityName: string;
|
|
4789
4797
|
static EntityType: string;
|
|
4790
|
-
id?: number | null;
|
|
4791
4798
|
lastUpdate?: Date | null;
|
|
4792
4799
|
kod?: string | null;
|
|
4793
4800
|
nazev?: string | null;
|
|
@@ -4815,7 +4822,6 @@ declare class AFTypSmlouvy extends AFEntity {
|
|
|
4815
4822
|
static EntityPath: string;
|
|
4816
4823
|
static EntityName: string;
|
|
4817
4824
|
static EntityType: string;
|
|
4818
|
-
id?: number | null;
|
|
4819
4825
|
lastUpdate?: Date | null;
|
|
4820
4826
|
kod?: string | null;
|
|
4821
4827
|
nazev?: string | null;
|
|
@@ -4855,7 +4861,6 @@ declare class AFStavSmlouvy extends AFEntity {
|
|
|
4855
4861
|
static EntityPath: string;
|
|
4856
4862
|
static EntityName: string;
|
|
4857
4863
|
static EntityType: string;
|
|
4858
|
-
id?: number | null;
|
|
4859
4864
|
lastUpdate?: Date | null;
|
|
4860
4865
|
kod?: string | null;
|
|
4861
4866
|
nazev?: string | null;
|
|
@@ -4877,7 +4882,6 @@ declare class AFSmlouvaPolozka extends AFEntity {
|
|
|
4877
4882
|
static EntityPath: string;
|
|
4878
4883
|
static EntityName: string;
|
|
4879
4884
|
static EntityType: string;
|
|
4880
|
-
id?: number | null;
|
|
4881
4885
|
lastUpdate?: Date | null;
|
|
4882
4886
|
kod?: string | null;
|
|
4883
4887
|
nazev?: string | null;
|
|
@@ -4935,7 +4939,6 @@ declare class AFSmlouva extends AFEntity {
|
|
|
4935
4939
|
static EntityPath: string;
|
|
4936
4940
|
static EntityName: string;
|
|
4937
4941
|
static EntityType: string;
|
|
4938
|
-
id?: number | null;
|
|
4939
4942
|
lastUpdate?: Date | null;
|
|
4940
4943
|
kod?: string | null;
|
|
4941
4944
|
nazev?: string | null;
|
|
@@ -5004,7 +5007,6 @@ declare class AFStromKoren extends AFEntity {
|
|
|
5004
5007
|
static EntityPath: string;
|
|
5005
5008
|
static EntityName: string;
|
|
5006
5009
|
static EntityType: string;
|
|
5007
|
-
id?: number | null;
|
|
5008
5010
|
lastUpdate?: Date | null;
|
|
5009
5011
|
kod?: string | null;
|
|
5010
5012
|
nazev?: string | null;
|
|
@@ -5027,7 +5029,6 @@ declare class AFStrom extends AFEntity {
|
|
|
5027
5029
|
static EntityPath: string;
|
|
5028
5030
|
static EntityName: string;
|
|
5029
5031
|
static EntityType: string;
|
|
5030
|
-
id?: number | null;
|
|
5031
5032
|
lastUpdate?: Date | null;
|
|
5032
5033
|
kod?: string | null;
|
|
5033
5034
|
nazev?: string | null;
|
|
@@ -5055,7 +5056,6 @@ declare class AFPriloha extends AFEntity {
|
|
|
5055
5056
|
static EntityPath: string;
|
|
5056
5057
|
static EntityName: string;
|
|
5057
5058
|
static EntityType: string;
|
|
5058
|
-
id?: number | null;
|
|
5059
5059
|
lastUpdate?: Date | null;
|
|
5060
5060
|
nazSoub?: string | null;
|
|
5061
5061
|
poznam?: string | null;
|
|
@@ -5097,7 +5097,6 @@ declare class AFZakazka extends AFEntity {
|
|
|
5097
5097
|
static EntityPath: string;
|
|
5098
5098
|
static EntityName: string;
|
|
5099
5099
|
static EntityType: string;
|
|
5100
|
-
id?: number | null;
|
|
5101
5100
|
lastUpdate?: Date | null;
|
|
5102
5101
|
kod?: string | null;
|
|
5103
5102
|
nazev?: string | null;
|
|
@@ -5150,7 +5149,6 @@ declare class AFOdpisovaSkupina extends AFEntity {
|
|
|
5150
5149
|
static EntityPath: string;
|
|
5151
5150
|
static EntityName: string;
|
|
5152
5151
|
static EntityType: string;
|
|
5153
|
-
id?: number | null;
|
|
5154
5152
|
lastUpdate?: Date | null;
|
|
5155
5153
|
kod?: string | null;
|
|
5156
5154
|
nazev?: string | null;
|
|
@@ -5182,7 +5180,6 @@ declare class AFUmisteni extends AFEntity {
|
|
|
5182
5180
|
static EntityPath: string;
|
|
5183
5181
|
static EntityName: string;
|
|
5184
5182
|
static EntityType: string;
|
|
5185
|
-
id?: number | null;
|
|
5186
5183
|
lastUpdate?: Date | null;
|
|
5187
5184
|
kod?: string | null;
|
|
5188
5185
|
nazev?: string | null;
|
|
@@ -5203,7 +5200,6 @@ declare class AFTypMajetku extends AFEntity {
|
|
|
5203
5200
|
static EntityPath: string;
|
|
5204
5201
|
static EntityName: string;
|
|
5205
5202
|
static EntityType: string;
|
|
5206
|
-
id?: number | null;
|
|
5207
5203
|
lastUpdate?: Date | null;
|
|
5208
5204
|
kod?: string | null;
|
|
5209
5205
|
nazev?: string | null;
|
|
@@ -5235,7 +5231,6 @@ declare class AFCleneniDph extends AFEntity {
|
|
|
5235
5231
|
static EntityPath: string;
|
|
5236
5232
|
static EntityName: string;
|
|
5237
5233
|
static EntityType: string;
|
|
5238
|
-
id?: number | null;
|
|
5239
5234
|
lastUpdate?: Date | null;
|
|
5240
5235
|
kod?: string | null;
|
|
5241
5236
|
nazev?: string | null;
|
|
@@ -5264,7 +5259,6 @@ declare class AFSazbaDph extends AFEntity {
|
|
|
5264
5259
|
static EntityPath: string;
|
|
5265
5260
|
static EntityName: string;
|
|
5266
5261
|
static EntityType: string;
|
|
5267
|
-
id?: number | null;
|
|
5268
5262
|
lastUpdate?: Date | null;
|
|
5269
5263
|
typSzbDphK?: TypSzbDph | null;
|
|
5270
5264
|
szbDph?: Big | null;
|
|
@@ -5283,7 +5277,6 @@ declare class AFDodavatelskyTypSmlouvy extends AFEntity {
|
|
|
5283
5277
|
static EntityPath: string;
|
|
5284
5278
|
static EntityName: string;
|
|
5285
5279
|
static EntityType: string;
|
|
5286
|
-
id?: number | null;
|
|
5287
5280
|
lastUpdate?: Date | null;
|
|
5288
5281
|
kod?: string | null;
|
|
5289
5282
|
nazev?: string | null;
|
|
@@ -5317,7 +5310,6 @@ declare class AFDodavatelskaSmlouva extends AFEntity {
|
|
|
5317
5310
|
static EntityPath: string;
|
|
5318
5311
|
static EntityName: string;
|
|
5319
5312
|
static EntityType: string;
|
|
5320
|
-
id?: number | null;
|
|
5321
5313
|
lastUpdate?: Date | null;
|
|
5322
5314
|
kod?: string | null;
|
|
5323
5315
|
nazev?: string | null;
|
|
@@ -5383,7 +5375,6 @@ declare class AFSkupinaPlneni extends AFEntity {
|
|
|
5383
5375
|
static EntityPath: string;
|
|
5384
5376
|
static EntityName: string;
|
|
5385
5377
|
static EntityType: string;
|
|
5386
|
-
id?: number | null;
|
|
5387
5378
|
lastUpdate?: Date | null;
|
|
5388
5379
|
kod?: string | null;
|
|
5389
5380
|
nazev?: string | null;
|
|
@@ -5404,7 +5395,6 @@ declare class AFFakturaPrijataPolozka extends AFEntity {
|
|
|
5404
5395
|
static EntityPath: string;
|
|
5405
5396
|
static EntityName: string;
|
|
5406
5397
|
static EntityType: string;
|
|
5407
|
-
id?: number | null;
|
|
5408
5398
|
lastUpdate?: Date | null;
|
|
5409
5399
|
updatedBy?: AFUzivatel | null;
|
|
5410
5400
|
createdBy?: AFUzivatel | null;
|
|
@@ -5578,7 +5568,6 @@ declare class AFFakturaPrijata extends AFEntity {
|
|
|
5578
5568
|
static EntityPath: string;
|
|
5579
5569
|
static EntityName: string;
|
|
5580
5570
|
static EntityType: string;
|
|
5581
|
-
id?: number | null;
|
|
5582
5571
|
lastUpdate?: Date | null;
|
|
5583
5572
|
updatedBy?: AFUzivatel | null;
|
|
5584
5573
|
createdBy?: AFUzivatel | null;
|
|
@@ -5751,7 +5740,6 @@ declare class AFDanovyOdpis extends AFEntity {
|
|
|
5751
5740
|
static EntityPath: string;
|
|
5752
5741
|
static EntityName: string;
|
|
5753
5742
|
static EntityType: string;
|
|
5754
|
-
id?: number | null;
|
|
5755
5743
|
ucetni?: boolean | null;
|
|
5756
5744
|
zmena?: boolean | null;
|
|
5757
5745
|
datVyst?: Date | null;
|
|
@@ -5778,7 +5766,6 @@ declare class AFUcetniOdpis extends AFEntity {
|
|
|
5778
5766
|
static EntityPath: string;
|
|
5779
5767
|
static EntityName: string;
|
|
5780
5768
|
static EntityType: string;
|
|
5781
|
-
id?: number | null;
|
|
5782
5769
|
ucetni?: boolean | null;
|
|
5783
5770
|
zmena?: boolean | null;
|
|
5784
5771
|
datVyst?: Date | null;
|
|
@@ -5804,7 +5791,6 @@ declare class AFMajetekUdalost extends AFEntity {
|
|
|
5804
5791
|
static EntityPath: string;
|
|
5805
5792
|
static EntityName: string;
|
|
5806
5793
|
static EntityType: string;
|
|
5807
|
-
id?: number | null;
|
|
5808
5794
|
lastUpdate?: Date | null;
|
|
5809
5795
|
ucetni?: boolean | null;
|
|
5810
5796
|
typUdalostiK?: TypUdal | null;
|
|
@@ -5839,7 +5825,6 @@ declare class AFTypLeasingu extends AFEntity {
|
|
|
5839
5825
|
static EntityPath: string;
|
|
5840
5826
|
static EntityName: string;
|
|
5841
5827
|
static EntityType: string;
|
|
5842
|
-
id?: number | null;
|
|
5843
5828
|
lastUpdate?: Date | null;
|
|
5844
5829
|
kod?: string | null;
|
|
5845
5830
|
nazev?: string | null;
|
|
@@ -5870,7 +5855,6 @@ declare class AFSplatkovyKalendar extends AFEntity {
|
|
|
5870
5855
|
static EntityPath: string;
|
|
5871
5856
|
static EntityName: string;
|
|
5872
5857
|
static EntityType: string;
|
|
5873
|
-
id?: number | null;
|
|
5874
5858
|
lastUpdate?: Date | null;
|
|
5875
5859
|
ucetni?: boolean | null;
|
|
5876
5860
|
clenSplK?: ClenSpl | null;
|
|
@@ -5907,7 +5891,6 @@ declare class AFDanovyNaklad extends AFEntity {
|
|
|
5907
5891
|
static EntityPath: string;
|
|
5908
5892
|
static EntityName: string;
|
|
5909
5893
|
static EntityType: string;
|
|
5910
|
-
id?: number | null;
|
|
5911
5894
|
lastUpdate?: Date | null;
|
|
5912
5895
|
ucetni?: boolean | null;
|
|
5913
5896
|
datVyst?: Date | null;
|
|
@@ -5932,7 +5915,6 @@ declare class AFLeasing extends AFEntity {
|
|
|
5932
5915
|
static EntityPath: string;
|
|
5933
5916
|
static EntityName: string;
|
|
5934
5917
|
static EntityType: string;
|
|
5935
|
-
id?: number | null;
|
|
5936
5918
|
lastUpdate?: Date | null;
|
|
5937
5919
|
kod?: string | null;
|
|
5938
5920
|
nazev?: string | null;
|
|
@@ -5995,7 +5977,6 @@ declare class AFZapujcka extends AFEntity {
|
|
|
5995
5977
|
static EntityPath: string;
|
|
5996
5978
|
static EntityName: string;
|
|
5997
5979
|
static EntityType: string;
|
|
5998
|
-
id?: number | null;
|
|
5999
5980
|
lastUpdate?: Date | null;
|
|
6000
5981
|
jmeno?: string | null;
|
|
6001
5982
|
prijmeni?: string | null;
|
|
@@ -6027,7 +6008,6 @@ declare class AFMajetek extends AFEntity {
|
|
|
6027
6008
|
static EntityPath: string;
|
|
6028
6009
|
static EntityName: string;
|
|
6029
6010
|
static EntityType: string;
|
|
6030
|
-
id?: number | null;
|
|
6031
6011
|
lastUpdate?: Date | null;
|
|
6032
6012
|
kod?: string | null;
|
|
6033
6013
|
nazev?: string | null;
|
|
@@ -6113,7 +6093,6 @@ declare class AFTypNakladu extends AFEntity {
|
|
|
6113
6093
|
static EntityPath: string;
|
|
6114
6094
|
static EntityName: string;
|
|
6115
6095
|
static EntityType: string;
|
|
6116
|
-
id?: number | null;
|
|
6117
6096
|
lastUpdate?: Date | null;
|
|
6118
6097
|
kod?: string | null;
|
|
6119
6098
|
nazev?: string | null;
|
|
@@ -6135,7 +6114,6 @@ declare class AFNaklad extends AFEntity {
|
|
|
6135
6114
|
static EntityPath: string;
|
|
6136
6115
|
static EntityName: string;
|
|
6137
6116
|
static EntityType: string;
|
|
6138
|
-
id?: number | null;
|
|
6139
6117
|
lastUpdate?: Date | null;
|
|
6140
6118
|
faktMnoz?: Big | null;
|
|
6141
6119
|
fakturovat?: boolean | null;
|
|
@@ -6157,7 +6135,6 @@ declare class AFUdalost extends AFEntity {
|
|
|
6157
6135
|
static EntityPath: string;
|
|
6158
6136
|
static EntityName: string;
|
|
6159
6137
|
static EntityType: string;
|
|
6160
|
-
id?: number | null;
|
|
6161
6138
|
lastUpdate?: Date | null;
|
|
6162
6139
|
popis?: string | null;
|
|
6163
6140
|
poznam?: string | null;
|
|
@@ -6205,7 +6182,6 @@ declare class AFUzivatel extends AFEntity {
|
|
|
6205
6182
|
static EntityPath: string;
|
|
6206
6183
|
static EntityName: string;
|
|
6207
6184
|
static EntityType: string;
|
|
6208
|
-
id?: number | null;
|
|
6209
6185
|
lastUpdate?: Date | null;
|
|
6210
6186
|
ulice?: string | null;
|
|
6211
6187
|
mesto?: string | null;
|
|
@@ -6248,7 +6224,6 @@ declare class AFAdresar extends AFEntity {
|
|
|
6248
6224
|
static EntityPath: string;
|
|
6249
6225
|
static EntityName: string;
|
|
6250
6226
|
static EntityType: string;
|
|
6251
|
-
id?: number | null;
|
|
6252
6227
|
lastUpdate?: Date | null;
|
|
6253
6228
|
kod?: string | null;
|
|
6254
6229
|
nazev?: string | null;
|
|
@@ -6336,7 +6311,6 @@ declare class AFStat extends AFEntity {
|
|
|
6336
6311
|
static EntityPath: string;
|
|
6337
6312
|
static EntityName: string;
|
|
6338
6313
|
static EntityType: string;
|
|
6339
|
-
id?: number | null;
|
|
6340
6314
|
lastUpdate?: Date | null;
|
|
6341
6315
|
kod?: string | null;
|
|
6342
6316
|
nazev?: string | null;
|
|
@@ -6366,7 +6340,6 @@ declare class AFKontakt extends AFEntity {
|
|
|
6366
6340
|
static EntityPath: string;
|
|
6367
6341
|
static EntityName: string;
|
|
6368
6342
|
static EntityType: string;
|
|
6369
|
-
id?: number | null;
|
|
6370
6343
|
lastUpdate?: Date | null;
|
|
6371
6344
|
ulice?: string | null;
|
|
6372
6345
|
mesto?: string | null;
|
|
@@ -6418,7 +6391,6 @@ declare class AFSmlouvaZurnal extends AFEntity {
|
|
|
6418
6391
|
static EntityPath: string;
|
|
6419
6392
|
static EntityName: string;
|
|
6420
6393
|
static EntityType: string;
|
|
6421
|
-
id?: number | null;
|
|
6422
6394
|
lastUpdate?: Date | null;
|
|
6423
6395
|
datCas?: Date | null;
|
|
6424
6396
|
transakceK?: OperaceZurnalSmlouvy | null;
|
|
@@ -6434,7 +6406,6 @@ declare class AFStavObchodnihoDokladu extends AFEntity {
|
|
|
6434
6406
|
static EntityPath: string;
|
|
6435
6407
|
static EntityName: string;
|
|
6436
6408
|
static EntityType: string;
|
|
6437
|
-
id?: number | null;
|
|
6438
6409
|
lastUpdate?: Date | null;
|
|
6439
6410
|
kod?: string | null;
|
|
6440
6411
|
nazev?: string | null;
|
|
@@ -6464,7 +6435,6 @@ declare class AFObjednavkaPrijataPolozka extends AFEntity {
|
|
|
6464
6435
|
static EntityPath: string;
|
|
6465
6436
|
static EntityName: string;
|
|
6466
6437
|
static EntityType: string;
|
|
6467
|
-
id?: number | null;
|
|
6468
6438
|
lastUpdate?: Date | null;
|
|
6469
6439
|
updatedBy?: AFUzivatel | null;
|
|
6470
6440
|
createdBy?: AFUzivatel | null;
|
|
@@ -6551,7 +6521,6 @@ declare class AFObjednavkaPrijata extends AFEntity {
|
|
|
6551
6521
|
static EntityPath: string;
|
|
6552
6522
|
static EntityName: string;
|
|
6553
6523
|
static EntityType: string;
|
|
6554
|
-
id?: number | null;
|
|
6555
6524
|
lastUpdate?: Date | null;
|
|
6556
6525
|
updatedBy?: AFUzivatel | null;
|
|
6557
6526
|
createdBy?: AFUzivatel | null;
|
|
@@ -6684,7 +6653,6 @@ declare class AFObjednavkaVydanaPolozka extends AFEntity {
|
|
|
6684
6653
|
static EntityPath: string;
|
|
6685
6654
|
static EntityName: string;
|
|
6686
6655
|
static EntityType: string;
|
|
6687
|
-
id?: number | null;
|
|
6688
6656
|
lastUpdate?: Date | null;
|
|
6689
6657
|
updatedBy?: AFUzivatel | null;
|
|
6690
6658
|
createdBy?: AFUzivatel | null;
|
|
@@ -6755,7 +6723,6 @@ declare class AFObjednavkaVydana extends AFEntity {
|
|
|
6755
6723
|
static EntityPath: string;
|
|
6756
6724
|
static EntityName: string;
|
|
6757
6725
|
static EntityType: string;
|
|
6758
|
-
id?: number | null;
|
|
6759
6726
|
lastUpdate?: Date | null;
|
|
6760
6727
|
updatedBy?: AFUzivatel | null;
|
|
6761
6728
|
createdBy?: AFUzivatel | null;
|
|
@@ -6868,7 +6835,6 @@ declare class AFPoptavkaVydanaPolozka extends AFEntity {
|
|
|
6868
6835
|
static EntityPath: string;
|
|
6869
6836
|
static EntityName: string;
|
|
6870
6837
|
static EntityType: string;
|
|
6871
|
-
id?: number | null;
|
|
6872
6838
|
lastUpdate?: Date | null;
|
|
6873
6839
|
updatedBy?: AFUzivatel | null;
|
|
6874
6840
|
createdBy?: AFUzivatel | null;
|
|
@@ -6933,7 +6899,6 @@ declare class AFPoptavkaVydana extends AFEntity {
|
|
|
6933
6899
|
static EntityPath: string;
|
|
6934
6900
|
static EntityName: string;
|
|
6935
6901
|
static EntityType: string;
|
|
6936
|
-
id?: number | null;
|
|
6937
6902
|
lastUpdate?: Date | null;
|
|
6938
6903
|
updatedBy?: AFUzivatel | null;
|
|
6939
6904
|
createdBy?: AFUzivatel | null;
|
|
@@ -7041,7 +7006,6 @@ declare class AFRadaPoptavkyPrijate extends AFEntity {
|
|
|
7041
7006
|
static EntityPath: string;
|
|
7042
7007
|
static EntityName: string;
|
|
7043
7008
|
static EntityType: string;
|
|
7044
|
-
id?: number | null;
|
|
7045
7009
|
lastUpdate?: Date | null;
|
|
7046
7010
|
kod?: string | null;
|
|
7047
7011
|
nazev?: string | null;
|
|
@@ -7064,7 +7028,6 @@ declare class AFTypPoptavkyPrijate extends AFEntity {
|
|
|
7064
7028
|
static EntityPath: string;
|
|
7065
7029
|
static EntityName: string;
|
|
7066
7030
|
static EntityType: string;
|
|
7067
|
-
id?: number | null;
|
|
7068
7031
|
lastUpdate?: Date | null;
|
|
7069
7032
|
kod?: string | null;
|
|
7070
7033
|
nazev?: string | null;
|
|
@@ -7104,7 +7067,6 @@ declare class AFPoptavkaPrijataPolozka extends AFEntity {
|
|
|
7104
7067
|
static EntityPath: string;
|
|
7105
7068
|
static EntityName: string;
|
|
7106
7069
|
static EntityType: string;
|
|
7107
|
-
id?: number | null;
|
|
7108
7070
|
lastUpdate?: Date | null;
|
|
7109
7071
|
updatedBy?: AFUzivatel | null;
|
|
7110
7072
|
createdBy?: AFUzivatel | null;
|
|
@@ -7182,7 +7144,6 @@ declare class AFPoptavkaPrijata extends AFEntity {
|
|
|
7182
7144
|
static EntityPath: string;
|
|
7183
7145
|
static EntityName: string;
|
|
7184
7146
|
static EntityType: string;
|
|
7185
|
-
id?: number | null;
|
|
7186
7147
|
lastUpdate?: Date | null;
|
|
7187
7148
|
updatedBy?: AFUzivatel | null;
|
|
7188
7149
|
createdBy?: AFUzivatel | null;
|
|
@@ -7294,7 +7255,6 @@ declare class AFNabidkaVydanaPolozka extends AFEntity {
|
|
|
7294
7255
|
static EntityPath: string;
|
|
7295
7256
|
static EntityName: string;
|
|
7296
7257
|
static EntityType: string;
|
|
7297
|
-
id?: number | null;
|
|
7298
7258
|
lastUpdate?: Date | null;
|
|
7299
7259
|
updatedBy?: AFUzivatel | null;
|
|
7300
7260
|
createdBy?: AFUzivatel | null;
|
|
@@ -7372,7 +7332,6 @@ declare class AFNabidkaVydana extends AFEntity {
|
|
|
7372
7332
|
static EntityPath: string;
|
|
7373
7333
|
static EntityName: string;
|
|
7374
7334
|
static EntityType: string;
|
|
7375
|
-
id?: number | null;
|
|
7376
7335
|
lastUpdate?: Date | null;
|
|
7377
7336
|
updatedBy?: AFUzivatel | null;
|
|
7378
7337
|
createdBy?: AFUzivatel | null;
|
|
@@ -7485,7 +7444,6 @@ declare class AFNabidkaPrijataPolozka extends AFEntity {
|
|
|
7485
7444
|
static EntityPath: string;
|
|
7486
7445
|
static EntityName: string;
|
|
7487
7446
|
static EntityType: string;
|
|
7488
|
-
id?: number | null;
|
|
7489
7447
|
lastUpdate?: Date | null;
|
|
7490
7448
|
updatedBy?: AFUzivatel | null;
|
|
7491
7449
|
createdBy?: AFUzivatel | null;
|
|
@@ -7550,7 +7508,6 @@ declare class AFNabidkaPrijata extends AFEntity {
|
|
|
7550
7508
|
static EntityPath: string;
|
|
7551
7509
|
static EntityName: string;
|
|
7552
7510
|
static EntityType: string;
|
|
7553
|
-
id?: number | null;
|
|
7554
7511
|
lastUpdate?: Date | null;
|
|
7555
7512
|
updatedBy?: AFUzivatel | null;
|
|
7556
7513
|
createdBy?: AFUzivatel | null;
|
|
@@ -7660,7 +7617,6 @@ declare class AFDefStore extends AFEntity {
|
|
|
7660
7617
|
static EntityPath: string;
|
|
7661
7618
|
static EntityName: string;
|
|
7662
7619
|
static EntityType: string;
|
|
7663
|
-
id?: number | null;
|
|
7664
7620
|
lastUpdate?: Date | null;
|
|
7665
7621
|
nazev?: string | null;
|
|
7666
7622
|
nazevA?: string | null;
|
|
@@ -7685,7 +7641,6 @@ declare class AFText extends AFEntity {
|
|
|
7685
7641
|
static EntityPath: string;
|
|
7686
7642
|
static EntityName: string;
|
|
7687
7643
|
static EntityType: string;
|
|
7688
|
-
id?: number | null;
|
|
7689
7644
|
lastUpdate?: Date | null;
|
|
7690
7645
|
popis?: string | null;
|
|
7691
7646
|
nazev?: string | null;
|
|
@@ -7722,7 +7677,6 @@ declare class AFBankovniUcetSkladPokladna extends AFEntity {
|
|
|
7722
7677
|
static EntityPath: string;
|
|
7723
7678
|
static EntityName: string;
|
|
7724
7679
|
static EntityType: string;
|
|
7725
|
-
id?: number | null;
|
|
7726
7680
|
lastUpdate?: Date | null;
|
|
7727
7681
|
kod?: string | null;
|
|
7728
7682
|
nazev?: string | null;
|
|
@@ -7895,7 +7849,6 @@ declare class AFBankovniUcetPokladna extends AFEntity {
|
|
|
7895
7849
|
static EntityPath: string;
|
|
7896
7850
|
static EntityName: string;
|
|
7897
7851
|
static EntityType: string;
|
|
7898
|
-
id?: number | null;
|
|
7899
7852
|
lastUpdate?: Date | null;
|
|
7900
7853
|
kod?: string | null;
|
|
7901
7854
|
nazev?: string | null;
|
|
@@ -7922,7 +7875,6 @@ declare class AFInterniDokladPolozka extends AFEntity {
|
|
|
7922
7875
|
static EntityPath: string;
|
|
7923
7876
|
static EntityName: string;
|
|
7924
7877
|
static EntityType: string;
|
|
7925
|
-
id?: number | null;
|
|
7926
7878
|
lastUpdate?: Date | null;
|
|
7927
7879
|
updatedBy?: AFUzivatel | null;
|
|
7928
7880
|
createdBy?: AFUzivatel | null;
|
|
@@ -8021,7 +7973,6 @@ declare class AFInterniDoklad extends AFEntity {
|
|
|
8021
7973
|
static EntityPath: string;
|
|
8022
7974
|
static EntityName: string;
|
|
8023
7975
|
static EntityType: string;
|
|
8024
|
-
id?: number | null;
|
|
8025
7976
|
lastUpdate?: Date | null;
|
|
8026
7977
|
updatedBy?: AFUzivatel | null;
|
|
8027
7978
|
createdBy?: AFUzivatel | null;
|
|
@@ -8284,7 +8235,6 @@ declare class AFPokladniPohybPolozka extends AFEntity {
|
|
|
8284
8235
|
static EntityPath: string;
|
|
8285
8236
|
static EntityName: string;
|
|
8286
8237
|
static EntityType: string;
|
|
8287
|
-
id?: number | null;
|
|
8288
8238
|
lastUpdate?: Date | null;
|
|
8289
8239
|
updatedBy?: AFUzivatel | null;
|
|
8290
8240
|
createdBy?: AFUzivatel | null;
|
|
@@ -8397,7 +8347,6 @@ declare class AFDokladKUhrade extends AFEntity {
|
|
|
8397
8347
|
static EntityPath: string;
|
|
8398
8348
|
static EntityName: string;
|
|
8399
8349
|
static EntityType: string;
|
|
8400
|
-
id?: number | null;
|
|
8401
8350
|
lastUpdate?: Date | null;
|
|
8402
8351
|
kod?: string | null;
|
|
8403
8352
|
modul?: string | null;
|
|
@@ -8608,7 +8557,6 @@ declare class AFPokladniPohyb extends AFEntity {
|
|
|
8608
8557
|
static EntityPath: string;
|
|
8609
8558
|
static EntityName: string;
|
|
8610
8559
|
static EntityType: string;
|
|
8611
|
-
id?: number | null;
|
|
8612
8560
|
lastUpdate?: Date | null;
|
|
8613
8561
|
updatedBy?: AFUzivatel | null;
|
|
8614
8562
|
createdBy?: AFUzivatel | null;
|
|
@@ -8747,7 +8695,6 @@ declare class AFBankaPolozka extends AFEntity {
|
|
|
8747
8695
|
static EntityPath: string;
|
|
8748
8696
|
static EntityName: string;
|
|
8749
8697
|
static EntityType: string;
|
|
8750
|
-
id?: number | null;
|
|
8751
8698
|
lastUpdate?: Date | null;
|
|
8752
8699
|
updatedBy?: AFUzivatel | null;
|
|
8753
8700
|
createdBy?: AFUzivatel | null;
|
|
@@ -8811,7 +8758,6 @@ declare class AFBanka extends AFEntity {
|
|
|
8811
8758
|
static EntityPath: string;
|
|
8812
8759
|
static EntityName: string;
|
|
8813
8760
|
static EntityType: string;
|
|
8814
|
-
id?: number | null;
|
|
8815
8761
|
lastUpdate?: Date | null;
|
|
8816
8762
|
updatedBy?: AFUzivatel | null;
|
|
8817
8763
|
createdBy?: AFUzivatel | null;
|
|
@@ -8941,7 +8887,6 @@ declare class AFPohledavkaPolozka extends AFEntity {
|
|
|
8941
8887
|
static EntityPath: string;
|
|
8942
8888
|
static EntityName: string;
|
|
8943
8889
|
static EntityType: string;
|
|
8944
|
-
id?: number | null;
|
|
8945
8890
|
lastUpdate?: Date | null;
|
|
8946
8891
|
updatedBy?: AFUzivatel | null;
|
|
8947
8892
|
createdBy?: AFUzivatel | null;
|
|
@@ -9040,7 +8985,6 @@ declare class AFPohledavka extends AFEntity {
|
|
|
9040
8985
|
static EntityPath: string;
|
|
9041
8986
|
static EntityName: string;
|
|
9042
8987
|
static EntityType: string;
|
|
9043
|
-
id?: number | null;
|
|
9044
8988
|
lastUpdate?: Date | null;
|
|
9045
8989
|
updatedBy?: AFUzivatel | null;
|
|
9046
8990
|
createdBy?: AFUzivatel | null;
|
|
@@ -9201,7 +9145,6 @@ declare class AFRadaUplatneniDaneZavazku extends AFEntity {
|
|
|
9201
9145
|
static EntityPath: string;
|
|
9202
9146
|
static EntityName: string;
|
|
9203
9147
|
static EntityType: string;
|
|
9204
|
-
id?: number | null;
|
|
9205
9148
|
lastUpdate?: Date | null;
|
|
9206
9149
|
kod?: string | null;
|
|
9207
9150
|
nazev?: string | null;
|
|
@@ -9224,7 +9167,6 @@ declare class AFTypUplatneniDaneZavazku extends AFEntity {
|
|
|
9224
9167
|
static EntityPath: string;
|
|
9225
9168
|
static EntityName: string;
|
|
9226
9169
|
static EntityType: string;
|
|
9227
|
-
id?: number | null;
|
|
9228
9170
|
lastUpdate?: Date | null;
|
|
9229
9171
|
kod?: string | null;
|
|
9230
9172
|
nazev?: string | null;
|
|
@@ -9265,7 +9207,6 @@ declare class AFUplatneniDaneZavazkuPolozka extends AFEntity {
|
|
|
9265
9207
|
static EntityPath: string;
|
|
9266
9208
|
static EntityName: string;
|
|
9267
9209
|
static EntityType: string;
|
|
9268
|
-
id?: number | null;
|
|
9269
9210
|
lastUpdate?: Date | null;
|
|
9270
9211
|
updatedBy?: AFUzivatel | null;
|
|
9271
9212
|
createdBy?: AFUzivatel | null;
|
|
@@ -9365,7 +9306,6 @@ declare class AFUplatneniDaneZavazku extends AFEntity {
|
|
|
9365
9306
|
static EntityPath: string;
|
|
9366
9307
|
static EntityName: string;
|
|
9367
9308
|
static EntityType: string;
|
|
9368
|
-
id?: number | null;
|
|
9369
9309
|
lastUpdate?: Date | null;
|
|
9370
9310
|
updatedBy?: AFUzivatel | null;
|
|
9371
9311
|
createdBy?: AFUzivatel | null;
|
|
@@ -9478,7 +9418,6 @@ declare class AFPrikazKUhradePolozka extends AFEntity {
|
|
|
9478
9418
|
static EntityPath: string;
|
|
9479
9419
|
static EntityName: string;
|
|
9480
9420
|
static EntityType: string;
|
|
9481
|
-
id?: number | null;
|
|
9482
9421
|
lastUpdate?: Date | null;
|
|
9483
9422
|
buc?: string | null;
|
|
9484
9423
|
bic?: string | null;
|
|
@@ -9521,7 +9460,6 @@ declare class AFPrikazKUhrade extends AFEntity {
|
|
|
9521
9460
|
static EntityPath: string;
|
|
9522
9461
|
static EntityName: string;
|
|
9523
9462
|
static EntityType: string;
|
|
9524
|
-
id?: number | null;
|
|
9525
9463
|
lastUpdate?: Date | null;
|
|
9526
9464
|
datVytvor?: Date | null;
|
|
9527
9465
|
datSplat?: Date | null;
|
|
@@ -9552,7 +9490,6 @@ declare class AFPrikazKInkasuPolozka extends AFEntity {
|
|
|
9552
9490
|
static EntityPath: string;
|
|
9553
9491
|
static EntityName: string;
|
|
9554
9492
|
static EntityType: string;
|
|
9555
|
-
id?: number | null;
|
|
9556
9493
|
lastUpdate?: Date | null;
|
|
9557
9494
|
buc?: string | null;
|
|
9558
9495
|
bic?: string | null;
|
|
@@ -9595,7 +9532,6 @@ declare class AFPrikazKInkasu extends AFEntity {
|
|
|
9595
9532
|
static EntityPath: string;
|
|
9596
9533
|
static EntityName: string;
|
|
9597
9534
|
static EntityType: string;
|
|
9598
|
-
id?: number | null;
|
|
9599
9535
|
lastUpdate?: Date | null;
|
|
9600
9536
|
datVytvor?: Date | null;
|
|
9601
9537
|
datSplat?: Date | null;
|
|
@@ -9625,7 +9561,6 @@ declare class AFTypVzajemnychZapoctu extends AFEntity {
|
|
|
9625
9561
|
static EntityPath: string;
|
|
9626
9562
|
static EntityName: string;
|
|
9627
9563
|
static EntityType: string;
|
|
9628
|
-
id?: number | null;
|
|
9629
9564
|
lastUpdate?: Date | null;
|
|
9630
9565
|
kod?: string | null;
|
|
9631
9566
|
nazev?: string | null;
|
|
@@ -9671,7 +9606,6 @@ declare class AFVzajemnyZapocet extends AFEntity {
|
|
|
9671
9606
|
static EntityPath: string;
|
|
9672
9607
|
static EntityName: string;
|
|
9673
9608
|
static EntityType: string;
|
|
9674
|
-
id?: number | null;
|
|
9675
9609
|
lastUpdate?: Date | null;
|
|
9676
9610
|
updatedBy?: AFUzivatel | null;
|
|
9677
9611
|
createdBy?: AFUzivatel | null;
|
|
@@ -9821,7 +9755,6 @@ declare class AFFakturaVydanaPolozka extends AFEntity {
|
|
|
9821
9755
|
static EntityPath: string;
|
|
9822
9756
|
static EntityName: string;
|
|
9823
9757
|
static EntityType: string;
|
|
9824
|
-
id?: number | null;
|
|
9825
9758
|
lastUpdate?: Date | null;
|
|
9826
9759
|
updatedBy?: AFUzivatel | null;
|
|
9827
9760
|
createdBy?: AFUzivatel | null;
|
|
@@ -9940,7 +9873,6 @@ declare class AFFakturaVydana extends AFEntity {
|
|
|
9940
9873
|
static EntityPath: string;
|
|
9941
9874
|
static EntityName: string;
|
|
9942
9875
|
static EntityType: string;
|
|
9943
|
-
id?: number | null;
|
|
9944
9876
|
lastUpdate?: Date | null;
|
|
9945
9877
|
updatedBy?: AFUzivatel | null;
|
|
9946
9878
|
createdBy?: AFUzivatel | null;
|
|
@@ -10138,7 +10070,6 @@ declare class AFTypProdejky extends AFEntity {
|
|
|
10138
10070
|
static EntityPath: string;
|
|
10139
10071
|
static EntityName: string;
|
|
10140
10072
|
static EntityType: string;
|
|
10141
|
-
id?: number | null;
|
|
10142
10073
|
lastUpdate?: Date | null;
|
|
10143
10074
|
kod?: string | null;
|
|
10144
10075
|
nazev?: string | null;
|
|
@@ -10213,7 +10144,6 @@ declare class AFProdejka extends AFEntity {
|
|
|
10213
10144
|
static EntityPath: string;
|
|
10214
10145
|
static EntityName: string;
|
|
10215
10146
|
static EntityType: string;
|
|
10216
|
-
id?: number | null;
|
|
10217
10147
|
lastUpdate?: Date | null;
|
|
10218
10148
|
updatedBy?: AFUzivatel | null;
|
|
10219
10149
|
createdBy?: AFUzivatel | null;
|
|
@@ -10388,7 +10318,6 @@ declare class AFProdejkaPlatba extends AFEntity {
|
|
|
10388
10318
|
static EntityPath: string;
|
|
10389
10319
|
static EntityName: string;
|
|
10390
10320
|
static EntityType: string;
|
|
10391
|
-
id?: number | null;
|
|
10392
10321
|
lastUpdate?: Date | null;
|
|
10393
10322
|
kurz?: Big | null;
|
|
10394
10323
|
kurzMnozstvi?: Big | null;
|
|
@@ -10411,7 +10340,6 @@ declare class AFPravoViditelnosti extends AFEntity {
|
|
|
10411
10340
|
static EntityPath: string;
|
|
10412
10341
|
static EntityName: string;
|
|
10413
10342
|
static EntityType: string;
|
|
10414
|
-
id?: number | null;
|
|
10415
10343
|
idUzivatel?: number | null;
|
|
10416
10344
|
typDatK?: any | null;
|
|
10417
10345
|
modulK?: any | null;
|
|
@@ -10425,7 +10353,6 @@ declare class AFZamek extends AFEntity {
|
|
|
10425
10353
|
static EntityPath: string;
|
|
10426
10354
|
static EntityName: string;
|
|
10427
10355
|
static EntityType: string;
|
|
10428
|
-
id?: number | null;
|
|
10429
10356
|
lastUpdate?: Date | null;
|
|
10430
10357
|
zamekK?: Zamek | null;
|
|
10431
10358
|
platiOdData?: Date | null;
|
|
@@ -10460,7 +10387,6 @@ declare class AFKurzProCenotvorbu extends AFEntity {
|
|
|
10460
10387
|
static EntityPath: string;
|
|
10461
10388
|
static EntityName: string;
|
|
10462
10389
|
static EntityType: string;
|
|
10463
|
-
id?: number | null;
|
|
10464
10390
|
lastUpdate?: Date | null;
|
|
10465
10391
|
platiOdData?: Date | null;
|
|
10466
10392
|
nbStred?: Big | null;
|
|
@@ -10476,7 +10402,6 @@ declare class AFKurzProPreceneni extends AFEntity {
|
|
|
10476
10402
|
static EntityPath: string;
|
|
10477
10403
|
static EntityName: string;
|
|
10478
10404
|
static EntityType: string;
|
|
10479
|
-
id?: number | null;
|
|
10480
10405
|
lastUpdate?: Date | null;
|
|
10481
10406
|
platiOdData?: Date | null;
|
|
10482
10407
|
nbStred?: Big | null;
|
|
@@ -10492,7 +10417,6 @@ declare class AFPsc extends AFEntity {
|
|
|
10492
10417
|
static EntityPath: string;
|
|
10493
10418
|
static EntityName: string;
|
|
10494
10419
|
static EntityType: string;
|
|
10495
|
-
id?: number | null;
|
|
10496
10420
|
lastUpdate?: Date | null;
|
|
10497
10421
|
kod?: string | null;
|
|
10498
10422
|
nazev?: string | null;
|
|
@@ -10519,7 +10443,6 @@ declare class AFSablonaUpominky extends AFEntity {
|
|
|
10519
10443
|
static EntityPath: string;
|
|
10520
10444
|
static EntityName: string;
|
|
10521
10445
|
static EntityType: string;
|
|
10522
|
-
id?: number | null;
|
|
10523
10446
|
lastUpdate?: Date | null;
|
|
10524
10447
|
datum?: string | null;
|
|
10525
10448
|
datuma?: string | null;
|
|
@@ -10560,7 +10483,6 @@ declare class AFCertifikacniAutorita extends AFEntity {
|
|
|
10560
10483
|
static EntityPath: string;
|
|
10561
10484
|
static EntityName: string;
|
|
10562
10485
|
static EntityType: string;
|
|
10563
|
-
id?: number | null;
|
|
10564
10486
|
lastUpdate?: Date | null;
|
|
10565
10487
|
uzivNazev?: string | null;
|
|
10566
10488
|
certNazev?: string | null;
|
|
@@ -10577,7 +10499,6 @@ declare class AFCertifikatFinbricks extends AFEntity {
|
|
|
10577
10499
|
static EntityPath: string;
|
|
10578
10500
|
static EntityName: string;
|
|
10579
10501
|
static EntityType: string;
|
|
10580
|
-
id?: number | null;
|
|
10581
10502
|
lastUpdate?: Date | null;
|
|
10582
10503
|
uzivNazev?: string | null;
|
|
10583
10504
|
certNazev?: string | null;
|
|
@@ -10596,7 +10517,6 @@ declare class AFCertifikat extends AFEntity {
|
|
|
10596
10517
|
static EntityPath: string;
|
|
10597
10518
|
static EntityName: string;
|
|
10598
10519
|
static EntityType: string;
|
|
10599
|
-
id?: number | null;
|
|
10600
10520
|
lastUpdate?: Date | null;
|
|
10601
10521
|
uzivNazev?: string | null;
|
|
10602
10522
|
certNazev?: string | null;
|
|
@@ -10615,7 +10535,6 @@ declare class AFCisloBaliku extends AFEntity {
|
|
|
10615
10535
|
static EntityPath: string;
|
|
10616
10536
|
static EntityName: string;
|
|
10617
10537
|
static EntityType: string;
|
|
10618
|
-
id?: number | null;
|
|
10619
10538
|
lastUpdate?: Date | null;
|
|
10620
10539
|
cislo?: string | null;
|
|
10621
10540
|
formaDopravy?: AFFormaDopravy | null;
|
|
@@ -10632,7 +10551,6 @@ declare class AFVztah extends AFEntity {
|
|
|
10632
10551
|
static EntityPath: string;
|
|
10633
10552
|
static EntityName: string;
|
|
10634
10553
|
static EntityType: string;
|
|
10635
|
-
id?: number | null;
|
|
10636
10554
|
lastUpdate?: Date | null;
|
|
10637
10555
|
kod?: string | null;
|
|
10638
10556
|
nazev?: string | null;
|
|
@@ -10656,7 +10574,6 @@ declare class AFIntrastatKurz extends AFEntity {
|
|
|
10656
10574
|
static EntityPath: string;
|
|
10657
10575
|
static EntityName: string;
|
|
10658
10576
|
static EntityType: string;
|
|
10659
|
-
id?: number | null;
|
|
10660
10577
|
lastUpdate?: Date | null;
|
|
10661
10578
|
platiOdData?: Date | null;
|
|
10662
10579
|
nbStred?: Big | null;
|
|
@@ -10672,7 +10589,6 @@ declare class AFIndividualniCenik extends AFEntity {
|
|
|
10672
10589
|
static EntityPath: string;
|
|
10673
10590
|
static EntityName: string;
|
|
10674
10591
|
static EntityType: string;
|
|
10675
|
-
id?: number | null;
|
|
10676
10592
|
kod?: string | null;
|
|
10677
10593
|
nazev?: string | null;
|
|
10678
10594
|
nazevA?: string | null;
|
|
@@ -10700,7 +10616,6 @@ declare class AFKusovnik extends AFEntity {
|
|
|
10700
10616
|
static EntityPath: string;
|
|
10701
10617
|
static EntityName: string;
|
|
10702
10618
|
static EntityType: string;
|
|
10703
|
-
id?: number | null;
|
|
10704
10619
|
lastUpdate?: Date | null;
|
|
10705
10620
|
nazev?: string | null;
|
|
10706
10621
|
nazevA?: string | null;
|
|
@@ -10723,7 +10638,6 @@ declare class AFStromCenik extends AFEntity {
|
|
|
10723
10638
|
static EntityPath: string;
|
|
10724
10639
|
static EntityName: string;
|
|
10725
10640
|
static EntityType: string;
|
|
10726
|
-
id?: number | null;
|
|
10727
10641
|
lastUpdate?: Date | null;
|
|
10728
10642
|
idZaznamu?: number | null;
|
|
10729
10643
|
uzel?: AFStrom | null;
|
|
@@ -10735,7 +10649,6 @@ declare class AFMapovaniSkladu extends AFEntity {
|
|
|
10735
10649
|
static EntityPath: string;
|
|
10736
10650
|
static EntityName: string;
|
|
10737
10651
|
static EntityType: string;
|
|
10738
|
-
id?: number | null;
|
|
10739
10652
|
lastUpdate?: Date | null;
|
|
10740
10653
|
stredisko?: AFStredisko | null;
|
|
10741
10654
|
skupZboz?: AFSkupinaZbozi | null;
|
|
@@ -10751,7 +10664,6 @@ declare class AFUmisteniVeSkladuRegal extends AFEntity {
|
|
|
10751
10664
|
static EntityPath: string;
|
|
10752
10665
|
static EntityName: string;
|
|
10753
10666
|
static EntityType: string;
|
|
10754
|
-
id?: number | null;
|
|
10755
10667
|
lastUpdate?: Date | null;
|
|
10756
10668
|
kod?: string | null;
|
|
10757
10669
|
nazev?: string | null;
|
|
@@ -10774,7 +10686,6 @@ declare class AFUmisteniVeSkladuPolice extends AFEntity {
|
|
|
10774
10686
|
static EntityPath: string;
|
|
10775
10687
|
static EntityName: string;
|
|
10776
10688
|
static EntityType: string;
|
|
10777
|
-
id?: number | null;
|
|
10778
10689
|
lastUpdate?: Date | null;
|
|
10779
10690
|
kod?: string | null;
|
|
10780
10691
|
nazev?: string | null;
|
|
@@ -10797,7 +10708,6 @@ declare class AFUmisteniVeSkladuMistnost extends AFEntity {
|
|
|
10797
10708
|
static EntityPath: string;
|
|
10798
10709
|
static EntityName: string;
|
|
10799
10710
|
static EntityType: string;
|
|
10800
|
-
id?: number | null;
|
|
10801
10711
|
lastUpdate?: Date | null;
|
|
10802
10712
|
kod?: string | null;
|
|
10803
10713
|
nazev?: string | null;
|
|
@@ -10820,7 +10730,6 @@ declare class AFTypStavuCeniku extends AFEntity {
|
|
|
10820
10730
|
static EntityPath: string;
|
|
10821
10731
|
static EntityName: string;
|
|
10822
10732
|
static EntityType: string;
|
|
10823
|
-
id?: number | null;
|
|
10824
10733
|
lastUpdate?: Date | null;
|
|
10825
10734
|
kod?: string | null;
|
|
10826
10735
|
nazev?: string | null;
|
|
@@ -10845,7 +10754,6 @@ declare class AFSkupinaAtributu extends AFEntity {
|
|
|
10845
10754
|
static EntityPath: string;
|
|
10846
10755
|
static EntityName: string;
|
|
10847
10756
|
static EntityType: string;
|
|
10848
|
-
id?: number | null;
|
|
10849
10757
|
lastUpdate?: Date | null;
|
|
10850
10758
|
kod?: string | null;
|
|
10851
10759
|
nazev?: string | null;
|
|
@@ -10890,7 +10798,6 @@ declare class AFSarzeExpirace extends AFEntity {
|
|
|
10890
10798
|
static EntityPath: string;
|
|
10891
10799
|
static EntityName: string;
|
|
10892
10800
|
static EntityType: string;
|
|
10893
|
-
id?: number | null;
|
|
10894
10801
|
pocet?: Big | null;
|
|
10895
10802
|
cenaMj?: Big | null;
|
|
10896
10803
|
datVyst?: Date | null;
|
|
@@ -10910,7 +10817,6 @@ declare class AFOsobaHlavicka extends AFEntity {
|
|
|
10910
10817
|
static EntityPath: string;
|
|
10911
10818
|
static EntityName: string;
|
|
10912
10819
|
static EntityType: string;
|
|
10913
|
-
id?: number | null;
|
|
10914
10820
|
lastUpdate?: Date | null;
|
|
10915
10821
|
osbCis?: string | null;
|
|
10916
10822
|
prijmeni?: string | null;
|
|
@@ -10929,7 +10835,6 @@ declare class AFSkupinaOsob extends AFEntity {
|
|
|
10929
10835
|
static EntityPath: string;
|
|
10930
10836
|
static EntityName: string;
|
|
10931
10837
|
static EntityType: string;
|
|
10932
|
-
id?: number | null;
|
|
10933
10838
|
lastUpdate?: Date | null;
|
|
10934
10839
|
kod?: string | null;
|
|
10935
10840
|
nazev?: string | null;
|
|
@@ -10968,7 +10873,6 @@ declare class AFDite extends AFEntity {
|
|
|
10968
10873
|
static EntityPath: string;
|
|
10969
10874
|
static EntityName: string;
|
|
10970
10875
|
static EntityType: string;
|
|
10971
|
-
id?: number | null;
|
|
10972
10876
|
lastUpdate?: Date | null;
|
|
10973
10877
|
prijmeni?: string | null;
|
|
10974
10878
|
jmeno?: string | null;
|
|
@@ -10993,7 +10897,6 @@ declare class AFOsoba extends AFEntity {
|
|
|
10993
10897
|
static EntityPath: string;
|
|
10994
10898
|
static EntityName: string;
|
|
10995
10899
|
static EntityType: string;
|
|
10996
|
-
id?: number | null;
|
|
10997
10900
|
lastUpdate?: Date | null;
|
|
10998
10901
|
platiOd?: Date | null;
|
|
10999
10902
|
platiDo?: Date | null;
|
|
@@ -11115,7 +11018,6 @@ declare class AFOsobaBlizka extends AFEntity {
|
|
|
11115
11018
|
static EntityPath: string;
|
|
11116
11019
|
static EntityName: string;
|
|
11117
11020
|
static EntityType: string;
|
|
11118
|
-
id?: number | null;
|
|
11119
11021
|
lastUpdate?: Date | null;
|
|
11120
11022
|
prijmeni?: string | null;
|
|
11121
11023
|
jmeno?: string | null;
|
|
@@ -11140,7 +11042,6 @@ declare class AFCiselnikMzdovychSlozek extends AFEntity {
|
|
|
11140
11042
|
static EntityPath: string;
|
|
11141
11043
|
static EntityName: string;
|
|
11142
11044
|
static EntityType: string;
|
|
11143
|
-
id?: number | null;
|
|
11144
11045
|
lastUpdate?: Date | null;
|
|
11145
11046
|
kod?: string | null;
|
|
11146
11047
|
nazev?: string | null;
|
|
@@ -11208,7 +11109,6 @@ declare class AFPracovniPomerHlavicka extends AFEntity {
|
|
|
11208
11109
|
static EntityPath: string;
|
|
11209
11110
|
static EntityName: string;
|
|
11210
11111
|
static EntityType: string;
|
|
11211
|
-
id?: number | null;
|
|
11212
11112
|
lastUpdate?: Date | null;
|
|
11213
11113
|
aktivniOd?: Date | null;
|
|
11214
11114
|
aktivniDo?: Date | null;
|
|
@@ -11231,7 +11131,6 @@ declare class AFNepritomnost extends AFEntity {
|
|
|
11231
11131
|
static EntityPath: string;
|
|
11232
11132
|
static EntityName: string;
|
|
11233
11133
|
static EntityType: string;
|
|
11234
|
-
id?: number | null;
|
|
11235
11134
|
lastUpdate?: Date | null;
|
|
11236
11135
|
platiOd?: Date | null;
|
|
11237
11136
|
platiDo?: Date | null;
|
|
@@ -11261,7 +11160,6 @@ declare class AFMzdyBankovniSpojeni extends AFEntity {
|
|
|
11261
11160
|
static EntityPath: string;
|
|
11262
11161
|
static EntityName: string;
|
|
11263
11162
|
static EntityType: string;
|
|
11264
|
-
id?: number | null;
|
|
11265
11163
|
lastUpdate?: Date | null;
|
|
11266
11164
|
ulice?: string | null;
|
|
11267
11165
|
mesto?: string | null;
|
|
@@ -11291,7 +11189,6 @@ declare class AFSrazka extends AFEntity {
|
|
|
11291
11189
|
static EntityPath: string;
|
|
11292
11190
|
static EntityName: string;
|
|
11293
11191
|
static EntityType: string;
|
|
11294
|
-
id?: number | null;
|
|
11295
11192
|
lastUpdate?: Date | null;
|
|
11296
11193
|
prednostni?: boolean | null;
|
|
11297
11194
|
poradi?: number | null;
|
|
@@ -11326,7 +11223,6 @@ declare class AFTypPracovnihoPomeru extends AFEntity {
|
|
|
11326
11223
|
static EntityPath: string;
|
|
11327
11224
|
static EntityName: string;
|
|
11328
11225
|
static EntityType: string;
|
|
11329
|
-
id?: number | null;
|
|
11330
11226
|
lastUpdate?: Date | null;
|
|
11331
11227
|
kod?: string | null;
|
|
11332
11228
|
nazev?: string | null;
|
|
@@ -11347,7 +11243,6 @@ declare class AFPracovniPomer extends AFEntity {
|
|
|
11347
11243
|
static EntityPath: string;
|
|
11348
11244
|
static EntityName: string;
|
|
11349
11245
|
static EntityType: string;
|
|
11350
|
-
id?: number | null;
|
|
11351
11246
|
lastUpdate?: Date | null;
|
|
11352
11247
|
platiOd?: Date | null;
|
|
11353
11248
|
platiDo?: Date | null;
|
|
@@ -11429,7 +11324,6 @@ declare class AFStalaMzdovaSlozka extends AFEntity {
|
|
|
11429
11324
|
static EntityPath: string;
|
|
11430
11325
|
static EntityName: string;
|
|
11431
11326
|
static EntityType: string;
|
|
11432
|
-
id?: number | null;
|
|
11433
11327
|
lastUpdate?: Date | null;
|
|
11434
11328
|
kod?: string | null;
|
|
11435
11329
|
nazev?: string | null;
|
|
@@ -11473,7 +11367,6 @@ declare class AFMzdovaSlozka extends AFEntity {
|
|
|
11473
11367
|
static EntityPath: string;
|
|
11474
11368
|
static EntityName: string;
|
|
11475
11369
|
static EntityType: string;
|
|
11476
|
-
id?: number | null;
|
|
11477
11370
|
lastUpdate?: Date | null;
|
|
11478
11371
|
cisRad?: number | null;
|
|
11479
11372
|
kod?: string | null;
|
|
@@ -11527,7 +11420,6 @@ declare class AFSmena extends AFEntity {
|
|
|
11527
11420
|
static EntityPath: string;
|
|
11528
11421
|
static EntityName: string;
|
|
11529
11422
|
static EntityType: string;
|
|
11530
|
-
id?: number | null;
|
|
11531
11423
|
lastUpdate?: Date | null;
|
|
11532
11424
|
rok?: number | null;
|
|
11533
11425
|
mesic?: number | null;
|
|
@@ -11546,7 +11438,6 @@ declare class AFPrace extends AFEntity {
|
|
|
11546
11438
|
static EntityPath: string;
|
|
11547
11439
|
static EntityName: string;
|
|
11548
11440
|
static EntityType: string;
|
|
11549
|
-
id?: number | null;
|
|
11550
11441
|
lastUpdate?: Date | null;
|
|
11551
11442
|
datumOd?: Date | null;
|
|
11552
11443
|
datumDo?: Date | null;
|
|
@@ -11567,7 +11458,6 @@ declare class AFPraceMesic extends AFEntity {
|
|
|
11567
11458
|
static EntityPath: string;
|
|
11568
11459
|
static EntityName: string;
|
|
11569
11460
|
static EntityType: string;
|
|
11570
|
-
id?: number | null;
|
|
11571
11461
|
lastUpdate?: Date | null;
|
|
11572
11462
|
rok?: number | null;
|
|
11573
11463
|
mesic?: number | null;
|
|
@@ -11714,7 +11604,6 @@ declare class AFZavazekPolozka extends AFEntity {
|
|
|
11714
11604
|
static EntityPath: string;
|
|
11715
11605
|
static EntityName: string;
|
|
11716
11606
|
static EntityType: string;
|
|
11717
|
-
id?: number | null;
|
|
11718
11607
|
lastUpdate?: Date | null;
|
|
11719
11608
|
updatedBy?: AFUzivatel | null;
|
|
11720
11609
|
createdBy?: AFUzivatel | null;
|
|
@@ -11813,7 +11702,6 @@ declare class AFZavazek extends AFEntity {
|
|
|
11813
11702
|
static EntityPath: string;
|
|
11814
11703
|
static EntityName: string;
|
|
11815
11704
|
static EntityType: string;
|
|
11816
|
-
id?: number | null;
|
|
11817
11705
|
lastUpdate?: Date | null;
|
|
11818
11706
|
updatedBy?: AFUzivatel | null;
|
|
11819
11707
|
createdBy?: AFUzivatel | null;
|
|
@@ -11974,7 +11862,6 @@ declare class AFFiltr extends AFEntity {
|
|
|
11974
11862
|
static EntityPath: string;
|
|
11975
11863
|
static EntityName: string;
|
|
11976
11864
|
static EntityType: string;
|
|
11977
|
-
id?: number | null;
|
|
11978
11865
|
lastUpdate?: Date | null;
|
|
11979
11866
|
kod?: string | null;
|
|
11980
11867
|
nazev?: string | null;
|
|
@@ -11996,7 +11883,6 @@ declare class AFParametr extends AFEntity {
|
|
|
11996
11883
|
static EntityPath: string;
|
|
11997
11884
|
static EntityName: string;
|
|
11998
11885
|
static EntityType: string;
|
|
11999
|
-
id?: number | null;
|
|
12000
11886
|
lastUpdate?: Date | null;
|
|
12001
11887
|
paramK?: any | null;
|
|
12002
11888
|
hodnota?: string | null;
|
|
@@ -12020,7 +11906,6 @@ declare class AFUzivatelskyDotazParametr extends AFEntity {
|
|
|
12020
11906
|
static EntityPath: string;
|
|
12021
11907
|
static EntityName: string;
|
|
12022
11908
|
static EntityType: string;
|
|
12023
|
-
id?: number | null;
|
|
12024
11909
|
lastUpdate?: Date | null;
|
|
12025
11910
|
kod?: string | null;
|
|
12026
11911
|
nazev?: string | null;
|
|
@@ -12046,7 +11931,6 @@ declare class AFUzivatelskyDotazVlastnost extends AFEntity {
|
|
|
12046
11931
|
static EntityPath: string;
|
|
12047
11932
|
static EntityName: string;
|
|
12048
11933
|
static EntityType: string;
|
|
12049
|
-
id?: number | null;
|
|
12050
11934
|
lastUpdate?: Date | null;
|
|
12051
11935
|
kod?: string | null;
|
|
12052
11936
|
nazev?: string | null;
|
|
@@ -12073,7 +11957,6 @@ declare class AFUzivatelskyDotaz extends AFEntity {
|
|
|
12073
11957
|
static EntityPath: string;
|
|
12074
11958
|
static EntityName: string;
|
|
12075
11959
|
static EntityType: string;
|
|
12076
|
-
id?: number | null;
|
|
12077
11960
|
lastUpdate?: Date | null;
|
|
12078
11961
|
kod?: string | null;
|
|
12079
11962
|
nazev?: string | null;
|
|
@@ -12101,7 +11984,6 @@ declare class AFCustomButton extends AFEntity {
|
|
|
12101
11984
|
static EntityPath: string;
|
|
12102
11985
|
static EntityName: string;
|
|
12103
11986
|
static EntityType: string;
|
|
12104
|
-
id?: number | null;
|
|
12105
11987
|
kod?: string | null;
|
|
12106
11988
|
url?: string | null;
|
|
12107
11989
|
title?: string | null;
|
|
@@ -12119,7 +12001,6 @@ declare class AFSettingStore extends AFEntity {
|
|
|
12119
12001
|
static EntityPath: string;
|
|
12120
12002
|
static EntityName: string;
|
|
12121
12003
|
static EntityType: string;
|
|
12122
|
-
id?: number | null;
|
|
12123
12004
|
klic?: string | null;
|
|
12124
12005
|
hodnota?: string | null;
|
|
12125
12006
|
uzivatelId?: number | null;
|
|
@@ -12131,7 +12012,6 @@ declare class AFGlobalStore extends AFEntity {
|
|
|
12131
12012
|
static EntityPath: string;
|
|
12132
12013
|
static EntityName: string;
|
|
12133
12014
|
static EntityType: string;
|
|
12134
|
-
id?: number | null;
|
|
12135
12015
|
klic?: string | null;
|
|
12136
12016
|
hodnota?: string | null;
|
|
12137
12017
|
static propAnnotations: Record<string, TypeAnnotation>;
|
|
@@ -12142,7 +12022,6 @@ declare class AFDashboardPanel extends AFEntity {
|
|
|
12142
12022
|
static EntityPath: string;
|
|
12143
12023
|
static EntityName: string;
|
|
12144
12024
|
static EntityType: string;
|
|
12145
|
-
id?: number | null;
|
|
12146
12025
|
lastUpdate?: Date | null;
|
|
12147
12026
|
kod?: string | null;
|
|
12148
12027
|
nazev?: string | null;
|
|
@@ -12168,7 +12047,6 @@ declare class AFDashboardSharing extends AFEntity {
|
|
|
12168
12047
|
static EntityPath: string;
|
|
12169
12048
|
static EntityName: string;
|
|
12170
12049
|
static EntityType: string;
|
|
12171
|
-
id?: number | null;
|
|
12172
12050
|
hidden?: boolean | null;
|
|
12173
12051
|
priority?: number | null;
|
|
12174
12052
|
user?: AFUzivatel | null;
|
|
@@ -12183,7 +12061,6 @@ declare class AFInsight extends AFEntity {
|
|
|
12183
12061
|
static EntityPath: string;
|
|
12184
12062
|
static EntityName: string;
|
|
12185
12063
|
static EntityType: string;
|
|
12186
|
-
id?: number | null;
|
|
12187
12064
|
lastUpdate?: Date | null;
|
|
12188
12065
|
kod?: string | null;
|
|
12189
12066
|
nazev?: string | null;
|
|
@@ -12206,7 +12083,6 @@ declare class AFXslt extends AFEntity {
|
|
|
12206
12083
|
static EntityPath: string;
|
|
12207
12084
|
static EntityName: string;
|
|
12208
12085
|
static EntityType: string;
|
|
12209
|
-
id?: number | null;
|
|
12210
12086
|
lastUpdate?: Date | null;
|
|
12211
12087
|
kod?: string | null;
|
|
12212
12088
|
nazev?: string | null;
|
|
@@ -12226,7 +12102,6 @@ declare class AFObrat extends AFEntity {
|
|
|
12226
12102
|
static EntityPath: string;
|
|
12227
12103
|
static EntityName: string;
|
|
12228
12104
|
static EntityType: string;
|
|
12229
|
-
id?: number | null;
|
|
12230
12105
|
lastUpdate?: Date | null;
|
|
12231
12106
|
obdobi?: number | null;
|
|
12232
12107
|
rok?: number | null;
|
|
@@ -12694,7 +12569,6 @@ declare class AFSestava extends AFEntity {
|
|
|
12694
12569
|
static EntityPath: string;
|
|
12695
12570
|
static EntityName: string;
|
|
12696
12571
|
static EntityType: string;
|
|
12697
|
-
id?: number | null;
|
|
12698
12572
|
lastUpdate?: Date | null;
|
|
12699
12573
|
kod?: string | null;
|
|
12700
12574
|
nazev?: string | null;
|
|
@@ -12774,7 +12648,6 @@ declare class AFStandardniPredpis extends AFEntity {
|
|
|
12774
12648
|
static EntityPath: string;
|
|
12775
12649
|
static EntityName: string;
|
|
12776
12650
|
static EntityType: string;
|
|
12777
|
-
id?: number | null;
|
|
12778
12651
|
lastUpdate?: Date | null;
|
|
12779
12652
|
druhUctuK?: DruhUctu | null;
|
|
12780
12653
|
cisSloup?: number | null;
|
|
@@ -12793,7 +12666,6 @@ declare class AFSumaceSestavy extends AFEntity {
|
|
|
12793
12666
|
static EntityPath: string;
|
|
12794
12667
|
static EntityName: string;
|
|
12795
12668
|
static EntityType: string;
|
|
12796
|
-
id?: number | null;
|
|
12797
12669
|
lastUpdate?: Date | null;
|
|
12798
12670
|
prevratZnam?: boolean | null;
|
|
12799
12671
|
radek?: AFRadekSestavy | null;
|
|
@@ -12808,7 +12680,6 @@ declare class AFRadekSestavy extends AFEntity {
|
|
|
12808
12680
|
static EntityPath: string;
|
|
12809
12681
|
static EntityName: string;
|
|
12810
12682
|
static EntityType: string;
|
|
12811
|
-
id?: number | null;
|
|
12812
12683
|
lastUpdate?: Date | null;
|
|
12813
12684
|
cisRad?: number | null;
|
|
12814
12685
|
kodRad?: string | null;
|
|
@@ -13817,7 +13688,6 @@ declare class AFSubjekt extends AFEntity {
|
|
|
13817
13688
|
static EntityPath: string;
|
|
13818
13689
|
static EntityName: string;
|
|
13819
13690
|
static EntityType: string;
|
|
13820
|
-
id?: number | null;
|
|
13821
13691
|
platiOd?: Date | null;
|
|
13822
13692
|
platiDo?: Date | null;
|
|
13823
13693
|
typVztahuK?: GdprTypVztahu | null;
|
|
@@ -13835,7 +13705,6 @@ declare class AFRadekPriznaniDph extends AFEntity {
|
|
|
13835
13705
|
static EntityPath: string;
|
|
13836
13706
|
static EntityName: string;
|
|
13837
13707
|
static EntityType: string;
|
|
13838
|
-
id?: number | null;
|
|
13839
13708
|
lastUpdate?: Date | null;
|
|
13840
13709
|
rok?: number | null;
|
|
13841
13710
|
mesic?: number | null;
|
|
@@ -13858,7 +13727,6 @@ declare class AFUlozenePriznaniDph extends AFEntity {
|
|
|
13858
13727
|
static EntityPath: string;
|
|
13859
13728
|
static EntityName: string;
|
|
13860
13729
|
static EntityType: string;
|
|
13861
|
-
id?: number | null;
|
|
13862
13730
|
lastUpdate?: Date | null;
|
|
13863
13731
|
rok?: number | null;
|
|
13864
13732
|
mesic?: number | null;
|
|
@@ -13877,7 +13745,6 @@ declare class AFUlozenePriznaniKonVykDph extends AFEntity {
|
|
|
13877
13745
|
static EntityPath: string;
|
|
13878
13746
|
static EntityName: string;
|
|
13879
13747
|
static EntityType: string;
|
|
13880
|
-
id?: number | null;
|
|
13881
13748
|
lastUpdate?: Date | null;
|
|
13882
13749
|
rok?: number | null;
|
|
13883
13750
|
mesic?: number | null;
|
|
@@ -13897,7 +13764,6 @@ declare class AFZurnal extends AFEntity {
|
|
|
13897
13764
|
static EntityPath: string;
|
|
13898
13765
|
static EntityName: string;
|
|
13899
13766
|
static EntityType: string;
|
|
13900
|
-
id?: number | null;
|
|
13901
13767
|
tabulka?: string | null;
|
|
13902
13768
|
idZaznamu?: number | null;
|
|
13903
13769
|
sloupec?: string | null;
|