@itwin/core-backend 5.1.0-dev.59 → 5.1.0-dev.60

This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
Files changed (37) hide show
  1. package/lib/cjs/IModelIncrementalSchemaLocater.d.ts +36 -0
  2. package/lib/cjs/IModelIncrementalSchemaLocater.d.ts.map +1 -0
  3. package/lib/cjs/IModelIncrementalSchemaLocater.js +69 -0
  4. package/lib/cjs/IModelIncrementalSchemaLocater.js.map +1 -0
  5. package/lib/esm/IModelIncrementalSchemaLocater.d.ts +36 -0
  6. package/lib/esm/IModelIncrementalSchemaLocater.d.ts.map +1 -0
  7. package/lib/esm/IModelIncrementalSchemaLocater.js +65 -0
  8. package/lib/esm/IModelIncrementalSchemaLocater.js.map +1 -0
  9. package/lib/esm/test/assets/IncrementalSchemaLocater/configs/old.config.d.ts +60 -0
  10. package/lib/esm/test/assets/IncrementalSchemaLocater/configs/old.config.d.ts.map +1 -0
  11. package/lib/esm/test/assets/IncrementalSchemaLocater/configs/old.config.js +69 -0
  12. package/lib/esm/test/assets/IncrementalSchemaLocater/configs/old.config.js.map +1 -0
  13. package/lib/esm/test/assets/IncrementalSchemaLocater/configs/simple.config.d.ts +1442 -0
  14. package/lib/esm/test/assets/IncrementalSchemaLocater/configs/simple.config.d.ts.map +1 -0
  15. package/lib/esm/test/assets/IncrementalSchemaLocater/configs/simple.config.js +817 -0
  16. package/lib/esm/test/assets/IncrementalSchemaLocater/configs/simple.config.js.map +1 -0
  17. package/lib/esm/test/incrementalSchemaLocater/ECSqlQueries.test.d.ts +2 -0
  18. package/lib/esm/test/incrementalSchemaLocater/ECSqlQueries.test.d.ts.map +1 -0
  19. package/lib/esm/test/incrementalSchemaLocater/ECSqlQueries.test.js +343 -0
  20. package/lib/esm/test/incrementalSchemaLocater/ECSqlQueries.test.js.map +1 -0
  21. package/lib/esm/test/incrementalSchemaLocater/IncrementalLoading.test.d.ts +2 -0
  22. package/lib/esm/test/incrementalSchemaLocater/IncrementalLoading.test.d.ts.map +1 -0
  23. package/lib/esm/test/incrementalSchemaLocater/IncrementalLoading.test.js +207 -0
  24. package/lib/esm/test/incrementalSchemaLocater/IncrementalLoading.test.js.map +1 -0
  25. package/lib/esm/test/incrementalSchemaLocater/utils/IModelSchemaLocater.d.ts +11 -0
  26. package/lib/esm/test/incrementalSchemaLocater/utils/IModelSchemaLocater.d.ts.map +1 -0
  27. package/lib/esm/test/incrementalSchemaLocater/utils/IModelSchemaLocater.js +36 -0
  28. package/lib/esm/test/incrementalSchemaLocater/utils/IModelSchemaLocater.js.map +1 -0
  29. package/lib/esm/test/incrementalSchemaLocater/utils/IncrementalTestHelper.d.ts +17 -0
  30. package/lib/esm/test/incrementalSchemaLocater/utils/IncrementalTestHelper.d.ts.map +1 -0
  31. package/lib/esm/test/incrementalSchemaLocater/utils/IncrementalTestHelper.js +116 -0
  32. package/lib/esm/test/incrementalSchemaLocater/utils/IncrementalTestHelper.js.map +1 -0
  33. package/lib/esm/test/incrementalSchemaLocater/utils/TestSqlSchemaLocater.d.ts +9 -0
  34. package/lib/esm/test/incrementalSchemaLocater/utils/TestSqlSchemaLocater.d.ts.map +1 -0
  35. package/lib/esm/test/incrementalSchemaLocater/utils/TestSqlSchemaLocater.js +20 -0
  36. package/lib/esm/test/incrementalSchemaLocater/utils/TestSqlSchemaLocater.js.map +1 -0
  37. package/package.json +16 -11
