Version not found. Please check the version and try again.

@nocobase/plugin-data-source-manager 2.1.0-beta.8 → 2.2.0-alpha.1

This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
Files changed (96) hide show
  1. package/client-v2.d.ts +2 -0
  2. package/client-v2.js +1 -0
  3. package/dist/ai/ai-employees/orin/ignored.d.ts +10 -0
  4. package/dist/ai/ai-employees/orin/ignored.js +59 -0
  5. package/dist/ai/ai-employees/orin/skills/data-modeling/SKILLS.md +245 -0
  6. package/dist/ai/{tools → ai-employees/orin/skills/data-modeling/tools}/defineCollections.js +47 -1
  7. package/dist/ai/{tools → ai-employees/orin/skills/data-modeling/tools}/intentRouter.js +1 -1
  8. package/dist/ai/{tools/data-query → common}/common.js +63 -11
  9. package/dist/ai/{tools/data-query → common}/utils.d.ts +1 -0
  10. package/dist/ai/{tools/data-query → common}/utils.js +15 -0
  11. package/dist/ai/skills/data-metadata/SKILLS.md +108 -0
  12. package/dist/ai/{tools → skills/data-metadata/tools}/getCollectionMetadata.js +2 -2
  13. package/dist/ai/{tools → skills/data-metadata/tools}/getCollectionNames.js +2 -2
  14. package/dist/ai/{tools → skills/data-metadata/tools}/getDataSources.js +2 -2
  15. package/dist/ai/{tools → skills/data-metadata/tools}/searchFieldMetadata.js +2 -2
  16. package/dist/ai/skills/data-query/SKILLS.md +245 -0
  17. package/dist/ai/skills/data-query/tools/dataQuery.js +282 -0
  18. package/dist/ai/{tools/data-query → skills/data-query/tools}/dataSourceCounting.js +12 -4
  19. package/dist/ai/skills/data-query/tools/dataSourceQuery.d.ts +10 -0
  20. package/dist/ai/{tools/data-query → skills/data-query/tools}/dataSourceQuery.js +12 -5
  21. package/dist/client/271.1374702d84646fff.js +10 -0
  22. package/dist/client/369.342f1e0231dbe482.js +10 -0
  23. package/dist/client/397.c8c6659cf3f7ac1c.js +10 -0
  24. package/dist/client/416.197712b8b93033c5.js +10 -0
  25. package/dist/client/420.a37695bbfc3bec7a.js +10 -0
  26. package/dist/client/603.d6022bceb934f5b0.js +10 -0
  27. package/dist/client/644.b98e4b39058e9c32.js +10 -0
  28. package/dist/client/936.d5ab7aecb4eb6004.js +10 -0
  29. package/dist/client/index.js +1 -1
  30. package/dist/client-v2/167.52e683be46f9cfc7.js +10 -0
  31. package/dist/client-v2/426.53e3eaee8d9dbca0.js +10 -0
  32. package/dist/client-v2/907.a0ab273516f45ac3.js +10 -0
  33. package/dist/client-v2/components/DataSourceForm.d.ts +17 -0
  34. package/dist/client-v2/field-interfaces/index.d.ts +13 -0
  35. package/dist/client-v2/index.d.ts +12 -0
  36. package/dist/client-v2/index.js +10 -0
  37. package/dist/client-v2/locale.d.ts +12 -0
  38. package/dist/client-v2/pages/DataSourceCollectionsPage.d.ts +10 -0
  39. package/dist/client-v2/pages/DataSourcesPage.d.ts +10 -0
  40. package/dist/client-v2/pages/components/CollectionsPage.d.ts +27 -0
  41. package/dist/client-v2/pages/components/FieldForm.d.ts +19 -0
  42. package/dist/client-v2/pages/components/FieldsPage.d.ts +16 -0
  43. package/dist/client-v2/pages/components/ViewCollectionConfigure.d.ts +27 -0
  44. package/dist/client-v2/pages/components/collectionFieldApi.d.ts +11 -0
  45. package/dist/client-v2/pages/components/collectionTemplateFieldInterfaces.d.ts +18 -0
  46. package/dist/client-v2/pages/permissions/DataSourcePermissionsTab.d.ts +15 -0
  47. package/dist/client-v2/pages/permissions/PermissionEditors.d.ts +45 -0
  48. package/dist/client-v2/pages/permissions/ScopeSelect.d.ts +21 -0
  49. package/dist/client-v2/pages/permissions/permissionRequests.d.ts +33 -0
  50. package/dist/client-v2/pages/permissions/types.d.ts +55 -0
  51. package/dist/client-v2/plugin.d.ts +243 -0
  52. package/dist/client-v2/registries.d.ts +36 -0
  53. package/dist/client-v2/runtime.d.ts +12 -0
  54. package/dist/client-v2/utils/compileLegacyTemplate.d.ts +16 -0
  55. package/dist/client-v2/utils/error.d.ts +11 -0
  56. package/dist/externalVersion.js +17 -13
  57. package/dist/locale/en-US.json +275 -3
  58. package/dist/locale/zh-CN.json +275 -3
  59. package/dist/node_modules/zod/index.cjs +1 -1
  60. package/dist/node_modules/zod/package.json +1 -1
  61. package/dist/server/collections/data-sources-collections.js +1 -0
  62. package/dist/server/collections/data-sources-fields.js +1 -0
  63. package/dist/server/collections/data-sources-roles-resources-actions.js +1 -0
  64. package/dist/server/collections/data-sources-roles-resources-scopes.js +1 -0
  65. package/dist/server/collections/data-sources-roles-resources.js +1 -0
  66. package/dist/server/collections/data-sources-roles.js +1 -0
  67. package/dist/server/collections/data-sources.js +1 -0
  68. package/dist/server/mcp-post-processors.d.ts +24 -0
  69. package/dist/server/mcp-post-processors.js +158 -0
  70. package/dist/server/models/data-source.js +3 -13
  71. package/dist/server/plugin.js +7 -2
  72. package/dist/server/resourcers/data-sources-collections-fields.d.ts +1 -0
  73. package/dist/server/resourcers/data-sources-collections-fields.js +19 -0
  74. package/dist/server/services/external-field-apply.d.ts +23 -0
  75. package/dist/server/services/external-field-apply.js +208 -0
  76. package/dist/server/utils.js +11 -3
  77. package/dist/swagger/index.d.ts +326 -0
  78. package/dist/swagger/index.js +385 -0
  79. package/package.json +4 -2
  80. package/dist/client/1a8cce8035a89dd9.js +0 -10
  81. package/dist/client/276bcf3de74bebd1.js +0 -10
  82. package/dist/client/2f7a418e7935984d.js +0 -10
  83. package/dist/client/689d3bec33ad2ec3.js +0 -10
  84. package/dist/client/d33eb40009bd7ec6.js +0 -10
  85. package/dist/client/dbf5ddf434ab29c0.js +0 -10
  86. package/dist/client/f528b165e77e3608.js +0 -10
  87. package/dist/client/fdae18574fda07af.js +0 -10
  88. /package/dist/ai/{tools → ai-employees/orin/skills/data-modeling/tools}/defineCollections.d.ts +0 -0
  89. /package/dist/ai/{tools → ai-employees/orin/skills/data-modeling/tools}/intentRouter.d.ts +0 -0
  90. /package/dist/ai/{tools/data-query → common}/common.d.ts +0 -0
  91. /package/dist/ai/{tools → skills/data-metadata/tools}/getCollectionMetadata.d.ts +0 -0
  92. /package/dist/ai/{tools → skills/data-metadata/tools}/getCollectionNames.d.ts +0 -0
  93. /package/dist/ai/{tools → skills/data-metadata/tools}/getDataSources.d.ts +0 -0
  94. /package/dist/ai/{tools → skills/data-metadata/tools}/searchFieldMetadata.d.ts +0 -0
  95. /package/dist/ai/{tools/data-query/dataSourceCounting.d.ts → skills/data-query/tools/dataQuery.d.ts} +0 -0
  96. /package/dist/ai/{tools/data-query/dataSourceQuery.d.ts → skills/data-query/tools/dataSourceCounting.d.ts} +0 -0
