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.mjs
CHANGED
|
@@ -21,6 +21,30 @@ let StitkyCacheStrategy = /* @__PURE__ */ function(StitkyCacheStrategy$1) {
|
|
|
21
21
|
StitkyCacheStrategy$1[StitkyCacheStrategy$1["Eager"] = 2] = "Eager";
|
|
22
22
|
return StitkyCacheStrategy$1;
|
|
23
23
|
}({});
|
|
24
|
+
/**
|
|
25
|
+
* Controls how nested entities in 'unknown' state are handled during
|
|
26
|
+
* serialisation in save(). See spec §7 — Nested entity encoding.
|
|
27
|
+
*/
|
|
28
|
+
let NestedUnknownStrategy = /* @__PURE__ */ function(NestedUnknownStrategy$1) {
|
|
29
|
+
/**
|
|
30
|
+
* Resolve each 'unknown' nested entity via _resolveId before encoding.
|
|
31
|
+
* Falls back to ByIdentifier behaviour if resolution returns null.
|
|
32
|
+
* This is the default.
|
|
33
|
+
*/
|
|
34
|
+
NestedUnknownStrategy$1["Resolve"] = "resolve";
|
|
35
|
+
/**
|
|
36
|
+
* Encode using the available identifier (kod / ext) without a network call.
|
|
37
|
+
* Throws AFError(MISSING_IDENTIFIER) if no identifier is present.
|
|
38
|
+
*/
|
|
39
|
+
NestedUnknownStrategy$1["ByIdentifier"] = "by-identifier";
|
|
40
|
+
/**
|
|
41
|
+
* Throw AFError(UNRESOLVED_ENTITY) immediately if any nested entity is
|
|
42
|
+
* still 'unknown' at encode time. The caller must resolve all relations
|
|
43
|
+
* before calling save().
|
|
44
|
+
*/
|
|
45
|
+
NestedUnknownStrategy$1["Strict"] = "strict";
|
|
46
|
+
return NestedUnknownStrategy$1;
|
|
47
|
+
}({});
|
|
24
48
|
const NO_LIMIT = 0;
|
|
25
49
|
let AFQueryDetail = /* @__PURE__ */ function(AFQueryDetail$1) {
|
|
26
50
|
AFQueryDetail$1["FULL"] = "full";
|
|
@@ -60,6 +84,10 @@ let AFErrorCode = /* @__PURE__ */ function(AFErrorCode$1) {
|
|
|
60
84
|
AFErrorCode$1["PASSWORD_EMPTY"] = "PASSWORD_EMPTY";
|
|
61
85
|
AFErrorCode$1["PATH_WITHOUT_COMPANY"] = "PATH_WITHOUT_COMPANY";
|
|
62
86
|
AFErrorCode$1["PATH_WITHOUT_EVIDENCE"] = "PATH_WITHOUT_EVIDENCE";
|
|
87
|
+
AFErrorCode$1["INVALID_IDENTIFIER"] = "INVALID_IDENTIFIER";
|
|
88
|
+
AFErrorCode$1["ID_MISMATCH"] = "ID_MISMATCH";
|
|
89
|
+
AFErrorCode$1["MISSING_IDENTIFIER"] = "MISSING_IDENTIFIER";
|
|
90
|
+
AFErrorCode$1["UNRESOLVED_ENTITY"] = "UNRESOLVED_ENTITY";
|
|
63
91
|
AFErrorCode$1["UNKNOWN"] = "UNKNOWN";
|
|
64
92
|
return AFErrorCode$1;
|
|
65
93
|
}({});
|
|
@@ -184,9 +212,37 @@ var AFEntity = class AFEntity {
|
|
|
184
212
|
static {
|
|
185
213
|
this.propAnnotations = {};
|
|
186
214
|
}
|
|
215
|
+
/**
|
|
216
|
+
* Server-assigned internal id. Readonly — never set by application code.
|
|
217
|
+
* Use api.resolveStubId() or api.resolve() to obtain a confirmed id.
|
|
218
|
+
*/
|
|
219
|
+
get id() {
|
|
220
|
+
return this._id;
|
|
221
|
+
}
|
|
222
|
+
/**
|
|
223
|
+
* @internal — called only by AFApiClient. Do NOT call from application code.
|
|
224
|
+
* Sets the confirmed server id and transitions state to 'exists'.
|
|
225
|
+
*/
|
|
226
|
+
_setId(id) {
|
|
227
|
+
this._id = id;
|
|
228
|
+
this._state = "exists";
|
|
229
|
+
}
|
|
230
|
+
/**
|
|
231
|
+
* Returns the entity's existence state:
|
|
232
|
+
* - true — definitely no server record ('new')
|
|
233
|
+
* - undefined — has identifiers but existence unconfirmed ('unknown')
|
|
234
|
+
* - false — server existence confirmed ('exists')
|
|
235
|
+
*/
|
|
236
|
+
get isNew() {
|
|
237
|
+
switch (this._state) {
|
|
238
|
+
case "new": return true;
|
|
239
|
+
case "unknown": return;
|
|
240
|
+
case "exists": return false;
|
|
241
|
+
}
|
|
242
|
+
}
|
|
187
243
|
constructor(stitkyCache) {
|
|
244
|
+
this._state = "new";
|
|
188
245
|
this._orig = {};
|
|
189
|
-
this._isNew = true;
|
|
190
246
|
this._stitkyCache = stitkyCache;
|
|
191
247
|
}
|
|
192
248
|
getPropertyTypeAnnotation(key) {
|
|
@@ -201,9 +257,6 @@ var AFEntity = class AFEntity {
|
|
|
201
257
|
get pristine() {
|
|
202
258
|
return !this.hasChanged();
|
|
203
259
|
}
|
|
204
|
-
get isNew() {
|
|
205
|
-
return this._isNew;
|
|
206
|
-
}
|
|
207
260
|
getCotr() {
|
|
208
261
|
return this.constructor;
|
|
209
262
|
}
|
|
@@ -213,14 +266,20 @@ var AFEntity = class AFEntity {
|
|
|
213
266
|
const v = self[key];
|
|
214
267
|
const origV = self._orig[key];
|
|
215
268
|
const annot = this.getCotr().propAnnotations[key];
|
|
216
|
-
if (!annot) throw new AFError(AFErrorCode.PROPERTY_NOT_FOUND, `Property ${key} not found on entity ${
|
|
269
|
+
if (!annot) throw new AFError(AFErrorCode.PROPERTY_NOT_FOUND, `Property ${key} not found on entity ${this.getCotr().EntityName}.`);
|
|
217
270
|
if (v === void 0) return false;
|
|
271
|
+
if (origV === v && v === null) return false;
|
|
218
272
|
if (annot.type === PropertyType.Relation && annot.isArray) {
|
|
219
273
|
if (!origV) return true;
|
|
220
274
|
if (!arraysEqual(origV, v)) return true;
|
|
221
275
|
for (const it of v) if (it.hasChanged()) return true;
|
|
222
276
|
return false;
|
|
223
277
|
}
|
|
278
|
+
if (annot.type === PropertyType.Relation) {
|
|
279
|
+
if (origV !== v) return true;
|
|
280
|
+
if (v instanceof AFEntity && v.hasChanged()) return true;
|
|
281
|
+
return false;
|
|
282
|
+
}
|
|
224
283
|
return origV !== v;
|
|
225
284
|
}
|
|
226
285
|
for (const key$1 of Object.keys(this.getCotr().propAnnotations)) if (this.hasChanged(key$1)) return true;
|
|
@@ -236,9 +295,9 @@ var AFEntity = class AFEntity {
|
|
|
236
295
|
return keys;
|
|
237
296
|
}
|
|
238
297
|
reset(key) {
|
|
239
|
-
if (!key) throw new AFError(AFErrorCode.PROPERTY_NOT_FOUND, `To reset all properties on entity ${this.getCotr().EntityName} use force (1st arg set
|
|
298
|
+
if (!key) throw new AFError(AFErrorCode.PROPERTY_NOT_FOUND, `To reset all properties on entity ${this.getCotr().EntityName} use force (1st arg set to true).`);
|
|
240
299
|
if (typeof key === "string") {
|
|
241
|
-
this[key] = this._orig || void 0;
|
|
300
|
+
this[key] = this._orig[key] || void 0;
|
|
242
301
|
return;
|
|
243
302
|
}
|
|
244
303
|
for (const keyin of Object.keys(this.getCotr().propAnnotations)) this.reset(keyin);
|
|
@@ -510,11 +569,6 @@ var AFKontakt = class extends AFEntity {
|
|
|
510
569
|
}
|
|
511
570
|
static {
|
|
512
571
|
this.propAnnotations = {
|
|
513
|
-
id: {
|
|
514
|
-
key: "id",
|
|
515
|
-
type: PropertyType.Integer,
|
|
516
|
-
isArray: false
|
|
517
|
-
},
|
|
518
572
|
lastUpdate: {
|
|
519
573
|
key: "lastUpdate",
|
|
520
574
|
type: PropertyType.DateTime,
|
|
@@ -1934,11 +1988,6 @@ var AFAdresar = class extends AFEntity {
|
|
|
1934
1988
|
}
|
|
1935
1989
|
static {
|
|
1936
1990
|
this.propAnnotations = {
|
|
1937
|
-
id: {
|
|
1938
|
-
key: "id",
|
|
1939
|
-
type: PropertyType.Integer,
|
|
1940
|
-
isArray: false
|
|
1941
|
-
},
|
|
1942
1991
|
lastUpdate: {
|
|
1943
1992
|
key: "lastUpdate",
|
|
1944
1993
|
type: PropertyType.DateTime,
|
|
@@ -2420,11 +2469,6 @@ var AFUdalost = class extends AFEntity {
|
|
|
2420
2469
|
}
|
|
2421
2470
|
static {
|
|
2422
2471
|
this.propAnnotations = {
|
|
2423
|
-
id: {
|
|
2424
|
-
key: "id",
|
|
2425
|
-
type: PropertyType.Integer,
|
|
2426
|
-
isArray: false
|
|
2427
|
-
},
|
|
2428
2472
|
lastUpdate: {
|
|
2429
2473
|
key: "lastUpdate",
|
|
2430
2474
|
type: PropertyType.DateTime,
|
|
@@ -2678,11 +2722,6 @@ var AFTypAktivity = class extends AFEntity {
|
|
|
2678
2722
|
}
|
|
2679
2723
|
static {
|
|
2680
2724
|
this.propAnnotations = {
|
|
2681
|
-
id: {
|
|
2682
|
-
key: "id",
|
|
2683
|
-
type: PropertyType.Integer,
|
|
2684
|
-
isArray: false
|
|
2685
|
-
},
|
|
2686
2725
|
lastUpdate: {
|
|
2687
2726
|
key: "lastUpdate",
|
|
2688
2727
|
type: PropertyType.DateTime,
|
|
@@ -2790,11 +2829,6 @@ var AFTypNakladu = class extends AFEntity {
|
|
|
2790
2829
|
}
|
|
2791
2830
|
static {
|
|
2792
2831
|
this.propAnnotations = {
|
|
2793
|
-
id: {
|
|
2794
|
-
key: "id",
|
|
2795
|
-
type: PropertyType.Integer,
|
|
2796
|
-
isArray: false
|
|
2797
|
-
},
|
|
2798
2832
|
lastUpdate: {
|
|
2799
2833
|
key: "lastUpdate",
|
|
2800
2834
|
type: PropertyType.DateTime,
|
|
@@ -2884,11 +2918,6 @@ var AFNaklad = class extends AFEntity {
|
|
|
2884
2918
|
}
|
|
2885
2919
|
static {
|
|
2886
2920
|
this.propAnnotations = {
|
|
2887
|
-
id: {
|
|
2888
|
-
key: "id",
|
|
2889
|
-
type: PropertyType.Integer,
|
|
2890
|
-
isArray: false
|
|
2891
|
-
},
|
|
2892
2921
|
lastUpdate: {
|
|
2893
2922
|
key: "lastUpdate",
|
|
2894
2923
|
type: PropertyType.DateTime,
|
|
@@ -2980,11 +3009,6 @@ var AFAdresarBankovniUcet = class extends AFEntity {
|
|
|
2980
3009
|
}
|
|
2981
3010
|
static {
|
|
2982
3011
|
this.propAnnotations = {
|
|
2983
|
-
id: {
|
|
2984
|
-
key: "id",
|
|
2985
|
-
type: PropertyType.Integer,
|
|
2986
|
-
isArray: false
|
|
2987
|
-
},
|
|
2988
3012
|
lastUpdate: {
|
|
2989
3013
|
key: "lastUpdate",
|
|
2990
3014
|
type: PropertyType.DateTime,
|
|
@@ -3124,11 +3148,6 @@ var AFSkupinaFirem = class extends AFEntity {
|
|
|
3124
3148
|
}
|
|
3125
3149
|
static {
|
|
3126
3150
|
this.propAnnotations = {
|
|
3127
|
-
id: {
|
|
3128
|
-
key: "id",
|
|
3129
|
-
type: PropertyType.Integer,
|
|
3130
|
-
isArray: false
|
|
3131
|
-
},
|
|
3132
3151
|
lastUpdate: {
|
|
3133
3152
|
key: "lastUpdate",
|
|
3134
3153
|
type: PropertyType.DateTime,
|
|
@@ -3232,11 +3251,6 @@ var AFSmlouva = class extends AFEntity {
|
|
|
3232
3251
|
}
|
|
3233
3252
|
static {
|
|
3234
3253
|
this.propAnnotations = {
|
|
3235
|
-
id: {
|
|
3236
|
-
key: "id",
|
|
3237
|
-
type: PropertyType.Integer,
|
|
3238
|
-
isArray: false
|
|
3239
|
-
},
|
|
3240
3254
|
lastUpdate: {
|
|
3241
3255
|
key: "lastUpdate",
|
|
3242
3256
|
type: PropertyType.DateTime,
|
|
@@ -3586,11 +3600,6 @@ var AFDodavatelskaSmlouva = class extends AFEntity {
|
|
|
3586
3600
|
}
|
|
3587
3601
|
static {
|
|
3588
3602
|
this.propAnnotations = {
|
|
3589
|
-
id: {
|
|
3590
|
-
key: "id",
|
|
3591
|
-
type: PropertyType.Integer,
|
|
3592
|
-
isArray: false
|
|
3593
|
-
},
|
|
3594
3603
|
lastUpdate: {
|
|
3595
3604
|
key: "lastUpdate",
|
|
3596
3605
|
type: PropertyType.DateTime,
|
|
@@ -3925,11 +3934,6 @@ var AFTypSmlouvy = class extends AFEntity {
|
|
|
3925
3934
|
}
|
|
3926
3935
|
static {
|
|
3927
3936
|
this.propAnnotations = {
|
|
3928
|
-
id: {
|
|
3929
|
-
key: "id",
|
|
3930
|
-
type: PropertyType.Integer,
|
|
3931
|
-
isArray: false
|
|
3932
|
-
},
|
|
3933
3937
|
lastUpdate: {
|
|
3934
3938
|
key: "lastUpdate",
|
|
3935
3939
|
type: PropertyType.DateTime,
|
|
@@ -4116,11 +4120,6 @@ var AFDodavatelskyTypSmlouvy = class extends AFEntity {
|
|
|
4116
4120
|
}
|
|
4117
4121
|
static {
|
|
4118
4122
|
this.propAnnotations = {
|
|
4119
|
-
id: {
|
|
4120
|
-
key: "id",
|
|
4121
|
-
type: PropertyType.Integer,
|
|
4122
|
-
isArray: false
|
|
4123
|
-
},
|
|
4124
4123
|
lastUpdate: {
|
|
4125
4124
|
key: "lastUpdate",
|
|
4126
4125
|
type: PropertyType.DateTime,
|
|
@@ -4275,11 +4274,6 @@ var AFStavSmlouvy = class extends AFEntity {
|
|
|
4275
4274
|
}
|
|
4276
4275
|
static {
|
|
4277
4276
|
this.propAnnotations = {
|
|
4278
|
-
id: {
|
|
4279
|
-
key: "id",
|
|
4280
|
-
type: PropertyType.Integer,
|
|
4281
|
-
isArray: false
|
|
4282
|
-
},
|
|
4283
4277
|
lastUpdate: {
|
|
4284
4278
|
key: "lastUpdate",
|
|
4285
4279
|
type: PropertyType.DateTime,
|
|
@@ -4367,11 +4361,6 @@ var AFSmlouvaPolozka = class extends AFEntity {
|
|
|
4367
4361
|
}
|
|
4368
4362
|
static {
|
|
4369
4363
|
this.propAnnotations = {
|
|
4370
|
-
id: {
|
|
4371
|
-
key: "id",
|
|
4372
|
-
type: PropertyType.Integer,
|
|
4373
|
-
isArray: false
|
|
4374
|
-
},
|
|
4375
4364
|
lastUpdate: {
|
|
4376
4365
|
key: "lastUpdate",
|
|
4377
4366
|
type: PropertyType.DateTime,
|
|
@@ -4666,11 +4655,6 @@ var AFSmlouvaZurnal = class extends AFEntity {
|
|
|
4666
4655
|
}
|
|
4667
4656
|
static {
|
|
4668
4657
|
this.propAnnotations = {
|
|
4669
|
-
id: {
|
|
4670
|
-
key: "id",
|
|
4671
|
-
type: PropertyType.Integer,
|
|
4672
|
-
isArray: false
|
|
4673
|
-
},
|
|
4674
4658
|
lastUpdate: {
|
|
4675
4659
|
key: "lastUpdate",
|
|
4676
4660
|
type: PropertyType.DateTime,
|
|
@@ -4735,11 +4719,6 @@ var AFObjednavkaPrijata = class extends AFEntity {
|
|
|
4735
4719
|
}
|
|
4736
4720
|
static {
|
|
4737
4721
|
this.propAnnotations = {
|
|
4738
|
-
id: {
|
|
4739
|
-
key: "id",
|
|
4740
|
-
type: PropertyType.Integer,
|
|
4741
|
-
isArray: false
|
|
4742
|
-
},
|
|
4743
4722
|
lastUpdate: {
|
|
4744
4723
|
key: "lastUpdate",
|
|
4745
4724
|
type: PropertyType.DateTime,
|
|
@@ -5498,11 +5477,6 @@ var AFObjednavkaPrijataPolozka = class extends AFEntity {
|
|
|
5498
5477
|
}
|
|
5499
5478
|
static {
|
|
5500
5479
|
this.propAnnotations = {
|
|
5501
|
-
id: {
|
|
5502
|
-
key: "id",
|
|
5503
|
-
type: PropertyType.Integer,
|
|
5504
|
-
isArray: false
|
|
5505
|
-
},
|
|
5506
5480
|
lastUpdate: {
|
|
5507
5481
|
key: "lastUpdate",
|
|
5508
5482
|
type: PropertyType.DateTime,
|
|
@@ -5981,11 +5955,6 @@ var AFRadaObjednavkyPrijate = class extends AFEntity {
|
|
|
5981
5955
|
}
|
|
5982
5956
|
static {
|
|
5983
5957
|
this.propAnnotations = {
|
|
5984
|
-
id: {
|
|
5985
|
-
key: "id",
|
|
5986
|
-
type: PropertyType.Integer,
|
|
5987
|
-
isArray: false
|
|
5988
|
-
},
|
|
5989
5958
|
lastUpdate: {
|
|
5990
5959
|
key: "lastUpdate",
|
|
5991
5960
|
type: PropertyType.DateTime,
|
|
@@ -6079,11 +6048,6 @@ var AFTypObjednavkyPrijate = class extends AFEntity {
|
|
|
6079
6048
|
}
|
|
6080
6049
|
static {
|
|
6081
6050
|
this.propAnnotations = {
|
|
6082
|
-
id: {
|
|
6083
|
-
key: "id",
|
|
6084
|
-
type: PropertyType.Integer,
|
|
6085
|
-
isArray: false
|
|
6086
|
-
},
|
|
6087
6051
|
lastUpdate: {
|
|
6088
6052
|
key: "lastUpdate",
|
|
6089
6053
|
type: PropertyType.DateTime,
|
|
@@ -6380,11 +6344,6 @@ var AFObjednavkaVydana = class extends AFEntity {
|
|
|
6380
6344
|
}
|
|
6381
6345
|
static {
|
|
6382
6346
|
this.propAnnotations = {
|
|
6383
|
-
id: {
|
|
6384
|
-
key: "id",
|
|
6385
|
-
type: PropertyType.Integer,
|
|
6386
|
-
isArray: false
|
|
6387
|
-
},
|
|
6388
6347
|
lastUpdate: {
|
|
6389
6348
|
key: "lastUpdate",
|
|
6390
6349
|
type: PropertyType.DateTime,
|
|
@@ -7016,11 +6975,6 @@ var AFObjednavkaVydanaPolozka = class extends AFEntity {
|
|
|
7016
6975
|
}
|
|
7017
6976
|
static {
|
|
7018
6977
|
this.propAnnotations = {
|
|
7019
|
-
id: {
|
|
7020
|
-
key: "id",
|
|
7021
|
-
type: PropertyType.Integer,
|
|
7022
|
-
isArray: false
|
|
7023
|
-
},
|
|
7024
6978
|
lastUpdate: {
|
|
7025
6979
|
key: "lastUpdate",
|
|
7026
6980
|
type: PropertyType.DateTime,
|
|
@@ -7404,11 +7358,6 @@ var AFTypObjednavkyVydane = class extends AFEntity {
|
|
|
7404
7358
|
}
|
|
7405
7359
|
static {
|
|
7406
7360
|
this.propAnnotations = {
|
|
7407
|
-
id: {
|
|
7408
|
-
key: "id",
|
|
7409
|
-
type: PropertyType.Integer,
|
|
7410
|
-
isArray: false
|
|
7411
|
-
},
|
|
7412
7361
|
lastUpdate: {
|
|
7413
7362
|
key: "lastUpdate",
|
|
7414
7363
|
type: PropertyType.DateTime,
|
|
@@ -7617,11 +7566,6 @@ var AFRadaObjednavkyVydane = class extends AFEntity {
|
|
|
7617
7566
|
}
|
|
7618
7567
|
static {
|
|
7619
7568
|
this.propAnnotations = {
|
|
7620
|
-
id: {
|
|
7621
|
-
key: "id",
|
|
7622
|
-
type: PropertyType.Integer,
|
|
7623
|
-
isArray: false
|
|
7624
|
-
},
|
|
7625
7569
|
lastUpdate: {
|
|
7626
7570
|
key: "lastUpdate",
|
|
7627
7571
|
type: PropertyType.DateTime,
|
|
@@ -7718,11 +7662,6 @@ var AFPoptavkaVydana = class extends AFEntity {
|
|
|
7718
7662
|
}
|
|
7719
7663
|
static {
|
|
7720
7664
|
this.propAnnotations = {
|
|
7721
|
-
id: {
|
|
7722
|
-
key: "id",
|
|
7723
|
-
type: PropertyType.Integer,
|
|
7724
|
-
isArray: false
|
|
7725
|
-
},
|
|
7726
7665
|
lastUpdate: {
|
|
7727
7666
|
key: "lastUpdate",
|
|
7728
7667
|
type: PropertyType.DateTime,
|
|
@@ -8324,11 +8263,6 @@ var AFPoptavkaVydanaPolozka = class extends AFEntity {
|
|
|
8324
8263
|
}
|
|
8325
8264
|
static {
|
|
8326
8265
|
this.propAnnotations = {
|
|
8327
|
-
id: {
|
|
8328
|
-
key: "id",
|
|
8329
|
-
type: PropertyType.Integer,
|
|
8330
|
-
isArray: false
|
|
8331
|
-
},
|
|
8332
8266
|
lastUpdate: {
|
|
8333
8267
|
key: "lastUpdate",
|
|
8334
8268
|
type: PropertyType.DateTime,
|
|
@@ -8675,11 +8609,6 @@ var AFTypPoptavkyVydane = class extends AFEntity {
|
|
|
8675
8609
|
}
|
|
8676
8610
|
static {
|
|
8677
8611
|
this.propAnnotations = {
|
|
8678
|
-
id: {
|
|
8679
|
-
key: "id",
|
|
8680
|
-
type: PropertyType.Integer,
|
|
8681
|
-
isArray: false
|
|
8682
|
-
},
|
|
8683
8612
|
lastUpdate: {
|
|
8684
8613
|
key: "lastUpdate",
|
|
8685
8614
|
type: PropertyType.DateTime,
|
|
@@ -8870,11 +8799,6 @@ var AFRadaPoptavkyVydane = class extends AFEntity {
|
|
|
8870
8799
|
}
|
|
8871
8800
|
static {
|
|
8872
8801
|
this.propAnnotations = {
|
|
8873
|
-
id: {
|
|
8874
|
-
key: "id",
|
|
8875
|
-
type: PropertyType.Integer,
|
|
8876
|
-
isArray: false
|
|
8877
|
-
},
|
|
8878
8802
|
lastUpdate: {
|
|
8879
8803
|
key: "lastUpdate",
|
|
8880
8804
|
type: PropertyType.DateTime,
|
|
@@ -8971,11 +8895,6 @@ var AFPoptavkaPrijata = class extends AFEntity {
|
|
|
8971
8895
|
}
|
|
8972
8896
|
static {
|
|
8973
8897
|
this.propAnnotations = {
|
|
8974
|
-
id: {
|
|
8975
|
-
key: "id",
|
|
8976
|
-
type: PropertyType.Integer,
|
|
8977
|
-
isArray: false
|
|
8978
|
-
},
|
|
8979
8898
|
lastUpdate: {
|
|
8980
8899
|
key: "lastUpdate",
|
|
8981
8900
|
type: PropertyType.DateTime,
|
|
@@ -9603,11 +9522,6 @@ var AFPoptavkaPrijataPolozka = class extends AFEntity {
|
|
|
9603
9522
|
}
|
|
9604
9523
|
static {
|
|
9605
9524
|
this.propAnnotations = {
|
|
9606
|
-
id: {
|
|
9607
|
-
key: "id",
|
|
9608
|
-
type: PropertyType.Integer,
|
|
9609
|
-
isArray: false
|
|
9610
|
-
},
|
|
9611
9525
|
lastUpdate: {
|
|
9612
9526
|
key: "lastUpdate",
|
|
9613
9527
|
type: PropertyType.DateTime,
|
|
@@ -10034,11 +9948,6 @@ var AFTypPoptavkyPrijate = class extends AFEntity {
|
|
|
10034
9948
|
}
|
|
10035
9949
|
static {
|
|
10036
9950
|
this.propAnnotations = {
|
|
10037
|
-
id: {
|
|
10038
|
-
key: "id",
|
|
10039
|
-
type: PropertyType.Integer,
|
|
10040
|
-
isArray: false
|
|
10041
|
-
},
|
|
10042
9951
|
lastUpdate: {
|
|
10043
9952
|
key: "lastUpdate",
|
|
10044
9953
|
type: PropertyType.DateTime,
|
|
@@ -10231,11 +10140,6 @@ var AFRadaPoptavkyPrijate = class extends AFEntity {
|
|
|
10231
10140
|
}
|
|
10232
10141
|
static {
|
|
10233
10142
|
this.propAnnotations = {
|
|
10234
|
-
id: {
|
|
10235
|
-
key: "id",
|
|
10236
|
-
type: PropertyType.Integer,
|
|
10237
|
-
isArray: false
|
|
10238
|
-
},
|
|
10239
10143
|
lastUpdate: {
|
|
10240
10144
|
key: "lastUpdate",
|
|
10241
10145
|
type: PropertyType.DateTime,
|
|
@@ -10332,11 +10236,6 @@ var AFNabidkaVydana = class extends AFEntity {
|
|
|
10332
10236
|
}
|
|
10333
10237
|
static {
|
|
10334
10238
|
this.propAnnotations = {
|
|
10335
|
-
id: {
|
|
10336
|
-
key: "id",
|
|
10337
|
-
type: PropertyType.Integer,
|
|
10338
|
-
isArray: false
|
|
10339
|
-
},
|
|
10340
10239
|
lastUpdate: {
|
|
10341
10240
|
key: "lastUpdate",
|
|
10342
10241
|
type: PropertyType.DateTime,
|
|
@@ -10969,11 +10868,6 @@ var AFNabidkaVydanaPolozka = class extends AFEntity {
|
|
|
10969
10868
|
}
|
|
10970
10869
|
static {
|
|
10971
10870
|
this.propAnnotations = {
|
|
10972
|
-
id: {
|
|
10973
|
-
key: "id",
|
|
10974
|
-
type: PropertyType.Integer,
|
|
10975
|
-
isArray: false
|
|
10976
|
-
},
|
|
10977
10871
|
lastUpdate: {
|
|
10978
10872
|
key: "lastUpdate",
|
|
10979
10873
|
type: PropertyType.DateTime,
|
|
@@ -11400,11 +11294,6 @@ var AFTypNabidkyVydane = class extends AFEntity {
|
|
|
11400
11294
|
}
|
|
11401
11295
|
static {
|
|
11402
11296
|
this.propAnnotations = {
|
|
11403
|
-
id: {
|
|
11404
|
-
key: "id",
|
|
11405
|
-
type: PropertyType.Integer,
|
|
11406
|
-
isArray: false
|
|
11407
|
-
},
|
|
11408
11297
|
lastUpdate: {
|
|
11409
11298
|
key: "lastUpdate",
|
|
11410
11299
|
type: PropertyType.DateTime,
|
|
@@ -11607,11 +11496,6 @@ var AFRadaNabidkyVydane = class extends AFEntity {
|
|
|
11607
11496
|
}
|
|
11608
11497
|
static {
|
|
11609
11498
|
this.propAnnotations = {
|
|
11610
|
-
id: {
|
|
11611
|
-
key: "id",
|
|
11612
|
-
type: PropertyType.Integer,
|
|
11613
|
-
isArray: false
|
|
11614
|
-
},
|
|
11615
11499
|
lastUpdate: {
|
|
11616
11500
|
key: "lastUpdate",
|
|
11617
11501
|
type: PropertyType.DateTime,
|
|
@@ -11708,11 +11592,6 @@ var AFNabidkaPrijata = class extends AFEntity {
|
|
|
11708
11592
|
}
|
|
11709
11593
|
static {
|
|
11710
11594
|
this.propAnnotations = {
|
|
11711
|
-
id: {
|
|
11712
|
-
key: "id",
|
|
11713
|
-
type: PropertyType.Integer,
|
|
11714
|
-
isArray: false
|
|
11715
|
-
},
|
|
11716
11595
|
lastUpdate: {
|
|
11717
11596
|
key: "lastUpdate",
|
|
11718
11597
|
type: PropertyType.DateTime,
|
|
@@ -12327,11 +12206,6 @@ var AFTypNabidkyPrijate = class extends AFEntity {
|
|
|
12327
12206
|
}
|
|
12328
12207
|
static {
|
|
12329
12208
|
this.propAnnotations = {
|
|
12330
|
-
id: {
|
|
12331
|
-
key: "id",
|
|
12332
|
-
type: PropertyType.Integer,
|
|
12333
|
-
isArray: false
|
|
12334
|
-
},
|
|
12335
12209
|
lastUpdate: {
|
|
12336
12210
|
key: "lastUpdate",
|
|
12337
12211
|
type: PropertyType.DateTime,
|
|
@@ -12518,11 +12392,6 @@ var AFNabidkaPrijataPolozka = class extends AFEntity {
|
|
|
12518
12392
|
}
|
|
12519
12393
|
static {
|
|
12520
12394
|
this.propAnnotations = {
|
|
12521
|
-
id: {
|
|
12522
|
-
key: "id",
|
|
12523
|
-
type: PropertyType.Integer,
|
|
12524
|
-
isArray: false
|
|
12525
|
-
},
|
|
12526
12395
|
lastUpdate: {
|
|
12527
12396
|
key: "lastUpdate",
|
|
12528
12397
|
type: PropertyType.DateTime,
|
|
@@ -12869,11 +12738,6 @@ var AFRadaNabidkyPrijate = class extends AFEntity {
|
|
|
12869
12738
|
}
|
|
12870
12739
|
static {
|
|
12871
12740
|
this.propAnnotations = {
|
|
12872
|
-
id: {
|
|
12873
|
-
key: "id",
|
|
12874
|
-
type: PropertyType.Integer,
|
|
12875
|
-
isArray: false
|
|
12876
|
-
},
|
|
12877
12741
|
lastUpdate: {
|
|
12878
12742
|
key: "lastUpdate",
|
|
12879
12743
|
type: PropertyType.DateTime,
|
|
@@ -12976,11 +12840,6 @@ var AFFakturaPrijata = class extends AFEntity {
|
|
|
12976
12840
|
}
|
|
12977
12841
|
static {
|
|
12978
12842
|
this.propAnnotations = {
|
|
12979
|
-
id: {
|
|
12980
|
-
key: "id",
|
|
12981
|
-
type: PropertyType.Integer,
|
|
12982
|
-
isArray: false
|
|
12983
|
-
},
|
|
12984
12843
|
lastUpdate: {
|
|
12985
12844
|
key: "lastUpdate",
|
|
12986
12845
|
type: PropertyType.DateTime,
|
|
@@ -13941,11 +13800,6 @@ var AFFakturaPrijataPolozka = class extends AFEntity {
|
|
|
13941
13800
|
}
|
|
13942
13801
|
static {
|
|
13943
13802
|
this.propAnnotations = {
|
|
13944
|
-
id: {
|
|
13945
|
-
key: "id",
|
|
13946
|
-
type: PropertyType.Integer,
|
|
13947
|
-
isArray: false
|
|
13948
|
-
},
|
|
13949
13803
|
lastUpdate: {
|
|
13950
13804
|
key: "lastUpdate",
|
|
13951
13805
|
type: PropertyType.DateTime,
|
|
@@ -14602,11 +14456,6 @@ var AFTypFakturyPrijate = class extends AFEntity {
|
|
|
14602
14456
|
}
|
|
14603
14457
|
static {
|
|
14604
14458
|
this.propAnnotations = {
|
|
14605
|
-
id: {
|
|
14606
|
-
key: "id",
|
|
14607
|
-
type: PropertyType.Integer,
|
|
14608
|
-
isArray: false
|
|
14609
|
-
},
|
|
14610
14459
|
lastUpdate: {
|
|
14611
14460
|
key: "lastUpdate",
|
|
14612
14461
|
type: PropertyType.DateTime,
|
|
@@ -14933,11 +14782,6 @@ var AFRadaFakturyPrijate = class extends AFEntity {
|
|
|
14933
14782
|
}
|
|
14934
14783
|
static {
|
|
14935
14784
|
this.propAnnotations = {
|
|
14936
|
-
id: {
|
|
14937
|
-
key: "id",
|
|
14938
|
-
type: PropertyType.Integer,
|
|
14939
|
-
isArray: false
|
|
14940
|
-
},
|
|
14941
14785
|
lastUpdate: {
|
|
14942
14786
|
key: "lastUpdate",
|
|
14943
14787
|
type: PropertyType.DateTime,
|
|
@@ -15031,11 +14875,6 @@ var AFPredpisZauctovani = class extends AFEntity {
|
|
|
15031
14875
|
}
|
|
15032
14876
|
static {
|
|
15033
14877
|
this.propAnnotations = {
|
|
15034
|
-
id: {
|
|
15035
|
-
key: "id",
|
|
15036
|
-
type: PropertyType.Integer,
|
|
15037
|
-
isArray: false
|
|
15038
|
-
},
|
|
15039
14878
|
lastUpdate: {
|
|
15040
14879
|
key: "lastUpdate",
|
|
15041
14880
|
type: PropertyType.DateTime,
|
|
@@ -15223,11 +15062,6 @@ var AFDefStore = class extends AFEntity {
|
|
|
15223
15062
|
}
|
|
15224
15063
|
static {
|
|
15225
15064
|
this.propAnnotations = {
|
|
15226
|
-
id: {
|
|
15227
|
-
key: "id",
|
|
15228
|
-
type: PropertyType.Integer,
|
|
15229
|
-
isArray: false
|
|
15230
|
-
},
|
|
15231
15065
|
lastUpdate: {
|
|
15232
15066
|
key: "lastUpdate",
|
|
15233
15067
|
type: PropertyType.DateTime,
|
|
@@ -15337,11 +15171,6 @@ var AFRada = class extends AFEntity {
|
|
|
15337
15171
|
}
|
|
15338
15172
|
static {
|
|
15339
15173
|
this.propAnnotations = {
|
|
15340
|
-
id: {
|
|
15341
|
-
key: "id",
|
|
15342
|
-
type: PropertyType.Integer,
|
|
15343
|
-
isArray: false
|
|
15344
|
-
},
|
|
15345
15174
|
lastUpdate: {
|
|
15346
15175
|
key: "lastUpdate",
|
|
15347
15176
|
type: PropertyType.DateTime,
|
|
@@ -15435,11 +15264,6 @@ var AFRocniRada = class extends AFEntity {
|
|
|
15435
15264
|
}
|
|
15436
15265
|
static {
|
|
15437
15266
|
this.propAnnotations = {
|
|
15438
|
-
id: {
|
|
15439
|
-
key: "id",
|
|
15440
|
-
type: PropertyType.Integer,
|
|
15441
|
-
isArray: false
|
|
15442
|
-
},
|
|
15443
15267
|
lastUpdate: {
|
|
15444
15268
|
key: "lastUpdate",
|
|
15445
15269
|
type: PropertyType.DateTime,
|
|
@@ -15517,11 +15341,6 @@ var AFMistoUrceni = class extends AFEntity {
|
|
|
15517
15341
|
}
|
|
15518
15342
|
static {
|
|
15519
15343
|
this.propAnnotations = {
|
|
15520
|
-
id: {
|
|
15521
|
-
key: "id",
|
|
15522
|
-
type: PropertyType.Integer,
|
|
15523
|
-
isArray: false
|
|
15524
|
-
},
|
|
15525
15344
|
lastUpdate: {
|
|
15526
15345
|
key: "lastUpdate",
|
|
15527
15346
|
type: PropertyType.DateTime,
|
|
@@ -15689,11 +15508,6 @@ var AFText = class extends AFEntity {
|
|
|
15689
15508
|
}
|
|
15690
15509
|
static {
|
|
15691
15510
|
this.propAnnotations = {
|
|
15692
|
-
id: {
|
|
15693
|
-
key: "id",
|
|
15694
|
-
type: PropertyType.Integer,
|
|
15695
|
-
isArray: false
|
|
15696
|
-
},
|
|
15697
15511
|
lastUpdate: {
|
|
15698
15512
|
key: "lastUpdate",
|
|
15699
15513
|
type: PropertyType.DateTime,
|
|
@@ -17557,11 +17371,6 @@ var AFPokladniPohyb = class extends AFEntity {
|
|
|
17557
17371
|
}
|
|
17558
17372
|
static {
|
|
17559
17373
|
this.propAnnotations = {
|
|
17560
|
-
id: {
|
|
17561
|
-
key: "id",
|
|
17562
|
-
type: PropertyType.Integer,
|
|
17563
|
-
isArray: false
|
|
17564
|
-
},
|
|
17565
17374
|
lastUpdate: {
|
|
17566
17375
|
key: "lastUpdate",
|
|
17567
17376
|
type: PropertyType.DateTime,
|
|
@@ -18354,11 +18163,6 @@ var AFPokladniPohybPolozka = class extends AFEntity {
|
|
|
18354
18163
|
}
|
|
18355
18164
|
static {
|
|
18356
18165
|
this.propAnnotations = {
|
|
18357
|
-
id: {
|
|
18358
|
-
key: "id",
|
|
18359
|
-
type: PropertyType.Integer,
|
|
18360
|
-
isArray: false
|
|
18361
|
-
},
|
|
18362
18166
|
lastUpdate: {
|
|
18363
18167
|
key: "lastUpdate",
|
|
18364
18168
|
type: PropertyType.DateTime,
|
|
@@ -18992,11 +18796,6 @@ var AFRadaPokladniPohyb = class extends AFEntity {
|
|
|
18992
18796
|
}
|
|
18993
18797
|
static {
|
|
18994
18798
|
this.propAnnotations = {
|
|
18995
|
-
id: {
|
|
18996
|
-
key: "id",
|
|
18997
|
-
type: PropertyType.Integer,
|
|
18998
|
-
isArray: false
|
|
18999
|
-
},
|
|
19000
18799
|
lastUpdate: {
|
|
19001
18800
|
key: "lastUpdate",
|
|
19002
18801
|
type: PropertyType.DateTime,
|
|
@@ -19090,11 +18889,6 @@ var AFTypPokladniPohyb = class extends AFEntity {
|
|
|
19090
18889
|
}
|
|
19091
18890
|
static {
|
|
19092
18891
|
this.propAnnotations = {
|
|
19093
|
-
id: {
|
|
19094
|
-
key: "id",
|
|
19095
|
-
type: PropertyType.Integer,
|
|
19096
|
-
isArray: false
|
|
19097
|
-
},
|
|
19098
18892
|
lastUpdate: {
|
|
19099
18893
|
key: "lastUpdate",
|
|
19100
18894
|
type: PropertyType.DateTime,
|
|
@@ -19459,11 +19253,6 @@ var AFBanka = class extends AFEntity {
|
|
|
19459
19253
|
}
|
|
19460
19254
|
static {
|
|
19461
19255
|
this.propAnnotations = {
|
|
19462
|
-
id: {
|
|
19463
|
-
key: "id",
|
|
19464
|
-
type: PropertyType.Integer,
|
|
19465
|
-
isArray: false
|
|
19466
|
-
},
|
|
19467
19256
|
lastUpdate: {
|
|
19468
19257
|
key: "lastUpdate",
|
|
19469
19258
|
type: PropertyType.DateTime,
|
|
@@ -20191,11 +19980,6 @@ var AFTypBanka = class extends AFEntity {
|
|
|
20191
19980
|
}
|
|
20192
19981
|
static {
|
|
20193
19982
|
this.propAnnotations = {
|
|
20194
|
-
id: {
|
|
20195
|
-
key: "id",
|
|
20196
|
-
type: PropertyType.Integer,
|
|
20197
|
-
isArray: false
|
|
20198
|
-
},
|
|
20199
19983
|
lastUpdate: {
|
|
20200
19984
|
key: "lastUpdate",
|
|
20201
19985
|
type: PropertyType.DateTime,
|
|
@@ -20422,11 +20206,6 @@ var AFRadaBanka = class extends AFEntity {
|
|
|
20422
20206
|
}
|
|
20423
20207
|
static {
|
|
20424
20208
|
this.propAnnotations = {
|
|
20425
|
-
id: {
|
|
20426
|
-
key: "id",
|
|
20427
|
-
type: PropertyType.Integer,
|
|
20428
|
-
isArray: false
|
|
20429
|
-
},
|
|
20430
20209
|
lastUpdate: {
|
|
20431
20210
|
key: "lastUpdate",
|
|
20432
20211
|
type: PropertyType.DateTime,
|
|
@@ -20520,11 +20299,6 @@ var AFBankaPolozka = class extends AFEntity {
|
|
|
20520
20299
|
}
|
|
20521
20300
|
static {
|
|
20522
20301
|
this.propAnnotations = {
|
|
20523
|
-
id: {
|
|
20524
|
-
key: "id",
|
|
20525
|
-
type: PropertyType.Integer,
|
|
20526
|
-
isArray: false
|
|
20527
|
-
},
|
|
20528
20302
|
lastUpdate: {
|
|
20529
20303
|
key: "lastUpdate",
|
|
20530
20304
|
type: PropertyType.DateTime,
|
|
@@ -20854,11 +20628,6 @@ var AFFormatElektronickehoBankovnictvi = class extends AFEntity {
|
|
|
20854
20628
|
}
|
|
20855
20629
|
static {
|
|
20856
20630
|
this.propAnnotations = {
|
|
20857
|
-
id: {
|
|
20858
|
-
key: "id",
|
|
20859
|
-
type: PropertyType.Integer,
|
|
20860
|
-
isArray: false
|
|
20861
|
-
},
|
|
20862
20631
|
lastUpdate: {
|
|
20863
20632
|
key: "lastUpdate",
|
|
20864
20633
|
type: PropertyType.DateTime,
|
|
@@ -20950,11 +20719,6 @@ var AFFormatElektronickehoPrikazu = class extends AFEntity {
|
|
|
20950
20719
|
}
|
|
20951
20720
|
static {
|
|
20952
20721
|
this.propAnnotations = {
|
|
20953
|
-
id: {
|
|
20954
|
-
key: "id",
|
|
20955
|
-
type: PropertyType.Integer,
|
|
20956
|
-
isArray: false
|
|
20957
|
-
},
|
|
20958
20722
|
lastUpdate: {
|
|
20959
20723
|
key: "lastUpdate",
|
|
20960
20724
|
type: PropertyType.DateTime,
|
|
@@ -21077,11 +20841,6 @@ var AFPohledavka = class extends AFEntity {
|
|
|
21077
20841
|
}
|
|
21078
20842
|
static {
|
|
21079
20843
|
this.propAnnotations = {
|
|
21080
|
-
id: {
|
|
21081
|
-
key: "id",
|
|
21082
|
-
type: PropertyType.Integer,
|
|
21083
|
-
isArray: false
|
|
21084
|
-
},
|
|
21085
20844
|
lastUpdate: {
|
|
21086
20845
|
key: "lastUpdate",
|
|
21087
20846
|
type: PropertyType.DateTime,
|
|
@@ -21986,11 +21745,6 @@ var AFPohledavkaPolozka = class extends AFEntity {
|
|
|
21986
21745
|
}
|
|
21987
21746
|
static {
|
|
21988
21747
|
this.propAnnotations = {
|
|
21989
|
-
id: {
|
|
21990
|
-
key: "id",
|
|
21991
|
-
type: PropertyType.Integer,
|
|
21992
|
-
isArray: false
|
|
21993
|
-
},
|
|
21994
21748
|
lastUpdate: {
|
|
21995
21749
|
key: "lastUpdate",
|
|
21996
21750
|
type: PropertyType.DateTime,
|
|
@@ -22540,11 +22294,6 @@ var AFTypPohledavky = class extends AFEntity {
|
|
|
22540
22294
|
}
|
|
22541
22295
|
static {
|
|
22542
22296
|
this.propAnnotations = {
|
|
22543
|
-
id: {
|
|
22544
|
-
key: "id",
|
|
22545
|
-
type: PropertyType.Integer,
|
|
22546
|
-
isArray: false
|
|
22547
|
-
},
|
|
22548
22297
|
lastUpdate: {
|
|
22549
22298
|
key: "lastUpdate",
|
|
22550
22299
|
type: PropertyType.DateTime,
|
|
@@ -22836,11 +22585,6 @@ var AFRadaPohledavky = class extends AFEntity {
|
|
|
22836
22585
|
}
|
|
22837
22586
|
static {
|
|
22838
22587
|
this.propAnnotations = {
|
|
22839
|
-
id: {
|
|
22840
|
-
key: "id",
|
|
22841
|
-
type: PropertyType.Integer,
|
|
22842
|
-
isArray: false
|
|
22843
|
-
},
|
|
22844
22588
|
lastUpdate: {
|
|
22845
22589
|
key: "lastUpdate",
|
|
22846
22590
|
type: PropertyType.DateTime,
|
|
@@ -22937,11 +22681,6 @@ var AFUplatneniDaneZavazku = class extends AFEntity {
|
|
|
22937
22681
|
}
|
|
22938
22682
|
static {
|
|
22939
22683
|
this.propAnnotations = {
|
|
22940
|
-
id: {
|
|
22941
|
-
key: "id",
|
|
22942
|
-
type: PropertyType.Integer,
|
|
22943
|
-
isArray: false
|
|
22944
|
-
},
|
|
22945
22684
|
lastUpdate: {
|
|
22946
22685
|
key: "lastUpdate",
|
|
22947
22686
|
type: PropertyType.DateTime,
|
|
@@ -23571,11 +23310,6 @@ var AFUplatneniDaneZavazkuPolozka = class extends AFEntity {
|
|
|
23571
23310
|
}
|
|
23572
23311
|
static {
|
|
23573
23312
|
this.propAnnotations = {
|
|
23574
|
-
id: {
|
|
23575
|
-
key: "id",
|
|
23576
|
-
type: PropertyType.Integer,
|
|
23577
|
-
isArray: false
|
|
23578
|
-
},
|
|
23579
23313
|
lastUpdate: {
|
|
23580
23314
|
key: "lastUpdate",
|
|
23581
23315
|
type: PropertyType.DateTime,
|
|
@@ -24131,11 +23865,6 @@ var AFTypUplatneniDaneZavazku = class extends AFEntity {
|
|
|
24131
23865
|
}
|
|
24132
23866
|
static {
|
|
24133
23867
|
this.propAnnotations = {
|
|
24134
|
-
id: {
|
|
24135
|
-
key: "id",
|
|
24136
|
-
type: PropertyType.Integer,
|
|
24137
|
-
isArray: false
|
|
24138
|
-
},
|
|
24139
23868
|
lastUpdate: {
|
|
24140
23869
|
key: "lastUpdate",
|
|
24141
23870
|
type: PropertyType.DateTime,
|
|
@@ -24336,11 +24065,6 @@ var AFRadaUplatneniDaneZavazku = class extends AFEntity {
|
|
|
24336
24065
|
}
|
|
24337
24066
|
static {
|
|
24338
24067
|
this.propAnnotations = {
|
|
24339
|
-
id: {
|
|
24340
|
-
key: "id",
|
|
24341
|
-
type: PropertyType.Integer,
|
|
24342
|
-
isArray: false
|
|
24343
|
-
},
|
|
24344
24068
|
lastUpdate: {
|
|
24345
24069
|
key: "lastUpdate",
|
|
24346
24070
|
type: PropertyType.DateTime,
|
|
@@ -24434,11 +24158,6 @@ var AFBankovniUcet = class extends AFEntity {
|
|
|
24434
24158
|
}
|
|
24435
24159
|
static {
|
|
24436
24160
|
this.propAnnotations = {
|
|
24437
|
-
id: {
|
|
24438
|
-
key: "id",
|
|
24439
|
-
type: PropertyType.Integer,
|
|
24440
|
-
isArray: false
|
|
24441
|
-
},
|
|
24442
24161
|
lastUpdate: {
|
|
24443
24162
|
key: "lastUpdate",
|
|
24444
24163
|
type: PropertyType.DateTime,
|
|
@@ -24785,11 +24504,6 @@ var AFPokladna = class extends AFEntity {
|
|
|
24785
24504
|
}
|
|
24786
24505
|
static {
|
|
24787
24506
|
this.propAnnotations = {
|
|
24788
|
-
id: {
|
|
24789
|
-
key: "id",
|
|
24790
|
-
type: PropertyType.Integer,
|
|
24791
|
-
isArray: false
|
|
24792
|
-
},
|
|
24793
24507
|
lastUpdate: {
|
|
24794
24508
|
key: "lastUpdate",
|
|
24795
24509
|
type: PropertyType.DateTime,
|
|
@@ -24931,11 +24645,6 @@ var AFBankovniUcetPokladna = class extends AFEntity {
|
|
|
24931
24645
|
}
|
|
24932
24646
|
static {
|
|
24933
24647
|
this.propAnnotations = {
|
|
24934
|
-
id: {
|
|
24935
|
-
key: "id",
|
|
24936
|
-
type: PropertyType.Integer,
|
|
24937
|
-
isArray: false
|
|
24938
|
-
},
|
|
24939
24648
|
lastUpdate: {
|
|
24940
24649
|
key: "lastUpdate",
|
|
24941
24650
|
type: PropertyType.DateTime,
|
|
@@ -25053,11 +24762,6 @@ var AFPrikazKUhrade = class extends AFEntity {
|
|
|
25053
24762
|
}
|
|
25054
24763
|
static {
|
|
25055
24764
|
this.propAnnotations = {
|
|
25056
|
-
id: {
|
|
25057
|
-
key: "id",
|
|
25058
|
-
type: PropertyType.Integer,
|
|
25059
|
-
isArray: false
|
|
25060
|
-
},
|
|
25061
24765
|
lastUpdate: {
|
|
25062
24766
|
key: "lastUpdate",
|
|
25063
24767
|
type: PropertyType.DateTime,
|
|
@@ -25202,11 +24906,6 @@ var AFPrikazKUhradePolozka = class extends AFEntity {
|
|
|
25202
24906
|
}
|
|
25203
24907
|
static {
|
|
25204
24908
|
this.propAnnotations = {
|
|
25205
|
-
id: {
|
|
25206
|
-
key: "id",
|
|
25207
|
-
type: PropertyType.Integer,
|
|
25208
|
-
isArray: false
|
|
25209
|
-
},
|
|
25210
24909
|
lastUpdate: {
|
|
25211
24910
|
key: "lastUpdate",
|
|
25212
24911
|
type: PropertyType.DateTime,
|
|
@@ -25412,11 +25111,6 @@ var AFPrikazKInkasu = class extends AFEntity {
|
|
|
25412
25111
|
}
|
|
25413
25112
|
static {
|
|
25414
25113
|
this.propAnnotations = {
|
|
25415
|
-
id: {
|
|
25416
|
-
key: "id",
|
|
25417
|
-
type: PropertyType.Integer,
|
|
25418
|
-
isArray: false
|
|
25419
|
-
},
|
|
25420
25114
|
lastUpdate: {
|
|
25421
25115
|
key: "lastUpdate",
|
|
25422
25116
|
type: PropertyType.DateTime,
|
|
@@ -25556,11 +25250,6 @@ var AFPrikazKInkasuPolozka = class extends AFEntity {
|
|
|
25556
25250
|
}
|
|
25557
25251
|
static {
|
|
25558
25252
|
this.propAnnotations = {
|
|
25559
|
-
id: {
|
|
25560
|
-
key: "id",
|
|
25561
|
-
type: PropertyType.Integer,
|
|
25562
|
-
isArray: false
|
|
25563
|
-
},
|
|
25564
25253
|
lastUpdate: {
|
|
25565
25254
|
key: "lastUpdate",
|
|
25566
25255
|
type: PropertyType.DateTime,
|
|
@@ -25769,11 +25458,6 @@ var AFDokladKUhrade = class extends AFEntity {
|
|
|
25769
25458
|
}
|
|
25770
25459
|
static {
|
|
25771
25460
|
this.propAnnotations = {
|
|
25772
|
-
id: {
|
|
25773
|
-
key: "id",
|
|
25774
|
-
type: PropertyType.Integer,
|
|
25775
|
-
isArray: false
|
|
25776
|
-
},
|
|
25777
25461
|
lastUpdate: {
|
|
25778
25462
|
key: "lastUpdate",
|
|
25779
25463
|
type: PropertyType.DateTime,
|
|
@@ -26982,11 +26666,6 @@ var AFVzajemnyZapocet = class extends AFEntity {
|
|
|
26982
26666
|
}
|
|
26983
26667
|
static {
|
|
26984
26668
|
this.propAnnotations = {
|
|
26985
|
-
id: {
|
|
26986
|
-
key: "id",
|
|
26987
|
-
type: PropertyType.Integer,
|
|
26988
|
-
isArray: false
|
|
26989
|
-
},
|
|
26990
26669
|
lastUpdate: {
|
|
26991
26670
|
key: "lastUpdate",
|
|
26992
26671
|
type: PropertyType.DateTime,
|
|
@@ -27708,11 +27387,6 @@ var AFTypVzajemnychZapoctu = class extends AFEntity {
|
|
|
27708
27387
|
}
|
|
27709
27388
|
static {
|
|
27710
27389
|
this.propAnnotations = {
|
|
27711
|
-
id: {
|
|
27712
|
-
key: "id",
|
|
27713
|
-
type: PropertyType.Integer,
|
|
27714
|
-
isArray: false
|
|
27715
|
-
},
|
|
27716
27390
|
lastUpdate: {
|
|
27717
27391
|
key: "lastUpdate",
|
|
27718
27392
|
type: PropertyType.DateTime,
|
|
@@ -27946,11 +27620,6 @@ var AFBankovniUcetSkladPokladna = class extends AFEntity {
|
|
|
27946
27620
|
}
|
|
27947
27621
|
static {
|
|
27948
27622
|
this.propAnnotations = {
|
|
27949
|
-
id: {
|
|
27950
|
-
key: "id",
|
|
27951
|
-
type: PropertyType.Integer,
|
|
27952
|
-
isArray: false
|
|
27953
|
-
},
|
|
27954
27623
|
lastUpdate: {
|
|
27955
27624
|
key: "lastUpdate",
|
|
27956
27625
|
type: PropertyType.DateTime,
|
|
@@ -28068,11 +27737,6 @@ var AFTypInternihoDokladu = class extends AFEntity {
|
|
|
28068
27737
|
}
|
|
28069
27738
|
static {
|
|
28070
27739
|
this.propAnnotations = {
|
|
28071
|
-
id: {
|
|
28072
|
-
key: "id",
|
|
28073
|
-
type: PropertyType.Integer,
|
|
28074
|
-
isArray: false
|
|
28075
|
-
},
|
|
28076
27740
|
lastUpdate: {
|
|
28077
27741
|
key: "lastUpdate",
|
|
28078
27742
|
type: PropertyType.DateTime,
|
|
@@ -28276,11 +27940,6 @@ var AFRadaInternihoDokladu = class extends AFEntity {
|
|
|
28276
27940
|
}
|
|
28277
27941
|
static {
|
|
28278
27942
|
this.propAnnotations = {
|
|
28279
|
-
id: {
|
|
28280
|
-
key: "id",
|
|
28281
|
-
type: PropertyType.Integer,
|
|
28282
|
-
isArray: false
|
|
28283
|
-
},
|
|
28284
27943
|
lastUpdate: {
|
|
28285
27944
|
key: "lastUpdate",
|
|
28286
27945
|
type: PropertyType.DateTime,
|
|
@@ -28377,11 +28036,6 @@ var AFInterniDoklad = class extends AFEntity {
|
|
|
28377
28036
|
}
|
|
28378
28037
|
static {
|
|
28379
28038
|
this.propAnnotations = {
|
|
28380
|
-
id: {
|
|
28381
|
-
key: "id",
|
|
28382
|
-
type: PropertyType.Integer,
|
|
28383
|
-
isArray: false
|
|
28384
|
-
},
|
|
28385
28039
|
lastUpdate: {
|
|
28386
28040
|
key: "lastUpdate",
|
|
28387
28041
|
type: PropertyType.DateTime,
|
|
@@ -29020,11 +28674,6 @@ var AFInterniDokladPolozka = class extends AFEntity {
|
|
|
29020
28674
|
}
|
|
29021
28675
|
static {
|
|
29022
28676
|
this.propAnnotations = {
|
|
29023
|
-
id: {
|
|
29024
|
-
key: "id",
|
|
29025
|
-
type: PropertyType.Integer,
|
|
29026
|
-
isArray: false
|
|
29027
|
-
},
|
|
29028
28677
|
lastUpdate: {
|
|
29029
28678
|
key: "lastUpdate",
|
|
29030
28679
|
type: PropertyType.DateTime,
|
|
@@ -29661,11 +29310,6 @@ var AFVazba = class extends AFEntity {
|
|
|
29661
29310
|
}
|
|
29662
29311
|
static {
|
|
29663
29312
|
this.propAnnotations = {
|
|
29664
|
-
id: {
|
|
29665
|
-
key: "id",
|
|
29666
|
-
type: PropertyType.Integer,
|
|
29667
|
-
isArray: false
|
|
29668
|
-
},
|
|
29669
29313
|
typVazbyK: {
|
|
29670
29314
|
key: "typVazbyK",
|
|
29671
29315
|
type: PropertyType.Select,
|
|
@@ -29869,11 +29513,6 @@ var AFPriloha = class extends AFEntity {
|
|
|
29869
29513
|
}
|
|
29870
29514
|
static {
|
|
29871
29515
|
this.propAnnotations = {
|
|
29872
|
-
id: {
|
|
29873
|
-
key: "id",
|
|
29874
|
-
type: PropertyType.Integer,
|
|
29875
|
-
isArray: false
|
|
29876
|
-
},
|
|
29877
29516
|
lastUpdate: {
|
|
29878
29517
|
key: "lastUpdate",
|
|
29879
29518
|
type: PropertyType.DateTime,
|
|
@@ -30083,11 +29722,6 @@ var AFTypDokladu = class extends AFEntity {
|
|
|
30083
29722
|
}
|
|
30084
29723
|
static {
|
|
30085
29724
|
this.propAnnotations = {
|
|
30086
|
-
id: {
|
|
30087
|
-
key: "id",
|
|
30088
|
-
type: PropertyType.Integer,
|
|
30089
|
-
isArray: false
|
|
30090
|
-
},
|
|
30091
29725
|
lastUpdate: {
|
|
30092
29726
|
key: "lastUpdate",
|
|
30093
29727
|
type: PropertyType.DateTime,
|
|
@@ -30505,11 +30139,6 @@ var AFFakturaVydana = class extends AFEntity {
|
|
|
30505
30139
|
}
|
|
30506
30140
|
static {
|
|
30507
30141
|
this.propAnnotations = {
|
|
30508
|
-
id: {
|
|
30509
|
-
key: "id",
|
|
30510
|
-
type: PropertyType.Integer,
|
|
30511
|
-
isArray: false
|
|
30512
|
-
},
|
|
30513
30142
|
lastUpdate: {
|
|
30514
30143
|
key: "lastUpdate",
|
|
30515
30144
|
type: PropertyType.DateTime,
|
|
@@ -31624,11 +31253,6 @@ var AFFakturaVydanaPolozka = class extends AFEntity {
|
|
|
31624
31253
|
}
|
|
31625
31254
|
static {
|
|
31626
31255
|
this.propAnnotations = {
|
|
31627
|
-
id: {
|
|
31628
|
-
key: "id",
|
|
31629
|
-
type: PropertyType.Integer,
|
|
31630
|
-
isArray: false
|
|
31631
|
-
},
|
|
31632
31256
|
lastUpdate: {
|
|
31633
31257
|
key: "lastUpdate",
|
|
31634
31258
|
type: PropertyType.DateTime,
|
|
@@ -32296,11 +31920,6 @@ var AFTypFakturyVydane = class extends AFEntity {
|
|
|
32296
31920
|
}
|
|
32297
31921
|
static {
|
|
32298
31922
|
this.propAnnotations = {
|
|
32299
|
-
id: {
|
|
32300
|
-
key: "id",
|
|
32301
|
-
type: PropertyType.Integer,
|
|
32302
|
-
isArray: false
|
|
32303
|
-
},
|
|
32304
31923
|
lastUpdate: {
|
|
32305
31924
|
key: "lastUpdate",
|
|
32306
31925
|
type: PropertyType.DateTime,
|
|
@@ -32725,11 +32344,6 @@ var AFRadaFakturyVydane = class extends AFEntity {
|
|
|
32725
32344
|
}
|
|
32726
32345
|
static {
|
|
32727
32346
|
this.propAnnotations = {
|
|
32728
|
-
id: {
|
|
32729
|
-
key: "id",
|
|
32730
|
-
type: PropertyType.Integer,
|
|
32731
|
-
isArray: false
|
|
32732
|
-
},
|
|
32733
32347
|
lastUpdate: {
|
|
32734
32348
|
key: "lastUpdate",
|
|
32735
32349
|
type: PropertyType.DateTime,
|
|
@@ -32835,11 +32449,6 @@ var AFProdejka = class extends AFEntity {
|
|
|
32835
32449
|
}
|
|
32836
32450
|
static {
|
|
32837
32451
|
this.propAnnotations = {
|
|
32838
|
-
id: {
|
|
32839
|
-
key: "id",
|
|
32840
|
-
type: PropertyType.Integer,
|
|
32841
|
-
isArray: false
|
|
32842
|
-
},
|
|
32843
32452
|
lastUpdate: {
|
|
32844
32453
|
key: "lastUpdate",
|
|
32845
32454
|
type: PropertyType.DateTime,
|
|
@@ -33826,11 +33435,6 @@ var AFTypProdejky = class extends AFEntity {
|
|
|
33826
33435
|
}
|
|
33827
33436
|
static {
|
|
33828
33437
|
this.propAnnotations = {
|
|
33829
|
-
id: {
|
|
33830
|
-
key: "id",
|
|
33831
|
-
type: PropertyType.Integer,
|
|
33832
|
-
isArray: false
|
|
33833
|
-
},
|
|
33834
33438
|
lastUpdate: {
|
|
33835
33439
|
key: "lastUpdate",
|
|
33836
33440
|
type: PropertyType.DateTime,
|
|
@@ -34237,11 +33841,6 @@ var AFProdejkaPlatba = class extends AFEntity {
|
|
|
34237
33841
|
}
|
|
34238
33842
|
static {
|
|
34239
33843
|
this.propAnnotations = {
|
|
34240
|
-
id: {
|
|
34241
|
-
key: "id",
|
|
34242
|
-
type: PropertyType.Integer,
|
|
34243
|
-
isArray: false
|
|
34244
|
-
},
|
|
34245
33844
|
lastUpdate: {
|
|
34246
33845
|
key: "lastUpdate",
|
|
34247
33846
|
type: PropertyType.DateTime,
|
|
@@ -34344,11 +33943,6 @@ var AFUzivatel = class extends AFEntity {
|
|
|
34344
33943
|
}
|
|
34345
33944
|
static {
|
|
34346
33945
|
this.propAnnotations = {
|
|
34347
|
-
id: {
|
|
34348
|
-
key: "id",
|
|
34349
|
-
type: PropertyType.Integer,
|
|
34350
|
-
isArray: false
|
|
34351
|
-
},
|
|
34352
33946
|
lastUpdate: {
|
|
34353
33947
|
key: "lastUpdate",
|
|
34354
33948
|
type: PropertyType.DateTime,
|
|
@@ -34564,11 +34158,6 @@ var AFRole = class extends AFEntity {
|
|
|
34564
34158
|
}
|
|
34565
34159
|
static {
|
|
34566
34160
|
this.propAnnotations = {
|
|
34567
|
-
id: {
|
|
34568
|
-
key: "id",
|
|
34569
|
-
type: PropertyType.Integer,
|
|
34570
|
-
isArray: false
|
|
34571
|
-
},
|
|
34572
34161
|
lastUpdate: {
|
|
34573
34162
|
key: "lastUpdate",
|
|
34574
34163
|
type: PropertyType.DateTime,
|
|
@@ -34656,11 +34245,6 @@ var AFPravoViditelnosti = class extends AFEntity {
|
|
|
34656
34245
|
}
|
|
34657
34246
|
static {
|
|
34658
34247
|
this.propAnnotations = {
|
|
34659
|
-
id: {
|
|
34660
|
-
key: "id",
|
|
34661
|
-
type: PropertyType.Integer,
|
|
34662
|
-
isArray: false
|
|
34663
|
-
},
|
|
34664
34248
|
idUzivatel: {
|
|
34665
34249
|
key: "idUzivatel",
|
|
34666
34250
|
type: PropertyType.Integer,
|
|
@@ -34706,11 +34290,6 @@ var AFNastaveni = class extends AFEntity {
|
|
|
34706
34290
|
}
|
|
34707
34291
|
static {
|
|
34708
34292
|
this.propAnnotations = {
|
|
34709
|
-
id: {
|
|
34710
|
-
key: "id",
|
|
34711
|
-
type: PropertyType.Integer,
|
|
34712
|
-
isArray: false
|
|
34713
|
-
},
|
|
34714
34293
|
lastUpdate: {
|
|
34715
34294
|
key: "lastUpdate",
|
|
34716
34295
|
type: PropertyType.DateTime,
|
|
@@ -36064,11 +35643,6 @@ var AFReport = class extends AFEntity {
|
|
|
36064
35643
|
}
|
|
36065
35644
|
static {
|
|
36066
35645
|
this.propAnnotations = {
|
|
36067
|
-
id: {
|
|
36068
|
-
key: "id",
|
|
36069
|
-
type: PropertyType.Integer,
|
|
36070
|
-
isArray: false
|
|
36071
|
-
},
|
|
36072
35646
|
lastUpdate: {
|
|
36073
35647
|
key: "lastUpdate",
|
|
36074
35648
|
type: PropertyType.DateTime,
|
|
@@ -36195,11 +35769,6 @@ var AFZamek = class extends AFEntity {
|
|
|
36195
35769
|
}
|
|
36196
35770
|
static {
|
|
36197
35771
|
this.propAnnotations = {
|
|
36198
|
-
id: {
|
|
36199
|
-
key: "id",
|
|
36200
|
-
type: PropertyType.Integer,
|
|
36201
|
-
isArray: false
|
|
36202
|
-
},
|
|
36203
35772
|
lastUpdate: {
|
|
36204
35773
|
key: "lastUpdate",
|
|
36205
35774
|
type: PropertyType.DateTime,
|
|
@@ -36350,11 +35919,6 @@ var AFKurz = class extends AFEntity {
|
|
|
36350
35919
|
}
|
|
36351
35920
|
static {
|
|
36352
35921
|
this.propAnnotations = {
|
|
36353
|
-
id: {
|
|
36354
|
-
key: "id",
|
|
36355
|
-
type: PropertyType.Integer,
|
|
36356
|
-
isArray: false
|
|
36357
|
-
},
|
|
36358
35922
|
lastUpdate: {
|
|
36359
35923
|
key: "lastUpdate",
|
|
36360
35924
|
type: PropertyType.DateTime,
|
|
@@ -36410,11 +35974,6 @@ var AFUcet = class extends AFEntity {
|
|
|
36410
35974
|
}
|
|
36411
35975
|
static {
|
|
36412
35976
|
this.propAnnotations = {
|
|
36413
|
-
id: {
|
|
36414
|
-
key: "id",
|
|
36415
|
-
type: PropertyType.Integer,
|
|
36416
|
-
isArray: false
|
|
36417
|
-
},
|
|
36418
35977
|
lastUpdate: {
|
|
36419
35978
|
key: "lastUpdate",
|
|
36420
35979
|
type: PropertyType.DateTime,
|
|
@@ -36545,11 +36104,6 @@ var AFMena = class extends AFEntity {
|
|
|
36545
36104
|
}
|
|
36546
36105
|
static {
|
|
36547
36106
|
this.propAnnotations = {
|
|
36548
|
-
id: {
|
|
36549
|
-
key: "id",
|
|
36550
|
-
type: PropertyType.Integer,
|
|
36551
|
-
isArray: false
|
|
36552
|
-
},
|
|
36553
36107
|
lastUpdate: {
|
|
36554
36108
|
key: "lastUpdate",
|
|
36555
36109
|
type: PropertyType.DateTime,
|
|
@@ -36658,11 +36212,6 @@ var AFStat = class extends AFEntity {
|
|
|
36658
36212
|
}
|
|
36659
36213
|
static {
|
|
36660
36214
|
this.propAnnotations = {
|
|
36661
|
-
id: {
|
|
36662
|
-
key: "id",
|
|
36663
|
-
type: PropertyType.Integer,
|
|
36664
|
-
isArray: false
|
|
36665
|
-
},
|
|
36666
36215
|
lastUpdate: {
|
|
36667
36216
|
key: "lastUpdate",
|
|
36668
36217
|
type: PropertyType.DateTime,
|
|
@@ -36798,11 +36347,6 @@ var AFStatDph = class extends AFEntity {
|
|
|
36798
36347
|
}
|
|
36799
36348
|
static {
|
|
36800
36349
|
this.propAnnotations = {
|
|
36801
|
-
id: {
|
|
36802
|
-
key: "id",
|
|
36803
|
-
type: PropertyType.Integer,
|
|
36804
|
-
isArray: false
|
|
36805
|
-
},
|
|
36806
36350
|
lastUpdate: {
|
|
36807
36351
|
key: "lastUpdate",
|
|
36808
36352
|
type: PropertyType.DateTime,
|
|
@@ -36938,11 +36482,6 @@ var AFCinnost = class extends AFEntity {
|
|
|
36938
36482
|
}
|
|
36939
36483
|
static {
|
|
36940
36484
|
this.propAnnotations = {
|
|
36941
|
-
id: {
|
|
36942
|
-
key: "id",
|
|
36943
|
-
type: PropertyType.Integer,
|
|
36944
|
-
isArray: false
|
|
36945
|
-
},
|
|
36946
36485
|
lastUpdate: {
|
|
36947
36486
|
key: "lastUpdate",
|
|
36948
36487
|
type: PropertyType.DateTime,
|
|
@@ -37030,11 +36569,6 @@ var AFStredisko = class extends AFEntity {
|
|
|
37030
36569
|
}
|
|
37031
36570
|
static {
|
|
37032
36571
|
this.propAnnotations = {
|
|
37033
|
-
id: {
|
|
37034
|
-
key: "id",
|
|
37035
|
-
type: PropertyType.Integer,
|
|
37036
|
-
isArray: false
|
|
37037
|
-
},
|
|
37038
36572
|
lastUpdate: {
|
|
37039
36573
|
key: "lastUpdate",
|
|
37040
36574
|
type: PropertyType.DateTime,
|
|
@@ -37212,11 +36746,6 @@ var AFSazbaDph = class extends AFEntity {
|
|
|
37212
36746
|
}
|
|
37213
36747
|
static {
|
|
37214
36748
|
this.propAnnotations = {
|
|
37215
|
-
id: {
|
|
37216
|
-
key: "id",
|
|
37217
|
-
type: PropertyType.Integer,
|
|
37218
|
-
isArray: false
|
|
37219
|
-
},
|
|
37220
36749
|
lastUpdate: {
|
|
37221
36750
|
key: "lastUpdate",
|
|
37222
36751
|
type: PropertyType.DateTime,
|
|
@@ -37290,11 +36819,6 @@ var AFZakazka = class extends AFEntity {
|
|
|
37290
36819
|
}
|
|
37291
36820
|
static {
|
|
37292
36821
|
this.propAnnotations = {
|
|
37293
|
-
id: {
|
|
37294
|
-
key: "id",
|
|
37295
|
-
type: PropertyType.Integer,
|
|
37296
|
-
isArray: false
|
|
37297
|
-
},
|
|
37298
36822
|
lastUpdate: {
|
|
37299
36823
|
key: "lastUpdate",
|
|
37300
36824
|
type: PropertyType.DateTime,
|
|
@@ -37565,11 +37089,6 @@ var AFTypZakazky = class extends AFEntity {
|
|
|
37565
37089
|
}
|
|
37566
37090
|
static {
|
|
37567
37091
|
this.propAnnotations = {
|
|
37568
|
-
id: {
|
|
37569
|
-
key: "id",
|
|
37570
|
-
type: PropertyType.Integer,
|
|
37571
|
-
isArray: false
|
|
37572
|
-
},
|
|
37573
37092
|
lastUpdate: {
|
|
37574
37093
|
key: "lastUpdate",
|
|
37575
37094
|
type: PropertyType.DateTime,
|
|
@@ -37679,11 +37198,6 @@ var AFStavZakazky = class extends AFEntity {
|
|
|
37679
37198
|
}
|
|
37680
37199
|
static {
|
|
37681
37200
|
this.propAnnotations = {
|
|
37682
|
-
id: {
|
|
37683
|
-
key: "id",
|
|
37684
|
-
type: PropertyType.Integer,
|
|
37685
|
-
isArray: false
|
|
37686
|
-
},
|
|
37687
37201
|
lastUpdate: {
|
|
37688
37202
|
key: "lastUpdate",
|
|
37689
37203
|
type: PropertyType.DateTime,
|
|
@@ -37764,11 +37278,6 @@ var AFHodnoceniZakazky = class extends AFEntity {
|
|
|
37764
37278
|
}
|
|
37765
37279
|
static {
|
|
37766
37280
|
this.propAnnotations = {
|
|
37767
|
-
id: {
|
|
37768
|
-
key: "id",
|
|
37769
|
-
type: PropertyType.Integer,
|
|
37770
|
-
isArray: false
|
|
37771
|
-
},
|
|
37772
37281
|
lastUpdate: {
|
|
37773
37282
|
key: "lastUpdate",
|
|
37774
37283
|
type: PropertyType.DateTime,
|
|
@@ -37851,11 +37360,6 @@ var AFKonstSymbol = class extends AFEntity {
|
|
|
37851
37360
|
}
|
|
37852
37361
|
static {
|
|
37853
37362
|
this.propAnnotations = {
|
|
37854
|
-
id: {
|
|
37855
|
-
key: "id",
|
|
37856
|
-
type: PropertyType.Integer,
|
|
37857
|
-
isArray: false
|
|
37858
|
-
},
|
|
37859
37363
|
lastUpdate: {
|
|
37860
37364
|
key: "lastUpdate",
|
|
37861
37365
|
type: PropertyType.DateTime,
|
|
@@ -37938,11 +37442,6 @@ var AFMernaJednotka = class extends AFEntity {
|
|
|
37938
37442
|
}
|
|
37939
37443
|
static {
|
|
37940
37444
|
this.propAnnotations = {
|
|
37941
|
-
id: {
|
|
37942
|
-
key: "id",
|
|
37943
|
-
type: PropertyType.Integer,
|
|
37944
|
-
isArray: false
|
|
37945
|
-
},
|
|
37946
37445
|
lastUpdate: {
|
|
37947
37446
|
key: "lastUpdate",
|
|
37948
37447
|
type: PropertyType.DateTime,
|
|
@@ -38065,11 +37564,6 @@ var AFSkupinaPlneni = class extends AFEntity {
|
|
|
38065
37564
|
}
|
|
38066
37565
|
static {
|
|
38067
37566
|
this.propAnnotations = {
|
|
38068
|
-
id: {
|
|
38069
|
-
key: "id",
|
|
38070
|
-
type: PropertyType.Integer,
|
|
38071
|
-
isArray: false
|
|
38072
|
-
},
|
|
38073
37567
|
lastUpdate: {
|
|
38074
37568
|
key: "lastUpdate",
|
|
38075
37569
|
type: PropertyType.DateTime,
|
|
@@ -38152,11 +37646,6 @@ var AFRegion = class extends AFEntity {
|
|
|
38152
37646
|
}
|
|
38153
37647
|
static {
|
|
38154
37648
|
this.propAnnotations = {
|
|
38155
|
-
id: {
|
|
38156
|
-
key: "id",
|
|
38157
|
-
type: PropertyType.Integer,
|
|
38158
|
-
isArray: false
|
|
38159
|
-
},
|
|
38160
37649
|
lastUpdate: {
|
|
38161
37650
|
key: "lastUpdate",
|
|
38162
37651
|
type: PropertyType.DateTime,
|
|
@@ -38269,11 +37758,6 @@ var AFCleneniDph = class extends AFEntity {
|
|
|
38269
37758
|
}
|
|
38270
37759
|
static {
|
|
38271
37760
|
this.propAnnotations = {
|
|
38272
|
-
id: {
|
|
38273
|
-
key: "id",
|
|
38274
|
-
type: PropertyType.Integer,
|
|
38275
|
-
isArray: false
|
|
38276
|
-
},
|
|
38277
37761
|
lastUpdate: {
|
|
38278
37762
|
key: "lastUpdate",
|
|
38279
37763
|
type: PropertyType.DateTime,
|
|
@@ -38408,11 +37892,6 @@ var AFCleneniKontrolniHlaseni = class extends AFEntity {
|
|
|
38408
37892
|
}
|
|
38409
37893
|
static {
|
|
38410
37894
|
this.propAnnotations = {
|
|
38411
|
-
id: {
|
|
38412
|
-
key: "id",
|
|
38413
|
-
type: PropertyType.Integer,
|
|
38414
|
-
isArray: false
|
|
38415
|
-
},
|
|
38416
37895
|
lastUpdate: {
|
|
38417
37896
|
key: "lastUpdate",
|
|
38418
37897
|
type: PropertyType.DateTime,
|
|
@@ -38532,11 +38011,6 @@ var AFUcetniOsnova = class extends AFEntity {
|
|
|
38532
38011
|
}
|
|
38533
38012
|
static {
|
|
38534
38013
|
this.propAnnotations = {
|
|
38535
|
-
id: {
|
|
38536
|
-
key: "id",
|
|
38537
|
-
type: PropertyType.Integer,
|
|
38538
|
-
isArray: false
|
|
38539
|
-
},
|
|
38540
38014
|
lastUpdate: {
|
|
38541
38015
|
key: "lastUpdate",
|
|
38542
38016
|
type: PropertyType.DateTime,
|
|
@@ -38644,11 +38118,6 @@ var AFUcetniObdobi = class extends AFEntity {
|
|
|
38644
38118
|
}
|
|
38645
38119
|
static {
|
|
38646
38120
|
this.propAnnotations = {
|
|
38647
|
-
id: {
|
|
38648
|
-
key: "id",
|
|
38649
|
-
type: PropertyType.Integer,
|
|
38650
|
-
isArray: false
|
|
38651
|
-
},
|
|
38652
38121
|
lastUpdate: {
|
|
38653
38122
|
key: "lastUpdate",
|
|
38654
38123
|
type: PropertyType.DateTime,
|
|
@@ -38713,11 +38182,6 @@ var AFTypOrganizace = class extends AFEntity {
|
|
|
38713
38182
|
}
|
|
38714
38183
|
static {
|
|
38715
38184
|
this.propAnnotations = {
|
|
38716
|
-
id: {
|
|
38717
|
-
key: "id",
|
|
38718
|
-
type: PropertyType.Integer,
|
|
38719
|
-
isArray: false
|
|
38720
|
-
},
|
|
38721
38185
|
lastUpdate: {
|
|
38722
38186
|
key: "lastUpdate",
|
|
38723
38187
|
type: PropertyType.DateTime,
|
|
@@ -38800,11 +38264,6 @@ var AFKurzProCenotvorbu = class extends AFEntity {
|
|
|
38800
38264
|
}
|
|
38801
38265
|
static {
|
|
38802
38266
|
this.propAnnotations = {
|
|
38803
|
-
id: {
|
|
38804
|
-
key: "id",
|
|
38805
|
-
type: PropertyType.Integer,
|
|
38806
|
-
isArray: false
|
|
38807
|
-
},
|
|
38808
38267
|
lastUpdate: {
|
|
38809
38268
|
key: "lastUpdate",
|
|
38810
38269
|
type: PropertyType.DateTime,
|
|
@@ -38860,11 +38319,6 @@ var AFKurzProPreceneni = class extends AFEntity {
|
|
|
38860
38319
|
}
|
|
38861
38320
|
static {
|
|
38862
38321
|
this.propAnnotations = {
|
|
38863
|
-
id: {
|
|
38864
|
-
key: "id",
|
|
38865
|
-
type: PropertyType.Integer,
|
|
38866
|
-
isArray: false
|
|
38867
|
-
},
|
|
38868
38322
|
lastUpdate: {
|
|
38869
38323
|
key: "lastUpdate",
|
|
38870
38324
|
type: PropertyType.DateTime,
|
|
@@ -38920,11 +38374,6 @@ var AFPenezniUstav = class extends AFEntity {
|
|
|
38920
38374
|
}
|
|
38921
38375
|
static {
|
|
38922
38376
|
this.propAnnotations = {
|
|
38923
|
-
id: {
|
|
38924
|
-
key: "id",
|
|
38925
|
-
type: PropertyType.Integer,
|
|
38926
|
-
isArray: false
|
|
38927
|
-
},
|
|
38928
38377
|
lastUpdate: {
|
|
38929
38378
|
key: "lastUpdate",
|
|
38930
38379
|
type: PropertyType.DateTime,
|
|
@@ -39007,11 +38456,6 @@ var AFPsc = class extends AFEntity {
|
|
|
39007
38456
|
}
|
|
39008
38457
|
static {
|
|
39009
38458
|
this.propAnnotations = {
|
|
39010
|
-
id: {
|
|
39011
|
-
key: "id",
|
|
39012
|
-
type: PropertyType.Integer,
|
|
39013
|
-
isArray: false
|
|
39014
|
-
},
|
|
39015
38459
|
lastUpdate: {
|
|
39016
38460
|
key: "lastUpdate",
|
|
39017
38461
|
type: PropertyType.DateTime,
|
|
@@ -39126,11 +38570,6 @@ var AFStitek = class extends AFEntity {
|
|
|
39126
38570
|
}
|
|
39127
38571
|
static {
|
|
39128
38572
|
this.propAnnotations = {
|
|
39129
|
-
id: {
|
|
39130
|
-
key: "id",
|
|
39131
|
-
type: PropertyType.Integer,
|
|
39132
|
-
isArray: false
|
|
39133
|
-
},
|
|
39134
38573
|
lastUpdate: {
|
|
39135
38574
|
key: "lastUpdate",
|
|
39136
38575
|
type: PropertyType.DateTime,
|
|
@@ -39324,11 +38763,6 @@ var AFSkupinaStitku = class extends AFEntity {
|
|
|
39324
38763
|
}
|
|
39325
38764
|
static {
|
|
39326
38765
|
this.propAnnotations = {
|
|
39327
|
-
id: {
|
|
39328
|
-
key: "id",
|
|
39329
|
-
type: PropertyType.Integer,
|
|
39330
|
-
isArray: false
|
|
39331
|
-
},
|
|
39332
38766
|
lastUpdate: {
|
|
39333
38767
|
key: "lastUpdate",
|
|
39334
38768
|
type: PropertyType.DateTime,
|
|
@@ -39416,11 +38850,6 @@ var AFPreneseniDph = class extends AFEntity {
|
|
|
39416
38850
|
}
|
|
39417
38851
|
static {
|
|
39418
38852
|
this.propAnnotations = {
|
|
39419
|
-
id: {
|
|
39420
|
-
key: "id",
|
|
39421
|
-
type: PropertyType.Integer,
|
|
39422
|
-
isArray: false
|
|
39423
|
-
},
|
|
39424
38853
|
lastUpdate: {
|
|
39425
38854
|
key: "lastUpdate",
|
|
39426
38855
|
type: PropertyType.DateTime,
|
|
@@ -39511,11 +38940,6 @@ var AFSablonaUpominky = class extends AFEntity {
|
|
|
39511
38940
|
}
|
|
39512
38941
|
static {
|
|
39513
38942
|
this.propAnnotations = {
|
|
39514
|
-
id: {
|
|
39515
|
-
key: "id",
|
|
39516
|
-
type: PropertyType.Integer,
|
|
39517
|
-
isArray: false
|
|
39518
|
-
},
|
|
39519
38943
|
lastUpdate: {
|
|
39520
38944
|
key: "lastUpdate",
|
|
39521
38945
|
type: PropertyType.DateTime,
|
|
@@ -39704,11 +39128,6 @@ var AFFormaUhrady = class extends AFEntity {
|
|
|
39704
39128
|
}
|
|
39705
39129
|
static {
|
|
39706
39130
|
this.propAnnotations = {
|
|
39707
|
-
id: {
|
|
39708
|
-
key: "id",
|
|
39709
|
-
type: PropertyType.Integer,
|
|
39710
|
-
isArray: false
|
|
39711
|
-
},
|
|
39712
39131
|
lastUpdate: {
|
|
39713
39132
|
key: "lastUpdate",
|
|
39714
39133
|
type: PropertyType.DateTime,
|
|
@@ -39864,11 +39283,6 @@ var AFStavObchodnihoDokladu = class extends AFEntity {
|
|
|
39864
39283
|
}
|
|
39865
39284
|
static {
|
|
39866
39285
|
this.propAnnotations = {
|
|
39867
|
-
id: {
|
|
39868
|
-
key: "id",
|
|
39869
|
-
type: PropertyType.Integer,
|
|
39870
|
-
isArray: false
|
|
39871
|
-
},
|
|
39872
39286
|
lastUpdate: {
|
|
39873
39287
|
key: "lastUpdate",
|
|
39874
39288
|
type: PropertyType.DateTime,
|
|
@@ -39999,11 +39413,6 @@ var AFFormaUhradyZauctovani = class extends AFEntity {
|
|
|
39999
39413
|
}
|
|
40000
39414
|
static {
|
|
40001
39415
|
this.propAnnotations = {
|
|
40002
|
-
id: {
|
|
40003
|
-
key: "id",
|
|
40004
|
-
type: PropertyType.Integer,
|
|
40005
|
-
isArray: false
|
|
40006
|
-
},
|
|
40007
39416
|
lastUpdate: {
|
|
40008
39417
|
key: "lastUpdate",
|
|
40009
39418
|
type: PropertyType.DateTime,
|
|
@@ -40054,11 +39463,6 @@ var AFCertifikacniAutorita = class extends AFEntity {
|
|
|
40054
39463
|
}
|
|
40055
39464
|
static {
|
|
40056
39465
|
this.propAnnotations = {
|
|
40057
|
-
id: {
|
|
40058
|
-
key: "id",
|
|
40059
|
-
type: PropertyType.Integer,
|
|
40060
|
-
isArray: false
|
|
40061
|
-
},
|
|
40062
39466
|
lastUpdate: {
|
|
40063
39467
|
key: "lastUpdate",
|
|
40064
39468
|
type: PropertyType.DateTime,
|
|
@@ -40119,11 +39523,6 @@ var AFCertifikatFinbricks = class extends AFEntity {
|
|
|
40119
39523
|
}
|
|
40120
39524
|
static {
|
|
40121
39525
|
this.propAnnotations = {
|
|
40122
|
-
id: {
|
|
40123
|
-
key: "id",
|
|
40124
|
-
type: PropertyType.Integer,
|
|
40125
|
-
isArray: false
|
|
40126
|
-
},
|
|
40127
39526
|
lastUpdate: {
|
|
40128
39527
|
key: "lastUpdate",
|
|
40129
39528
|
type: PropertyType.DateTime,
|
|
@@ -40199,11 +39598,6 @@ var AFCertifikat = class extends AFEntity {
|
|
|
40199
39598
|
}
|
|
40200
39599
|
static {
|
|
40201
39600
|
this.propAnnotations = {
|
|
40202
|
-
id: {
|
|
40203
|
-
key: "id",
|
|
40204
|
-
type: PropertyType.Integer,
|
|
40205
|
-
isArray: false
|
|
40206
|
-
},
|
|
40207
39601
|
lastUpdate: {
|
|
40208
39602
|
key: "lastUpdate",
|
|
40209
39603
|
type: PropertyType.DateTime,
|
|
@@ -40279,11 +39673,6 @@ var AFFormaDopravy = class extends AFEntity {
|
|
|
40279
39673
|
}
|
|
40280
39674
|
static {
|
|
40281
39675
|
this.propAnnotations = {
|
|
40282
|
-
id: {
|
|
40283
|
-
key: "id",
|
|
40284
|
-
type: PropertyType.Integer,
|
|
40285
|
-
isArray: false
|
|
40286
|
-
},
|
|
40287
39676
|
lastUpdate: {
|
|
40288
39677
|
key: "lastUpdate",
|
|
40289
39678
|
type: PropertyType.DateTime,
|
|
@@ -40470,11 +39859,6 @@ var AFCisloBaliku = class extends AFEntity {
|
|
|
40470
39859
|
}
|
|
40471
39860
|
static {
|
|
40472
39861
|
this.propAnnotations = {
|
|
40473
|
-
id: {
|
|
40474
|
-
key: "id",
|
|
40475
|
-
type: PropertyType.Integer,
|
|
40476
|
-
isArray: false
|
|
40477
|
-
},
|
|
40478
39862
|
lastUpdate: {
|
|
40479
39863
|
key: "lastUpdate",
|
|
40480
39864
|
type: PropertyType.DateTime,
|
|
@@ -40537,11 +39921,6 @@ var AFTypUzivatelskeVazby = class extends AFEntity {
|
|
|
40537
39921
|
}
|
|
40538
39922
|
static {
|
|
40539
39923
|
this.propAnnotations = {
|
|
40540
|
-
id: {
|
|
40541
|
-
key: "id",
|
|
40542
|
-
type: PropertyType.Integer,
|
|
40543
|
-
isArray: false
|
|
40544
|
-
},
|
|
40545
39924
|
lastUpdate: {
|
|
40546
39925
|
key: "lastUpdate",
|
|
40547
39926
|
type: PropertyType.DateTime,
|
|
@@ -40676,11 +40055,6 @@ var AFUzivatelskaVazba = class extends AFEntity {
|
|
|
40676
40055
|
}
|
|
40677
40056
|
static {
|
|
40678
40057
|
this.propAnnotations = {
|
|
40679
|
-
id: {
|
|
40680
|
-
key: "id",
|
|
40681
|
-
type: PropertyType.Integer,
|
|
40682
|
-
isArray: false
|
|
40683
|
-
},
|
|
40684
40058
|
vazbaTyp: {
|
|
40685
40059
|
key: "vazbaTyp",
|
|
40686
40060
|
type: PropertyType.Relation,
|
|
@@ -40763,11 +40137,6 @@ var AFVztah = class extends AFEntity {
|
|
|
40763
40137
|
}
|
|
40764
40138
|
static {
|
|
40765
40139
|
this.propAnnotations = {
|
|
40766
|
-
id: {
|
|
40767
|
-
key: "id",
|
|
40768
|
-
type: PropertyType.Integer,
|
|
40769
|
-
isArray: false
|
|
40770
|
-
},
|
|
40771
40140
|
lastUpdate: {
|
|
40772
40141
|
key: "lastUpdate",
|
|
40773
40142
|
type: PropertyType.DateTime,
|
|
@@ -40871,11 +40240,6 @@ var AFIntrastatKrajUrceni = class extends AFEntity {
|
|
|
40871
40240
|
}
|
|
40872
40241
|
static {
|
|
40873
40242
|
this.propAnnotations = {
|
|
40874
|
-
id: {
|
|
40875
|
-
key: "id",
|
|
40876
|
-
type: PropertyType.Integer,
|
|
40877
|
-
isArray: false
|
|
40878
|
-
},
|
|
40879
40243
|
lastUpdate: {
|
|
40880
40244
|
key: "lastUpdate",
|
|
40881
40245
|
type: PropertyType.DateTime,
|
|
@@ -40958,11 +40322,6 @@ var AFIntrastatZvlastniPohyb = class extends AFEntity {
|
|
|
40958
40322
|
}
|
|
40959
40323
|
static {
|
|
40960
40324
|
this.propAnnotations = {
|
|
40961
|
-
id: {
|
|
40962
|
-
key: "id",
|
|
40963
|
-
type: PropertyType.Integer,
|
|
40964
|
-
isArray: false
|
|
40965
|
-
},
|
|
40966
40325
|
lastUpdate: {
|
|
40967
40326
|
key: "lastUpdate",
|
|
40968
40327
|
type: PropertyType.DateTime,
|
|
@@ -41045,11 +40404,6 @@ var AFIntrastatObchodniTransakce = class extends AFEntity {
|
|
|
41045
40404
|
}
|
|
41046
40405
|
static {
|
|
41047
40406
|
this.propAnnotations = {
|
|
41048
|
-
id: {
|
|
41049
|
-
key: "id",
|
|
41050
|
-
type: PropertyType.Integer,
|
|
41051
|
-
isArray: false
|
|
41052
|
-
},
|
|
41053
40407
|
lastUpdate: {
|
|
41054
40408
|
key: "lastUpdate",
|
|
41055
40409
|
type: PropertyType.DateTime,
|
|
@@ -41132,11 +40486,6 @@ var AFIntrastatDodaciPodminky = class extends AFEntity {
|
|
|
41132
40486
|
}
|
|
41133
40487
|
static {
|
|
41134
40488
|
this.propAnnotations = {
|
|
41135
|
-
id: {
|
|
41136
|
-
key: "id",
|
|
41137
|
-
type: PropertyType.Integer,
|
|
41138
|
-
isArray: false
|
|
41139
|
-
},
|
|
41140
40489
|
lastUpdate: {
|
|
41141
40490
|
key: "lastUpdate",
|
|
41142
40491
|
type: PropertyType.DateTime,
|
|
@@ -41219,11 +40568,6 @@ var AFIntrastatDruhDopravy = class extends AFEntity {
|
|
|
41219
40568
|
}
|
|
41220
40569
|
static {
|
|
41221
40570
|
this.propAnnotations = {
|
|
41222
|
-
id: {
|
|
41223
|
-
key: "id",
|
|
41224
|
-
type: PropertyType.Integer,
|
|
41225
|
-
isArray: false
|
|
41226
|
-
},
|
|
41227
40571
|
lastUpdate: {
|
|
41228
40572
|
key: "lastUpdate",
|
|
41229
40573
|
type: PropertyType.DateTime,
|
|
@@ -41306,11 +40650,6 @@ var AFIntrastatKurz = class extends AFEntity {
|
|
|
41306
40650
|
}
|
|
41307
40651
|
static {
|
|
41308
40652
|
this.propAnnotations = {
|
|
41309
|
-
id: {
|
|
41310
|
-
key: "id",
|
|
41311
|
-
type: PropertyType.Integer,
|
|
41312
|
-
isArray: false
|
|
41313
|
-
},
|
|
41314
40653
|
lastUpdate: {
|
|
41315
40654
|
key: "lastUpdate",
|
|
41316
40655
|
type: PropertyType.DateTime,
|
|
@@ -41366,11 +40705,6 @@ var AFIntrastatMernaJednotka = class extends AFEntity {
|
|
|
41366
40705
|
}
|
|
41367
40706
|
static {
|
|
41368
40707
|
this.propAnnotations = {
|
|
41369
|
-
id: {
|
|
41370
|
-
key: "id",
|
|
41371
|
-
type: PropertyType.Integer,
|
|
41372
|
-
isArray: false
|
|
41373
|
-
},
|
|
41374
40708
|
lastUpdate: {
|
|
41375
40709
|
key: "lastUpdate",
|
|
41376
40710
|
type: PropertyType.DateTime,
|
|
@@ -41453,11 +40787,6 @@ var AFIntrastatKodNomenklatury = class extends AFEntity {
|
|
|
41453
40787
|
}
|
|
41454
40788
|
static {
|
|
41455
40789
|
this.propAnnotations = {
|
|
41456
|
-
id: {
|
|
41457
|
-
key: "id",
|
|
41458
|
-
type: PropertyType.Integer,
|
|
41459
|
-
isArray: false
|
|
41460
|
-
},
|
|
41461
40790
|
lastUpdate: {
|
|
41462
40791
|
key: "lastUpdate",
|
|
41463
40792
|
type: PropertyType.DateTime,
|
|
@@ -41542,11 +40871,6 @@ var AFRezervace = class extends AFEntity {
|
|
|
41542
40871
|
}
|
|
41543
40872
|
static {
|
|
41544
40873
|
this.propAnnotations = {
|
|
41545
|
-
id: {
|
|
41546
|
-
key: "id",
|
|
41547
|
-
type: PropertyType.Integer,
|
|
41548
|
-
isArray: false
|
|
41549
|
-
},
|
|
41550
40874
|
lastUpdate: {
|
|
41551
40875
|
key: "lastUpdate",
|
|
41552
40876
|
type: PropertyType.DateTime,
|
|
@@ -41641,11 +40965,6 @@ var AFSkladovaKarta = class extends AFEntity {
|
|
|
41641
40965
|
}
|
|
41642
40966
|
static {
|
|
41643
40967
|
this.propAnnotations = {
|
|
41644
|
-
id: {
|
|
41645
|
-
key: "id",
|
|
41646
|
-
type: PropertyType.Integer,
|
|
41647
|
-
isArray: false
|
|
41648
|
-
},
|
|
41649
40968
|
lastUpdate: {
|
|
41650
40969
|
key: "lastUpdate",
|
|
41651
40970
|
type: PropertyType.DateTime,
|
|
@@ -41935,11 +41254,6 @@ var AFCenik = class extends AFEntity {
|
|
|
41935
41254
|
}
|
|
41936
41255
|
static {
|
|
41937
41256
|
this.propAnnotations = {
|
|
41938
|
-
id: {
|
|
41939
|
-
key: "id",
|
|
41940
|
-
type: PropertyType.Integer,
|
|
41941
|
-
isArray: false
|
|
41942
|
-
},
|
|
41943
41257
|
lastUpdate: {
|
|
41944
41258
|
key: "lastUpdate",
|
|
41945
41259
|
type: PropertyType.DateTime,
|
|
@@ -42723,11 +42037,6 @@ var AFIndividualniCenik = class extends AFEntity {
|
|
|
42723
42037
|
}
|
|
42724
42038
|
static {
|
|
42725
42039
|
this.propAnnotations = {
|
|
42726
|
-
id: {
|
|
42727
|
-
key: "id",
|
|
42728
|
-
type: PropertyType.Integer,
|
|
42729
|
-
isArray: false
|
|
42730
|
-
},
|
|
42731
42040
|
kod: {
|
|
42732
42041
|
key: "kod",
|
|
42733
42042
|
type: PropertyType.String,
|
|
@@ -42864,11 +42173,6 @@ var AFDodavatel = class extends AFEntity {
|
|
|
42864
42173
|
}
|
|
42865
42174
|
static {
|
|
42866
42175
|
this.propAnnotations = {
|
|
42867
|
-
id: {
|
|
42868
|
-
key: "id",
|
|
42869
|
-
type: PropertyType.Integer,
|
|
42870
|
-
isArray: false
|
|
42871
|
-
},
|
|
42872
42176
|
lastUpdate: {
|
|
42873
42177
|
key: "lastUpdate",
|
|
42874
42178
|
type: PropertyType.DateTime,
|
|
@@ -43014,11 +42318,6 @@ var AFOdberatel = class extends AFEntity {
|
|
|
43014
42318
|
}
|
|
43015
42319
|
static {
|
|
43016
42320
|
this.propAnnotations = {
|
|
43017
|
-
id: {
|
|
43018
|
-
key: "id",
|
|
43019
|
-
type: PropertyType.Integer,
|
|
43020
|
-
isArray: false
|
|
43021
|
-
},
|
|
43022
42321
|
lastUpdate: {
|
|
43023
42322
|
key: "lastUpdate",
|
|
43024
42323
|
type: PropertyType.DateTime,
|
|
@@ -43164,11 +42463,6 @@ var AFCenikTypSazbyDph = class extends AFEntity {
|
|
|
43164
42463
|
}
|
|
43165
42464
|
static {
|
|
43166
42465
|
this.propAnnotations = {
|
|
43167
|
-
id: {
|
|
43168
|
-
key: "id",
|
|
43169
|
-
type: PropertyType.Integer,
|
|
43170
|
-
isArray: false
|
|
43171
|
-
},
|
|
43172
42466
|
lastUpdate: {
|
|
43173
42467
|
key: "lastUpdate",
|
|
43174
42468
|
type: PropertyType.DateTime,
|
|
@@ -43238,11 +42532,6 @@ var AFVyrobniCislo = class extends AFEntity {
|
|
|
43238
42532
|
}
|
|
43239
42533
|
static {
|
|
43240
42534
|
this.propAnnotations = {
|
|
43241
|
-
id: {
|
|
43242
|
-
key: "id",
|
|
43243
|
-
type: PropertyType.Integer,
|
|
43244
|
-
isArray: false
|
|
43245
|
-
},
|
|
43246
42535
|
kod: {
|
|
43247
42536
|
key: "kod",
|
|
43248
42537
|
type: PropertyType.String,
|
|
@@ -43362,11 +42651,6 @@ var AFCenovaUroven = class extends AFEntity {
|
|
|
43362
42651
|
}
|
|
43363
42652
|
static {
|
|
43364
42653
|
this.propAnnotations = {
|
|
43365
|
-
id: {
|
|
43366
|
-
key: "id",
|
|
43367
|
-
type: PropertyType.Integer,
|
|
43368
|
-
isArray: false
|
|
43369
|
-
},
|
|
43370
42654
|
lastUpdate: {
|
|
43371
42655
|
key: "lastUpdate",
|
|
43372
42656
|
type: PropertyType.DateTime,
|
|
@@ -43617,11 +42901,6 @@ var AFCenikovaSkupina = class extends AFEntity {
|
|
|
43617
42901
|
}
|
|
43618
42902
|
static {
|
|
43619
42903
|
this.propAnnotations = {
|
|
43620
|
-
id: {
|
|
43621
|
-
key: "id",
|
|
43622
|
-
type: PropertyType.Integer,
|
|
43623
|
-
isArray: false
|
|
43624
|
-
},
|
|
43625
42904
|
lastUpdate: {
|
|
43626
42905
|
key: "lastUpdate",
|
|
43627
42906
|
type: PropertyType.DateTime,
|
|
@@ -43704,11 +42983,6 @@ var AFPoplatek = class extends AFEntity {
|
|
|
43704
42983
|
}
|
|
43705
42984
|
static {
|
|
43706
42985
|
this.propAnnotations = {
|
|
43707
|
-
id: {
|
|
43708
|
-
key: "id",
|
|
43709
|
-
type: PropertyType.Integer,
|
|
43710
|
-
isArray: false
|
|
43711
|
-
},
|
|
43712
42986
|
lastUpdate: {
|
|
43713
42987
|
key: "lastUpdate",
|
|
43714
42988
|
type: PropertyType.DateTime,
|
|
@@ -43779,11 +43053,6 @@ var AFPodobneZbozi = class extends AFEntity {
|
|
|
43779
43053
|
}
|
|
43780
43054
|
static {
|
|
43781
43055
|
this.propAnnotations = {
|
|
43782
|
-
id: {
|
|
43783
|
-
key: "id",
|
|
43784
|
-
type: PropertyType.Integer,
|
|
43785
|
-
isArray: false
|
|
43786
|
-
},
|
|
43787
43056
|
lastUpdate: {
|
|
43788
43057
|
key: "lastUpdate",
|
|
43789
43058
|
type: PropertyType.DateTime,
|
|
@@ -43835,11 +43104,6 @@ var AFSadyAKomplety = class extends AFEntity {
|
|
|
43835
43104
|
}
|
|
43836
43105
|
static {
|
|
43837
43106
|
this.propAnnotations = {
|
|
43838
|
-
id: {
|
|
43839
|
-
key: "id",
|
|
43840
|
-
type: PropertyType.Integer,
|
|
43841
|
-
isArray: false
|
|
43842
|
-
},
|
|
43843
43107
|
lastUpdate: {
|
|
43844
43108
|
key: "lastUpdate",
|
|
43845
43109
|
type: PropertyType.DateTime,
|
|
@@ -43897,11 +43161,6 @@ var AFKusovnik = class extends AFEntity {
|
|
|
43897
43161
|
}
|
|
43898
43162
|
static {
|
|
43899
43163
|
this.propAnnotations = {
|
|
43900
|
-
id: {
|
|
43901
|
-
key: "id",
|
|
43902
|
-
type: PropertyType.Integer,
|
|
43903
|
-
isArray: false
|
|
43904
|
-
},
|
|
43905
43164
|
lastUpdate: {
|
|
43906
43165
|
key: "lastUpdate",
|
|
43907
43166
|
type: PropertyType.DateTime,
|
|
@@ -44000,11 +43259,6 @@ var AFCenikObal = class extends AFEntity {
|
|
|
44000
43259
|
}
|
|
44001
43260
|
static {
|
|
44002
43261
|
this.propAnnotations = {
|
|
44003
|
-
id: {
|
|
44004
|
-
key: "id",
|
|
44005
|
-
type: PropertyType.Integer,
|
|
44006
|
-
isArray: false
|
|
44007
|
-
},
|
|
44008
43262
|
lastUpdate: {
|
|
44009
43263
|
key: "lastUpdate",
|
|
44010
43264
|
type: PropertyType.DateTime,
|
|
@@ -44160,11 +43414,6 @@ var AFSkupinaZbozi = class extends AFEntity {
|
|
|
44160
43414
|
}
|
|
44161
43415
|
static {
|
|
44162
43416
|
this.propAnnotations = {
|
|
44163
|
-
id: {
|
|
44164
|
-
key: "id",
|
|
44165
|
-
type: PropertyType.Integer,
|
|
44166
|
-
isArray: false
|
|
44167
|
-
},
|
|
44168
43417
|
lastUpdate: {
|
|
44169
43418
|
key: "lastUpdate",
|
|
44170
43419
|
type: PropertyType.DateTime,
|
|
@@ -44438,11 +43687,6 @@ var AFSkladovyPohyb = class extends AFEntity {
|
|
|
44438
43687
|
}
|
|
44439
43688
|
static {
|
|
44440
43689
|
this.propAnnotations = {
|
|
44441
|
-
id: {
|
|
44442
|
-
key: "id",
|
|
44443
|
-
type: PropertyType.Integer,
|
|
44444
|
-
isArray: false
|
|
44445
|
-
},
|
|
44446
43690
|
lastUpdate: {
|
|
44447
43691
|
key: "lastUpdate",
|
|
44448
43692
|
type: PropertyType.DateTime,
|
|
@@ -45024,11 +44268,6 @@ var AFSkladovyPohybPolozka = class extends AFEntity {
|
|
|
45024
44268
|
}
|
|
45025
44269
|
static {
|
|
45026
44270
|
this.propAnnotations = {
|
|
45027
|
-
id: {
|
|
45028
|
-
key: "id",
|
|
45029
|
-
type: PropertyType.Integer,
|
|
45030
|
-
isArray: false
|
|
45031
|
-
},
|
|
45032
44271
|
lastUpdate: {
|
|
45033
44272
|
key: "lastUpdate",
|
|
45034
44273
|
type: PropertyType.DateTime,
|
|
@@ -45534,11 +44773,6 @@ var AFRadaSkladovyPohyb = class extends AFEntity {
|
|
|
45534
44773
|
}
|
|
45535
44774
|
static {
|
|
45536
44775
|
this.propAnnotations = {
|
|
45537
|
-
id: {
|
|
45538
|
-
key: "id",
|
|
45539
|
-
type: PropertyType.Integer,
|
|
45540
|
-
isArray: false
|
|
45541
|
-
},
|
|
45542
44776
|
lastUpdate: {
|
|
45543
44777
|
key: "lastUpdate",
|
|
45544
44778
|
type: PropertyType.DateTime,
|
|
@@ -45632,11 +44866,6 @@ var AFTypSkladovyPohyb = class extends AFEntity {
|
|
|
45632
44866
|
}
|
|
45633
44867
|
static {
|
|
45634
44868
|
this.propAnnotations = {
|
|
45635
|
-
id: {
|
|
45636
|
-
key: "id",
|
|
45637
|
-
type: PropertyType.Integer,
|
|
45638
|
-
isArray: false
|
|
45639
|
-
},
|
|
45640
44869
|
lastUpdate: {
|
|
45641
44870
|
key: "lastUpdate",
|
|
45642
44871
|
type: PropertyType.DateTime,
|
|
@@ -45924,11 +45153,6 @@ var AFSklad = class extends AFEntity {
|
|
|
45924
45153
|
}
|
|
45925
45154
|
static {
|
|
45926
45155
|
this.propAnnotations = {
|
|
45927
|
-
id: {
|
|
45928
|
-
key: "id",
|
|
45929
|
-
type: PropertyType.Integer,
|
|
45930
|
-
isArray: false
|
|
45931
|
-
},
|
|
45932
45156
|
lastUpdate: {
|
|
45933
45157
|
key: "lastUpdate",
|
|
45934
45158
|
type: PropertyType.DateTime,
|
|
@@ -46073,11 +45297,6 @@ var AFStrom = class extends AFEntity {
|
|
|
46073
45297
|
}
|
|
46074
45298
|
static {
|
|
46075
45299
|
this.propAnnotations = {
|
|
46076
|
-
id: {
|
|
46077
|
-
key: "id",
|
|
46078
|
-
type: PropertyType.Integer,
|
|
46079
|
-
isArray: false
|
|
46080
|
-
},
|
|
46081
45300
|
lastUpdate: {
|
|
46082
45301
|
key: "lastUpdate",
|
|
46083
45302
|
type: PropertyType.DateTime,
|
|
@@ -46202,11 +45421,6 @@ var AFStromKoren = class extends AFEntity {
|
|
|
46202
45421
|
}
|
|
46203
45422
|
static {
|
|
46204
45423
|
this.propAnnotations = {
|
|
46205
|
-
id: {
|
|
46206
|
-
key: "id",
|
|
46207
|
-
type: PropertyType.Integer,
|
|
46208
|
-
isArray: false
|
|
46209
|
-
},
|
|
46210
45424
|
lastUpdate: {
|
|
46211
45425
|
key: "lastUpdate",
|
|
46212
45426
|
type: PropertyType.DateTime,
|
|
@@ -46303,11 +45517,6 @@ var AFStromCenik = class extends AFEntity {
|
|
|
46303
45517
|
}
|
|
46304
45518
|
static {
|
|
46305
45519
|
this.propAnnotations = {
|
|
46306
|
-
id: {
|
|
46307
|
-
key: "id",
|
|
46308
|
-
type: PropertyType.Integer,
|
|
46309
|
-
isArray: false
|
|
46310
|
-
},
|
|
46311
45520
|
lastUpdate: {
|
|
46312
45521
|
key: "lastUpdate",
|
|
46313
45522
|
type: PropertyType.DateTime,
|
|
@@ -46346,11 +45555,6 @@ var AFMapovaniSkladu = class extends AFEntity {
|
|
|
46346
45555
|
}
|
|
46347
45556
|
static {
|
|
46348
45557
|
this.propAnnotations = {
|
|
46349
|
-
id: {
|
|
46350
|
-
key: "id",
|
|
46351
|
-
type: PropertyType.Integer,
|
|
46352
|
-
isArray: false
|
|
46353
|
-
},
|
|
46354
45558
|
lastUpdate: {
|
|
46355
45559
|
key: "lastUpdate",
|
|
46356
45560
|
type: PropertyType.DateTime,
|
|
@@ -46409,11 +45613,6 @@ var AFUmisteniVeSkladu = class extends AFEntity {
|
|
|
46409
45613
|
}
|
|
46410
45614
|
static {
|
|
46411
45615
|
this.propAnnotations = {
|
|
46412
|
-
id: {
|
|
46413
|
-
key: "id",
|
|
46414
|
-
type: PropertyType.Integer,
|
|
46415
|
-
isArray: false
|
|
46416
|
-
},
|
|
46417
45616
|
lastUpdate: {
|
|
46418
45617
|
key: "lastUpdate",
|
|
46419
45618
|
type: PropertyType.DateTime,
|
|
@@ -46509,11 +45708,6 @@ var AFUmisteniVeSkladuRegal = class extends AFEntity {
|
|
|
46509
45708
|
}
|
|
46510
45709
|
static {
|
|
46511
45710
|
this.propAnnotations = {
|
|
46512
|
-
id: {
|
|
46513
|
-
key: "id",
|
|
46514
|
-
type: PropertyType.Integer,
|
|
46515
|
-
isArray: false
|
|
46516
|
-
},
|
|
46517
45711
|
lastUpdate: {
|
|
46518
45712
|
key: "lastUpdate",
|
|
46519
45713
|
type: PropertyType.DateTime,
|
|
@@ -46609,11 +45803,6 @@ var AFUmisteniVeSkladuPolice = class extends AFEntity {
|
|
|
46609
45803
|
}
|
|
46610
45804
|
static {
|
|
46611
45805
|
this.propAnnotations = {
|
|
46612
|
-
id: {
|
|
46613
|
-
key: "id",
|
|
46614
|
-
type: PropertyType.Integer,
|
|
46615
|
-
isArray: false
|
|
46616
|
-
},
|
|
46617
45806
|
lastUpdate: {
|
|
46618
45807
|
key: "lastUpdate",
|
|
46619
45808
|
type: PropertyType.DateTime,
|
|
@@ -46709,11 +45898,6 @@ var AFUmisteniVeSkladuMistnost = class extends AFEntity {
|
|
|
46709
45898
|
}
|
|
46710
45899
|
static {
|
|
46711
45900
|
this.propAnnotations = {
|
|
46712
|
-
id: {
|
|
46713
|
-
key: "id",
|
|
46714
|
-
type: PropertyType.Integer,
|
|
46715
|
-
isArray: false
|
|
46716
|
-
},
|
|
46717
45901
|
lastUpdate: {
|
|
46718
45902
|
key: "lastUpdate",
|
|
46719
45903
|
type: PropertyType.DateTime,
|
|
@@ -46809,11 +45993,6 @@ var AFAtribut = class extends AFEntity {
|
|
|
46809
45993
|
}
|
|
46810
45994
|
static {
|
|
46811
45995
|
this.propAnnotations = {
|
|
46812
|
-
id: {
|
|
46813
|
-
key: "id",
|
|
46814
|
-
type: PropertyType.Integer,
|
|
46815
|
-
isArray: false
|
|
46816
|
-
},
|
|
46817
45996
|
lastUpdate: {
|
|
46818
45997
|
key: "lastUpdate",
|
|
46819
45998
|
type: PropertyType.DateTime,
|
|
@@ -46925,11 +46104,6 @@ var AFPrislustenstvi = class extends AFEntity {
|
|
|
46925
46104
|
}
|
|
46926
46105
|
static {
|
|
46927
46106
|
this.propAnnotations = {
|
|
46928
|
-
id: {
|
|
46929
|
-
key: "id",
|
|
46930
|
-
type: PropertyType.Integer,
|
|
46931
|
-
isArray: false
|
|
46932
|
-
},
|
|
46933
46107
|
lastUpdate: {
|
|
46934
46108
|
key: "lastUpdate",
|
|
46935
46109
|
type: PropertyType.DateTime,
|
|
@@ -46981,11 +46155,6 @@ var AFTypStavuCeniku = class extends AFEntity {
|
|
|
46981
46155
|
}
|
|
46982
46156
|
static {
|
|
46983
46157
|
this.propAnnotations = {
|
|
46984
|
-
id: {
|
|
46985
|
-
key: "id",
|
|
46986
|
-
type: PropertyType.Integer,
|
|
46987
|
-
isArray: false
|
|
46988
|
-
},
|
|
46989
46158
|
lastUpdate: {
|
|
46990
46159
|
key: "lastUpdate",
|
|
46991
46160
|
type: PropertyType.DateTime,
|
|
@@ -47089,11 +46258,6 @@ var AFStavCeniku = class extends AFEntity {
|
|
|
47089
46258
|
}
|
|
47090
46259
|
static {
|
|
47091
46260
|
this.propAnnotations = {
|
|
47092
|
-
id: {
|
|
47093
|
-
key: "id",
|
|
47094
|
-
type: PropertyType.Integer,
|
|
47095
|
-
isArray: false
|
|
47096
|
-
},
|
|
47097
46261
|
lastUpdate: {
|
|
47098
46262
|
key: "lastUpdate",
|
|
47099
46263
|
type: PropertyType.DateTime,
|
|
@@ -47197,11 +46361,6 @@ var AFTypAtributu = class extends AFEntity {
|
|
|
47197
46361
|
}
|
|
47198
46362
|
static {
|
|
47199
46363
|
this.propAnnotations = {
|
|
47200
|
-
id: {
|
|
47201
|
-
key: "id",
|
|
47202
|
-
type: PropertyType.Integer,
|
|
47203
|
-
isArray: false
|
|
47204
|
-
},
|
|
47205
46364
|
lastUpdate: {
|
|
47206
46365
|
key: "lastUpdate",
|
|
47207
46366
|
type: PropertyType.DateTime,
|
|
@@ -47319,11 +46478,6 @@ var AFSkupinaAtributu = class extends AFEntity {
|
|
|
47319
46478
|
}
|
|
47320
46479
|
static {
|
|
47321
46480
|
this.propAnnotations = {
|
|
47322
|
-
id: {
|
|
47323
|
-
key: "id",
|
|
47324
|
-
type: PropertyType.Integer,
|
|
47325
|
-
isArray: false
|
|
47326
|
-
},
|
|
47327
46481
|
lastUpdate: {
|
|
47328
46482
|
key: "lastUpdate",
|
|
47329
46483
|
type: PropertyType.DateTime,
|
|
@@ -47435,11 +46589,6 @@ var AFInventura = class extends AFEntity {
|
|
|
47435
46589
|
}
|
|
47436
46590
|
static {
|
|
47437
46591
|
this.propAnnotations = {
|
|
47438
|
-
id: {
|
|
47439
|
-
key: "id",
|
|
47440
|
-
type: PropertyType.Integer,
|
|
47441
|
-
isArray: false
|
|
47442
|
-
},
|
|
47443
46592
|
lastUpdate: {
|
|
47444
46593
|
key: "lastUpdate",
|
|
47445
46594
|
type: PropertyType.DateTime,
|
|
@@ -47534,11 +46683,6 @@ var AFInventuraPolozka = class extends AFEntity {
|
|
|
47534
46683
|
}
|
|
47535
46684
|
static {
|
|
47536
46685
|
this.propAnnotations = {
|
|
47537
|
-
id: {
|
|
47538
|
-
key: "id",
|
|
47539
|
-
type: PropertyType.Integer,
|
|
47540
|
-
isArray: false
|
|
47541
|
-
},
|
|
47542
46686
|
lastUpdate: {
|
|
47543
46687
|
key: "lastUpdate",
|
|
47544
46688
|
type: PropertyType.DateTime,
|
|
@@ -47783,11 +46927,6 @@ var AFSarzeExpirace = class extends AFEntity {
|
|
|
47783
46927
|
}
|
|
47784
46928
|
static {
|
|
47785
46929
|
this.propAnnotations = {
|
|
47786
|
-
id: {
|
|
47787
|
-
key: "id",
|
|
47788
|
-
type: PropertyType.Integer,
|
|
47789
|
-
isArray: false
|
|
47790
|
-
},
|
|
47791
46930
|
pocet: {
|
|
47792
46931
|
key: "pocet",
|
|
47793
46932
|
type: PropertyType.Numeric,
|
|
@@ -47882,11 +47021,6 @@ var AFMajetek = class extends AFEntity {
|
|
|
47882
47021
|
}
|
|
47883
47022
|
static {
|
|
47884
47023
|
this.propAnnotations = {
|
|
47885
|
-
id: {
|
|
47886
|
-
key: "id",
|
|
47887
|
-
type: PropertyType.Integer,
|
|
47888
|
-
isArray: false
|
|
47889
|
-
},
|
|
47890
47024
|
lastUpdate: {
|
|
47891
47025
|
key: "lastUpdate",
|
|
47892
47026
|
type: PropertyType.DateTime,
|
|
@@ -48357,11 +47491,6 @@ var AFLeasing = class extends AFEntity {
|
|
|
48357
47491
|
}
|
|
48358
47492
|
static {
|
|
48359
47493
|
this.propAnnotations = {
|
|
48360
|
-
id: {
|
|
48361
|
-
key: "id",
|
|
48362
|
-
type: PropertyType.Integer,
|
|
48363
|
-
isArray: false
|
|
48364
|
-
},
|
|
48365
47494
|
lastUpdate: {
|
|
48366
47495
|
key: "lastUpdate",
|
|
48367
47496
|
type: PropertyType.DateTime,
|
|
@@ -48696,11 +47825,6 @@ var AFSplatkovyKalendar = class extends AFEntity {
|
|
|
48696
47825
|
}
|
|
48697
47826
|
static {
|
|
48698
47827
|
this.propAnnotations = {
|
|
48699
|
-
id: {
|
|
48700
|
-
key: "id",
|
|
48701
|
-
type: PropertyType.Integer,
|
|
48702
|
-
isArray: false
|
|
48703
|
-
},
|
|
48704
47828
|
lastUpdate: {
|
|
48705
47829
|
key: "lastUpdate",
|
|
48706
47830
|
type: PropertyType.DateTime,
|
|
@@ -48893,11 +48017,6 @@ var AFDanovyNaklad = class extends AFEntity {
|
|
|
48893
48017
|
}
|
|
48894
48018
|
static {
|
|
48895
48019
|
this.propAnnotations = {
|
|
48896
|
-
id: {
|
|
48897
|
-
key: "id",
|
|
48898
|
-
type: PropertyType.Integer,
|
|
48899
|
-
isArray: false
|
|
48900
|
-
},
|
|
48901
48020
|
lastUpdate: {
|
|
48902
48021
|
key: "lastUpdate",
|
|
48903
48022
|
type: PropertyType.DateTime,
|
|
@@ -49008,11 +48127,6 @@ var AFTypMajetku = class extends AFEntity {
|
|
|
49008
48127
|
}
|
|
49009
48128
|
static {
|
|
49010
48129
|
this.propAnnotations = {
|
|
49011
|
-
id: {
|
|
49012
|
-
key: "id",
|
|
49013
|
-
type: PropertyType.Integer,
|
|
49014
|
-
isArray: false
|
|
49015
|
-
},
|
|
49016
48130
|
lastUpdate: {
|
|
49017
48131
|
key: "lastUpdate",
|
|
49018
48132
|
type: PropertyType.DateTime,
|
|
@@ -49170,11 +48284,6 @@ var AFTypLeasingu = class extends AFEntity {
|
|
|
49170
48284
|
}
|
|
49171
48285
|
static {
|
|
49172
48286
|
this.propAnnotations = {
|
|
49173
|
-
id: {
|
|
49174
|
-
key: "id",
|
|
49175
|
-
type: PropertyType.Integer,
|
|
49176
|
-
isArray: false
|
|
49177
|
-
},
|
|
49178
48287
|
lastUpdate: {
|
|
49179
48288
|
key: "lastUpdate",
|
|
49180
48289
|
type: PropertyType.DateTime,
|
|
@@ -49328,11 +48437,6 @@ var AFUmisteni = class extends AFEntity {
|
|
|
49328
48437
|
}
|
|
49329
48438
|
static {
|
|
49330
48439
|
this.propAnnotations = {
|
|
49331
|
-
id: {
|
|
49332
|
-
key: "id",
|
|
49333
|
-
type: PropertyType.Integer,
|
|
49334
|
-
isArray: false
|
|
49335
|
-
},
|
|
49336
48440
|
lastUpdate: {
|
|
49337
48441
|
key: "lastUpdate",
|
|
49338
48442
|
type: PropertyType.DateTime,
|
|
@@ -49415,11 +48519,6 @@ var AFOdpisovaSkupina = class extends AFEntity {
|
|
|
49415
48519
|
}
|
|
49416
48520
|
static {
|
|
49417
48521
|
this.propAnnotations = {
|
|
49418
|
-
id: {
|
|
49419
|
-
key: "id",
|
|
49420
|
-
type: PropertyType.Integer,
|
|
49421
|
-
isArray: false
|
|
49422
|
-
},
|
|
49423
48522
|
lastUpdate: {
|
|
49424
48523
|
key: "lastUpdate",
|
|
49425
48524
|
type: PropertyType.DateTime,
|
|
@@ -49568,11 +48667,6 @@ var AFMajetekUdalost = class extends AFEntity {
|
|
|
49568
48667
|
}
|
|
49569
48668
|
static {
|
|
49570
48669
|
this.propAnnotations = {
|
|
49571
|
-
id: {
|
|
49572
|
-
key: "id",
|
|
49573
|
-
type: PropertyType.Integer,
|
|
49574
|
-
isArray: false
|
|
49575
|
-
},
|
|
49576
48670
|
lastUpdate: {
|
|
49577
48671
|
key: "lastUpdate",
|
|
49578
48672
|
type: PropertyType.DateTime,
|
|
@@ -49746,11 +48840,6 @@ var AFZapujcka = class extends AFEntity {
|
|
|
49746
48840
|
}
|
|
49747
48841
|
static {
|
|
49748
48842
|
this.propAnnotations = {
|
|
49749
|
-
id: {
|
|
49750
|
-
key: "id",
|
|
49751
|
-
type: PropertyType.Integer,
|
|
49752
|
-
isArray: false
|
|
49753
|
-
},
|
|
49754
48843
|
lastUpdate: {
|
|
49755
48844
|
key: "lastUpdate",
|
|
49756
48845
|
type: PropertyType.DateTime,
|
|
@@ -49905,11 +48994,6 @@ var AFDanovyOdpis = class extends AFEntity {
|
|
|
49905
48994
|
}
|
|
49906
48995
|
static {
|
|
49907
48996
|
this.propAnnotations = {
|
|
49908
|
-
id: {
|
|
49909
|
-
key: "id",
|
|
49910
|
-
type: PropertyType.Integer,
|
|
49911
|
-
isArray: false
|
|
49912
|
-
},
|
|
49913
48997
|
ucetni: {
|
|
49914
48998
|
key: "ucetni",
|
|
49915
48999
|
type: PropertyType.Logic,
|
|
@@ -50030,11 +49114,6 @@ var AFUcetniOdpis = class extends AFEntity {
|
|
|
50030
49114
|
}
|
|
50031
49115
|
static {
|
|
50032
49116
|
this.propAnnotations = {
|
|
50033
|
-
id: {
|
|
50034
|
-
key: "id",
|
|
50035
|
-
type: PropertyType.Integer,
|
|
50036
|
-
isArray: false
|
|
50037
|
-
},
|
|
50038
49117
|
ucetni: {
|
|
50039
49118
|
key: "ucetni",
|
|
50040
49119
|
type: PropertyType.Logic,
|
|
@@ -50150,11 +49229,6 @@ var AFOsoba = class extends AFEntity {
|
|
|
50150
49229
|
}
|
|
50151
49230
|
static {
|
|
50152
49231
|
this.propAnnotations = {
|
|
50153
|
-
id: {
|
|
50154
|
-
key: "id",
|
|
50155
|
-
type: PropertyType.Integer,
|
|
50156
|
-
isArray: false
|
|
50157
|
-
},
|
|
50158
49232
|
lastUpdate: {
|
|
50159
49233
|
key: "lastUpdate",
|
|
50160
49234
|
type: PropertyType.DateTime,
|
|
@@ -50819,11 +49893,6 @@ var AFOsobaHlavicka = class extends AFEntity {
|
|
|
50819
49893
|
}
|
|
50820
49894
|
static {
|
|
50821
49895
|
this.propAnnotations = {
|
|
50822
|
-
id: {
|
|
50823
|
-
key: "id",
|
|
50824
|
-
type: PropertyType.Integer,
|
|
50825
|
-
isArray: false
|
|
50826
|
-
},
|
|
50827
49896
|
lastUpdate: {
|
|
50828
49897
|
key: "lastUpdate",
|
|
50829
49898
|
type: PropertyType.DateTime,
|
|
@@ -50897,11 +49966,6 @@ var AFSkupinaOsob = class extends AFEntity {
|
|
|
50897
49966
|
}
|
|
50898
49967
|
static {
|
|
50899
49968
|
this.propAnnotations = {
|
|
50900
|
-
id: {
|
|
50901
|
-
key: "id",
|
|
50902
|
-
type: PropertyType.Integer,
|
|
50903
|
-
isArray: false
|
|
50904
|
-
},
|
|
50905
49969
|
lastUpdate: {
|
|
50906
49970
|
key: "lastUpdate",
|
|
50907
49971
|
type: PropertyType.DateTime,
|
|
@@ -51093,11 +50157,6 @@ var AFDite = class extends AFEntity {
|
|
|
51093
50157
|
}
|
|
51094
50158
|
static {
|
|
51095
50159
|
this.propAnnotations = {
|
|
51096
|
-
id: {
|
|
51097
|
-
key: "id",
|
|
51098
|
-
type: PropertyType.Integer,
|
|
51099
|
-
isArray: false
|
|
51100
|
-
},
|
|
51101
50160
|
lastUpdate: {
|
|
51102
50161
|
key: "lastUpdate",
|
|
51103
50162
|
type: PropertyType.DateTime,
|
|
@@ -51203,11 +50262,6 @@ var AFOsobaBlizka = class extends AFEntity {
|
|
|
51203
50262
|
}
|
|
51204
50263
|
static {
|
|
51205
50264
|
this.propAnnotations = {
|
|
51206
|
-
id: {
|
|
51207
|
-
key: "id",
|
|
51208
|
-
type: PropertyType.Integer,
|
|
51209
|
-
isArray: false
|
|
51210
|
-
},
|
|
51211
50265
|
lastUpdate: {
|
|
51212
50266
|
key: "lastUpdate",
|
|
51213
50267
|
type: PropertyType.DateTime,
|
|
@@ -51313,11 +50367,6 @@ var AFNepritomnost = class extends AFEntity {
|
|
|
51313
50367
|
}
|
|
51314
50368
|
static {
|
|
51315
50369
|
this.propAnnotations = {
|
|
51316
|
-
id: {
|
|
51317
|
-
key: "id",
|
|
51318
|
-
type: PropertyType.Integer,
|
|
51319
|
-
isArray: false
|
|
51320
|
-
},
|
|
51321
50370
|
lastUpdate: {
|
|
51322
50371
|
key: "lastUpdate",
|
|
51323
50372
|
type: PropertyType.DateTime,
|
|
@@ -51458,11 +50507,6 @@ var AFSrazka = class extends AFEntity {
|
|
|
51458
50507
|
}
|
|
51459
50508
|
static {
|
|
51460
50509
|
this.propAnnotations = {
|
|
51461
|
-
id: {
|
|
51462
|
-
key: "id",
|
|
51463
|
-
type: PropertyType.Integer,
|
|
51464
|
-
isArray: false
|
|
51465
|
-
},
|
|
51466
50510
|
lastUpdate: {
|
|
51467
50511
|
key: "lastUpdate",
|
|
51468
50512
|
type: PropertyType.DateTime,
|
|
@@ -51631,11 +50675,6 @@ var AFTypPracovnihoPomeru = class extends AFEntity {
|
|
|
51631
50675
|
}
|
|
51632
50676
|
static {
|
|
51633
50677
|
this.propAnnotations = {
|
|
51634
|
-
id: {
|
|
51635
|
-
key: "id",
|
|
51636
|
-
type: PropertyType.Integer,
|
|
51637
|
-
isArray: false
|
|
51638
|
-
},
|
|
51639
50678
|
lastUpdate: {
|
|
51640
50679
|
key: "lastUpdate",
|
|
51641
50680
|
type: PropertyType.DateTime,
|
|
@@ -51718,11 +50757,6 @@ var AFMzdyBankovniSpojeni = class extends AFEntity {
|
|
|
51718
50757
|
}
|
|
51719
50758
|
static {
|
|
51720
50759
|
this.propAnnotations = {
|
|
51721
|
-
id: {
|
|
51722
|
-
key: "id",
|
|
51723
|
-
type: PropertyType.Integer,
|
|
51724
|
-
isArray: false
|
|
51725
|
-
},
|
|
51726
50760
|
lastUpdate: {
|
|
51727
50761
|
key: "lastUpdate",
|
|
51728
50762
|
type: PropertyType.DateTime,
|
|
@@ -51863,11 +50897,6 @@ var AFPracovniPomer = class extends AFEntity {
|
|
|
51863
50897
|
}
|
|
51864
50898
|
static {
|
|
51865
50899
|
this.propAnnotations = {
|
|
51866
|
-
id: {
|
|
51867
|
-
key: "id",
|
|
51868
|
-
type: PropertyType.Integer,
|
|
51869
|
-
isArray: false
|
|
51870
|
-
},
|
|
51871
50900
|
lastUpdate: {
|
|
51872
50901
|
key: "lastUpdate",
|
|
51873
50902
|
type: PropertyType.DateTime,
|
|
@@ -52303,11 +51332,6 @@ var AFPracovniPomerHlavicka = class extends AFEntity {
|
|
|
52303
51332
|
}
|
|
52304
51333
|
static {
|
|
52305
51334
|
this.propAnnotations = {
|
|
52306
|
-
id: {
|
|
52307
|
-
key: "id",
|
|
52308
|
-
type: PropertyType.Integer,
|
|
52309
|
-
isArray: false
|
|
52310
|
-
},
|
|
52311
51335
|
lastUpdate: {
|
|
52312
51336
|
key: "lastUpdate",
|
|
52313
51337
|
type: PropertyType.DateTime,
|
|
@@ -52398,11 +51422,6 @@ var AFStalaMzdovaSlozka = class extends AFEntity {
|
|
|
52398
51422
|
}
|
|
52399
51423
|
static {
|
|
52400
51424
|
this.propAnnotations = {
|
|
52401
|
-
id: {
|
|
52402
|
-
key: "id",
|
|
52403
|
-
type: PropertyType.Integer,
|
|
52404
|
-
isArray: false
|
|
52405
|
-
},
|
|
52406
51425
|
lastUpdate: {
|
|
52407
51426
|
key: "lastUpdate",
|
|
52408
51427
|
type: PropertyType.DateTime,
|
|
@@ -52627,11 +51646,6 @@ var AFMzdovaSlozka = class extends AFEntity {
|
|
|
52627
51646
|
}
|
|
52628
51647
|
static {
|
|
52629
51648
|
this.propAnnotations = {
|
|
52630
|
-
id: {
|
|
52631
|
-
key: "id",
|
|
52632
|
-
type: PropertyType.Integer,
|
|
52633
|
-
isArray: false
|
|
52634
|
-
},
|
|
52635
51649
|
lastUpdate: {
|
|
52636
51650
|
key: "lastUpdate",
|
|
52637
51651
|
type: PropertyType.DateTime,
|
|
@@ -52906,11 +51920,6 @@ var AFSmena = class extends AFEntity {
|
|
|
52906
51920
|
}
|
|
52907
51921
|
static {
|
|
52908
51922
|
this.propAnnotations = {
|
|
52909
|
-
id: {
|
|
52910
|
-
key: "id",
|
|
52911
|
-
type: PropertyType.Integer,
|
|
52912
|
-
isArray: false
|
|
52913
|
-
},
|
|
52914
51923
|
lastUpdate: {
|
|
52915
51924
|
key: "lastUpdate",
|
|
52916
51925
|
type: PropertyType.DateTime,
|
|
@@ -52981,11 +51990,6 @@ var AFCiselnikMzdovychSlozek = class extends AFEntity {
|
|
|
52981
51990
|
}
|
|
52982
51991
|
static {
|
|
52983
51992
|
this.propAnnotations = {
|
|
52984
|
-
id: {
|
|
52985
|
-
key: "id",
|
|
52986
|
-
type: PropertyType.Integer,
|
|
52987
|
-
isArray: false
|
|
52988
|
-
},
|
|
52989
51993
|
lastUpdate: {
|
|
52990
51994
|
key: "lastUpdate",
|
|
52991
51995
|
type: PropertyType.DateTime,
|
|
@@ -53326,11 +52330,6 @@ var AFPrace = class extends AFEntity {
|
|
|
53326
52330
|
}
|
|
53327
52331
|
static {
|
|
53328
52332
|
this.propAnnotations = {
|
|
53329
|
-
id: {
|
|
53330
|
-
key: "id",
|
|
53331
|
-
type: PropertyType.Integer,
|
|
53332
|
-
isArray: false
|
|
53333
|
-
},
|
|
53334
52333
|
lastUpdate: {
|
|
53335
52334
|
key: "lastUpdate",
|
|
53336
52335
|
type: PropertyType.DateTime,
|
|
@@ -53416,11 +52415,6 @@ var AFPraceMesic = class extends AFEntity {
|
|
|
53416
52415
|
}
|
|
53417
52416
|
static {
|
|
53418
52417
|
this.propAnnotations = {
|
|
53419
|
-
id: {
|
|
53420
|
-
key: "id",
|
|
53421
|
-
type: PropertyType.Integer,
|
|
53422
|
-
isArray: false
|
|
53423
|
-
},
|
|
53424
52418
|
lastUpdate: {
|
|
53425
52419
|
key: "lastUpdate",
|
|
53426
52420
|
type: PropertyType.DateTime,
|
|
@@ -54111,11 +53105,6 @@ var AFZavazek = class extends AFEntity {
|
|
|
54111
53105
|
}
|
|
54112
53106
|
static {
|
|
54113
53107
|
this.propAnnotations = {
|
|
54114
|
-
id: {
|
|
54115
|
-
key: "id",
|
|
54116
|
-
type: PropertyType.Integer,
|
|
54117
|
-
isArray: false
|
|
54118
|
-
},
|
|
54119
53108
|
lastUpdate: {
|
|
54120
53109
|
key: "lastUpdate",
|
|
54121
53110
|
type: PropertyType.DateTime,
|
|
@@ -55019,11 +54008,6 @@ var AFZavazekPolozka = class extends AFEntity {
|
|
|
55019
54008
|
}
|
|
55020
54009
|
static {
|
|
55021
54010
|
this.propAnnotations = {
|
|
55022
|
-
id: {
|
|
55023
|
-
key: "id",
|
|
55024
|
-
type: PropertyType.Integer,
|
|
55025
|
-
isArray: false
|
|
55026
|
-
},
|
|
55027
54011
|
lastUpdate: {
|
|
55028
54012
|
key: "lastUpdate",
|
|
55029
54013
|
type: PropertyType.DateTime,
|
|
@@ -55573,11 +54557,6 @@ var AFTypZavazku = class extends AFEntity {
|
|
|
55573
54557
|
}
|
|
55574
54558
|
static {
|
|
55575
54559
|
this.propAnnotations = {
|
|
55576
|
-
id: {
|
|
55577
|
-
key: "id",
|
|
55578
|
-
type: PropertyType.Integer,
|
|
55579
|
-
isArray: false
|
|
55580
|
-
},
|
|
55581
54560
|
lastUpdate: {
|
|
55582
54561
|
key: "lastUpdate",
|
|
55583
54562
|
type: PropertyType.DateTime,
|
|
@@ -55870,11 +54849,6 @@ var AFRadaZavazku = class extends AFEntity {
|
|
|
55870
54849
|
}
|
|
55871
54850
|
static {
|
|
55872
54851
|
this.propAnnotations = {
|
|
55873
|
-
id: {
|
|
55874
|
-
key: "id",
|
|
55875
|
-
type: PropertyType.Integer,
|
|
55876
|
-
isArray: false
|
|
55877
|
-
},
|
|
55878
54852
|
lastUpdate: {
|
|
55879
54853
|
key: "lastUpdate",
|
|
55880
54854
|
type: PropertyType.DateTime,
|
|
@@ -55968,11 +54942,6 @@ var AFFiltr = class extends AFEntity {
|
|
|
55968
54942
|
}
|
|
55969
54943
|
static {
|
|
55970
54944
|
this.propAnnotations = {
|
|
55971
|
-
id: {
|
|
55972
|
-
key: "id",
|
|
55973
|
-
type: PropertyType.Integer,
|
|
55974
|
-
isArray: false
|
|
55975
|
-
},
|
|
55976
54945
|
lastUpdate: {
|
|
55977
54946
|
key: "lastUpdate",
|
|
55978
54947
|
type: PropertyType.DateTime,
|
|
@@ -56060,11 +55029,6 @@ var AFParametr = class extends AFEntity {
|
|
|
56060
55029
|
}
|
|
56061
55030
|
static {
|
|
56062
55031
|
this.propAnnotations = {
|
|
56063
|
-
id: {
|
|
56064
|
-
key: "id",
|
|
56065
|
-
type: PropertyType.Integer,
|
|
56066
|
-
isArray: false
|
|
56067
|
-
},
|
|
56068
55032
|
lastUpdate: {
|
|
56069
55033
|
key: "lastUpdate",
|
|
56070
55034
|
type: PropertyType.DateTime,
|
|
@@ -56171,11 +55135,6 @@ var AFUzivatelskyDotaz = class extends AFEntity {
|
|
|
56171
55135
|
}
|
|
56172
55136
|
static {
|
|
56173
55137
|
this.propAnnotations = {
|
|
56174
|
-
id: {
|
|
56175
|
-
key: "id",
|
|
56176
|
-
type: PropertyType.Integer,
|
|
56177
|
-
isArray: false
|
|
56178
|
-
},
|
|
56179
55138
|
lastUpdate: {
|
|
56180
55139
|
key: "lastUpdate",
|
|
56181
55140
|
type: PropertyType.DateTime,
|
|
@@ -56300,11 +55259,6 @@ var AFUzivatelskyDotazParametr = class extends AFEntity {
|
|
|
56300
55259
|
}
|
|
56301
55260
|
static {
|
|
56302
55261
|
this.propAnnotations = {
|
|
56303
|
-
id: {
|
|
56304
|
-
key: "id",
|
|
56305
|
-
type: PropertyType.Integer,
|
|
56306
|
-
isArray: false
|
|
56307
|
-
},
|
|
56308
55262
|
lastUpdate: {
|
|
56309
55263
|
key: "lastUpdate",
|
|
56310
55264
|
type: PropertyType.DateTime,
|
|
@@ -56417,11 +55371,6 @@ var AFUzivatelskyDotazVlastnost = class extends AFEntity {
|
|
|
56417
55371
|
}
|
|
56418
55372
|
static {
|
|
56419
55373
|
this.propAnnotations = {
|
|
56420
|
-
id: {
|
|
56421
|
-
key: "id",
|
|
56422
|
-
type: PropertyType.Integer,
|
|
56423
|
-
isArray: false
|
|
56424
|
-
},
|
|
56425
55374
|
lastUpdate: {
|
|
56426
55375
|
key: "lastUpdate",
|
|
56427
55376
|
type: PropertyType.DateTime,
|
|
@@ -56541,11 +55490,6 @@ var AFCustomButton = class extends AFEntity {
|
|
|
56541
55490
|
}
|
|
56542
55491
|
static {
|
|
56543
55492
|
this.propAnnotations = {
|
|
56544
|
-
id: {
|
|
56545
|
-
key: "id",
|
|
56546
|
-
type: PropertyType.Integer,
|
|
56547
|
-
isArray: false
|
|
56548
|
-
},
|
|
56549
55493
|
kod: {
|
|
56550
55494
|
key: "kod",
|
|
56551
55495
|
type: PropertyType.String,
|
|
@@ -56606,11 +55550,6 @@ var AFSettingStore = class extends AFEntity {
|
|
|
56606
55550
|
}
|
|
56607
55551
|
static {
|
|
56608
55552
|
this.propAnnotations = {
|
|
56609
|
-
id: {
|
|
56610
|
-
key: "id",
|
|
56611
|
-
type: PropertyType.Integer,
|
|
56612
|
-
isArray: false
|
|
56613
|
-
},
|
|
56614
55553
|
klic: {
|
|
56615
55554
|
key: "klic",
|
|
56616
55555
|
type: PropertyType.String,
|
|
@@ -56645,11 +55584,6 @@ var AFGlobalStore = class extends AFEntity {
|
|
|
56645
55584
|
}
|
|
56646
55585
|
static {
|
|
56647
55586
|
this.propAnnotations = {
|
|
56648
|
-
id: {
|
|
56649
|
-
key: "id",
|
|
56650
|
-
type: PropertyType.Integer,
|
|
56651
|
-
isArray: false
|
|
56652
|
-
},
|
|
56653
55587
|
klic: {
|
|
56654
55588
|
key: "klic",
|
|
56655
55589
|
type: PropertyType.String,
|
|
@@ -56682,11 +55616,6 @@ var AFDashboardPanel = class extends AFEntity {
|
|
|
56682
55616
|
}
|
|
56683
55617
|
static {
|
|
56684
55618
|
this.propAnnotations = {
|
|
56685
|
-
id: {
|
|
56686
|
-
key: "id",
|
|
56687
|
-
type: PropertyType.Integer,
|
|
56688
|
-
isArray: false
|
|
56689
|
-
},
|
|
56690
55619
|
lastUpdate: {
|
|
56691
55620
|
key: "lastUpdate",
|
|
56692
55621
|
type: PropertyType.DateTime,
|
|
@@ -56799,11 +55728,6 @@ var AFDashboardSharing = class extends AFEntity {
|
|
|
56799
55728
|
}
|
|
56800
55729
|
static {
|
|
56801
55730
|
this.propAnnotations = {
|
|
56802
|
-
id: {
|
|
56803
|
-
key: "id",
|
|
56804
|
-
type: PropertyType.Integer,
|
|
56805
|
-
isArray: false
|
|
56806
|
-
},
|
|
56807
55731
|
hidden: {
|
|
56808
55732
|
key: "hidden",
|
|
56809
55733
|
type: PropertyType.Logic,
|
|
@@ -56854,11 +55778,6 @@ var AFInsight = class extends AFEntity {
|
|
|
56854
55778
|
}
|
|
56855
55779
|
static {
|
|
56856
55780
|
this.propAnnotations = {
|
|
56857
|
-
id: {
|
|
56858
|
-
key: "id",
|
|
56859
|
-
type: PropertyType.Integer,
|
|
56860
|
-
isArray: false
|
|
56861
|
-
},
|
|
56862
55781
|
lastUpdate: {
|
|
56863
55782
|
key: "lastUpdate",
|
|
56864
55783
|
type: PropertyType.DateTime,
|
|
@@ -56953,11 +55872,6 @@ var AFAutotisk = class extends AFEntity {
|
|
|
56953
55872
|
}
|
|
56954
55873
|
static {
|
|
56955
55874
|
this.propAnnotations = {
|
|
56956
|
-
id: {
|
|
56957
|
-
key: "id",
|
|
56958
|
-
type: PropertyType.Integer,
|
|
56959
|
-
isArray: false
|
|
56960
|
-
},
|
|
56961
55875
|
lastUpdate: {
|
|
56962
55876
|
key: "lastUpdate",
|
|
56963
55877
|
type: PropertyType.DateTime,
|
|
@@ -57022,11 +55936,6 @@ var AFXslt = class extends AFEntity {
|
|
|
57022
55936
|
}
|
|
57023
55937
|
static {
|
|
57024
55938
|
this.propAnnotations = {
|
|
57025
|
-
id: {
|
|
57026
|
-
key: "id",
|
|
57027
|
-
type: PropertyType.Integer,
|
|
57028
|
-
isArray: false
|
|
57029
|
-
},
|
|
57030
55939
|
lastUpdate: {
|
|
57031
55940
|
key: "lastUpdate",
|
|
57032
55941
|
type: PropertyType.DateTime,
|
|
@@ -57104,11 +56013,6 @@ var AFSablonaMail = class extends AFEntity {
|
|
|
57104
56013
|
}
|
|
57105
56014
|
static {
|
|
57106
56015
|
this.propAnnotations = {
|
|
57107
|
-
id: {
|
|
57108
|
-
key: "id",
|
|
57109
|
-
type: PropertyType.Integer,
|
|
57110
|
-
isArray: false
|
|
57111
|
-
},
|
|
57112
56016
|
lastUpdate: {
|
|
57113
56017
|
key: "lastUpdate",
|
|
57114
56018
|
type: PropertyType.DateTime,
|
|
@@ -57200,11 +56104,6 @@ var AFObrat = class extends AFEntity {
|
|
|
57200
56104
|
}
|
|
57201
56105
|
static {
|
|
57202
56106
|
this.propAnnotations = {
|
|
57203
|
-
id: {
|
|
57204
|
-
key: "id",
|
|
57205
|
-
type: PropertyType.Integer,
|
|
57206
|
-
isArray: false
|
|
57207
|
-
},
|
|
57208
56107
|
lastUpdate: {
|
|
57209
56108
|
key: "lastUpdate",
|
|
57210
56109
|
type: PropertyType.DateTime,
|
|
@@ -64425,11 +63324,6 @@ var AFSestava = class extends AFEntity {
|
|
|
64425
63324
|
}
|
|
64426
63325
|
static {
|
|
64427
63326
|
this.propAnnotations = {
|
|
64428
|
-
id: {
|
|
64429
|
-
key: "id",
|
|
64430
|
-
type: PropertyType.Integer,
|
|
64431
|
-
isArray: false
|
|
64432
|
-
},
|
|
64433
63327
|
lastUpdate: {
|
|
64434
63328
|
key: "lastUpdate",
|
|
64435
63329
|
type: PropertyType.DateTime,
|
|
@@ -64839,11 +63733,6 @@ var AFRadekSestavy = class extends AFEntity {
|
|
|
64839
63733
|
}
|
|
64840
63734
|
static {
|
|
64841
63735
|
this.propAnnotations = {
|
|
64842
|
-
id: {
|
|
64843
|
-
key: "id",
|
|
64844
|
-
type: PropertyType.Integer,
|
|
64845
|
-
isArray: false
|
|
64846
|
-
},
|
|
64847
63736
|
lastUpdate: {
|
|
64848
63737
|
key: "lastUpdate",
|
|
64849
63738
|
type: PropertyType.DateTime,
|
|
@@ -64989,11 +63878,6 @@ var AFSumaceSestavy = class extends AFEntity {
|
|
|
64989
63878
|
}
|
|
64990
63879
|
static {
|
|
64991
63880
|
this.propAnnotations = {
|
|
64992
|
-
id: {
|
|
64993
|
-
key: "id",
|
|
64994
|
-
type: PropertyType.Integer,
|
|
64995
|
-
isArray: false
|
|
64996
|
-
},
|
|
64997
63881
|
lastUpdate: {
|
|
64998
63882
|
key: "lastUpdate",
|
|
64999
63883
|
type: PropertyType.DateTime,
|
|
@@ -65045,11 +63929,6 @@ var AFStandardniPredpis = class extends AFEntity {
|
|
|
65045
63929
|
}
|
|
65046
63930
|
static {
|
|
65047
63931
|
this.propAnnotations = {
|
|
65048
|
-
id: {
|
|
65049
|
-
key: "id",
|
|
65050
|
-
type: PropertyType.Integer,
|
|
65051
|
-
isArray: false
|
|
65052
|
-
},
|
|
65053
63932
|
lastUpdate: {
|
|
65054
63933
|
key: "lastUpdate",
|
|
65055
63934
|
type: PropertyType.DateTime,
|
|
@@ -65807,11 +64686,6 @@ var AFSubjekt = class extends AFEntity {
|
|
|
65807
64686
|
}
|
|
65808
64687
|
static {
|
|
65809
64688
|
this.propAnnotations = {
|
|
65810
|
-
id: {
|
|
65811
|
-
key: "id",
|
|
65812
|
-
type: PropertyType.Integer,
|
|
65813
|
-
isArray: false
|
|
65814
|
-
},
|
|
65815
64689
|
platiOd: {
|
|
65816
64690
|
key: "platiOd",
|
|
65817
64691
|
type: PropertyType.Date,
|
|
@@ -65878,11 +64752,6 @@ var AFRadekPriznaniDph = class extends AFEntity {
|
|
|
65878
64752
|
}
|
|
65879
64753
|
static {
|
|
65880
64754
|
this.propAnnotations = {
|
|
65881
|
-
id: {
|
|
65882
|
-
key: "id",
|
|
65883
|
-
type: PropertyType.Integer,
|
|
65884
|
-
isArray: false
|
|
65885
|
-
},
|
|
65886
64755
|
lastUpdate: {
|
|
65887
64756
|
key: "lastUpdate",
|
|
65888
64757
|
type: PropertyType.DateTime,
|
|
@@ -65983,11 +64852,6 @@ var AFUlozenePriznaniDph = class extends AFEntity {
|
|
|
65983
64852
|
}
|
|
65984
64853
|
static {
|
|
65985
64854
|
this.propAnnotations = {
|
|
65986
|
-
id: {
|
|
65987
|
-
key: "id",
|
|
65988
|
-
type: PropertyType.Integer,
|
|
65989
|
-
isArray: false
|
|
65990
|
-
},
|
|
65991
64855
|
lastUpdate: {
|
|
65992
64856
|
key: "lastUpdate",
|
|
65993
64857
|
type: PropertyType.DateTime,
|
|
@@ -66062,11 +64926,6 @@ var AFUlozenePriznaniKonVykDph = class extends AFEntity {
|
|
|
66062
64926
|
}
|
|
66063
64927
|
static {
|
|
66064
64928
|
this.propAnnotations = {
|
|
66065
|
-
id: {
|
|
66066
|
-
key: "id",
|
|
66067
|
-
type: PropertyType.Integer,
|
|
66068
|
-
isArray: false
|
|
66069
|
-
},
|
|
66070
64929
|
lastUpdate: {
|
|
66071
64930
|
key: "lastUpdate",
|
|
66072
64931
|
type: PropertyType.DateTime,
|
|
@@ -66143,11 +65002,6 @@ var AFZurnal = class extends AFEntity {
|
|
|
66143
65002
|
}
|
|
66144
65003
|
static {
|
|
66145
65004
|
this.propAnnotations = {
|
|
66146
|
-
id: {
|
|
66147
|
-
key: "id",
|
|
66148
|
-
type: PropertyType.Integer,
|
|
66149
|
-
isArray: false
|
|
66150
|
-
},
|
|
66151
65005
|
tabulka: {
|
|
66152
65006
|
key: "tabulka",
|
|
66153
65007
|
type: PropertyType.String,
|
|
@@ -66765,7 +65619,12 @@ var AFApiClient = class {
|
|
|
66765
65619
|
const details = this._extractAbraErrors(json);
|
|
66766
65620
|
throw new AFError(AFErrorCode.ABRA_FLEXI_ERROR, `${raw$1.status} ${raw$1.statusText}${details ? ` — ${details}` : ""}`);
|
|
66767
65621
|
}
|
|
66768
|
-
|
|
65622
|
+
let entityObj = json?.winstrom?.[entityPath];
|
|
65623
|
+
if (options.addRowCount && Array.isArray(entityObj)) {
|
|
65624
|
+
const rc = json?.winstrom?.["@rowCount"];
|
|
65625
|
+
if (rc !== void 0) entityObj.__rowCount = rc;
|
|
65626
|
+
}
|
|
65627
|
+
return entityObj;
|
|
66769
65628
|
} catch (e) {
|
|
66770
65629
|
if (!(e instanceof AFError)) {
|
|
66771
65630
|
this._logger.error(e);
|
|
@@ -66811,6 +65670,7 @@ var AFApiClient = class {
|
|
|
66811
65670
|
try {
|
|
66812
65671
|
const rawData = await res;
|
|
66813
65672
|
const data = this._decodeEntityObj(entity, rawData);
|
|
65673
|
+
if (options.addRowCount && rawData?.__rowCount !== void 0) data.totalCount = parseInt(rawData.__rowCount, 10);
|
|
66814
65674
|
if (!options.noUpdateStitkyCache) await this._stitkyCache.fetchTick();
|
|
66815
65675
|
return data;
|
|
66816
65676
|
} catch (e) {
|
|
@@ -66912,7 +65772,7 @@ var AFApiClient = class {
|
|
|
66912
65772
|
if (!en) continue;
|
|
66913
65773
|
const oKeys = Object.keys(enQ);
|
|
66914
65774
|
for (const okey of oKeys) this._decodeProperty(en, okey, enQ);
|
|
66915
|
-
en.
|
|
65775
|
+
if (enQ.id) en._setId(Number(enQ.id));
|
|
66916
65776
|
}
|
|
66917
65777
|
if (!options.noUpdateStitkyCache) await this._stitkyCache.fetchTick();
|
|
66918
65778
|
} catch (e) {
|
|
@@ -66932,12 +65792,108 @@ var AFApiClient = class {
|
|
|
66932
65792
|
async create(entity) {
|
|
66933
65793
|
return new entity(this._stitkyCache);
|
|
66934
65794
|
}
|
|
65795
|
+
/**
|
|
65796
|
+
* Resolves the server-assigned id for an entity that may be in 'unknown' state.
|
|
65797
|
+
* Priority order: confirmed _id → _stub.id → _stub.kod / entity.kod → _stub.ext
|
|
65798
|
+
*
|
|
65799
|
+
* Returns the resolved id (number), or null if the entity was not found.
|
|
65800
|
+
* On a 404 response, the entity state is reset to 'new'.
|
|
65801
|
+
* @internal
|
|
65802
|
+
*/
|
|
65803
|
+
async _resolveId(entity) {
|
|
65804
|
+
if (entity.id !== void 0 && entity.id !== null) return entity.id;
|
|
65805
|
+
if (entity.isNew === true && !entity._stub && !entity.kod) return null;
|
|
65806
|
+
const entityPath = entity.constructor.EntityPath;
|
|
65807
|
+
const stub = entity._stub;
|
|
65808
|
+
let identifier;
|
|
65809
|
+
if (stub?.id !== void 0) identifier = stub.id;
|
|
65810
|
+
else if (stub?.kod) identifier = `code:${stub.kod}`;
|
|
65811
|
+
else if (entity.kod) identifier = `code:${entity.kod}`;
|
|
65812
|
+
else if (stub?.ext?.length) identifier = `ext:${stub.ext[0]}`;
|
|
65813
|
+
if (identifier === void 0) return null;
|
|
65814
|
+
const url = `${this._url}/c/${this._company}/${entityPath}/${identifier}.json?detail=id&no-ext-ids=true`;
|
|
65815
|
+
this._logger.debug(url);
|
|
65816
|
+
try {
|
|
65817
|
+
const raw$1 = await this._fetch(url);
|
|
65818
|
+
if (raw$1.status === 404) {
|
|
65819
|
+
entity._state = "new";
|
|
65820
|
+
entity._id = void 0;
|
|
65821
|
+
return null;
|
|
65822
|
+
}
|
|
65823
|
+
if (raw$1.status >= 400) {
|
|
65824
|
+
const json = await raw$1.json().catch(() => null);
|
|
65825
|
+
const details = this._extractAbraErrors(json);
|
|
65826
|
+
throw new AFError(AFErrorCode.ABRA_FLEXI_ERROR, `${raw$1.status}${details ? ` — ${details}` : ""}`);
|
|
65827
|
+
}
|
|
65828
|
+
const items = (await raw$1.json().catch(() => null))?.winstrom?.[entityPath];
|
|
65829
|
+
if (!Array.isArray(items) || !items.length) {
|
|
65830
|
+
entity._state = "new";
|
|
65831
|
+
entity._id = void 0;
|
|
65832
|
+
return null;
|
|
65833
|
+
}
|
|
65834
|
+
const resolvedId = Number(items[0].id);
|
|
65835
|
+
if (!Number.isFinite(resolvedId)) {
|
|
65836
|
+
entity._state = "new";
|
|
65837
|
+
return null;
|
|
65838
|
+
}
|
|
65839
|
+
entity._setId(resolvedId);
|
|
65840
|
+
return resolvedId;
|
|
65841
|
+
} catch (e) {
|
|
65842
|
+
if (!(e instanceof AFError)) {
|
|
65843
|
+
this._logger.error(e);
|
|
65844
|
+
e = new AFError(AFErrorCode.UNKNOWN, e.toString());
|
|
65845
|
+
}
|
|
65846
|
+
throw e;
|
|
65847
|
+
}
|
|
65848
|
+
}
|
|
65849
|
+
/**
|
|
65850
|
+
* Resolves an entity by a validated identifier string or numeric id.
|
|
65851
|
+
* Accepted identifier forms:
|
|
65852
|
+
* - number → looks up by internal id
|
|
65853
|
+
* - "code:X" → looks up by business code
|
|
65854
|
+
* - "ext:X" → looks up by external id
|
|
65855
|
+
* Throws INVALID_IDENTIFIER for any other string.
|
|
65856
|
+
* Throws OBJECT_NOT_FOUND if the server returns 404.
|
|
65857
|
+
*/
|
|
65858
|
+
async resolveStubId(entity, identifier) {
|
|
65859
|
+
if (typeof identifier === "string") {
|
|
65860
|
+
if (!identifier.length) throw new AFError(AFErrorCode.INVALID_IDENTIFIER, `Identifier must not be empty.`);
|
|
65861
|
+
if (!identifier.startsWith("code:") && !identifier.startsWith("ext:")) throw new AFError(AFErrorCode.INVALID_IDENTIFIER, `Identifier "${identifier}" is not a valid Flexi identifier. Use a number, "code:<value>", or "ext:<value>".`);
|
|
65862
|
+
}
|
|
65863
|
+
const ent = new entity(this._stitkyCache);
|
|
65864
|
+
if (typeof identifier === "number") ent._stub = { id: identifier };
|
|
65865
|
+
else if (identifier.startsWith("code:")) ent._stub = { kod: identifier.slice(5) };
|
|
65866
|
+
else ent._stub = { ext: [identifier.slice(4)] };
|
|
65867
|
+
ent._state = "unknown";
|
|
65868
|
+
if (await this._resolveId(ent) === null) throw new AFError(AFErrorCode.OBJECT_NOT_FOUND, `${entity.EntityName} not found for identifier "${identifier}".`);
|
|
65869
|
+
return ent;
|
|
65870
|
+
}
|
|
65871
|
+
/**
|
|
65872
|
+
* Resolves an entity in-place — determines and sets its server id.
|
|
65873
|
+
* Fast-path: if the entity already has a confirmed id, returns immediately.
|
|
65874
|
+
* For 'unknown' state: calls _resolveId; if not found and throwIfNotFound is
|
|
65875
|
+
* true, throws OBJECT_NOT_FOUND.
|
|
65876
|
+
* Always returns the same entity instance.
|
|
65877
|
+
*/
|
|
65878
|
+
async resolve(entity, throwIfNotFound) {
|
|
65879
|
+
if (entity.id !== void 0 && entity.id !== null) return entity;
|
|
65880
|
+
if (entity.isNew === true && !entity._stub && !entity.kod) return entity;
|
|
65881
|
+
if (await this._resolveId(entity) === null && throwIfNotFound) throw new AFError(AFErrorCode.OBJECT_NOT_FOUND, `${entity.constructor.EntityName} not found.`);
|
|
65882
|
+
return entity;
|
|
65883
|
+
}
|
|
65884
|
+
/**
|
|
65885
|
+
* @deprecated Use resolveStubId() or resolve() instead.
|
|
65886
|
+
* Creates an entity instance in 'unknown' state with unverified identifiers.
|
|
65887
|
+
*/
|
|
66935
65888
|
async createIdStub(entity, id) {
|
|
66936
|
-
if (typeof id.id !== "number" && (!id.kod || !id.kod.length) && (!id.ext || !id.ext.length)) throw new AFError(AFErrorCode.MISSING_ID, `Requesting id stub for ${entity.EntityName} but no id is
|
|
65889
|
+
if (typeof id.id !== "number" && (!id.kod || !id.kod.length) && (!id.ext || !id.ext.length)) throw new AFError(AFErrorCode.MISSING_ID, `Requesting id stub for ${entity.EntityName} but no id is provided.`);
|
|
66937
65890
|
const ent = new entity(this._stitkyCache);
|
|
66938
|
-
|
|
66939
|
-
|
|
66940
|
-
|
|
65891
|
+
ent._stub = {
|
|
65892
|
+
...typeof id.id === "number" ? { id: id.id } : {},
|
|
65893
|
+
...id.kod ? { kod: id.kod } : {},
|
|
65894
|
+
...id.ext?.length ? { ext: id.ext } : {}
|
|
65895
|
+
};
|
|
65896
|
+
ent._state = "unknown";
|
|
66941
65897
|
return ent;
|
|
66942
65898
|
}
|
|
66943
65899
|
async saveRaw(entityPath, data, options) {
|
|
@@ -66975,16 +65931,20 @@ var AFApiClient = class {
|
|
|
66975
65931
|
}
|
|
66976
65932
|
}
|
|
66977
65933
|
async save(entity, options) {
|
|
66978
|
-
if (entity.isNew) {
|
|
65934
|
+
if (entity.isNew === true) {
|
|
66979
65935
|
const uvs = entity["uzivatelske-vazby"];
|
|
66980
65936
|
if (Array.isArray(uvs) && uvs.length > 0) throw new AFError(AFErrorCode.FORBIDDEN_OPERATION, `Creating ${entity.constructor.EntityName} with 'uzivatelske-vazby' is not supported by the API. Workaround: save the entity first without user relations, then add them in a second update (save) request.`);
|
|
66981
65937
|
}
|
|
66982
|
-
|
|
66983
|
-
const
|
|
65938
|
+
if (entity.isNew === void 0) await this._resolveId(entity);
|
|
65939
|
+
const isCreate = entity.isNew === true;
|
|
66984
65940
|
try {
|
|
66985
|
-
const
|
|
65941
|
+
const obj = await this._encodeEntity(entity, options);
|
|
65942
|
+
if (!isCreate && entity.id !== void 0 && entity.id !== null) obj.id = entity.id;
|
|
65943
|
+
obj["@create"] = isCreate ? "ok" : "fail";
|
|
65944
|
+
obj["@update"] = isCreate ? "fail" : "ok";
|
|
65945
|
+
const entityPath = entity.constructor.EntityPath;
|
|
65946
|
+
const results = await this.saveRaw(entityPath, obj, options);
|
|
66986
65947
|
this._applySaveResultToEntity(entity, results);
|
|
66987
|
-
entity._isNew = false;
|
|
66988
65948
|
return entity;
|
|
66989
65949
|
} catch (e) {
|
|
66990
65950
|
if (!(e instanceof AFError)) {
|
|
@@ -67039,7 +65999,11 @@ var AFApiClient = class {
|
|
|
67039
65999
|
}
|
|
67040
66000
|
}
|
|
67041
66001
|
async delete(entity, options = {}) {
|
|
67042
|
-
if (entity.isNew) return true;
|
|
66002
|
+
if (entity.isNew === true) return true;
|
|
66003
|
+
if (entity.isNew === void 0) {
|
|
66004
|
+
if (await this._resolveId(entity) === null) return true;
|
|
66005
|
+
}
|
|
66006
|
+
if (entity.id === void 0 || entity.id === null) return true;
|
|
67043
66007
|
const entityPath = entity.constructor.EntityPath;
|
|
67044
66008
|
const res = this.deleteRaw(entityPath, entity.id, {
|
|
67045
66009
|
...options,
|
|
@@ -67093,7 +66057,10 @@ var AFApiClient = class {
|
|
|
67093
66057
|
}
|
|
67094
66058
|
}
|
|
67095
66059
|
async callEntityAction(entity, actionName, options = {}) {
|
|
67096
|
-
if (entity.isNew) throw new AFError(AFErrorCode.RELATED_INSTANCE_NOT_SAVED, `Can't call action '${actionName}' on an unsaved ${entity.constructor.EntityName}. Save it first.`);
|
|
66060
|
+
if (entity.isNew === true) throw new AFError(AFErrorCode.RELATED_INSTANCE_NOT_SAVED, `Can't call action '${actionName}' on an unsaved ${entity.constructor.EntityName}. Save it first.`);
|
|
66061
|
+
if (entity.isNew === void 0) {
|
|
66062
|
+
if (await this._resolveId(entity) === null) throw new AFError(AFErrorCode.OBJECT_NOT_FOUND, `Can't call action '${actionName}' on ${entity.constructor.EntityName}: entity not found on server.`);
|
|
66063
|
+
}
|
|
67097
66064
|
if (entity.id === void 0 || entity.id === null) throw new AFError(AFErrorCode.MISSING_ID, `Can't call action '${actionName}' on ${entity.constructor.EntityName} without id.`);
|
|
67098
66065
|
const entityPath = entity.constructor.EntityPath;
|
|
67099
66066
|
return this.callEntityActionRaw(entityPath, entity.id, actionName, options);
|
|
@@ -67108,10 +66075,7 @@ var AFApiClient = class {
|
|
|
67108
66075
|
}
|
|
67109
66076
|
if (!r || r.id === void 0 || r.id === null) return;
|
|
67110
66077
|
const newId = typeof r.id === "number" ? r.id : Number(r.id);
|
|
67111
|
-
if (Number.isFinite(newId))
|
|
67112
|
-
entity.id = newId;
|
|
67113
|
-
entity._orig.id = newId;
|
|
67114
|
-
}
|
|
66078
|
+
if (Number.isFinite(newId)) entity._setId(newId);
|
|
67115
66079
|
}
|
|
67116
66080
|
_extractAbraErrors(json) {
|
|
67117
66081
|
if (!json) return "";
|
|
@@ -67148,20 +66112,21 @@ var AFApiClient = class {
|
|
|
67148
66112
|
const ent = new entity(this._stitkyCache);
|
|
67149
66113
|
const oKeys = Object.keys(o);
|
|
67150
66114
|
for (const okey of oKeys) this._decodeProperty(ent, okey, o);
|
|
67151
|
-
ent.
|
|
66115
|
+
if (o.id) ent._setId(Number(o.id));
|
|
67152
66116
|
res.push(ent);
|
|
67153
66117
|
}
|
|
67154
66118
|
return res;
|
|
67155
66119
|
}
|
|
67156
|
-
_encodeEntity(entity) {
|
|
66120
|
+
async _encodeEntity(entity, options) {
|
|
67157
66121
|
const out = {};
|
|
67158
66122
|
const keys = entity.changedKeys();
|
|
67159
|
-
for (const key of keys) this._encodeProperty(entity, key, out);
|
|
66123
|
+
for (const key of keys) await this._encodeProperty(entity, key, out, options);
|
|
67160
66124
|
return out;
|
|
67161
66125
|
}
|
|
67162
66126
|
_decodeProperty(entity, key, obj) {
|
|
67163
66127
|
const annot = entity.getPropertyTypeAnnotation(key);
|
|
67164
66128
|
if (!annot) return;
|
|
66129
|
+
if (annot.key === "id") return;
|
|
67165
66130
|
const v = obj[key];
|
|
67166
66131
|
if (!v) return;
|
|
67167
66132
|
if (annot.type === PropertyType.Relation) {
|
|
@@ -67184,7 +66149,18 @@ var AFApiClient = class {
|
|
|
67184
66149
|
entity[annot.key] = parsePropertyValue(annot.type, annot, obj[annot.key]);
|
|
67185
66150
|
entity._orig[annot.key] = entity[annot.key];
|
|
67186
66151
|
}
|
|
67187
|
-
|
|
66152
|
+
/**
|
|
66153
|
+
* Returns the best available identifier string for an entity, or undefined.
|
|
66154
|
+
* Used for ByIdentifier and Resolve fallback strategies.
|
|
66155
|
+
* Priority: _stub.kod > entity.kod > _stub.ext
|
|
66156
|
+
*/
|
|
66157
|
+
_getEntityIdentifierString(entity) {
|
|
66158
|
+
const stub = entity._stub;
|
|
66159
|
+
if (stub?.kod) return `code:${stub.kod}`;
|
|
66160
|
+
if (entity.kod) return `code:${entity.kod}`;
|
|
66161
|
+
if (stub?.ext?.length) return `ext:${stub.ext[0]}`;
|
|
66162
|
+
}
|
|
66163
|
+
async _encodeProperty(entity, key, obj, options) {
|
|
67188
66164
|
const annot = entity.getPropertyTypeAnnotation(key);
|
|
67189
66165
|
if (!annot) return;
|
|
67190
66166
|
const val = entity[key];
|
|
@@ -67195,7 +66171,7 @@ var AFApiClient = class {
|
|
|
67195
66171
|
obj[key] = [];
|
|
67196
66172
|
if (val instanceof Array) for (const a of val) {
|
|
67197
66173
|
if (!(a instanceof AFEntity)) throw new AFError(AFErrorCode.UNKNOWN, `Collection '${key}' on ${entity.constructor.EntityName}(id: ${entity.id}) contain's non-AFEntity member ${a}`);
|
|
67198
|
-
obj[key].push(this._encodeEntity(a));
|
|
66174
|
+
obj[key].push(await this._encodeEntity(a, options));
|
|
67199
66175
|
}
|
|
67200
66176
|
return;
|
|
67201
66177
|
}
|
|
@@ -67205,9 +66181,32 @@ var AFApiClient = class {
|
|
|
67205
66181
|
return;
|
|
67206
66182
|
}
|
|
67207
66183
|
if (!(val instanceof AFEntity)) throw new AFError(AFErrorCode.UNKNOWN, `Key '${key}' on ${entity.constructor.EntityName}(id: ${entity.id}) referencing not AFEntity instance`);
|
|
67208
|
-
if (val.isNew
|
|
67209
|
-
|
|
67210
|
-
|
|
66184
|
+
if (val.isNew === true) {
|
|
66185
|
+
obj[key] = await this._encodeEntity(val, options);
|
|
66186
|
+
return;
|
|
66187
|
+
}
|
|
66188
|
+
if (val.isNew === false) {
|
|
66189
|
+
if (!val.hasChanged()) obj[key] = val.id;
|
|
66190
|
+
else {
|
|
66191
|
+
const nested = await this._encodeEntity(val, options);
|
|
66192
|
+
nested.id = val.id;
|
|
66193
|
+
obj[key] = nested;
|
|
66194
|
+
}
|
|
66195
|
+
return;
|
|
66196
|
+
}
|
|
66197
|
+
const strategy = options?.nestedUnknown ?? NestedUnknownStrategy.Resolve;
|
|
66198
|
+
if (strategy === NestedUnknownStrategy.Strict) throw new AFError(AFErrorCode.UNRESOLVED_ENTITY, `Key '${key}' on ${entity.constructor.EntityName} references an unresolved entity. Call resolve() first or change nestedUnknown strategy.`);
|
|
66199
|
+
if (strategy === NestedUnknownStrategy.ByIdentifier) {
|
|
66200
|
+
const ident = this._getEntityIdentifierString(val);
|
|
66201
|
+
if (!ident) throw new AFError(AFErrorCode.MISSING_IDENTIFIER, `Key '${key}' on ${entity.constructor.EntityName} has an unresolved entity with no identifier (no kod, no ext). Cannot encode with ByIdentifier strategy.`);
|
|
66202
|
+
obj[key] = ident;
|
|
66203
|
+
return;
|
|
66204
|
+
}
|
|
66205
|
+
const fallbackIdent = this._getEntityIdentifierString(val);
|
|
66206
|
+
const resolvedId = await this._resolveId(val);
|
|
66207
|
+
if (resolvedId !== null) obj[key] = resolvedId;
|
|
66208
|
+
else if (fallbackIdent) obj[key] = fallbackIdent;
|
|
66209
|
+
else throw new AFError(AFErrorCode.MISSING_IDENTIFIER, `Key '${key}' on ${entity.constructor.EntityName} has an unresolved entity with no identifier. Cannot encode.`);
|
|
67211
66210
|
return;
|
|
67212
66211
|
}
|
|
67213
66212
|
if (!obj) return;
|