@@ -0,0 +1,1442 @@
1
+ declare const _default: {
2
+ label: string;
3
+ bimFile: string;
4
+ schemas: {
5
+ name: string;
6
+ references: string[];
7
+ itemCount: number;
8
+ checkStubs: ({
9
+ item: string;
10
+ properties: {
11
+ schemaItemType: string;
12
+ label: string;
13
+ description: string;
14
+ definition?: undefined;
15
+ priority?: undefined;
16
+ type?: undefined;
17
+ isStrict?: undefined;
18
+ enumerators?: undefined;
19
+ phenomenon?: undefined;
20
+ unitSystem?: undefined;
21
+ numerator?: undefined;
22
+ denominator?: undefined;
23
+ offset?: undefined;
24
+ invertsUnit?: undefined;
25
+ precision?: undefined;
26
+ formatTraits?: undefined;
27
+ thousandSeparator?: undefined;
28
+ decimalSeparator?: undefined;
29
+ stationSeparator?: undefined;
30
+ stationOffsetSize?: undefined;
31
+ minWidth?: undefined;
32
+ scientificType?: undefined;
33
+ showSignOption?: undefined;
34
+ roundFactor?: undefined;
35
+ uomSeparator?: undefined;
36
+ modifier?: undefined;
37
+ baseClass?: undefined;
38
+ appliesTo?: undefined;
39
+ mixins?: undefined;
40
+ strength?: undefined;
41
+ strengthDirection?: undefined;
42
+ };
43
+ } | {
44
+ item: string;
45
+ properties: {
46
+ schemaItemType: string;
47
+ label: string;
48
+ description: string;
49
+ definition: string;
50
+ priority?: undefined;
51
+ type?: undefined;
52
+ isStrict?: undefined;
53
+ enumerators?: undefined;
54
+ phenomenon?: undefined;
55
+ unitSystem?: undefined;
56
+ numerator?: undefined;
57
+ denominator?: undefined;
58
+ offset?: undefined;
59
+ invertsUnit?: undefined;
60
+ precision?: undefined;
61
+ formatTraits?: undefined;
62
+ thousandSeparator?: undefined;
63
+ decimalSeparator?: undefined;
64
+ stationSeparator?: undefined;
65
+ stationOffsetSize?: undefined;
66
+ minWidth?: undefined;
67
+ scientificType?: undefined;
68
+ showSignOption?: undefined;
69
+ roundFactor?: undefined;
70
+ uomSeparator?: undefined;
71
+ modifier?: undefined;
72
+ baseClass?: undefined;
73
+ appliesTo?: undefined;
74
+ mixins?: undefined;
75
+ strength?: undefined;
76
+ strengthDirection?: undefined;
77
+ };
78
+ } | {
79
+ item: string;
80
+ properties: {
81
+ schemaItemType: string;
82
+ label: string;
83
+ description: string;
84
+ priority: number;
85
+ definition?: undefined;
86
+ type?: undefined;
87
+ isStrict?: undefined;
88
+ enumerators?: undefined;
89
+ phenomenon?: undefined;
90
+ unitSystem?: undefined;
91
+ numerator?: undefined;
92
+ denominator?: undefined;
93
+ offset?: undefined;
94
+ invertsUnit?: undefined;
95
+ precision?: undefined;
96
+ formatTraits?: undefined;
97
+ thousandSeparator?: undefined;
98
+ decimalSeparator?: undefined;
99
+ stationSeparator?: undefined;
100
+ stationOffsetSize?: undefined;
101
+ minWidth?: undefined;
102
+ scientificType?: undefined;
103
+ showSignOption?: undefined;
104
+ roundFactor?: undefined;
105
+ uomSeparator?: undefined;
106
+ modifier?: undefined;
107
+ baseClass?: undefined;
108
+ appliesTo?: undefined;
109
+ mixins?: undefined;
110
+ strength?: undefined;
111
+ strengthDirection?: undefined;
112
+ };
113
+ } | {
114
+ item: string;
115
+ properties: {
116
+ schemaItemType: string;
117
+ label: string;
118
+ description: string;
119
+ type: string;
120
+ isStrict: boolean;
121
+ enumerators: {
122
+ name: string;
123
+ value: number;
124
+ label: string;
125
+ description: string;
126
+ }[];
127
+ definition?: undefined;
128
+ priority?: undefined;
129
+ phenomenon?: undefined;
130
+ unitSystem?: undefined;
131
+ numerator?: undefined;
132
+ denominator?: undefined;
133
+ offset?: undefined;
134
+ invertsUnit?: undefined;
135
+ precision?: undefined;
136
+ formatTraits?: undefined;
137
+ thousandSeparator?: undefined;
138
+ decimalSeparator?: undefined;
139
+ stationSeparator?: undefined;
140
+ stationOffsetSize?: undefined;
141
+ minWidth?: undefined;
142
+ scientificType?: undefined;
143
+ showSignOption?: undefined;
144
+ roundFactor?: undefined;
145
+ uomSeparator?: undefined;
146
+ modifier?: undefined;
147
+ baseClass?: undefined;
148
+ appliesTo?: undefined;
149
+ mixins?: undefined;
150
+ strength?: undefined;
151
+ strengthDirection?: undefined;
152
+ };
153
+ } | {
154
+ item: string;
155
+ properties: {
156
+ schemaItemType: string;
157
+ label: string;
158
+ description: string;
159
+ type: string;
160
+ isStrict: boolean;
161
+ enumerators: {
162
+ name: string;
163
+ value: string;
164
+ }[];
165
+ definition?: undefined;
166
+ priority?: undefined;
167
+ phenomenon?: undefined;
168
+ unitSystem?: undefined;
169
+ numerator?: undefined;
170
+ denominator?: undefined;
171
+ offset?: undefined;
172
+ invertsUnit?: undefined;
173
+ precision?: undefined;
174
+ formatTraits?: undefined;
175
+ thousandSeparator?: undefined;
176
+ decimalSeparator?: undefined;
177
+ stationSeparator?: undefined;
178
+ stationOffsetSize?: undefined;
179
+ minWidth?: undefined;
180
+ scientificType?: undefined;
181
+ showSignOption?: undefined;
182
+ roundFactor?: undefined;
183
+ uomSeparator?: undefined;
184
+ modifier?: undefined;
185
+ baseClass?: undefined;
186
+ appliesTo?: undefined;
187
+ mixins?: undefined;
188
+ strength?: undefined;
189
+ strengthDirection?: undefined;
190
+ };
191
+ } | {
192
+ item: string;
193
+ properties: {
194
+ schemaItemType: string;
195
+ label: string;
196
+ description: string;
197
+ phenomenon: string;
198
+ unitSystem: string;
199
+ definition: string;
200
+ numerator: number;
201
+ priority?: undefined;
202
+ type?: undefined;
203
+ isStrict?: undefined;
204
+ enumerators?: undefined;
205
+ denominator?: undefined;
206
+ offset?: undefined;
207
+ invertsUnit?: undefined;
208
+ precision?: undefined;
209
+ formatTraits?: undefined;
210
+ thousandSeparator?: undefined;
211
+ decimalSeparator?: undefined;
212
+ stationSeparator?: undefined;
213
+ stationOffsetSize?: undefined;
214
+ minWidth?: undefined;
215
+ scientificType?: undefined;
216
+ showSignOption?: undefined;
217
+ roundFactor?: undefined;
218
+ uomSeparator?: undefined;
219
+ modifier?: undefined;
220
+ baseClass?: undefined;
221
+ appliesTo?: undefined;
222
+ mixins?: undefined;
223
+ strength?: undefined;
224
+ strengthDirection?: undefined;
225
+ };
226
+ } | {
227
+ item: string;
228
+ properties: {
229
+ schemaItemType: string;
230
+ label: string;
231
+ description: string;
232
+ phenomenon: string;
233
+ unitSystem: string;
234
+ definition: string;
235
+ numerator: number;
236
+ denominator: number;
237
+ offset: number;
238
+ priority?: undefined;
239
+ type?: undefined;
240
+ isStrict?: undefined;
241
+ enumerators?: undefined;
242
+ invertsUnit?: undefined;
243
+ precision?: undefined;
244
+ formatTraits?: undefined;
245
+ thousandSeparator?: undefined;
246
+ decimalSeparator?: undefined;
247
+ stationSeparator?: undefined;
248
+ stationOffsetSize?: undefined;
249
+ minWidth?: undefined;
250
+ scientificType?: undefined;
251
+ showSignOption?: undefined;
252
+ roundFactor?: undefined;
253
+ uomSeparator?: undefined;
254
+ modifier?: undefined;
255
+ baseClass?: undefined;
256
+ appliesTo?: undefined;
257
+ mixins?: undefined;
258
+ strength?: undefined;
259
+ strengthDirection?: undefined;
260
+ };
261
+ } | {
262
+ item: string;
263
+ properties: {
264
+ schemaItemType: string;
265
+ label: string;
266
+ description: string;
267
+ invertsUnit: string;
268
+ unitSystem: string;
269
+ definition?: undefined;
270
+ priority?: undefined;
271
+ type?: undefined;
272
+ isStrict?: undefined;
273
+ enumerators?: undefined;
274
+ phenomenon?: undefined;
275
+ numerator?: undefined;
276
+ denominator?: undefined;
277
+ offset?: undefined;
278
+ precision?: undefined;
279
+ formatTraits?: undefined;
280
+ thousandSeparator?: undefined;
281
+ decimalSeparator?: undefined;
282
+ stationSeparator?: undefined;
283
+ stationOffsetSize?: undefined;
284
+ minWidth?: undefined;
285
+ scientificType?: undefined;
286
+ showSignOption?: undefined;
287
+ roundFactor?: undefined;
288
+ uomSeparator?: undefined;
289
+ modifier?: undefined;
290
+ baseClass?: undefined;
291
+ appliesTo?: undefined;
292
+ mixins?: undefined;
293
+ strength?: undefined;
294
+ strengthDirection?: undefined;
295
+ };
296
+ } | {
297
+ item: string;
298
+ properties: {
299
+ schemaItemType: string;
300
+ label: string;
301
+ description: string;
302
+ phenomenon: string;
303
+ definition: string;
304
+ numerator: number;
305
+ priority?: undefined;
306
+ type?: undefined;
307
+ isStrict?: undefined;
308
+ enumerators?: undefined;
309
+ unitSystem?: undefined;
310
+ denominator?: undefined;
311
+ offset?: undefined;
312
+ invertsUnit?: undefined;
313
+ precision?: undefined;
314
+ formatTraits?: undefined;
315
+ thousandSeparator?: undefined;
316
+ decimalSeparator?: undefined;
317
+ stationSeparator?: undefined;
318
+ stationOffsetSize?: undefined;
319
+ minWidth?: undefined;
320
+ scientificType?: undefined;
321
+ showSignOption?: undefined;
322
+ roundFactor?: undefined;
323
+ uomSeparator?: undefined;
324
+ modifier?: undefined;
325
+ baseClass?: undefined;
326
+ appliesTo?: undefined;
327
+ mixins?: undefined;
328
+ strength?: undefined;
329
+ strengthDirection?: undefined;
330
+ };
331
+ } | {
332
+ item: string;
333
+ properties: {
334
+ schemaItemType: string;
335
+ label: string;
336
+ description: string;
337
+ phenomenon: string;
338
+ definition: string;
339
+ numerator: number;
340
+ denominator: number;
341
+ priority?: undefined;
342
+ type?: undefined;
343
+ isStrict?: undefined;
344
+ enumerators?: undefined;
345
+ unitSystem?: undefined;
346
+ offset?: undefined;
347
+ invertsUnit?: undefined;
348
+ precision?: undefined;
349
+ formatTraits?: undefined;
350
+ thousandSeparator?: undefined;
351
+ decimalSeparator?: undefined;
352
+ stationSeparator?: undefined;
353
+ stationOffsetSize?: undefined;
354
+ minWidth?: undefined;
355
+ scientificType?: undefined;
356
+ showSignOption?: undefined;
357
+ roundFactor?: undefined;
358
+ uomSeparator?: undefined;
359
+ modifier?: undefined;
360
+ baseClass?: undefined;
361
+ appliesTo?: undefined;
362
+ mixins?: undefined;
363
+ strength?: undefined;
364
+ strengthDirection?: undefined;
365
+ };
366
+ } | {
367
+ item: string;
368
+ properties: {
369
+ schemaItemType: string;
370
+ label: string;
371
+ description: string;
372
+ type: string;
373
+ precision: number;
374
+ formatTraits: string[];
375
+ thousandSeparator: string;
376
+ decimalSeparator: string;
377
+ stationSeparator: string;
378
+ stationOffsetSize: number;
379
+ minWidth: number;
380
+ definition?: undefined;
381
+ priority?: undefined;
382
+ isStrict?: undefined;
383
+ enumerators?: undefined;
384
+ phenomenon?: undefined;
385
+ unitSystem?: undefined;
386
+ numerator?: undefined;
387
+ denominator?: undefined;
388
+ offset?: undefined;
389
+ invertsUnit?: undefined;
390
+ scientificType?: undefined;
391
+ showSignOption?: undefined;
392
+ roundFactor?: undefined;
393
+ uomSeparator?: undefined;
394
+ modifier?: undefined;
395
+ baseClass?: undefined;
396
+ appliesTo?: undefined;
397
+ mixins?: undefined;
398
+ strength?: undefined;
399
+ strengthDirection?: undefined;
400
+ };
401
+ } | {
402
+ item: string;
403
+ properties: {
404
+ schemaItemType: string;
405
+ label: string;
406
+ description: string;
407
+ type: string;
408
+ scientificType: string;
409
+ precision: number;
410
+ formatTraits: string[];
411
+ decimalSeparator: string;
412
+ thousandSeparator: string;
413
+ definition?: undefined;
414
+ priority?: undefined;
415
+ isStrict?: undefined;
416
+ enumerators?: undefined;
417
+ phenomenon?: undefined;
418
+ unitSystem?: undefined;
419
+ numerator?: undefined;
420
+ denominator?: undefined;
421
+ offset?: undefined;
422
+ invertsUnit?: undefined;
423
+ stationSeparator?: undefined;
424
+ stationOffsetSize?: undefined;
425
+ minWidth?: undefined;
426
+ showSignOption?: undefined;
427
+ roundFactor?: undefined;
428
+ uomSeparator?: undefined;
429
+ modifier?: undefined;
430
+ baseClass?: undefined;
431
+ appliesTo?: undefined;
432
+ mixins?: undefined;
433
+ strength?: undefined;
434
+ strengthDirection?: undefined;
435
+ };
436
+ } | {
437
+ item: string;
438
+ properties: {
439
+ schemaItemType: string;
440
+ label: string;
441
+ description: string;
442
+ type: string;
443
+ precision: number;
444
+ showSignOption: string;
445
+ formatTraits: string[];
446
+ thousandSeparator: string;
447
+ decimalSeparator: string;
448
+ minWidth: number;
449
+ roundFactor: number;
450
+ definition?: undefined;
451
+ priority?: undefined;
452
+ isStrict?: undefined;
453
+ enumerators?: undefined;
454
+ phenomenon?: undefined;
455
+ unitSystem?: undefined;
456
+ numerator?: undefined;
457
+ denominator?: undefined;
458
+ offset?: undefined;
459
+ invertsUnit?: undefined;
460
+ stationSeparator?: undefined;
461
+ stationOffsetSize?: undefined;
462
+ scientificType?: undefined;
463
+ uomSeparator?: undefined;
464
+ modifier?: undefined;
465
+ baseClass?: undefined;
466
+ appliesTo?: undefined;
467
+ mixins?: undefined;
468
+ strength?: undefined;
469
+ strengthDirection?: undefined;
470
+ };
471
+ } | {
472
+ item: string;
473
+ properties: {
474
+ schemaItemType: string;
475
+ label: string;
476
+ description: string;
477
+ type: string;
478
+ precision: number;
479
+ formatTraits: string[];
480
+ uomSeparator: string;
481
+ definition?: undefined;
482
+ priority?: undefined;
483
+ isStrict?: undefined;
484
+ enumerators?: undefined;
485
+ phenomenon?: undefined;
486
+ unitSystem?: undefined;
487
+ numerator?: undefined;
488
+ denominator?: undefined;
489
+ offset?: undefined;
490
+ invertsUnit?: undefined;
491
+ thousandSeparator?: undefined;
492
+ decimalSeparator?: undefined;
493
+ stationSeparator?: undefined;
494
+ stationOffsetSize?: undefined;
495
+ minWidth?: undefined;
496
+ scientificType?: undefined;
497
+ showSignOption?: undefined;
498
+ roundFactor?: undefined;
499
+ modifier?: undefined;
500
+ baseClass?: undefined;
501
+ appliesTo?: undefined;
502
+ mixins?: undefined;
503
+ strength?: undefined;
504
+ strengthDirection?: undefined;
505
+ };
506
+ } | {
507
+ item: string;
508
+ properties: {
509
+ schemaItemType: string;
510
+ modifier: string;
511
+ label: string;
512
+ description: string;
513
+ definition?: undefined;
514
+ priority?: undefined;
515
+ type?: undefined;
516
+ isStrict?: undefined;
517
+ enumerators?: undefined;
518
+ phenomenon?: undefined;
519
+ unitSystem?: undefined;
520
+ numerator?: undefined;
521
+ denominator?: undefined;
522
+ offset?: undefined;
523
+ invertsUnit?: undefined;
524
+ precision?: undefined;
525
+ formatTraits?: undefined;
526
+ thousandSeparator?: undefined;
527
+ decimalSeparator?: undefined;
528
+ stationSeparator?: undefined;
529
+ stationOffsetSize?: undefined;
530
+ minWidth?: undefined;
531
+ scientificType?: undefined;
532
+ showSignOption?: undefined;
533
+ roundFactor?: undefined;
534
+ uomSeparator?: undefined;
535
+ baseClass?: undefined;
536
+ appliesTo?: undefined;
537
+ mixins?: undefined;
538
+ strength?: undefined;
539
+ strengthDirection?: undefined;
540
+ };
541
+ } | {
542
+ item: string;
543
+ properties: {
544
+ schemaItemType: string;
545
+ modifier: string;
546
+ baseClass: string;
547
+ label: string;
548
+ description: string;
549
+ definition?: undefined;
550
+ priority?: undefined;
551
+ type?: undefined;
552
+ isStrict?: undefined;
553
+ enumerators?: undefined;
554
+ phenomenon?: undefined;
555
+ unitSystem?: undefined;
556
+ numerator?: undefined;
557
+ denominator?: undefined;
558
+ offset?: undefined;
559
+ invertsUnit?: undefined;
560
+ precision?: undefined;
561
+ formatTraits?: undefined;
562
+ thousandSeparator?: undefined;
563
+ decimalSeparator?: undefined;
564
+ stationSeparator?: undefined;
565
+ stationOffsetSize?: undefined;
566
+ minWidth?: undefined;
567
+ scientificType?: undefined;
568
+ showSignOption?: undefined;
569
+ roundFactor?: undefined;
570
+ uomSeparator?: undefined;
571
+ appliesTo?: undefined;
572
+ mixins?: undefined;
573
+ strength?: undefined;
574
+ strengthDirection?: undefined;
575
+ };
576
+ } | {
577
+ item: string;
578
+ properties: {
579
+ schemaItemType: string;
580
+ appliesTo: string;
581
+ modifier: string;
582
+ label: string;
583
+ description: string;
584
+ definition?: undefined;
585
+ priority?: undefined;
586
+ type?: undefined;
587
+ isStrict?: undefined;
588
+ enumerators?: undefined;
589
+ phenomenon?: undefined;
590
+ unitSystem?: undefined;
591
+ numerator?: undefined;
592
+ denominator?: undefined;
593
+ offset?: undefined;
594
+ invertsUnit?: undefined;
595
+ precision?: undefined;
596
+ formatTraits?: undefined;
597
+ thousandSeparator?: undefined;
598
+ decimalSeparator?: undefined;
599
+ stationSeparator?: undefined;
600
+ stationOffsetSize?: undefined;
601
+ minWidth?: undefined;
602
+ scientificType?: undefined;
603
+ showSignOption?: undefined;
604
+ roundFactor?: undefined;
605
+ uomSeparator?: undefined;
606
+ baseClass?: undefined;
607
+ mixins?: undefined;
608
+ strength?: undefined;
609
+ strengthDirection?: undefined;
610
+ };
611
+ } | {
612
+ item: string;
613
+ properties: {
614
+ schemaItemType: string;
615
+ appliesTo: string;
616
+ baseClass: string;
617
+ label: string;
618
+ description: string;
619
+ definition?: undefined;
620
+ priority?: undefined;
621
+ type?: undefined;
622
+ isStrict?: undefined;
623
+ enumerators?: undefined;
624
+ phenomenon?: undefined;
625
+ unitSystem?: undefined;
626
+ numerator?: undefined;
627
+ denominator?: undefined;
628
+ offset?: undefined;
629
+ invertsUnit?: undefined;
630
+ precision?: undefined;
631
+ formatTraits?: undefined;
632
+ thousandSeparator?: undefined;
633
+ decimalSeparator?: undefined;
634
+ stationSeparator?: undefined;
635
+ stationOffsetSize?: undefined;
636
+ minWidth?: undefined;
637
+ scientificType?: undefined;
638
+ showSignOption?: undefined;
639
+ roundFactor?: undefined;
640
+ uomSeparator?: undefined;
641
+ modifier?: undefined;
642
+ mixins?: undefined;
643
+ strength?: undefined;
644
+ strengthDirection?: undefined;
645
+ };
646
+ } | {
647
+ item: string;
648
+ properties: {
649
+ schemaItemType: string;
650
+ modifier: string;
651
+ appliesTo: string;
652
+ baseClass: string;
653
+ label: string;
654
+ description: string;
655
+ definition?: undefined;
656
+ priority?: undefined;
657
+ type?: undefined;
658
+ isStrict?: undefined;
659
+ enumerators?: undefined;
660
+ phenomenon?: undefined;
661
+ unitSystem?: undefined;
662
+ numerator?: undefined;
663
+ denominator?: undefined;
664
+ offset?: undefined;
665
+ invertsUnit?: undefined;
666
+ precision?: undefined;
667
+ formatTraits?: undefined;
668
+ thousandSeparator?: undefined;
669
+ decimalSeparator?: undefined;
670
+ stationSeparator?: undefined;
671
+ stationOffsetSize?: undefined;
672
+ minWidth?: undefined;
673
+ scientificType?: undefined;
674
+ showSignOption?: undefined;
675
+ roundFactor?: undefined;
676
+ uomSeparator?: undefined;
677
+ mixins?: undefined;
678
+ strength?: undefined;
679
+ strengthDirection?: undefined;
680
+ };
681
+ } | {
682
+ item: string;
683
+ properties: {
684
+ schemaItemType: string;
685
+ appliesTo: string;
686
+ label: string;
687
+ description: string;
688
+ definition?: undefined;
689
+ priority?: undefined;
690
+ type?: undefined;
691
+ isStrict?: undefined;
692
+ enumerators?: undefined;
693
+ phenomenon?: undefined;
694
+ unitSystem?: undefined;
695
+ numerator?: undefined;
696
+ denominator?: undefined;
697
+ offset?: undefined;
698
+ invertsUnit?: undefined;
699
+ precision?: undefined;
700
+ formatTraits?: undefined;
701
+ thousandSeparator?: undefined;
702
+ decimalSeparator?: undefined;
703
+ stationSeparator?: undefined;
704
+ stationOffsetSize?: undefined;
705
+ minWidth?: undefined;
706
+ scientificType?: undefined;
707
+ showSignOption?: undefined;
708
+ roundFactor?: undefined;
709
+ uomSeparator?: undefined;
710
+ modifier?: undefined;
711
+ baseClass?: undefined;
712
+ mixins?: undefined;
713
+ strength?: undefined;
714
+ strengthDirection?: undefined;
715
+ };
716
+ } | {
717
+ item: string;
718
+ properties: {
719
+ schemaItemType: string;
720
+ baseClass: string;
721
+ label: string;
722
+ description: string;
723
+ mixins: string[];
724
+ definition?: undefined;
725
+ priority?: undefined;
726
+ type?: undefined;
727
+ isStrict?: undefined;
728
+ enumerators?: undefined;
729
+ phenomenon?: undefined;
730
+ unitSystem?: undefined;
731
+ numerator?: undefined;
732
+ denominator?: undefined;
733
+ offset?: undefined;
734
+ invertsUnit?: undefined;
735
+ precision?: undefined;
736
+ formatTraits?: undefined;
737
+ thousandSeparator?: undefined;
738
+ decimalSeparator?: undefined;
739
+ stationSeparator?: undefined;
740
+ stationOffsetSize?: undefined;
741
+ minWidth?: undefined;
742
+ scientificType?: undefined;
743
+ showSignOption?: undefined;
744
+ roundFactor?: undefined;
745
+ uomSeparator?: undefined;
746
+ modifier?: undefined;
747
+ appliesTo?: undefined;
748
+ strength?: undefined;
749
+ strengthDirection?: undefined;
750
+ };
751
+ } | {
752
+ item: string;
753
+ properties: {
754
+ schemaItemType: string;
755
+ modifier: string;
756
+ baseClass: string;
757
+ label: string;
758
+ description: string;
759
+ mixins: string[];
760
+ definition?: undefined;
761
+ priority?: undefined;
762
+ type?: undefined;
763
+ isStrict?: undefined;
764
+ enumerators?: undefined;
765
+ phenomenon?: undefined;
766
+ unitSystem?: undefined;
767
+ numerator?: undefined;
768
+ denominator?: undefined;
769
+ offset?: undefined;
770
+ invertsUnit?: undefined;
771
+ precision?: undefined;
772
+ formatTraits?: undefined;
773
+ thousandSeparator?: undefined;
774
+ decimalSeparator?: undefined;
775
+ stationSeparator?: undefined;
776
+ stationOffsetSize?: undefined;
777
+ minWidth?: undefined;
778
+ scientificType?: undefined;
779
+ showSignOption?: undefined;
780
+ roundFactor?: undefined;
781
+ uomSeparator?: undefined;
782
+ appliesTo?: undefined;
783
+ strength?: undefined;
784
+ strengthDirection?: undefined;
785
+ };
786
+ } | {
787
+ item: string;
788
+ properties: {
789
+ schemaItemType: string;
790
+ baseClass: string;
791
+ label: string;
792
+ description: string;
793
+ definition?: undefined;
794
+ priority?: undefined;
795
+ type?: undefined;
796
+ isStrict?: undefined;
797
+ enumerators?: undefined;
798
+ phenomenon?: undefined;
799
+ unitSystem?: undefined;
800
+ numerator?: undefined;
801
+ denominator?: undefined;
802
+ offset?: undefined;
803
+ invertsUnit?: undefined;
804
+ precision?: undefined;
805
+ formatTraits?: undefined;
806
+ thousandSeparator?: undefined;
807
+ decimalSeparator?: undefined;
808
+ stationSeparator?: undefined;
809
+ stationOffsetSize?: undefined;
810
+ minWidth?: undefined;
811
+ scientificType?: undefined;
812
+ showSignOption?: undefined;
813
+ roundFactor?: undefined;
814
+ uomSeparator?: undefined;
815
+ modifier?: undefined;
816
+ appliesTo?: undefined;
817
+ mixins?: undefined;
818
+ strength?: undefined;
819
+ strengthDirection?: undefined;
820
+ };
821
+ } | {
822
+ item: string;
823
+ properties: {
824
+ schemaItemType: string;
825
+ modifier: string;
826
+ baseClass: string;
827
+ label: string;
828
+ description: string;
829
+ strength: string;
830
+ strengthDirection: string;
831
+ definition?: undefined;
832
+ priority?: undefined;
833
+ type?: undefined;
834
+ isStrict?: undefined;
835
+ enumerators?: undefined;
836
+ phenomenon?: undefined;
837
+ unitSystem?: undefined;
838
+ numerator?: undefined;
839
+ denominator?: undefined;
840
+ offset?: undefined;
841
+ invertsUnit?: undefined;
842
+ precision?: undefined;
843
+ formatTraits?: undefined;
844
+ thousandSeparator?: undefined;
845
+ decimalSeparator?: undefined;
846
+ stationSeparator?: undefined;
847
+ stationOffsetSize?: undefined;
848
+ minWidth?: undefined;
849
+ scientificType?: undefined;
850
+ showSignOption?: undefined;
851
+ roundFactor?: undefined;
852
+ uomSeparator?: undefined;
853
+ appliesTo?: undefined;
854
+ mixins?: undefined;
855
+ };
856
+ })[];
857
+ checkHierachy: {
858
+ derivedClass: string;
859
+ baseClass: string;
860
+ };
861
+ checkFullLoad: ({
862
+ item: string;
863
+ properties: {
864
+ schemaItemType: string;
865
+ label: string;
866
+ description: string;
867
+ type: string;
868
+ precision: number;
869
+ showSignOption: string;
870
+ formatTraits: string[];
871
+ thousandSeparator: string;
872
+ decimalSeparator: string;
873
+ minWidth: number;
874
+ roundFactor: number;
875
+ composite: {
876
+ spacer: string;
877
+ includeZero: boolean;
878
+ units: {
879
+ name: string;
880
+ label: string;
881
+ }[];
882
+ };
883
+ uomSeparator?: undefined;
884
+ relativeError?: undefined;
885
+ persistenceUnit?: undefined;
886
+ presentationUnits?: undefined;
887
+ modifier?: undefined;
888
+ properties?: undefined;
889
+ baseClass?: undefined;
890
+ customAttributes?: undefined;
891
+ appliesTo?: undefined;
892
+ strength?: undefined;
893
+ strengthDirection?: undefined;
894
+ source?: undefined;
895
+ target?: undefined;
896
+ };
897
+ } | {
898
+ item: string;
899
+ properties: {
900
+ schemaItemType: string;
901
+ label: string;
902
+ description: string;
903
+ type: string;
904
+ precision: number;
905
+ formatTraits: string[];
906
+ uomSeparator: string;
907
+ composite: {
908
+ spacer: string;
909
+ units: {
910
+ name: string;
911
+ label: string;
912
+ }[];
913
+ includeZero?: undefined;
914
+ };
915
+ showSignOption?: undefined;
916
+ thousandSeparator?: undefined;
917
+ decimalSeparator?: undefined;
918
+ minWidth?: undefined;
919
+ roundFactor?: undefined;
920
+ relativeError?: undefined;
921
+ persistenceUnit?: undefined;
922
+ presentationUnits?: undefined;
923
+ modifier?: undefined;
924
+ properties?: undefined;
925
+ baseClass?: undefined;
926
+ customAttributes?: undefined;
927
+ appliesTo?: undefined;
928
+ strength?: undefined;
929
+ strengthDirection?: undefined;
930
+ source?: undefined;
931
+ target?: undefined;
932
+ };
933
+ } | {
934
+ item: string;
935
+ properties: {
936
+ schemaItemType: string;
937
+ label: string;
938
+ description: string;
939
+ relativeError: number;
940
+ persistenceUnit: string;
941
+ presentationUnits: string[];
942
+ type?: undefined;
943
+ precision?: undefined;
944
+ showSignOption?: undefined;
945
+ formatTraits?: undefined;
946
+ thousandSeparator?: undefined;
947
+ decimalSeparator?: undefined;
948
+ minWidth?: undefined;
949
+ roundFactor?: undefined;
950
+ composite?: undefined;
951
+ uomSeparator?: undefined;
952
+ modifier?: undefined;
953
+ properties?: undefined;
954
+ baseClass?: undefined;
955
+ customAttributes?: undefined;
956
+ appliesTo?: undefined;
957
+ strength?: undefined;
958
+ strengthDirection?: undefined;
959
+ source?: undefined;
960
+ target?: undefined;
961
+ };
962
+ } | {
963
+ item: string;
964
+ properties: {
965
+ schemaItemType: string;
966
+ modifier: string;
967
+ label: string;
968
+ description: string;
969
+ properties: ({
970
+ name: string;
971
+ type: string;
972
+ category: string;
973
+ label: string;
974
+ description: string;
975
+ typeName: string;
976
+ isReadOnly?: undefined;
977
+ customAttributes?: undefined;
978
+ minOccurs?: undefined;
979
+ maxOccurs?: undefined;
980
+ } | {
981
+ name: string;
982
+ type: string;
983
+ isReadOnly: boolean;
984
+ label: string;
985
+ description: string;
986
+ typeName: string;
987
+ customAttributes: {
988
+ className: string;
989
+ }[];
990
+ category?: undefined;
991
+ minOccurs?: undefined;
992
+ maxOccurs?: undefined;
993
+ } | {
994
+ name: string;
995
+ type: string;
996
+ minOccurs: number;
997
+ maxOccurs: number;
998
+ label: string;
999
+ description: string;
1000
+ typeName: string;
1001
+ category?: undefined;
1002
+ isReadOnly?: undefined;
1003
+ customAttributes?: undefined;
1004
+ })[];
1005
+ type?: undefined;
1006
+ precision?: undefined;
1007
+ showSignOption?: undefined;
1008
+ formatTraits?: undefined;
1009
+ thousandSeparator?: undefined;
1010
+ decimalSeparator?: undefined;
1011
+ minWidth?: undefined;
1012
+ roundFactor?: undefined;
1013
+ composite?: undefined;
1014
+ uomSeparator?: undefined;
1015
+ relativeError?: undefined;
1016
+ persistenceUnit?: undefined;
1017
+ presentationUnits?: undefined;
1018
+ baseClass?: undefined;
1019
+ customAttributes?: undefined;
1020
+ appliesTo?: undefined;
1021
+ strength?: undefined;
1022
+ strengthDirection?: undefined;
1023
+ source?: undefined;
1024
+ target?: undefined;
1025
+ };
1026
+ } | {
1027
+ item: string;
1028
+ properties: {
1029
+ schemaItemType: string;
1030
+ modifier: string;
1031
+ baseClass: string;
1032
+ label: string;
1033
+ description: string;
1034
+ customAttributes: {
1035
+ className: string;
1036
+ }[];
1037
+ properties: ({
1038
+ name: string;
1039
+ type: string;
1040
+ kindOfQuantity: string;
1041
+ label: string;
1042
+ description: string;
1043
+ typeName: string;
1044
+ priority?: undefined;
1045
+ minOccurs?: undefined;
1046
+ maxOccurs?: undefined;
1047
+ } | {
1048
+ name: string;
1049
+ type: string;
1050
+ priority: number;
1051
+ label: string;
1052
+ description: string;
1053
+ typeName: string;
1054
+ kindOfQuantity?: undefined;
1055
+ minOccurs?: undefined;
1056
+ maxOccurs?: undefined;
1057
+ } | {
1058
+ name: string;
1059
+ type: string;
1060
+ minOccurs: number;
1061
+ maxOccurs: number;
1062
+ label: string;
1063
+ description: string;
1064
+ typeName: string;
1065
+ kindOfQuantity?: undefined;
1066
+ priority?: undefined;
1067
+ })[];
1068
+ type?: undefined;
1069
+ precision?: undefined;
1070
+ showSignOption?: undefined;
1071
+ formatTraits?: undefined;
1072
+ thousandSeparator?: undefined;
1073
+ decimalSeparator?: undefined;
1074
+ minWidth?: undefined;
1075
+ roundFactor?: undefined;
1076
+ composite?: undefined;
1077
+ uomSeparator?: undefined;
1078
+ relativeError?: undefined;
1079
+ persistenceUnit?: undefined;
1080
+ presentationUnits?: undefined;
1081
+ appliesTo?: undefined;
1082
+ strength?: undefined;
1083
+ strengthDirection?: undefined;
1084
+ source?: undefined;
1085
+ target?: undefined;
1086
+ };
1087
+ } | {
1088
+ item: string;
1089
+ properties: {
1090
+ schemaItemType: string;
1091
+ appliesTo: string;
1092
+ modifier: string;
1093
+ label: string;
1094
+ description: string;
1095
+ properties: ({
1096
+ name: string;
1097
+ type: string;
1098
+ label: string;
1099
+ description: string;
1100
+ extendedTypeName: string;
1101
+ minLength: number;
1102
+ maxLength: number;
1103
+ typeName: string;
1104
+ } | {
1105
+ name: string;
1106
+ type: string;
1107
+ label: string;
1108
+ description: string;
1109
+ typeName: string;
1110
+ extendedTypeName?: undefined;
1111
+ minLength?: undefined;
1112
+ maxLength?: undefined;
1113
+ })[];
1114
+ type?: undefined;
1115
+ precision?: undefined;
1116
+ showSignOption?: undefined;
1117
+ formatTraits?: undefined;
1118
+ thousandSeparator?: undefined;
1119
+ decimalSeparator?: undefined;
1120
+ minWidth?: undefined;
1121
+ roundFactor?: undefined;
1122
+ composite?: undefined;
1123
+ uomSeparator?: undefined;
1124
+ relativeError?: undefined;
1125
+ persistenceUnit?: undefined;
1126
+ presentationUnits?: undefined;
1127
+ baseClass?: undefined;
1128
+ customAttributes?: undefined;
1129
+ strength?: undefined;
1130
+ strengthDirection?: undefined;
1131
+ source?: undefined;
1132
+ target?: undefined;
1133
+ };
1134
+ } | {
1135
+ item: string;
1136
+ properties: {
1137
+ schemaItemType: string;
1138
+ appliesTo: string;
1139
+ baseClass: string;
1140
+ label: string;
1141
+ description: string;
1142
+ customAttributes: {
1143
+ className: string;
1144
+ }[];
1145
+ properties: ({
1146
+ name: string;
1147
+ type: string;
1148
+ label: string;
1149
+ description: string;
1150
+ typeName: string;
1151
+ minOccurs?: undefined;
1152
+ maxOccurs?: undefined;
1153
+ maxValue?: undefined;
1154
+ } | {
1155
+ name: string;
1156
+ type: string;
1157
+ minOccurs: number;
1158
+ maxOccurs: number;
1159
+ maxValue: number;
1160
+ label: string;
1161
+ description: string;
1162
+ typeName: string;
1163
+ })[];
1164
+ type?: undefined;
1165
+ precision?: undefined;
1166
+ showSignOption?: undefined;
1167
+ formatTraits?: undefined;
1168
+ thousandSeparator?: undefined;
1169
+ decimalSeparator?: undefined;
1170
+ minWidth?: undefined;
1171
+ roundFactor?: undefined;
1172
+ composite?: undefined;
1173
+ uomSeparator?: undefined;
1174
+ relativeError?: undefined;
1175
+ persistenceUnit?: undefined;
1176
+ presentationUnits?: undefined;
1177
+ modifier?: undefined;
1178
+ strength?: undefined;
1179
+ strengthDirection?: undefined;
1180
+ source?: undefined;
1181
+ target?: undefined;
1182
+ };
1183
+ } | {
1184
+ item: string;
1185
+ properties: {
1186
+ schemaItemType: string;
1187
+ modifier: string;
1188
+ appliesTo: string;
1189
+ baseClass: string;
1190
+ label: string;
1191
+ description: string;
1192
+ properties: ({
1193
+ name: string;
1194
+ type: string;
1195
+ minValue: number;
1196
+ maxValue: number;
1197
+ label: string;
1198
+ description: string;
1199
+ typeName: string;
1200
+ customAttributes: {
1201
+ className: string;
1202
+ StatementTypes: number;
1203
+ }[];
1204
+ minOccurs?: undefined;
1205
+ maxOccurs?: undefined;
1206
+ } | {
1207
+ name: string;
1208
+ type: string;
1209
+ label: string;
1210
+ description: string;
1211
+ minOccurs: number;
1212
+ maxOccurs: number;
1213
+ typeName: string;
1214
+ minValue?: undefined;
1215
+ maxValue?: undefined;
1216
+ customAttributes?: undefined;
1217
+ })[];
1218
+ type?: undefined;
1219
+ precision?: undefined;
1220
+ showSignOption?: undefined;
1221
+ formatTraits?: undefined;
1222
+ thousandSeparator?: undefined;
1223
+ decimalSeparator?: undefined;
1224
+ minWidth?: undefined;
1225
+ roundFactor?: undefined;
1226
+ composite?: undefined;
1227
+ uomSeparator?: undefined;
1228
+ relativeError?: undefined;
1229
+ persistenceUnit?: undefined;
1230
+ presentationUnits?: undefined;
1231
+ customAttributes?: undefined;
1232
+ strength?: undefined;
1233
+ strengthDirection?: undefined;
1234
+ source?: undefined;
1235
+ target?: undefined;
1236
+ };
1237
+ } | {
1238
+ item: string;
1239
+ properties: {
1240
+ schemaItemType: string;
1241
+ appliesTo: string;
1242
+ label: string;
1243
+ description: string;
1244
+ properties: ({
1245
+ name: string;
1246
+ type: string;
1247
+ category: string;
1248
+ label: string;
1249
+ description: string;
1250
+ typeName: string;
1251
+ minOccurs?: undefined;
1252
+ maxOccurs?: undefined;
1253
+ } | {
1254
+ name: string;
1255
+ type: string;
1256
+ minOccurs: number;
1257
+ maxOccurs: number;
1258
+ label: string;
1259
+ description: string;
1260
+ typeName: string;
1261
+ category?: undefined;
1262
+ })[];
1263
+ customAttributes: {
1264
+ className: string;
1265
+ }[];
1266
+ type?: undefined;
1267
+ precision?: undefined;
1268
+ showSignOption?: undefined;
1269
+ formatTraits?: undefined;
1270
+ thousandSeparator?: undefined;
1271
+ decimalSeparator?: undefined;
1272
+ minWidth?: undefined;
1273
+ roundFactor?: undefined;
1274
+ composite?: undefined;
1275
+ uomSeparator?: undefined;
1276
+ relativeError?: undefined;
1277
+ persistenceUnit?: undefined;
1278
+ presentationUnits?: undefined;
1279
+ modifier?: undefined;
1280
+ baseClass?: undefined;
1281
+ strength?: undefined;
1282
+ strengthDirection?: undefined;
1283
+ source?: undefined;
1284
+ target?: undefined;
1285
+ };
1286
+ } | {
1287
+ item: string;
1288
+ properties: {
1289
+ schemaItemType: string;
1290
+ baseClass: string;
1291
+ appliesTo: string;
1292
+ label: string;
1293
+ description: string;
1294
+ properties: ({
1295
+ name: string;
1296
+ type: string;
1297
+ label: string;
1298
+ description: string;
1299
+ typeName: string;
1300
+ customAttributes: ({
1301
+ className: string;
1302
+ Description: string;
1303
+ } | {
1304
+ className: string;
1305
+ Description?: undefined;
1306
+ })[];
1307
+ minValue?: undefined;
1308
+ maxValue?: undefined;
1309
+ maxOccurs?: undefined;
1310
+ minOccurs?: undefined;
1311
+ } | {
1312
+ name: string;
1313
+ type: string;
1314
+ minValue: number;
1315
+ maxValue: number;
1316
+ maxOccurs: number;
1317
+ minOccurs: number;
1318
+ label: string;
1319
+ description: string;
1320
+ typeName: string;
1321
+ customAttributes?: undefined;
1322
+ })[];
1323
+ type?: undefined;
1324
+ precision?: undefined;
1325
+ showSignOption?: undefined;
1326
+ formatTraits?: undefined;
1327
+ thousandSeparator?: undefined;
1328
+ decimalSeparator?: undefined;
1329
+ minWidth?: undefined;
1330
+ roundFactor?: undefined;
1331
+ composite?: undefined;
1332
+ uomSeparator?: undefined;
1333
+ relativeError?: undefined;
1334
+ persistenceUnit?: undefined;
1335
+ presentationUnits?: undefined;
1336
+ modifier?: undefined;
1337
+ customAttributes?: undefined;
1338
+ strength?: undefined;
1339
+ strengthDirection?: undefined;
1340
+ source?: undefined;
1341
+ target?: undefined;
1342
+ };
1343
+ } | {
1344
+ item: string;
1345
+ properties: {
1346
+ schemaItemType: string;
1347
+ modifier: string;
1348
+ baseClass: string;
1349
+ label: string;
1350
+ description: string;
1351
+ properties: {
1352
+ name: string;
1353
+ type: string;
1354
+ label: string;
1355
+ description: string;
1356
+ typeName: string;
1357
+ }[];
1358
+ type?: undefined;
1359
+ precision?: undefined;
1360
+ showSignOption?: undefined;
1361
+ formatTraits?: undefined;
1362
+ thousandSeparator?: undefined;
1363
+ decimalSeparator?: undefined;
1364
+ minWidth?: undefined;
1365
+ roundFactor?: undefined;
1366
+ composite?: undefined;
1367
+ uomSeparator?: undefined;
1368
+ relativeError?: undefined;
1369
+ persistenceUnit?: undefined;
1370
+ presentationUnits?: undefined;
1371
+ customAttributes?: undefined;
1372
+ appliesTo?: undefined;
1373
+ strength?: undefined;
1374
+ strengthDirection?: undefined;
1375
+ source?: undefined;
1376
+ target?: undefined;
1377
+ };
1378
+ } | {
1379
+ item: string;
1380
+ properties: {
1381
+ schemaItemType: string;
1382
+ modifier: string;
1383
+ baseClass: string;
1384
+ label: string;
1385
+ description: string;
1386
+ strength: string;
1387
+ strengthDirection: string;
1388
+ customAttributes: {
1389
+ className: string;
1390
+ Show: boolean;
1391
+ }[];
1392
+ properties: {
1393
+ name: string;
1394
+ type: string;
1395
+ minOccurs: number;
1396
+ maxOccurs: number;
1397
+ label: string;
1398
+ description: string;
1399
+ typeName: string;
1400
+ }[];
1401
+ source: {
1402
+ multiplicity: string;
1403
+ roleLabel: string;
1404
+ polymorphic: boolean;
1405
+ abstractConstraint: string;
1406
+ constraintClasses: string[];
1407
+ customAttributes: {
1408
+ className: string;
1409
+ StringProperty: string;
1410
+ }[];
1411
+ };
1412
+ target: {
1413
+ multiplicity: string;
1414
+ roleLabel: string;
1415
+ polymorphic: boolean;
1416
+ abstractConstraint: string;
1417
+ constraintClasses: string[];
1418
+ customAttributes: {
1419
+ className: string;
1420
+ StringProperty: string;
1421
+ }[];
1422
+ };
1423
+ type?: undefined;
1424
+ precision?: undefined;
1425
+ showSignOption?: undefined;
1426
+ formatTraits?: undefined;
1427
+ thousandSeparator?: undefined;
1428
+ decimalSeparator?: undefined;
1429
+ minWidth?: undefined;
1430
+ roundFactor?: undefined;
1431
+ composite?: undefined;
1432
+ uomSeparator?: undefined;
1433
+ relativeError?: undefined;
1434
+ persistenceUnit?: undefined;
1435
+ presentationUnits?: undefined;
1436
+ appliesTo?: undefined;
1437
+ };
1438
+ })[];
1439
+ }[];
1440
+ };
1441
+ export default _default;
1442
+ //# sourceMappingURL=simple.config.d.ts.map