@nocobase/plugin-data-source-manager 2.1.0-alpha.4 → 2.1.0-alpha.45
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
- package/LICENSE +201 -0
- package/README.md +79 -10
- package/client-v2.d.ts +2 -0
- package/client-v2.js +1 -0
- package/dist/ai/ai-employees/orin/ignored.d.ts +10 -0
- package/dist/ai/ai-employees/orin/ignored.js +59 -0
- package/dist/ai/ai-employees/orin/skills/data-modeling/SKILLS.md +245 -0
- package/dist/ai/{tools → ai-employees/orin/skills/data-modeling/tools}/defineCollections.js +47 -1
- package/dist/ai/{tools → ai-employees/orin/skills/data-modeling/tools}/intentRouter.js +1 -1
- package/dist/ai/{tools/data-query → common}/common.js +63 -11
- package/dist/ai/{tools/data-query → common}/utils.d.ts +1 -0
- package/dist/ai/{tools/data-query → common}/utils.js +15 -0
- package/dist/ai/skills/data-metadata/SKILLS.md +108 -0
- package/dist/ai/{tools → skills/data-metadata/tools}/getCollectionMetadata.js +2 -2
- package/dist/ai/{tools → skills/data-metadata/tools}/getCollectionNames.js +2 -2
- package/dist/ai/{tools → skills/data-metadata/tools}/getDataSources.js +2 -2
- package/dist/ai/{tools → skills/data-metadata/tools}/searchFieldMetadata.js +2 -2
- package/dist/ai/skills/data-query/SKILLS.md +246 -0
- package/dist/ai/skills/data-query/tools/dataQuery.js +282 -0
- package/dist/ai/{tools/data-query → skills/data-query/tools}/dataSourceCounting.js +12 -4
- package/dist/ai/skills/data-query/tools/dataSourceQuery.d.ts +10 -0
- package/dist/ai/{tools/data-query → skills/data-query/tools}/dataSourceQuery.js +12 -5
- package/dist/client/271.b3c0013cf976adf0.js +10 -0
- package/dist/client/369.6025f2112454fab1.js +10 -0
- package/dist/client/397.c8c6659cf3f7ac1c.js +10 -0
- package/dist/client/416.197712b8b93033c5.js +10 -0
- package/dist/client/420.0c3e3c9888e0ba31.js +10 -0
- package/dist/client/603.d6022bceb934f5b0.js +10 -0
- package/dist/client/644.b98e4b39058e9c32.js +10 -0
- package/dist/client/936.d5ab7aecb4eb6004.js +10 -0
- package/dist/client/index.js +1 -1
- package/dist/client-v2/167.c72713810e2d0526.js +10 -0
- package/dist/client-v2/426.3cd9f994a3145829.js +10 -0
- package/dist/client-v2/components/DataSourceForm.d.ts +17 -0
- package/dist/client-v2/field-interfaces/index.d.ts +13 -0
- package/dist/client-v2/index.d.ts +12 -0
- package/dist/client-v2/index.js +10 -0
- package/dist/client-v2/locale.d.ts +11 -0
- package/dist/client-v2/pages/DataSourceCollectionsPage.d.ts +10 -0
- package/dist/client-v2/pages/DataSourcesPage.d.ts +10 -0
- package/dist/client-v2/pages/components/CollectionsPage.d.ts +15 -0
- package/dist/client-v2/pages/components/FieldForm.d.ts +19 -0
- package/dist/client-v2/pages/components/FieldsPage.d.ts +15 -0
- package/dist/client-v2/pages/components/SqlCollectionConfigure.d.ts +62 -0
- package/dist/client-v2/pages/components/ViewCollectionConfigure.d.ts +27 -0
- package/dist/client-v2/pages/components/collectionFieldApi.d.ts +11 -0
- package/dist/client-v2/pages/components/collectionTemplateFieldInterfaces.d.ts +18 -0
- package/dist/client-v2/plugin.d.ts +188 -0
- package/dist/client-v2/runtime.d.ts +12 -0
- package/dist/client-v2/utils/compileLegacyTemplate.d.ts +13 -0
- package/dist/externalVersion.js +17 -13
- package/dist/locale/en-US.json +270 -3
- package/dist/locale/zh-CN.json +270 -3
- package/dist/node_modules/zod/index.cjs +1 -1
- package/dist/node_modules/zod/package.json +1 -1
- package/dist/server/mcp-post-processors.d.ts +24 -0
- package/dist/server/mcp-post-processors.js +158 -0
- package/dist/server/models/data-source.js +3 -13
- package/dist/server/plugin.js +2 -0
- package/dist/server/resourcers/data-sources-collections-fields.d.ts +1 -0
- package/dist/server/resourcers/data-sources-collections-fields.js +9 -0
- package/dist/server/services/external-field-apply.d.ts +23 -0
- package/dist/server/services/external-field-apply.js +208 -0
- package/dist/server/utils.js +6 -1
- package/dist/swagger/index.d.ts +326 -0
- package/dist/swagger/index.js +385 -0
- package/package.json +5 -2
- package/LICENSE.txt +0 -172
- package/dist/client/1a8cce8035a89dd9.js +0 -10
- package/dist/client/276bcf3de74bebd1.js +0 -10
- package/dist/client/2f7a418e7935984d.js +0 -10
- package/dist/client/689d3bec33ad2ec3.js +0 -10
- package/dist/client/d33eb40009bd7ec6.js +0 -10
- package/dist/client/dbf5ddf434ab29c0.js +0 -10
- package/dist/client/f528b165e77e3608.js +0 -10
- package/dist/client/fdae18574fda07af.js +0 -10
- /package/dist/ai/{tools → ai-employees/orin/skills/data-modeling/tools}/defineCollections.d.ts +0 -0
- /package/dist/ai/{tools → ai-employees/orin/skills/data-modeling/tools}/intentRouter.d.ts +0 -0
- /package/dist/ai/{tools/data-query → common}/common.d.ts +0 -0
- /package/dist/ai/{tools → skills/data-metadata/tools}/getCollectionMetadata.d.ts +0 -0
- /package/dist/ai/{tools → skills/data-metadata/tools}/getCollectionNames.d.ts +0 -0
- /package/dist/ai/{tools → skills/data-metadata/tools}/getDataSources.d.ts +0 -0
- /package/dist/ai/{tools → skills/data-metadata/tools}/searchFieldMetadata.d.ts +0 -0
- /package/dist/ai/{tools/data-query/dataSourceCounting.d.ts → skills/data-query/tools/dataQuery.d.ts} +0 -0
- /package/dist/ai/{tools/data-query/dataSourceQuery.d.ts → skills/data-query/tools/dataSourceCounting.d.ts} +0 -0
package/dist/locale/en-US.json
CHANGED
|
@@ -1,9 +1,46 @@
|
|
|
1
1
|
{
|
|
2
|
+
"12 hour": "12 hour",
|
|
3
|
+
"24 hour": "24 hour",
|
|
2
4
|
"Allow adding and modifying collection": "Allow adding and modifying collection",
|
|
5
|
+
"Add category": "Add category",
|
|
6
|
+
"All collections": "All collections",
|
|
7
|
+
"Add field": "Add field",
|
|
8
|
+
"Add option": "Add option",
|
|
9
|
+
"Add rule": "Add rule",
|
|
10
|
+
"Are you sure you want to load {{count}} table(s)?": "Are you sure you want to load {{count}} table(s)?",
|
|
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.": "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.",
|
|
4
12
|
"Available tables": "Available tables",
|
|
13
|
+
"Auto increment": "Auto increment",
|
|
14
|
+
"Automatically generate default values": "Automatically generate default values",
|
|
15
|
+
"Automatically remove heading and tailing spaces": "Automatically remove heading and tailing spaces",
|
|
16
|
+
"Automatically update timestamp on update": "Automatically update timestamp on update",
|
|
17
|
+
"Base": "Base",
|
|
18
|
+
"Basic": "Basic",
|
|
19
|
+
"BelongsTo": "BelongsTo",
|
|
20
|
+
"BelongsToMany": "BelongsToMany",
|
|
21
|
+
"CASCADE": "CASCADE",
|
|
22
|
+
"Checkbox": "Checkbox",
|
|
23
|
+
"Checkbox group": "Checkbox group",
|
|
24
|
+
"Category name": "Category name",
|
|
25
|
+
"Color": "Color",
|
|
26
|
+
"Collection category": "Collection category",
|
|
27
|
+
"Configure fields": "Configure fields",
|
|
5
28
|
"Collections": "Collections",
|
|
29
|
+
"Comparison": "Comparison",
|
|
30
|
+
"Confirm load tables": "Confirm load tables",
|
|
6
31
|
"Connection successful": "Connection successful",
|
|
32
|
+
"Connect to database view": "Connect to database view",
|
|
33
|
+
"contains": "contains",
|
|
34
|
+
"{{count}} filter items": "{{count}} filter items",
|
|
35
|
+
"Create collection": "Create collection",
|
|
36
|
+
"Calendar collection": "Calendar collection",
|
|
37
|
+
"Categories": "Categories",
|
|
38
|
+
"Created at": "Created at",
|
|
39
|
+
"Created by": "Created by",
|
|
40
|
+
"Date": "Date",
|
|
41
|
+
"Date only": "Date only",
|
|
42
|
+
"Date format": "Date format",
|
|
43
|
+
"Data type": "Data type",
|
|
7
44
|
"Data source display name": "Data source display name",
|
|
8
45
|
"Data source manager": "Data source manager",
|
|
9
46
|
"Data source name": "Data source name",
|
|
@@ -11,37 +48,259 @@
|
|
|
11
48
|
"Data source synchronization successful": "Data source synchronization successful",
|
|
12
49
|
"Data sources": "Data sources",
|
|
13
50
|
"Database": "Database",
|
|
51
|
+
"Delete category": "Delete category",
|
|
52
|
+
"Delete collection": "Delete collection",
|
|
53
|
+
"Delete": "Delete",
|
|
54
|
+
"Delete record": "Delete record",
|
|
14
55
|
"Description": "Description",
|
|
56
|
+
"Default value": "Default value",
|
|
57
|
+
"Default value to current time": "Default value to current time",
|
|
58
|
+
"Double": "Double",
|
|
15
59
|
"Display name": "Display name",
|
|
60
|
+
"does not contain": "does not contain",
|
|
61
|
+
"Edit category": "Edit category",
|
|
62
|
+
"Edit collection": "Edit collection",
|
|
63
|
+
"Edit field": "Edit field",
|
|
64
|
+
"Enabled": "Enabled",
|
|
65
|
+
"Expression collection": "Expression collection",
|
|
66
|
+
"Email": "Email",
|
|
67
|
+
"email": "email",
|
|
16
68
|
"Failed": "Failed",
|
|
69
|
+
"Failed to load tables": "Failed to load tables",
|
|
70
|
+
"Field": "Field",
|
|
71
|
+
"Field display name": "Field display name",
|
|
72
|
+
"Field name": "Field name",
|
|
73
|
+
"Field name already exists": "Field name already exists",
|
|
74
|
+
"Field source": "Field source",
|
|
75
|
+
"Field type": "Field type",
|
|
17
76
|
"Field database type": "Field database type",
|
|
18
77
|
"Field interface": "Field interface",
|
|
78
|
+
"Fields": "Fields",
|
|
79
|
+
"Fields can only be used correctly if they are defined with an interface.": "Fields can only be used correctly if they are defined with an interface.",
|
|
19
80
|
"Field synchronization confirmation prompt": "Are you sure you want to synchronize fields from database? Depends on the number of tables and fields, This operation may take anywhere from a few seconds to several dozen seconds. If you only need to sync specific tables, please use the \"Configure Fields\" - \"Sync from database\" for those tables.",
|
|
81
|
+
"File collection": "File collection",
|
|
82
|
+
"Filter": "Filter",
|
|
20
83
|
"Filter data based on the specific field, with the requirement that the field value must be unique.": "Filter data based on the specific field, with the requirement that the field value must be unique.",
|
|
21
84
|
"Filter target key": "Filter target key",
|
|
85
|
+
"Float": "Float",
|
|
86
|
+
"Foreign key": "Foreign key",
|
|
87
|
+
"Foreign key 1": "Foreign key 1",
|
|
88
|
+
"Foreign key 2": "Foreign key 2",
|
|
89
|
+
"Field values must be unique.": "Field values must be unique.",
|
|
90
|
+
"Generated automatically if left blank": "Generated automatically if left blank",
|
|
91
|
+
"General collection": "General collection",
|
|
92
|
+
"GMT": "GMT",
|
|
93
|
+
"Greater than": "Greater than",
|
|
94
|
+
"HasMany": "HasMany",
|
|
95
|
+
"HasOne": "HasOne",
|
|
22
96
|
"Host": "Host",
|
|
97
|
+
"Icon": "Icon",
|
|
23
98
|
"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.": "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.",
|
|
99
|
+
"Inherits": "Inherits",
|
|
100
|
+
"Integer": "Integer",
|
|
101
|
+
"integer": "integer",
|
|
102
|
+
"Interface": "Interface",
|
|
103
|
+
"Inverse field display name": "Inverse field display name",
|
|
104
|
+
"Inverse field name": "Inverse field name",
|
|
105
|
+
"Inverse relationship type": "Inverse relationship type",
|
|
106
|
+
"is": "is",
|
|
107
|
+
"is not": "is not",
|
|
108
|
+
"item": "item",
|
|
109
|
+
"items": "items",
|
|
110
|
+
"JSON": "JSON",
|
|
111
|
+
"Joi API": "Joi API",
|
|
112
|
+
"Limit": "Limit",
|
|
24
113
|
"Load tables from database": "Load tables from database",
|
|
25
114
|
"Loaded": "Loaded",
|
|
26
115
|
"Loading": "Loading",
|
|
116
|
+
"Last updated at": "Last updated at",
|
|
117
|
+
"Last updated by": "Last updated by",
|
|
118
|
+
"Less than": "Less than",
|
|
119
|
+
"length": "length",
|
|
120
|
+
"Long text": "Long text",
|
|
121
|
+
"Many to many": "Many to many",
|
|
122
|
+
"Many to one": "Many to one",
|
|
123
|
+
"Markdown": "Markdown",
|
|
124
|
+
"max": "max",
|
|
125
|
+
"Max length": "Max length",
|
|
126
|
+
"Max value": "Max value",
|
|
127
|
+
"Media": "Media",
|
|
128
|
+
"min": "min",
|
|
129
|
+
"Min length": "Min length",
|
|
130
|
+
"Min value": "Min value",
|
|
131
|
+
"Month": "Month",
|
|
132
|
+
"Multiple": "Multiple",
|
|
133
|
+
"Multiple select": "Multiple select",
|
|
134
|
+
"NO ACTION": "NO ACTION",
|
|
135
|
+
"Number": "Number",
|
|
27
136
|
"No external data source plugin installed": "No external data source plugin installed",
|
|
137
|
+
"Nano ID": "Nano ID",
|
|
138
|
+
"One to many": "One to many",
|
|
139
|
+
"One to one": "One to one",
|
|
140
|
+
"ON DELETE": "ON DELETE",
|
|
28
141
|
"OK": "OK",
|
|
142
|
+
"Option label": "Option label",
|
|
143
|
+
"Option value": "Option value",
|
|
144
|
+
"Options": "Options",
|
|
145
|
+
"pattern": "pattern",
|
|
146
|
+
"Pattern": "Pattern",
|
|
29
147
|
"Password": "Password",
|
|
148
|
+
"Percent": "Percent",
|
|
30
149
|
"Permissions": "Permissions",
|
|
150
|
+
"Phone": "Phone",
|
|
151
|
+
"Picker": "Picker",
|
|
31
152
|
"Please select a field.": "Please select a field.",
|
|
153
|
+
"Please select at least one table": "Please select at least one table",
|
|
154
|
+
"Please select a database view": "Please select a database view",
|
|
32
155
|
"Port": "Port",
|
|
156
|
+
"Preset fields": "Preset fields",
|
|
157
|
+
"Precision": "Precision",
|
|
158
|
+
"Precision(UI)": "Precision(UI)",
|
|
159
|
+
"Primary": "Primary",
|
|
160
|
+
"Primary key, distributed uniqueness, time-ordering": "Primary key, distributed uniqueness, time-ordering",
|
|
161
|
+
"Quarter": "Quarter",
|
|
162
|
+
"Randomly generated and can be modified. Support letters, numbers and underscores, must start with an letter.": "Randomly generated and can be modified. Support letters, numbers and underscores, must start with an letter.",
|
|
33
163
|
"Reloading": "Reloading",
|
|
164
|
+
"Record unique key": "Record unique key",
|
|
165
|
+
"References": "References",
|
|
166
|
+
"Relation": "Relation",
|
|
167
|
+
"Relationship type": "Relationship type",
|
|
168
|
+
"RESTRICT": "RESTRICT",
|
|
169
|
+
"required": "required",
|
|
170
|
+
"Required": "Required",
|
|
171
|
+
"Reset": "Reset",
|
|
172
|
+
"Radio group": "Radio group",
|
|
173
|
+
"Rich text": "Rich text",
|
|
174
|
+
"Scale": "Scale",
|
|
175
|
+
"Regular Expression": "Regular Expression",
|
|
34
176
|
"Select field": "Select field",
|
|
177
|
+
"Select field source": "Select field source",
|
|
35
178
|
"Selected tables": "Selected tables",
|
|
179
|
+
"Show time": "Show time",
|
|
180
|
+
"SET NULL": "SET NULL",
|
|
181
|
+
"Separator": "Separator",
|
|
182
|
+
"Search collections...": "Search collections...",
|
|
183
|
+
"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": "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",
|
|
184
|
+
"Snowflake ID (53-bit)": "Snowflake ID (53-bit)",
|
|
185
|
+
"Single line text": "Single line text",
|
|
186
|
+
"Single select": "Single select",
|
|
187
|
+
"Source collection": "Source collection",
|
|
188
|
+
"Source collections": "Source collections",
|
|
189
|
+
"Source key": "Source key",
|
|
36
190
|
"Status": "Status",
|
|
191
|
+
"Submit failed": "Submit failed",
|
|
192
|
+
"Store the creation time of each record": "Store the creation time of each record",
|
|
193
|
+
"Store the creation user of each record": "Store the creation user of each record",
|
|
194
|
+
"Store the last update time of each record": "Store the last update time of each record",
|
|
195
|
+
"Store the last update user of each record": "Store the last update user of each record",
|
|
37
196
|
"Storage": "Storage",
|
|
197
|
+
"Storage type": "Storage type",
|
|
198
|
+
"Create inverse field in the target collection": "Create inverse field in the target collection",
|
|
38
199
|
"Sync field changes from database": "Sync field changes from database",
|
|
200
|
+
"Sync from database": "Sync from database",
|
|
201
|
+
"Sync successfully": "Sync successfully",
|
|
202
|
+
"SQL collection": "SQL collection",
|
|
203
|
+
"Support letters, numbers and underscores, must start with an letter.": "Support letters, numbers and underscores, must start with an letter.",
|
|
204
|
+
"Table name": "Table name",
|
|
205
|
+
"Tables loaded successfully": "Tables loaded successfully",
|
|
206
|
+
"Collection display name": "Collection display name",
|
|
207
|
+
"Collection name": "Collection name",
|
|
208
|
+
"Collection template": "Collection template",
|
|
39
209
|
"Test Connection": "Test Connection",
|
|
210
|
+
"Target collection": "Target collection",
|
|
211
|
+
"Target key": "Target key",
|
|
40
212
|
"The following field types are not compatible and do not support output and display": "The following field types are not compatible and do not support output and display",
|
|
213
|
+
"Through collection": "Through collection",
|
|
214
|
+
"Tree collection": "Tree collection",
|
|
41
215
|
"Type": "Type",
|
|
216
|
+
"Time": "Time",
|
|
217
|
+
"Time format": "Time format",
|
|
218
|
+
"timestamp": "timestamp",
|
|
219
|
+
"Timestamp": "Timestamp",
|
|
220
|
+
"Unique": "Unique",
|
|
221
|
+
"Unsafe integer": "Unsafe integer",
|
|
222
|
+
"Unix timestamp": "Unix timestamp",
|
|
223
|
+
"URL": "URL",
|
|
224
|
+
"UUID": "UUID",
|
|
225
|
+
"Use simple pagination mode": "Use simple pagination mode",
|
|
226
|
+
"Use the same time zone (GMT) for all users": "Use the same time zone (GMT) for all users",
|
|
42
227
|
"Unknown field type": "Unknown field type",
|
|
228
|
+
"uri": "uri",
|
|
229
|
+
"uuid": "uuid",
|
|
230
|
+
"Advanced type": "Advanced type",
|
|
231
|
+
"Autoincrement": "Autoincrement",
|
|
232
|
+
"Big integer": "Big integer",
|
|
233
|
+
"Bold": "Bold",
|
|
234
|
+
"Both": "Both",
|
|
235
|
+
"Calculation engine": "Calculation engine",
|
|
236
|
+
"case": "case",
|
|
237
|
+
"Character sets": "Character sets",
|
|
238
|
+
"Check": "Check",
|
|
239
|
+
"Code": "Code",
|
|
240
|
+
"Customize": "Customize",
|
|
241
|
+
"Daily": "Daily",
|
|
242
|
+
"Date & Time": "Date & Time",
|
|
243
|
+
"Datetime": "Datetime",
|
|
244
|
+
"Digits": "Digits",
|
|
245
|
+
"EditMode": "Edit mode",
|
|
246
|
+
"Emoji": "Emoji",
|
|
247
|
+
"Every Monday": "Every Monday",
|
|
248
|
+
"Expression": "Expression",
|
|
249
|
+
"Choices": "Choices",
|
|
250
|
+
"Fixed text": "Fixed text",
|
|
251
|
+
"Formula": "Formula",
|
|
252
|
+
"Fullscreen": "Fullscreen",
|
|
253
|
+
"Headings": "Headings",
|
|
254
|
+
"Indent": "Indent",
|
|
255
|
+
"InlineCode": "Inline code",
|
|
256
|
+
"Input text, use {{ to insert variables": "Input text, use {{ to insert variables",
|
|
257
|
+
"Inputable": "Inputable",
|
|
258
|
+
"InsertAfter": "Insert after",
|
|
259
|
+
"InsertBefore": "Insert before",
|
|
260
|
+
"Italic": "Italic",
|
|
261
|
+
"Link": "Link",
|
|
262
|
+
"List": "List",
|
|
263
|
+
"Lowercase letters": "Lowercase letters",
|
|
264
|
+
"Match rules": "Match rules",
|
|
265
|
+
"Monthly": "Monthly",
|
|
266
|
+
"Move down": "Move down",
|
|
267
|
+
"Move up": "Move up",
|
|
268
|
+
"No reset": "No reset",
|
|
269
|
+
"OrderedList": "Ordered list",
|
|
270
|
+
"Others": "Others",
|
|
271
|
+
"Operations": "Operations",
|
|
272
|
+
"Outline": "Outline",
|
|
273
|
+
"Please add at least one rule": "Please add at least one rule",
|
|
274
|
+
"Preview": "Preview",
|
|
275
|
+
"Random character": "Random character",
|
|
276
|
+
"Record": "Record",
|
|
277
|
+
"Redo": "Redo",
|
|
278
|
+
"Reset cycle": "Reset cycle",
|
|
279
|
+
"Rule content": "Rule content",
|
|
280
|
+
"Sequence": "Sequence",
|
|
281
|
+
"Sequence rules": "Sequence rules",
|
|
282
|
+
"Start from": "Start from",
|
|
283
|
+
"Strike": "Strike",
|
|
284
|
+
"String": "String",
|
|
285
|
+
"Symbols": "Symbols",
|
|
286
|
+
"Syntax references": "Syntax references",
|
|
287
|
+
"System info": "System info",
|
|
288
|
+
"Text content": "Text content",
|
|
289
|
+
"Toolbar": "Toolbar",
|
|
290
|
+
"Undo": "Undo",
|
|
291
|
+
"Unsupported fields": "Unsupported fields",
|
|
292
|
+
"Upload": "Upload",
|
|
293
|
+
"Uppercase letters": "Uppercase letters",
|
|
294
|
+
"Used to store files uploaded in the Markdown editor (default: attachments)": "Used to store files uploaded in the Markdown editor (default: attachments)",
|
|
295
|
+
"Validation": "Validation",
|
|
296
|
+
"Vditor": "Vditor",
|
|
297
|
+
"Version": "Version",
|
|
298
|
+
"Which file collection should it be uploaded to": "Which file collection should it be uploaded to",
|
|
43
299
|
"Username": "Username",
|
|
44
300
|
"View documentation": "View documentation",
|
|
301
|
+
"Year": "Year",
|
|
302
|
+
"Yearly": "Yearly",
|
|
303
|
+
"Yellow": "Yellow",
|
|
45
304
|
"ai.tools.getDataSources.title": "Get data sources",
|
|
46
305
|
"ai.tools.getDataSources.about": "Retrieve list of all available data sources",
|
|
47
306
|
"ai.tools.getCollectionNames.title": "Get collection names",
|
|
@@ -57,8 +316,10 @@
|
|
|
57
316
|
"ai.tools.intentRouter.about": "Route intents to appropriate workflow",
|
|
58
317
|
"ai.tools.searchFieldMetadata.title": "Search field metadata",
|
|
59
318
|
"ai.tools.searchFieldMetadata.about": "Search fields in data models by keyword (english first). Returns either search results or a suggested query.",
|
|
60
|
-
"ai.tools.dataSourceQuery.title": "
|
|
61
|
-
"ai.tools.dataSourceQuery.about": "Use dataSource, collectionName,
|
|
319
|
+
"ai.tools.dataSourceQuery.title": "Get records",
|
|
320
|
+
"ai.tools.dataSourceQuery.about": "Use dataSource, collectionName, fields, filters, and sorting to get records",
|
|
321
|
+
"ai.tools.dataQuery.title": "Query data",
|
|
322
|
+
"ai.tools.dataQuery.about": "Run aggregate repository queries with measures, dimensions, orders, filter, and having",
|
|
62
323
|
"ai.tools.dataSourceCounting.title": "Data source records counting",
|
|
63
324
|
"ai.tools.dataSourceCounting.about": "Use dataSource, collectionName, and collection fields to query data from the database, get total count of records",
|
|
64
325
|
"ai.tools.dataQuery.args.datasource": "Data source key",
|
|
@@ -67,5 +328,11 @@
|
|
|
67
328
|
"ai.tools.dataQuery.args.appends": "Related collection to be queried",
|
|
68
329
|
"ai.tools.dataQuery.args.sort": "Sort field names. By default, they are in ascending order. A minus sign before the field name indicates descending order",
|
|
69
330
|
"ai.tools.dataQuery.args.offset": "Offset of records to be queried",
|
|
70
|
-
"ai.tools.dataQuery.args.limit": "Maximum number of records to be queried"
|
|
331
|
+
"ai.tools.dataQuery.args.limit": "Maximum number of records to be queried",
|
|
332
|
+
"ai.skills.dataQuery.title": "Data query",
|
|
333
|
+
"ai.skills.dataQuery.about": "Use tools to inspect metadata, query records, and run aggregate analysis on specified data sources",
|
|
334
|
+
"ai.skills.dataModeling.title": "Data modeling",
|
|
335
|
+
"ai.skills.dataModeling.about": "helps translate business scenarios into normalized database schemas with table declarations and relationship diagrams.",
|
|
336
|
+
"ai.skills.dataMetadata.title": "Data metadata",
|
|
337
|
+
"ai.skills.dataMetadata.about": "helps get collection metadata (data model, like database table definition, RESTful API definition), like collection definition, field metadata"
|
|
71
338
|
}
|