/** * This file is part of the NocoBase (R) project. * Copyright (c) 2020-2024 NocoBase Co., Ltd. * Authors: NocoBase Team. * * This project is dual-licensed under AGPL-3.0 and NocoBase Commercial License. * For more information, please refer to: https://www.nocobase.com/agreement. */ /** * 为json对象中collections节点的name、title属性添加后缀 * 为json对象中fields节点的collectionName、through、target性添加后缀 * @param jsonObj json对象 * @param appendText 后缀文本 */ export declare function appendJsonCollectionName(jsonObj: any, appendText: string): any; /** * builtin_ 为NocoBase内置模板,同NocoBase在页面创建效果一致主要用法3种: * 1是测试用例仅需一个无业务字段的表即可验证, * 2是作为多对多的中间表, * 3是存在先表后关系字段的情况,使用create内置模板表再update表的方式更新数据表来添加全部字段 * e2e_ 按照不同场景的数据表,可以多个测试用例共用一个或一套数据表 */ export declare const builtinGeneral: { collections: { key: string; name: string; title: string; inherit: boolean; hidden: boolean; description: any; fields: ({ key: string; name: string; type: string; interface: string; description: any; collectionName: string; parentKey: any; reverseKey: any; autoIncrement: boolean; primaryKey: boolean; allowNull: boolean; uiSchema: { type: string; title: string; 'x-component': string; 'x-read-pretty': boolean; 'x-component-props'?: undefined; }; field?: undefined; target?: undefined; foreignKey?: undefined; targetKey?: undefined; } | { key: string; name: string; type: string; interface: string; description: any; collectionName: string; parentKey: any; reverseKey: any; field: string; uiSchema: { type: string; title: string; 'x-component': string; 'x-component-props': { fieldNames?: undefined; }; 'x-read-pretty': boolean; }; autoIncrement?: undefined; primaryKey?: undefined; allowNull?: undefined; target?: undefined; foreignKey?: undefined; targetKey?: undefined; } | { key: string; name: string; type: string; interface: string; description: any; collectionName: string; parentKey: any; reverseKey: any; target: string; foreignKey: string; uiSchema: { type: string; title: string; 'x-component': string; 'x-component-props': { fieldNames: { value: string; label: string; }; }; 'x-read-pretty': boolean; }; targetKey: string; autoIncrement?: undefined; primaryKey?: undefined; allowNull?: undefined; field?: undefined; })[]; category: any[]; logging: boolean; autoGenId: boolean; createdBy: boolean; updatedBy: boolean; createdAt: boolean; updatedAt: boolean; sortable: boolean; template: string; view: boolean; schema: string; }[]; }; export declare const builtinCalendar: { collections: { key: string; name: string; title: string; inherit: boolean; hidden: boolean; description: any; fields: ({ key: string; name: string; type: string; interface: string; description: any; collectionName: string; parentKey: any; reverseKey: any; uiSchema: { type: string; title: string; 'x-component': string; 'x-component-props': string; enum: { label: string; value: string; }[]; 'x-read-pretty'?: undefined; }; autoIncrement?: undefined; primaryKey?: undefined; allowNull?: undefined; field?: undefined; target?: undefined; foreignKey?: undefined; targetKey?: undefined; } | { key: string; name: string; type: string; interface: any; description: any; collectionName: string; parentKey: any; reverseKey: any; uiSchema?: undefined; autoIncrement?: undefined; primaryKey?: undefined; allowNull?: undefined; field?: undefined; target?: undefined; foreignKey?: undefined; targetKey?: undefined; } | { key: string; name: string; type: string; interface: string; description: any; collectionName: string; parentKey: any; reverseKey: any; autoIncrement: boolean; primaryKey: boolean; allowNull: boolean; uiSchema: { type: string; title: string; 'x-component': string; 'x-read-pretty': boolean; 'x-component-props'?: undefined; enum?: undefined; }; field?: undefined; target?: undefined; foreignKey?: undefined; targetKey?: undefined; } | { key: string; name: string; type: string; interface: string; description: any; collectionName: string; parentKey: any; reverseKey: any; field: string; uiSchema: { type: string; title: string; 'x-component': string; 'x-component-props': { fieldNames?: undefined; }; 'x-read-pretty': boolean; enum?: undefined; }; autoIncrement?: undefined; primaryKey?: undefined; allowNull?: undefined; target?: undefined; foreignKey?: undefined; targetKey?: undefined; } | { key: string; name: string; type: string; interface: string; description: any; collectionName: string; parentKey: any; reverseKey: any; target: string; foreignKey: string; uiSchema: { type: string; title: string; 'x-component': string; 'x-component-props': { fieldNames: { value: string; label: string; }; }; 'x-read-pretty': boolean; enum?: undefined; }; targetKey: string; autoIncrement?: undefined; primaryKey?: undefined; allowNull?: undefined; field?: undefined; })[]; category: any[]; logging: boolean; template: string; view: boolean; createdBy: boolean; updatedBy: boolean; createdAt: boolean; updatedAt: boolean; sortable: boolean; schema: string; }[]; }; export declare const builtinTree: { collections: { key: string; name: string; title: string; inherit: boolean; hidden: boolean; description: any; fields: ({ key: string; name: string; type: string; interface: string; description: any; collectionName: string; parentKey: any; reverseKey: any; isForeignKey: boolean; uiSchema: { type: string; title: string; 'x-component': string; 'x-read-pretty': boolean; 'x-component-props'?: undefined; }; target: string; foreignKey?: undefined; treeParent?: undefined; onDelete?: undefined; targetKey?: undefined; treeChildren?: undefined; sourceKey?: undefined; autoIncrement?: undefined; primaryKey?: undefined; allowNull?: undefined; field?: undefined; } | { key: string; name: string; type: string; interface: string; description: any; collectionName: string; parentKey: any; reverseKey: any; foreignKey: string; treeParent: boolean; onDelete: string; uiSchema: { title: string; 'x-component': string; 'x-component-props': { multiple: boolean; fieldNames: { label: string; value: string; }; }; type?: undefined; 'x-read-pretty'?: undefined; }; target: string; targetKey: string; isForeignKey?: undefined; treeChildren?: undefined; sourceKey?: undefined; autoIncrement?: undefined; primaryKey?: undefined; allowNull?: undefined; field?: undefined; } | { key: string; name: string; type: string; interface: string; description: any; collectionName: string; parentKey: any; reverseKey: any; foreignKey: string; treeChildren: boolean; onDelete: string; uiSchema: { title: string; 'x-component': string; 'x-component-props': { multiple: boolean; fieldNames: { label: string; value: string; }; }; type?: undefined; 'x-read-pretty'?: undefined; }; target: string; targetKey: string; sourceKey: string; isForeignKey?: undefined; treeParent?: undefined; autoIncrement?: undefined; primaryKey?: undefined; allowNull?: undefined; field?: undefined; } | { key: string; name: string; type: string; interface: string; description: any; collectionName: string; parentKey: any; reverseKey: any; autoIncrement: boolean; primaryKey: boolean; allowNull: boolean; uiSchema: { type: string; title: string; 'x-component': string; 'x-read-pretty': boolean; 'x-component-props'?: undefined; }; isForeignKey?: undefined; target?: undefined; foreignKey?: undefined; treeParent?: undefined; onDelete?: undefined; targetKey?: undefined; treeChildren?: undefined; sourceKey?: undefined; field?: undefined; } | { key: string; name: string; type: string; interface: string; description: any; collectionName: string; parentKey: any; reverseKey: any; field: string; uiSchema: { type: string; title: string; 'x-component': string; 'x-component-props': { multiple?: undefined; fieldNames?: undefined; }; 'x-read-pretty': boolean; }; isForeignKey?: undefined; target?: undefined; foreignKey?: undefined; treeParent?: undefined; onDelete?: undefined; targetKey?: undefined; treeChildren?: undefined; sourceKey?: undefined; autoIncrement?: undefined; primaryKey?: undefined; allowNull?: undefined; } | { key: string; name: string; type: string; interface: string; description: any; collectionName: string; parentKey: any; reverseKey: any; target: string; foreignKey: string; uiSchema: { type: string; title: string; 'x-component': string; 'x-component-props': { fieldNames: { value: string; label: string; }; multiple?: undefined; }; 'x-read-pretty': boolean; }; targetKey: string; isForeignKey?: undefined; treeParent?: undefined; onDelete?: undefined; treeChildren?: undefined; sourceKey?: undefined; autoIncrement?: undefined; primaryKey?: undefined; allowNull?: undefined; field?: undefined; })[]; category: any[]; logging: boolean; autoGenId: boolean; createdBy: boolean; updatedBy: boolean; createdAt: boolean; updatedAt: boolean; sortable: boolean; template: string; view: boolean; tree: string; schema: string; }[]; }; export declare const builtinFile: { collections: { key: string; name: string; title: string; inherit: boolean; hidden: boolean; description: any; fields: ({ key: string; name: string; type: string; interface: string; description: any; collectionName: string; parentKey: any; reverseKey: any; deletable: boolean; uiSchema: { type: string; title: string; 'x-component': string; 'x-read-pretty'?: undefined; 'x-component-props'?: undefined; }; field?: undefined; comment?: undefined; target?: undefined; foreignKey?: undefined; targetKey?: undefined; defaultValue?: undefined; autoIncrement?: undefined; primaryKey?: undefined; allowNull?: undefined; } | { key: string; name: string; type: string; interface: string; description: any; collectionName: string; parentKey: any; reverseKey: any; deletable: boolean; uiSchema: { type: string; title: string; 'x-component': string; 'x-read-pretty': boolean; 'x-component-props'?: undefined; }; field?: undefined; comment?: undefined; target?: undefined; foreignKey?: undefined; targetKey?: undefined; defaultValue?: undefined; autoIncrement?: undefined; primaryKey?: undefined; allowNull?: undefined; } | { key: string; name: string; type: string; interface: string; description: any; collectionName: string; parentKey: any; reverseKey: any; deletable: boolean; uiSchema: { type: string; title: string; 'x-component': string; 'x-read-pretty': boolean; 'x-component-props': { stringMode: boolean; step: string; fieldNames?: undefined; }; }; field?: undefined; comment?: undefined; target?: undefined; foreignKey?: undefined; targetKey?: undefined; defaultValue?: undefined; autoIncrement?: undefined; primaryKey?: undefined; allowNull?: undefined; } | { key: string; name: string; type: string; interface: string; description: any; collectionName: string; parentKey: any; reverseKey: any; field: string; deletable: boolean; uiSchema: { type: string; title: string; 'x-component': string; 'x-read-pretty': boolean; 'x-component-props'?: undefined; }; comment?: undefined; target?: undefined; foreignKey?: undefined; targetKey?: undefined; defaultValue?: undefined; autoIncrement?: undefined; primaryKey?: undefined; allowNull?: undefined; } | { key: string; name: string; type: string; interface: any; description: any; collectionName: string; parentKey: any; reverseKey: any; comment: string; target: string; foreignKey: string; deletable: boolean; targetKey: string; uiSchema?: undefined; field?: undefined; defaultValue?: undefined; autoIncrement?: undefined; primaryKey?: undefined; allowNull?: undefined; } | { key: string; name: string; type: string; interface: any; description: any; collectionName: string; parentKey: any; reverseKey: any; deletable: boolean; defaultValue: {}; uiSchema?: undefined; field?: undefined; comment?: undefined; target?: undefined; foreignKey?: undefined; targetKey?: undefined; autoIncrement?: undefined; primaryKey?: undefined; allowNull?: undefined; } | { key: string; name: string; type: string; interface: string; description: any; collectionName: string; parentKey: any; reverseKey: any; autoIncrement: boolean; primaryKey: boolean; allowNull: boolean; uiSchema: { type: string; title: string; 'x-component': string; 'x-read-pretty': boolean; 'x-component-props'?: undefined; }; deletable?: undefined; field?: undefined; comment?: undefined; target?: undefined; foreignKey?: undefined; targetKey?: undefined; defaultValue?: undefined; } | { key: string; name: string; type: string; interface: string; description: any; collectionName: string; parentKey: any; reverseKey: any; field: string; uiSchema: { type: string; title: string; 'x-component': string; 'x-component-props': { stringMode?: undefined; step?: undefined; fieldNames?: undefined; }; 'x-read-pretty': boolean; }; deletable?: undefined; comment?: undefined; target?: undefined; foreignKey?: undefined; targetKey?: undefined; defaultValue?: undefined; autoIncrement?: undefined; primaryKey?: undefined; allowNull?: undefined; } | { key: string; name: string; type: string; interface: string; description: any; collectionName: string; parentKey: any; reverseKey: any; target: string; foreignKey: string; uiSchema: { type: string; title: string; 'x-component': string; 'x-component-props': { fieldNames: { value: string; label: string; }; stringMode?: undefined; step?: undefined; }; 'x-read-pretty': boolean; }; targetKey: string; deletable?: undefined; field?: undefined; comment?: undefined; defaultValue?: undefined; autoIncrement?: undefined; primaryKey?: undefined; allowNull?: undefined; })[]; category: any[]; logging: boolean; template: string; view: boolean; createdBy: boolean; updatedBy: boolean; storage: string; schema: string; }[]; }; export declare const builtinExpression: { collections: { key: string; name: string; title: string; inherit: boolean; hidden: boolean; description: any; fields: ({ key: string; name: string; type: string; interface: string; description: any; collectionName: string; parentKey: any; reverseKey: any; uiSchema: { type: string; title: string; 'x-component': string; enum: { value: string; label: string; tooltip: string; link: string; }[]; default: string; 'x-component-props'?: undefined; 'x-read-pretty'?: undefined; }; autoIncrement?: undefined; primaryKey?: undefined; allowNull?: undefined; field?: undefined; target?: undefined; foreignKey?: undefined; targetKey?: undefined; } | { key: string; name: string; type: string; interface: string; description: any; collectionName: string; parentKey: any; reverseKey: any; uiSchema: { type: string; title: string; 'x-component': string; 'x-component-props': { fieldNames?: undefined; }; enum?: undefined; default?: undefined; 'x-read-pretty'?: undefined; }; autoIncrement?: undefined; primaryKey?: undefined; allowNull?: undefined; field?: undefined; target?: undefined; foreignKey?: undefined; targetKey?: undefined; } | { key: string; name: string; type: string; interface: string; description: any; collectionName: string; parentKey: any; reverseKey: any; uiSchema: { type: string; title: string; 'x-component': string; enum?: undefined; default?: undefined; 'x-component-props'?: undefined; 'x-read-pretty'?: undefined; }; autoIncrement?: undefined; primaryKey?: undefined; allowNull?: undefined; field?: undefined; target?: undefined; foreignKey?: undefined; targetKey?: undefined; } | { key: string; name: string; type: string; interface: string; description: any; collectionName: string; parentKey: any; reverseKey: any; autoIncrement: boolean; primaryKey: boolean; allowNull: boolean; uiSchema: { type: string; title: string; 'x-component': string; 'x-read-pretty': boolean; enum?: undefined; default?: undefined; 'x-component-props'?: undefined; }; field?: undefined; target?: undefined; foreignKey?: undefined; targetKey?: undefined; } | { key: string; name: string; type: string; interface: string; description: any; collectionName: string; parentKey: any; reverseKey: any; field: string; uiSchema: { type: string; title: string; 'x-component': string; 'x-component-props': { fieldNames?: undefined; }; 'x-read-pretty': boolean; enum?: undefined; default?: undefined; }; autoIncrement?: undefined; primaryKey?: undefined; allowNull?: undefined; target?: undefined; foreignKey?: undefined; targetKey?: undefined; } | { key: string; name: string; type: string; interface: string; description: any; collectionName: string; parentKey: any; reverseKey: any; target: string; foreignKey: string; uiSchema: { type: string; title: string; 'x-component': string; 'x-component-props': { fieldNames: { value: string; label: string; }; }; 'x-read-pretty': boolean; enum?: undefined; default?: undefined; }; targetKey: string; autoIncrement?: undefined; primaryKey?: undefined; allowNull?: undefined; field?: undefined; })[]; category: any[]; logging: boolean; template: string; view: boolean; createdBy: boolean; updatedBy: boolean; createdAt: boolean; updatedAt: boolean; sortable: boolean; schema: string; }[]; }; export declare const generalWithNoRelationalFields: { collections: { key: string; name: string; title: string; inherit: boolean; hidden: boolean; fields: ({ key: string; name: string; type: string; interface: string; collectionName: string; parentKey: any; reverseKey: any; autoIncrement: boolean; primaryKey: boolean; allowNull: boolean; uiSchema: { type: string; title: string; 'x-component': string; 'x-read-pretty': boolean; 'x-component-props'?: undefined; 'x-validator'?: undefined; enum?: undefined; default?: undefined; }; field?: undefined; target?: undefined; foreignKey?: undefined; targetKey?: undefined; patterns?: undefined; inputable?: undefined; defaultValue?: undefined; dataType?: undefined; engine?: undefined; expression?: undefined; } | { key: string; name: string; type: string; interface: string; collectionName: string; parentKey: any; reverseKey: any; field: string; uiSchema: { type: string; title: string; 'x-component': string; 'x-component-props': { fieldNames?: undefined; type?: undefined; stringMode?: undefined; step?: undefined; addonAfter?: undefined; mode?: undefined; dateFormat?: undefined; gmt?: undefined; showTime?: undefined; autoSize?: undefined; }; 'x-read-pretty': boolean; 'x-validator'?: undefined; enum?: undefined; default?: undefined; }; autoIncrement?: undefined; primaryKey?: undefined; allowNull?: undefined; target?: undefined; foreignKey?: undefined; targetKey?: undefined; patterns?: undefined; inputable?: undefined; defaultValue?: undefined; dataType?: undefined; engine?: undefined; expression?: undefined; } | { key: string; name: string; type: string; interface: string; collectionName: string; parentKey: any; reverseKey: any; target: string; foreignKey: string; uiSchema: { type: string; title: string; 'x-component': string; 'x-component-props': { fieldNames: { value: string; label: string; }; type?: undefined; stringMode?: undefined; step?: undefined; addonAfter?: undefined; mode?: undefined; dateFormat?: undefined; gmt?: undefined; showTime?: undefined; autoSize?: undefined; }; 'x-read-pretty': boolean; 'x-validator'?: undefined; enum?: undefined; default?: undefined; }; targetKey: string; autoIncrement?: undefined; primaryKey?: undefined; allowNull?: undefined; field?: undefined; patterns?: undefined; inputable?: undefined; defaultValue?: undefined; dataType?: undefined; engine?: undefined; expression?: undefined; } | { key: string; name: string; type: string; interface: string; collectionName: string; parentKey: any; reverseKey: any; patterns: ({ type: string; options: { value: string; digits?: undefined; start?: undefined; key?: undefined; }; } | { type: string; options: { digits: number; start: number; key: number; value?: undefined; }; })[]; uiSchema: { type: string; 'x-component': string; 'x-component-props': { fieldNames?: undefined; type?: undefined; stringMode?: undefined; step?: undefined; addonAfter?: undefined; mode?: undefined; dateFormat?: undefined; gmt?: undefined; showTime?: undefined; autoSize?: undefined; }; title: string; 'x-read-pretty'?: undefined; 'x-validator'?: undefined; enum?: undefined; default?: undefined; }; inputable: boolean; autoIncrement?: undefined; primaryKey?: undefined; allowNull?: undefined; field?: undefined; target?: undefined; foreignKey?: undefined; targetKey?: undefined; defaultValue?: undefined; dataType?: undefined; engine?: undefined; expression?: undefined; } | { key: string; name: string; type: string; interface: string; collectionName: string; parentKey: any; reverseKey: any; uiSchema: { type: string; 'x-component': string; title: string; 'x-read-pretty'?: undefined; 'x-component-props'?: undefined; 'x-validator'?: undefined; enum?: undefined; default?: undefined; }; autoIncrement?: undefined; primaryKey?: undefined; allowNull?: undefined; field?: undefined; target?: undefined; foreignKey?: undefined; targetKey?: undefined; patterns?: undefined; inputable?: undefined; defaultValue?: undefined; dataType?: undefined; engine?: undefined; expression?: undefined; } | { key: string; name: string; type: string; interface: string; collectionName: string; parentKey: any; reverseKey: any; uiSchema: { type: string; 'x-component': string; 'x-component-props': { type: string; fieldNames?: undefined; stringMode?: undefined; step?: undefined; addonAfter?: undefined; mode?: undefined; dateFormat?: undefined; gmt?: undefined; showTime?: undefined; autoSize?: undefined; }; title: string; 'x-read-pretty'?: undefined; 'x-validator'?: undefined; enum?: undefined; default?: undefined; }; autoIncrement?: undefined; primaryKey?: undefined; allowNull?: undefined; field?: undefined; target?: undefined; foreignKey?: undefined; targetKey?: undefined; patterns?: undefined; inputable?: undefined; defaultValue?: undefined; dataType?: undefined; engine?: undefined; expression?: undefined; } | { key: string; name: string; type: string; interface: string; collectionName: string; parentKey: any; reverseKey: any; uiSchema: { type: string; 'x-component': string; 'x-validator': string; title: string; 'x-read-pretty'?: undefined; 'x-component-props'?: undefined; enum?: undefined; default?: undefined; }; autoIncrement?: undefined; primaryKey?: undefined; allowNull?: undefined; field?: undefined; target?: undefined; foreignKey?: undefined; targetKey?: undefined; patterns?: undefined; inputable?: undefined; defaultValue?: undefined; dataType?: undefined; engine?: undefined; expression?: undefined; } | { key: string; name: string; type: string; interface: string; collectionName: string; parentKey: any; reverseKey: any; uiSchema: { type: string; 'x-component': string; 'x-component-props': { stringMode: boolean; step: string; fieldNames?: undefined; type?: undefined; addonAfter?: undefined; mode?: undefined; dateFormat?: undefined; gmt?: undefined; showTime?: undefined; autoSize?: undefined; }; 'x-validator': string; title: string; 'x-read-pretty'?: undefined; enum?: undefined; default?: undefined; }; autoIncrement?: undefined; primaryKey?: undefined; allowNull?: undefined; field?: undefined; target?: undefined; foreignKey?: undefined; targetKey?: undefined; patterns?: undefined; inputable?: undefined; defaultValue?: undefined; dataType?: undefined; engine?: undefined; expression?: undefined; } | { key: string; name: string; type: string; interface: string; collectionName: string; parentKey: any; reverseKey: any; uiSchema: { 'x-component-props': { step: string; stringMode: boolean; fieldNames?: undefined; type?: undefined; addonAfter?: undefined; mode?: undefined; dateFormat?: undefined; gmt?: undefined; showTime?: undefined; autoSize?: undefined; }; type: string; 'x-component': string; title: string; 'x-read-pretty'?: undefined; 'x-validator'?: undefined; enum?: undefined; default?: undefined; }; autoIncrement?: undefined; primaryKey?: undefined; allowNull?: undefined; field?: undefined; target?: undefined; foreignKey?: undefined; targetKey?: undefined; patterns?: undefined; inputable?: undefined; defaultValue?: undefined; dataType?: undefined; engine?: undefined; expression?: undefined; } | { key: string; name: string; type: string; interface: string; collectionName: string; parentKey: any; reverseKey: any; uiSchema: { 'x-component-props': { step: string; stringMode: boolean; addonAfter: string; fieldNames?: undefined; type?: undefined; mode?: undefined; dateFormat?: undefined; gmt?: undefined; showTime?: undefined; autoSize?: undefined; }; type: string; 'x-component': string; title: string; 'x-read-pretty'?: undefined; 'x-validator'?: undefined; enum?: undefined; default?: undefined; }; autoIncrement?: undefined; primaryKey?: undefined; allowNull?: undefined; field?: undefined; target?: undefined; foreignKey?: undefined; targetKey?: undefined; patterns?: undefined; inputable?: undefined; defaultValue?: undefined; dataType?: undefined; engine?: undefined; expression?: undefined; } | { key: string; name: string; type: string; interface: string; collectionName: string; parentKey: any; reverseKey: any; uiSchema: { enum: { value: string; label: string; }[]; type: string; 'x-component': string; title: string; 'x-read-pretty'?: undefined; 'x-component-props'?: undefined; 'x-validator'?: undefined; default?: undefined; }; autoIncrement?: undefined; primaryKey?: undefined; allowNull?: undefined; field?: undefined; target?: undefined; foreignKey?: undefined; targetKey?: undefined; patterns?: undefined; inputable?: undefined; defaultValue?: undefined; dataType?: undefined; engine?: undefined; expression?: undefined; } | { key: string; name: string; type: string; interface: string; collectionName: string; parentKey: any; reverseKey: any; uiSchema: { enum: { value: string; label: string; }[]; type: string; 'x-component': string; 'x-component-props': { mode: string; fieldNames?: undefined; type?: undefined; stringMode?: undefined; step?: undefined; addonAfter?: undefined; dateFormat?: undefined; gmt?: undefined; showTime?: undefined; autoSize?: undefined; }; title: string; 'x-read-pretty'?: undefined; 'x-validator'?: undefined; default?: undefined; }; defaultValue: any[]; autoIncrement?: undefined; primaryKey?: undefined; allowNull?: undefined; field?: undefined; target?: undefined; foreignKey?: undefined; targetKey?: undefined; patterns?: undefined; inputable?: undefined; dataType?: undefined; engine?: undefined; expression?: undefined; } | { key: string; name: string; type: string; interface: string; collectionName: string; parentKey: any; reverseKey: any; uiSchema: { enum: { value: string; label: string; }[]; type: string; 'x-component': string; title: string; 'x-read-pretty'?: undefined; 'x-component-props'?: undefined; 'x-validator'?: undefined; default?: undefined; }; defaultValue: any[]; autoIncrement?: undefined; primaryKey?: undefined; allowNull?: undefined; field?: undefined; target?: undefined; foreignKey?: undefined; targetKey?: undefined; patterns?: undefined; inputable?: undefined; dataType?: undefined; engine?: undefined; expression?: undefined; } | { key: string; name: string; type: string; interface: string; collectionName: string; parentKey: any; reverseKey: any; uiSchema: { 'x-component-props': { dateFormat: string; gmt: boolean; showTime: boolean; fieldNames?: undefined; type?: undefined; stringMode?: undefined; step?: undefined; addonAfter?: undefined; mode?: undefined; autoSize?: undefined; }; type: string; 'x-component': string; title: string; 'x-read-pretty'?: undefined; 'x-validator'?: undefined; enum?: undefined; default?: undefined; }; autoIncrement?: undefined; primaryKey?: undefined; allowNull?: undefined; field?: undefined; target?: undefined; foreignKey?: undefined; targetKey?: undefined; patterns?: undefined; inputable?: undefined; defaultValue?: undefined; dataType?: undefined; engine?: undefined; expression?: undefined; } | { key: string; name: string; type: string; interface: string; collectionName: string; parentKey: any; reverseKey: any; defaultValue: any; uiSchema: { type: string; 'x-component': string; 'x-component-props': { autoSize: { minRows: number; }; fieldNames?: undefined; type?: undefined; stringMode?: undefined; step?: undefined; addonAfter?: undefined; mode?: undefined; dateFormat?: undefined; gmt?: undefined; showTime?: undefined; }; default: any; title: string; 'x-read-pretty'?: undefined; 'x-validator'?: undefined; enum?: undefined; }; autoIncrement?: undefined; primaryKey?: undefined; allowNull?: undefined; field?: undefined; target?: undefined; foreignKey?: undefined; targetKey?: undefined; patterns?: undefined; inputable?: undefined; dataType?: undefined; engine?: undefined; expression?: undefined; } | { key: string; name: string; type: string; interface: string; collectionName: string; parentKey: any; reverseKey: any; dataType: string; uiSchema: { 'x-component-props': { step: string; stringMode: boolean; fieldNames?: undefined; type?: undefined; addonAfter?: undefined; mode?: undefined; dateFormat?: undefined; gmt?: undefined; showTime?: undefined; autoSize?: undefined; }; type: string; 'x-component': string; 'x-read-pretty': boolean; title: string; 'x-validator'?: undefined; enum?: undefined; default?: undefined; }; engine: string; expression: string; autoIncrement?: undefined; primaryKey?: undefined; allowNull?: undefined; field?: undefined; target?: undefined; foreignKey?: undefined; targetKey?: undefined; patterns?: undefined; inputable?: undefined; defaultValue?: undefined; })[]; category: any[]; logging: boolean; autoGenId: boolean; createdBy: boolean; updatedBy: boolean; createdAt: boolean; updatedAt: boolean; sortable: boolean; template: string; }[]; }; export declare const generalWithNoRelationalFieldsData: { createdAt: string; updatedAt: string; createdById: number; updatedById: number; testdataid: number; orgcode: string; orgname: string; address: string; phone: string; email: string; url: string; staffnum: number; regcapital: number; paidcapital: number; insuranceratio: number; isenable: boolean; status_singleselect: string; range_multipleselect: string[]; status_radio: string; range_check: string[]; establishdate: string; }[]; declare const _default: { appendJsonCollectionName: typeof appendJsonCollectionName; builtinGeneral: { collections: { key: string; name: string; title: string; inherit: boolean; hidden: boolean; description: any; fields: ({ key: string; name: string; type: string; interface: string; description: any; collectionName: string; parentKey: any; reverseKey: any; autoIncrement: boolean; primaryKey: boolean; allowNull: boolean; uiSchema: { type: string; title: string; 'x-component': string; 'x-read-pretty': boolean; 'x-component-props'?: undefined; }; field?: undefined; target?: undefined; foreignKey?: undefined; targetKey?: undefined; } | { key: string; name: string; type: string; interface: string; description: any; collectionName: string; parentKey: any; reverseKey: any; field: string; uiSchema: { type: string; title: string; 'x-component': string; 'x-component-props': { fieldNames?: undefined; }; 'x-read-pretty': boolean; }; autoIncrement?: undefined; primaryKey?: undefined; allowNull?: undefined; target?: undefined; foreignKey?: undefined; targetKey?: undefined; } | { key: string; name: string; type: string; interface: string; description: any; collectionName: string; parentKey: any; reverseKey: any; target: string; foreignKey: string; uiSchema: { type: string; title: string; 'x-component': string; 'x-component-props': { fieldNames: { value: string; label: string; }; }; 'x-read-pretty': boolean; }; targetKey: string; autoIncrement?: undefined; primaryKey?: undefined; allowNull?: undefined; field?: undefined; })[]; category: any[]; logging: boolean; autoGenId: boolean; createdBy: boolean; updatedBy: boolean; createdAt: boolean; updatedAt: boolean; sortable: boolean; template: string; view: boolean; schema: string; }[]; }; builtinFile: { collections: { key: string; name: string; title: string; inherit: boolean; hidden: boolean; description: any; fields: ({ key: string; name: string; type: string; interface: string; description: any; collectionName: string; parentKey: any; reverseKey: any; deletable: boolean; uiSchema: { type: string; title: string; 'x-component': string; 'x-read-pretty'?: undefined; 'x-component-props'?: undefined; }; field?: undefined; comment?: undefined; target?: undefined; foreignKey?: undefined; targetKey?: undefined; defaultValue?: undefined; autoIncrement?: undefined; primaryKey?: undefined; allowNull?: undefined; } | { key: string; name: string; type: string; interface: string; description: any; collectionName: string; parentKey: any; reverseKey: any; deletable: boolean; uiSchema: { type: string; title: string; 'x-component': string; 'x-read-pretty': boolean; 'x-component-props'?: undefined; }; field?: undefined; comment?: undefined; target?: undefined; foreignKey?: undefined; targetKey?: undefined; defaultValue?: undefined; autoIncrement?: undefined; primaryKey?: undefined; allowNull?: undefined; } | { key: string; name: string; type: string; interface: string; description: any; collectionName: string; parentKey: any; reverseKey: any; deletable: boolean; uiSchema: { type: string; title: string; 'x-component': string; 'x-read-pretty': boolean; 'x-component-props': { stringMode: boolean; step: string; fieldNames?: undefined; }; }; field?: undefined; comment?: undefined; target?: undefined; foreignKey?: undefined; targetKey?: undefined; defaultValue?: undefined; autoIncrement?: undefined; primaryKey?: undefined; allowNull?: undefined; } | { key: string; name: string; type: string; interface: string; description: any; collectionName: string; parentKey: any; reverseKey: any; field: string; deletable: boolean; uiSchema: { type: string; title: string; 'x-component': string; 'x-read-pretty': boolean; 'x-component-props'?: undefined; }; comment?: undefined; target?: undefined; foreignKey?: undefined; targetKey?: undefined; defaultValue?: undefined; autoIncrement?: undefined; primaryKey?: undefined; allowNull?: undefined; } | { key: string; name: string; type: string; interface: any; description: any; collectionName: string; parentKey: any; reverseKey: any; comment: string; target: string; foreignKey: string; deletable: boolean; targetKey: string; uiSchema?: undefined; field?: undefined; defaultValue?: undefined; autoIncrement?: undefined; primaryKey?: undefined; allowNull?: undefined; } | { key: string; name: string; type: string; interface: any; description: any; collectionName: string; parentKey: any; reverseKey: any; deletable: boolean; defaultValue: {}; uiSchema?: undefined; field?: undefined; comment?: undefined; target?: undefined; foreignKey?: undefined; targetKey?: undefined; autoIncrement?: undefined; primaryKey?: undefined; allowNull?: undefined; } | { key: string; name: string; type: string; interface: string; description: any; collectionName: string; parentKey: any; reverseKey: any; autoIncrement: boolean; primaryKey: boolean; allowNull: boolean; uiSchema: { type: string; title: string; 'x-component': string; 'x-read-pretty': boolean; 'x-component-props'?: undefined; }; deletable?: undefined; field?: undefined; comment?: undefined; target?: undefined; foreignKey?: undefined; targetKey?: undefined; defaultValue?: undefined; } | { key: string; name: string; type: string; interface: string; description: any; collectionName: string; parentKey: any; reverseKey: any; field: string; uiSchema: { type: string; title: string; 'x-component': string; 'x-component-props': { stringMode?: undefined; step?: undefined; fieldNames?: undefined; }; 'x-read-pretty': boolean; }; deletable?: undefined; comment?: undefined; target?: undefined; foreignKey?: undefined; targetKey?: undefined; defaultValue?: undefined; autoIncrement?: undefined; primaryKey?: undefined; allowNull?: undefined; } | { key: string; name: string; type: string; interface: string; description: any; collectionName: string; parentKey: any; reverseKey: any; target: string; foreignKey: string; uiSchema: { type: string; title: string; 'x-component': string; 'x-component-props': { fieldNames: { value: string; label: string; }; stringMode?: undefined; step?: undefined; }; 'x-read-pretty': boolean; }; targetKey: string; deletable?: undefined; field?: undefined; comment?: undefined; defaultValue?: undefined; autoIncrement?: undefined; primaryKey?: undefined; allowNull?: undefined; })[]; category: any[]; logging: boolean; template: string; view: boolean; createdBy: boolean; updatedBy: boolean; storage: string; schema: string; }[]; }; builtinExpression: { collections: { key: string; name: string; title: string; inherit: boolean; hidden: boolean; description: any; fields: ({ key: string; name: string; type: string; interface: string; description: any; collectionName: string; parentKey: any; reverseKey: any; uiSchema: { type: string; title: string; 'x-component': string; enum: { value: string; label: string; tooltip: string; link: string; }[]; default: string; 'x-component-props'?: undefined; 'x-read-pretty'?: undefined; }; autoIncrement?: undefined; primaryKey?: undefined; allowNull?: undefined; field?: undefined; target?: undefined; foreignKey?: undefined; targetKey?: undefined; } | { key: string; name: string; type: string; interface: string; description: any; collectionName: string; parentKey: any; reverseKey: any; uiSchema: { type: string; title: string; 'x-component': string; 'x-component-props': { fieldNames?: undefined; }; enum?: undefined; default?: undefined; 'x-read-pretty'?: undefined; }; autoIncrement?: undefined; primaryKey?: undefined; allowNull?: undefined; field?: undefined; target?: undefined; foreignKey?: undefined; targetKey?: undefined; } | { key: string; name: string; type: string; interface: string; description: any; collectionName: string; parentKey: any; reverseKey: any; uiSchema: { type: string; title: string; 'x-component': string; enum?: undefined; default?: undefined; 'x-component-props'?: undefined; 'x-read-pretty'?: undefined; }; autoIncrement?: undefined; primaryKey?: undefined; allowNull?: undefined; field?: undefined; target?: undefined; foreignKey?: undefined; targetKey?: undefined; } | { key: string; name: string; type: string; interface: string; description: any; collectionName: string; parentKey: any; reverseKey: any; autoIncrement: boolean; primaryKey: boolean; allowNull: boolean; uiSchema: { type: string; title: string; 'x-component': string; 'x-read-pretty': boolean; enum?: undefined; default?: undefined; 'x-component-props'?: undefined; }; field?: undefined; target?: undefined; foreignKey?: undefined; targetKey?: undefined; } | { key: string; name: string; type: string; interface: string; description: any; collectionName: string; parentKey: any; reverseKey: any; field: string; uiSchema: { type: string; title: string; 'x-component': string; 'x-component-props': { fieldNames?: undefined; }; 'x-read-pretty': boolean; enum?: undefined; default?: undefined; }; autoIncrement?: undefined; primaryKey?: undefined; allowNull?: undefined; target?: undefined; foreignKey?: undefined; targetKey?: undefined; } | { key: string; name: string; type: string; interface: string; description: any; collectionName: string; parentKey: any; reverseKey: any; target: string; foreignKey: string; uiSchema: { type: string; title: string; 'x-component': string; 'x-component-props': { fieldNames: { value: string; label: string; }; }; 'x-read-pretty': boolean; enum?: undefined; default?: undefined; }; targetKey: string; autoIncrement?: undefined; primaryKey?: undefined; allowNull?: undefined; field?: undefined; })[]; category: any[]; logging: boolean; template: string; view: boolean; createdBy: boolean; updatedBy: boolean; createdAt: boolean; updatedAt: boolean; sortable: boolean; schema: string; }[]; }; generalWithNoRelationalFields: { collections: { key: string; name: string; title: string; inherit: boolean; hidden: boolean; fields: ({ key: string; name: string; type: string; interface: string; collectionName: string; parentKey: any; reverseKey: any; autoIncrement: boolean; primaryKey: boolean; allowNull: boolean; uiSchema: { type: string; title: string; 'x-component': string; 'x-read-pretty': boolean; 'x-component-props'?: undefined; 'x-validator'?: undefined; enum?: undefined; default?: undefined; }; field?: undefined; target?: undefined; foreignKey?: undefined; targetKey?: undefined; patterns?: undefined; inputable?: undefined; defaultValue?: undefined; dataType?: undefined; engine?: undefined; expression?: undefined; } | { key: string; name: string; type: string; interface: string; collectionName: string; parentKey: any; reverseKey: any; field: string; uiSchema: { type: string; title: string; 'x-component': string; 'x-component-props': { fieldNames?: undefined; type?: undefined; stringMode?: undefined; step?: undefined; addonAfter?: undefined; mode?: undefined; dateFormat?: undefined; gmt?: undefined; showTime?: undefined; autoSize?: undefined; }; 'x-read-pretty': boolean; 'x-validator'?: undefined; enum?: undefined; default?: undefined; }; autoIncrement?: undefined; primaryKey?: undefined; allowNull?: undefined; target?: undefined; foreignKey?: undefined; targetKey?: undefined; patterns?: undefined; inputable?: undefined; defaultValue?: undefined; dataType?: undefined; engine?: undefined; expression?: undefined; } | { key: string; name: string; type: string; interface: string; collectionName: string; parentKey: any; reverseKey: any; target: string; foreignKey: string; uiSchema: { type: string; title: string; 'x-component': string; 'x-component-props': { fieldNames: { value: string; label: string; }; type?: undefined; stringMode?: undefined; step?: undefined; addonAfter?: undefined; mode?: undefined; dateFormat?: undefined; gmt?: undefined; showTime?: undefined; autoSize?: undefined; }; 'x-read-pretty': boolean; 'x-validator'?: undefined; enum?: undefined; default?: undefined; }; targetKey: string; autoIncrement?: undefined; primaryKey?: undefined; allowNull?: undefined; field?: undefined; patterns?: undefined; inputable?: undefined; defaultValue?: undefined; dataType?: undefined; engine?: undefined; expression?: undefined; } | { key: string; name: string; type: string; interface: string; collectionName: string; parentKey: any; reverseKey: any; patterns: ({ type: string; options: { value: string; digits?: undefined; start?: undefined; key?: undefined; }; } | { type: string; options: { digits: number; start: number; key: number; value?: undefined; }; })[]; uiSchema: { type: string; 'x-component': string; 'x-component-props': { fieldNames?: undefined; type?: undefined; stringMode?: undefined; step?: undefined; addonAfter?: undefined; mode?: undefined; dateFormat?: undefined; gmt?: undefined; showTime?: undefined; autoSize?: undefined; }; title: string; 'x-read-pretty'?: undefined; 'x-validator'?: undefined; enum?: undefined; default?: undefined; }; inputable: boolean; autoIncrement?: undefined; primaryKey?: undefined; allowNull?: undefined; field?: undefined; target?: undefined; foreignKey?: undefined; targetKey?: undefined; defaultValue?: undefined; dataType?: undefined; engine?: undefined; expression?: undefined; } | { key: string; name: string; type: string; interface: string; collectionName: string; parentKey: any; reverseKey: any; uiSchema: { type: string; 'x-component': string; title: string; 'x-read-pretty'?: undefined; 'x-component-props'?: undefined; 'x-validator'?: undefined; enum?: undefined; default?: undefined; }; autoIncrement?: undefined; primaryKey?: undefined; allowNull?: undefined; field?: undefined; target?: undefined; foreignKey?: undefined; targetKey?: undefined; patterns?: undefined; inputable?: undefined; defaultValue?: undefined; dataType?: undefined; engine?: undefined; expression?: undefined; } | { key: string; name: string; type: string; interface: string; collectionName: string; parentKey: any; reverseKey: any; uiSchema: { type: string; 'x-component': string; 'x-component-props': { type: string; fieldNames?: undefined; stringMode?: undefined; step?: undefined; addonAfter?: undefined; mode?: undefined; dateFormat?: undefined; gmt?: undefined; showTime?: undefined; autoSize?: undefined; }; title: string; 'x-read-pretty'?: undefined; 'x-validator'?: undefined; enum?: undefined; default?: undefined; }; autoIncrement?: undefined; primaryKey?: undefined; allowNull?: undefined; field?: undefined; target?: undefined; foreignKey?: undefined; targetKey?: undefined; patterns?: undefined; inputable?: undefined; defaultValue?: undefined; dataType?: undefined; engine?: undefined; expression?: undefined; } | { key: string; name: string; type: string; interface: string; collectionName: string; parentKey: any; reverseKey: any; uiSchema: { type: string; 'x-component': string; 'x-validator': string; title: string; 'x-read-pretty'?: undefined; 'x-component-props'?: undefined; enum?: undefined; default?: undefined; }; autoIncrement?: undefined; primaryKey?: undefined; allowNull?: undefined; field?: undefined; target?: undefined; foreignKey?: undefined; targetKey?: undefined; patterns?: undefined; inputable?: undefined; defaultValue?: undefined; dataType?: undefined; engine?: undefined; expression?: undefined; } | { key: string; name: string; type: string; interface: string; collectionName: string; parentKey: any; reverseKey: any; uiSchema: { type: string; 'x-component': string; 'x-component-props': { stringMode: boolean; step: string; fieldNames?: undefined; type?: undefined; addonAfter?: undefined; mode?: undefined; dateFormat?: undefined; gmt?: undefined; showTime?: undefined; autoSize?: undefined; }; 'x-validator': string; title: string; 'x-read-pretty'?: undefined; enum?: undefined; default?: undefined; }; autoIncrement?: undefined; primaryKey?: undefined; allowNull?: undefined; field?: undefined; target?: undefined; foreignKey?: undefined; targetKey?: undefined; patterns?: undefined; inputable?: undefined; defaultValue?: undefined; dataType?: undefined; engine?: undefined; expression?: undefined; } | { key: string; name: string; type: string; interface: string; collectionName: string; parentKey: any; reverseKey: any; uiSchema: { 'x-component-props': { step: string; stringMode: boolean; fieldNames?: undefined; type?: undefined; addonAfter?: undefined; mode?: undefined; dateFormat?: undefined; gmt?: undefined; showTime?: undefined; autoSize?: undefined; }; type: string; 'x-component': string; title: string; 'x-read-pretty'?: undefined; 'x-validator'?: undefined; enum?: undefined; default?: undefined; }; autoIncrement?: undefined; primaryKey?: undefined; allowNull?: undefined; field?: undefined; target?: undefined; foreignKey?: undefined; targetKey?: undefined; patterns?: undefined; inputable?: undefined; defaultValue?: undefined; dataType?: undefined; engine?: undefined; expression?: undefined; } | { key: string; name: string; type: string; interface: string; collectionName: string; parentKey: any; reverseKey: any; uiSchema: { 'x-component-props': { step: string; stringMode: boolean; addonAfter: string; fieldNames?: undefined; type?: undefined; mode?: undefined; dateFormat?: undefined; gmt?: undefined; showTime?: undefined; autoSize?: undefined; }; type: string; 'x-component': string; title: string; 'x-read-pretty'?: undefined; 'x-validator'?: undefined; enum?: undefined; default?: undefined; }; autoIncrement?: undefined; primaryKey?: undefined; allowNull?: undefined; field?: undefined; target?: undefined; foreignKey?: undefined; targetKey?: undefined; patterns?: undefined; inputable?: undefined; defaultValue?: undefined; dataType?: undefined; engine?: undefined; expression?: undefined; } | { key: string; name: string; type: string; interface: string; collectionName: string; parentKey: any; reverseKey: any; uiSchema: { enum: { value: string; label: string; }[]; type: string; 'x-component': string; title: string; 'x-read-pretty'?: undefined; 'x-component-props'?: undefined; 'x-validator'?: undefined; default?: undefined; }; autoIncrement?: undefined; primaryKey?: undefined; allowNull?: undefined; field?: undefined; target?: undefined; foreignKey?: undefined; targetKey?: undefined; patterns?: undefined; inputable?: undefined; defaultValue?: undefined; dataType?: undefined; engine?: undefined; expression?: undefined; } | { key: string; name: string; type: string; interface: string; collectionName: string; parentKey: any; reverseKey: any; uiSchema: { enum: { value: string; label: string; }[]; type: string; 'x-component': string; 'x-component-props': { mode: string; fieldNames?: undefined; type?: undefined; stringMode?: undefined; step?: undefined; addonAfter?: undefined; dateFormat?: undefined; gmt?: undefined; showTime?: undefined; autoSize?: undefined; }; title: string; 'x-read-pretty'?: undefined; 'x-validator'?: undefined; default?: undefined; }; defaultValue: any[]; autoIncrement?: undefined; primaryKey?: undefined; allowNull?: undefined; field?: undefined; target?: undefined; foreignKey?: undefined; targetKey?: undefined; patterns?: undefined; inputable?: undefined; dataType?: undefined; engine?: undefined; expression?: undefined; } | { key: string; name: string; type: string; interface: string; collectionName: string; parentKey: any; reverseKey: any; uiSchema: { enum: { value: string; label: string; }[]; type: string; 'x-component': string; title: string; 'x-read-pretty'?: undefined; 'x-component-props'?: undefined; 'x-validator'?: undefined; default?: undefined; }; defaultValue: any[]; autoIncrement?: undefined; primaryKey?: undefined; allowNull?: undefined; field?: undefined; target?: undefined; foreignKey?: undefined; targetKey?: undefined; patterns?: undefined; inputable?: undefined; dataType?: undefined; engine?: undefined; expression?: undefined; } | { key: string; name: string; type: string; interface: string; collectionName: string; parentKey: any; reverseKey: any; uiSchema: { 'x-component-props': { dateFormat: string; gmt: boolean; showTime: boolean; fieldNames?: undefined; type?: undefined; stringMode?: undefined; step?: undefined; addonAfter?: undefined; mode?: undefined; autoSize?: undefined; }; type: string; 'x-component': string; title: string; 'x-read-pretty'?: undefined; 'x-validator'?: undefined; enum?: undefined; default?: undefined; }; autoIncrement?: undefined; primaryKey?: undefined; allowNull?: undefined; field?: undefined; target?: undefined; foreignKey?: undefined; targetKey?: undefined; patterns?: undefined; inputable?: undefined; defaultValue?: undefined; dataType?: undefined; engine?: undefined; expression?: undefined; } | { key: string; name: string; type: string; interface: string; collectionName: string; parentKey: any; reverseKey: any; defaultValue: any; uiSchema: { type: string; 'x-component': string; 'x-component-props': { autoSize: { minRows: number; }; fieldNames?: undefined; type?: undefined; stringMode?: undefined; step?: undefined; addonAfter?: undefined; mode?: undefined; dateFormat?: undefined; gmt?: undefined; showTime?: undefined; }; default: any; title: string; 'x-read-pretty'?: undefined; 'x-validator'?: undefined; enum?: undefined; }; autoIncrement?: undefined; primaryKey?: undefined; allowNull?: undefined; field?: undefined; target?: undefined; foreignKey?: undefined; targetKey?: undefined; patterns?: undefined; inputable?: undefined; dataType?: undefined; engine?: undefined; expression?: undefined; } | { key: string; name: string; type: string; interface: string; collectionName: string; parentKey: any; reverseKey: any; dataType: string; uiSchema: { 'x-component-props': { step: string; stringMode: boolean; fieldNames?: undefined; type?: undefined; addonAfter?: undefined; mode?: undefined; dateFormat?: undefined; gmt?: undefined; showTime?: undefined; autoSize?: undefined; }; type: string; 'x-component': string; 'x-read-pretty': boolean; title: string; 'x-validator'?: undefined; enum?: undefined; default?: undefined; }; engine: string; expression: string; autoIncrement?: undefined; primaryKey?: undefined; allowNull?: undefined; field?: undefined; target?: undefined; foreignKey?: undefined; targetKey?: undefined; patterns?: undefined; inputable?: undefined; defaultValue?: undefined; })[]; category: any[]; logging: boolean; autoGenId: boolean; createdBy: boolean; updatedBy: boolean; createdAt: boolean; updatedAt: boolean; sortable: boolean; template: string; }[]; }; generalWithNoRelationalFieldsData: { createdAt: string; updatedAt: string; createdById: number; updatedById: number; testdataid: number; orgcode: string; orgname: string; address: string; phone: string; email: string; url: string; staffnum: number; regcapital: number; paidcapital: number; insuranceratio: number; isenable: boolean; status_singleselect: string; range_multipleselect: string[]; status_radio: string; range_check: string[]; establishdate: string; }[]; }; export default _default;