@nocobase/plugin-workflow-test 1.2.12-alpha → 1.3.0-alpha.20240710084543

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.
@@ -1,2838 +0,0 @@
1
- /**
2
- * This file is part of the NocoBase (R) project.
3
- * Copyright (c) 2020-2024 NocoBase Co., Ltd.
4
- * Authors: NocoBase Team.
5
- *
6
- * This project is dual-licensed under AGPL-3.0 and NocoBase Commercial License.
7
- * For more information, please refer to: https://www.nocobase.com/agreement.
8
- */
9
- /**
10
- * 为json对象中collections节点的name、title属性添加后缀
11
- * 为json对象中fields节点的collectionName、through、target性添加后缀
12
- * @param jsonObj json对象
13
- * @param appendText 后缀文本
14
- */
15
- export declare function appendJsonCollectionName(jsonObj: any, appendText: string): any;
16
- /**
17
- * builtin_ 为NocoBase内置模板,同NocoBase在页面创建效果一致主要用法3种:
18
- * 1是测试用例仅需一个无业务字段的表即可验证,
19
- * 2是作为多对多的中间表,
20
- * 3是存在先表后关系字段的情况,使用create内置模板表再update表的方式更新数据表来添加全部字段
21
- * e2e_ 按照不同场景的数据表,可以多个测试用例共用一个或一套数据表
22
- */
23
- export declare const builtinGeneral: {
24
- collections: {
25
- key: string;
26
- name: string;
27
- title: string;
28
- inherit: boolean;
29
- hidden: boolean;
30
- description: any;
31
- fields: ({
32
- key: string;
33
- name: string;
34
- type: string;
35
- interface: string;
36
- description: any;
37
- collectionName: string;
38
- parentKey: any;
39
- reverseKey: any;
40
- autoIncrement: boolean;
41
- primaryKey: boolean;
42
- allowNull: boolean;
43
- uiSchema: {
44
- type: string;
45
- title: string;
46
- 'x-component': string;
47
- 'x-read-pretty': boolean;
48
- 'x-component-props'?: undefined;
49
- };
50
- field?: undefined;
51
- target?: undefined;
52
- foreignKey?: undefined;
53
- targetKey?: undefined;
54
- } | {
55
- key: string;
56
- name: string;
57
- type: string;
58
- interface: string;
59
- description: any;
60
- collectionName: string;
61
- parentKey: any;
62
- reverseKey: any;
63
- field: string;
64
- uiSchema: {
65
- type: string;
66
- title: string;
67
- 'x-component': string;
68
- 'x-component-props': {
69
- fieldNames?: undefined;
70
- };
71
- 'x-read-pretty': boolean;
72
- };
73
- autoIncrement?: undefined;
74
- primaryKey?: undefined;
75
- allowNull?: undefined;
76
- target?: undefined;
77
- foreignKey?: undefined;
78
- targetKey?: undefined;
79
- } | {
80
- key: string;
81
- name: string;
82
- type: string;
83
- interface: string;
84
- description: any;
85
- collectionName: string;
86
- parentKey: any;
87
- reverseKey: any;
88
- target: string;
89
- foreignKey: string;
90
- uiSchema: {
91
- type: string;
92
- title: string;
93
- 'x-component': string;
94
- 'x-component-props': {
95
- fieldNames: {
96
- value: string;
97
- label: string;
98
- };
99
- };
100
- 'x-read-pretty': boolean;
101
- };
102
- targetKey: string;
103
- autoIncrement?: undefined;
104
- primaryKey?: undefined;
105
- allowNull?: undefined;
106
- field?: undefined;
107
- })[];
108
- category: any[];
109
- logging: boolean;
110
- autoGenId: boolean;
111
- createdBy: boolean;
112
- updatedBy: boolean;
113
- createdAt: boolean;
114
- updatedAt: boolean;
115
- sortable: boolean;
116
- template: string;
117
- view: boolean;
118
- schema: string;
119
- }[];
120
- };
121
- export declare const builtinCalendar: {
122
- collections: {
123
- key: string;
124
- name: string;
125
- title: string;
126
- inherit: boolean;
127
- hidden: boolean;
128
- description: any;
129
- fields: ({
130
- key: string;
131
- name: string;
132
- type: string;
133
- interface: string;
134
- description: any;
135
- collectionName: string;
136
- parentKey: any;
137
- reverseKey: any;
138
- uiSchema: {
139
- type: string;
140
- title: string;
141
- 'x-component': string;
142
- 'x-component-props': string;
143
- enum: {
144
- label: string;
145
- value: string;
146
- }[];
147
- 'x-read-pretty'?: undefined;
148
- };
149
- autoIncrement?: undefined;
150
- primaryKey?: undefined;
151
- allowNull?: undefined;
152
- field?: undefined;
153
- target?: undefined;
154
- foreignKey?: undefined;
155
- targetKey?: undefined;
156
- } | {
157
- key: string;
158
- name: string;
159
- type: string;
160
- interface: any;
161
- description: any;
162
- collectionName: string;
163
- parentKey: any;
164
- reverseKey: any;
165
- uiSchema?: undefined;
166
- autoIncrement?: undefined;
167
- primaryKey?: undefined;
168
- allowNull?: undefined;
169
- field?: undefined;
170
- target?: undefined;
171
- foreignKey?: undefined;
172
- targetKey?: undefined;
173
- } | {
174
- key: string;
175
- name: string;
176
- type: string;
177
- interface: string;
178
- description: any;
179
- collectionName: string;
180
- parentKey: any;
181
- reverseKey: any;
182
- autoIncrement: boolean;
183
- primaryKey: boolean;
184
- allowNull: boolean;
185
- uiSchema: {
186
- type: string;
187
- title: string;
188
- 'x-component': string;
189
- 'x-read-pretty': boolean;
190
- 'x-component-props'?: undefined;
191
- enum?: undefined;
192
- };
193
- field?: undefined;
194
- target?: undefined;
195
- foreignKey?: undefined;
196
- targetKey?: undefined;
197
- } | {
198
- key: string;
199
- name: string;
200
- type: string;
201
- interface: string;
202
- description: any;
203
- collectionName: string;
204
- parentKey: any;
205
- reverseKey: any;
206
- field: string;
207
- uiSchema: {
208
- type: string;
209
- title: string;
210
- 'x-component': string;
211
- 'x-component-props': {
212
- fieldNames?: undefined;
213
- };
214
- 'x-read-pretty': boolean;
215
- enum?: undefined;
216
- };
217
- autoIncrement?: undefined;
218
- primaryKey?: undefined;
219
- allowNull?: undefined;
220
- target?: undefined;
221
- foreignKey?: undefined;
222
- targetKey?: undefined;
223
- } | {
224
- key: string;
225
- name: string;
226
- type: string;
227
- interface: string;
228
- description: any;
229
- collectionName: string;
230
- parentKey: any;
231
- reverseKey: any;
232
- target: string;
233
- foreignKey: string;
234
- uiSchema: {
235
- type: string;
236
- title: string;
237
- 'x-component': string;
238
- 'x-component-props': {
239
- fieldNames: {
240
- value: string;
241
- label: string;
242
- };
243
- };
244
- 'x-read-pretty': boolean;
245
- enum?: undefined;
246
- };
247
- targetKey: string;
248
- autoIncrement?: undefined;
249
- primaryKey?: undefined;
250
- allowNull?: undefined;
251
- field?: undefined;
252
- })[];
253
- category: any[];
254
- logging: boolean;
255
- template: string;
256
- view: boolean;
257
- createdBy: boolean;
258
- updatedBy: boolean;
259
- createdAt: boolean;
260
- updatedAt: boolean;
261
- sortable: boolean;
262
- schema: string;
263
- }[];
264
- };
265
- export declare const builtinTree: {
266
- collections: {
267
- key: string;
268
- name: string;
269
- title: string;
270
- inherit: boolean;
271
- hidden: boolean;
272
- description: any;
273
- fields: ({
274
- key: string;
275
- name: string;
276
- type: string;
277
- interface: string;
278
- description: any;
279
- collectionName: string;
280
- parentKey: any;
281
- reverseKey: any;
282
- isForeignKey: boolean;
283
- uiSchema: {
284
- type: string;
285
- title: string;
286
- 'x-component': string;
287
- 'x-read-pretty': boolean;
288
- 'x-component-props'?: undefined;
289
- };
290
- target: string;
291
- foreignKey?: undefined;
292
- treeParent?: undefined;
293
- onDelete?: undefined;
294
- targetKey?: undefined;
295
- treeChildren?: undefined;
296
- sourceKey?: undefined;
297
- autoIncrement?: undefined;
298
- primaryKey?: undefined;
299
- allowNull?: undefined;
300
- field?: undefined;
301
- } | {
302
- key: string;
303
- name: string;
304
- type: string;
305
- interface: string;
306
- description: any;
307
- collectionName: string;
308
- parentKey: any;
309
- reverseKey: any;
310
- foreignKey: string;
311
- treeParent: boolean;
312
- onDelete: string;
313
- uiSchema: {
314
- title: string;
315
- 'x-component': string;
316
- 'x-component-props': {
317
- multiple: boolean;
318
- fieldNames: {
319
- label: string;
320
- value: string;
321
- };
322
- };
323
- type?: undefined;
324
- 'x-read-pretty'?: undefined;
325
- };
326
- target: string;
327
- targetKey: string;
328
- isForeignKey?: undefined;
329
- treeChildren?: undefined;
330
- sourceKey?: undefined;
331
- autoIncrement?: undefined;
332
- primaryKey?: undefined;
333
- allowNull?: undefined;
334
- field?: undefined;
335
- } | {
336
- key: string;
337
- name: string;
338
- type: string;
339
- interface: string;
340
- description: any;
341
- collectionName: string;
342
- parentKey: any;
343
- reverseKey: any;
344
- foreignKey: string;
345
- treeChildren: boolean;
346
- onDelete: string;
347
- uiSchema: {
348
- title: string;
349
- 'x-component': string;
350
- 'x-component-props': {
351
- multiple: boolean;
352
- fieldNames: {
353
- label: string;
354
- value: string;
355
- };
356
- };
357
- type?: undefined;
358
- 'x-read-pretty'?: undefined;
359
- };
360
- target: string;
361
- targetKey: string;
362
- sourceKey: string;
363
- isForeignKey?: undefined;
364
- treeParent?: undefined;
365
- autoIncrement?: undefined;
366
- primaryKey?: undefined;
367
- allowNull?: undefined;
368
- field?: undefined;
369
- } | {
370
- key: string;
371
- name: string;
372
- type: string;
373
- interface: string;
374
- description: any;
375
- collectionName: string;
376
- parentKey: any;
377
- reverseKey: any;
378
- autoIncrement: boolean;
379
- primaryKey: boolean;
380
- allowNull: boolean;
381
- uiSchema: {
382
- type: string;
383
- title: string;
384
- 'x-component': string;
385
- 'x-read-pretty': boolean;
386
- 'x-component-props'?: undefined;
387
- };
388
- isForeignKey?: undefined;
389
- target?: undefined;
390
- foreignKey?: undefined;
391
- treeParent?: undefined;
392
- onDelete?: undefined;
393
- targetKey?: undefined;
394
- treeChildren?: undefined;
395
- sourceKey?: undefined;
396
- field?: undefined;
397
- } | {
398
- key: string;
399
- name: string;
400
- type: string;
401
- interface: string;
402
- description: any;
403
- collectionName: string;
404
- parentKey: any;
405
- reverseKey: any;
406
- field: string;
407
- uiSchema: {
408
- type: string;
409
- title: string;
410
- 'x-component': string;
411
- 'x-component-props': {
412
- multiple?: undefined;
413
- fieldNames?: undefined;
414
- };
415
- 'x-read-pretty': boolean;
416
- };
417
- isForeignKey?: undefined;
418
- target?: undefined;
419
- foreignKey?: undefined;
420
- treeParent?: undefined;
421
- onDelete?: undefined;
422
- targetKey?: undefined;
423
- treeChildren?: undefined;
424
- sourceKey?: undefined;
425
- autoIncrement?: undefined;
426
- primaryKey?: undefined;
427
- allowNull?: undefined;
428
- } | {
429
- key: string;
430
- name: string;
431
- type: string;
432
- interface: string;
433
- description: any;
434
- collectionName: string;
435
- parentKey: any;
436
- reverseKey: any;
437
- target: string;
438
- foreignKey: string;
439
- uiSchema: {
440
- type: string;
441
- title: string;
442
- 'x-component': string;
443
- 'x-component-props': {
444
- fieldNames: {
445
- value: string;
446
- label: string;
447
- };
448
- multiple?: undefined;
449
- };
450
- 'x-read-pretty': boolean;
451
- };
452
- targetKey: string;
453
- isForeignKey?: undefined;
454
- treeParent?: undefined;
455
- onDelete?: undefined;
456
- treeChildren?: undefined;
457
- sourceKey?: undefined;
458
- autoIncrement?: undefined;
459
- primaryKey?: undefined;
460
- allowNull?: undefined;
461
- field?: undefined;
462
- })[];
463
- category: any[];
464
- logging: boolean;
465
- autoGenId: boolean;
466
- createdBy: boolean;
467
- updatedBy: boolean;
468
- createdAt: boolean;
469
- updatedAt: boolean;
470
- sortable: boolean;
471
- template: string;
472
- view: boolean;
473
- tree: string;
474
- schema: string;
475
- }[];
476
- };
477
- export declare const builtinFile: {
478
- collections: {
479
- key: string;
480
- name: string;
481
- title: string;
482
- inherit: boolean;
483
- hidden: boolean;
484
- description: any;
485
- fields: ({
486
- key: string;
487
- name: string;
488
- type: string;
489
- interface: string;
490
- description: any;
491
- collectionName: string;
492
- parentKey: any;
493
- reverseKey: any;
494
- deletable: boolean;
495
- uiSchema: {
496
- type: string;
497
- title: string;
498
- 'x-component': string;
499
- 'x-read-pretty'?: undefined;
500
- 'x-component-props'?: undefined;
501
- };
502
- field?: undefined;
503
- comment?: undefined;
504
- target?: undefined;
505
- foreignKey?: undefined;
506
- targetKey?: undefined;
507
- defaultValue?: undefined;
508
- autoIncrement?: undefined;
509
- primaryKey?: undefined;
510
- allowNull?: undefined;
511
- } | {
512
- key: string;
513
- name: string;
514
- type: string;
515
- interface: string;
516
- description: any;
517
- collectionName: string;
518
- parentKey: any;
519
- reverseKey: any;
520
- deletable: boolean;
521
- uiSchema: {
522
- type: string;
523
- title: string;
524
- 'x-component': string;
525
- 'x-read-pretty': boolean;
526
- 'x-component-props'?: undefined;
527
- };
528
- field?: undefined;
529
- comment?: undefined;
530
- target?: undefined;
531
- foreignKey?: undefined;
532
- targetKey?: undefined;
533
- defaultValue?: undefined;
534
- autoIncrement?: undefined;
535
- primaryKey?: undefined;
536
- allowNull?: undefined;
537
- } | {
538
- key: string;
539
- name: string;
540
- type: string;
541
- interface: string;
542
- description: any;
543
- collectionName: string;
544
- parentKey: any;
545
- reverseKey: any;
546
- deletable: boolean;
547
- uiSchema: {
548
- type: string;
549
- title: string;
550
- 'x-component': string;
551
- 'x-read-pretty': boolean;
552
- 'x-component-props': {
553
- stringMode: boolean;
554
- step: string;
555
- fieldNames?: undefined;
556
- };
557
- };
558
- field?: undefined;
559
- comment?: undefined;
560
- target?: undefined;
561
- foreignKey?: undefined;
562
- targetKey?: undefined;
563
- defaultValue?: undefined;
564
- autoIncrement?: undefined;
565
- primaryKey?: undefined;
566
- allowNull?: undefined;
567
- } | {
568
- key: string;
569
- name: string;
570
- type: string;
571
- interface: string;
572
- description: any;
573
- collectionName: string;
574
- parentKey: any;
575
- reverseKey: any;
576
- field: string;
577
- deletable: boolean;
578
- uiSchema: {
579
- type: string;
580
- title: string;
581
- 'x-component': string;
582
- 'x-read-pretty': boolean;
583
- 'x-component-props'?: undefined;
584
- };
585
- comment?: undefined;
586
- target?: undefined;
587
- foreignKey?: undefined;
588
- targetKey?: undefined;
589
- defaultValue?: undefined;
590
- autoIncrement?: undefined;
591
- primaryKey?: undefined;
592
- allowNull?: undefined;
593
- } | {
594
- key: string;
595
- name: string;
596
- type: string;
597
- interface: any;
598
- description: any;
599
- collectionName: string;
600
- parentKey: any;
601
- reverseKey: any;
602
- comment: string;
603
- target: string;
604
- foreignKey: string;
605
- deletable: boolean;
606
- targetKey: string;
607
- uiSchema?: undefined;
608
- field?: undefined;
609
- defaultValue?: undefined;
610
- autoIncrement?: undefined;
611
- primaryKey?: undefined;
612
- allowNull?: undefined;
613
- } | {
614
- key: string;
615
- name: string;
616
- type: string;
617
- interface: any;
618
- description: any;
619
- collectionName: string;
620
- parentKey: any;
621
- reverseKey: any;
622
- deletable: boolean;
623
- defaultValue: {};
624
- uiSchema?: undefined;
625
- field?: undefined;
626
- comment?: undefined;
627
- target?: undefined;
628
- foreignKey?: undefined;
629
- targetKey?: undefined;
630
- autoIncrement?: undefined;
631
- primaryKey?: undefined;
632
- allowNull?: undefined;
633
- } | {
634
- key: string;
635
- name: string;
636
- type: string;
637
- interface: string;
638
- description: any;
639
- collectionName: string;
640
- parentKey: any;
641
- reverseKey: any;
642
- autoIncrement: boolean;
643
- primaryKey: boolean;
644
- allowNull: boolean;
645
- uiSchema: {
646
- type: string;
647
- title: string;
648
- 'x-component': string;
649
- 'x-read-pretty': boolean;
650
- 'x-component-props'?: undefined;
651
- };
652
- deletable?: undefined;
653
- field?: undefined;
654
- comment?: undefined;
655
- target?: undefined;
656
- foreignKey?: undefined;
657
- targetKey?: undefined;
658
- defaultValue?: undefined;
659
- } | {
660
- key: string;
661
- name: string;
662
- type: string;
663
- interface: string;
664
- description: any;
665
- collectionName: string;
666
- parentKey: any;
667
- reverseKey: any;
668
- field: string;
669
- uiSchema: {
670
- type: string;
671
- title: string;
672
- 'x-component': string;
673
- 'x-component-props': {
674
- stringMode?: undefined;
675
- step?: undefined;
676
- fieldNames?: undefined;
677
- };
678
- 'x-read-pretty': boolean;
679
- };
680
- deletable?: undefined;
681
- comment?: undefined;
682
- target?: undefined;
683
- foreignKey?: undefined;
684
- targetKey?: undefined;
685
- defaultValue?: undefined;
686
- autoIncrement?: undefined;
687
- primaryKey?: undefined;
688
- allowNull?: undefined;
689
- } | {
690
- key: string;
691
- name: string;
692
- type: string;
693
- interface: string;
694
- description: any;
695
- collectionName: string;
696
- parentKey: any;
697
- reverseKey: any;
698
- target: string;
699
- foreignKey: string;
700
- uiSchema: {
701
- type: string;
702
- title: string;
703
- 'x-component': string;
704
- 'x-component-props': {
705
- fieldNames: {
706
- value: string;
707
- label: string;
708
- };
709
- stringMode?: undefined;
710
- step?: undefined;
711
- };
712
- 'x-read-pretty': boolean;
713
- };
714
- targetKey: string;
715
- deletable?: undefined;
716
- field?: undefined;
717
- comment?: undefined;
718
- defaultValue?: undefined;
719
- autoIncrement?: undefined;
720
- primaryKey?: undefined;
721
- allowNull?: undefined;
722
- })[];
723
- category: any[];
724
- logging: boolean;
725
- template: string;
726
- view: boolean;
727
- createdBy: boolean;
728
- updatedBy: boolean;
729
- storage: string;
730
- schema: string;
731
- }[];
732
- };
733
- export declare const builtinExpression: {
734
- collections: {
735
- key: string;
736
- name: string;
737
- title: string;
738
- inherit: boolean;
739
- hidden: boolean;
740
- description: any;
741
- fields: ({
742
- key: string;
743
- name: string;
744
- type: string;
745
- interface: string;
746
- description: any;
747
- collectionName: string;
748
- parentKey: any;
749
- reverseKey: any;
750
- uiSchema: {
751
- type: string;
752
- title: string;
753
- 'x-component': string;
754
- enum: {
755
- value: string;
756
- label: string;
757
- tooltip: string;
758
- link: string;
759
- }[];
760
- default: string;
761
- 'x-component-props'?: undefined;
762
- 'x-read-pretty'?: undefined;
763
- };
764
- autoIncrement?: undefined;
765
- primaryKey?: undefined;
766
- allowNull?: undefined;
767
- field?: undefined;
768
- target?: undefined;
769
- foreignKey?: undefined;
770
- targetKey?: undefined;
771
- } | {
772
- key: string;
773
- name: string;
774
- type: string;
775
- interface: string;
776
- description: any;
777
- collectionName: string;
778
- parentKey: any;
779
- reverseKey: any;
780
- uiSchema: {
781
- type: string;
782
- title: string;
783
- 'x-component': string;
784
- 'x-component-props': {
785
- fieldNames?: undefined;
786
- };
787
- enum?: undefined;
788
- default?: undefined;
789
- 'x-read-pretty'?: undefined;
790
- };
791
- autoIncrement?: undefined;
792
- primaryKey?: undefined;
793
- allowNull?: undefined;
794
- field?: undefined;
795
- target?: undefined;
796
- foreignKey?: undefined;
797
- targetKey?: undefined;
798
- } | {
799
- key: string;
800
- name: string;
801
- type: string;
802
- interface: string;
803
- description: any;
804
- collectionName: string;
805
- parentKey: any;
806
- reverseKey: any;
807
- uiSchema: {
808
- type: string;
809
- title: string;
810
- 'x-component': string;
811
- enum?: undefined;
812
- default?: undefined;
813
- 'x-component-props'?: undefined;
814
- 'x-read-pretty'?: undefined;
815
- };
816
- autoIncrement?: undefined;
817
- primaryKey?: undefined;
818
- allowNull?: undefined;
819
- field?: undefined;
820
- target?: undefined;
821
- foreignKey?: undefined;
822
- targetKey?: undefined;
823
- } | {
824
- key: string;
825
- name: string;
826
- type: string;
827
- interface: string;
828
- description: any;
829
- collectionName: string;
830
- parentKey: any;
831
- reverseKey: any;
832
- autoIncrement: boolean;
833
- primaryKey: boolean;
834
- allowNull: boolean;
835
- uiSchema: {
836
- type: string;
837
- title: string;
838
- 'x-component': string;
839
- 'x-read-pretty': boolean;
840
- enum?: undefined;
841
- default?: undefined;
842
- 'x-component-props'?: undefined;
843
- };
844
- field?: undefined;
845
- target?: undefined;
846
- foreignKey?: undefined;
847
- targetKey?: undefined;
848
- } | {
849
- key: string;
850
- name: string;
851
- type: string;
852
- interface: string;
853
- description: any;
854
- collectionName: string;
855
- parentKey: any;
856
- reverseKey: any;
857
- field: string;
858
- uiSchema: {
859
- type: string;
860
- title: string;
861
- 'x-component': string;
862
- 'x-component-props': {
863
- fieldNames?: undefined;
864
- };
865
- 'x-read-pretty': boolean;
866
- enum?: undefined;
867
- default?: undefined;
868
- };
869
- autoIncrement?: undefined;
870
- primaryKey?: undefined;
871
- allowNull?: undefined;
872
- target?: undefined;
873
- foreignKey?: undefined;
874
- targetKey?: undefined;
875
- } | {
876
- key: string;
877
- name: string;
878
- type: string;
879
- interface: string;
880
- description: any;
881
- collectionName: string;
882
- parentKey: any;
883
- reverseKey: any;
884
- target: string;
885
- foreignKey: string;
886
- uiSchema: {
887
- type: string;
888
- title: string;
889
- 'x-component': string;
890
- 'x-component-props': {
891
- fieldNames: {
892
- value: string;
893
- label: string;
894
- };
895
- };
896
- 'x-read-pretty': boolean;
897
- enum?: undefined;
898
- default?: undefined;
899
- };
900
- targetKey: string;
901
- autoIncrement?: undefined;
902
- primaryKey?: undefined;
903
- allowNull?: undefined;
904
- field?: undefined;
905
- })[];
906
- category: any[];
907
- logging: boolean;
908
- template: string;
909
- view: boolean;
910
- createdBy: boolean;
911
- updatedBy: boolean;
912
- createdAt: boolean;
913
- updatedAt: boolean;
914
- sortable: boolean;
915
- schema: string;
916
- }[];
917
- };
918
- export declare const generalWithNoRelationalFields: {
919
- collections: {
920
- key: string;
921
- name: string;
922
- title: string;
923
- inherit: boolean;
924
- hidden: boolean;
925
- fields: ({
926
- key: string;
927
- name: string;
928
- type: string;
929
- interface: string;
930
- collectionName: string;
931
- parentKey: any;
932
- reverseKey: any;
933
- autoIncrement: boolean;
934
- primaryKey: boolean;
935
- allowNull: boolean;
936
- uiSchema: {
937
- type: string;
938
- title: string;
939
- 'x-component': string;
940
- 'x-read-pretty': boolean;
941
- 'x-component-props'?: undefined;
942
- 'x-validator'?: undefined;
943
- enum?: undefined;
944
- default?: undefined;
945
- };
946
- field?: undefined;
947
- target?: undefined;
948
- foreignKey?: undefined;
949
- targetKey?: undefined;
950
- patterns?: undefined;
951
- inputable?: undefined;
952
- defaultValue?: undefined;
953
- dataType?: undefined;
954
- engine?: undefined;
955
- expression?: undefined;
956
- } | {
957
- key: string;
958
- name: string;
959
- type: string;
960
- interface: string;
961
- collectionName: string;
962
- parentKey: any;
963
- reverseKey: any;
964
- field: string;
965
- uiSchema: {
966
- type: string;
967
- title: string;
968
- 'x-component': string;
969
- 'x-component-props': {
970
- fieldNames?: undefined;
971
- type?: undefined;
972
- stringMode?: undefined;
973
- step?: undefined;
974
- addonAfter?: undefined;
975
- mode?: undefined;
976
- dateFormat?: undefined;
977
- gmt?: undefined;
978
- showTime?: undefined;
979
- autoSize?: undefined;
980
- };
981
- 'x-read-pretty': boolean;
982
- 'x-validator'?: undefined;
983
- enum?: undefined;
984
- default?: undefined;
985
- };
986
- autoIncrement?: undefined;
987
- primaryKey?: undefined;
988
- allowNull?: undefined;
989
- target?: undefined;
990
- foreignKey?: undefined;
991
- targetKey?: undefined;
992
- patterns?: undefined;
993
- inputable?: undefined;
994
- defaultValue?: undefined;
995
- dataType?: undefined;
996
- engine?: undefined;
997
- expression?: undefined;
998
- } | {
999
- key: string;
1000
- name: string;
1001
- type: string;
1002
- interface: string;
1003
- collectionName: string;
1004
- parentKey: any;
1005
- reverseKey: any;
1006
- target: string;
1007
- foreignKey: string;
1008
- uiSchema: {
1009
- type: string;
1010
- title: string;
1011
- 'x-component': string;
1012
- 'x-component-props': {
1013
- fieldNames: {
1014
- value: string;
1015
- label: string;
1016
- };
1017
- type?: undefined;
1018
- stringMode?: undefined;
1019
- step?: undefined;
1020
- addonAfter?: undefined;
1021
- mode?: undefined;
1022
- dateFormat?: undefined;
1023
- gmt?: undefined;
1024
- showTime?: undefined;
1025
- autoSize?: undefined;
1026
- };
1027
- 'x-read-pretty': boolean;
1028
- 'x-validator'?: undefined;
1029
- enum?: undefined;
1030
- default?: undefined;
1031
- };
1032
- targetKey: string;
1033
- autoIncrement?: undefined;
1034
- primaryKey?: undefined;
1035
- allowNull?: undefined;
1036
- field?: undefined;
1037
- patterns?: undefined;
1038
- inputable?: undefined;
1039
- defaultValue?: undefined;
1040
- dataType?: undefined;
1041
- engine?: undefined;
1042
- expression?: undefined;
1043
- } | {
1044
- key: string;
1045
- name: string;
1046
- type: string;
1047
- interface: string;
1048
- collectionName: string;
1049
- parentKey: any;
1050
- reverseKey: any;
1051
- patterns: ({
1052
- type: string;
1053
- options: {
1054
- value: string;
1055
- digits?: undefined;
1056
- start?: undefined;
1057
- key?: undefined;
1058
- };
1059
- } | {
1060
- type: string;
1061
- options: {
1062
- digits: number;
1063
- start: number;
1064
- key: number;
1065
- value?: undefined;
1066
- };
1067
- })[];
1068
- uiSchema: {
1069
- type: string;
1070
- 'x-component': string;
1071
- 'x-component-props': {
1072
- fieldNames?: undefined;
1073
- type?: undefined;
1074
- stringMode?: undefined;
1075
- step?: undefined;
1076
- addonAfter?: undefined;
1077
- mode?: undefined;
1078
- dateFormat?: undefined;
1079
- gmt?: undefined;
1080
- showTime?: undefined;
1081
- autoSize?: undefined;
1082
- };
1083
- title: string;
1084
- 'x-read-pretty'?: undefined;
1085
- 'x-validator'?: undefined;
1086
- enum?: undefined;
1087
- default?: undefined;
1088
- };
1089
- inputable: boolean;
1090
- autoIncrement?: undefined;
1091
- primaryKey?: undefined;
1092
- allowNull?: undefined;
1093
- field?: undefined;
1094
- target?: undefined;
1095
- foreignKey?: undefined;
1096
- targetKey?: undefined;
1097
- defaultValue?: undefined;
1098
- dataType?: undefined;
1099
- engine?: undefined;
1100
- expression?: undefined;
1101
- } | {
1102
- key: string;
1103
- name: string;
1104
- type: string;
1105
- interface: string;
1106
- collectionName: string;
1107
- parentKey: any;
1108
- reverseKey: any;
1109
- uiSchema: {
1110
- type: string;
1111
- 'x-component': string;
1112
- title: string;
1113
- 'x-read-pretty'?: undefined;
1114
- 'x-component-props'?: undefined;
1115
- 'x-validator'?: undefined;
1116
- enum?: undefined;
1117
- default?: undefined;
1118
- };
1119
- autoIncrement?: undefined;
1120
- primaryKey?: undefined;
1121
- allowNull?: undefined;
1122
- field?: undefined;
1123
- target?: undefined;
1124
- foreignKey?: undefined;
1125
- targetKey?: undefined;
1126
- patterns?: undefined;
1127
- inputable?: undefined;
1128
- defaultValue?: undefined;
1129
- dataType?: undefined;
1130
- engine?: undefined;
1131
- expression?: undefined;
1132
- } | {
1133
- key: string;
1134
- name: string;
1135
- type: string;
1136
- interface: string;
1137
- collectionName: string;
1138
- parentKey: any;
1139
- reverseKey: any;
1140
- uiSchema: {
1141
- type: string;
1142
- 'x-component': string;
1143
- 'x-component-props': {
1144
- type: string;
1145
- fieldNames?: undefined;
1146
- stringMode?: undefined;
1147
- step?: undefined;
1148
- addonAfter?: undefined;
1149
- mode?: undefined;
1150
- dateFormat?: undefined;
1151
- gmt?: undefined;
1152
- showTime?: undefined;
1153
- autoSize?: undefined;
1154
- };
1155
- title: string;
1156
- 'x-read-pretty'?: undefined;
1157
- 'x-validator'?: undefined;
1158
- enum?: undefined;
1159
- default?: undefined;
1160
- };
1161
- autoIncrement?: undefined;
1162
- primaryKey?: undefined;
1163
- allowNull?: undefined;
1164
- field?: undefined;
1165
- target?: undefined;
1166
- foreignKey?: undefined;
1167
- targetKey?: undefined;
1168
- patterns?: undefined;
1169
- inputable?: undefined;
1170
- defaultValue?: undefined;
1171
- dataType?: undefined;
1172
- engine?: undefined;
1173
- expression?: undefined;
1174
- } | {
1175
- key: string;
1176
- name: string;
1177
- type: string;
1178
- interface: string;
1179
- collectionName: string;
1180
- parentKey: any;
1181
- reverseKey: any;
1182
- uiSchema: {
1183
- type: string;
1184
- 'x-component': string;
1185
- 'x-validator': string;
1186
- title: string;
1187
- 'x-read-pretty'?: undefined;
1188
- 'x-component-props'?: undefined;
1189
- enum?: undefined;
1190
- default?: undefined;
1191
- };
1192
- autoIncrement?: undefined;
1193
- primaryKey?: undefined;
1194
- allowNull?: undefined;
1195
- field?: undefined;
1196
- target?: undefined;
1197
- foreignKey?: undefined;
1198
- targetKey?: undefined;
1199
- patterns?: undefined;
1200
- inputable?: undefined;
1201
- defaultValue?: undefined;
1202
- dataType?: undefined;
1203
- engine?: undefined;
1204
- expression?: undefined;
1205
- } | {
1206
- key: string;
1207
- name: string;
1208
- type: string;
1209
- interface: string;
1210
- collectionName: string;
1211
- parentKey: any;
1212
- reverseKey: any;
1213
- uiSchema: {
1214
- type: string;
1215
- 'x-component': string;
1216
- 'x-component-props': {
1217
- stringMode: boolean;
1218
- step: string;
1219
- fieldNames?: undefined;
1220
- type?: undefined;
1221
- addonAfter?: undefined;
1222
- mode?: undefined;
1223
- dateFormat?: undefined;
1224
- gmt?: undefined;
1225
- showTime?: undefined;
1226
- autoSize?: undefined;
1227
- };
1228
- 'x-validator': string;
1229
- title: string;
1230
- 'x-read-pretty'?: undefined;
1231
- enum?: undefined;
1232
- default?: undefined;
1233
- };
1234
- autoIncrement?: undefined;
1235
- primaryKey?: undefined;
1236
- allowNull?: undefined;
1237
- field?: undefined;
1238
- target?: undefined;
1239
- foreignKey?: undefined;
1240
- targetKey?: undefined;
1241
- patterns?: undefined;
1242
- inputable?: undefined;
1243
- defaultValue?: undefined;
1244
- dataType?: undefined;
1245
- engine?: undefined;
1246
- expression?: undefined;
1247
- } | {
1248
- key: string;
1249
- name: string;
1250
- type: string;
1251
- interface: string;
1252
- collectionName: string;
1253
- parentKey: any;
1254
- reverseKey: any;
1255
- uiSchema: {
1256
- 'x-component-props': {
1257
- step: string;
1258
- stringMode: boolean;
1259
- fieldNames?: undefined;
1260
- type?: undefined;
1261
- addonAfter?: undefined;
1262
- mode?: undefined;
1263
- dateFormat?: undefined;
1264
- gmt?: undefined;
1265
- showTime?: undefined;
1266
- autoSize?: undefined;
1267
- };
1268
- type: string;
1269
- 'x-component': string;
1270
- title: string;
1271
- 'x-read-pretty'?: undefined;
1272
- 'x-validator'?: undefined;
1273
- enum?: undefined;
1274
- default?: undefined;
1275
- };
1276
- autoIncrement?: undefined;
1277
- primaryKey?: undefined;
1278
- allowNull?: undefined;
1279
- field?: undefined;
1280
- target?: undefined;
1281
- foreignKey?: undefined;
1282
- targetKey?: undefined;
1283
- patterns?: undefined;
1284
- inputable?: undefined;
1285
- defaultValue?: undefined;
1286
- dataType?: undefined;
1287
- engine?: undefined;
1288
- expression?: undefined;
1289
- } | {
1290
- key: string;
1291
- name: string;
1292
- type: string;
1293
- interface: string;
1294
- collectionName: string;
1295
- parentKey: any;
1296
- reverseKey: any;
1297
- uiSchema: {
1298
- 'x-component-props': {
1299
- step: string;
1300
- stringMode: boolean;
1301
- addonAfter: string;
1302
- fieldNames?: undefined;
1303
- type?: undefined;
1304
- mode?: undefined;
1305
- dateFormat?: undefined;
1306
- gmt?: undefined;
1307
- showTime?: undefined;
1308
- autoSize?: undefined;
1309
- };
1310
- type: string;
1311
- 'x-component': string;
1312
- title: string;
1313
- 'x-read-pretty'?: undefined;
1314
- 'x-validator'?: undefined;
1315
- enum?: undefined;
1316
- default?: undefined;
1317
- };
1318
- autoIncrement?: undefined;
1319
- primaryKey?: undefined;
1320
- allowNull?: undefined;
1321
- field?: undefined;
1322
- target?: undefined;
1323
- foreignKey?: undefined;
1324
- targetKey?: undefined;
1325
- patterns?: undefined;
1326
- inputable?: undefined;
1327
- defaultValue?: undefined;
1328
- dataType?: undefined;
1329
- engine?: undefined;
1330
- expression?: undefined;
1331
- } | {
1332
- key: string;
1333
- name: string;
1334
- type: string;
1335
- interface: string;
1336
- collectionName: string;
1337
- parentKey: any;
1338
- reverseKey: any;
1339
- uiSchema: {
1340
- enum: {
1341
- value: string;
1342
- label: string;
1343
- }[];
1344
- type: string;
1345
- 'x-component': string;
1346
- title: string;
1347
- 'x-read-pretty'?: undefined;
1348
- 'x-component-props'?: undefined;
1349
- 'x-validator'?: undefined;
1350
- default?: undefined;
1351
- };
1352
- autoIncrement?: undefined;
1353
- primaryKey?: undefined;
1354
- allowNull?: undefined;
1355
- field?: undefined;
1356
- target?: undefined;
1357
- foreignKey?: undefined;
1358
- targetKey?: undefined;
1359
- patterns?: undefined;
1360
- inputable?: undefined;
1361
- defaultValue?: undefined;
1362
- dataType?: undefined;
1363
- engine?: undefined;
1364
- expression?: undefined;
1365
- } | {
1366
- key: string;
1367
- name: string;
1368
- type: string;
1369
- interface: string;
1370
- collectionName: string;
1371
- parentKey: any;
1372
- reverseKey: any;
1373
- uiSchema: {
1374
- enum: {
1375
- value: string;
1376
- label: string;
1377
- }[];
1378
- type: string;
1379
- 'x-component': string;
1380
- 'x-component-props': {
1381
- mode: string;
1382
- fieldNames?: undefined;
1383
- type?: undefined;
1384
- stringMode?: undefined;
1385
- step?: undefined;
1386
- addonAfter?: undefined;
1387
- dateFormat?: undefined;
1388
- gmt?: undefined;
1389
- showTime?: undefined;
1390
- autoSize?: undefined;
1391
- };
1392
- title: string;
1393
- 'x-read-pretty'?: undefined;
1394
- 'x-validator'?: undefined;
1395
- default?: undefined;
1396
- };
1397
- defaultValue: any[];
1398
- autoIncrement?: undefined;
1399
- primaryKey?: undefined;
1400
- allowNull?: undefined;
1401
- field?: undefined;
1402
- target?: undefined;
1403
- foreignKey?: undefined;
1404
- targetKey?: undefined;
1405
- patterns?: undefined;
1406
- inputable?: undefined;
1407
- dataType?: undefined;
1408
- engine?: undefined;
1409
- expression?: undefined;
1410
- } | {
1411
- key: string;
1412
- name: string;
1413
- type: string;
1414
- interface: string;
1415
- collectionName: string;
1416
- parentKey: any;
1417
- reverseKey: any;
1418
- uiSchema: {
1419
- enum: {
1420
- value: string;
1421
- label: string;
1422
- }[];
1423
- type: string;
1424
- 'x-component': string;
1425
- title: string;
1426
- 'x-read-pretty'?: undefined;
1427
- 'x-component-props'?: undefined;
1428
- 'x-validator'?: undefined;
1429
- default?: undefined;
1430
- };
1431
- defaultValue: any[];
1432
- autoIncrement?: undefined;
1433
- primaryKey?: undefined;
1434
- allowNull?: undefined;
1435
- field?: undefined;
1436
- target?: undefined;
1437
- foreignKey?: undefined;
1438
- targetKey?: undefined;
1439
- patterns?: undefined;
1440
- inputable?: undefined;
1441
- dataType?: undefined;
1442
- engine?: undefined;
1443
- expression?: undefined;
1444
- } | {
1445
- key: string;
1446
- name: string;
1447
- type: string;
1448
- interface: string;
1449
- collectionName: string;
1450
- parentKey: any;
1451
- reverseKey: any;
1452
- uiSchema: {
1453
- 'x-component-props': {
1454
- dateFormat: string;
1455
- gmt: boolean;
1456
- showTime: boolean;
1457
- fieldNames?: undefined;
1458
- type?: undefined;
1459
- stringMode?: undefined;
1460
- step?: undefined;
1461
- addonAfter?: undefined;
1462
- mode?: undefined;
1463
- autoSize?: undefined;
1464
- };
1465
- type: string;
1466
- 'x-component': string;
1467
- title: string;
1468
- 'x-read-pretty'?: undefined;
1469
- 'x-validator'?: undefined;
1470
- enum?: undefined;
1471
- default?: undefined;
1472
- };
1473
- autoIncrement?: undefined;
1474
- primaryKey?: undefined;
1475
- allowNull?: undefined;
1476
- field?: undefined;
1477
- target?: undefined;
1478
- foreignKey?: undefined;
1479
- targetKey?: undefined;
1480
- patterns?: undefined;
1481
- inputable?: undefined;
1482
- defaultValue?: undefined;
1483
- dataType?: undefined;
1484
- engine?: undefined;
1485
- expression?: undefined;
1486
- } | {
1487
- key: string;
1488
- name: string;
1489
- type: string;
1490
- interface: string;
1491
- collectionName: string;
1492
- parentKey: any;
1493
- reverseKey: any;
1494
- defaultValue: any;
1495
- uiSchema: {
1496
- type: string;
1497
- 'x-component': string;
1498
- 'x-component-props': {
1499
- autoSize: {
1500
- minRows: number;
1501
- };
1502
- fieldNames?: undefined;
1503
- type?: undefined;
1504
- stringMode?: undefined;
1505
- step?: undefined;
1506
- addonAfter?: undefined;
1507
- mode?: undefined;
1508
- dateFormat?: undefined;
1509
- gmt?: undefined;
1510
- showTime?: undefined;
1511
- };
1512
- default: any;
1513
- title: string;
1514
- 'x-read-pretty'?: undefined;
1515
- 'x-validator'?: undefined;
1516
- enum?: undefined;
1517
- };
1518
- autoIncrement?: undefined;
1519
- primaryKey?: undefined;
1520
- allowNull?: undefined;
1521
- field?: undefined;
1522
- target?: undefined;
1523
- foreignKey?: undefined;
1524
- targetKey?: undefined;
1525
- patterns?: undefined;
1526
- inputable?: undefined;
1527
- dataType?: undefined;
1528
- engine?: undefined;
1529
- expression?: undefined;
1530
- } | {
1531
- key: string;
1532
- name: string;
1533
- type: string;
1534
- interface: string;
1535
- collectionName: string;
1536
- parentKey: any;
1537
- reverseKey: any;
1538
- dataType: string;
1539
- uiSchema: {
1540
- 'x-component-props': {
1541
- step: string;
1542
- stringMode: boolean;
1543
- fieldNames?: undefined;
1544
- type?: undefined;
1545
- addonAfter?: undefined;
1546
- mode?: undefined;
1547
- dateFormat?: undefined;
1548
- gmt?: undefined;
1549
- showTime?: undefined;
1550
- autoSize?: undefined;
1551
- };
1552
- type: string;
1553
- 'x-component': string;
1554
- 'x-read-pretty': boolean;
1555
- title: string;
1556
- 'x-validator'?: undefined;
1557
- enum?: undefined;
1558
- default?: undefined;
1559
- };
1560
- engine: string;
1561
- expression: string;
1562
- autoIncrement?: undefined;
1563
- primaryKey?: undefined;
1564
- allowNull?: undefined;
1565
- field?: undefined;
1566
- target?: undefined;
1567
- foreignKey?: undefined;
1568
- targetKey?: undefined;
1569
- patterns?: undefined;
1570
- inputable?: undefined;
1571
- defaultValue?: undefined;
1572
- })[];
1573
- category: any[];
1574
- logging: boolean;
1575
- autoGenId: boolean;
1576
- createdBy: boolean;
1577
- updatedBy: boolean;
1578
- createdAt: boolean;
1579
- updatedAt: boolean;
1580
- sortable: boolean;
1581
- template: string;
1582
- }[];
1583
- };
1584
- export declare const generalWithNoRelationalFieldsData: {
1585
- createdAt: string;
1586
- updatedAt: string;
1587
- createdById: number;
1588
- updatedById: number;
1589
- testdataid: number;
1590
- orgcode: string;
1591
- orgname: string;
1592
- address: string;
1593
- phone: string;
1594
- email: string;
1595
- url: string;
1596
- staffnum: number;
1597
- regcapital: number;
1598
- paidcapital: number;
1599
- insuranceratio: number;
1600
- isenable: boolean;
1601
- status_singleselect: string;
1602
- range_multipleselect: string[];
1603
- status_radio: string;
1604
- range_check: string[];
1605
- establishdate: string;
1606
- }[];
1607
- declare const _default: {
1608
- appendJsonCollectionName: typeof appendJsonCollectionName;
1609
- builtinGeneral: {
1610
- collections: {
1611
- key: string;
1612
- name: string;
1613
- title: string;
1614
- inherit: boolean;
1615
- hidden: boolean;
1616
- description: any;
1617
- fields: ({
1618
- key: string;
1619
- name: string;
1620
- type: string;
1621
- interface: string;
1622
- description: any;
1623
- collectionName: string;
1624
- parentKey: any;
1625
- reverseKey: any;
1626
- autoIncrement: boolean;
1627
- primaryKey: boolean;
1628
- allowNull: boolean;
1629
- uiSchema: {
1630
- type: string;
1631
- title: string;
1632
- 'x-component': string;
1633
- 'x-read-pretty': boolean;
1634
- 'x-component-props'?: undefined;
1635
- };
1636
- field?: undefined;
1637
- target?: undefined;
1638
- foreignKey?: undefined;
1639
- targetKey?: undefined;
1640
- } | {
1641
- key: string;
1642
- name: string;
1643
- type: string;
1644
- interface: string;
1645
- description: any;
1646
- collectionName: string;
1647
- parentKey: any;
1648
- reverseKey: any;
1649
- field: string;
1650
- uiSchema: {
1651
- type: string;
1652
- title: string;
1653
- 'x-component': string;
1654
- 'x-component-props': {
1655
- fieldNames?: undefined;
1656
- };
1657
- 'x-read-pretty': boolean;
1658
- };
1659
- autoIncrement?: undefined;
1660
- primaryKey?: undefined;
1661
- allowNull?: undefined;
1662
- target?: undefined;
1663
- foreignKey?: undefined;
1664
- targetKey?: undefined;
1665
- } | {
1666
- key: string;
1667
- name: string;
1668
- type: string;
1669
- interface: string;
1670
- description: any;
1671
- collectionName: string;
1672
- parentKey: any;
1673
- reverseKey: any;
1674
- target: string;
1675
- foreignKey: string;
1676
- uiSchema: {
1677
- type: string;
1678
- title: string;
1679
- 'x-component': string;
1680
- 'x-component-props': {
1681
- fieldNames: {
1682
- value: string;
1683
- label: string;
1684
- };
1685
- };
1686
- 'x-read-pretty': boolean;
1687
- };
1688
- targetKey: string;
1689
- autoIncrement?: undefined;
1690
- primaryKey?: undefined;
1691
- allowNull?: undefined;
1692
- field?: undefined;
1693
- })[];
1694
- category: any[];
1695
- logging: boolean;
1696
- autoGenId: boolean;
1697
- createdBy: boolean;
1698
- updatedBy: boolean;
1699
- createdAt: boolean;
1700
- updatedAt: boolean;
1701
- sortable: boolean;
1702
- template: string;
1703
- view: boolean;
1704
- schema: string;
1705
- }[];
1706
- };
1707
- builtinFile: {
1708
- collections: {
1709
- key: string;
1710
- name: string;
1711
- title: string;
1712
- inherit: boolean;
1713
- hidden: boolean;
1714
- description: any;
1715
- fields: ({
1716
- key: string;
1717
- name: string;
1718
- type: string;
1719
- interface: string;
1720
- description: any;
1721
- collectionName: string;
1722
- parentKey: any;
1723
- reverseKey: any;
1724
- deletable: boolean;
1725
- uiSchema: {
1726
- type: string;
1727
- title: string;
1728
- 'x-component': string;
1729
- 'x-read-pretty'?: undefined;
1730
- 'x-component-props'?: undefined;
1731
- };
1732
- field?: undefined;
1733
- comment?: undefined;
1734
- target?: undefined;
1735
- foreignKey?: undefined;
1736
- targetKey?: undefined;
1737
- defaultValue?: undefined;
1738
- autoIncrement?: undefined;
1739
- primaryKey?: undefined;
1740
- allowNull?: undefined;
1741
- } | {
1742
- key: string;
1743
- name: string;
1744
- type: string;
1745
- interface: string;
1746
- description: any;
1747
- collectionName: string;
1748
- parentKey: any;
1749
- reverseKey: any;
1750
- deletable: boolean;
1751
- uiSchema: {
1752
- type: string;
1753
- title: string;
1754
- 'x-component': string;
1755
- 'x-read-pretty': boolean;
1756
- 'x-component-props'?: undefined;
1757
- };
1758
- field?: undefined;
1759
- comment?: undefined;
1760
- target?: undefined;
1761
- foreignKey?: undefined;
1762
- targetKey?: undefined;
1763
- defaultValue?: undefined;
1764
- autoIncrement?: undefined;
1765
- primaryKey?: undefined;
1766
- allowNull?: undefined;
1767
- } | {
1768
- key: string;
1769
- name: string;
1770
- type: string;
1771
- interface: string;
1772
- description: any;
1773
- collectionName: string;
1774
- parentKey: any;
1775
- reverseKey: any;
1776
- deletable: boolean;
1777
- uiSchema: {
1778
- type: string;
1779
- title: string;
1780
- 'x-component': string;
1781
- 'x-read-pretty': boolean;
1782
- 'x-component-props': {
1783
- stringMode: boolean;
1784
- step: string;
1785
- fieldNames?: undefined;
1786
- };
1787
- };
1788
- field?: undefined;
1789
- comment?: undefined;
1790
- target?: undefined;
1791
- foreignKey?: undefined;
1792
- targetKey?: undefined;
1793
- defaultValue?: undefined;
1794
- autoIncrement?: undefined;
1795
- primaryKey?: undefined;
1796
- allowNull?: undefined;
1797
- } | {
1798
- key: string;
1799
- name: string;
1800
- type: string;
1801
- interface: string;
1802
- description: any;
1803
- collectionName: string;
1804
- parentKey: any;
1805
- reverseKey: any;
1806
- field: string;
1807
- deletable: boolean;
1808
- uiSchema: {
1809
- type: string;
1810
- title: string;
1811
- 'x-component': string;
1812
- 'x-read-pretty': boolean;
1813
- 'x-component-props'?: undefined;
1814
- };
1815
- comment?: undefined;
1816
- target?: undefined;
1817
- foreignKey?: undefined;
1818
- targetKey?: undefined;
1819
- defaultValue?: undefined;
1820
- autoIncrement?: undefined;
1821
- primaryKey?: undefined;
1822
- allowNull?: undefined;
1823
- } | {
1824
- key: string;
1825
- name: string;
1826
- type: string;
1827
- interface: any;
1828
- description: any;
1829
- collectionName: string;
1830
- parentKey: any;
1831
- reverseKey: any;
1832
- comment: string;
1833
- target: string;
1834
- foreignKey: string;
1835
- deletable: boolean;
1836
- targetKey: string;
1837
- uiSchema?: undefined;
1838
- field?: undefined;
1839
- defaultValue?: undefined;
1840
- autoIncrement?: undefined;
1841
- primaryKey?: undefined;
1842
- allowNull?: undefined;
1843
- } | {
1844
- key: string;
1845
- name: string;
1846
- type: string;
1847
- interface: any;
1848
- description: any;
1849
- collectionName: string;
1850
- parentKey: any;
1851
- reverseKey: any;
1852
- deletable: boolean;
1853
- defaultValue: {};
1854
- uiSchema?: undefined;
1855
- field?: undefined;
1856
- comment?: undefined;
1857
- target?: undefined;
1858
- foreignKey?: undefined;
1859
- targetKey?: undefined;
1860
- autoIncrement?: undefined;
1861
- primaryKey?: undefined;
1862
- allowNull?: undefined;
1863
- } | {
1864
- key: string;
1865
- name: string;
1866
- type: string;
1867
- interface: string;
1868
- description: any;
1869
- collectionName: string;
1870
- parentKey: any;
1871
- reverseKey: any;
1872
- autoIncrement: boolean;
1873
- primaryKey: boolean;
1874
- allowNull: boolean;
1875
- uiSchema: {
1876
- type: string;
1877
- title: string;
1878
- 'x-component': string;
1879
- 'x-read-pretty': boolean;
1880
- 'x-component-props'?: undefined;
1881
- };
1882
- deletable?: undefined;
1883
- field?: undefined;
1884
- comment?: undefined;
1885
- target?: undefined;
1886
- foreignKey?: undefined;
1887
- targetKey?: undefined;
1888
- defaultValue?: undefined;
1889
- } | {
1890
- key: string;
1891
- name: string;
1892
- type: string;
1893
- interface: string;
1894
- description: any;
1895
- collectionName: string;
1896
- parentKey: any;
1897
- reverseKey: any;
1898
- field: string;
1899
- uiSchema: {
1900
- type: string;
1901
- title: string;
1902
- 'x-component': string;
1903
- 'x-component-props': {
1904
- stringMode?: undefined;
1905
- step?: undefined;
1906
- fieldNames?: undefined;
1907
- };
1908
- 'x-read-pretty': boolean;
1909
- };
1910
- deletable?: undefined;
1911
- comment?: undefined;
1912
- target?: undefined;
1913
- foreignKey?: undefined;
1914
- targetKey?: undefined;
1915
- defaultValue?: undefined;
1916
- autoIncrement?: undefined;
1917
- primaryKey?: undefined;
1918
- allowNull?: undefined;
1919
- } | {
1920
- key: string;
1921
- name: string;
1922
- type: string;
1923
- interface: string;
1924
- description: any;
1925
- collectionName: string;
1926
- parentKey: any;
1927
- reverseKey: any;
1928
- target: string;
1929
- foreignKey: string;
1930
- uiSchema: {
1931
- type: string;
1932
- title: string;
1933
- 'x-component': string;
1934
- 'x-component-props': {
1935
- fieldNames: {
1936
- value: string;
1937
- label: string;
1938
- };
1939
- stringMode?: undefined;
1940
- step?: undefined;
1941
- };
1942
- 'x-read-pretty': boolean;
1943
- };
1944
- targetKey: string;
1945
- deletable?: undefined;
1946
- field?: undefined;
1947
- comment?: undefined;
1948
- defaultValue?: undefined;
1949
- autoIncrement?: undefined;
1950
- primaryKey?: undefined;
1951
- allowNull?: undefined;
1952
- })[];
1953
- category: any[];
1954
- logging: boolean;
1955
- template: string;
1956
- view: boolean;
1957
- createdBy: boolean;
1958
- updatedBy: boolean;
1959
- storage: string;
1960
- schema: string;
1961
- }[];
1962
- };
1963
- builtinExpression: {
1964
- collections: {
1965
- key: string;
1966
- name: string;
1967
- title: string;
1968
- inherit: boolean;
1969
- hidden: boolean;
1970
- description: any;
1971
- fields: ({
1972
- key: string;
1973
- name: string;
1974
- type: string;
1975
- interface: string;
1976
- description: any;
1977
- collectionName: string;
1978
- parentKey: any;
1979
- reverseKey: any;
1980
- uiSchema: {
1981
- type: string;
1982
- title: string;
1983
- 'x-component': string;
1984
- enum: {
1985
- value: string;
1986
- label: string;
1987
- tooltip: string;
1988
- link: string;
1989
- }[];
1990
- default: string;
1991
- 'x-component-props'?: undefined;
1992
- 'x-read-pretty'?: undefined;
1993
- };
1994
- autoIncrement?: undefined;
1995
- primaryKey?: undefined;
1996
- allowNull?: undefined;
1997
- field?: undefined;
1998
- target?: undefined;
1999
- foreignKey?: undefined;
2000
- targetKey?: undefined;
2001
- } | {
2002
- key: string;
2003
- name: string;
2004
- type: string;
2005
- interface: string;
2006
- description: any;
2007
- collectionName: string;
2008
- parentKey: any;
2009
- reverseKey: any;
2010
- uiSchema: {
2011
- type: string;
2012
- title: string;
2013
- 'x-component': string;
2014
- 'x-component-props': {
2015
- fieldNames?: undefined;
2016
- };
2017
- enum?: undefined;
2018
- default?: undefined;
2019
- 'x-read-pretty'?: undefined;
2020
- };
2021
- autoIncrement?: undefined;
2022
- primaryKey?: undefined;
2023
- allowNull?: undefined;
2024
- field?: undefined;
2025
- target?: undefined;
2026
- foreignKey?: undefined;
2027
- targetKey?: undefined;
2028
- } | {
2029
- key: string;
2030
- name: string;
2031
- type: string;
2032
- interface: string;
2033
- description: any;
2034
- collectionName: string;
2035
- parentKey: any;
2036
- reverseKey: any;
2037
- uiSchema: {
2038
- type: string;
2039
- title: string;
2040
- 'x-component': string;
2041
- enum?: undefined;
2042
- default?: undefined;
2043
- 'x-component-props'?: undefined;
2044
- 'x-read-pretty'?: undefined;
2045
- };
2046
- autoIncrement?: undefined;
2047
- primaryKey?: undefined;
2048
- allowNull?: undefined;
2049
- field?: undefined;
2050
- target?: undefined;
2051
- foreignKey?: undefined;
2052
- targetKey?: undefined;
2053
- } | {
2054
- key: string;
2055
- name: string;
2056
- type: string;
2057
- interface: string;
2058
- description: any;
2059
- collectionName: string;
2060
- parentKey: any;
2061
- reverseKey: any;
2062
- autoIncrement: boolean;
2063
- primaryKey: boolean;
2064
- allowNull: boolean;
2065
- uiSchema: {
2066
- type: string;
2067
- title: string;
2068
- 'x-component': string;
2069
- 'x-read-pretty': boolean;
2070
- enum?: undefined;
2071
- default?: undefined;
2072
- 'x-component-props'?: undefined;
2073
- };
2074
- field?: undefined;
2075
- target?: undefined;
2076
- foreignKey?: undefined;
2077
- targetKey?: undefined;
2078
- } | {
2079
- key: string;
2080
- name: string;
2081
- type: string;
2082
- interface: string;
2083
- description: any;
2084
- collectionName: string;
2085
- parentKey: any;
2086
- reverseKey: any;
2087
- field: string;
2088
- uiSchema: {
2089
- type: string;
2090
- title: string;
2091
- 'x-component': string;
2092
- 'x-component-props': {
2093
- fieldNames?: undefined;
2094
- };
2095
- 'x-read-pretty': boolean;
2096
- enum?: undefined;
2097
- default?: undefined;
2098
- };
2099
- autoIncrement?: undefined;
2100
- primaryKey?: undefined;
2101
- allowNull?: undefined;
2102
- target?: undefined;
2103
- foreignKey?: undefined;
2104
- targetKey?: undefined;
2105
- } | {
2106
- key: string;
2107
- name: string;
2108
- type: string;
2109
- interface: string;
2110
- description: any;
2111
- collectionName: string;
2112
- parentKey: any;
2113
- reverseKey: any;
2114
- target: string;
2115
- foreignKey: string;
2116
- uiSchema: {
2117
- type: string;
2118
- title: string;
2119
- 'x-component': string;
2120
- 'x-component-props': {
2121
- fieldNames: {
2122
- value: string;
2123
- label: string;
2124
- };
2125
- };
2126
- 'x-read-pretty': boolean;
2127
- enum?: undefined;
2128
- default?: undefined;
2129
- };
2130
- targetKey: string;
2131
- autoIncrement?: undefined;
2132
- primaryKey?: undefined;
2133
- allowNull?: undefined;
2134
- field?: undefined;
2135
- })[];
2136
- category: any[];
2137
- logging: boolean;
2138
- template: string;
2139
- view: boolean;
2140
- createdBy: boolean;
2141
- updatedBy: boolean;
2142
- createdAt: boolean;
2143
- updatedAt: boolean;
2144
- sortable: boolean;
2145
- schema: string;
2146
- }[];
2147
- };
2148
- generalWithNoRelationalFields: {
2149
- collections: {
2150
- key: string;
2151
- name: string;
2152
- title: string;
2153
- inherit: boolean;
2154
- hidden: boolean;
2155
- fields: ({
2156
- key: string;
2157
- name: string;
2158
- type: string;
2159
- interface: string;
2160
- collectionName: string;
2161
- parentKey: any;
2162
- reverseKey: any;
2163
- autoIncrement: boolean;
2164
- primaryKey: boolean;
2165
- allowNull: boolean;
2166
- uiSchema: {
2167
- type: string;
2168
- title: string;
2169
- 'x-component': string;
2170
- 'x-read-pretty': boolean;
2171
- 'x-component-props'?: undefined;
2172
- 'x-validator'?: undefined;
2173
- enum?: undefined;
2174
- default?: undefined;
2175
- };
2176
- field?: undefined;
2177
- target?: undefined;
2178
- foreignKey?: undefined;
2179
- targetKey?: undefined;
2180
- patterns?: undefined;
2181
- inputable?: undefined;
2182
- defaultValue?: undefined;
2183
- dataType?: undefined;
2184
- engine?: undefined;
2185
- expression?: undefined;
2186
- } | {
2187
- key: string;
2188
- name: string;
2189
- type: string;
2190
- interface: string;
2191
- collectionName: string;
2192
- parentKey: any;
2193
- reverseKey: any;
2194
- field: string;
2195
- uiSchema: {
2196
- type: string;
2197
- title: string;
2198
- 'x-component': string;
2199
- 'x-component-props': {
2200
- fieldNames?: undefined;
2201
- type?: undefined;
2202
- stringMode?: undefined;
2203
- step?: undefined;
2204
- addonAfter?: undefined;
2205
- mode?: undefined;
2206
- dateFormat?: undefined;
2207
- gmt?: undefined;
2208
- showTime?: undefined;
2209
- autoSize?: undefined;
2210
- };
2211
- 'x-read-pretty': boolean;
2212
- 'x-validator'?: undefined;
2213
- enum?: undefined;
2214
- default?: undefined;
2215
- };
2216
- autoIncrement?: undefined;
2217
- primaryKey?: undefined;
2218
- allowNull?: undefined;
2219
- target?: undefined;
2220
- foreignKey?: undefined;
2221
- targetKey?: undefined;
2222
- patterns?: undefined;
2223
- inputable?: undefined;
2224
- defaultValue?: undefined;
2225
- dataType?: undefined;
2226
- engine?: undefined;
2227
- expression?: undefined;
2228
- } | {
2229
- key: string;
2230
- name: string;
2231
- type: string;
2232
- interface: string;
2233
- collectionName: string;
2234
- parentKey: any;
2235
- reverseKey: any;
2236
- target: string;
2237
- foreignKey: string;
2238
- uiSchema: {
2239
- type: string;
2240
- title: string;
2241
- 'x-component': string;
2242
- 'x-component-props': {
2243
- fieldNames: {
2244
- value: string;
2245
- label: string;
2246
- };
2247
- type?: undefined;
2248
- stringMode?: undefined;
2249
- step?: undefined;
2250
- addonAfter?: undefined;
2251
- mode?: undefined;
2252
- dateFormat?: undefined;
2253
- gmt?: undefined;
2254
- showTime?: undefined;
2255
- autoSize?: undefined;
2256
- };
2257
- 'x-read-pretty': boolean;
2258
- 'x-validator'?: undefined;
2259
- enum?: undefined;
2260
- default?: undefined;
2261
- };
2262
- targetKey: string;
2263
- autoIncrement?: undefined;
2264
- primaryKey?: undefined;
2265
- allowNull?: undefined;
2266
- field?: undefined;
2267
- patterns?: undefined;
2268
- inputable?: undefined;
2269
- defaultValue?: undefined;
2270
- dataType?: undefined;
2271
- engine?: undefined;
2272
- expression?: undefined;
2273
- } | {
2274
- key: string;
2275
- name: string;
2276
- type: string;
2277
- interface: string;
2278
- collectionName: string;
2279
- parentKey: any;
2280
- reverseKey: any;
2281
- patterns: ({
2282
- type: string;
2283
- options: {
2284
- value: string;
2285
- digits?: undefined;
2286
- start?: undefined;
2287
- key?: undefined;
2288
- };
2289
- } | {
2290
- type: string;
2291
- options: {
2292
- digits: number;
2293
- start: number;
2294
- key: number;
2295
- value?: undefined;
2296
- };
2297
- })[];
2298
- uiSchema: {
2299
- type: string;
2300
- 'x-component': string;
2301
- 'x-component-props': {
2302
- fieldNames?: undefined;
2303
- type?: undefined;
2304
- stringMode?: undefined;
2305
- step?: undefined;
2306
- addonAfter?: undefined;
2307
- mode?: undefined;
2308
- dateFormat?: undefined;
2309
- gmt?: undefined;
2310
- showTime?: undefined;
2311
- autoSize?: undefined;
2312
- };
2313
- title: string;
2314
- 'x-read-pretty'?: undefined;
2315
- 'x-validator'?: undefined;
2316
- enum?: undefined;
2317
- default?: undefined;
2318
- };
2319
- inputable: boolean;
2320
- autoIncrement?: undefined;
2321
- primaryKey?: undefined;
2322
- allowNull?: undefined;
2323
- field?: undefined;
2324
- target?: undefined;
2325
- foreignKey?: undefined;
2326
- targetKey?: undefined;
2327
- defaultValue?: undefined;
2328
- dataType?: undefined;
2329
- engine?: undefined;
2330
- expression?: undefined;
2331
- } | {
2332
- key: string;
2333
- name: string;
2334
- type: string;
2335
- interface: string;
2336
- collectionName: string;
2337
- parentKey: any;
2338
- reverseKey: any;
2339
- uiSchema: {
2340
- type: string;
2341
- 'x-component': string;
2342
- title: string;
2343
- 'x-read-pretty'?: undefined;
2344
- 'x-component-props'?: undefined;
2345
- 'x-validator'?: undefined;
2346
- enum?: undefined;
2347
- default?: undefined;
2348
- };
2349
- autoIncrement?: undefined;
2350
- primaryKey?: undefined;
2351
- allowNull?: undefined;
2352
- field?: undefined;
2353
- target?: undefined;
2354
- foreignKey?: undefined;
2355
- targetKey?: undefined;
2356
- patterns?: undefined;
2357
- inputable?: undefined;
2358
- defaultValue?: undefined;
2359
- dataType?: undefined;
2360
- engine?: undefined;
2361
- expression?: undefined;
2362
- } | {
2363
- key: string;
2364
- name: string;
2365
- type: string;
2366
- interface: string;
2367
- collectionName: string;
2368
- parentKey: any;
2369
- reverseKey: any;
2370
- uiSchema: {
2371
- type: string;
2372
- 'x-component': string;
2373
- 'x-component-props': {
2374
- type: string;
2375
- fieldNames?: undefined;
2376
- stringMode?: undefined;
2377
- step?: undefined;
2378
- addonAfter?: undefined;
2379
- mode?: undefined;
2380
- dateFormat?: undefined;
2381
- gmt?: undefined;
2382
- showTime?: undefined;
2383
- autoSize?: undefined;
2384
- };
2385
- title: string;
2386
- 'x-read-pretty'?: undefined;
2387
- 'x-validator'?: undefined;
2388
- enum?: undefined;
2389
- default?: undefined;
2390
- };
2391
- autoIncrement?: undefined;
2392
- primaryKey?: undefined;
2393
- allowNull?: undefined;
2394
- field?: undefined;
2395
- target?: undefined;
2396
- foreignKey?: undefined;
2397
- targetKey?: undefined;
2398
- patterns?: undefined;
2399
- inputable?: undefined;
2400
- defaultValue?: undefined;
2401
- dataType?: undefined;
2402
- engine?: undefined;
2403
- expression?: undefined;
2404
- } | {
2405
- key: string;
2406
- name: string;
2407
- type: string;
2408
- interface: string;
2409
- collectionName: string;
2410
- parentKey: any;
2411
- reverseKey: any;
2412
- uiSchema: {
2413
- type: string;
2414
- 'x-component': string;
2415
- 'x-validator': string;
2416
- title: string;
2417
- 'x-read-pretty'?: undefined;
2418
- 'x-component-props'?: undefined;
2419
- enum?: undefined;
2420
- default?: undefined;
2421
- };
2422
- autoIncrement?: undefined;
2423
- primaryKey?: undefined;
2424
- allowNull?: undefined;
2425
- field?: undefined;
2426
- target?: undefined;
2427
- foreignKey?: undefined;
2428
- targetKey?: undefined;
2429
- patterns?: undefined;
2430
- inputable?: undefined;
2431
- defaultValue?: undefined;
2432
- dataType?: undefined;
2433
- engine?: undefined;
2434
- expression?: undefined;
2435
- } | {
2436
- key: string;
2437
- name: string;
2438
- type: string;
2439
- interface: string;
2440
- collectionName: string;
2441
- parentKey: any;
2442
- reverseKey: any;
2443
- uiSchema: {
2444
- type: string;
2445
- 'x-component': string;
2446
- 'x-component-props': {
2447
- stringMode: boolean;
2448
- step: string;
2449
- fieldNames?: undefined;
2450
- type?: undefined;
2451
- addonAfter?: undefined;
2452
- mode?: undefined;
2453
- dateFormat?: undefined;
2454
- gmt?: undefined;
2455
- showTime?: undefined;
2456
- autoSize?: undefined;
2457
- };
2458
- 'x-validator': string;
2459
- title: string;
2460
- 'x-read-pretty'?: undefined;
2461
- enum?: undefined;
2462
- default?: undefined;
2463
- };
2464
- autoIncrement?: undefined;
2465
- primaryKey?: undefined;
2466
- allowNull?: undefined;
2467
- field?: undefined;
2468
- target?: undefined;
2469
- foreignKey?: undefined;
2470
- targetKey?: undefined;
2471
- patterns?: undefined;
2472
- inputable?: undefined;
2473
- defaultValue?: undefined;
2474
- dataType?: undefined;
2475
- engine?: undefined;
2476
- expression?: undefined;
2477
- } | {
2478
- key: string;
2479
- name: string;
2480
- type: string;
2481
- interface: string;
2482
- collectionName: string;
2483
- parentKey: any;
2484
- reverseKey: any;
2485
- uiSchema: {
2486
- 'x-component-props': {
2487
- step: string;
2488
- stringMode: boolean;
2489
- fieldNames?: undefined;
2490
- type?: undefined;
2491
- addonAfter?: undefined;
2492
- mode?: undefined;
2493
- dateFormat?: undefined;
2494
- gmt?: undefined;
2495
- showTime?: undefined;
2496
- autoSize?: undefined;
2497
- };
2498
- type: string;
2499
- 'x-component': string;
2500
- title: string;
2501
- 'x-read-pretty'?: undefined;
2502
- 'x-validator'?: undefined;
2503
- enum?: undefined;
2504
- default?: undefined;
2505
- };
2506
- autoIncrement?: undefined;
2507
- primaryKey?: undefined;
2508
- allowNull?: undefined;
2509
- field?: undefined;
2510
- target?: undefined;
2511
- foreignKey?: undefined;
2512
- targetKey?: undefined;
2513
- patterns?: undefined;
2514
- inputable?: undefined;
2515
- defaultValue?: undefined;
2516
- dataType?: undefined;
2517
- engine?: undefined;
2518
- expression?: undefined;
2519
- } | {
2520
- key: string;
2521
- name: string;
2522
- type: string;
2523
- interface: string;
2524
- collectionName: string;
2525
- parentKey: any;
2526
- reverseKey: any;
2527
- uiSchema: {
2528
- 'x-component-props': {
2529
- step: string;
2530
- stringMode: boolean;
2531
- addonAfter: string;
2532
- fieldNames?: undefined;
2533
- type?: undefined;
2534
- mode?: undefined;
2535
- dateFormat?: undefined;
2536
- gmt?: undefined;
2537
- showTime?: undefined;
2538
- autoSize?: undefined;
2539
- };
2540
- type: string;
2541
- 'x-component': string;
2542
- title: string;
2543
- 'x-read-pretty'?: undefined;
2544
- 'x-validator'?: undefined;
2545
- enum?: undefined;
2546
- default?: undefined;
2547
- };
2548
- autoIncrement?: undefined;
2549
- primaryKey?: undefined;
2550
- allowNull?: undefined;
2551
- field?: undefined;
2552
- target?: undefined;
2553
- foreignKey?: undefined;
2554
- targetKey?: undefined;
2555
- patterns?: undefined;
2556
- inputable?: undefined;
2557
- defaultValue?: undefined;
2558
- dataType?: undefined;
2559
- engine?: undefined;
2560
- expression?: undefined;
2561
- } | {
2562
- key: string;
2563
- name: string;
2564
- type: string;
2565
- interface: string;
2566
- collectionName: string;
2567
- parentKey: any;
2568
- reverseKey: any;
2569
- uiSchema: {
2570
- enum: {
2571
- value: string;
2572
- label: string;
2573
- }[];
2574
- type: string;
2575
- 'x-component': string;
2576
- title: string;
2577
- 'x-read-pretty'?: undefined;
2578
- 'x-component-props'?: undefined;
2579
- 'x-validator'?: undefined;
2580
- default?: undefined;
2581
- };
2582
- autoIncrement?: undefined;
2583
- primaryKey?: undefined;
2584
- allowNull?: undefined;
2585
- field?: undefined;
2586
- target?: undefined;
2587
- foreignKey?: undefined;
2588
- targetKey?: undefined;
2589
- patterns?: undefined;
2590
- inputable?: undefined;
2591
- defaultValue?: undefined;
2592
- dataType?: undefined;
2593
- engine?: undefined;
2594
- expression?: undefined;
2595
- } | {
2596
- key: string;
2597
- name: string;
2598
- type: string;
2599
- interface: string;
2600
- collectionName: string;
2601
- parentKey: any;
2602
- reverseKey: any;
2603
- uiSchema: {
2604
- enum: {
2605
- value: string;
2606
- label: string;
2607
- }[];
2608
- type: string;
2609
- 'x-component': string;
2610
- 'x-component-props': {
2611
- mode: string;
2612
- fieldNames?: undefined;
2613
- type?: undefined;
2614
- stringMode?: undefined;
2615
- step?: undefined;
2616
- addonAfter?: undefined;
2617
- dateFormat?: undefined;
2618
- gmt?: undefined;
2619
- showTime?: undefined;
2620
- autoSize?: undefined;
2621
- };
2622
- title: string;
2623
- 'x-read-pretty'?: undefined;
2624
- 'x-validator'?: undefined;
2625
- default?: undefined;
2626
- };
2627
- defaultValue: any[];
2628
- autoIncrement?: undefined;
2629
- primaryKey?: undefined;
2630
- allowNull?: undefined;
2631
- field?: undefined;
2632
- target?: undefined;
2633
- foreignKey?: undefined;
2634
- targetKey?: undefined;
2635
- patterns?: undefined;
2636
- inputable?: undefined;
2637
- dataType?: undefined;
2638
- engine?: undefined;
2639
- expression?: undefined;
2640
- } | {
2641
- key: string;
2642
- name: string;
2643
- type: string;
2644
- interface: string;
2645
- collectionName: string;
2646
- parentKey: any;
2647
- reverseKey: any;
2648
- uiSchema: {
2649
- enum: {
2650
- value: string;
2651
- label: string;
2652
- }[];
2653
- type: string;
2654
- 'x-component': string;
2655
- title: string;
2656
- 'x-read-pretty'?: undefined;
2657
- 'x-component-props'?: undefined;
2658
- 'x-validator'?: undefined;
2659
- default?: undefined;
2660
- };
2661
- defaultValue: any[];
2662
- autoIncrement?: undefined;
2663
- primaryKey?: undefined;
2664
- allowNull?: undefined;
2665
- field?: undefined;
2666
- target?: undefined;
2667
- foreignKey?: undefined;
2668
- targetKey?: undefined;
2669
- patterns?: undefined;
2670
- inputable?: undefined;
2671
- dataType?: undefined;
2672
- engine?: undefined;
2673
- expression?: undefined;
2674
- } | {
2675
- key: string;
2676
- name: string;
2677
- type: string;
2678
- interface: string;
2679
- collectionName: string;
2680
- parentKey: any;
2681
- reverseKey: any;
2682
- uiSchema: {
2683
- 'x-component-props': {
2684
- dateFormat: string;
2685
- gmt: boolean;
2686
- showTime: boolean;
2687
- fieldNames?: undefined;
2688
- type?: undefined;
2689
- stringMode?: undefined;
2690
- step?: undefined;
2691
- addonAfter?: undefined;
2692
- mode?: undefined;
2693
- autoSize?: undefined;
2694
- };
2695
- type: string;
2696
- 'x-component': string;
2697
- title: string;
2698
- 'x-read-pretty'?: undefined;
2699
- 'x-validator'?: undefined;
2700
- enum?: undefined;
2701
- default?: undefined;
2702
- };
2703
- autoIncrement?: undefined;
2704
- primaryKey?: undefined;
2705
- allowNull?: undefined;
2706
- field?: undefined;
2707
- target?: undefined;
2708
- foreignKey?: undefined;
2709
- targetKey?: undefined;
2710
- patterns?: undefined;
2711
- inputable?: undefined;
2712
- defaultValue?: undefined;
2713
- dataType?: undefined;
2714
- engine?: undefined;
2715
- expression?: undefined;
2716
- } | {
2717
- key: string;
2718
- name: string;
2719
- type: string;
2720
- interface: string;
2721
- collectionName: string;
2722
- parentKey: any;
2723
- reverseKey: any;
2724
- defaultValue: any;
2725
- uiSchema: {
2726
- type: string;
2727
- 'x-component': string;
2728
- 'x-component-props': {
2729
- autoSize: {
2730
- minRows: number;
2731
- };
2732
- fieldNames?: undefined;
2733
- type?: undefined;
2734
- stringMode?: undefined;
2735
- step?: undefined;
2736
- addonAfter?: undefined;
2737
- mode?: undefined;
2738
- dateFormat?: undefined;
2739
- gmt?: undefined;
2740
- showTime?: undefined;
2741
- };
2742
- default: any;
2743
- title: string;
2744
- 'x-read-pretty'?: undefined;
2745
- 'x-validator'?: undefined;
2746
- enum?: undefined;
2747
- };
2748
- autoIncrement?: undefined;
2749
- primaryKey?: undefined;
2750
- allowNull?: undefined;
2751
- field?: undefined;
2752
- target?: undefined;
2753
- foreignKey?: undefined;
2754
- targetKey?: undefined;
2755
- patterns?: undefined;
2756
- inputable?: undefined;
2757
- dataType?: undefined;
2758
- engine?: undefined;
2759
- expression?: undefined;
2760
- } | {
2761
- key: string;
2762
- name: string;
2763
- type: string;
2764
- interface: string;
2765
- collectionName: string;
2766
- parentKey: any;
2767
- reverseKey: any;
2768
- dataType: string;
2769
- uiSchema: {
2770
- 'x-component-props': {
2771
- step: string;
2772
- stringMode: boolean;
2773
- fieldNames?: undefined;
2774
- type?: undefined;
2775
- addonAfter?: undefined;
2776
- mode?: undefined;
2777
- dateFormat?: undefined;
2778
- gmt?: undefined;
2779
- showTime?: undefined;
2780
- autoSize?: undefined;
2781
- };
2782
- type: string;
2783
- 'x-component': string;
2784
- 'x-read-pretty': boolean;
2785
- title: string;
2786
- 'x-validator'?: undefined;
2787
- enum?: undefined;
2788
- default?: undefined;
2789
- };
2790
- engine: string;
2791
- expression: string;
2792
- autoIncrement?: undefined;
2793
- primaryKey?: undefined;
2794
- allowNull?: undefined;
2795
- field?: undefined;
2796
- target?: undefined;
2797
- foreignKey?: undefined;
2798
- targetKey?: undefined;
2799
- patterns?: undefined;
2800
- inputable?: undefined;
2801
- defaultValue?: undefined;
2802
- })[];
2803
- category: any[];
2804
- logging: boolean;
2805
- autoGenId: boolean;
2806
- createdBy: boolean;
2807
- updatedBy: boolean;
2808
- createdAt: boolean;
2809
- updatedAt: boolean;
2810
- sortable: boolean;
2811
- template: string;
2812
- }[];
2813
- };
2814
- generalWithNoRelationalFieldsData: {
2815
- createdAt: string;
2816
- updatedAt: string;
2817
- createdById: number;
2818
- updatedById: number;
2819
- testdataid: number;
2820
- orgcode: string;
2821
- orgname: string;
2822
- address: string;
2823
- phone: string;
2824
- email: string;
2825
- url: string;
2826
- staffnum: number;
2827
- regcapital: number;
2828
- paidcapital: number;
2829
- insuranceratio: number;
2830
- isenable: boolean;
2831
- status_singleselect: string;
2832
- range_multipleselect: string[];
2833
- status_radio: string;
2834
- range_check: string[];
2835
- establishdate: string;
2836
- }[];
2837
- };
2838
- export default _default;