@@ -1,47 +1,311 @@
1
1
  {
2
+ "12 hour": "12 小时制",
3
+ "24 hour": "24 小时制",
2
4
  "Allow adding and modifying collection": "允许添加和修改数据表结构",
5
+ "Add category": "添加分类",
6
+ "All collections": "全部数据表",
7
+ "Add field": "添加字段",
8
+ "Add option": "添加选项",
9
+ "Add rule": "添加规则",
10
+ "Are you sure you want to load {{count}} table(s)?": "确认加载 {{count}} 张表吗?",
3
11
  "Are you sure you want to set the \"{{title}}\" field as a record unique key? This setting cannot be changed after it's been set.": "你确定将 “{{title}}” 字段设置为主键吗?设置成功后不可修改。",
4
12
  "Available tables": "可选数据表",
13
+ "Auto increment": "自增",
14
+ "Automatically generate default values": "自动生成默认值",
15
+ "Automatically remove heading and tailing spaces": "自动去除首尾空格",
16
+ "Automatically update timestamp on update": "更新时自动更新时间戳",
17
+ "Base": "基数",
18
+ "Basic": "基础",
19
+ "BelongsTo": "属于",
20
+ "BelongsToMany": "属于多个",
21
+ "CASCADE": "级联",
22
+ "Checkbox": "复选框",
23
+ "Checkbox group": "复选框组",
24
+ "Category name": "分类名称",
25
+ "Color": "颜色",
26
+ "Collection category": "数据表类别",
27
+ "Configure": "配置",
28
+ "Configure fields": "配置字段",
5
29
  "Collections": "数据表",
30
+ "Comparison": "比较",
31
+ "Confirm load tables": "确认加载数据表",
6
32
  "Connection successful": "连接成功",
33
+ "Connect to database view": "连接数据库视图",
34
+ "contains": "包含",
35
+ "{{count}} filter items": "{{count}} 个筛选项",
36
+ "Create collection": "创建数据表",
37
+ "Calendar collection": "日历数据表",
38
+ "Categories": "分类",
39
+ "Created at": "创建时间",
40
+ "Created by": "创建人",
41
+ "Date": "日期",
42
+ "Date only": "日期",
43
+ "Date format": "日期格式",
44
+ "Data type": "数据类型",
7
45
  "Data source display name": "数据源名称",
8
46
  "Data source manager": "数据源管理",
9
47
  "Data source name": "数据源标识",
48
+ "Data source synchronization failed": "数据源同步失败",
10
49
  "Data source synchronization in progress": "数据源同步中",
11
50
  "Data source synchronization successful": "数据源同步成功",
12
51
  "Data sources": "数据源",
13
52
  "Database": "数据库",
53
+ "Delete category": "删除分类",
54
+ "Delete collection": "删除数据表",
55
+ "Delete": "删除",
56
+ "Delete record": "删除记录",
14
57
  "Description": "描述",
58
+ "Default value": "默认值",
59
+ "Default value to current time": "默认为当前时间",
60
+ "Double": "双精度",
15
61
  "Display name": "名称",
62
+ "does not contain": "不包含",
63
+ "Edit category": "编辑分类",
64
+ "Edit collection": "编辑数据表",
65
+ "Edit field": "编辑字段",
66
+ "Enabled": "启用",
67
+ "Expression collection": "表达式数据表",
68
+ "Email": "电子邮箱",
69
+ "email": "电子邮箱",
16
70
  "Failed": "加载失败",
71
+ "Failed to load tables": "加载数据表失败",
72
+ "Field": "字段",
73
+ "Field display name": "字段显示名称",
74
+ "Field name": "字段名称",
75
+ "Field name already exists": "字段名称已存在",
76
+ "Field source": "来源字段",
77
+ "Field type": "字段类型",
17
78
  "Field database type": "字段数据库类型",
18
79
  "Field interface": "UI类型",
80
+ "Fields": "字段",
81
+ "Fields can only be used correctly if they are defined with an interface.": "只有字段设置了 interface 字段才能正常使用。",
19
82
  "Field synchronization confirmation prompt": "确认要对所有数据表执行字段同步吗?取决于数据表和字段数量,可能会耗时几秒到几十秒。若只需同步个别表,请使用相应表的“配置字段” - “从数据库同步”进行操作。",
83
+ "File collection": "文件数据表",
84
+ "Filter": "筛选",
20
85
  "Filter data based on the specific field, with the requirement that the field value must be unique.": "根据特定的字段筛选数据,字段值必须具备唯一性。",
21
86
  "Filter target key": "筛选目标键",
87
+ "Float": "浮点数",
88
+ "Foreign key": "外键",
89
+ "Foreign key 1": "外键 1",
90
+ "Foreign key 2": "外键 2",
91
+ "Field values must be unique.": "字段值必须唯一。",
92
+ "Generated automatically if left blank": "留空时自动生成",
93
+ "General collection": "普通数据表",
94
+ "GMT": "GMT",
95
+ "Greater than": "大于",
96
+ "HasMany": "拥有多个",
97
+ "HasOne": "拥有一个",
22
98
  "Host": "服务器地址",
99
+ "Icon": "图标",
23
100
  "If a collection lacks a primary key, you must configure a unique record key to locate row records within a block, failure to configure this will prevent the creation of data blocks for the collection.": "当数据表没有主键时,你需要配置记录唯一标识符,用于在区块中定位行记录,不配置将无法创建该表的数据区块。",
101
+ "Inherits": "继承",
102
+ "Integer": "整数",
103
+ "integer": "整数",
104
+ "Interface": "界面",
105
+ "Inverse field display name": "反向字段显示名称",
106
+ "Inverse field name": "反向字段名称",
107
+ "Inverse relationship type": "反向关系类型",
108
+ "is": "等于",
109
+ "is not": "不等于",
110
+ "item": "项",
111
+ "items": "项",
112
+ "JSON": "JSON",
113
+ "Joi API": "Joi API",
114
+ "Limit": "限制",
24
115
  "Load tables from database": "从数据库加载表",
25
116
  "Loaded": "已加载",
26
117
  "Loading": "加载中",
118
+ "Last updated at": "最后更新时间",
119
+ "Last updated by": "最后更新人",
120
+ "Less than": "小于",
121
+ "length": "长度",
122
+ "Long text": "多行文本",
123
+ "Many to many": "多对多",
124
+ "Many to one": "多对一",
125
+ "Markdown": "Markdown",
126
+ "max": "最大值",
127
+ "Max length": "最大长度",
128
+ "Max value": "最大值",
129
+ "Media": "媒体",
130
+ "min": "最小值",
131
+ "Min length": "最小长度",
132
+ "Min value": "最小值",
133
+ "Month": "月",
134
+ "Multiple": "倍数",
135
+ "Multiple select": "多选",
136
+ "NO ACTION": "无操作",
137
+ "Number": "数字",
27
138
  "No external data source plugin installed": "未安装外部数据源",
139
+ "Nano ID": "Nano ID",
140
+ "One to many": "一对多",
141
+ "One to one": "一对一",
142
+ "ON DELETE": "删除时",
28
143
  "OK": "确定",
144
+ "Option label": "选项标签",
145
+ "Option value": "选项值",
146
+ "Options": "选项",
147
+ "pattern": "正则表达式",
148
+ "Pattern": "正则表达式",
29
149
  "Password": "密码",
150
+ "Percent": "百分比",
30
151
  "Permissions": "权限",
152
+ "Phone": "电话",
31
153
  "Please select a field.": "请选择一个字段。",
154
+ "Please select at least one table": "请至少选择一张表",
155
+ "Please select a database view": "请选择一个数据库视图",
32
156
  "Port": "端口",
157
+ "Preset fields": "预设字段",
158
+ "Picker": "选择器",
159
+ "Precision": "精度",
160
+ "Precision(UI)": "精度(界面)",
161
+ "Primary": "主键",
162
+ "Primary key, distributed uniqueness, time-ordering": "主键,分布式唯一,按时间排序",
163
+ "Quarter": "季度",
164
+ "Randomly generated and can be modified. Support letters, numbers and underscores, must start with an letter.": "随机生成,可修改。支持字母、数字和下划线,必须以字母开头。",
33
165
  "Reloading": "加载中",
166
+ "Record unique key": "记录唯一标识",
167
+ "References": "参考",
168
+ "Relation": "关系",
169
+ "Relationship type": "关系类型",
170
+ "RESTRICT": "限制",
171
+ "required": "必填",
172
+ "Required": "必填",
173
+ "Reset": "重置",
174
+ "Radio group": "单选框组",
175
+ "Rich text": "富文本",
176
+ "Regular Expression": "正则表达式",
177
+ "Scale": "小数位数",
34
178
  "Select field": "选择字段",
179
+ "Select field source": "选择来源字段",
35
180
  "Selected tables": "已选数据表",
181
+ "Show time": "显示时间",
182
+ "SET NULL": "置空",
183
+ "Separator": "分隔符",
184
+ "Search collections...": "搜索数据表...",
185
+ "Skip getting the total number of table records during paging to speed up loading. It is recommended to enable this option for data tables with a large amount of data": "分页时跳过获取数据表记录总数以提升加载速度,建议在大数据量的数据表中启用。",
186
+ "Snowflake ID (53-bit)": "雪花 ID(53 位)",
187
+ "Single line text": "单行文本",
188
+ "Single select": "单选",
189
+ "Source collection": "源数据表",
190
+ "Source collections": "来源数据表",
191
+ "Source key": "源键",
36
192
  "Status": "状态",
193
+ "Delete failed": "删除失败",
194
+ "Save failed": "保存失败",
195
+ "Submit failed": "提交失败",
196
+ "Store the creation time of each record": "存储每条记录的创建时间",
197
+ "Store the creation user of each record": "存储每条记录的创建人",
198
+ "Store the last update time of each record": "存储每条记录的最后更新时间",
199
+ "Store the last update user of each record": "存储每条记录的最后更新人",
37
200
  "Storage": "文件地址",
201
+ "Storage type": "存储类型",
202
+ "Create inverse field in the target collection": "在目标数据表中创建反向字段",
38
203
  "Sync field changes from database": "从数据库同步字段变更",
204
+ "Sync failed": "同步失败",
205
+ "Sync from database": "从数据库同步",
206
+ "Sync successfully": "同步成功",
207
+ "SQL collection": "SQL 数据表",
208
+ "Support letters, numbers and underscores, must start with an letter.": "支持字母、数字和下划线,必须以字母开头。",
209
+ "Table name": "表名",
210
+ "Tables loaded successfully": "数据表加载成功",
211
+ "Collection display name": "数据表显示名称",
212
+ "Collection name": "数据表名称",
213
+ "Collection template": "数据表模板",
39
214
  "Test Connection": "测试连接",
215
+ "Target collection": "目标数据表",
216
+ "Target key": "目标键",
40
217
  "The following field types are not compatible and do not support output and display": "以下字段类型未适配,不支持输出和显示",
218
+ "Through collection": "中间表",
219
+ "Tree collection": "树数据表",
41
220
  "Type": "类型",
221
+ "Time": "时间",
222
+ "Time format": "时间格式",
223
+ "timestamp": "时间戳",
224
+ "Timestamp": "时间戳",
225
+ "Unique": "唯一",
226
+ "Unsafe integer": "非安全整数",
227
+ "Unix timestamp": "Unix 时间戳",
228
+ "URL": "URL",
229
+ "UUID": "UUID",
230
+ "Use simple pagination mode": "使用简单分页模式",
231
+ "Use the same time zone (GMT) for all users": "所有用户使用相同时区(GMT)",
42
232
  "Unknown field type": "未知字段类型",
233
+ "uri": "URI",
234
+ "uuid": "UUID",
235
+ "Advanced type": "高级类型",
236
+ "Autoincrement": "自增数字",
237
+ "Big integer": "大整数",
238
+ "Bold": "加粗",
239
+ "Both": "编辑和预览",
240
+ "Calculation engine": "计算引擎",
241
+ "case": "大小写",
242
+ "Character sets": "字符集",
243
+ "Check": "任务列表",
244
+ "Code": "代码块",
245
+ "Customize": "自定义",
246
+ "Daily": "每天",
247
+ "Date & Time": "日期和时间",
248
+ "Datetime": "日期时间",
249
+ "Digits": "位数",
250
+ "EditMode": "编辑模式",
251
+ "Emoji": "表情",
252
+ "Every Monday": "每周一",
253
+ "Expression": "表达式",
254
+ "Choices": "选项",
255
+ "Fixed text": "固定文本",
256
+ "Formula": "公式",
257
+ "Fullscreen": "全屏",
258
+ "Headings": "标题",
259
+ "Indent": "缩进",
260
+ "InlineCode": "行内代码",
261
+ "Input text, use {{ to insert variables": "输入文本,使用 {{ 插入变量",
262
+ "Inputable": "可输入",
263
+ "InsertAfter": "后方插入",
264
+ "InsertBefore": "前方插入",
265
+ "Italic": "斜体",
266
+ "Link": "链接",
267
+ "List": "列表",
268
+ "Lowercase letters": "小写字母",
269
+ "Match rules": "输入必须匹配规则",
270
+ "Monthly": "每月",
271
+ "Move down": "下移",
272
+ "Move up": "上移",
273
+ "No reset": "不重置",
274
+ "OrderedList": "有序列表",
275
+ "Others": "其他",
276
+ "Operations": "操作",
277
+ "Outline": "大纲",
278
+ "Please add at least one rule": "请至少添加一条规则",
279
+ "Preview": "预览",
280
+ "Random character": "随机字符",
281
+ "Record": "录音",
282
+ "Redo": "重做",
283
+ "Reset cycle": "重置周期",
284
+ "Rule content": "规则内容",
285
+ "Sequence": "自动编号",
286
+ "Sequence rules": "编号规则",
287
+ "Start from": "起始值",
288
+ "Strike": "删除线",
289
+ "String": "字符串",
290
+ "Symbols": "符号",
291
+ "Syntax references": "语法参考",
292
+ "System info": "系统信息",
293
+ "Text content": "文本内容",
294
+ "Toolbar": "工具栏",
295
+ "Undo": "撤销",
296
+ "Unsupported fields": "不支持的字段",
297
+ "Upload": "上传",
298
+ "Uppercase letters": "大写字母",
299
+ "Used to store files uploaded in the Markdown editor (default: attachments)": "用于存储 Markdown 编辑器上传的文件(默认:attachments)",
300
+ "Validation": "验证",
301
+ "Vditor": "Vditor",
302
+ "Version": "版本",
303
+ "Which file collection should it be uploaded to": "文件上传到哪个文件数据表",
43
304
  "Username": "用户名",
44
305
  "View documentation": "查看文档",
306
+ "Year": "年",
307
+ "Yearly": "每年",
308
+ "Yellow": "日出",
45
309
  "ai.tools.getDataSources.title": "获取数据源",
46
310
  "ai.tools.getDataSources.about": "获取所有可用数据源列表",
47
311
  "ai.tools.getCollectionNames.title": "获取数据表名称",
@@ -57,8 +321,10 @@
57
321
  "ai.tools.intentRouter.about": "将意图路由到适当的工作流",
58
322
  "ai.tools.searchFieldMetadata.title": "搜索字段元数据",
59
323
  "ai.tools.searchFieldMetadata.about": "通过关键词搜索数据模型字段(优先英文)。返回搜索结果或建议的查询。",
60
- "ai.tools.dataSourceQuery.title": "数据源查询操作",
61
- "ai.tools.dataSourceQuery.about": "使用 dataSource、collectionName 和 collection fields 从数据库中查询数据。",
324
+ "ai.tools.dataSourceQuery.title": "获取数据记录",
325
+ "ai.tools.dataSourceQuery.about": "使用 dataSource、collectionName、字段、筛选和排序条件获取数据记录",
326
+ "ai.tools.dataQuery.title": "查询数据",
327
+ "ai.tools.dataQuery.about": "使用 measures、dimensions、orders、filter 和 having 执行聚合查询",
62
328
  "ai.tools.dataSourceCounting.title": "数据源记录数统计",
63
329
  "ai.tools.dataSourceCounting.about": "使用 dataSource、collectionName 和 collection fields 从数据库中获取记录总数",
64
330
  "ai.tools.dataQuery.args.datasource": "数据源标识",
@@ -67,5 +333,11 @@
67
333
  "ai.tools.dataQuery.args.appends": "需要查询的关联数据表",
68
334
  "ai.tools.dataQuery.args.sort": "排序字段名称,默认升序。字段名前加减号表示降序",
69
335
  "ai.tools.dataQuery.args.offset": "查询记录的偏移量",
70
- "ai.tools.dataQuery.args.limit": "查询记录的最大数量"
336
+ "ai.tools.dataQuery.args.limit": "查询记录的最大数量",
337
+ "ai.skills.dataQuery.title": "数据查询",
338
+ "ai.skills.dataQuery.about": "使用工具查看元数据、查询记录并对指定数据源执行聚合分析",
339
+ "ai.skills.dataModeling.title": "数据建模",
340
+ "ai.skills.dataModeling.about": "帮助将业务场景转换为带有表声明和关系图的规范化数据库模式。",
341
+ "ai.skills.dataMetadata.title": "获取数据模型元信息",
342
+ "ai.skills.dataMetadata.about": "帮助获取数据模型元数据(如数据库表定义,RESTful API 定义),如数据表定义,字段元数据"
71
343
  }