@objectstack/platform-objects 6.8.1 → 7.0.0
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/dist/apps/index.d.mts +30 -1
- package/dist/apps/index.d.ts +30 -1
- package/dist/apps/index.js +994 -37
- package/dist/apps/index.js.map +1 -1
- package/dist/apps/index.mjs +994 -38
- package/dist/apps/index.mjs.map +1 -1
- package/dist/audit/index.d.mts +320 -16
- package/dist/audit/index.d.ts +320 -16
- package/dist/identity/index.d.mts +1000 -22
- package/dist/identity/index.d.ts +1000 -22
- package/dist/identity/index.js +384 -8
- package/dist/identity/index.js.map +1 -1
- package/dist/identity/index.mjs +384 -8
- package/dist/identity/index.mjs.map +1 -1
- package/dist/index.d.mts +5 -2
- package/dist/index.d.ts +5 -2
- package/dist/index.js +7060 -154
- package/dist/index.js.map +1 -1
- package/dist/index.mjs +7054 -155
- package/dist/index.mjs.map +1 -1
- package/dist/integration/index.d.mts +20 -1
- package/dist/integration/index.d.ts +20 -1
- package/dist/metadata/index.d.mts +40 -2
- package/dist/metadata/index.d.ts +40 -2
- package/dist/metadata-translations/index.d.mts +20 -0
- package/dist/metadata-translations/index.d.ts +20 -0
- package/dist/metadata-translations/index.js +4777 -0
- package/dist/metadata-translations/index.js.map +1 -0
- package/dist/metadata-translations/index.mjs +4775 -0
- package/dist/metadata-translations/index.mjs.map +1 -0
- package/dist/pages/index.d.mts +68 -0
- package/dist/pages/index.d.ts +68 -0
- package/dist/pages/index.js +371 -0
- package/dist/pages/index.js.map +1 -0
- package/dist/pages/index.mjs +368 -0
- package/dist/pages/index.mjs.map +1 -0
- package/dist/plugin.d.mts +35 -0
- package/dist/plugin.d.ts +35 -0
- package/dist/plugin.js +17566 -0
- package/dist/plugin.js.map +1 -0
- package/dist/plugin.mjs +17563 -0
- package/dist/plugin.mjs.map +1 -0
- package/dist/security/index.d.mts +6376 -2094
- package/dist/security/index.d.ts +6376 -2094
- package/dist/security/index.js +383 -1
- package/dist/security/index.js.map +1 -1
- package/dist/security/index.mjs +383 -2
- package/dist/security/index.mjs.map +1 -1
- package/dist/system/index.d.mts +60 -3
- package/dist/system/index.d.ts +60 -3
- package/package.json +17 -2
|
@@ -0,0 +1,4775 @@
|
|
|
1
|
+
// src/apps/translations/en.metadata-forms.generated.ts
|
|
2
|
+
var enMetadataForms = {
|
|
3
|
+
object: {
|
|
4
|
+
label: "Object",
|
|
5
|
+
sections: {
|
|
6
|
+
basics: {
|
|
7
|
+
label: "Basics",
|
|
8
|
+
description: "Identity, labels, and taxonomy."
|
|
9
|
+
},
|
|
10
|
+
fields: {
|
|
11
|
+
label: "Fields",
|
|
12
|
+
description: "Define the data model \u2014 each row becomes a column in the database table."
|
|
13
|
+
},
|
|
14
|
+
capabilities: {
|
|
15
|
+
label: "Capabilities",
|
|
16
|
+
description: "System features and API exposure."
|
|
17
|
+
},
|
|
18
|
+
advanced: {
|
|
19
|
+
label: "Advanced",
|
|
20
|
+
description: "State machines, actions, and storage."
|
|
21
|
+
}
|
|
22
|
+
},
|
|
23
|
+
fields: {
|
|
24
|
+
name: {
|
|
25
|
+
helpText: "snake_case unique identifier (immutable after creation)"
|
|
26
|
+
},
|
|
27
|
+
label: {
|
|
28
|
+
helpText: 'Singular display name (e.g. "Account")'
|
|
29
|
+
},
|
|
30
|
+
pluralLabel: {
|
|
31
|
+
helpText: 'Plural display name (e.g. "Accounts")'
|
|
32
|
+
},
|
|
33
|
+
icon: {
|
|
34
|
+
helpText: 'Lucide icon name (e.g. "building", "users")'
|
|
35
|
+
},
|
|
36
|
+
description: {
|
|
37
|
+
helpText: "Developer documentation"
|
|
38
|
+
},
|
|
39
|
+
tags: {
|
|
40
|
+
helpText: 'Categorization tags (e.g. "sales", "system")'
|
|
41
|
+
},
|
|
42
|
+
active: {
|
|
43
|
+
helpText: "Is the object active and usable"
|
|
44
|
+
},
|
|
45
|
+
isSystem: {
|
|
46
|
+
helpText: "System object (protected from deletion)"
|
|
47
|
+
},
|
|
48
|
+
abstract: {
|
|
49
|
+
helpText: "Abstract base (cannot be instantiated)"
|
|
50
|
+
},
|
|
51
|
+
fields: {
|
|
52
|
+
helpText: "Add the columns this object will store"
|
|
53
|
+
},
|
|
54
|
+
"fields.name": {
|
|
55
|
+
helpText: "snake_case identifier"
|
|
56
|
+
},
|
|
57
|
+
"fields.label": {
|
|
58
|
+
helpText: "Display label"
|
|
59
|
+
},
|
|
60
|
+
"fields.type": {
|
|
61
|
+
helpText: "Field type"
|
|
62
|
+
},
|
|
63
|
+
"fields.reference": {
|
|
64
|
+
helpText: "Target object (for lookup/master_detail)"
|
|
65
|
+
},
|
|
66
|
+
capabilities: {
|
|
67
|
+
helpText: "Enable/disable system features"
|
|
68
|
+
},
|
|
69
|
+
datasource: {
|
|
70
|
+
helpText: 'Target datasource ID (default: "default")'
|
|
71
|
+
}
|
|
72
|
+
}
|
|
73
|
+
},
|
|
74
|
+
field: {
|
|
75
|
+
label: "Field",
|
|
76
|
+
sections: {
|
|
77
|
+
basics: {
|
|
78
|
+
label: "Basics",
|
|
79
|
+
description: "Core field identity and constraints."
|
|
80
|
+
},
|
|
81
|
+
configuration: {
|
|
82
|
+
label: "Configuration",
|
|
83
|
+
description: "Field-type specific settings (visible blocks depend on the chosen type)."
|
|
84
|
+
},
|
|
85
|
+
formula: {
|
|
86
|
+
label: "Formula & Computed",
|
|
87
|
+
description: "Calculated values and roll-up summaries."
|
|
88
|
+
},
|
|
89
|
+
advanced: {
|
|
90
|
+
label: "Advanced",
|
|
91
|
+
description: "Database, UI, audit, and security settings."
|
|
92
|
+
}
|
|
93
|
+
},
|
|
94
|
+
fields: {
|
|
95
|
+
name: {
|
|
96
|
+
helpText: "Unique identifier (snake_case, immutable after creation)"
|
|
97
|
+
},
|
|
98
|
+
label: {
|
|
99
|
+
helpText: "Display name for users"
|
|
100
|
+
},
|
|
101
|
+
type: {
|
|
102
|
+
helpText: "Data type of this field"
|
|
103
|
+
},
|
|
104
|
+
group: {
|
|
105
|
+
helpText: "Group name for form layout"
|
|
106
|
+
},
|
|
107
|
+
description: {
|
|
108
|
+
helpText: "Help text shown to users"
|
|
109
|
+
},
|
|
110
|
+
required: {
|
|
111
|
+
helpText: "User must provide a value"
|
|
112
|
+
},
|
|
113
|
+
unique: {
|
|
114
|
+
helpText: "No two records can have the same value"
|
|
115
|
+
},
|
|
116
|
+
multiple: {
|
|
117
|
+
helpText: "Allow multiple values (for select/lookup)"
|
|
118
|
+
},
|
|
119
|
+
defaultValue: {
|
|
120
|
+
helpText: "Default value for new records"
|
|
121
|
+
},
|
|
122
|
+
minLength: {
|
|
123
|
+
helpText: "Minimum character length"
|
|
124
|
+
},
|
|
125
|
+
maxLength: {
|
|
126
|
+
helpText: "Maximum character length"
|
|
127
|
+
},
|
|
128
|
+
min: {
|
|
129
|
+
helpText: "Minimum value"
|
|
130
|
+
},
|
|
131
|
+
max: {
|
|
132
|
+
helpText: "Maximum value"
|
|
133
|
+
},
|
|
134
|
+
precision: {
|
|
135
|
+
helpText: "Decimal places (e.g., 2 for $10.50)"
|
|
136
|
+
},
|
|
137
|
+
scale: {
|
|
138
|
+
helpText: "Number of decimal digits"
|
|
139
|
+
},
|
|
140
|
+
options: {
|
|
141
|
+
helpText: "Available options (label/value pairs)"
|
|
142
|
+
},
|
|
143
|
+
reference: {
|
|
144
|
+
helpText: "Referenced object name"
|
|
145
|
+
},
|
|
146
|
+
referenceFilters: {
|
|
147
|
+
helpText: 'Filter expressions (e.g., "active = true")'
|
|
148
|
+
},
|
|
149
|
+
deleteBehavior: {
|
|
150
|
+
helpText: "What happens when referenced record is deleted"
|
|
151
|
+
},
|
|
152
|
+
expression: {
|
|
153
|
+
helpText: "CEL expression to calculate this field (makes it read-only)"
|
|
154
|
+
},
|
|
155
|
+
summaryOperations: {
|
|
156
|
+
helpText: "Roll-up summary configuration (for parent-child relationships)"
|
|
157
|
+
},
|
|
158
|
+
cached: {
|
|
159
|
+
helpText: "Caching configuration for computed fields"
|
|
160
|
+
},
|
|
161
|
+
columnName: {
|
|
162
|
+
helpText: "Physical column name in database (defaults to field name)"
|
|
163
|
+
},
|
|
164
|
+
index: {
|
|
165
|
+
helpText: "Create database index for faster queries"
|
|
166
|
+
},
|
|
167
|
+
externalId: {
|
|
168
|
+
helpText: "Mark as external ID for upsert operations"
|
|
169
|
+
},
|
|
170
|
+
readonly: {
|
|
171
|
+
helpText: "Field is read-only in forms"
|
|
172
|
+
},
|
|
173
|
+
hidden: {
|
|
174
|
+
helpText: "Hide field from default UI views"
|
|
175
|
+
},
|
|
176
|
+
searchable: {
|
|
177
|
+
helpText: "Include in global search results"
|
|
178
|
+
},
|
|
179
|
+
sortable: {
|
|
180
|
+
helpText: "Allow sorting lists by this field"
|
|
181
|
+
},
|
|
182
|
+
auditTrail: {
|
|
183
|
+
helpText: "Track detailed changes with user and timestamp"
|
|
184
|
+
},
|
|
185
|
+
trackFeedHistory: {
|
|
186
|
+
helpText: "Show changes in activity feed"
|
|
187
|
+
},
|
|
188
|
+
encryptionConfig: {
|
|
189
|
+
helpText: "Field-level encryption (GDPR/HIPAA/PCI-DSS)"
|
|
190
|
+
},
|
|
191
|
+
maskingRule: {
|
|
192
|
+
helpText: "Data masking rules for PII protection"
|
|
193
|
+
}
|
|
194
|
+
}
|
|
195
|
+
},
|
|
196
|
+
trigger: {
|
|
197
|
+
label: "Trigger"
|
|
198
|
+
},
|
|
199
|
+
validation: {
|
|
200
|
+
label: "Validation Rule"
|
|
201
|
+
},
|
|
202
|
+
hook: {
|
|
203
|
+
label: "Hook",
|
|
204
|
+
sections: {
|
|
205
|
+
identity: {
|
|
206
|
+
label: "Identity",
|
|
207
|
+
description: "What this hook is and when it fires."
|
|
208
|
+
},
|
|
209
|
+
body: {
|
|
210
|
+
label: "Body",
|
|
211
|
+
description: "Inline expression or sandboxed JavaScript executed when the hook fires."
|
|
212
|
+
},
|
|
213
|
+
legacy_handler: {
|
|
214
|
+
label: "Legacy handler",
|
|
215
|
+
description: "Function name reference \u2014 deprecated in favour of body."
|
|
216
|
+
},
|
|
217
|
+
execution: {
|
|
218
|
+
label: "Execution"
|
|
219
|
+
}
|
|
220
|
+
},
|
|
221
|
+
fields: {
|
|
222
|
+
name: {
|
|
223
|
+
helpText: "snake_case identifier (immutable after creation)"
|
|
224
|
+
},
|
|
225
|
+
object: {
|
|
226
|
+
helpText: 'Target object name (or "*" for global)'
|
|
227
|
+
},
|
|
228
|
+
events: {
|
|
229
|
+
helpText: "Lifecycle events (e.g. beforeInsert, afterUpdate)"
|
|
230
|
+
},
|
|
231
|
+
priority: {
|
|
232
|
+
helpText: "Lower numbers run first"
|
|
233
|
+
},
|
|
234
|
+
body: {
|
|
235
|
+
helpText: "Either an L1 expression or an L2 sandboxed JS body"
|
|
236
|
+
},
|
|
237
|
+
"body.language": {
|
|
238
|
+
helpText: "expression = pure formula; js = sandboxed JavaScript"
|
|
239
|
+
},
|
|
240
|
+
"body.source": {
|
|
241
|
+
helpText: "Function body source \u2014 no top-level imports"
|
|
242
|
+
},
|
|
243
|
+
"body.capabilities": {
|
|
244
|
+
helpText: "Allowed ctx APIs (api.read, api.write, crypto.uuid, log, \u2026)"
|
|
245
|
+
},
|
|
246
|
+
"body.timeoutMs": {
|
|
247
|
+
helpText: "Per-invocation timeout (ms)"
|
|
248
|
+
},
|
|
249
|
+
handler: {
|
|
250
|
+
helpText: "Handler function name (deprecated \u2014 prefer `body`)"
|
|
251
|
+
},
|
|
252
|
+
async: {
|
|
253
|
+
helpText: "Run in background, do not block the transaction"
|
|
254
|
+
},
|
|
255
|
+
condition: {
|
|
256
|
+
helpText: "Optional formula \u2014 skip the hook when this evaluates to false"
|
|
257
|
+
}
|
|
258
|
+
}
|
|
259
|
+
},
|
|
260
|
+
view: {
|
|
261
|
+
label: "View",
|
|
262
|
+
sections: {
|
|
263
|
+
basics: {
|
|
264
|
+
label: "Basics",
|
|
265
|
+
description: "Identity and primary surface."
|
|
266
|
+
},
|
|
267
|
+
columns_filters: {
|
|
268
|
+
label: "Columns & filters",
|
|
269
|
+
description: "What rows show and how users filter them."
|
|
270
|
+
},
|
|
271
|
+
table_options: {
|
|
272
|
+
label: "Table options",
|
|
273
|
+
description: "Grid-only display options."
|
|
274
|
+
},
|
|
275
|
+
kanban: {
|
|
276
|
+
label: "Kanban",
|
|
277
|
+
description: "Kanban-specific board configuration."
|
|
278
|
+
},
|
|
279
|
+
calendar: {
|
|
280
|
+
label: "Calendar",
|
|
281
|
+
description: "Calendar-specific configuration."
|
|
282
|
+
},
|
|
283
|
+
gantt: {
|
|
284
|
+
label: "Gantt",
|
|
285
|
+
description: "Gantt-specific configuration."
|
|
286
|
+
},
|
|
287
|
+
gallery: {
|
|
288
|
+
label: "Gallery",
|
|
289
|
+
description: "Gallery-specific configuration."
|
|
290
|
+
},
|
|
291
|
+
timeline: {
|
|
292
|
+
label: "Timeline",
|
|
293
|
+
description: "Timeline-specific configuration."
|
|
294
|
+
},
|
|
295
|
+
chart: {
|
|
296
|
+
label: "Chart",
|
|
297
|
+
description: "Chart-specific configuration."
|
|
298
|
+
},
|
|
299
|
+
navigation_sharing: {
|
|
300
|
+
label: "Navigation & sharing",
|
|
301
|
+
description: "Where this view appears and who can see it."
|
|
302
|
+
}
|
|
303
|
+
},
|
|
304
|
+
fields: {
|
|
305
|
+
name: {
|
|
306
|
+
helpText: "snake_case, unique per environment"
|
|
307
|
+
},
|
|
308
|
+
type: {
|
|
309
|
+
helpText: "Primary view surface"
|
|
310
|
+
},
|
|
311
|
+
data: {
|
|
312
|
+
helpText: 'Data source \u2014 e.g. {"provider":"object","object":"task"}'
|
|
313
|
+
},
|
|
314
|
+
columns: {
|
|
315
|
+
helpText: "Columns to display (field names from selected object)"
|
|
316
|
+
},
|
|
317
|
+
filter: {
|
|
318
|
+
helpText: "Filter conditions"
|
|
319
|
+
},
|
|
320
|
+
sort: {
|
|
321
|
+
helpText: "Default sort order"
|
|
322
|
+
},
|
|
323
|
+
searchableFields: {
|
|
324
|
+
helpText: "Field names available for quick search"
|
|
325
|
+
},
|
|
326
|
+
filterableFields: {
|
|
327
|
+
helpText: "Field names available for filtering"
|
|
328
|
+
}
|
|
329
|
+
}
|
|
330
|
+
},
|
|
331
|
+
page: {
|
|
332
|
+
label: "Page",
|
|
333
|
+
sections: {
|
|
334
|
+
basics: {
|
|
335
|
+
label: "Basics",
|
|
336
|
+
description: "Page identity and template."
|
|
337
|
+
},
|
|
338
|
+
data_context: {
|
|
339
|
+
label: "Data Context",
|
|
340
|
+
description: "Record binding and page-local state."
|
|
341
|
+
},
|
|
342
|
+
layout: {
|
|
343
|
+
label: "Layout",
|
|
344
|
+
description: "Page regions and components placed within them."
|
|
345
|
+
},
|
|
346
|
+
advanced: {
|
|
347
|
+
label: "Advanced",
|
|
348
|
+
description: "Activation, audience, and accessibility."
|
|
349
|
+
}
|
|
350
|
+
},
|
|
351
|
+
fields: {
|
|
352
|
+
name: {
|
|
353
|
+
helpText: "Unique identifier (snake_case)"
|
|
354
|
+
},
|
|
355
|
+
label: {
|
|
356
|
+
helpText: "Page title shown to users"
|
|
357
|
+
},
|
|
358
|
+
icon: {
|
|
359
|
+
helpText: "Icon for navigation menu"
|
|
360
|
+
},
|
|
361
|
+
type: {
|
|
362
|
+
helpText: "Page type (record, home, app, dashboard, etc.)"
|
|
363
|
+
},
|
|
364
|
+
template: {
|
|
365
|
+
helpText: 'Layout template (e.g., "header-sidebar-main")'
|
|
366
|
+
},
|
|
367
|
+
description: {
|
|
368
|
+
helpText: "Page description for navigation"
|
|
369
|
+
},
|
|
370
|
+
object: {
|
|
371
|
+
helpText: "Bound object (for Record pages)"
|
|
372
|
+
},
|
|
373
|
+
variables: {
|
|
374
|
+
helpText: "Local page state variables"
|
|
375
|
+
},
|
|
376
|
+
regions: {
|
|
377
|
+
helpText: "Layout regions (header, main, sidebar, footer) with components"
|
|
378
|
+
},
|
|
379
|
+
isDefault: {
|
|
380
|
+
helpText: "Set as default page for this page type"
|
|
381
|
+
},
|
|
382
|
+
kind: {
|
|
383
|
+
helpText: "Page override mode: full or slotted (for record pages)"
|
|
384
|
+
},
|
|
385
|
+
assignedProfiles: {
|
|
386
|
+
helpText: "Profiles that can access this page"
|
|
387
|
+
},
|
|
388
|
+
aria: {
|
|
389
|
+
helpText: "Accessibility attributes (ARIA labels, roles)"
|
|
390
|
+
}
|
|
391
|
+
}
|
|
392
|
+
},
|
|
393
|
+
dashboard: {
|
|
394
|
+
label: "Dashboard",
|
|
395
|
+
sections: {
|
|
396
|
+
basics: {
|
|
397
|
+
label: "Basics",
|
|
398
|
+
description: "Dashboard identity and description."
|
|
399
|
+
},
|
|
400
|
+
layout: {
|
|
401
|
+
label: "Layout",
|
|
402
|
+
description: "Grid sizing and refresh cadence."
|
|
403
|
+
},
|
|
404
|
+
widgets: {
|
|
405
|
+
label: "Widgets",
|
|
406
|
+
description: "Cards and charts placed on the grid."
|
|
407
|
+
},
|
|
408
|
+
filters: {
|
|
409
|
+
label: "Filters",
|
|
410
|
+
description: "Default and global filters applied across widgets."
|
|
411
|
+
},
|
|
412
|
+
advanced: {
|
|
413
|
+
label: "Advanced",
|
|
414
|
+
description: "Accessibility and performance tuning."
|
|
415
|
+
}
|
|
416
|
+
},
|
|
417
|
+
fields: {
|
|
418
|
+
name: {
|
|
419
|
+
helpText: "snake_case unique identifier"
|
|
420
|
+
},
|
|
421
|
+
label: {
|
|
422
|
+
helpText: "Display name"
|
|
423
|
+
},
|
|
424
|
+
columns: {
|
|
425
|
+
helpText: "Grid columns (default 12)"
|
|
426
|
+
},
|
|
427
|
+
gap: {
|
|
428
|
+
helpText: "Grid gap (Tailwind units)"
|
|
429
|
+
},
|
|
430
|
+
refreshInterval: {
|
|
431
|
+
helpText: "Auto-refresh (seconds)"
|
|
432
|
+
},
|
|
433
|
+
header: {
|
|
434
|
+
helpText: "Dashboard header config (title, subtitle, actions)"
|
|
435
|
+
},
|
|
436
|
+
widgets: {
|
|
437
|
+
helpText: "Dashboard widgets with position and sizing"
|
|
438
|
+
},
|
|
439
|
+
dateRange: {
|
|
440
|
+
helpText: "Default date range selector"
|
|
441
|
+
},
|
|
442
|
+
globalFilters: {
|
|
443
|
+
helpText: "Filters applied to all widgets"
|
|
444
|
+
},
|
|
445
|
+
aria: {
|
|
446
|
+
helpText: "Accessibility labels"
|
|
447
|
+
},
|
|
448
|
+
performance: {
|
|
449
|
+
helpText: "Caching and optimization config"
|
|
450
|
+
}
|
|
451
|
+
}
|
|
452
|
+
},
|
|
453
|
+
app: {
|
|
454
|
+
label: "Application",
|
|
455
|
+
sections: {
|
|
456
|
+
basics: {
|
|
457
|
+
label: "Basics",
|
|
458
|
+
description: "App identity and activation."
|
|
459
|
+
},
|
|
460
|
+
navigation: {
|
|
461
|
+
label: "Navigation",
|
|
462
|
+
description: "Sidebar items and area grouping."
|
|
463
|
+
},
|
|
464
|
+
content: {
|
|
465
|
+
label: "Content",
|
|
466
|
+
description: "Objects and APIs this app uses."
|
|
467
|
+
},
|
|
468
|
+
branding: {
|
|
469
|
+
label: "Branding",
|
|
470
|
+
description: "Theme colors and logo."
|
|
471
|
+
},
|
|
472
|
+
access_and_sharing: {
|
|
473
|
+
label: "Access & sharing",
|
|
474
|
+
description: "Who can access this app and how it can be embedded."
|
|
475
|
+
}
|
|
476
|
+
},
|
|
477
|
+
fields: {
|
|
478
|
+
name: {
|
|
479
|
+
helpText: "snake_case, unique"
|
|
480
|
+
},
|
|
481
|
+
icon: {
|
|
482
|
+
helpText: 'Lucide icon name (e.g. "users", "briefcase")'
|
|
483
|
+
},
|
|
484
|
+
isDefault: {
|
|
485
|
+
helpText: "Make this the default app for new users"
|
|
486
|
+
},
|
|
487
|
+
navigation: {
|
|
488
|
+
helpText: "Nav tree \u2014 recursive structure"
|
|
489
|
+
},
|
|
490
|
+
areas: {
|
|
491
|
+
helpText: "Group items into collapsible areas"
|
|
492
|
+
},
|
|
493
|
+
homePageId: {
|
|
494
|
+
helpText: "Landing page when app opens"
|
|
495
|
+
},
|
|
496
|
+
mobileNavigation: {
|
|
497
|
+
helpText: "Bottom tab bar config for mobile"
|
|
498
|
+
},
|
|
499
|
+
objects: {
|
|
500
|
+
helpText: "Object names this app exposes"
|
|
501
|
+
},
|
|
502
|
+
apis: {
|
|
503
|
+
helpText: "API endpoint definitions"
|
|
504
|
+
},
|
|
505
|
+
defaultAgent: {
|
|
506
|
+
helpText: "AI agent for the ambient assistant button"
|
|
507
|
+
},
|
|
508
|
+
branding: {
|
|
509
|
+
helpText: "Primary/secondary colors, logo, theme"
|
|
510
|
+
},
|
|
511
|
+
requiredPermissions: {
|
|
512
|
+
helpText: "Permissions needed to access this app"
|
|
513
|
+
},
|
|
514
|
+
sharing: {
|
|
515
|
+
helpText: "Public/internal/restricted access control"
|
|
516
|
+
},
|
|
517
|
+
embed: {
|
|
518
|
+
helpText: "iFrame embed configuration"
|
|
519
|
+
},
|
|
520
|
+
aria: {
|
|
521
|
+
helpText: "Accessibility labels"
|
|
522
|
+
}
|
|
523
|
+
}
|
|
524
|
+
},
|
|
525
|
+
action: {
|
|
526
|
+
label: "Action",
|
|
527
|
+
sections: {
|
|
528
|
+
basics: {
|
|
529
|
+
label: "Basics",
|
|
530
|
+
description: "Action identity and presentation."
|
|
531
|
+
},
|
|
532
|
+
behavior: {
|
|
533
|
+
label: "Behavior",
|
|
534
|
+
description: "Configure what happens when the action is triggered."
|
|
535
|
+
},
|
|
536
|
+
placement: {
|
|
537
|
+
label: "Placement",
|
|
538
|
+
description: "Where and when the action button appears."
|
|
539
|
+
},
|
|
540
|
+
advanced: {
|
|
541
|
+
label: "Advanced",
|
|
542
|
+
description: "Bulk operations, AI exposure, and API request shape."
|
|
543
|
+
}
|
|
544
|
+
},
|
|
545
|
+
fields: {
|
|
546
|
+
name: {
|
|
547
|
+
helpText: "Unique identifier (snake_case)"
|
|
548
|
+
},
|
|
549
|
+
label: {
|
|
550
|
+
helpText: "Button text shown to users"
|
|
551
|
+
},
|
|
552
|
+
objectName: {
|
|
553
|
+
helpText: "Object this action belongs to (optional)"
|
|
554
|
+
},
|
|
555
|
+
icon: {
|
|
556
|
+
helpText: 'Lucide icon name (e.g., "check", "x-circle")'
|
|
557
|
+
},
|
|
558
|
+
type: {
|
|
559
|
+
helpText: "What happens when clicked"
|
|
560
|
+
},
|
|
561
|
+
variant: {
|
|
562
|
+
helpText: "Button style (primary=blue, danger=red, ghost=transparent)"
|
|
563
|
+
},
|
|
564
|
+
target: {
|
|
565
|
+
helpText: "URL, flow name, or API endpoint to call"
|
|
566
|
+
},
|
|
567
|
+
method: {
|
|
568
|
+
helpText: "HTTP method (GET, POST, PUT, DELETE)"
|
|
569
|
+
},
|
|
570
|
+
body: {
|
|
571
|
+
helpText: "JavaScript code to execute"
|
|
572
|
+
},
|
|
573
|
+
params: {
|
|
574
|
+
helpText: "User input parameters (show form before executing)"
|
|
575
|
+
},
|
|
576
|
+
confirmText: {
|
|
577
|
+
helpText: 'Confirmation message (e.g., "Are you sure?")'
|
|
578
|
+
},
|
|
579
|
+
successMessage: {
|
|
580
|
+
helpText: "Success message after completion"
|
|
581
|
+
},
|
|
582
|
+
refreshAfter: {
|
|
583
|
+
helpText: "Refresh the list/page after action completes"
|
|
584
|
+
},
|
|
585
|
+
locations: {
|
|
586
|
+
helpText: "Where to show this action (toolbar, row menu, etc.)"
|
|
587
|
+
},
|
|
588
|
+
component: {
|
|
589
|
+
helpText: "How to render (button, icon, menu item)"
|
|
590
|
+
},
|
|
591
|
+
visible: {
|
|
592
|
+
helpText: "CEL expression: show only when condition is true"
|
|
593
|
+
},
|
|
594
|
+
disabled: {
|
|
595
|
+
helpText: "CEL expression: disable when condition is true"
|
|
596
|
+
},
|
|
597
|
+
shortcut: {
|
|
598
|
+
helpText: 'Keyboard shortcut (e.g., "Ctrl+S", "Cmd+Enter")'
|
|
599
|
+
},
|
|
600
|
+
bulkEnabled: {
|
|
601
|
+
helpText: "Allow applying to multiple selected records"
|
|
602
|
+
},
|
|
603
|
+
aiExposed: {
|
|
604
|
+
helpText: "Allow AI agents to call this action"
|
|
605
|
+
},
|
|
606
|
+
recordIdParam: {
|
|
607
|
+
helpText: "Body parameter name for record ID"
|
|
608
|
+
},
|
|
609
|
+
recordIdField: {
|
|
610
|
+
helpText: 'Field to use as record ID (default: "id")'
|
|
611
|
+
},
|
|
612
|
+
bodyShape: {
|
|
613
|
+
helpText: "Request body structure (flat or nested)"
|
|
614
|
+
}
|
|
615
|
+
}
|
|
616
|
+
},
|
|
617
|
+
report: {
|
|
618
|
+
label: "Report",
|
|
619
|
+
sections: {
|
|
620
|
+
basics: {
|
|
621
|
+
label: "Basics",
|
|
622
|
+
description: "Identity and data source."
|
|
623
|
+
},
|
|
624
|
+
columns: {
|
|
625
|
+
label: "Columns",
|
|
626
|
+
description: "Columns shown in the report output."
|
|
627
|
+
},
|
|
628
|
+
groupings: {
|
|
629
|
+
label: "Groupings",
|
|
630
|
+
description: "How rows (and columns, for matrix reports) are grouped."
|
|
631
|
+
},
|
|
632
|
+
joined_blocks: {
|
|
633
|
+
label: "Joined blocks",
|
|
634
|
+
description: "Additional blocks joined into a single report (joined reports only)."
|
|
635
|
+
},
|
|
636
|
+
filter_and_chart: {
|
|
637
|
+
label: "Filter & chart",
|
|
638
|
+
description: "Report-level filters and chart presentation."
|
|
639
|
+
},
|
|
640
|
+
advanced: {
|
|
641
|
+
label: "Advanced",
|
|
642
|
+
description: "Accessibility and performance tuning."
|
|
643
|
+
}
|
|
644
|
+
},
|
|
645
|
+
fields: {
|
|
646
|
+
name: {
|
|
647
|
+
helpText: "snake_case unique identifier"
|
|
648
|
+
},
|
|
649
|
+
objectName: {
|
|
650
|
+
helpText: "Data source object"
|
|
651
|
+
},
|
|
652
|
+
type: {
|
|
653
|
+
helpText: "Report type: tabular/summary/matrix/joined"
|
|
654
|
+
},
|
|
655
|
+
columns: {
|
|
656
|
+
helpText: "Columns to display in the report"
|
|
657
|
+
},
|
|
658
|
+
groupingsDown: {
|
|
659
|
+
helpText: "Row grouping levels"
|
|
660
|
+
},
|
|
661
|
+
groupingsAcross: {
|
|
662
|
+
helpText: "Column grouping levels (matrix only)"
|
|
663
|
+
},
|
|
664
|
+
blocks: {
|
|
665
|
+
helpText: "Join multiple objects (joined report only)"
|
|
666
|
+
},
|
|
667
|
+
filter: {
|
|
668
|
+
helpText: "Report-level filters"
|
|
669
|
+
},
|
|
670
|
+
chart: {
|
|
671
|
+
helpText: "Chart config (type, legend, colors)"
|
|
672
|
+
},
|
|
673
|
+
aria: {
|
|
674
|
+
helpText: "Accessibility labels"
|
|
675
|
+
},
|
|
676
|
+
performance: {
|
|
677
|
+
helpText: "Caching and optimization"
|
|
678
|
+
}
|
|
679
|
+
}
|
|
680
|
+
},
|
|
681
|
+
flow: {
|
|
682
|
+
label: "Flow",
|
|
683
|
+
sections: {
|
|
684
|
+
basics: {
|
|
685
|
+
label: "Basics",
|
|
686
|
+
description: "Flow identity and how it starts."
|
|
687
|
+
},
|
|
688
|
+
canvas: {
|
|
689
|
+
label: "Canvas",
|
|
690
|
+
description: "Nodes, edges, and flow variables \u2014 consider the visual designer for complex flows."
|
|
691
|
+
},
|
|
692
|
+
execution: {
|
|
693
|
+
label: "Execution",
|
|
694
|
+
description: "Deployment status, identity, and error handling."
|
|
695
|
+
}
|
|
696
|
+
},
|
|
697
|
+
fields: {
|
|
698
|
+
name: {
|
|
699
|
+
helpText: "Unique identifier (snake_case)"
|
|
700
|
+
},
|
|
701
|
+
label: {
|
|
702
|
+
helpText: "Display name for users"
|
|
703
|
+
},
|
|
704
|
+
type: {
|
|
705
|
+
helpText: "How the flow starts (autolaunched, record_change, schedule, screen, api)"
|
|
706
|
+
},
|
|
707
|
+
template: {
|
|
708
|
+
helpText: "Is this a reusable subflow (can be called from other flows)"
|
|
709
|
+
},
|
|
710
|
+
description: {
|
|
711
|
+
helpText: "What this flow does"
|
|
712
|
+
},
|
|
713
|
+
nodes: {
|
|
714
|
+
helpText: "\u26A0\uFE0F Consider using Flow Designer visual editor instead of JSON"
|
|
715
|
+
},
|
|
716
|
+
edges: {
|
|
717
|
+
helpText: "Connections between nodes \u2014 use Flow Designer for easier editing"
|
|
718
|
+
},
|
|
719
|
+
variables: {
|
|
720
|
+
helpText: "Flow variables (inputs/outputs)"
|
|
721
|
+
},
|
|
722
|
+
status: {
|
|
723
|
+
helpText: "Deployment status: draft \u2192 active \u2192 obsolete"
|
|
724
|
+
},
|
|
725
|
+
version: {
|
|
726
|
+
helpText: "Version number (auto-incremented)"
|
|
727
|
+
},
|
|
728
|
+
runAs: {
|
|
729
|
+
helpText: "Execute as system (admin) or user (current user permissions)"
|
|
730
|
+
},
|
|
731
|
+
errorHandling: {
|
|
732
|
+
helpText: "What to do when a node fails (fail, retry, continue)"
|
|
733
|
+
}
|
|
734
|
+
}
|
|
735
|
+
},
|
|
736
|
+
workflow: {
|
|
737
|
+
label: "Workflow",
|
|
738
|
+
sections: {
|
|
739
|
+
basics: {
|
|
740
|
+
label: "Basics",
|
|
741
|
+
description: "Identity and the object/event that triggers it."
|
|
742
|
+
},
|
|
743
|
+
actions: {
|
|
744
|
+
label: "Actions",
|
|
745
|
+
description: "What this workflow does when fired."
|
|
746
|
+
},
|
|
747
|
+
advanced: {
|
|
748
|
+
label: "Advanced",
|
|
749
|
+
description: "Ordering and execution behaviour."
|
|
750
|
+
}
|
|
751
|
+
},
|
|
752
|
+
fields: {
|
|
753
|
+
name: {
|
|
754
|
+
helpText: "Unique identifier (snake_case)"
|
|
755
|
+
},
|
|
756
|
+
objectName: {
|
|
757
|
+
helpText: "Which object triggers this workflow"
|
|
758
|
+
},
|
|
759
|
+
triggerType: {
|
|
760
|
+
helpText: "When to run: on_create, on_update, on_delete, schedule"
|
|
761
|
+
},
|
|
762
|
+
active: {
|
|
763
|
+
helpText: "Enable/disable this workflow"
|
|
764
|
+
},
|
|
765
|
+
description: {
|
|
766
|
+
helpText: "What this workflow does"
|
|
767
|
+
},
|
|
768
|
+
criteria: {
|
|
769
|
+
helpText: "CEL expression: only run when this condition is true"
|
|
770
|
+
},
|
|
771
|
+
actions: {
|
|
772
|
+
helpText: "Actions to execute immediately (field update, email, API call, etc.)"
|
|
773
|
+
},
|
|
774
|
+
timeTriggers: {
|
|
775
|
+
helpText: "Scheduled actions (e.g., send reminder 1 day before deadline)"
|
|
776
|
+
},
|
|
777
|
+
executionOrder: {
|
|
778
|
+
helpText: "Run order when multiple workflows match (lower = earlier)"
|
|
779
|
+
}
|
|
780
|
+
}
|
|
781
|
+
},
|
|
782
|
+
approval: {
|
|
783
|
+
label: "Approval Process",
|
|
784
|
+
sections: {
|
|
785
|
+
basics: {
|
|
786
|
+
label: "Basics",
|
|
787
|
+
description: "Approval process identity and the object it gates."
|
|
788
|
+
},
|
|
789
|
+
entry_rules: {
|
|
790
|
+
label: "Entry rules",
|
|
791
|
+
description: "Who can submit, and what happens to the record while pending."
|
|
792
|
+
},
|
|
793
|
+
steps: {
|
|
794
|
+
label: "Steps",
|
|
795
|
+
description: "Ordered approval chain \u2014 each step picks the approver and decides routing."
|
|
796
|
+
},
|
|
797
|
+
escalation_and_outcomes: {
|
|
798
|
+
label: "Escalation & outcomes",
|
|
799
|
+
description: "SLA, escalation, and post-decision actions."
|
|
800
|
+
}
|
|
801
|
+
},
|
|
802
|
+
fields: {
|
|
803
|
+
name: {
|
|
804
|
+
helpText: "Unique identifier (snake_case)"
|
|
805
|
+
},
|
|
806
|
+
label: {
|
|
807
|
+
helpText: 'Display name (e.g., "Contract Approval")'
|
|
808
|
+
},
|
|
809
|
+
object: {
|
|
810
|
+
helpText: "Which object needs approval"
|
|
811
|
+
},
|
|
812
|
+
active: {
|
|
813
|
+
helpText: "Enable/disable this approval process"
|
|
814
|
+
},
|
|
815
|
+
description: {
|
|
816
|
+
helpText: "What gets approved and why"
|
|
817
|
+
},
|
|
818
|
+
entryCriteria: {
|
|
819
|
+
helpText: "CEL expression: users can submit only when this is true"
|
|
820
|
+
},
|
|
821
|
+
lockRecord: {
|
|
822
|
+
helpText: "Lock record from editing while approval is pending"
|
|
823
|
+
},
|
|
824
|
+
approvalStatusField: {
|
|
825
|
+
helpText: 'Field name to mirror approval status (e.g., "approval_status")'
|
|
826
|
+
},
|
|
827
|
+
steps: {
|
|
828
|
+
helpText: "Approval steps in order \u2014 each step defines who approves and what happens"
|
|
829
|
+
},
|
|
830
|
+
escalation: {
|
|
831
|
+
helpText: "Auto-escalate or auto-approve after timeout"
|
|
832
|
+
},
|
|
833
|
+
onFinalApprove: {
|
|
834
|
+
helpText: "Actions when all steps approved (e.g., update status)"
|
|
835
|
+
},
|
|
836
|
+
onFinalReject: {
|
|
837
|
+
helpText: "Actions when rejected (e.g., notify submitter)"
|
|
838
|
+
}
|
|
839
|
+
}
|
|
840
|
+
},
|
|
841
|
+
job: {
|
|
842
|
+
label: "Background Job"
|
|
843
|
+
},
|
|
844
|
+
datasource: {
|
|
845
|
+
label: "Datasource"
|
|
846
|
+
},
|
|
847
|
+
translation: {
|
|
848
|
+
label: "Translation"
|
|
849
|
+
},
|
|
850
|
+
router: {
|
|
851
|
+
label: "Router"
|
|
852
|
+
},
|
|
853
|
+
function: {
|
|
854
|
+
label: "Function"
|
|
855
|
+
},
|
|
856
|
+
service: {
|
|
857
|
+
label: "Service"
|
|
858
|
+
},
|
|
859
|
+
email_template: {
|
|
860
|
+
label: "Email Template",
|
|
861
|
+
sections: {
|
|
862
|
+
identity: {
|
|
863
|
+
label: "Identity",
|
|
864
|
+
description: "Identifier and content type. The id is referenced by sendTemplate({ template: id, ... })."
|
|
865
|
+
},
|
|
866
|
+
subject: {
|
|
867
|
+
label: "Subject",
|
|
868
|
+
description: "Subject line. Supports {{var.path}} interpolation."
|
|
869
|
+
},
|
|
870
|
+
body: {
|
|
871
|
+
label: "Body",
|
|
872
|
+
description: "Email body. Use {{var}} for variables. Editor highlights based on body type."
|
|
873
|
+
},
|
|
874
|
+
variables_and_attachments: {
|
|
875
|
+
label: "Variables & Attachments",
|
|
876
|
+
description: "Declared template variables and optional file attachments."
|
|
877
|
+
}
|
|
878
|
+
},
|
|
879
|
+
fields: {
|
|
880
|
+
id: {
|
|
881
|
+
helpText: "Template id (e.g. auth.password_reset)"
|
|
882
|
+
},
|
|
883
|
+
body: {
|
|
884
|
+
helpText: "Body content. Will be rendered as HTML, plain text, or Markdown based on Body Type."
|
|
885
|
+
},
|
|
886
|
+
variables: {
|
|
887
|
+
helpText: "List of variable names referenced in subject/body"
|
|
888
|
+
},
|
|
889
|
+
attachments: {
|
|
890
|
+
helpText: '[{ "name": "...", "url": "..." }]'
|
|
891
|
+
}
|
|
892
|
+
}
|
|
893
|
+
},
|
|
894
|
+
permission: {
|
|
895
|
+
label: "Permission Set",
|
|
896
|
+
sections: {
|
|
897
|
+
identity: {
|
|
898
|
+
label: "Identity",
|
|
899
|
+
description: "Permission Sets stack on top of a Profile to grant additional access. Profiles are the base set assigned 1:1 to each user."
|
|
900
|
+
},
|
|
901
|
+
system_permissions: {
|
|
902
|
+
label: "System Permissions",
|
|
903
|
+
description: "High-level capabilities not tied to a specific object \u2014 e.g. manage_users, view_audit_logs."
|
|
904
|
+
},
|
|
905
|
+
object_and_field_permissions: {
|
|
906
|
+
label: "Object & Field Permissions",
|
|
907
|
+
description: "Per-object CRUD + per-field FLS. Edit via the matrix editor or paste JSON here."
|
|
908
|
+
},
|
|
909
|
+
tab_and_row_level_security: {
|
|
910
|
+
label: "Tab & Row-Level Security",
|
|
911
|
+
description: "Tab visibility, RLS policies, and custom context variables for predicate evaluation."
|
|
912
|
+
}
|
|
913
|
+
},
|
|
914
|
+
fields: {
|
|
915
|
+
name: {
|
|
916
|
+
helpText: "Machine name (snake_case)"
|
|
917
|
+
},
|
|
918
|
+
label: {
|
|
919
|
+
helpText: "Display label for admins"
|
|
920
|
+
},
|
|
921
|
+
isProfile: {
|
|
922
|
+
helpText: "Profile = base set assigned to users. Permission Set = additive grant."
|
|
923
|
+
},
|
|
924
|
+
systemPermissions: {
|
|
925
|
+
helpText: "List of system capability keys"
|
|
926
|
+
},
|
|
927
|
+
objects: {
|
|
928
|
+
helpText: '{ "account": { allowRead: true, allowEdit: true, ... } }'
|
|
929
|
+
},
|
|
930
|
+
fields: {
|
|
931
|
+
helpText: '{ "account.amount": { readable: true, editable: false } }'
|
|
932
|
+
},
|
|
933
|
+
tabPermissions: {
|
|
934
|
+
helpText: '{ "app_crm": "visible", "app_admin": "hidden" }'
|
|
935
|
+
},
|
|
936
|
+
rowLevelSecurity: {
|
|
937
|
+
helpText: "Array of RLS policies (see rls.zod.ts)"
|
|
938
|
+
},
|
|
939
|
+
contextVariables: {
|
|
940
|
+
helpText: "Custom variables referenced in RLS predicates"
|
|
941
|
+
}
|
|
942
|
+
}
|
|
943
|
+
},
|
|
944
|
+
profile: {
|
|
945
|
+
label: "Profile",
|
|
946
|
+
sections: {
|
|
947
|
+
identity: {
|
|
948
|
+
label: "Identity",
|
|
949
|
+
description: "Permission Sets stack on top of a Profile to grant additional access. Profiles are the base set assigned 1:1 to each user."
|
|
950
|
+
},
|
|
951
|
+
system_permissions: {
|
|
952
|
+
label: "System Permissions",
|
|
953
|
+
description: "High-level capabilities not tied to a specific object \u2014 e.g. manage_users, view_audit_logs."
|
|
954
|
+
},
|
|
955
|
+
object_and_field_permissions: {
|
|
956
|
+
label: "Object & Field Permissions",
|
|
957
|
+
description: "Per-object CRUD + per-field FLS. Edit via the matrix editor or paste JSON here."
|
|
958
|
+
},
|
|
959
|
+
tab_and_row_level_security: {
|
|
960
|
+
label: "Tab & Row-Level Security",
|
|
961
|
+
description: "Tab visibility, RLS policies, and custom context variables for predicate evaluation."
|
|
962
|
+
}
|
|
963
|
+
},
|
|
964
|
+
fields: {
|
|
965
|
+
name: {
|
|
966
|
+
helpText: "Machine name (snake_case)"
|
|
967
|
+
},
|
|
968
|
+
label: {
|
|
969
|
+
helpText: "Display label for admins"
|
|
970
|
+
},
|
|
971
|
+
isProfile: {
|
|
972
|
+
helpText: "Profile = base set assigned to users. Permission Set = additive grant."
|
|
973
|
+
},
|
|
974
|
+
systemPermissions: {
|
|
975
|
+
helpText: "List of system capability keys"
|
|
976
|
+
},
|
|
977
|
+
objects: {
|
|
978
|
+
helpText: '{ "account": { allowRead: true, allowEdit: true, ... } }'
|
|
979
|
+
},
|
|
980
|
+
fields: {
|
|
981
|
+
helpText: '{ "account.amount": { readable: true, editable: false } }'
|
|
982
|
+
},
|
|
983
|
+
tabPermissions: {
|
|
984
|
+
helpText: '{ "app_crm": "visible", "app_admin": "hidden" }'
|
|
985
|
+
},
|
|
986
|
+
rowLevelSecurity: {
|
|
987
|
+
helpText: "Array of RLS policies (see rls.zod.ts)"
|
|
988
|
+
},
|
|
989
|
+
contextVariables: {
|
|
990
|
+
helpText: "Custom variables referenced in RLS predicates"
|
|
991
|
+
}
|
|
992
|
+
}
|
|
993
|
+
},
|
|
994
|
+
role: {
|
|
995
|
+
label: "Role",
|
|
996
|
+
sections: {
|
|
997
|
+
role: {
|
|
998
|
+
label: "Role",
|
|
999
|
+
description: "Roles compose a hierarchy used for record sharing (sales VP \u2192 sales mgr \u2192 sales rep). Permissions themselves live on Permission Sets and Profiles."
|
|
1000
|
+
}
|
|
1001
|
+
},
|
|
1002
|
+
fields: {
|
|
1003
|
+
name: {
|
|
1004
|
+
helpText: "snake_case"
|
|
1005
|
+
},
|
|
1006
|
+
parent: {
|
|
1007
|
+
helpText: "Parent role machine name (Reports To)"
|
|
1008
|
+
}
|
|
1009
|
+
}
|
|
1010
|
+
},
|
|
1011
|
+
agent: {
|
|
1012
|
+
label: "AI Agent",
|
|
1013
|
+
sections: {
|
|
1014
|
+
identity: {
|
|
1015
|
+
label: "Identity",
|
|
1016
|
+
description: "How users see and reference this agent."
|
|
1017
|
+
},
|
|
1018
|
+
ai_configuration: {
|
|
1019
|
+
label: "AI Configuration",
|
|
1020
|
+
description: "Model selection, instructions, planning, and memory."
|
|
1021
|
+
},
|
|
1022
|
+
capabilities: {
|
|
1023
|
+
label: "Capabilities",
|
|
1024
|
+
description: "Skills, tools, and knowledge sources the agent can use."
|
|
1025
|
+
},
|
|
1026
|
+
access: {
|
|
1027
|
+
label: "Access & Security",
|
|
1028
|
+
description: "Who can use this agent and what safeguards apply."
|
|
1029
|
+
}
|
|
1030
|
+
},
|
|
1031
|
+
fields: {
|
|
1032
|
+
name: {
|
|
1033
|
+
helpText: "Unique identifier (snake_case)"
|
|
1034
|
+
},
|
|
1035
|
+
label: {
|
|
1036
|
+
helpText: 'Display name (e.g., "Sales Assistant")'
|
|
1037
|
+
},
|
|
1038
|
+
role: {
|
|
1039
|
+
helpText: 'Agent persona (e.g., "Customer Support Specialist")'
|
|
1040
|
+
},
|
|
1041
|
+
avatar: {
|
|
1042
|
+
helpText: "Avatar image URL"
|
|
1043
|
+
},
|
|
1044
|
+
active: {
|
|
1045
|
+
helpText: "Enable/disable this agent"
|
|
1046
|
+
},
|
|
1047
|
+
instructions: {
|
|
1048
|
+
helpText: "System prompt \u2014 tell the agent how to behave and what it can do"
|
|
1049
|
+
},
|
|
1050
|
+
model: {
|
|
1051
|
+
helpText: "AI model configuration (provider, model name, temperature, etc.)"
|
|
1052
|
+
},
|
|
1053
|
+
planning: {
|
|
1054
|
+
helpText: "Autonomous reasoning configuration (strategy, max iterations, replan)"
|
|
1055
|
+
},
|
|
1056
|
+
memory: {
|
|
1057
|
+
helpText: "Memory management (short-term, long-term, reflection)"
|
|
1058
|
+
},
|
|
1059
|
+
lifecycle: {
|
|
1060
|
+
helpText: "State machine defining conversation flow"
|
|
1061
|
+
},
|
|
1062
|
+
skills: {
|
|
1063
|
+
helpText: "Skill names (Agent\u2192Skill\u2192Tool architecture)"
|
|
1064
|
+
},
|
|
1065
|
+
tools: {
|
|
1066
|
+
helpText: "Direct tool references (legacy mode)"
|
|
1067
|
+
},
|
|
1068
|
+
knowledge: {
|
|
1069
|
+
helpText: "RAG knowledge access configuration"
|
|
1070
|
+
},
|
|
1071
|
+
visibility: {
|
|
1072
|
+
helpText: "Scope: global, organization, or private"
|
|
1073
|
+
},
|
|
1074
|
+
access: {
|
|
1075
|
+
helpText: "User IDs or role names who can chat with this agent"
|
|
1076
|
+
},
|
|
1077
|
+
permissions: {
|
|
1078
|
+
helpText: "Required permissions to use this agent"
|
|
1079
|
+
},
|
|
1080
|
+
tenantId: {
|
|
1081
|
+
helpText: "Restrict to specific organization ID"
|
|
1082
|
+
},
|
|
1083
|
+
guardrails: {
|
|
1084
|
+
helpText: "Safety rules and content policies"
|
|
1085
|
+
}
|
|
1086
|
+
}
|
|
1087
|
+
},
|
|
1088
|
+
tool: {
|
|
1089
|
+
label: "AI Tool",
|
|
1090
|
+
sections: {
|
|
1091
|
+
basics: {
|
|
1092
|
+
label: "Basics",
|
|
1093
|
+
description: "Tool identity and AI-facing description."
|
|
1094
|
+
},
|
|
1095
|
+
schemas: {
|
|
1096
|
+
label: "Schemas",
|
|
1097
|
+
description: "Inputs the tool accepts and the shape of its output."
|
|
1098
|
+
},
|
|
1099
|
+
access_and_safety: {
|
|
1100
|
+
label: "Access & safety",
|
|
1101
|
+
description: "Permissions and confirmation requirements."
|
|
1102
|
+
}
|
|
1103
|
+
},
|
|
1104
|
+
fields: {
|
|
1105
|
+
name: {
|
|
1106
|
+
helpText: "Unique identifier (snake_case)"
|
|
1107
|
+
},
|
|
1108
|
+
label: {
|
|
1109
|
+
helpText: "Display name for Studio UI"
|
|
1110
|
+
},
|
|
1111
|
+
description: {
|
|
1112
|
+
helpText: "Tell AI when to use this tool \u2014 be specific!"
|
|
1113
|
+
},
|
|
1114
|
+
category: {
|
|
1115
|
+
helpText: "Tool category (data, action, flow, integration, etc.)"
|
|
1116
|
+
},
|
|
1117
|
+
objectName: {
|
|
1118
|
+
helpText: "Related object (if this tool operates on a specific object)"
|
|
1119
|
+
},
|
|
1120
|
+
active: {
|
|
1121
|
+
helpText: "Enable/disable this tool"
|
|
1122
|
+
},
|
|
1123
|
+
builtIn: {
|
|
1124
|
+
helpText: "Platform built-in tool (vs user-defined)"
|
|
1125
|
+
},
|
|
1126
|
+
parameters: {
|
|
1127
|
+
helpText: 'Input parameters \u2014 define properties like: {name: {type: "string", description: "..."}}'
|
|
1128
|
+
},
|
|
1129
|
+
outputSchema: {
|
|
1130
|
+
helpText: "Output schema for validation (optional)"
|
|
1131
|
+
},
|
|
1132
|
+
requiresConfirmation: {
|
|
1133
|
+
helpText: "Ask user to approve before executing (for destructive actions)"
|
|
1134
|
+
},
|
|
1135
|
+
permissions: {
|
|
1136
|
+
helpText: "Required permissions to use this tool"
|
|
1137
|
+
}
|
|
1138
|
+
}
|
|
1139
|
+
},
|
|
1140
|
+
skill: {
|
|
1141
|
+
label: "AI Skill",
|
|
1142
|
+
sections: {
|
|
1143
|
+
basics: {
|
|
1144
|
+
label: "Basics",
|
|
1145
|
+
description: "Skill identity and human-readable description."
|
|
1146
|
+
},
|
|
1147
|
+
ai_instructions: {
|
|
1148
|
+
label: "AI Instructions",
|
|
1149
|
+
description: "How the agent should reason with this skill."
|
|
1150
|
+
},
|
|
1151
|
+
triggers: {
|
|
1152
|
+
label: "Triggers",
|
|
1153
|
+
description: "When this skill should activate."
|
|
1154
|
+
},
|
|
1155
|
+
access: {
|
|
1156
|
+
label: "Access",
|
|
1157
|
+
description: "Required permissions to use this skill."
|
|
1158
|
+
}
|
|
1159
|
+
},
|
|
1160
|
+
fields: {
|
|
1161
|
+
name: {
|
|
1162
|
+
helpText: "Unique identifier (snake_case)"
|
|
1163
|
+
},
|
|
1164
|
+
label: {
|
|
1165
|
+
helpText: 'Display name (e.g., "Case Management")'
|
|
1166
|
+
},
|
|
1167
|
+
description: {
|
|
1168
|
+
helpText: "What this skill does"
|
|
1169
|
+
},
|
|
1170
|
+
active: {
|
|
1171
|
+
helpText: "Enable/disable this skill"
|
|
1172
|
+
},
|
|
1173
|
+
instructions: {
|
|
1174
|
+
helpText: "Instructions for AI \u2014 tell it how to use these tools together"
|
|
1175
|
+
},
|
|
1176
|
+
tools: {
|
|
1177
|
+
helpText: "Tool names (supports wildcard: action_*)"
|
|
1178
|
+
},
|
|
1179
|
+
triggerPhrases: {
|
|
1180
|
+
helpText: "Natural language phrases that activate this skill"
|
|
1181
|
+
},
|
|
1182
|
+
triggerConditions: {
|
|
1183
|
+
helpText: 'Programmatic conditions (e.g., objectName == "case")'
|
|
1184
|
+
},
|
|
1185
|
+
permissions: {
|
|
1186
|
+
helpText: "Required permissions to use this skill"
|
|
1187
|
+
}
|
|
1188
|
+
}
|
|
1189
|
+
}
|
|
1190
|
+
};
|
|
1191
|
+
|
|
1192
|
+
// src/apps/translations/zh-CN.metadata-forms.generated.ts
|
|
1193
|
+
var zhCNMetadataForms = {
|
|
1194
|
+
object: {
|
|
1195
|
+
label: "\u5BF9\u8C61",
|
|
1196
|
+
sections: {
|
|
1197
|
+
basics: {
|
|
1198
|
+
label: "\u57FA\u7840\u4FE1\u606F",
|
|
1199
|
+
description: "\u6807\u8BC6\u3001\u663E\u793A\u540D\u4E0E\u5206\u7C7B\u6807\u7B7E"
|
|
1200
|
+
},
|
|
1201
|
+
fields: {
|
|
1202
|
+
label: "\u5B57\u6BB5",
|
|
1203
|
+
description: "\u5B9A\u4E49\u6570\u636E\u6A21\u578B\u2014\u2014\u6BCF\u884C\u5BF9\u5E94\u6570\u636E\u5E93\u8868\u4E2D\u7684\u4E00\u5217"
|
|
1204
|
+
},
|
|
1205
|
+
capabilities: {
|
|
1206
|
+
label: "\u529F\u80FD\u5F00\u5173",
|
|
1207
|
+
description: "\u7CFB\u7EDF\u529F\u80FD\u4E0E API \u66B4\u9732"
|
|
1208
|
+
},
|
|
1209
|
+
advanced: {
|
|
1210
|
+
label: "\u9AD8\u7EA7\u8BBE\u7F6E",
|
|
1211
|
+
description: "\u72B6\u6001\u673A\u3001\u52A8\u4F5C\u4E0E\u5B58\u50A8"
|
|
1212
|
+
}
|
|
1213
|
+
},
|
|
1214
|
+
fields: {
|
|
1215
|
+
name: {
|
|
1216
|
+
helpText: "snake_case \u552F\u4E00\u6807\u8BC6\u7B26\uFF08\u521B\u5EFA\u540E\u4E0D\u53EF\u4FEE\u6539\uFF09"
|
|
1217
|
+
},
|
|
1218
|
+
label: {
|
|
1219
|
+
helpText: '\u5355\u6570\u663E\u793A\u540D\uFF08\u5982\uFF1A"\u5BA2\u6237"\uFF09'
|
|
1220
|
+
},
|
|
1221
|
+
pluralLabel: {
|
|
1222
|
+
helpText: '\u590D\u6570\u663E\u793A\u540D\uFF08\u5982\uFF1A"\u5BA2\u6237\u5217\u8868"\uFF09'
|
|
1223
|
+
},
|
|
1224
|
+
icon: {
|
|
1225
|
+
helpText: 'Lucide \u56FE\u6807\u540D\u79F0\uFF08\u5982\uFF1A"building"\u3001"users"\uFF09'
|
|
1226
|
+
},
|
|
1227
|
+
description: {
|
|
1228
|
+
helpText: "\u5F00\u53D1\u6587\u6863\u8BF4\u660E"
|
|
1229
|
+
},
|
|
1230
|
+
tags: {
|
|
1231
|
+
helpText: '\u5206\u7C7B\u6807\u7B7E\uFF08\u5982\uFF1A"sales"\u3001"system"\uFF09'
|
|
1232
|
+
},
|
|
1233
|
+
active: {
|
|
1234
|
+
helpText: "\u5BF9\u8C61\u662F\u5426\u542F\u7528\u5E76\u53EF\u7528"
|
|
1235
|
+
},
|
|
1236
|
+
isSystem: {
|
|
1237
|
+
helpText: "\u7CFB\u7EDF\u5BF9\u8C61\uFF08\u53D7\u4FDD\u62A4\uFF0C\u4E0D\u53EF\u5220\u9664\uFF09"
|
|
1238
|
+
},
|
|
1239
|
+
abstract: {
|
|
1240
|
+
helpText: "\u62BD\u8C61\u57FA\u7C7B\uFF08\u4E0D\u80FD\u76F4\u63A5\u5B9E\u4F8B\u5316\uFF09"
|
|
1241
|
+
},
|
|
1242
|
+
fields: {
|
|
1243
|
+
helpText: "\u6DFB\u52A0\u8BE5\u5BF9\u8C61\u5C06\u5B58\u50A8\u7684\u5217"
|
|
1244
|
+
},
|
|
1245
|
+
"fields.name": {
|
|
1246
|
+
helpText: "snake_case \u6807\u8BC6\u7B26"
|
|
1247
|
+
},
|
|
1248
|
+
"fields.label": {
|
|
1249
|
+
helpText: "\u5C55\u793A\u7528\u6807\u7B7E"
|
|
1250
|
+
},
|
|
1251
|
+
"fields.type": {
|
|
1252
|
+
helpText: "\u5B57\u6BB5\u7C7B\u578B"
|
|
1253
|
+
},
|
|
1254
|
+
"fields.reference": {
|
|
1255
|
+
helpText: "\u76EE\u6807\u5BF9\u8C61\uFF08\u7528\u4E8E lookup / master_detail\uFF09"
|
|
1256
|
+
},
|
|
1257
|
+
capabilities: {
|
|
1258
|
+
helpText: "\u542F\u7528\u6216\u7981\u7528\u7CFB\u7EDF\u529F\u80FD"
|
|
1259
|
+
},
|
|
1260
|
+
datasource: {
|
|
1261
|
+
helpText: '\u76EE\u6807\u6570\u636E\u6E90 ID\uFF08\u9ED8\u8BA4\uFF1A"default"\uFF09'
|
|
1262
|
+
}
|
|
1263
|
+
}
|
|
1264
|
+
},
|
|
1265
|
+
field: {
|
|
1266
|
+
label: "\u5B57\u6BB5",
|
|
1267
|
+
sections: {
|
|
1268
|
+
basics: {
|
|
1269
|
+
label: "\u57FA\u7840\u4FE1\u606F",
|
|
1270
|
+
description: "\u6838\u5FC3\u6807\u8BC6\u4E0E\u7EA6\u675F"
|
|
1271
|
+
},
|
|
1272
|
+
configuration: {
|
|
1273
|
+
label: "\u914D\u7F6E",
|
|
1274
|
+
description: "\u7C7B\u578B\u76F8\u5173\u8BBE\u7F6E\uFF08\u4E0D\u540C\u5B57\u6BB5\u7C7B\u578B\u663E\u793A\u4E0D\u540C\u9009\u9879\uFF09"
|
|
1275
|
+
},
|
|
1276
|
+
formula: {
|
|
1277
|
+
label: "\u516C\u5F0F\u4E0E\u8BA1\u7B97",
|
|
1278
|
+
description: "\u8BA1\u7B97\u503C\u4E0E\u6C47\u603B"
|
|
1279
|
+
},
|
|
1280
|
+
advanced: {
|
|
1281
|
+
label: "\u9AD8\u7EA7\u8BBE\u7F6E",
|
|
1282
|
+
description: "\u6570\u636E\u5E93\u3001\u754C\u9762\u3001\u5BA1\u8BA1\u4E0E\u5B89\u5168"
|
|
1283
|
+
}
|
|
1284
|
+
},
|
|
1285
|
+
fields: {
|
|
1286
|
+
name: {
|
|
1287
|
+
helpText: "\u552F\u4E00\u6807\u8BC6\u7B26\uFF08snake_case\uFF0C\u521B\u5EFA\u540E\u4E0D\u53EF\u4FEE\u6539\uFF09"
|
|
1288
|
+
},
|
|
1289
|
+
label: {
|
|
1290
|
+
helpText: "\u7528\u6237\u770B\u5230\u7684\u663E\u793A\u540D\u79F0"
|
|
1291
|
+
},
|
|
1292
|
+
type: {
|
|
1293
|
+
helpText: "\u8BE5\u5B57\u6BB5\u7684\u6570\u636E\u7C7B\u578B"
|
|
1294
|
+
},
|
|
1295
|
+
group: {
|
|
1296
|
+
helpText: "\u8868\u5355\u5E03\u5C40\u4E2D\u7684\u5206\u7EC4\u540D\u79F0"
|
|
1297
|
+
},
|
|
1298
|
+
description: {
|
|
1299
|
+
helpText: "\u5C55\u793A\u7ED9\u7528\u6237\u7684\u5E2E\u52A9\u6587\u672C"
|
|
1300
|
+
},
|
|
1301
|
+
required: {
|
|
1302
|
+
helpText: "\u7528\u6237\u5FC5\u987B\u586B\u5199"
|
|
1303
|
+
},
|
|
1304
|
+
unique: {
|
|
1305
|
+
helpText: "\u4EFB\u610F\u4E24\u6761\u8BB0\u5F55\u7684\u503C\u4E0D\u80FD\u76F8\u540C"
|
|
1306
|
+
},
|
|
1307
|
+
multiple: {
|
|
1308
|
+
helpText: "\u5141\u8BB8\u591A\u4E2A\u503C\uFF08\u7528\u4E8E select / lookup\uFF09"
|
|
1309
|
+
},
|
|
1310
|
+
defaultValue: {
|
|
1311
|
+
helpText: "\u65B0\u5EFA\u8BB0\u5F55\u65F6\u7684\u9ED8\u8BA4\u503C"
|
|
1312
|
+
},
|
|
1313
|
+
minLength: {
|
|
1314
|
+
helpText: "\u6700\u5C11\u5B57\u7B26\u6570"
|
|
1315
|
+
},
|
|
1316
|
+
maxLength: {
|
|
1317
|
+
helpText: "\u6700\u591A\u5B57\u7B26\u6570"
|
|
1318
|
+
},
|
|
1319
|
+
min: {
|
|
1320
|
+
helpText: "\u5141\u8BB8\u7684\u6700\u5C0F\u6570\u503C"
|
|
1321
|
+
},
|
|
1322
|
+
max: {
|
|
1323
|
+
helpText: "\u5141\u8BB8\u7684\u6700\u5927\u6570\u503C"
|
|
1324
|
+
},
|
|
1325
|
+
precision: {
|
|
1326
|
+
helpText: "\u5C0F\u6570\u4F4D\u6570\uFF08\u5982\uFF1A\u8D27\u5E01\u7528 2 \u8868\u793A\u4FDD\u7559\u4E24\u4F4D\uFF09"
|
|
1327
|
+
},
|
|
1328
|
+
scale: {
|
|
1329
|
+
helpText: "\u5C0F\u6570\u90E8\u5206\u4F4D\u6570"
|
|
1330
|
+
},
|
|
1331
|
+
options: {
|
|
1332
|
+
helpText: "\u53EF\u9009\u9879\uFF08label/value \u5BF9\uFF09"
|
|
1333
|
+
},
|
|
1334
|
+
reference: {
|
|
1335
|
+
helpText: "\u88AB\u5F15\u7528\u7684\u5BF9\u8C61\u540D\u79F0"
|
|
1336
|
+
},
|
|
1337
|
+
referenceFilters: {
|
|
1338
|
+
helpText: "\u7B5B\u9009\u8868\u8FBE\u5F0F\uFF08\u5982\uFF1Aactive = true\uFF09"
|
|
1339
|
+
},
|
|
1340
|
+
deleteBehavior: {
|
|
1341
|
+
helpText: "\u88AB\u5F15\u7528\u8BB0\u5F55\u5220\u9664\u65F6\u7684\u5904\u7406\u65B9\u5F0F"
|
|
1342
|
+
},
|
|
1343
|
+
expression: {
|
|
1344
|
+
helpText: "\u7528 CEL \u8868\u8FBE\u5F0F\u8BA1\u7B97\u6B64\u5B57\u6BB5\u7684\u503C\uFF08\u81EA\u52A8\u8BBE\u4E3A\u53EA\u8BFB\uFF09"
|
|
1345
|
+
},
|
|
1346
|
+
summaryOperations: {
|
|
1347
|
+
helpText: "\u7236\u5B50\u5173\u7CFB\u4E0B\u7684\u6C47\u603B\u805A\u5408\u914D\u7F6E"
|
|
1348
|
+
},
|
|
1349
|
+
cached: {
|
|
1350
|
+
helpText: "\u8BA1\u7B97\u5B57\u6BB5\u7684\u7F13\u5B58\u914D\u7F6E"
|
|
1351
|
+
},
|
|
1352
|
+
columnName: {
|
|
1353
|
+
helpText: "\u6570\u636E\u5E93\u4E2D\u7684\u7269\u7406\u5217\u540D\uFF08\u9ED8\u8BA4\u4E0E\u5B57\u6BB5\u540D\u76F8\u540C\uFF09"
|
|
1354
|
+
},
|
|
1355
|
+
index: {
|
|
1356
|
+
helpText: "\u5EFA\u7ACB\u6570\u636E\u5E93\u7D22\u5F15\u4EE5\u52A0\u901F\u67E5\u8BE2"
|
|
1357
|
+
},
|
|
1358
|
+
externalId: {
|
|
1359
|
+
helpText: "\u6807\u8BB0\u4E3A\u5916\u90E8 ID \u7528\u4E8E upsert \u64CD\u4F5C"
|
|
1360
|
+
},
|
|
1361
|
+
readonly: {
|
|
1362
|
+
helpText: "\u5728\u8868\u5355\u4E2D\u53EA\u8BFB"
|
|
1363
|
+
},
|
|
1364
|
+
hidden: {
|
|
1365
|
+
helpText: "\u5728\u9ED8\u8BA4\u754C\u9762\u89C6\u56FE\u4E2D\u9690\u85CF"
|
|
1366
|
+
},
|
|
1367
|
+
searchable: {
|
|
1368
|
+
helpText: "\u7EB3\u5165\u5168\u5C40\u641C\u7D22\u7ED3\u679C"
|
|
1369
|
+
},
|
|
1370
|
+
sortable: {
|
|
1371
|
+
helpText: "\u5141\u8BB8\u6309\u6B64\u5B57\u6BB5\u6392\u5E8F"
|
|
1372
|
+
},
|
|
1373
|
+
auditTrail: {
|
|
1374
|
+
helpText: "\u8BB0\u5F55\u8BE6\u7EC6\u53D8\u66F4\u4E0E\u64CD\u4F5C\u4EBA\u3001\u65F6\u95F4\u6233"
|
|
1375
|
+
},
|
|
1376
|
+
trackFeedHistory: {
|
|
1377
|
+
helpText: "\u5728\u6D3B\u52A8\u52A8\u6001\u4E2D\u5C55\u793A\u53D8\u66F4"
|
|
1378
|
+
},
|
|
1379
|
+
encryptionConfig: {
|
|
1380
|
+
helpText: "\u5B57\u6BB5\u7EA7\u52A0\u5BC6\uFF08GDPR / HIPAA / PCI-DSS\uFF09"
|
|
1381
|
+
},
|
|
1382
|
+
maskingRule: {
|
|
1383
|
+
helpText: "PII \u6570\u636E\u8131\u654F\u89C4\u5219"
|
|
1384
|
+
}
|
|
1385
|
+
}
|
|
1386
|
+
},
|
|
1387
|
+
trigger: {
|
|
1388
|
+
label: "Trigger"
|
|
1389
|
+
},
|
|
1390
|
+
validation: {
|
|
1391
|
+
label: "Validation Rule"
|
|
1392
|
+
},
|
|
1393
|
+
hook: {
|
|
1394
|
+
label: "\u94A9\u5B50",
|
|
1395
|
+
sections: {
|
|
1396
|
+
identity: {
|
|
1397
|
+
label: "\u57FA\u7840\u4FE1\u606F",
|
|
1398
|
+
description: "\u540D\u79F0\u3001\u5BF9\u8C61\u4E0E\u89E6\u53D1\u4E8B\u4EF6"
|
|
1399
|
+
},
|
|
1400
|
+
body: {
|
|
1401
|
+
label: "\u5904\u7406\u4F53",
|
|
1402
|
+
description: "\u89E6\u53D1\u65F6\u6267\u884C\u7684\u5185\u8054\u8868\u8FBE\u5F0F\u6216\u6C99\u7BB1 JavaScript"
|
|
1403
|
+
},
|
|
1404
|
+
legacy_handler: {
|
|
1405
|
+
label: "\u65E7\u7248\u5904\u7406\u5668",
|
|
1406
|
+
description: "\u51FD\u6570\u540D\u5F15\u7528\u2014\u2014\u5DF2\u5E9F\u5F03\uFF0C\u8BF7\u6539\u7528 body"
|
|
1407
|
+
},
|
|
1408
|
+
execution: {
|
|
1409
|
+
label: "\u6267\u884C"
|
|
1410
|
+
}
|
|
1411
|
+
},
|
|
1412
|
+
fields: {
|
|
1413
|
+
name: {
|
|
1414
|
+
helpText: "snake_case \u6807\u8BC6\u7B26\uFF08\u521B\u5EFA\u540E\u4E0D\u53EF\u4FEE\u6539\uFF09"
|
|
1415
|
+
},
|
|
1416
|
+
object: {
|
|
1417
|
+
helpText: '\u76EE\u6807\u5BF9\u8C61\u540D\uFF08\u6216 "*" \u8868\u793A\u5168\u5C40\uFF09'
|
|
1418
|
+
},
|
|
1419
|
+
events: {
|
|
1420
|
+
helpText: "\u751F\u547D\u5468\u671F\u4E8B\u4EF6\uFF08\u5982 beforeInsert\u3001afterUpdate\uFF09"
|
|
1421
|
+
},
|
|
1422
|
+
priority: {
|
|
1423
|
+
helpText: "\u6570\u5B57\u8D8A\u5C0F\u8D8A\u5148\u6267\u884C"
|
|
1424
|
+
},
|
|
1425
|
+
body: {
|
|
1426
|
+
helpText: "L1 \u8868\u8FBE\u5F0F\u6216 L2 \u6C99\u7BB1 JS \u4F53"
|
|
1427
|
+
},
|
|
1428
|
+
"body.language": {
|
|
1429
|
+
helpText: "expression = \u7EAF\u516C\u5F0F\uFF1Bjs = \u6C99\u7BB1 JavaScript"
|
|
1430
|
+
},
|
|
1431
|
+
"body.source": {
|
|
1432
|
+
helpText: "\u51FD\u6570\u4F53\u6E90\u7801\u2014\u2014\u7981\u6B62\u9876\u5C42 import"
|
|
1433
|
+
},
|
|
1434
|
+
"body.capabilities": {
|
|
1435
|
+
helpText: "\u53EF\u7528\u7684 ctx API\uFF08api.read\u3001api.write\u3001crypto.uuid\u3001log \u7B49\uFF09"
|
|
1436
|
+
},
|
|
1437
|
+
"body.timeoutMs": {
|
|
1438
|
+
helpText: "\u5355\u6B21\u8C03\u7528\u8D85\u65F6\u65F6\u95F4\uFF08\u6BEB\u79D2\uFF09"
|
|
1439
|
+
},
|
|
1440
|
+
handler: {
|
|
1441
|
+
helpText: "\u5904\u7406\u5668\u51FD\u6570\u540D\uFF08\u5DF2\u5E9F\u5F03\u2014\u2014\u5EFA\u8BAE\u4F7F\u7528 body\uFF09"
|
|
1442
|
+
},
|
|
1443
|
+
async: {
|
|
1444
|
+
helpText: "\u540E\u53F0\u8FD0\u884C\uFF0C\u4E0D\u963B\u585E\u5F53\u524D\u4E8B\u52A1"
|
|
1445
|
+
},
|
|
1446
|
+
condition: {
|
|
1447
|
+
helpText: "\u53EF\u9009\u516C\u5F0F\u2014\u2014\u6C42\u503C\u4E3A false \u65F6\u8DF3\u8FC7\u8BE5\u94A9\u5B50"
|
|
1448
|
+
}
|
|
1449
|
+
}
|
|
1450
|
+
},
|
|
1451
|
+
view: {
|
|
1452
|
+
label: "\u89C6\u56FE",
|
|
1453
|
+
sections: {
|
|
1454
|
+
basics: {
|
|
1455
|
+
label: "\u57FA\u7840\u4FE1\u606F",
|
|
1456
|
+
description: "\u6807\u8BC6\u4E0E\u4E3B\u663E\u793A\u5F62\u6001"
|
|
1457
|
+
},
|
|
1458
|
+
columns_filters: {
|
|
1459
|
+
label: "\u5217\u4E0E\u7B5B\u9009",
|
|
1460
|
+
description: "\u5C55\u793A\u54EA\u4E9B\u884C\u4EE5\u53CA\u7528\u6237\u5982\u4F55\u7B5B\u9009"
|
|
1461
|
+
},
|
|
1462
|
+
table_options: {
|
|
1463
|
+
label: "\u8868\u683C\u9009\u9879",
|
|
1464
|
+
description: "\u4EC5 Grid \u8868\u683C\u7684\u663E\u793A\u9009\u9879"
|
|
1465
|
+
},
|
|
1466
|
+
kanban: {
|
|
1467
|
+
label: "\u770B\u677F\u914D\u7F6E",
|
|
1468
|
+
description: "\u770B\u677F\u4E13\u5C5E\u914D\u7F6E"
|
|
1469
|
+
},
|
|
1470
|
+
calendar: {
|
|
1471
|
+
label: "\u65E5\u5386\u914D\u7F6E",
|
|
1472
|
+
description: "\u65E5\u5386\u4E13\u5C5E\u914D\u7F6E"
|
|
1473
|
+
},
|
|
1474
|
+
gantt: {
|
|
1475
|
+
label: "\u7518\u7279\u56FE\u914D\u7F6E",
|
|
1476
|
+
description: "\u7518\u7279\u56FE\u4E13\u5C5E\u914D\u7F6E"
|
|
1477
|
+
},
|
|
1478
|
+
gallery: {
|
|
1479
|
+
label: "\u753B\u5ECA\u914D\u7F6E",
|
|
1480
|
+
description: "\u753B\u5ECA\u4E13\u5C5E\u914D\u7F6E"
|
|
1481
|
+
},
|
|
1482
|
+
timeline: {
|
|
1483
|
+
label: "\u65F6\u95F4\u7EBF\u914D\u7F6E",
|
|
1484
|
+
description: "\u65F6\u95F4\u7EBF\u4E13\u5C5E\u914D\u7F6E"
|
|
1485
|
+
},
|
|
1486
|
+
chart: {
|
|
1487
|
+
label: "\u56FE\u8868\u914D\u7F6E",
|
|
1488
|
+
description: "\u56FE\u8868\u4E13\u5C5E\u914D\u7F6E"
|
|
1489
|
+
},
|
|
1490
|
+
navigation_sharing: {
|
|
1491
|
+
label: "\u5BFC\u822A\u4E0E\u5171\u4EAB",
|
|
1492
|
+
description: "\u89C6\u56FE\u51FA\u73B0\u5728\u54EA\u91CC\u4EE5\u53CA\u8C01\u53EF\u4EE5\u67E5\u770B"
|
|
1493
|
+
}
|
|
1494
|
+
},
|
|
1495
|
+
fields: {
|
|
1496
|
+
name: {
|
|
1497
|
+
helpText: "snake_case\uFF0C\u73AF\u5883\u5185\u552F\u4E00"
|
|
1498
|
+
},
|
|
1499
|
+
type: {
|
|
1500
|
+
helpText: "\u4E3B\u8981\u7684\u89C6\u56FE\u5F62\u6001"
|
|
1501
|
+
},
|
|
1502
|
+
data: {
|
|
1503
|
+
helpText: '\u6570\u636E\u6E90\u2014\u2014\u5982\uFF1A{"provider":"object","object":"task"}'
|
|
1504
|
+
},
|
|
1505
|
+
columns: {
|
|
1506
|
+
helpText: "\u8981\u5C55\u793A\u7684\u5217\uFF08\u6765\u81EA\u6240\u9009\u5BF9\u8C61\u7684\u5B57\u6BB5\u540D\uFF09"
|
|
1507
|
+
},
|
|
1508
|
+
filter: {
|
|
1509
|
+
helpText: "\u7B5B\u9009\u89C4\u5219"
|
|
1510
|
+
},
|
|
1511
|
+
sort: {
|
|
1512
|
+
helpText: "\u9ED8\u8BA4\u6392\u5E8F\u65B9\u5F0F"
|
|
1513
|
+
},
|
|
1514
|
+
searchableFields: {
|
|
1515
|
+
helpText: "\u53EF\u7528\u4E8E\u5FEB\u901F\u641C\u7D22\u7684\u5B57\u6BB5\u540D"
|
|
1516
|
+
},
|
|
1517
|
+
filterableFields: {
|
|
1518
|
+
helpText: "\u53EF\u7528\u4E8E\u7B5B\u9009\u7684\u5B57\u6BB5\u540D"
|
|
1519
|
+
}
|
|
1520
|
+
}
|
|
1521
|
+
},
|
|
1522
|
+
page: {
|
|
1523
|
+
label: "\u9875\u9762",
|
|
1524
|
+
sections: {
|
|
1525
|
+
basics: {
|
|
1526
|
+
label: "\u57FA\u7840\u4FE1\u606F",
|
|
1527
|
+
description: "\u540D\u79F0\u3001\u6807\u9898\u4E0E\u56FE\u6807"
|
|
1528
|
+
},
|
|
1529
|
+
data_context: {
|
|
1530
|
+
label: "\u6570\u636E\u4E0A\u4E0B\u6587",
|
|
1531
|
+
description: "\u5173\u8054\u5BF9\u8C61\u4E0E\u53D8\u91CF"
|
|
1532
|
+
},
|
|
1533
|
+
layout: {
|
|
1534
|
+
label: "\u5E03\u5C40",
|
|
1535
|
+
description: "\u9875\u9762\u533A\u5757\u4E0E\u7EC4\u4EF6"
|
|
1536
|
+
},
|
|
1537
|
+
advanced: {
|
|
1538
|
+
label: "\u9AD8\u7EA7\u8BBE\u7F6E",
|
|
1539
|
+
description: "\u9ED8\u8BA4\u9875\u3001\u7C7B\u578B\u4E0E\u5206\u914D"
|
|
1540
|
+
}
|
|
1541
|
+
},
|
|
1542
|
+
fields: {
|
|
1543
|
+
name: {
|
|
1544
|
+
helpText: "snake_case \u552F\u4E00\u6807\u8BC6\u7B26"
|
|
1545
|
+
},
|
|
1546
|
+
label: {
|
|
1547
|
+
helpText: "\u5C55\u793A\u7ED9\u7528\u6237\u7684\u9875\u9762\u6807\u9898"
|
|
1548
|
+
},
|
|
1549
|
+
icon: {
|
|
1550
|
+
helpText: "\u5BFC\u822A\u83DC\u5355\u4E2D\u663E\u793A\u7684\u56FE\u6807"
|
|
1551
|
+
},
|
|
1552
|
+
type: {
|
|
1553
|
+
helpText: "\u9875\u9762\u7C7B\u578B\uFF08record\u3001home\u3001app\u3001dashboard \u7B49\uFF09"
|
|
1554
|
+
},
|
|
1555
|
+
template: {
|
|
1556
|
+
helpText: '\u5E03\u5C40\u6A21\u677F\uFF08\u5982 "header-sidebar-main"\uFF09'
|
|
1557
|
+
},
|
|
1558
|
+
description: {
|
|
1559
|
+
helpText: "\u7528\u4E8E\u5BFC\u822A\u7684\u9875\u9762\u63CF\u8FF0"
|
|
1560
|
+
},
|
|
1561
|
+
object: {
|
|
1562
|
+
helpText: "\u7ED1\u5B9A\u7684\u5BF9\u8C61\uFF08\u7528\u4E8E\u8BB0\u5F55\u9875\uFF09"
|
|
1563
|
+
},
|
|
1564
|
+
variables: {
|
|
1565
|
+
helpText: "\u9875\u9762\u672C\u5730\u72B6\u6001\u53D8\u91CF"
|
|
1566
|
+
},
|
|
1567
|
+
regions: {
|
|
1568
|
+
helpText: "\u5E03\u5C40\u533A\u57DF\uFF08header\u3001main\u3001sidebar\u3001footer\uFF09\u53CA\u5176\u7EC4\u4EF6"
|
|
1569
|
+
},
|
|
1570
|
+
isDefault: {
|
|
1571
|
+
helpText: "\u8BBE\u4E3A\u8BE5\u9875\u9762\u7C7B\u578B\u7684\u9ED8\u8BA4\u9875"
|
|
1572
|
+
},
|
|
1573
|
+
kind: {
|
|
1574
|
+
helpText: "\u9875\u9762\u79CD\u7C7B\u5206\u7EC4\uFF08\u5982 record / list / detail\uFF09"
|
|
1575
|
+
},
|
|
1576
|
+
assignedProfiles: {
|
|
1577
|
+
helpText: "\u6B64\u9875\u9762\u5BF9\u54EA\u4E9B Profile \u53EF\u7528"
|
|
1578
|
+
},
|
|
1579
|
+
aria: {
|
|
1580
|
+
helpText: "\u65E0\u969C\u788D\u6807\u7B7E\u4E0E\u89D2\u8272"
|
|
1581
|
+
}
|
|
1582
|
+
}
|
|
1583
|
+
},
|
|
1584
|
+
dashboard: {
|
|
1585
|
+
label: "\u4EEA\u8868\u677F",
|
|
1586
|
+
sections: {
|
|
1587
|
+
basics: {
|
|
1588
|
+
label: "\u57FA\u7840\u4FE1\u606F",
|
|
1589
|
+
description: "\u540D\u79F0\u4E0E\u56FE\u6807"
|
|
1590
|
+
},
|
|
1591
|
+
layout: {
|
|
1592
|
+
label: "\u5E03\u5C40",
|
|
1593
|
+
description: "\u6805\u683C\u4E0E\u54CD\u5E94\u5F0F"
|
|
1594
|
+
},
|
|
1595
|
+
widgets: {
|
|
1596
|
+
label: "\u7EC4\u4EF6",
|
|
1597
|
+
description: "\u56FE\u8868\u3001\u6307\u6807\u3001\u5217\u8868\u7B49"
|
|
1598
|
+
},
|
|
1599
|
+
filters: {
|
|
1600
|
+
label: "\u7B5B\u9009",
|
|
1601
|
+
description: "\u5168\u5C40\u7B5B\u9009\u4E0E\u65E5\u671F\u8303\u56F4"
|
|
1602
|
+
},
|
|
1603
|
+
advanced: {
|
|
1604
|
+
label: "\u9AD8\u7EA7\u8BBE\u7F6E",
|
|
1605
|
+
description: "\u6027\u80FD\u4E0E\u65E0\u969C\u788D"
|
|
1606
|
+
}
|
|
1607
|
+
},
|
|
1608
|
+
fields: {
|
|
1609
|
+
name: {
|
|
1610
|
+
helpText: "snake_case unique identifier"
|
|
1611
|
+
},
|
|
1612
|
+
label: {
|
|
1613
|
+
helpText: "\u663E\u793A\u540D"
|
|
1614
|
+
},
|
|
1615
|
+
columns: {
|
|
1616
|
+
helpText: "\u6805\u683C\u5217\u6570\uFF08\u9ED8\u8BA4 12\uFF09"
|
|
1617
|
+
},
|
|
1618
|
+
gap: {
|
|
1619
|
+
helpText: "\u6805\u683C\u95F4\u8DDD\uFF08Tailwind \u5355\u4F4D\uFF09"
|
|
1620
|
+
},
|
|
1621
|
+
refreshInterval: {
|
|
1622
|
+
helpText: "\u81EA\u52A8\u5237\u65B0\u95F4\u9694\uFF08\u79D2\uFF09"
|
|
1623
|
+
},
|
|
1624
|
+
header: {
|
|
1625
|
+
helpText: "\u6807\u9898\u3001\u64CD\u4F5C\u6309\u94AE\u4E0E\u7B5B\u9009"
|
|
1626
|
+
},
|
|
1627
|
+
widgets: {
|
|
1628
|
+
helpText: "\u5305\u542B\u4F4D\u7F6E\u548C\u5C3A\u5BF8\u7684\u4EEA\u8868\u677F\u7EC4\u4EF6"
|
|
1629
|
+
},
|
|
1630
|
+
dateRange: {
|
|
1631
|
+
helpText: "\u9ED8\u8BA4\u65E5\u671F\u8303\u56F4\u9009\u62E9\u5668"
|
|
1632
|
+
},
|
|
1633
|
+
globalFilters: {
|
|
1634
|
+
helpText: "\u5E94\u7528\u5230\u6240\u6709\u7EC4\u4EF6\u7684\u7B5B\u9009\u6761\u4EF6"
|
|
1635
|
+
},
|
|
1636
|
+
aria: {
|
|
1637
|
+
helpText: "\u65E0\u969C\u788D\u6807\u7B7E"
|
|
1638
|
+
},
|
|
1639
|
+
performance: {
|
|
1640
|
+
helpText: "\u61D2\u52A0\u8F7D\u3001\u865A\u62DF\u6EDA\u52A8\u3001\u7F13\u5B58\u7B49"
|
|
1641
|
+
}
|
|
1642
|
+
}
|
|
1643
|
+
},
|
|
1644
|
+
app: {
|
|
1645
|
+
label: "\u5E94\u7528",
|
|
1646
|
+
sections: {
|
|
1647
|
+
basics: {
|
|
1648
|
+
label: "\u57FA\u7840\u4FE1\u606F",
|
|
1649
|
+
description: "\u6807\u8BC6\u3001\u7248\u672C\u4E0E\u56FE\u6807"
|
|
1650
|
+
},
|
|
1651
|
+
navigation: {
|
|
1652
|
+
label: "\u5BFC\u822A",
|
|
1653
|
+
description: "\u83DC\u5355\u7ED3\u6784\u4E0E\u9996\u9875"
|
|
1654
|
+
},
|
|
1655
|
+
content: {
|
|
1656
|
+
label: "\u5185\u5BB9",
|
|
1657
|
+
description: "\u5BF9\u8C61\u3001API \u4E0E\u9ED8\u8BA4\u667A\u80FD\u4F53"
|
|
1658
|
+
},
|
|
1659
|
+
branding: {
|
|
1660
|
+
label: "\u54C1\u724C",
|
|
1661
|
+
description: "\u4E3B\u9898\u8272\u4E0E Logo"
|
|
1662
|
+
},
|
|
1663
|
+
access_and_sharing: {
|
|
1664
|
+
label: "\u8BBF\u95EE\u4E0E\u5171\u4EAB",
|
|
1665
|
+
description: "\u6743\u9650\u3001\u5171\u4EAB\u4E0E\u5D4C\u5165"
|
|
1666
|
+
}
|
|
1667
|
+
},
|
|
1668
|
+
fields: {
|
|
1669
|
+
name: {
|
|
1670
|
+
helpText: "snake_case \u552F\u4E00\u6807\u8BC6\u7B26"
|
|
1671
|
+
},
|
|
1672
|
+
icon: {
|
|
1673
|
+
helpText: "Lucide \u56FE\u6807\u540D\uFF08\u5982 users\u3001briefcase\uFF09"
|
|
1674
|
+
},
|
|
1675
|
+
isDefault: {
|
|
1676
|
+
helpText: "\u8BBE\u4E3A\u65B0\u7528\u6237\u7684\u9ED8\u8BA4\u5E94\u7528"
|
|
1677
|
+
},
|
|
1678
|
+
navigation: {
|
|
1679
|
+
helpText: "\u9012\u5F52\u7684\u5BFC\u822A\u7ED3\u6784"
|
|
1680
|
+
},
|
|
1681
|
+
areas: {
|
|
1682
|
+
helpText: "\u5C06\u83DC\u5355\u9879\u7EC4\u7EC7\u4E3A\u53EF\u6298\u53E0\u5206\u7EC4"
|
|
1683
|
+
},
|
|
1684
|
+
homePageId: {
|
|
1685
|
+
helpText: "\u5E94\u7528\u6253\u5F00\u65F6\u8DF3\u8F6C\u7684\u9875\u9762"
|
|
1686
|
+
},
|
|
1687
|
+
mobileNavigation: {
|
|
1688
|
+
helpText: "\u79FB\u52A8\u7AEF\u5E95\u90E8 Tab \u680F\u914D\u7F6E"
|
|
1689
|
+
},
|
|
1690
|
+
objects: {
|
|
1691
|
+
helpText: "\u6B64\u5E94\u7528\u66B4\u9732\u7684\u5BF9\u8C61\u540D"
|
|
1692
|
+
},
|
|
1693
|
+
apis: {
|
|
1694
|
+
helpText: "API \u7AEF\u70B9\u5B9A\u4E49"
|
|
1695
|
+
},
|
|
1696
|
+
defaultAgent: {
|
|
1697
|
+
helpText: "\u53F3\u4E0B\u89D2\u6D6E\u52A8\u52A9\u624B\u6309\u94AE\u8C03\u7528\u7684 AI \u667A\u80FD\u4F53"
|
|
1698
|
+
},
|
|
1699
|
+
branding: {
|
|
1700
|
+
helpText: "\u4E3B\u8272\u3001\u8F85\u8272\u3001Logo \u4E0E\u4E3B\u9898"
|
|
1701
|
+
},
|
|
1702
|
+
requiredPermissions: {
|
|
1703
|
+
helpText: "\u8BBF\u95EE\u8BE5\u5E94\u7528\u9700\u8981\u7684\u6743\u9650"
|
|
1704
|
+
},
|
|
1705
|
+
sharing: {
|
|
1706
|
+
helpText: "\u516C\u5F00 / \u5185\u90E8 / \u53D7\u9650\u7684\u8BBF\u95EE\u63A7\u5236"
|
|
1707
|
+
},
|
|
1708
|
+
embed: {
|
|
1709
|
+
helpText: "iFrame \u5D4C\u5165\u914D\u7F6E"
|
|
1710
|
+
},
|
|
1711
|
+
aria: {
|
|
1712
|
+
helpText: "\u65E0\u969C\u788D\u6807\u7B7E\u4E0E\u89D2\u8272"
|
|
1713
|
+
}
|
|
1714
|
+
}
|
|
1715
|
+
},
|
|
1716
|
+
action: {
|
|
1717
|
+
label: "\u64CD\u4F5C",
|
|
1718
|
+
sections: {
|
|
1719
|
+
basics: {
|
|
1720
|
+
label: "\u57FA\u7840\u4FE1\u606F",
|
|
1721
|
+
description: "\u6807\u8BC6\u3001\u5BF9\u8C61\u4E0E\u56FE\u6807"
|
|
1722
|
+
},
|
|
1723
|
+
behavior: {
|
|
1724
|
+
label: "\u884C\u4E3A",
|
|
1725
|
+
description: "\u70B9\u51FB\u540E\u6267\u884C\u7684\u64CD\u4F5C"
|
|
1726
|
+
},
|
|
1727
|
+
placement: {
|
|
1728
|
+
label: "\u4F4D\u7F6E",
|
|
1729
|
+
description: "\u5728\u754C\u9762\u4E0A\u7684\u5448\u73B0\u4E0E\u53EF\u89C1\u6027"
|
|
1730
|
+
},
|
|
1731
|
+
advanced: {
|
|
1732
|
+
label: "\u9AD8\u7EA7\u8BBE\u7F6E",
|
|
1733
|
+
description: "\u6279\u91CF\u4E0E AI \u66B4\u9732"
|
|
1734
|
+
}
|
|
1735
|
+
},
|
|
1736
|
+
fields: {
|
|
1737
|
+
name: {
|
|
1738
|
+
helpText: "\u552F\u4E00\u6807\u8BC6\u7B26\uFF08snake_case\uFF09"
|
|
1739
|
+
},
|
|
1740
|
+
label: {
|
|
1741
|
+
helpText: "\u5C55\u793A\u7ED9\u7528\u6237\u7684\u6309\u94AE\u6587\u5B57"
|
|
1742
|
+
},
|
|
1743
|
+
objectName: {
|
|
1744
|
+
helpText: "\u6240\u5C5E\u5BF9\u8C61\uFF08\u53EF\u9009\uFF09"
|
|
1745
|
+
},
|
|
1746
|
+
icon: {
|
|
1747
|
+
helpText: 'Lucide \u56FE\u6807\u540D\uFF08\u5982 "check"\u3001"x-circle"\uFF09'
|
|
1748
|
+
},
|
|
1749
|
+
type: {
|
|
1750
|
+
helpText: "\u70B9\u51FB\u540E\u53D1\u751F\u4EC0\u4E48"
|
|
1751
|
+
},
|
|
1752
|
+
variant: {
|
|
1753
|
+
helpText: "\u6309\u94AE\u6837\u5F0F\uFF08primary=\u84DD\u8272\uFF0Cdanger=\u7EA2\u8272\uFF0Cghost=\u900F\u660E\uFF09"
|
|
1754
|
+
},
|
|
1755
|
+
target: {
|
|
1756
|
+
helpText: "\u8C03\u7528\u7684 URL\u3001\u6D41\u7A0B\u540D\u6216 API \u7AEF\u70B9"
|
|
1757
|
+
},
|
|
1758
|
+
method: {
|
|
1759
|
+
helpText: "GET / POST / PUT / DELETE"
|
|
1760
|
+
},
|
|
1761
|
+
body: {
|
|
1762
|
+
helpText: "\u8981\u6267\u884C\u7684 JavaScript \u4EE3\u7801"
|
|
1763
|
+
},
|
|
1764
|
+
params: {
|
|
1765
|
+
helpText: "\u6267\u884C\u524D\u5411\u7528\u6237\u6536\u96C6\u7684\u8F93\u5165\u53C2\u6570"
|
|
1766
|
+
},
|
|
1767
|
+
confirmText: {
|
|
1768
|
+
helpText: '\u6267\u884C\u524D\u7684\u786E\u8BA4\u63D0\u793A\uFF08\u5982 "\u786E\u5B9A\u8981\u6267\u884C\u5417\uFF1F"\uFF09'
|
|
1769
|
+
},
|
|
1770
|
+
successMessage: {
|
|
1771
|
+
helpText: "\u6267\u884C\u6210\u529F\u540E\u7684\u63D0\u793A\u4FE1\u606F"
|
|
1772
|
+
},
|
|
1773
|
+
refreshAfter: {
|
|
1774
|
+
helpText: "\u6267\u884C\u5B8C\u6210\u540E\u5237\u65B0\u5F53\u524D\u5217\u8868/\u9875\u9762"
|
|
1775
|
+
},
|
|
1776
|
+
locations: {
|
|
1777
|
+
helpText: "\u51FA\u73B0\u5728\u5DE5\u5177\u680F\u3001\u884C\u83DC\u5355\u7B49\u4F4D\u7F6E"
|
|
1778
|
+
},
|
|
1779
|
+
component: {
|
|
1780
|
+
helpText: "\u4EE5\u6309\u94AE\u3001\u56FE\u6807\u6216\u83DC\u5355\u9879\u7684\u5F62\u5F0F\u5448\u73B0"
|
|
1781
|
+
},
|
|
1782
|
+
visible: {
|
|
1783
|
+
helpText: "CEL \u8868\u8FBE\u5F0F\uFF1A\u6EE1\u8DB3\u6761\u4EF6\u65F6\u663E\u793A"
|
|
1784
|
+
},
|
|
1785
|
+
disabled: {
|
|
1786
|
+
helpText: "CEL \u8868\u8FBE\u5F0F\uFF1A\u6EE1\u8DB3\u6761\u4EF6\u65F6\u7981\u7528"
|
|
1787
|
+
},
|
|
1788
|
+
shortcut: {
|
|
1789
|
+
helpText: '\u952E\u76D8\u5FEB\u6377\u952E\uFF08\u5982 "Ctrl+S"\u3001"Cmd+Enter"\uFF09'
|
|
1790
|
+
},
|
|
1791
|
+
bulkEnabled: {
|
|
1792
|
+
helpText: "\u5141\u8BB8\u5BF9\u591A\u6761\u9009\u4E2D\u8BB0\u5F55\u6267\u884C"
|
|
1793
|
+
},
|
|
1794
|
+
aiExposed: {
|
|
1795
|
+
helpText: "\u5141\u8BB8 AI \u667A\u80FD\u4F53\u8C03\u7528\u6B64\u64CD\u4F5C"
|
|
1796
|
+
},
|
|
1797
|
+
recordIdParam: {
|
|
1798
|
+
helpText: "API \u8BF7\u6C42\u4F53\u4E2D\u8BB0\u5F55 ID \u7684\u53C2\u6570\u540D"
|
|
1799
|
+
},
|
|
1800
|
+
recordIdField: {
|
|
1801
|
+
helpText: '\u4F5C\u4E3A\u8BB0\u5F55 ID \u7684\u5B57\u6BB5\uFF08\u9ED8\u8BA4 "id"\uFF09'
|
|
1802
|
+
},
|
|
1803
|
+
bodyShape: {
|
|
1804
|
+
helpText: "\u8BF7\u6C42\u4F53\u7684\u7EC4\u7EC7\u5F62\u5F0F\uFF08\u6241\u5E73\u6216\u5D4C\u5957\uFF09"
|
|
1805
|
+
}
|
|
1806
|
+
}
|
|
1807
|
+
},
|
|
1808
|
+
report: {
|
|
1809
|
+
label: "\u62A5\u8868",
|
|
1810
|
+
sections: {
|
|
1811
|
+
basics: {
|
|
1812
|
+
label: "\u57FA\u7840\u4FE1\u606F",
|
|
1813
|
+
description: "\u540D\u79F0\u4E0E\u6570\u636E\u6E90"
|
|
1814
|
+
},
|
|
1815
|
+
columns: {
|
|
1816
|
+
label: "\u5217",
|
|
1817
|
+
description: "\u9009\u62E9\u8981\u5C55\u793A\u7684\u5217"
|
|
1818
|
+
},
|
|
1819
|
+
groupings: {
|
|
1820
|
+
label: "\u5206\u7EC4\u4E0E\u6C47\u603B",
|
|
1821
|
+
description: "\u884C\u5217\u5206\u7EC4\u7EF4\u5EA6"
|
|
1822
|
+
},
|
|
1823
|
+
joined_blocks: {
|
|
1824
|
+
label: "\u5173\u8054\u5BF9\u8C61",
|
|
1825
|
+
description: "\u8DE8\u5BF9\u8C61\u8054\u5408\u67E5\u8BE2"
|
|
1826
|
+
},
|
|
1827
|
+
filter_and_chart: {
|
|
1828
|
+
label: "\u7B5B\u9009\u4E0E\u56FE\u8868",
|
|
1829
|
+
description: "\u6761\u4EF6\u4E0E\u56FE\u8868\u5C55\u793A"
|
|
1830
|
+
},
|
|
1831
|
+
advanced: {
|
|
1832
|
+
label: "\u9AD8\u7EA7\u8BBE\u7F6E",
|
|
1833
|
+
description: "\u6027\u80FD\u4E0E\u65E0\u969C\u788D"
|
|
1834
|
+
}
|
|
1835
|
+
},
|
|
1836
|
+
fields: {
|
|
1837
|
+
name: {
|
|
1838
|
+
helpText: "snake_case \u552F\u4E00\u6807\u8BC6\u7B26"
|
|
1839
|
+
},
|
|
1840
|
+
objectName: {
|
|
1841
|
+
helpText: "\u62A5\u8868\u6570\u636E\u6E90\u5BF9\u8C61"
|
|
1842
|
+
},
|
|
1843
|
+
type: {
|
|
1844
|
+
helpText: "\u62A5\u8868\u7C7B\u578B\uFF1Atabular / summary / matrix / joined"
|
|
1845
|
+
},
|
|
1846
|
+
columns: {
|
|
1847
|
+
helpText: "\u62A5\u8868\u4E2D\u663E\u793A\u7684\u5217"
|
|
1848
|
+
},
|
|
1849
|
+
groupingsDown: {
|
|
1850
|
+
helpText: "\u884C\u65B9\u5411\u5206\u7EC4\u5C42\u7EA7"
|
|
1851
|
+
},
|
|
1852
|
+
groupingsAcross: {
|
|
1853
|
+
helpText: "\u5217\u65B9\u5411\u5206\u7EC4\u5C42\u7EA7\uFF08matrix \u62A5\u8868\uFF09"
|
|
1854
|
+
},
|
|
1855
|
+
blocks: {
|
|
1856
|
+
helpText: "joined \u62A5\u8868\u7684\u8054\u5408\u67E5\u8BE2\u5757"
|
|
1857
|
+
},
|
|
1858
|
+
filter: {
|
|
1859
|
+
helpText: "\u62A5\u8868\u7EA7\u522B\u7684\u7B5B\u9009\u89C4\u5219"
|
|
1860
|
+
},
|
|
1861
|
+
chart: {
|
|
1862
|
+
helpText: "\u56FE\u8868\u7C7B\u578B\u4E0E\u914D\u7F6E"
|
|
1863
|
+
},
|
|
1864
|
+
aria: {
|
|
1865
|
+
helpText: "\u65E0\u969C\u788D\u6807\u7B7E\u4E0E\u89D2\u8272"
|
|
1866
|
+
},
|
|
1867
|
+
performance: {
|
|
1868
|
+
helpText: "\u6027\u80FD\u4E0E\u7F13\u5B58\u7B56\u7565"
|
|
1869
|
+
}
|
|
1870
|
+
}
|
|
1871
|
+
},
|
|
1872
|
+
flow: {
|
|
1873
|
+
label: "\u6D41\u7A0B",
|
|
1874
|
+
sections: {
|
|
1875
|
+
basics: {
|
|
1876
|
+
label: "\u57FA\u7840\u4FE1\u606F",
|
|
1877
|
+
description: "\u6D41\u7A0B\u6807\u8BC6\u4E0E\u542F\u52A8\u65B9\u5F0F"
|
|
1878
|
+
},
|
|
1879
|
+
canvas: {
|
|
1880
|
+
label: "\u753B\u5E03",
|
|
1881
|
+
description: "\u8282\u70B9\u3001\u8FDE\u7EBF\u4E0E\u6D41\u7A0B\u53D8\u91CF\u2014\u2014\u590D\u6742\u6D41\u7A0B\u5EFA\u8BAE\u7528\u53EF\u89C6\u5316\u8BBE\u8BA1\u5668"
|
|
1882
|
+
},
|
|
1883
|
+
execution: {
|
|
1884
|
+
label: "\u6267\u884C\u914D\u7F6E",
|
|
1885
|
+
description: "\u90E8\u7F72\u72B6\u6001\u3001\u8EAB\u4EFD\u4E0E\u5F02\u5E38\u5904\u7406"
|
|
1886
|
+
}
|
|
1887
|
+
},
|
|
1888
|
+
fields: {
|
|
1889
|
+
name: {
|
|
1890
|
+
helpText: "\u552F\u4E00\u6807\u8BC6\u7B26\uFF08snake_case\uFF09"
|
|
1891
|
+
},
|
|
1892
|
+
label: {
|
|
1893
|
+
helpText: "\u7528\u6237\u770B\u5230\u7684\u663E\u793A\u540D\u79F0"
|
|
1894
|
+
},
|
|
1895
|
+
type: {
|
|
1896
|
+
helpText: "\u6D41\u7A0B\u5982\u4F55\u542F\u52A8\uFF08autolaunched / record_change / schedule / screen / api\uFF09"
|
|
1897
|
+
},
|
|
1898
|
+
template: {
|
|
1899
|
+
helpText: "\u662F\u5426\u4E3A\u53EF\u590D\u7528\u5B50\u6D41\u7A0B\uFF08\u53EF\u88AB\u5176\u4ED6\u6D41\u7A0B\u8C03\u7528\uFF09"
|
|
1900
|
+
},
|
|
1901
|
+
description: {
|
|
1902
|
+
helpText: "\u6B64\u6D41\u7A0B\u505A\u4EC0\u4E48"
|
|
1903
|
+
},
|
|
1904
|
+
nodes: {
|
|
1905
|
+
helpText: "\u26A0\uFE0F \u5EFA\u8BAE\u4F7F\u7528\u6D41\u7A0B\u8BBE\u8BA1\u5668\uFF0C\u800C\u975E\u624B\u5199 JSON"
|
|
1906
|
+
},
|
|
1907
|
+
edges: {
|
|
1908
|
+
helpText: "\u8282\u70B9\u95F4\u7684\u8FDE\u63A5\u2014\u2014\u5EFA\u8BAE\u7528\u6D41\u7A0B\u8BBE\u8BA1\u5668\u7F16\u8F91"
|
|
1909
|
+
},
|
|
1910
|
+
variables: {
|
|
1911
|
+
helpText: "\u6D41\u7A0B\u53D8\u91CF\uFF08\u8F93\u5165/\u8F93\u51FA\uFF09"
|
|
1912
|
+
},
|
|
1913
|
+
status: {
|
|
1914
|
+
helpText: "\u90E8\u7F72\u72B6\u6001\uFF1Adraft \u2192 active \u2192 obsolete"
|
|
1915
|
+
},
|
|
1916
|
+
version: {
|
|
1917
|
+
helpText: "\u7248\u672C\u53F7\uFF08\u81EA\u52A8\u9012\u589E\uFF09"
|
|
1918
|
+
},
|
|
1919
|
+
runAs: {
|
|
1920
|
+
helpText: "\u4EE5\u7CFB\u7EDF\uFF08\u7BA1\u7406\u5458\uFF09\u6216\u5F53\u524D\u7528\u6237\u6743\u9650\u6267\u884C"
|
|
1921
|
+
},
|
|
1922
|
+
errorHandling: {
|
|
1923
|
+
helpText: "\u8282\u70B9\u5931\u8D25\u65F6\u7684\u5904\u7406\u65B9\u5F0F\uFF08fail / retry / continue\uFF09"
|
|
1924
|
+
}
|
|
1925
|
+
}
|
|
1926
|
+
},
|
|
1927
|
+
workflow: {
|
|
1928
|
+
label: "\u5DE5\u4F5C\u6D41",
|
|
1929
|
+
sections: {
|
|
1930
|
+
basics: {
|
|
1931
|
+
label: "\u57FA\u7840\u4FE1\u606F",
|
|
1932
|
+
description: "\u540D\u79F0\u4E0E\u89E6\u53D1\u6761\u4EF6"
|
|
1933
|
+
},
|
|
1934
|
+
actions: {
|
|
1935
|
+
label: "\u6267\u884C\u52A8\u4F5C",
|
|
1936
|
+
description: "\u6EE1\u8DB3\u6761\u4EF6\u540E\u505A\u4EC0\u4E48"
|
|
1937
|
+
},
|
|
1938
|
+
advanced: {
|
|
1939
|
+
label: "\u9AD8\u7EA7\u8BBE\u7F6E",
|
|
1940
|
+
description: "\u6267\u884C\u987A\u5E8F\u4E0E\u9519\u8BEF\u5904\u7406"
|
|
1941
|
+
}
|
|
1942
|
+
},
|
|
1943
|
+
fields: {
|
|
1944
|
+
name: {
|
|
1945
|
+
helpText: "\u552F\u4E00\u6807\u8BC6\u7B26\uFF08snake_case\uFF09"
|
|
1946
|
+
},
|
|
1947
|
+
objectName: {
|
|
1948
|
+
helpText: "\u89E6\u53D1\u6B64\u5DE5\u4F5C\u6D41\u7684\u5BF9\u8C61"
|
|
1949
|
+
},
|
|
1950
|
+
triggerType: {
|
|
1951
|
+
helpText: "\u4F55\u65F6\u89E6\u53D1\uFF1Aon_create\u3001on_update\u3001on_delete\u3001schedule"
|
|
1952
|
+
},
|
|
1953
|
+
active: {
|
|
1954
|
+
helpText: "\u542F\u7528\u6216\u7981\u7528\u6B64\u5DE5\u4F5C\u6D41"
|
|
1955
|
+
},
|
|
1956
|
+
description: {
|
|
1957
|
+
helpText: "\u6B64\u5DE5\u4F5C\u6D41\u7684\u7528\u9014\u8BF4\u660E"
|
|
1958
|
+
},
|
|
1959
|
+
criteria: {
|
|
1960
|
+
helpText: "CEL \u8868\u8FBE\u5F0F\uFF1A\u4EC5\u5F53\u6761\u4EF6\u4E3A\u771F\u65F6\u6267\u884C"
|
|
1961
|
+
},
|
|
1962
|
+
actions: {
|
|
1963
|
+
helpText: "\u7ACB\u5373\u6267\u884C\u7684\u52A8\u4F5C\uFF08\u5B57\u6BB5\u66F4\u65B0\u3001\u90AE\u4EF6\u3001API \u8C03\u7528\u7B49\uFF09"
|
|
1964
|
+
},
|
|
1965
|
+
timeTriggers: {
|
|
1966
|
+
helpText: "\u5B9A\u65F6\u52A8\u4F5C\uFF08\u5982\u622A\u6B62\u524D 1 \u5929\u53D1\u63D0\u9192\uFF09"
|
|
1967
|
+
},
|
|
1968
|
+
executionOrder: {
|
|
1969
|
+
helpText: "\u540C\u65F6\u5339\u914D\u591A\u4E2A\u5DE5\u4F5C\u6D41\u65F6\u7684\u6267\u884C\u987A\u5E8F\uFF08\u6570\u5B57\u8D8A\u5C0F\u8D8A\u5148\u6267\u884C\uFF09"
|
|
1970
|
+
}
|
|
1971
|
+
}
|
|
1972
|
+
},
|
|
1973
|
+
approval: {
|
|
1974
|
+
label: "\u5BA1\u6279\u6D41",
|
|
1975
|
+
sections: {
|
|
1976
|
+
basics: {
|
|
1977
|
+
label: "\u57FA\u7840\u4FE1\u606F",
|
|
1978
|
+
description: "\u540D\u79F0\u4E0E\u76EE\u6807\u5BF9\u8C61"
|
|
1979
|
+
},
|
|
1980
|
+
entry_rules: {
|
|
1981
|
+
label: "\u8FDB\u5165\u89C4\u5219",
|
|
1982
|
+
description: "\u4F55\u65F6\u8FDB\u5165\u5BA1\u6279"
|
|
1983
|
+
},
|
|
1984
|
+
steps: {
|
|
1985
|
+
label: "\u5BA1\u6279\u6B65\u9AA4",
|
|
1986
|
+
description: "\u9010\u7EA7\u5BA1\u6279\u914D\u7F6E"
|
|
1987
|
+
},
|
|
1988
|
+
escalation_and_outcomes: {
|
|
1989
|
+
label: "\u5347\u7EA7\u4E0E\u7ED3\u679C",
|
|
1990
|
+
description: "\u8D85\u65F6\u5347\u7EA7\u4E0E\u6700\u7EC8\u5904\u7406"
|
|
1991
|
+
}
|
|
1992
|
+
},
|
|
1993
|
+
fields: {
|
|
1994
|
+
name: {
|
|
1995
|
+
helpText: "\u552F\u4E00\u6807\u8BC6\u7B26\uFF08snake_case\uFF09"
|
|
1996
|
+
},
|
|
1997
|
+
label: {
|
|
1998
|
+
helpText: '\u663E\u793A\u540D\uFF08\u5982\uFF1A"\u5408\u540C\u5BA1\u6279"\uFF09'
|
|
1999
|
+
},
|
|
2000
|
+
object: {
|
|
2001
|
+
helpText: "\u9700\u8981\u5BA1\u6279\u7684\u5BF9\u8C61"
|
|
2002
|
+
},
|
|
2003
|
+
active: {
|
|
2004
|
+
helpText: "\u542F\u7528\u6216\u7981\u7528\u6B64\u5BA1\u6279\u6D41"
|
|
2005
|
+
},
|
|
2006
|
+
description: {
|
|
2007
|
+
helpText: "\u5BA1\u6279\u7684\u5BF9\u8C61\u4E0E\u539F\u56E0"
|
|
2008
|
+
},
|
|
2009
|
+
entryCriteria: {
|
|
2010
|
+
helpText: "CEL \u8868\u8FBE\u5F0F\uFF1A\u6EE1\u8DB3\u65F6\u7528\u6237\u53EF\u63D0\u4EA4"
|
|
2011
|
+
},
|
|
2012
|
+
lockRecord: {
|
|
2013
|
+
helpText: "\u5BA1\u6279\u5F85\u5904\u7406\u671F\u95F4\u9501\u5B9A\u8BB0\u5F55\uFF0C\u7981\u6B62\u7F16\u8F91"
|
|
2014
|
+
},
|
|
2015
|
+
approvalStatusField: {
|
|
2016
|
+
helpText: '\u7528\u4E8E\u955C\u50CF\u5BA1\u6279\u72B6\u6001\u7684\u5B57\u6BB5\u540D\uFF08\u5982 "approval_status"\uFF09'
|
|
2017
|
+
},
|
|
2018
|
+
steps: {
|
|
2019
|
+
helpText: "\u6309\u987A\u5E8F\u6392\u5217\u7684\u5BA1\u6279\u6B65\u9AA4\u2014\u2014\u6BCF\u4E00\u6B65\u5B9A\u4E49\u7531\u8C01\u5BA1\u6279\u4EE5\u53CA\u7ED3\u679C"
|
|
2020
|
+
},
|
|
2021
|
+
escalation: {
|
|
2022
|
+
helpText: "\u8D85\u65F6\u540E\u81EA\u52A8\u5347\u7EA7\u6216\u81EA\u52A8\u901A\u8FC7"
|
|
2023
|
+
},
|
|
2024
|
+
onFinalApprove: {
|
|
2025
|
+
helpText: "\u6240\u6709\u6B65\u9AA4\u901A\u8FC7\u540E\u7684\u52A8\u4F5C\uFF08\u5982\u66F4\u65B0\u72B6\u6001\uFF09"
|
|
2026
|
+
},
|
|
2027
|
+
onFinalReject: {
|
|
2028
|
+
helpText: "\u88AB\u62D2\u7EDD\u540E\u7684\u52A8\u4F5C\uFF08\u5982\u901A\u77E5\u63D0\u4EA4\u4EBA\uFF09"
|
|
2029
|
+
}
|
|
2030
|
+
}
|
|
2031
|
+
},
|
|
2032
|
+
job: {
|
|
2033
|
+
label: "Background Job"
|
|
2034
|
+
},
|
|
2035
|
+
datasource: {
|
|
2036
|
+
label: "Datasource"
|
|
2037
|
+
},
|
|
2038
|
+
translation: {
|
|
2039
|
+
label: "Translation"
|
|
2040
|
+
},
|
|
2041
|
+
router: {
|
|
2042
|
+
label: "Router"
|
|
2043
|
+
},
|
|
2044
|
+
function: {
|
|
2045
|
+
label: "Function"
|
|
2046
|
+
},
|
|
2047
|
+
service: {
|
|
2048
|
+
label: "Service"
|
|
2049
|
+
},
|
|
2050
|
+
email_template: {
|
|
2051
|
+
label: "\u90AE\u4EF6\u6A21\u677F",
|
|
2052
|
+
sections: {
|
|
2053
|
+
identity: {
|
|
2054
|
+
label: "\u57FA\u7840\u4FE1\u606F",
|
|
2055
|
+
description: "\u6A21\u677F ID \u4E0E\u6B63\u6587\u7C7B\u578B"
|
|
2056
|
+
},
|
|
2057
|
+
subject: {
|
|
2058
|
+
label: "\u4E3B\u9898",
|
|
2059
|
+
description: "\u90AE\u4EF6\u4E3B\u9898\u6A21\u677F"
|
|
2060
|
+
},
|
|
2061
|
+
body: {
|
|
2062
|
+
label: "\u6B63\u6587",
|
|
2063
|
+
description: "\u90AE\u4EF6\u6B63\u6587\u5185\u5BB9"
|
|
2064
|
+
},
|
|
2065
|
+
variables_and_attachments: {
|
|
2066
|
+
label: "\u53D8\u91CF\u4E0E\u9644\u4EF6",
|
|
2067
|
+
description: "\u53EF\u6CE8\u5165\u7684\u53D8\u91CF\u4E0E\u9644\u4EF6\u5217\u8868"
|
|
2068
|
+
}
|
|
2069
|
+
},
|
|
2070
|
+
fields: {
|
|
2071
|
+
id: {
|
|
2072
|
+
helpText: "\u552F\u4E00\u6807\u8BC6\u7B26\uFF08snake_case\uFF09"
|
|
2073
|
+
},
|
|
2074
|
+
body: {
|
|
2075
|
+
helpText: "\u652F\u6301\u53D8\u91CF\u63D2\u503C\u7684\u90AE\u4EF6\u6B63\u6587"
|
|
2076
|
+
},
|
|
2077
|
+
variables: {
|
|
2078
|
+
helpText: "\u6A21\u677F\u5185\u53EF\u5F15\u7528\u7684\u53D8\u91CF\u4E0E\u9ED8\u8BA4\u503C"
|
|
2079
|
+
},
|
|
2080
|
+
attachments: {
|
|
2081
|
+
helpText: "\u9644\u4EF6\u5217\u8868\uFF08\u6587\u4EF6\u5F15\u7528\u6216 URL\uFF09"
|
|
2082
|
+
}
|
|
2083
|
+
}
|
|
2084
|
+
},
|
|
2085
|
+
permission: {
|
|
2086
|
+
label: "\u6743\u9650\u96C6 / \u914D\u7F6E\u6587\u4EF6",
|
|
2087
|
+
sections: {
|
|
2088
|
+
identity: {
|
|
2089
|
+
label: "\u8EAB\u4EFD",
|
|
2090
|
+
description: "\u6743\u9650\u96C6\u6216\u914D\u7F6E\u6587\u4EF6\u6807\u8BC6"
|
|
2091
|
+
},
|
|
2092
|
+
system_permissions: {
|
|
2093
|
+
label: "\u7CFB\u7EDF\u6743\u9650",
|
|
2094
|
+
description: "\u5E94\u7528\u3001API\u3001\u7BA1\u7406\u4E0E\u8BBE\u7F6E\u8BBF\u95EE"
|
|
2095
|
+
},
|
|
2096
|
+
object_and_field_permissions: {
|
|
2097
|
+
label: "\u5BF9\u8C61\u4E0E\u5B57\u6BB5\u6743\u9650",
|
|
2098
|
+
description: "\u589E\u5220\u6539\u67E5\u4E0E\u5B57\u6BB5\u53EF\u89C1\u6027"
|
|
2099
|
+
},
|
|
2100
|
+
tab_and_row_level_security: {
|
|
2101
|
+
label: "\u6807\u7B7E\u9875\u4E0E\u884C\u7EA7\u5B89\u5168",
|
|
2102
|
+
description: "\u5BFC\u822A\u53EF\u89C1\u6027\u4E0E\u5171\u4EAB\u89C4\u5219"
|
|
2103
|
+
}
|
|
2104
|
+
},
|
|
2105
|
+
fields: {
|
|
2106
|
+
name: {
|
|
2107
|
+
helpText: "\u552F\u4E00\u6807\u8BC6\u7B26\uFF08snake_case\uFF09"
|
|
2108
|
+
},
|
|
2109
|
+
label: {
|
|
2110
|
+
helpText: "\u9762\u5411\u7BA1\u7406\u5458\u7684\u663E\u793A\u6807\u7B7E"
|
|
2111
|
+
},
|
|
2112
|
+
isProfile: {
|
|
2113
|
+
helpText: "\u52FE\u9009\u540E\u4F5C\u4E3A\u5B8C\u6574\u914D\u7F6E\u6587\u4EF6\uFF08\u800C\u975E\u9644\u52A0\u6743\u9650\u96C6\uFF09"
|
|
2114
|
+
},
|
|
2115
|
+
systemPermissions: {
|
|
2116
|
+
helpText: "\u5E94\u7528\u8BBF\u95EE\u3001API\u3001\u7BA1\u7406\u64CD\u4F5C"
|
|
2117
|
+
},
|
|
2118
|
+
objects: {
|
|
2119
|
+
helpText: "\u6309\u5BF9\u8C61\u914D\u7F6E\u589E\u5220\u6539\u67E5"
|
|
2120
|
+
},
|
|
2121
|
+
fields: {
|
|
2122
|
+
helpText: "\u6309\u5B57\u6BB5\u914D\u7F6E\u53EF\u8BFB / \u53EF\u5199"
|
|
2123
|
+
},
|
|
2124
|
+
tabPermissions: {
|
|
2125
|
+
helpText: "\u5BFC\u822A\u4E2D\u6807\u7B7E\u9875\u7684\u53EF\u89C1\u6027"
|
|
2126
|
+
},
|
|
2127
|
+
rowLevelSecurity: {
|
|
2128
|
+
helpText: "\u57FA\u4E8E\u8BB0\u5F55\u6761\u4EF6\u7684\u8BBF\u95EE\u89C4\u5219"
|
|
2129
|
+
},
|
|
2130
|
+
contextVariables: {
|
|
2131
|
+
helpText: "\u53EF\u5728\u89C4\u5219\u4E2D\u5F15\u7528\u7684\u53D8\u91CF"
|
|
2132
|
+
}
|
|
2133
|
+
}
|
|
2134
|
+
},
|
|
2135
|
+
profile: {
|
|
2136
|
+
label: "Profile",
|
|
2137
|
+
sections: {
|
|
2138
|
+
identity: {
|
|
2139
|
+
label: "Identity",
|
|
2140
|
+
description: "Permission Sets stack on top of a Profile to grant additional access. Profiles are the base set assigned 1:1 to each user."
|
|
2141
|
+
},
|
|
2142
|
+
system_permissions: {
|
|
2143
|
+
label: "System Permissions",
|
|
2144
|
+
description: "High-level capabilities not tied to a specific object \u2014 e.g. manage_users, view_audit_logs."
|
|
2145
|
+
},
|
|
2146
|
+
object_and_field_permissions: {
|
|
2147
|
+
label: "Object & Field Permissions",
|
|
2148
|
+
description: "Per-object CRUD + per-field FLS. Edit via the matrix editor or paste JSON here."
|
|
2149
|
+
},
|
|
2150
|
+
tab_and_row_level_security: {
|
|
2151
|
+
label: "Tab & Row-Level Security",
|
|
2152
|
+
description: "Tab visibility, RLS policies, and custom context variables for predicate evaluation."
|
|
2153
|
+
}
|
|
2154
|
+
},
|
|
2155
|
+
fields: {
|
|
2156
|
+
name: {
|
|
2157
|
+
helpText: "Machine name (snake_case)"
|
|
2158
|
+
},
|
|
2159
|
+
label: {
|
|
2160
|
+
helpText: "Display label for admins"
|
|
2161
|
+
},
|
|
2162
|
+
isProfile: {
|
|
2163
|
+
helpText: "Profile = base set assigned to users. Permission Set = additive grant."
|
|
2164
|
+
},
|
|
2165
|
+
systemPermissions: {
|
|
2166
|
+
helpText: "List of system capability keys"
|
|
2167
|
+
},
|
|
2168
|
+
objects: {
|
|
2169
|
+
helpText: '{ "account": { allowRead: true, allowEdit: true, ... } }'
|
|
2170
|
+
},
|
|
2171
|
+
fields: {
|
|
2172
|
+
helpText: '{ "account.amount": { readable: true, editable: false } }'
|
|
2173
|
+
},
|
|
2174
|
+
tabPermissions: {
|
|
2175
|
+
helpText: '{ "app_crm": "visible", "app_admin": "hidden" }'
|
|
2176
|
+
},
|
|
2177
|
+
rowLevelSecurity: {
|
|
2178
|
+
helpText: "Array of RLS policies (see rls.zod.ts)"
|
|
2179
|
+
},
|
|
2180
|
+
contextVariables: {
|
|
2181
|
+
helpText: "Custom variables referenced in RLS predicates"
|
|
2182
|
+
}
|
|
2183
|
+
}
|
|
2184
|
+
},
|
|
2185
|
+
role: {
|
|
2186
|
+
label: "\u89D2\u8272",
|
|
2187
|
+
sections: {
|
|
2188
|
+
role: {
|
|
2189
|
+
label: "\u89D2\u8272\u5B9A\u4E49",
|
|
2190
|
+
description: "\u89D2\u8272\u540D\u79F0\u4E0E\u7EE7\u627F\u5173\u7CFB"
|
|
2191
|
+
}
|
|
2192
|
+
},
|
|
2193
|
+
fields: {
|
|
2194
|
+
name: {
|
|
2195
|
+
helpText: "snake_case \u552F\u4E00\u6807\u8BC6\u7B26"
|
|
2196
|
+
},
|
|
2197
|
+
parent: {
|
|
2198
|
+
helpText: "\u7EE7\u627F\u7236\u89D2\u8272\u7684\u6743\u9650"
|
|
2199
|
+
}
|
|
2200
|
+
}
|
|
2201
|
+
},
|
|
2202
|
+
agent: {
|
|
2203
|
+
label: "AI \u4EE3\u7406",
|
|
2204
|
+
sections: {
|
|
2205
|
+
identity: {
|
|
2206
|
+
label: "\u8EAB\u4EFD\u4FE1\u606F",
|
|
2207
|
+
description: "\u7528\u6237\u5982\u4F55\u8BC6\u522B\u4E0E\u8C03\u7528\u8BE5\u4EE3\u7406"
|
|
2208
|
+
},
|
|
2209
|
+
ai_configuration: {
|
|
2210
|
+
label: "AI \u914D\u7F6E",
|
|
2211
|
+
description: "\u6A21\u578B\u9009\u62E9\u3001\u6307\u4EE4\u3001\u89C4\u5212\u4E0E\u8BB0\u5FC6"
|
|
2212
|
+
},
|
|
2213
|
+
capabilities: {
|
|
2214
|
+
label: "\u80FD\u529B\u914D\u7F6E",
|
|
2215
|
+
description: "\u4EE3\u7406\u53EF\u4F7F\u7528\u7684\u6280\u80FD\u3001\u5DE5\u5177\u4E0E\u77E5\u8BC6\u6765\u6E90"
|
|
2216
|
+
},
|
|
2217
|
+
access: {
|
|
2218
|
+
label: "\u8BBF\u95EE\u4E0E\u5B89\u5168",
|
|
2219
|
+
description: "\u8C01\u80FD\u4F7F\u7528\u6B64\u4EE3\u7406\u4EE5\u53CA\u9632\u62A4\u63AA\u65BD"
|
|
2220
|
+
}
|
|
2221
|
+
},
|
|
2222
|
+
fields: {
|
|
2223
|
+
name: {
|
|
2224
|
+
helpText: "\u552F\u4E00\u6807\u8BC6\u7B26\uFF08snake_case\uFF09"
|
|
2225
|
+
},
|
|
2226
|
+
label: {
|
|
2227
|
+
helpText: '\u663E\u793A\u540D\u79F0\uFF08\u5982\uFF1A"\u9500\u552E\u52A9\u624B"\uFF09'
|
|
2228
|
+
},
|
|
2229
|
+
role: {
|
|
2230
|
+
helpText: '\u4EE3\u7406\u4EBA\u8BBE\uFF08\u5982\uFF1A"\u5BA2\u6237\u652F\u6301\u4E13\u5BB6"\uFF09'
|
|
2231
|
+
},
|
|
2232
|
+
avatar: {
|
|
2233
|
+
helpText: "\u5934\u50CF\u56FE\u7247 URL"
|
|
2234
|
+
},
|
|
2235
|
+
active: {
|
|
2236
|
+
helpText: "\u542F\u7528\u6216\u7981\u7528\u6B64\u4EE3\u7406"
|
|
2237
|
+
},
|
|
2238
|
+
instructions: {
|
|
2239
|
+
helpText: "\u7CFB\u7EDF\u63D0\u793A\u8BCD\u2014\u2014\u544A\u8BC9\u4EE3\u7406\u5982\u4F55\u884C\u52A8\u4E0E\u53EF\u4EE5\u505A\u4EC0\u4E48"
|
|
2240
|
+
},
|
|
2241
|
+
model: {
|
|
2242
|
+
helpText: "AI \u6A21\u578B\u914D\u7F6E\uFF08\u63D0\u4F9B\u65B9\u3001\u6A21\u578B\u540D\u3001\u6E29\u5EA6\u7B49\uFF09"
|
|
2243
|
+
},
|
|
2244
|
+
planning: {
|
|
2245
|
+
helpText: "\u81EA\u4E3B\u63A8\u7406\u914D\u7F6E\uFF08\u7B56\u7565\u3001\u6700\u5927\u8FED\u4EE3\u3001\u662F\u5426\u91CD\u89C4\u5212\uFF09"
|
|
2246
|
+
},
|
|
2247
|
+
memory: {
|
|
2248
|
+
helpText: "\u8BB0\u5FC6\u7BA1\u7406\uFF08\u77ED\u671F\u3001\u957F\u671F\u3001\u53CD\u601D\uFF09"
|
|
2249
|
+
},
|
|
2250
|
+
lifecycle: {
|
|
2251
|
+
helpText: "\u5B9A\u4E49\u4F1A\u8BDD\u6D41\u7A0B\u7684\u72B6\u6001\u673A"
|
|
2252
|
+
},
|
|
2253
|
+
skills: {
|
|
2254
|
+
helpText: "\u6280\u80FD\u540D\u79F0\uFF08Agent\u2192Skill\u2192Tool \u67B6\u6784\uFF09"
|
|
2255
|
+
},
|
|
2256
|
+
tools: {
|
|
2257
|
+
helpText: "\u76F4\u63A5\u5F15\u7528\u7684\u5DE5\u5177\uFF08\u65E7\u7248\u6A21\u5F0F\uFF09"
|
|
2258
|
+
},
|
|
2259
|
+
knowledge: {
|
|
2260
|
+
helpText: "RAG \u77E5\u8BC6\u8BBF\u95EE\u914D\u7F6E"
|
|
2261
|
+
},
|
|
2262
|
+
visibility: {
|
|
2263
|
+
helpText: "\u8303\u56F4\uFF1A\u5168\u5C40\u3001\u7EC4\u7EC7\u6216\u79C1\u6709"
|
|
2264
|
+
},
|
|
2265
|
+
access: {
|
|
2266
|
+
helpText: "\u53EF\u4EE5\u4E0E\u6B64\u4EE3\u7406\u5BF9\u8BDD\u7684\u7528\u6237 ID \u6216\u89D2\u8272\u540D"
|
|
2267
|
+
},
|
|
2268
|
+
permissions: {
|
|
2269
|
+
helpText: "\u4F7F\u7528\u6B64\u4EE3\u7406\u6240\u9700\u7684\u6743\u9650"
|
|
2270
|
+
},
|
|
2271
|
+
tenantId: {
|
|
2272
|
+
helpText: "\u9650\u5B9A\u5230\u7279\u5B9A\u7EC4\u7EC7"
|
|
2273
|
+
},
|
|
2274
|
+
guardrails: {
|
|
2275
|
+
helpText: "\u5B89\u5168\u89C4\u5219\u4E0E\u5185\u5BB9\u7B56\u7565"
|
|
2276
|
+
}
|
|
2277
|
+
}
|
|
2278
|
+
},
|
|
2279
|
+
tool: {
|
|
2280
|
+
label: "\u5DE5\u5177",
|
|
2281
|
+
sections: {
|
|
2282
|
+
basics: {
|
|
2283
|
+
label: "\u57FA\u7840\u4FE1\u606F",
|
|
2284
|
+
description: "\u5DE5\u5177\u8EAB\u4EFD\u4E0E\u9762\u5411 AI \u7684\u8BF4\u660E"
|
|
2285
|
+
},
|
|
2286
|
+
schemas: {
|
|
2287
|
+
label: "\u53C2\u6570 / \u8FD4\u56DE\u7ED3\u6784",
|
|
2288
|
+
description: "\u5DE5\u5177\u63A5\u6536\u7684\u8F93\u5165\u4E0E\u8F93\u51FA\u5F62\u6001"
|
|
2289
|
+
},
|
|
2290
|
+
access_and_safety: {
|
|
2291
|
+
label: "\u8BBF\u95EE\u4E0E\u5B89\u5168",
|
|
2292
|
+
description: "\u6743\u9650\u4E0E\u786E\u8BA4\u8981\u6C42"
|
|
2293
|
+
}
|
|
2294
|
+
},
|
|
2295
|
+
fields: {
|
|
2296
|
+
name: {
|
|
2297
|
+
helpText: "\u552F\u4E00\u6807\u8BC6\u7B26\uFF08snake_case\uFF09"
|
|
2298
|
+
},
|
|
2299
|
+
label: {
|
|
2300
|
+
helpText: "Studio \u4E2D\u5C55\u793A\u7684\u540D\u79F0"
|
|
2301
|
+
},
|
|
2302
|
+
description: {
|
|
2303
|
+
helpText: "\u544A\u8BC9 AI \u4F55\u65F6\u4F7F\u7528\u6B64\u5DE5\u5177\u2014\u2014\u8BF7\u5C3D\u91CF\u5177\u4F53\uFF01"
|
|
2304
|
+
},
|
|
2305
|
+
category: {
|
|
2306
|
+
helpText: "\u5DE5\u5177\u7C7B\u522B\uFF08data\u3001action\u3001flow\u3001integration \u7B49\uFF09"
|
|
2307
|
+
},
|
|
2308
|
+
objectName: {
|
|
2309
|
+
helpText: "\u76F8\u5173\u5BF9\u8C61\uFF08\u82E5\u5DE5\u5177\u9488\u5BF9\u7279\u5B9A\u5BF9\u8C61\uFF09"
|
|
2310
|
+
},
|
|
2311
|
+
active: {
|
|
2312
|
+
helpText: "\u542F\u7528\u6216\u7981\u7528\u6B64\u5DE5\u5177"
|
|
2313
|
+
},
|
|
2314
|
+
builtIn: {
|
|
2315
|
+
helpText: "\u5E73\u53F0\u5185\u7F6E\u5DE5\u5177\uFF08\u533A\u522B\u4E8E\u7528\u6237\u81EA\u5B9A\u4E49\uFF09"
|
|
2316
|
+
},
|
|
2317
|
+
parameters: {
|
|
2318
|
+
helpText: '\u8F93\u5165\u53C2\u6570\u2014\u2014\u5B9A\u4E49\u5F62\u5982\uFF1A{name: {type: "string", description: "..."}}'
|
|
2319
|
+
},
|
|
2320
|
+
outputSchema: {
|
|
2321
|
+
helpText: "\u7528\u4E8E\u6821\u9A8C\u7684\u8F93\u51FA\u7ED3\u6784\uFF08\u53EF\u9009\uFF09"
|
|
2322
|
+
},
|
|
2323
|
+
requiresConfirmation: {
|
|
2324
|
+
helpText: "\u5728\u6267\u884C\u524D\u8BF7\u6C42\u7528\u6237\u786E\u8BA4\uFF08\u7528\u4E8E\u7834\u574F\u6027\u64CD\u4F5C\uFF09"
|
|
2325
|
+
},
|
|
2326
|
+
permissions: {
|
|
2327
|
+
helpText: "\u4F7F\u7528\u6B64\u5DE5\u5177\u6240\u9700\u7684\u6743\u9650"
|
|
2328
|
+
}
|
|
2329
|
+
}
|
|
2330
|
+
},
|
|
2331
|
+
skill: {
|
|
2332
|
+
label: "\u6280\u80FD",
|
|
2333
|
+
sections: {
|
|
2334
|
+
basics: {
|
|
2335
|
+
label: "\u57FA\u7840\u4FE1\u606F",
|
|
2336
|
+
description: "\u540D\u79F0\u4E0E\u63CF\u8FF0"
|
|
2337
|
+
},
|
|
2338
|
+
ai_instructions: {
|
|
2339
|
+
label: "AI \u6307\u4EE4",
|
|
2340
|
+
description: "AI \u4F55\u65F6\u4E0E\u5982\u4F55\u4F7F\u7528\u8BE5\u6280\u80FD"
|
|
2341
|
+
},
|
|
2342
|
+
triggers: {
|
|
2343
|
+
label: "\u89E6\u53D1\u6761\u4EF6",
|
|
2344
|
+
description: "\u89E6\u53D1\u5173\u952E\u8BCD\u4E0E\u4E0A\u4E0B\u6587"
|
|
2345
|
+
},
|
|
2346
|
+
access: {
|
|
2347
|
+
label: "\u8BBF\u95EE",
|
|
2348
|
+
description: "\u54EA\u4E9B\u667A\u80FD\u4F53\u53EF\u4F7F\u7528"
|
|
2349
|
+
}
|
|
2350
|
+
},
|
|
2351
|
+
fields: {
|
|
2352
|
+
name: {
|
|
2353
|
+
helpText: "\u552F\u4E00\u6807\u8BC6\u7B26\uFF08snake_case\uFF09"
|
|
2354
|
+
},
|
|
2355
|
+
label: {
|
|
2356
|
+
helpText: '\u663E\u793A\u540D\uFF08\u5982\uFF1A"\u6848\u4EF6\u7BA1\u7406"\uFF09'
|
|
2357
|
+
},
|
|
2358
|
+
description: {
|
|
2359
|
+
helpText: "AI \u7528\u6765\u5224\u65AD\u662F\u5426\u8C03\u7528\u7684\u7B80\u77ED\u8BF4\u660E"
|
|
2360
|
+
},
|
|
2361
|
+
active: {
|
|
2362
|
+
helpText: "\u542F\u7528\u6216\u7981\u7528\u6B64\u6280\u80FD"
|
|
2363
|
+
},
|
|
2364
|
+
instructions: {
|
|
2365
|
+
helpText: "AI \u8C03\u7528\u6B64\u6280\u80FD\u65F6\u9075\u5FAA\u7684\u8BE6\u7EC6\u6307\u4EE4"
|
|
2366
|
+
},
|
|
2367
|
+
tools: {
|
|
2368
|
+
helpText: "\u5DE5\u5177\u540D\uFF08\u652F\u6301\u901A\u914D\u7B26\uFF1Aaction_*\uFF09"
|
|
2369
|
+
},
|
|
2370
|
+
triggerPhrases: {
|
|
2371
|
+
helpText: "\u6FC0\u6D3B\u6B64\u6280\u80FD\u7684\u81EA\u7136\u8BED\u8A00\u77ED\u8BED"
|
|
2372
|
+
},
|
|
2373
|
+
triggerConditions: {
|
|
2374
|
+
helpText: '\u7A0B\u5E8F\u5316\u6761\u4EF6\uFF08\u5982 objectName == "case"\uFF09'
|
|
2375
|
+
},
|
|
2376
|
+
permissions: {
|
|
2377
|
+
helpText: "\u4F7F\u7528\u6B64\u6280\u80FD\u6240\u9700\u7684\u6743\u9650"
|
|
2378
|
+
}
|
|
2379
|
+
}
|
|
2380
|
+
}
|
|
2381
|
+
};
|
|
2382
|
+
|
|
2383
|
+
// src/apps/translations/ja-JP.metadata-forms.generated.ts
|
|
2384
|
+
var jaJPMetadataForms = {
|
|
2385
|
+
object: {
|
|
2386
|
+
label: "\u30AA\u30D6\u30B8\u30A7\u30AF\u30C8",
|
|
2387
|
+
sections: {
|
|
2388
|
+
basics: {
|
|
2389
|
+
label: "\u57FA\u672C",
|
|
2390
|
+
description: "ID\u3001\u30E9\u30D9\u30EB\u3001\u5206\u985E\u3002"
|
|
2391
|
+
},
|
|
2392
|
+
fields: {
|
|
2393
|
+
label: "\u30D5\u30A3\u30FC\u30EB\u30C9",
|
|
2394
|
+
description: "\u30C7\u30FC\u30BF\u30E2\u30C7\u30EB\u3092\u5B9A\u7FA9 \u2014 \u5404\u884C\u304C\u30C7\u30FC\u30BF\u30D9\u30FC\u30B9\u30C6\u30FC\u30D6\u30EB\u306E\u5217\u306B\u306A\u308B\u3002"
|
|
2395
|
+
},
|
|
2396
|
+
capabilities: {
|
|
2397
|
+
label: "\u6A5F\u80FD",
|
|
2398
|
+
description: "\u30B7\u30B9\u30C6\u30E0\u6A5F\u80FD\u3068 API \u516C\u958B\u3002"
|
|
2399
|
+
},
|
|
2400
|
+
advanced: {
|
|
2401
|
+
label: "\u8A73\u7D30",
|
|
2402
|
+
description: "\u30B9\u30C6\u30FC\u30C8\u30DE\u30B7\u30F3\u3001\u30A2\u30AF\u30B7\u30E7\u30F3\u3001\u30B9\u30C8\u30EC\u30FC\u30B8\u3002"
|
|
2403
|
+
}
|
|
2404
|
+
},
|
|
2405
|
+
fields: {
|
|
2406
|
+
name: {
|
|
2407
|
+
helpText: "snake_case \u306E\u4E00\u610F\u8B58\u5225\u5B50\uFF08\u4F5C\u6210\u5F8C\u306F\u5909\u66F4\u4E0D\u53EF\uFF09"
|
|
2408
|
+
},
|
|
2409
|
+
label: {
|
|
2410
|
+
helpText: '\u5358\u6570\u8868\u793A\u540D\uFF08\u4F8B: "Account"\uFF09'
|
|
2411
|
+
},
|
|
2412
|
+
pluralLabel: {
|
|
2413
|
+
helpText: '\u8907\u6570\u8868\u793A\u540D\uFF08\u4F8B: "Accounts"\uFF09'
|
|
2414
|
+
},
|
|
2415
|
+
icon: {
|
|
2416
|
+
helpText: 'Lucide \u30A2\u30A4\u30B3\u30F3\u540D\uFF08\u4F8B: "building", "users"\uFF09'
|
|
2417
|
+
},
|
|
2418
|
+
description: {
|
|
2419
|
+
helpText: "\u958B\u767A\u8005\u5411\u3051\u30C9\u30AD\u30E5\u30E1\u30F3\u30C8"
|
|
2420
|
+
},
|
|
2421
|
+
tags: {
|
|
2422
|
+
helpText: '\u5206\u985E\u30BF\u30B0\uFF08\u4F8B: "sales", "system"\uFF09'
|
|
2423
|
+
},
|
|
2424
|
+
active: {
|
|
2425
|
+
helpText: "\u30AA\u30D6\u30B8\u30A7\u30AF\u30C8\u304C\u6709\u52B9\u3067\u4F7F\u7528\u53EF\u80FD\u304B"
|
|
2426
|
+
},
|
|
2427
|
+
isSystem: {
|
|
2428
|
+
helpText: "\u30B7\u30B9\u30C6\u30E0\u30AA\u30D6\u30B8\u30A7\u30AF\u30C8\uFF08\u524A\u9664\u304B\u3089\u4FDD\u8B77\uFF09"
|
|
2429
|
+
},
|
|
2430
|
+
abstract: {
|
|
2431
|
+
helpText: "\u62BD\u8C61\u30D9\u30FC\u30B9\uFF08\u30A4\u30F3\u30B9\u30BF\u30F3\u30B9\u5316\u4E0D\u53EF\uFF09"
|
|
2432
|
+
},
|
|
2433
|
+
fields: {
|
|
2434
|
+
helpText: "\u3053\u306E\u30AA\u30D6\u30B8\u30A7\u30AF\u30C8\u304C\u4FDD\u5B58\u3059\u308B\u5217\u3092\u8FFD\u52A0"
|
|
2435
|
+
},
|
|
2436
|
+
"fields.name": {
|
|
2437
|
+
helpText: "snake_case \u8B58\u5225\u5B50"
|
|
2438
|
+
},
|
|
2439
|
+
"fields.label": {
|
|
2440
|
+
helpText: "\u8868\u793A\u30E9\u30D9\u30EB"
|
|
2441
|
+
},
|
|
2442
|
+
"fields.type": {
|
|
2443
|
+
helpText: "\u30D5\u30A3\u30FC\u30EB\u30C9\u578B"
|
|
2444
|
+
},
|
|
2445
|
+
"fields.reference": {
|
|
2446
|
+
helpText: "\u5BFE\u8C61\u30AA\u30D6\u30B8\u30A7\u30AF\u30C8\uFF08lookup/master_detail \u7528\uFF09"
|
|
2447
|
+
},
|
|
2448
|
+
capabilities: {
|
|
2449
|
+
helpText: "\u30B7\u30B9\u30C6\u30E0\u6A5F\u80FD\u306E\u6709\u52B9/\u7121\u52B9"
|
|
2450
|
+
},
|
|
2451
|
+
datasource: {
|
|
2452
|
+
helpText: '\u5BFE\u8C61\u30C7\u30FC\u30BF\u30BD\u30FC\u30B9 ID\uFF08\u65E2\u5B9A: "default"\uFF09'
|
|
2453
|
+
}
|
|
2454
|
+
}
|
|
2455
|
+
},
|
|
2456
|
+
field: {
|
|
2457
|
+
label: "\u30D5\u30A3\u30FC\u30EB\u30C9",
|
|
2458
|
+
sections: {
|
|
2459
|
+
basics: {
|
|
2460
|
+
label: "\u57FA\u672C",
|
|
2461
|
+
description: "\u30D5\u30A3\u30FC\u30EB\u30C9\u306E\u57FA\u672C ID \u3068\u5236\u7D04\u3002"
|
|
2462
|
+
},
|
|
2463
|
+
configuration: {
|
|
2464
|
+
label: "\u8A2D\u5B9A",
|
|
2465
|
+
description: "\u30D5\u30A3\u30FC\u30EB\u30C9\u578B\u5225\u306E\u8A2D\u5B9A\uFF08\u8868\u793A\u30D6\u30ED\u30C3\u30AF\u306F\u9078\u629E\u3057\u305F\u578B\u306B\u3088\u308B\uFF09\u3002"
|
|
2466
|
+
},
|
|
2467
|
+
formula: {
|
|
2468
|
+
label: "\u6570\u5F0F\u3068\u8A08\u7B97",
|
|
2469
|
+
description: "\u8A08\u7B97\u5024\u3068\u30ED\u30FC\u30EB\u30A2\u30C3\u30D7\u96C6\u8A08\u3002"
|
|
2470
|
+
},
|
|
2471
|
+
advanced: {
|
|
2472
|
+
label: "\u8A73\u7D30",
|
|
2473
|
+
description: "\u30C7\u30FC\u30BF\u30D9\u30FC\u30B9\u3001UI\u3001\u76E3\u67FB\u3001\u30BB\u30AD\u30E5\u30EA\u30C6\u30A3\u8A2D\u5B9A\u3002"
|
|
2474
|
+
}
|
|
2475
|
+
},
|
|
2476
|
+
fields: {
|
|
2477
|
+
name: {
|
|
2478
|
+
helpText: "\u4E00\u610F\u8B58\u5225\u5B50\uFF08snake_case\u3001\u4F5C\u6210\u5F8C\u306F\u5909\u66F4\u4E0D\u53EF\uFF09"
|
|
2479
|
+
},
|
|
2480
|
+
label: {
|
|
2481
|
+
helpText: "\u30E6\u30FC\u30B6\u30FC\u5411\u3051\u8868\u793A\u540D"
|
|
2482
|
+
},
|
|
2483
|
+
type: {
|
|
2484
|
+
helpText: "\u3053\u306E\u30D5\u30A3\u30FC\u30EB\u30C9\u306E\u30C7\u30FC\u30BF\u578B"
|
|
2485
|
+
},
|
|
2486
|
+
group: {
|
|
2487
|
+
helpText: "\u30D5\u30A9\u30FC\u30E0\u30EC\u30A4\u30A2\u30A6\u30C8\u306E\u30B0\u30EB\u30FC\u30D7\u540D"
|
|
2488
|
+
},
|
|
2489
|
+
description: {
|
|
2490
|
+
helpText: "\u30E6\u30FC\u30B6\u30FC\u306B\u8868\u793A\u3059\u308B\u30D8\u30EB\u30D7\u30C6\u30AD\u30B9\u30C8"
|
|
2491
|
+
},
|
|
2492
|
+
required: {
|
|
2493
|
+
helpText: "\u30E6\u30FC\u30B6\u30FC\u306B\u3088\u308B\u5024\u5165\u529B\u304C\u5FC5\u9808"
|
|
2494
|
+
},
|
|
2495
|
+
unique: {
|
|
2496
|
+
helpText: "\u8907\u6570\u30EC\u30B3\u30FC\u30C9\u3067\u540C\u3058\u5024\u3092\u4E0D\u53EF"
|
|
2497
|
+
},
|
|
2498
|
+
multiple: {
|
|
2499
|
+
helpText: "\u8907\u6570\u5024\u3092\u8A31\u53EF\uFF08select/lookup \u7528\uFF09"
|
|
2500
|
+
},
|
|
2501
|
+
defaultValue: {
|
|
2502
|
+
helpText: "\u65B0\u898F\u30EC\u30B3\u30FC\u30C9\u306E\u65E2\u5B9A\u5024"
|
|
2503
|
+
},
|
|
2504
|
+
minLength: {
|
|
2505
|
+
helpText: "\u6700\u5C0F\u6587\u5B57\u6570"
|
|
2506
|
+
},
|
|
2507
|
+
maxLength: {
|
|
2508
|
+
helpText: "\u6700\u5927\u6587\u5B57\u6570"
|
|
2509
|
+
},
|
|
2510
|
+
min: {
|
|
2511
|
+
helpText: "\u6700\u5C0F\u5024"
|
|
2512
|
+
},
|
|
2513
|
+
max: {
|
|
2514
|
+
helpText: "\u6700\u5927\u5024"
|
|
2515
|
+
},
|
|
2516
|
+
precision: {
|
|
2517
|
+
helpText: "\u5C0F\u6570\u6841\u6570\uFF08\u4F8B: $10.50 \u306A\u3089 2\uFF09"
|
|
2518
|
+
},
|
|
2519
|
+
scale: {
|
|
2520
|
+
helpText: "\u5C0F\u6570\u90E8\u306E\u6841\u6570"
|
|
2521
|
+
},
|
|
2522
|
+
options: {
|
|
2523
|
+
helpText: "\u4F7F\u7528\u53EF\u80FD\u306A\u9078\u629E\u80A2\uFF08label/value \u30DA\u30A2\uFF09"
|
|
2524
|
+
},
|
|
2525
|
+
reference: {
|
|
2526
|
+
helpText: "\u53C2\u7167\u5148\u30AA\u30D6\u30B8\u30A7\u30AF\u30C8\u540D"
|
|
2527
|
+
},
|
|
2528
|
+
referenceFilters: {
|
|
2529
|
+
helpText: '\u30D5\u30A3\u30EB\u30BF\u30FC\u5F0F\uFF08\u4F8B: "active = true"\uFF09'
|
|
2530
|
+
},
|
|
2531
|
+
deleteBehavior: {
|
|
2532
|
+
helpText: "\u53C2\u7167\u5148\u30EC\u30B3\u30FC\u30C9\u524A\u9664\u6642\u306E\u52D5\u4F5C"
|
|
2533
|
+
},
|
|
2534
|
+
expression: {
|
|
2535
|
+
helpText: "\u3053\u306E\u30D5\u30A3\u30FC\u30EB\u30C9\u3092\u8A08\u7B97\u3059\u308B CEL \u5F0F\uFF08\u8AAD\u307F\u53D6\u308A\u5C02\u7528\u5316\uFF09"
|
|
2536
|
+
},
|
|
2537
|
+
summaryOperations: {
|
|
2538
|
+
helpText: "\u30ED\u30FC\u30EB\u30A2\u30C3\u30D7\u96C6\u8A08\u8A2D\u5B9A\uFF08\u89AA\u5B50\u95A2\u4FC2\u7528\uFF09"
|
|
2539
|
+
},
|
|
2540
|
+
cached: {
|
|
2541
|
+
helpText: "\u8A08\u7B97\u30D5\u30A3\u30FC\u30EB\u30C9\u306E\u30AD\u30E3\u30C3\u30B7\u30E5\u8A2D\u5B9A"
|
|
2542
|
+
},
|
|
2543
|
+
columnName: {
|
|
2544
|
+
helpText: "\u30C7\u30FC\u30BF\u30D9\u30FC\u30B9\u4E0A\u306E\u7269\u7406\u5217\u540D\uFF08\u65E2\u5B9A\u306F\u30D5\u30A3\u30FC\u30EB\u30C9\u540D\uFF09"
|
|
2545
|
+
},
|
|
2546
|
+
index: {
|
|
2547
|
+
helpText: "\u9AD8\u901F\u30AF\u30A8\u30EA\u7528\u306E\u30C7\u30FC\u30BF\u30D9\u30FC\u30B9\u30A4\u30F3\u30C7\u30C3\u30AF\u30B9\u3092\u4F5C\u6210"
|
|
2548
|
+
},
|
|
2549
|
+
externalId: {
|
|
2550
|
+
helpText: "upsert \u64CD\u4F5C\u7528\u306E\u5916\u90E8 ID \u3068\u3057\u3066\u30DE\u30FC\u30AF"
|
|
2551
|
+
},
|
|
2552
|
+
readonly: {
|
|
2553
|
+
helpText: "\u30D5\u30A9\u30FC\u30E0\u3067\u30D5\u30A3\u30FC\u30EB\u30C9\u3092\u8AAD\u307F\u53D6\u308A\u5C02\u7528\u306B\u3059\u308B"
|
|
2554
|
+
},
|
|
2555
|
+
hidden: {
|
|
2556
|
+
helpText: "\u65E2\u5B9A UI \u30D3\u30E5\u30FC\u304B\u3089\u30D5\u30A3\u30FC\u30EB\u30C9\u3092\u975E\u8868\u793A"
|
|
2557
|
+
},
|
|
2558
|
+
searchable: {
|
|
2559
|
+
helpText: "\u30B0\u30ED\u30FC\u30D0\u30EB\u691C\u7D22\u7D50\u679C\u306B\u542B\u3081\u308B"
|
|
2560
|
+
},
|
|
2561
|
+
sortable: {
|
|
2562
|
+
helpText: "\u3053\u306E\u30D5\u30A3\u30FC\u30EB\u30C9\u3067\u30EA\u30B9\u30C8\u306E\u4E26\u3079\u66FF\u3048\u3092\u8A31\u53EF"
|
|
2563
|
+
},
|
|
2564
|
+
auditTrail: {
|
|
2565
|
+
helpText: "\u30E6\u30FC\u30B6\u30FC\u3068\u30BF\u30A4\u30E0\u30B9\u30BF\u30F3\u30D7\u4ED8\u304D\u3067\u8A73\u7D30\u5909\u66F4\u3092\u8FFD\u8DE1"
|
|
2566
|
+
},
|
|
2567
|
+
trackFeedHistory: {
|
|
2568
|
+
helpText: "\u30A2\u30AF\u30C6\u30A3\u30D3\u30C6\u30A3\u30D5\u30A3\u30FC\u30C9\u306B\u5909\u66F4\u3092\u8868\u793A"
|
|
2569
|
+
},
|
|
2570
|
+
encryptionConfig: {
|
|
2571
|
+
helpText: "\u30D5\u30A3\u30FC\u30EB\u30C9\u30EC\u30D9\u30EB\u6697\u53F7\u5316\uFF08GDPR/HIPAA/PCI-DSS\uFF09"
|
|
2572
|
+
},
|
|
2573
|
+
maskingRule: {
|
|
2574
|
+
helpText: "PII \u4FDD\u8B77\u7528\u30C7\u30FC\u30BF\u30DE\u30B9\u30AD\u30F3\u30B0\u30EB\u30FC\u30EB"
|
|
2575
|
+
}
|
|
2576
|
+
}
|
|
2577
|
+
},
|
|
2578
|
+
trigger: {
|
|
2579
|
+
label: "\u30C8\u30EA\u30AC\u30FC"
|
|
2580
|
+
},
|
|
2581
|
+
validation: {
|
|
2582
|
+
label: "\u691C\u8A3C\u30EB\u30FC\u30EB"
|
|
2583
|
+
},
|
|
2584
|
+
hook: {
|
|
2585
|
+
label: "\u30D5\u30C3\u30AF",
|
|
2586
|
+
sections: {
|
|
2587
|
+
identity: {
|
|
2588
|
+
label: "ID",
|
|
2589
|
+
description: "\u3053\u306E\u30D5\u30C3\u30AF\u306E\u5185\u5BB9\u3068\u767A\u706B\u30BF\u30A4\u30DF\u30F3\u30B0\u3002"
|
|
2590
|
+
},
|
|
2591
|
+
body: {
|
|
2592
|
+
label: "\u672C\u6587",
|
|
2593
|
+
description: "\u30D5\u30C3\u30AF\u767A\u706B\u6642\u306B\u5B9F\u884C\u3055\u308C\u308B\u30A4\u30F3\u30E9\u30A4\u30F3\u5F0F\u307E\u305F\u306F\u30B5\u30F3\u30C9\u30DC\u30C3\u30AF\u30B9\u5316 JavaScript\u3002"
|
|
2594
|
+
},
|
|
2595
|
+
legacy_handler: {
|
|
2596
|
+
label: "\u30EC\u30AC\u30B7\u30FC\u30CF\u30F3\u30C9\u30E9\u30FC",
|
|
2597
|
+
description: "\u95A2\u6570\u540D\u53C2\u7167 \u2014 body \u3092\u63A8\u5968\u3001\u975E\u63A8\u5968\u3002"
|
|
2598
|
+
},
|
|
2599
|
+
execution: {
|
|
2600
|
+
label: "\u5B9F\u884C"
|
|
2601
|
+
}
|
|
2602
|
+
},
|
|
2603
|
+
fields: {
|
|
2604
|
+
name: {
|
|
2605
|
+
helpText: "snake_case \u8B58\u5225\u5B50\uFF08\u4F5C\u6210\u5F8C\u306F\u5909\u66F4\u4E0D\u53EF\uFF09"
|
|
2606
|
+
},
|
|
2607
|
+
object: {
|
|
2608
|
+
helpText: '\u5BFE\u8C61\u30AA\u30D6\u30B8\u30A7\u30AF\u30C8\u540D\uFF08\u30B0\u30ED\u30FC\u30D0\u30EB\u306F "*"\uFF09'
|
|
2609
|
+
},
|
|
2610
|
+
events: {
|
|
2611
|
+
helpText: "\u30E9\u30A4\u30D5\u30B5\u30A4\u30AF\u30EB\u30A4\u30D9\u30F3\u30C8\uFF08\u4F8B: beforeInsert, afterUpdate\uFF09"
|
|
2612
|
+
},
|
|
2613
|
+
priority: {
|
|
2614
|
+
helpText: "\u5C0F\u3055\u3044\u6570\u5024\u307B\u3069\u5148\u306B\u5B9F\u884C"
|
|
2615
|
+
},
|
|
2616
|
+
body: {
|
|
2617
|
+
helpText: "L1 \u5F0F\u307E\u305F\u306F L2 \u30B5\u30F3\u30C9\u30DC\u30C3\u30AF\u30B9 JS body"
|
|
2618
|
+
},
|
|
2619
|
+
"body.language": {
|
|
2620
|
+
helpText: "expression = \u7D14\u7C8B\u306A\u6570\u5F0F; js = \u30B5\u30F3\u30C9\u30DC\u30C3\u30AF\u30B9\u5316 JavaScript"
|
|
2621
|
+
},
|
|
2622
|
+
"body.source": {
|
|
2623
|
+
helpText: "\u95A2\u6570 body \u30BD\u30FC\u30B9 \u2014 \u30C8\u30C3\u30D7\u30EC\u30D9\u30EB import \u4E0D\u53EF"
|
|
2624
|
+
},
|
|
2625
|
+
"body.capabilities": {
|
|
2626
|
+
helpText: "\u8A31\u53EF\u3059\u308B ctx API\uFF08api.read, api.write, crypto.uuid, log, \u2026\uFF09"
|
|
2627
|
+
},
|
|
2628
|
+
"body.timeoutMs": {
|
|
2629
|
+
helpText: "\u547C\u3073\u51FA\u3057\u3054\u3068\u306E\u30BF\u30A4\u30E0\u30A2\u30A6\u30C8\uFF08ms\uFF09"
|
|
2630
|
+
},
|
|
2631
|
+
handler: {
|
|
2632
|
+
helpText: "\u30CF\u30F3\u30C9\u30E9\u30FC\u95A2\u6570\u540D\uFF08\u975E\u63A8\u5968 \u2014 `body` \u3092\u63A8\u5968\uFF09"
|
|
2633
|
+
},
|
|
2634
|
+
async: {
|
|
2635
|
+
helpText: "\u30D0\u30C3\u30AF\u30B0\u30E9\u30A6\u30F3\u30C9\u3067\u5B9F\u884C\u3057\u3001\u30C8\u30E9\u30F3\u30B6\u30AF\u30B7\u30E7\u30F3\u3092\u30D6\u30ED\u30C3\u30AF\u3057\u306A\u3044"
|
|
2636
|
+
},
|
|
2637
|
+
condition: {
|
|
2638
|
+
helpText: "\u4EFB\u610F\u306E\u6570\u5F0F \u2014 false \u8A55\u4FA1\u6642\u306F\u30D5\u30C3\u30AF\u3092\u30B9\u30AD\u30C3\u30D7"
|
|
2639
|
+
}
|
|
2640
|
+
}
|
|
2641
|
+
},
|
|
2642
|
+
view: {
|
|
2643
|
+
label: "\u30D3\u30E5\u30FC",
|
|
2644
|
+
sections: {
|
|
2645
|
+
basics: {
|
|
2646
|
+
label: "\u57FA\u672C",
|
|
2647
|
+
description: "ID \u3068\u4E3B\u8981\u30B5\u30FC\u30D5\u30A7\u30B9\u3002"
|
|
2648
|
+
},
|
|
2649
|
+
columns_filters: {
|
|
2650
|
+
label: "\u5217\u3068\u30D5\u30A3\u30EB\u30BF\u30FC",
|
|
2651
|
+
description: "\u8868\u793A\u3059\u308B\u884C\u3068\u30E6\u30FC\u30B6\u30FC\u306E\u30D5\u30A3\u30EB\u30BF\u30FC\u65B9\u6CD5\u3002"
|
|
2652
|
+
},
|
|
2653
|
+
table_options: {
|
|
2654
|
+
label: "\u30C6\u30FC\u30D6\u30EB\u30AA\u30D7\u30B7\u30E7\u30F3",
|
|
2655
|
+
description: "\u30B0\u30EA\u30C3\u30C9\u5C02\u7528\u306E\u8868\u793A\u30AA\u30D7\u30B7\u30E7\u30F3\u3002"
|
|
2656
|
+
},
|
|
2657
|
+
kanban: {
|
|
2658
|
+
label: "\u30AB\u30F3\u30D0\u30F3",
|
|
2659
|
+
description: "\u30AB\u30F3\u30D0\u30F3\u5C02\u7528\u306E\u30DC\u30FC\u30C9\u8A2D\u5B9A\u3002"
|
|
2660
|
+
},
|
|
2661
|
+
calendar: {
|
|
2662
|
+
label: "\u30AB\u30EC\u30F3\u30C0\u30FC",
|
|
2663
|
+
description: "\u30AB\u30EC\u30F3\u30C0\u30FC\u5C02\u7528\u8A2D\u5B9A\u3002"
|
|
2664
|
+
},
|
|
2665
|
+
gantt: {
|
|
2666
|
+
label: "\u30AC\u30F3\u30C8",
|
|
2667
|
+
description: "\u30AC\u30F3\u30C8\u5C02\u7528\u8A2D\u5B9A\u3002"
|
|
2668
|
+
},
|
|
2669
|
+
gallery: {
|
|
2670
|
+
label: "\u30AE\u30E3\u30E9\u30EA\u30FC",
|
|
2671
|
+
description: "\u30AE\u30E3\u30E9\u30EA\u30FC\u5C02\u7528\u8A2D\u5B9A\u3002"
|
|
2672
|
+
},
|
|
2673
|
+
timeline: {
|
|
2674
|
+
label: "\u30BF\u30A4\u30E0\u30E9\u30A4\u30F3",
|
|
2675
|
+
description: "\u30BF\u30A4\u30E0\u30E9\u30A4\u30F3\u5C02\u7528\u8A2D\u5B9A\u3002"
|
|
2676
|
+
},
|
|
2677
|
+
chart: {
|
|
2678
|
+
label: "\u30C1\u30E3\u30FC\u30C8",
|
|
2679
|
+
description: "\u30C1\u30E3\u30FC\u30C8\u5C02\u7528\u8A2D\u5B9A\u3002"
|
|
2680
|
+
},
|
|
2681
|
+
navigation_sharing: {
|
|
2682
|
+
label: "\u30CA\u30D3\u30B2\u30FC\u30B7\u30E7\u30F3\u3068\u5171\u6709",
|
|
2683
|
+
description: "\u3053\u306E\u30D3\u30E5\u30FC\u306E\u8868\u793A\u5834\u6240\u3068\u95B2\u89A7\u53EF\u80FD\u8005\u3002"
|
|
2684
|
+
}
|
|
2685
|
+
},
|
|
2686
|
+
fields: {
|
|
2687
|
+
name: {
|
|
2688
|
+
helpText: "snake_case\u3001environment \u3054\u3068\u306B\u4E00\u610F"
|
|
2689
|
+
},
|
|
2690
|
+
type: {
|
|
2691
|
+
helpText: "\u4E3B\u8981\u30D3\u30E5\u30FC\u30B5\u30FC\u30D5\u30A7\u30B9"
|
|
2692
|
+
},
|
|
2693
|
+
data: {
|
|
2694
|
+
helpText: '\u30C7\u30FC\u30BF\u30BD\u30FC\u30B9 \u2014 \u4F8B: {"provider":"object","object":"task"}'
|
|
2695
|
+
},
|
|
2696
|
+
columns: {
|
|
2697
|
+
helpText: "\u8868\u793A\u3059\u308B\u5217\uFF08\u9078\u629E\u30AA\u30D6\u30B8\u30A7\u30AF\u30C8\u306E\u30D5\u30A3\u30FC\u30EB\u30C9\u540D\uFF09"
|
|
2698
|
+
},
|
|
2699
|
+
filter: {
|
|
2700
|
+
helpText: "\u30D5\u30A3\u30EB\u30BF\u30FC\u6761\u4EF6"
|
|
2701
|
+
},
|
|
2702
|
+
sort: {
|
|
2703
|
+
helpText: "\u65E2\u5B9A\u306E\u4E26\u3073\u9806"
|
|
2704
|
+
},
|
|
2705
|
+
searchableFields: {
|
|
2706
|
+
helpText: "\u30AF\u30A4\u30C3\u30AF\u691C\u7D22\u3067\u4F7F\u7528\u53EF\u80FD\u306A\u30D5\u30A3\u30FC\u30EB\u30C9\u540D"
|
|
2707
|
+
},
|
|
2708
|
+
filterableFields: {
|
|
2709
|
+
helpText: "\u30D5\u30A3\u30EB\u30BF\u30FC\u3067\u4F7F\u7528\u53EF\u80FD\u306A\u30D5\u30A3\u30FC\u30EB\u30C9\u540D"
|
|
2710
|
+
}
|
|
2711
|
+
}
|
|
2712
|
+
},
|
|
2713
|
+
page: {
|
|
2714
|
+
label: "\u30DA\u30FC\u30B8",
|
|
2715
|
+
sections: {
|
|
2716
|
+
basics: {
|
|
2717
|
+
label: "\u57FA\u672C",
|
|
2718
|
+
description: "\u30DA\u30FC\u30B8 ID \u3068\u30C6\u30F3\u30D7\u30EC\u30FC\u30C8\u3002"
|
|
2719
|
+
},
|
|
2720
|
+
data_context: {
|
|
2721
|
+
label: "\u30C7\u30FC\u30BF\u30B3\u30F3\u30C6\u30AD\u30B9\u30C8",
|
|
2722
|
+
description: "\u30EC\u30B3\u30FC\u30C9\u30D0\u30A4\u30F3\u30C9\u3068\u30DA\u30FC\u30B8\u30ED\u30FC\u30AB\u30EB\u72B6\u614B\u3002"
|
|
2723
|
+
},
|
|
2724
|
+
layout: {
|
|
2725
|
+
label: "\u30EC\u30A4\u30A2\u30A6\u30C8",
|
|
2726
|
+
description: "\u30DA\u30FC\u30B8\u9818\u57DF\u3068\u305D\u3053\u306B\u914D\u7F6E\u3059\u308B\u30B3\u30F3\u30DD\u30FC\u30CD\u30F3\u30C8\u3002"
|
|
2727
|
+
},
|
|
2728
|
+
advanced: {
|
|
2729
|
+
label: "\u8A73\u7D30",
|
|
2730
|
+
description: "\u6709\u52B9\u5316\u3001\u5BFE\u8C61\u30E6\u30FC\u30B6\u30FC\u3001\u30A2\u30AF\u30BB\u30B7\u30D3\u30EA\u30C6\u30A3\u3002"
|
|
2731
|
+
}
|
|
2732
|
+
},
|
|
2733
|
+
fields: {
|
|
2734
|
+
name: {
|
|
2735
|
+
helpText: "\u4E00\u610F\u8B58\u5225\u5B50\uFF08snake_case\uFF09"
|
|
2736
|
+
},
|
|
2737
|
+
label: {
|
|
2738
|
+
helpText: "\u30E6\u30FC\u30B6\u30FC\u306B\u8868\u793A\u3059\u308B\u30DA\u30FC\u30B8\u30BF\u30A4\u30C8\u30EB"
|
|
2739
|
+
},
|
|
2740
|
+
icon: {
|
|
2741
|
+
helpText: "\u30CA\u30D3\u30B2\u30FC\u30B7\u30E7\u30F3\u30E1\u30CB\u30E5\u30FC\u306E\u30A2\u30A4\u30B3\u30F3"
|
|
2742
|
+
},
|
|
2743
|
+
type: {
|
|
2744
|
+
helpText: "\u30DA\u30FC\u30B8\u7A2E\u5225\uFF08record, home, app, dashboard \u306A\u3069\uFF09"
|
|
2745
|
+
},
|
|
2746
|
+
template: {
|
|
2747
|
+
helpText: '\u30EC\u30A4\u30A2\u30A6\u30C8\u30C6\u30F3\u30D7\u30EC\u30FC\u30C8\uFF08\u4F8B: "header-sidebar-main"\uFF09'
|
|
2748
|
+
},
|
|
2749
|
+
description: {
|
|
2750
|
+
helpText: "\u30CA\u30D3\u30B2\u30FC\u30B7\u30E7\u30F3\u7528\u30DA\u30FC\u30B8\u8AAC\u660E"
|
|
2751
|
+
},
|
|
2752
|
+
object: {
|
|
2753
|
+
helpText: "\u30D0\u30A4\u30F3\u30C9\u5148\u30AA\u30D6\u30B8\u30A7\u30AF\u30C8\uFF08Record \u30DA\u30FC\u30B8\u7528\uFF09"
|
|
2754
|
+
},
|
|
2755
|
+
variables: {
|
|
2756
|
+
helpText: "\u30DA\u30FC\u30B8\u30ED\u30FC\u30AB\u30EB\u72B6\u614B\u5909\u6570"
|
|
2757
|
+
},
|
|
2758
|
+
regions: {
|
|
2759
|
+
helpText: "\u30B3\u30F3\u30DD\u30FC\u30CD\u30F3\u30C8\u3092\u542B\u3080\u30EC\u30A4\u30A2\u30A6\u30C8\u9818\u57DF\uFF08header, main, sidebar, footer\uFF09"
|
|
2760
|
+
},
|
|
2761
|
+
isDefault: {
|
|
2762
|
+
helpText: "\u3053\u306E\u30DA\u30FC\u30B8\u7A2E\u5225\u306E\u65E2\u5B9A\u30DA\u30FC\u30B8\u306B\u8A2D\u5B9A"
|
|
2763
|
+
},
|
|
2764
|
+
kind: {
|
|
2765
|
+
helpText: "\u30DA\u30FC\u30B8\u4E0A\u66F8\u304D\u30E2\u30FC\u30C9: full \u307E\u305F\u306F slotted\uFF08record \u30DA\u30FC\u30B8\u7528\uFF09"
|
|
2766
|
+
},
|
|
2767
|
+
assignedProfiles: {
|
|
2768
|
+
helpText: "\u3053\u306E\u30DA\u30FC\u30B8\u306B\u30A2\u30AF\u30BB\u30B9\u53EF\u80FD\u306A\u30D7\u30ED\u30D5\u30A1\u30A4\u30EB"
|
|
2769
|
+
},
|
|
2770
|
+
aria: {
|
|
2771
|
+
helpText: "\u30A2\u30AF\u30BB\u30B7\u30D3\u30EA\u30C6\u30A3\u5C5E\u6027\uFF08ARIA \u30E9\u30D9\u30EB\u3001\u30ED\u30FC\u30EB\uFF09"
|
|
2772
|
+
}
|
|
2773
|
+
}
|
|
2774
|
+
},
|
|
2775
|
+
dashboard: {
|
|
2776
|
+
label: "\u30C0\u30C3\u30B7\u30E5\u30DC\u30FC\u30C9",
|
|
2777
|
+
sections: {
|
|
2778
|
+
basics: {
|
|
2779
|
+
label: "\u57FA\u672C",
|
|
2780
|
+
description: "\u30C0\u30C3\u30B7\u30E5\u30DC\u30FC\u30C9 ID \u3068\u8AAC\u660E\u3002"
|
|
2781
|
+
},
|
|
2782
|
+
layout: {
|
|
2783
|
+
label: "\u30EC\u30A4\u30A2\u30A6\u30C8",
|
|
2784
|
+
description: "\u30B0\u30EA\u30C3\u30C9\u30B5\u30A4\u30BA\u3068\u66F4\u65B0\u9593\u9694\u3002"
|
|
2785
|
+
},
|
|
2786
|
+
widgets: {
|
|
2787
|
+
label: "\u30A6\u30A3\u30B8\u30A7\u30C3\u30C8",
|
|
2788
|
+
description: "\u30B0\u30EA\u30C3\u30C9\u306B\u914D\u7F6E\u3059\u308B\u30AB\u30FC\u30C9\u3068\u30C1\u30E3\u30FC\u30C8\u3002"
|
|
2789
|
+
},
|
|
2790
|
+
filters: {
|
|
2791
|
+
label: "\u30D5\u30A3\u30EB\u30BF\u30FC",
|
|
2792
|
+
description: "\u30A6\u30A3\u30B8\u30A7\u30C3\u30C8\u5168\u4F53\u306B\u9069\u7528\u3059\u308B\u65E2\u5B9A\u304A\u3088\u3073\u30B0\u30ED\u30FC\u30D0\u30EB\u30D5\u30A3\u30EB\u30BF\u30FC\u3002"
|
|
2793
|
+
},
|
|
2794
|
+
advanced: {
|
|
2795
|
+
label: "\u8A73\u7D30",
|
|
2796
|
+
description: "\u30A2\u30AF\u30BB\u30B7\u30D3\u30EA\u30C6\u30A3\u3068\u30D1\u30D5\u30A9\u30FC\u30DE\u30F3\u30B9\u8ABF\u6574\u3002"
|
|
2797
|
+
}
|
|
2798
|
+
},
|
|
2799
|
+
fields: {
|
|
2800
|
+
name: {
|
|
2801
|
+
helpText: "snake_case \u306E\u4E00\u610F\u8B58\u5225\u5B50"
|
|
2802
|
+
},
|
|
2803
|
+
label: {
|
|
2804
|
+
helpText: "\u8868\u793A\u540D"
|
|
2805
|
+
},
|
|
2806
|
+
columns: {
|
|
2807
|
+
helpText: "\u30B0\u30EA\u30C3\u30C9\u5217\uFF08\u65E2\u5B9A 12\uFF09"
|
|
2808
|
+
},
|
|
2809
|
+
gap: {
|
|
2810
|
+
helpText: "\u30B0\u30EA\u30C3\u30C9\u9593\u9694\uFF08Tailwind \u5358\u4F4D\uFF09"
|
|
2811
|
+
},
|
|
2812
|
+
refreshInterval: {
|
|
2813
|
+
helpText: "\u81EA\u52D5\u66F4\u65B0\uFF08\u79D2\uFF09"
|
|
2814
|
+
},
|
|
2815
|
+
header: {
|
|
2816
|
+
helpText: "\u30C0\u30C3\u30B7\u30E5\u30DC\u30FC\u30C9\u30D8\u30C3\u30C0\u30FC\u8A2D\u5B9A\uFF08title, subtitle, actions\uFF09"
|
|
2817
|
+
},
|
|
2818
|
+
widgets: {
|
|
2819
|
+
helpText: "\u4F4D\u7F6E\u3068\u30B5\u30A4\u30BA\u3092\u6301\u3064\u30C0\u30C3\u30B7\u30E5\u30DC\u30FC\u30C9\u30A6\u30A3\u30B8\u30A7\u30C3\u30C8"
|
|
2820
|
+
},
|
|
2821
|
+
dateRange: {
|
|
2822
|
+
helpText: "\u65E2\u5B9A\u306E\u65E5\u4ED8\u7BC4\u56F2\u30BB\u30EC\u30AF\u30BF\u30FC"
|
|
2823
|
+
},
|
|
2824
|
+
globalFilters: {
|
|
2825
|
+
helpText: "\u5168\u30A6\u30A3\u30B8\u30A7\u30C3\u30C8\u306B\u9069\u7528\u3059\u308B\u30D5\u30A3\u30EB\u30BF\u30FC"
|
|
2826
|
+
},
|
|
2827
|
+
aria: {
|
|
2828
|
+
helpText: "\u30A2\u30AF\u30BB\u30B7\u30D3\u30EA\u30C6\u30A3\u30E9\u30D9\u30EB"
|
|
2829
|
+
},
|
|
2830
|
+
performance: {
|
|
2831
|
+
helpText: "\u30AD\u30E3\u30C3\u30B7\u30E5\u3068\u6700\u9069\u5316\u8A2D\u5B9A"
|
|
2832
|
+
}
|
|
2833
|
+
}
|
|
2834
|
+
},
|
|
2835
|
+
app: {
|
|
2836
|
+
label: "\u30A2\u30D7\u30EA\u30B1\u30FC\u30B7\u30E7\u30F3",
|
|
2837
|
+
sections: {
|
|
2838
|
+
basics: {
|
|
2839
|
+
label: "\u57FA\u672C",
|
|
2840
|
+
description: "\u30A2\u30D7\u30EA ID \u3068\u6709\u52B9\u5316\u3002"
|
|
2841
|
+
},
|
|
2842
|
+
navigation: {
|
|
2843
|
+
label: "\u30CA\u30D3\u30B2\u30FC\u30B7\u30E7\u30F3",
|
|
2844
|
+
description: "\u30B5\u30A4\u30C9\u30D0\u30FC\u9805\u76EE\u3068\u30A8\u30EA\u30A2\u30B0\u30EB\u30FC\u30D7\u5316\u3002"
|
|
2845
|
+
},
|
|
2846
|
+
content: {
|
|
2847
|
+
label: "\u30B3\u30F3\u30C6\u30F3\u30C4",
|
|
2848
|
+
description: "\u3053\u306E\u30A2\u30D7\u30EA\u304C\u4F7F\u7528\u3059\u308B\u30AA\u30D6\u30B8\u30A7\u30AF\u30C8\u3068 API\u3002"
|
|
2849
|
+
},
|
|
2850
|
+
branding: {
|
|
2851
|
+
label: "\u30D6\u30E9\u30F3\u30C7\u30A3\u30F3\u30B0",
|
|
2852
|
+
description: "\u30C6\u30FC\u30DE\u30AB\u30E9\u30FC\u3068\u30ED\u30B4\u3002"
|
|
2853
|
+
},
|
|
2854
|
+
access_and_sharing: {
|
|
2855
|
+
label: "\u30A2\u30AF\u30BB\u30B9\u3068\u5171\u6709",
|
|
2856
|
+
description: "\u3053\u306E\u30A2\u30D7\u30EA\u306B\u30A2\u30AF\u30BB\u30B9\u53EF\u80FD\u306A\u30E6\u30FC\u30B6\u30FC\u3068\u57CB\u3081\u8FBC\u307F\u65B9\u6CD5\u3002"
|
|
2857
|
+
}
|
|
2858
|
+
},
|
|
2859
|
+
fields: {
|
|
2860
|
+
name: {
|
|
2861
|
+
helpText: "snake_case\u3001\u4E00\u610F"
|
|
2862
|
+
},
|
|
2863
|
+
icon: {
|
|
2864
|
+
helpText: 'Lucide \u30A2\u30A4\u30B3\u30F3\u540D\uFF08\u4F8B: "users", "briefcase"\uFF09'
|
|
2865
|
+
},
|
|
2866
|
+
isDefault: {
|
|
2867
|
+
helpText: "\u65B0\u898F\u30E6\u30FC\u30B6\u30FC\u306E\u65E2\u5B9A\u30A2\u30D7\u30EA\u306B\u3059\u308B"
|
|
2868
|
+
},
|
|
2869
|
+
navigation: {
|
|
2870
|
+
helpText: "\u30CA\u30D3\u30C4\u30EA\u30FC \u2014 \u518D\u5E30\u69CB\u9020"
|
|
2871
|
+
},
|
|
2872
|
+
areas: {
|
|
2873
|
+
helpText: "\u9805\u76EE\u3092\u6298\u308A\u305F\u305F\u307F\u53EF\u80FD\u306A\u30A8\u30EA\u30A2\u306B\u30B0\u30EB\u30FC\u30D7\u5316"
|
|
2874
|
+
},
|
|
2875
|
+
homePageId: {
|
|
2876
|
+
helpText: "\u30A2\u30D7\u30EA\u8D77\u52D5\u6642\u306E\u30E9\u30F3\u30C7\u30A3\u30F3\u30B0\u30DA\u30FC\u30B8"
|
|
2877
|
+
},
|
|
2878
|
+
mobileNavigation: {
|
|
2879
|
+
helpText: "\u30E2\u30D0\u30A4\u30EB\u7528\u30DC\u30C8\u30E0\u30BF\u30D6\u30D0\u30FC\u8A2D\u5B9A"
|
|
2880
|
+
},
|
|
2881
|
+
objects: {
|
|
2882
|
+
helpText: "\u3053\u306E\u30A2\u30D7\u30EA\u304C\u516C\u958B\u3059\u308B\u30AA\u30D6\u30B8\u30A7\u30AF\u30C8\u540D"
|
|
2883
|
+
},
|
|
2884
|
+
apis: {
|
|
2885
|
+
helpText: "API \u30A8\u30F3\u30C9\u30DD\u30A4\u30F3\u30C8\u5B9A\u7FA9"
|
|
2886
|
+
},
|
|
2887
|
+
defaultAgent: {
|
|
2888
|
+
helpText: "\u5E38\u99D0\u30A2\u30B7\u30B9\u30BF\u30F3\u30C8\u30DC\u30BF\u30F3\u7528 AI \u30A8\u30FC\u30B8\u30A7\u30F3\u30C8"
|
|
2889
|
+
},
|
|
2890
|
+
branding: {
|
|
2891
|
+
helpText: "\u30D7\u30E9\u30A4\u30DE\u30EA/\u30BB\u30AB\u30F3\u30C0\u30EA\u30AB\u30E9\u30FC\u3001\u30ED\u30B4\u3001\u30C6\u30FC\u30DE"
|
|
2892
|
+
},
|
|
2893
|
+
requiredPermissions: {
|
|
2894
|
+
helpText: "\u3053\u306E\u30A2\u30D7\u30EA\u3078\u306E\u30A2\u30AF\u30BB\u30B9\u306B\u5FC5\u8981\u306A\u6A29\u9650"
|
|
2895
|
+
},
|
|
2896
|
+
sharing: {
|
|
2897
|
+
helpText: "\u516C\u958B/\u5185\u90E8/\u5236\u9650\u4ED8\u304D\u30A2\u30AF\u30BB\u30B9\u5236\u5FA1"
|
|
2898
|
+
},
|
|
2899
|
+
embed: {
|
|
2900
|
+
helpText: "iFrame \u57CB\u3081\u8FBC\u307F\u8A2D\u5B9A"
|
|
2901
|
+
},
|
|
2902
|
+
aria: {
|
|
2903
|
+
helpText: "\u30A2\u30AF\u30BB\u30B7\u30D3\u30EA\u30C6\u30A3\u30E9\u30D9\u30EB"
|
|
2904
|
+
}
|
|
2905
|
+
}
|
|
2906
|
+
},
|
|
2907
|
+
action: {
|
|
2908
|
+
label: "\u30A2\u30AF\u30B7\u30E7\u30F3",
|
|
2909
|
+
sections: {
|
|
2910
|
+
basics: {
|
|
2911
|
+
label: "\u57FA\u672C",
|
|
2912
|
+
description: "\u30A2\u30AF\u30B7\u30E7\u30F3 ID \u3068\u8868\u793A\u3002"
|
|
2913
|
+
},
|
|
2914
|
+
behavior: {
|
|
2915
|
+
label: "\u52D5\u4F5C",
|
|
2916
|
+
description: "\u30A2\u30AF\u30B7\u30E7\u30F3\u767A\u706B\u6642\u306E\u52D5\u4F5C\u3092\u8A2D\u5B9A\u3002"
|
|
2917
|
+
},
|
|
2918
|
+
placement: {
|
|
2919
|
+
label: "\u914D\u7F6E",
|
|
2920
|
+
description: "\u30A2\u30AF\u30B7\u30E7\u30F3\u30DC\u30BF\u30F3\u306E\u8868\u793A\u5834\u6240\u3068\u30BF\u30A4\u30DF\u30F3\u30B0\u3002"
|
|
2921
|
+
},
|
|
2922
|
+
advanced: {
|
|
2923
|
+
label: "\u8A73\u7D30",
|
|
2924
|
+
description: "\u4E00\u62EC\u64CD\u4F5C\u3001AI \u516C\u958B\u3001API \u30EA\u30AF\u30A8\u30B9\u30C8\u5F62\u72B6\u3002"
|
|
2925
|
+
}
|
|
2926
|
+
},
|
|
2927
|
+
fields: {
|
|
2928
|
+
name: {
|
|
2929
|
+
helpText: "\u4E00\u610F\u8B58\u5225\u5B50\uFF08snake_case\uFF09"
|
|
2930
|
+
},
|
|
2931
|
+
label: {
|
|
2932
|
+
helpText: "\u30E6\u30FC\u30B6\u30FC\u306B\u8868\u793A\u3059\u308B\u30DC\u30BF\u30F3\u30C6\u30AD\u30B9\u30C8"
|
|
2933
|
+
},
|
|
2934
|
+
objectName: {
|
|
2935
|
+
helpText: "\u3053\u306E\u30A2\u30AF\u30B7\u30E7\u30F3\u304C\u5C5E\u3059\u308B\u30AA\u30D6\u30B8\u30A7\u30AF\u30C8\uFF08\u4EFB\u610F\uFF09"
|
|
2936
|
+
},
|
|
2937
|
+
icon: {
|
|
2938
|
+
helpText: 'Lucide \u30A2\u30A4\u30B3\u30F3\u540D\uFF08\u4F8B: "check", "x-circle"\uFF09'
|
|
2939
|
+
},
|
|
2940
|
+
type: {
|
|
2941
|
+
helpText: "\u30AF\u30EA\u30C3\u30AF\u6642\u306E\u52D5\u4F5C"
|
|
2942
|
+
},
|
|
2943
|
+
variant: {
|
|
2944
|
+
helpText: "\u30DC\u30BF\u30F3\u30B9\u30BF\u30A4\u30EB\uFF08primary=blue, danger=red, ghost=transparent\uFF09"
|
|
2945
|
+
},
|
|
2946
|
+
target: {
|
|
2947
|
+
helpText: "\u547C\u3073\u51FA\u3059 URL\u3001\u30D5\u30ED\u30FC\u540D\u3001\u307E\u305F\u306F API \u30A8\u30F3\u30C9\u30DD\u30A4\u30F3\u30C8"
|
|
2948
|
+
},
|
|
2949
|
+
method: {
|
|
2950
|
+
helpText: "HTTP \u30E1\u30BD\u30C3\u30C9\uFF08GET, POST, PUT, DELETE\uFF09"
|
|
2951
|
+
},
|
|
2952
|
+
body: {
|
|
2953
|
+
helpText: "\u5B9F\u884C\u3059\u308B JavaScript \u30B3\u30FC\u30C9"
|
|
2954
|
+
},
|
|
2955
|
+
params: {
|
|
2956
|
+
helpText: "\u30E6\u30FC\u30B6\u30FC\u5165\u529B\u30D1\u30E9\u30E1\u30FC\u30BF\u30FC\uFF08\u5B9F\u884C\u524D\u306B\u30D5\u30A9\u30FC\u30E0\u3092\u8868\u793A\uFF09"
|
|
2957
|
+
},
|
|
2958
|
+
confirmText: {
|
|
2959
|
+
helpText: '\u78BA\u8A8D\u30E1\u30C3\u30BB\u30FC\u30B8\uFF08\u4F8B: "Are you sure?"\uFF09'
|
|
2960
|
+
},
|
|
2961
|
+
successMessage: {
|
|
2962
|
+
helpText: "\u5B8C\u4E86\u5F8C\u306E\u6210\u529F\u30E1\u30C3\u30BB\u30FC\u30B8"
|
|
2963
|
+
},
|
|
2964
|
+
refreshAfter: {
|
|
2965
|
+
helpText: "\u30A2\u30AF\u30B7\u30E7\u30F3\u5B8C\u4E86\u5F8C\u306B\u30EA\u30B9\u30C8/\u30DA\u30FC\u30B8\u3092\u66F4\u65B0"
|
|
2966
|
+
},
|
|
2967
|
+
locations: {
|
|
2968
|
+
helpText: "\u3053\u306E\u30A2\u30AF\u30B7\u30E7\u30F3\u306E\u8868\u793A\u5834\u6240\uFF08toolbar, row menu \u306A\u3069\uFF09"
|
|
2969
|
+
},
|
|
2970
|
+
component: {
|
|
2971
|
+
helpText: "\u30EC\u30F3\u30C0\u30EA\u30F3\u30B0\u65B9\u6CD5\uFF08button, icon, menu item\uFF09"
|
|
2972
|
+
},
|
|
2973
|
+
visible: {
|
|
2974
|
+
helpText: "CEL \u5F0F: \u6761\u4EF6\u304C true \u306E\u5834\u5408\u306E\u307F\u8868\u793A"
|
|
2975
|
+
},
|
|
2976
|
+
disabled: {
|
|
2977
|
+
helpText: "CEL \u5F0F: \u6761\u4EF6\u304C true \u306E\u5834\u5408\u306B\u7121\u52B9\u5316"
|
|
2978
|
+
},
|
|
2979
|
+
shortcut: {
|
|
2980
|
+
helpText: '\u30AD\u30FC\u30DC\u30FC\u30C9\u30B7\u30E7\u30FC\u30C8\u30AB\u30C3\u30C8\uFF08\u4F8B: "Ctrl+S", "Cmd+Enter"\uFF09'
|
|
2981
|
+
},
|
|
2982
|
+
bulkEnabled: {
|
|
2983
|
+
helpText: "\u9078\u629E\u3057\u305F\u8907\u6570\u30EC\u30B3\u30FC\u30C9\u3078\u306E\u9069\u7528\u3092\u8A31\u53EF"
|
|
2984
|
+
},
|
|
2985
|
+
aiExposed: {
|
|
2986
|
+
helpText: "AI \u30A8\u30FC\u30B8\u30A7\u30F3\u30C8\u306B\u3088\u308B\u3053\u306E\u30A2\u30AF\u30B7\u30E7\u30F3\u306E\u547C\u3073\u51FA\u3057\u3092\u8A31\u53EF"
|
|
2987
|
+
},
|
|
2988
|
+
recordIdParam: {
|
|
2989
|
+
helpText: "\u30EC\u30B3\u30FC\u30C9 ID \u7528 body \u30D1\u30E9\u30E1\u30FC\u30BF\u30FC\u540D"
|
|
2990
|
+
},
|
|
2991
|
+
recordIdField: {
|
|
2992
|
+
helpText: '\u30EC\u30B3\u30FC\u30C9 ID \u3068\u3057\u3066\u4F7F\u7528\u3059\u308B\u30D5\u30A3\u30FC\u30EB\u30C9\uFF08\u65E2\u5B9A: "id"\uFF09'
|
|
2993
|
+
},
|
|
2994
|
+
bodyShape: {
|
|
2995
|
+
helpText: "\u30EA\u30AF\u30A8\u30B9\u30C8 body \u69CB\u9020\uFF08flat \u307E\u305F\u306F nested\uFF09"
|
|
2996
|
+
}
|
|
2997
|
+
}
|
|
2998
|
+
},
|
|
2999
|
+
report: {
|
|
3000
|
+
label: "\u30EC\u30DD\u30FC\u30C8",
|
|
3001
|
+
sections: {
|
|
3002
|
+
basics: {
|
|
3003
|
+
label: "\u57FA\u672C",
|
|
3004
|
+
description: "ID \u3068\u30C7\u30FC\u30BF\u30BD\u30FC\u30B9\u3002"
|
|
3005
|
+
},
|
|
3006
|
+
columns: {
|
|
3007
|
+
label: "\u5217",
|
|
3008
|
+
description: "\u30EC\u30DD\u30FC\u30C8\u51FA\u529B\u306B\u8868\u793A\u3059\u308B\u5217\u3002"
|
|
3009
|
+
},
|
|
3010
|
+
groupings: {
|
|
3011
|
+
label: "\u30B0\u30EB\u30FC\u30D7\u5316",
|
|
3012
|
+
description: "\u884C\uFF08matrix \u30EC\u30DD\u30FC\u30C8\u3067\u306F\u5217\u3082\uFF09\u306E\u30B0\u30EB\u30FC\u30D7\u5316\u65B9\u6CD5\u3002"
|
|
3013
|
+
},
|
|
3014
|
+
joined_blocks: {
|
|
3015
|
+
label: "\u7D50\u5408\u30D6\u30ED\u30C3\u30AF",
|
|
3016
|
+
description: "1 \u3064\u306E\u30EC\u30DD\u30FC\u30C8\u306B\u7D50\u5408\u3059\u308B\u8FFD\u52A0\u30D6\u30ED\u30C3\u30AF\uFF08joined \u30EC\u30DD\u30FC\u30C8\u306E\u307F\uFF09\u3002"
|
|
3017
|
+
},
|
|
3018
|
+
filter_and_chart: {
|
|
3019
|
+
label: "\u30D5\u30A3\u30EB\u30BF\u30FC\u3068\u30C1\u30E3\u30FC\u30C8",
|
|
3020
|
+
description: "\u30EC\u30DD\u30FC\u30C8\u30EC\u30D9\u30EB\u306E\u30D5\u30A3\u30EB\u30BF\u30FC\u3068\u30C1\u30E3\u30FC\u30C8\u8868\u793A\u3002"
|
|
3021
|
+
},
|
|
3022
|
+
advanced: {
|
|
3023
|
+
label: "\u8A73\u7D30",
|
|
3024
|
+
description: "\u30A2\u30AF\u30BB\u30B7\u30D3\u30EA\u30C6\u30A3\u3068\u30D1\u30D5\u30A9\u30FC\u30DE\u30F3\u30B9\u8ABF\u6574\u3002"
|
|
3025
|
+
}
|
|
3026
|
+
},
|
|
3027
|
+
fields: {
|
|
3028
|
+
name: {
|
|
3029
|
+
helpText: "snake_case \u306E\u4E00\u610F\u8B58\u5225\u5B50"
|
|
3030
|
+
},
|
|
3031
|
+
objectName: {
|
|
3032
|
+
helpText: "\u30C7\u30FC\u30BF\u30BD\u30FC\u30B9\u30AA\u30D6\u30B8\u30A7\u30AF\u30C8"
|
|
3033
|
+
},
|
|
3034
|
+
type: {
|
|
3035
|
+
helpText: "\u30EC\u30DD\u30FC\u30C8\u7A2E\u5225: tabular/summary/matrix/joined"
|
|
3036
|
+
},
|
|
3037
|
+
columns: {
|
|
3038
|
+
helpText: "\u30EC\u30DD\u30FC\u30C8\u306B\u8868\u793A\u3059\u308B\u5217"
|
|
3039
|
+
},
|
|
3040
|
+
groupingsDown: {
|
|
3041
|
+
helpText: "\u884C\u30B0\u30EB\u30FC\u30D7\u5316\u30EC\u30D9\u30EB"
|
|
3042
|
+
},
|
|
3043
|
+
groupingsAcross: {
|
|
3044
|
+
helpText: "\u5217\u30B0\u30EB\u30FC\u30D7\u5316\u30EC\u30D9\u30EB\uFF08matrix \u306E\u307F\uFF09"
|
|
3045
|
+
},
|
|
3046
|
+
blocks: {
|
|
3047
|
+
helpText: "\u8907\u6570\u30AA\u30D6\u30B8\u30A7\u30AF\u30C8\u3092\u7D50\u5408\uFF08joined \u30EC\u30DD\u30FC\u30C8\u306E\u307F\uFF09"
|
|
3048
|
+
},
|
|
3049
|
+
filter: {
|
|
3050
|
+
helpText: "\u30EC\u30DD\u30FC\u30C8\u30EC\u30D9\u30EB\u306E\u30D5\u30A3\u30EB\u30BF\u30FC"
|
|
3051
|
+
},
|
|
3052
|
+
chart: {
|
|
3053
|
+
helpText: "\u30C1\u30E3\u30FC\u30C8\u8A2D\u5B9A\uFF08type, legend, colors\uFF09"
|
|
3054
|
+
},
|
|
3055
|
+
aria: {
|
|
3056
|
+
helpText: "\u30A2\u30AF\u30BB\u30B7\u30D3\u30EA\u30C6\u30A3\u30E9\u30D9\u30EB"
|
|
3057
|
+
},
|
|
3058
|
+
performance: {
|
|
3059
|
+
helpText: "\u30AD\u30E3\u30C3\u30B7\u30E5\u3068\u6700\u9069\u5316"
|
|
3060
|
+
}
|
|
3061
|
+
}
|
|
3062
|
+
},
|
|
3063
|
+
flow: {
|
|
3064
|
+
label: "\u30D5\u30ED\u30FC",
|
|
3065
|
+
sections: {
|
|
3066
|
+
basics: {
|
|
3067
|
+
label: "\u57FA\u672C",
|
|
3068
|
+
description: "\u30D5\u30ED\u30FC ID \u3068\u958B\u59CB\u65B9\u6CD5\u3002"
|
|
3069
|
+
},
|
|
3070
|
+
canvas: {
|
|
3071
|
+
label: "\u30AD\u30E3\u30F3\u30D0\u30B9",
|
|
3072
|
+
description: "\u30CE\u30FC\u30C9\u3001\u30A8\u30C3\u30B8\u3001\u30D5\u30ED\u30FC\u5909\u6570 \u2014 \u8907\u96D1\u306A\u30D5\u30ED\u30FC\u306F\u30D3\u30B8\u30E5\u30A2\u30EB\u30C7\u30B6\u30A4\u30CA\u30FC\u3092\u691C\u8A0E\u3002"
|
|
3073
|
+
},
|
|
3074
|
+
execution: {
|
|
3075
|
+
label: "\u5B9F\u884C",
|
|
3076
|
+
description: "\u30C7\u30D7\u30ED\u30A4\u72B6\u614B\u3001ID\u3001\u30A8\u30E9\u30FC\u51E6\u7406\u3002"
|
|
3077
|
+
}
|
|
3078
|
+
},
|
|
3079
|
+
fields: {
|
|
3080
|
+
name: {
|
|
3081
|
+
helpText: "\u4E00\u610F\u8B58\u5225\u5B50\uFF08snake_case\uFF09"
|
|
3082
|
+
},
|
|
3083
|
+
label: {
|
|
3084
|
+
helpText: "\u30E6\u30FC\u30B6\u30FC\u5411\u3051\u8868\u793A\u540D"
|
|
3085
|
+
},
|
|
3086
|
+
type: {
|
|
3087
|
+
helpText: "\u30D5\u30ED\u30FC\u306E\u958B\u59CB\u65B9\u6CD5\uFF08autolaunched, record_change, schedule, screen, api\uFF09"
|
|
3088
|
+
},
|
|
3089
|
+
template: {
|
|
3090
|
+
helpText: "\u518D\u5229\u7528\u53EF\u80FD\u306A\u30B5\u30D6\u30D5\u30ED\u30FC\u304B\uFF08\u4ED6\u306E\u30D5\u30ED\u30FC\u304B\u3089\u547C\u3073\u51FA\u3057\u53EF\uFF09"
|
|
3091
|
+
},
|
|
3092
|
+
description: {
|
|
3093
|
+
helpText: "\u3053\u306E\u30D5\u30ED\u30FC\u306E\u51E6\u7406\u5185\u5BB9"
|
|
3094
|
+
},
|
|
3095
|
+
nodes: {
|
|
3096
|
+
helpText: "\u26A0\uFE0F JSON \u3067\u306F\u306A\u304F Flow Designer \u30D3\u30B8\u30E5\u30A2\u30EB\u30A8\u30C7\u30A3\u30BF\u30FC\u306E\u5229\u7528\u3092\u691C\u8A0E"
|
|
3097
|
+
},
|
|
3098
|
+
edges: {
|
|
3099
|
+
helpText: "\u30CE\u30FC\u30C9\u9593\u306E\u63A5\u7D9A \u2014 \u7DE8\u96C6\u3057\u3084\u3059\u3044 Flow Designer \u3092\u4F7F\u7528"
|
|
3100
|
+
},
|
|
3101
|
+
variables: {
|
|
3102
|
+
helpText: "\u30D5\u30ED\u30FC\u5909\u6570\uFF08inputs/outputs\uFF09"
|
|
3103
|
+
},
|
|
3104
|
+
status: {
|
|
3105
|
+
helpText: "\u30C7\u30D7\u30ED\u30A4\u72B6\u614B: draft \u2192 active \u2192 obsolete"
|
|
3106
|
+
},
|
|
3107
|
+
version: {
|
|
3108
|
+
helpText: "\u30D0\u30FC\u30B8\u30E7\u30F3\u756A\u53F7\uFF08\u81EA\u52D5\u30A4\u30F3\u30AF\u30EA\u30E1\u30F3\u30C8\uFF09"
|
|
3109
|
+
},
|
|
3110
|
+
runAs: {
|
|
3111
|
+
helpText: "system\uFF08admin\uFF09\u307E\u305F\u306F user\uFF08\u73FE\u5728\u306E\u30E6\u30FC\u30B6\u30FC\u6A29\u9650\uFF09\u3068\u3057\u3066\u5B9F\u884C"
|
|
3112
|
+
},
|
|
3113
|
+
errorHandling: {
|
|
3114
|
+
helpText: "\u30CE\u30FC\u30C9\u5931\u6557\u6642\u306E\u51E6\u7406\uFF08fail, retry, continue\uFF09"
|
|
3115
|
+
}
|
|
3116
|
+
}
|
|
3117
|
+
},
|
|
3118
|
+
workflow: {
|
|
3119
|
+
label: "\u30EF\u30FC\u30AF\u30D5\u30ED\u30FC",
|
|
3120
|
+
sections: {
|
|
3121
|
+
basics: {
|
|
3122
|
+
label: "\u57FA\u672C",
|
|
3123
|
+
description: "ID \u3068\u767A\u706B\u5143\u306E\u30AA\u30D6\u30B8\u30A7\u30AF\u30C8/\u30A4\u30D9\u30F3\u30C8\u3002"
|
|
3124
|
+
},
|
|
3125
|
+
actions: {
|
|
3126
|
+
label: "\u30A2\u30AF\u30B7\u30E7\u30F3",
|
|
3127
|
+
description: "\u767A\u706B\u6642\u306B\u3053\u306E\u30EF\u30FC\u30AF\u30D5\u30ED\u30FC\u304C\u884C\u3046\u51E6\u7406\u3002"
|
|
3128
|
+
},
|
|
3129
|
+
advanced: {
|
|
3130
|
+
label: "\u8A73\u7D30",
|
|
3131
|
+
description: "\u9806\u5E8F\u3068\u5B9F\u884C\u52D5\u4F5C\u3002"
|
|
3132
|
+
}
|
|
3133
|
+
},
|
|
3134
|
+
fields: {
|
|
3135
|
+
name: {
|
|
3136
|
+
helpText: "\u4E00\u610F\u8B58\u5225\u5B50\uFF08snake_case\uFF09"
|
|
3137
|
+
},
|
|
3138
|
+
objectName: {
|
|
3139
|
+
helpText: "\u3053\u306E\u30EF\u30FC\u30AF\u30D5\u30ED\u30FC\u3092\u767A\u706B\u3059\u308B\u30AA\u30D6\u30B8\u30A7\u30AF\u30C8"
|
|
3140
|
+
},
|
|
3141
|
+
triggerType: {
|
|
3142
|
+
helpText: "\u5B9F\u884C\u30BF\u30A4\u30DF\u30F3\u30B0: on_create, on_update, on_delete, schedule"
|
|
3143
|
+
},
|
|
3144
|
+
active: {
|
|
3145
|
+
helpText: "\u3053\u306E\u30EF\u30FC\u30AF\u30D5\u30ED\u30FC\u306E\u6709\u52B9/\u7121\u52B9"
|
|
3146
|
+
},
|
|
3147
|
+
description: {
|
|
3148
|
+
helpText: "\u3053\u306E\u30EF\u30FC\u30AF\u30D5\u30ED\u30FC\u306E\u51E6\u7406\u5185\u5BB9"
|
|
3149
|
+
},
|
|
3150
|
+
criteria: {
|
|
3151
|
+
helpText: "CEL \u5F0F: \u3053\u306E\u6761\u4EF6\u304C true \u306E\u5834\u5408\u306E\u307F\u5B9F\u884C"
|
|
3152
|
+
},
|
|
3153
|
+
actions: {
|
|
3154
|
+
helpText: "\u5373\u6642\u5B9F\u884C\u3059\u308B\u30A2\u30AF\u30B7\u30E7\u30F3\uFF08field update, email, API call \u306A\u3069\uFF09"
|
|
3155
|
+
},
|
|
3156
|
+
timeTriggers: {
|
|
3157
|
+
helpText: "\u30B9\u30B1\u30B8\u30E5\u30FC\u30EB\u30A2\u30AF\u30B7\u30E7\u30F3\uFF08\u4F8B: \u671F\u9650 1 \u65E5\u524D\u306B\u30EA\u30DE\u30A4\u30F3\u30C0\u30FC\u9001\u4FE1\uFF09"
|
|
3158
|
+
},
|
|
3159
|
+
executionOrder: {
|
|
3160
|
+
helpText: "\u8907\u6570\u30EF\u30FC\u30AF\u30D5\u30ED\u30FC\u4E00\u81F4\u6642\u306E\u5B9F\u884C\u9806\uFF08\u5C0F\u3055\u3044\u307B\u3069\u65E9\u3044\uFF09"
|
|
3161
|
+
}
|
|
3162
|
+
}
|
|
3163
|
+
},
|
|
3164
|
+
approval: {
|
|
3165
|
+
label: "\u627F\u8A8D\u30D7\u30ED\u30BB\u30B9",
|
|
3166
|
+
sections: {
|
|
3167
|
+
basics: {
|
|
3168
|
+
label: "\u57FA\u672C",
|
|
3169
|
+
description: "\u627F\u8A8D\u30D7\u30ED\u30BB\u30B9 ID \u3068\u5BFE\u8C61\u30AA\u30D6\u30B8\u30A7\u30AF\u30C8\u3002"
|
|
3170
|
+
},
|
|
3171
|
+
entry_rules: {
|
|
3172
|
+
label: "\u30A8\u30F3\u30C8\u30EA\u30FC\u30EB\u30FC\u30EB",
|
|
3173
|
+
description: "\u9001\u4FE1\u53EF\u80FD\u8005\u3068\u4FDD\u7559\u4E2D\u30EC\u30B3\u30FC\u30C9\u306E\u52D5\u4F5C\u3002"
|
|
3174
|
+
},
|
|
3175
|
+
steps: {
|
|
3176
|
+
label: "\u30B9\u30C6\u30C3\u30D7",
|
|
3177
|
+
description: "\u9806\u5E8F\u4ED8\u304D\u627F\u8A8D\u30C1\u30A7\u30FC\u30F3 \u2014 \u5404\u30B9\u30C6\u30C3\u30D7\u3067\u627F\u8A8D\u8005\u3068\u30EB\u30FC\u30C6\u30A3\u30F3\u30B0\u3092\u6C7A\u5B9A\u3002"
|
|
3178
|
+
},
|
|
3179
|
+
escalation_and_outcomes: {
|
|
3180
|
+
label: "\u30A8\u30B9\u30AB\u30EC\u30FC\u30B7\u30E7\u30F3\u3068\u7D50\u679C",
|
|
3181
|
+
description: "SLA\u3001\u30A8\u30B9\u30AB\u30EC\u30FC\u30B7\u30E7\u30F3\u3001\u6C7A\u5B9A\u5F8C\u30A2\u30AF\u30B7\u30E7\u30F3\u3002"
|
|
3182
|
+
}
|
|
3183
|
+
},
|
|
3184
|
+
fields: {
|
|
3185
|
+
name: {
|
|
3186
|
+
helpText: "\u4E00\u610F\u8B58\u5225\u5B50\uFF08snake_case\uFF09"
|
|
3187
|
+
},
|
|
3188
|
+
label: {
|
|
3189
|
+
helpText: '\u8868\u793A\u540D\uFF08\u4F8B: "Contract Approval"\uFF09'
|
|
3190
|
+
},
|
|
3191
|
+
object: {
|
|
3192
|
+
helpText: "\u627F\u8A8D\u304C\u5FC5\u8981\u306A\u30AA\u30D6\u30B8\u30A7\u30AF\u30C8"
|
|
3193
|
+
},
|
|
3194
|
+
active: {
|
|
3195
|
+
helpText: "\u3053\u306E\u627F\u8A8D\u30D7\u30ED\u30BB\u30B9\u306E\u6709\u52B9/\u7121\u52B9"
|
|
3196
|
+
},
|
|
3197
|
+
description: {
|
|
3198
|
+
helpText: "\u627F\u8A8D\u5BFE\u8C61\u3068\u7406\u7531"
|
|
3199
|
+
},
|
|
3200
|
+
entryCriteria: {
|
|
3201
|
+
helpText: "CEL \u5F0F: \u3053\u308C\u304C true \u306E\u5834\u5408\u306E\u307F\u30E6\u30FC\u30B6\u30FC\u304C\u9001\u4FE1\u53EF\u80FD"
|
|
3202
|
+
},
|
|
3203
|
+
lockRecord: {
|
|
3204
|
+
helpText: "\u627F\u8A8D\u4FDD\u7559\u4E2D\u306F\u30EC\u30B3\u30FC\u30C9\u7DE8\u96C6\u3092\u30ED\u30C3\u30AF"
|
|
3205
|
+
},
|
|
3206
|
+
approvalStatusField: {
|
|
3207
|
+
helpText: '\u627F\u8A8D\u72B6\u614B\u3092\u53CD\u6620\u3059\u308B\u30D5\u30A3\u30FC\u30EB\u30C9\u540D\uFF08\u4F8B: "approval_status"\uFF09'
|
|
3208
|
+
},
|
|
3209
|
+
steps: {
|
|
3210
|
+
helpText: "\u9806\u5E8F\u4ED8\u304D\u627F\u8A8D\u30B9\u30C6\u30C3\u30D7 \u2014 \u5404\u30B9\u30C6\u30C3\u30D7\u3067\u627F\u8A8D\u8005\u3068\u51E6\u7406\u3092\u5B9A\u7FA9"
|
|
3211
|
+
},
|
|
3212
|
+
escalation: {
|
|
3213
|
+
helpText: "\u30BF\u30A4\u30E0\u30A2\u30A6\u30C8\u5F8C\u306B\u81EA\u52D5\u30A8\u30B9\u30AB\u30EC\u30FC\u30B7\u30E7\u30F3\u307E\u305F\u306F\u81EA\u52D5\u627F\u8A8D"
|
|
3214
|
+
},
|
|
3215
|
+
onFinalApprove: {
|
|
3216
|
+
helpText: "\u5168\u30B9\u30C6\u30C3\u30D7\u627F\u8A8D\u6642\u306E\u30A2\u30AF\u30B7\u30E7\u30F3\uFF08\u4F8B: \u30B9\u30C6\u30FC\u30BF\u30B9\u66F4\u65B0\uFF09"
|
|
3217
|
+
},
|
|
3218
|
+
onFinalReject: {
|
|
3219
|
+
helpText: "\u5374\u4E0B\u6642\u306E\u30A2\u30AF\u30B7\u30E7\u30F3\uFF08\u4F8B: \u7533\u8ACB\u8005\u3078\u901A\u77E5\uFF09"
|
|
3220
|
+
}
|
|
3221
|
+
}
|
|
3222
|
+
},
|
|
3223
|
+
job: {
|
|
3224
|
+
label: "\u30D0\u30C3\u30AF\u30B0\u30E9\u30A6\u30F3\u30C9\u30B8\u30E7\u30D6"
|
|
3225
|
+
},
|
|
3226
|
+
datasource: {
|
|
3227
|
+
label: "\u30C7\u30FC\u30BF\u30BD\u30FC\u30B9"
|
|
3228
|
+
},
|
|
3229
|
+
translation: {
|
|
3230
|
+
label: "\u7FFB\u8A33"
|
|
3231
|
+
},
|
|
3232
|
+
router: {
|
|
3233
|
+
label: "\u30EB\u30FC\u30BF\u30FC"
|
|
3234
|
+
},
|
|
3235
|
+
function: {
|
|
3236
|
+
label: "\u95A2\u6570"
|
|
3237
|
+
},
|
|
3238
|
+
service: {
|
|
3239
|
+
label: "\u30B5\u30FC\u30D3\u30B9"
|
|
3240
|
+
},
|
|
3241
|
+
email_template: {
|
|
3242
|
+
label: "\u30E1\u30FC\u30EB\u30C6\u30F3\u30D7\u30EC\u30FC\u30C8",
|
|
3243
|
+
sections: {
|
|
3244
|
+
identity: {
|
|
3245
|
+
label: "ID",
|
|
3246
|
+
description: "\u8B58\u5225\u5B50\u3068\u30B3\u30F3\u30C6\u30F3\u30C4\u578B\u3002id \u306F sendTemplate({ template: id, ... }) \u3067\u53C2\u7167\u3055\u308C\u308B\u3002"
|
|
3247
|
+
},
|
|
3248
|
+
subject: {
|
|
3249
|
+
label: "\u4EF6\u540D",
|
|
3250
|
+
description: "\u4EF6\u540D\u884C\u3002{{var.path}} \u88DC\u9593\u3092\u30B5\u30DD\u30FC\u30C8\u3002"
|
|
3251
|
+
},
|
|
3252
|
+
body: {
|
|
3253
|
+
label: "\u672C\u6587",
|
|
3254
|
+
description: "\u30E1\u30FC\u30EB\u672C\u6587\u3002\u5909\u6570\u306B\u306F {{var}} \u3092\u4F7F\u7528\u3002\u30A8\u30C7\u30A3\u30BF\u30FC\u306F body \u578B\u306B\u57FA\u3065\u304D\u30CF\u30A4\u30E9\u30A4\u30C8\u3002"
|
|
3255
|
+
},
|
|
3256
|
+
variables_and_attachments: {
|
|
3257
|
+
label: "\u5909\u6570\u3068\u6DFB\u4ED8\u30D5\u30A1\u30A4\u30EB",
|
|
3258
|
+
description: "\u5BA3\u8A00\u6E08\u307F\u30C6\u30F3\u30D7\u30EC\u30FC\u30C8\u5909\u6570\u3068\u4EFB\u610F\u306E\u6DFB\u4ED8\u30D5\u30A1\u30A4\u30EB\u3002"
|
|
3259
|
+
}
|
|
3260
|
+
},
|
|
3261
|
+
fields: {
|
|
3262
|
+
id: {
|
|
3263
|
+
helpText: "\u30C6\u30F3\u30D7\u30EC\u30FC\u30C8 id\uFF08\u4F8B: auth.password_reset\uFF09"
|
|
3264
|
+
},
|
|
3265
|
+
body: {
|
|
3266
|
+
helpText: "\u672C\u6587\u30B3\u30F3\u30C6\u30F3\u30C4\u3002Body Type \u306B\u57FA\u3065\u304D HTML\u3001\u30D7\u30EC\u30FC\u30F3\u30C6\u30AD\u30B9\u30C8\u3001Markdown \u3068\u3057\u3066\u30EC\u30F3\u30C0\u30EA\u30F3\u30B0\u3002"
|
|
3267
|
+
},
|
|
3268
|
+
variables: {
|
|
3269
|
+
helpText: "subject/body \u3067\u53C2\u7167\u3059\u308B\u5909\u6570\u540D\u30EA\u30B9\u30C8"
|
|
3270
|
+
},
|
|
3271
|
+
attachments: {
|
|
3272
|
+
helpText: '[{ "name": "...", "url": "..." }]'
|
|
3273
|
+
}
|
|
3274
|
+
}
|
|
3275
|
+
},
|
|
3276
|
+
permission: {
|
|
3277
|
+
label: "\u6A29\u9650\u30BB\u30C3\u30C8",
|
|
3278
|
+
sections: {
|
|
3279
|
+
identity: {
|
|
3280
|
+
label: "ID",
|
|
3281
|
+
description: "\u6A29\u9650\u30BB\u30C3\u30C8\u306F\u30D7\u30ED\u30D5\u30A1\u30A4\u30EB\u306B\u8FFD\u52A0\u30A2\u30AF\u30BB\u30B9\u6A29\u3092\u91CD\u306D\u308B\u3002\u30D7\u30ED\u30D5\u30A1\u30A4\u30EB\u306F\u5404\u30E6\u30FC\u30B6\u30FC\u306B 1:1 \u3067\u5272\u308A\u5F53\u3066\u308B\u57FA\u672C\u30BB\u30C3\u30C8\u3002"
|
|
3282
|
+
},
|
|
3283
|
+
system_permissions: {
|
|
3284
|
+
label: "\u30B7\u30B9\u30C6\u30E0\u6A29\u9650",
|
|
3285
|
+
description: "\u7279\u5B9A\u30AA\u30D6\u30B8\u30A7\u30AF\u30C8\u306B\u7D10\u3065\u304B\u306A\u3044\u9AD8\u30EC\u30D9\u30EB\u6A5F\u80FD \u2014 \u4F8B: manage_users, view_audit_logs\u3002"
|
|
3286
|
+
},
|
|
3287
|
+
object_and_field_permissions: {
|
|
3288
|
+
label: "\u30AA\u30D6\u30B8\u30A7\u30AF\u30C8\u3068\u30D5\u30A3\u30FC\u30EB\u30C9\u6A29\u9650",
|
|
3289
|
+
description: "\u30AA\u30D6\u30B8\u30A7\u30AF\u30C8\u5358\u4F4D\u306E CRUD + \u30D5\u30A3\u30FC\u30EB\u30C9\u5358\u4F4D\u306E FLS\u3002\u30DE\u30C8\u30EA\u30C3\u30AF\u30B9\u30A8\u30C7\u30A3\u30BF\u30FC\u3067\u7DE8\u96C6\u3001\u307E\u305F\u306F\u3053\u3053\u306B JSON \u3092\u8CBC\u308A\u4ED8\u3051\u3002"
|
|
3290
|
+
},
|
|
3291
|
+
tab_and_row_level_security: {
|
|
3292
|
+
label: "\u30BF\u30D6\u3068\u884C\u30EC\u30D9\u30EB\u30BB\u30AD\u30E5\u30EA\u30C6\u30A3",
|
|
3293
|
+
description: "\u30BF\u30D6\u8868\u793A\u3001RLS \u30DD\u30EA\u30B7\u30FC\u3001\u8FF0\u8A9E\u8A55\u4FA1\u7528\u30AB\u30B9\u30BF\u30E0\u30B3\u30F3\u30C6\u30AD\u30B9\u30C8\u5909\u6570\u3002"
|
|
3294
|
+
}
|
|
3295
|
+
},
|
|
3296
|
+
fields: {
|
|
3297
|
+
name: {
|
|
3298
|
+
helpText: "\u30DE\u30B7\u30F3\u540D\uFF08snake_case\uFF09"
|
|
3299
|
+
},
|
|
3300
|
+
label: {
|
|
3301
|
+
helpText: "\u7BA1\u7406\u8005\u5411\u3051\u8868\u793A\u30E9\u30D9\u30EB"
|
|
3302
|
+
},
|
|
3303
|
+
isProfile: {
|
|
3304
|
+
helpText: "Profile = \u30E6\u30FC\u30B6\u30FC\u306B\u5272\u308A\u5F53\u3066\u308B\u57FA\u672C\u30BB\u30C3\u30C8\u3002Permission Set = \u8FFD\u52A0\u6A29\u9650\u3002"
|
|
3305
|
+
},
|
|
3306
|
+
systemPermissions: {
|
|
3307
|
+
helpText: "\u30B7\u30B9\u30C6\u30E0\u6A5F\u80FD\u30AD\u30FC\u306E\u30EA\u30B9\u30C8"
|
|
3308
|
+
},
|
|
3309
|
+
objects: {
|
|
3310
|
+
helpText: '{ "account": { allowRead: true, allowEdit: true, ... } }'
|
|
3311
|
+
},
|
|
3312
|
+
fields: {
|
|
3313
|
+
helpText: '{ "account.amount": { readable: true, editable: false } }'
|
|
3314
|
+
},
|
|
3315
|
+
tabPermissions: {
|
|
3316
|
+
helpText: '{ "app_crm": "visible", "app_admin": "hidden" }'
|
|
3317
|
+
},
|
|
3318
|
+
rowLevelSecurity: {
|
|
3319
|
+
helpText: "RLS \u30DD\u30EA\u30B7\u30FC\u306E\u914D\u5217\uFF08rls.zod.ts \u53C2\u7167\uFF09"
|
|
3320
|
+
},
|
|
3321
|
+
contextVariables: {
|
|
3322
|
+
helpText: "RLS \u8FF0\u8A9E\u3067\u53C2\u7167\u3059\u308B\u30AB\u30B9\u30BF\u30E0\u5909\u6570"
|
|
3323
|
+
}
|
|
3324
|
+
}
|
|
3325
|
+
},
|
|
3326
|
+
profile: {
|
|
3327
|
+
label: "\u30D7\u30ED\u30D5\u30A1\u30A4\u30EB",
|
|
3328
|
+
sections: {
|
|
3329
|
+
identity: {
|
|
3330
|
+
label: "ID",
|
|
3331
|
+
description: "\u6A29\u9650\u30BB\u30C3\u30C8\u306F\u30D7\u30ED\u30D5\u30A1\u30A4\u30EB\u306B\u8FFD\u52A0\u30A2\u30AF\u30BB\u30B9\u6A29\u3092\u91CD\u306D\u308B\u3002\u30D7\u30ED\u30D5\u30A1\u30A4\u30EB\u306F\u5404\u30E6\u30FC\u30B6\u30FC\u306B 1:1 \u3067\u5272\u308A\u5F53\u3066\u308B\u57FA\u672C\u30BB\u30C3\u30C8\u3002"
|
|
3332
|
+
},
|
|
3333
|
+
system_permissions: {
|
|
3334
|
+
label: "\u30B7\u30B9\u30C6\u30E0\u6A29\u9650",
|
|
3335
|
+
description: "\u7279\u5B9A\u30AA\u30D6\u30B8\u30A7\u30AF\u30C8\u306B\u7D10\u3065\u304B\u306A\u3044\u9AD8\u30EC\u30D9\u30EB\u6A5F\u80FD \u2014 \u4F8B: manage_users, view_audit_logs\u3002"
|
|
3336
|
+
},
|
|
3337
|
+
object_and_field_permissions: {
|
|
3338
|
+
label: "\u30AA\u30D6\u30B8\u30A7\u30AF\u30C8\u3068\u30D5\u30A3\u30FC\u30EB\u30C9\u6A29\u9650",
|
|
3339
|
+
description: "\u30AA\u30D6\u30B8\u30A7\u30AF\u30C8\u5358\u4F4D\u306E CRUD + \u30D5\u30A3\u30FC\u30EB\u30C9\u5358\u4F4D\u306E FLS\u3002\u30DE\u30C8\u30EA\u30C3\u30AF\u30B9\u30A8\u30C7\u30A3\u30BF\u30FC\u3067\u7DE8\u96C6\u3001\u307E\u305F\u306F\u3053\u3053\u306B JSON \u3092\u8CBC\u308A\u4ED8\u3051\u3002"
|
|
3340
|
+
},
|
|
3341
|
+
tab_and_row_level_security: {
|
|
3342
|
+
label: "\u30BF\u30D6\u3068\u884C\u30EC\u30D9\u30EB\u30BB\u30AD\u30E5\u30EA\u30C6\u30A3",
|
|
3343
|
+
description: "\u30BF\u30D6\u8868\u793A\u3001RLS \u30DD\u30EA\u30B7\u30FC\u3001\u8FF0\u8A9E\u8A55\u4FA1\u7528\u30AB\u30B9\u30BF\u30E0\u30B3\u30F3\u30C6\u30AD\u30B9\u30C8\u5909\u6570\u3002"
|
|
3344
|
+
}
|
|
3345
|
+
},
|
|
3346
|
+
fields: {
|
|
3347
|
+
name: {
|
|
3348
|
+
helpText: "\u30DE\u30B7\u30F3\u540D\uFF08snake_case\uFF09"
|
|
3349
|
+
},
|
|
3350
|
+
label: {
|
|
3351
|
+
helpText: "\u7BA1\u7406\u8005\u5411\u3051\u8868\u793A\u30E9\u30D9\u30EB"
|
|
3352
|
+
},
|
|
3353
|
+
isProfile: {
|
|
3354
|
+
helpText: "Profile = \u30E6\u30FC\u30B6\u30FC\u306B\u5272\u308A\u5F53\u3066\u308B\u57FA\u672C\u30BB\u30C3\u30C8\u3002Permission Set = \u8FFD\u52A0\u6A29\u9650\u3002"
|
|
3355
|
+
},
|
|
3356
|
+
systemPermissions: {
|
|
3357
|
+
helpText: "\u30B7\u30B9\u30C6\u30E0\u6A5F\u80FD\u30AD\u30FC\u306E\u30EA\u30B9\u30C8"
|
|
3358
|
+
},
|
|
3359
|
+
objects: {
|
|
3360
|
+
helpText: '{ "account": { allowRead: true, allowEdit: true, ... } }'
|
|
3361
|
+
},
|
|
3362
|
+
fields: {
|
|
3363
|
+
helpText: '{ "account.amount": { readable: true, editable: false } }'
|
|
3364
|
+
},
|
|
3365
|
+
tabPermissions: {
|
|
3366
|
+
helpText: '{ "app_crm": "visible", "app_admin": "hidden" }'
|
|
3367
|
+
},
|
|
3368
|
+
rowLevelSecurity: {
|
|
3369
|
+
helpText: "RLS \u30DD\u30EA\u30B7\u30FC\u306E\u914D\u5217\uFF08rls.zod.ts \u53C2\u7167\uFF09"
|
|
3370
|
+
},
|
|
3371
|
+
contextVariables: {
|
|
3372
|
+
helpText: "RLS \u8FF0\u8A9E\u3067\u53C2\u7167\u3059\u308B\u30AB\u30B9\u30BF\u30E0\u5909\u6570"
|
|
3373
|
+
}
|
|
3374
|
+
}
|
|
3375
|
+
},
|
|
3376
|
+
role: {
|
|
3377
|
+
label: "\u30ED\u30FC\u30EB",
|
|
3378
|
+
sections: {
|
|
3379
|
+
role: {
|
|
3380
|
+
label: "\u30ED\u30FC\u30EB",
|
|
3381
|
+
description: "\u30ED\u30FC\u30EB\u306F\u30EC\u30B3\u30FC\u30C9\u5171\u6709\u306B\u4F7F\u3046\u968E\u5C64\u3092\u69CB\u6210\uFF08sales VP \u2192 sales mgr \u2192 sales rep\uFF09\u3002\u6A29\u9650\u81EA\u4F53\u306F Permission Sets \u3068 Profiles \u306B\u5B58\u5728\u3002"
|
|
3382
|
+
}
|
|
3383
|
+
},
|
|
3384
|
+
fields: {
|
|
3385
|
+
name: {
|
|
3386
|
+
helpText: "snake_case"
|
|
3387
|
+
},
|
|
3388
|
+
parent: {
|
|
3389
|
+
helpText: "\u89AA\u30ED\u30FC\u30EB\u306E\u30DE\u30B7\u30F3\u540D\uFF08Reports To\uFF09"
|
|
3390
|
+
}
|
|
3391
|
+
}
|
|
3392
|
+
},
|
|
3393
|
+
agent: {
|
|
3394
|
+
label: "AI \u30A8\u30FC\u30B8\u30A7\u30F3\u30C8",
|
|
3395
|
+
sections: {
|
|
3396
|
+
identity: {
|
|
3397
|
+
label: "ID",
|
|
3398
|
+
description: "\u30E6\u30FC\u30B6\u30FC\u304B\u3089\u898B\u305F\u3053\u306E\u30A8\u30FC\u30B8\u30A7\u30F3\u30C8\u306E\u8868\u793A\u3068\u53C2\u7167\u3002"
|
|
3399
|
+
},
|
|
3400
|
+
ai_configuration: {
|
|
3401
|
+
label: "AI \u8A2D\u5B9A",
|
|
3402
|
+
description: "\u30E2\u30C7\u30EB\u9078\u629E\u3001\u6307\u793A\u3001\u8A08\u753B\u3001\u30E1\u30E2\u30EA\u3002"
|
|
3403
|
+
},
|
|
3404
|
+
capabilities: {
|
|
3405
|
+
label: "\u6A5F\u80FD",
|
|
3406
|
+
description: "\u30A8\u30FC\u30B8\u30A7\u30F3\u30C8\u304C\u4F7F\u7528\u3067\u304D\u308B\u30B9\u30AD\u30EB\u3001\u30C4\u30FC\u30EB\u3001\u30CA\u30EC\u30C3\u30B8\u30BD\u30FC\u30B9\u3002"
|
|
3407
|
+
},
|
|
3408
|
+
access: {
|
|
3409
|
+
label: "\u30A2\u30AF\u30BB\u30B9\u3068\u30BB\u30AD\u30E5\u30EA\u30C6\u30A3",
|
|
3410
|
+
description: "\u3053\u306E\u30A8\u30FC\u30B8\u30A7\u30F3\u30C8\u3092\u4F7F\u7528\u3067\u304D\u308B\u30E6\u30FC\u30B6\u30FC\u3068\u9069\u7528\u3059\u308B\u5B89\u5168\u5BFE\u7B56\u3002"
|
|
3411
|
+
}
|
|
3412
|
+
},
|
|
3413
|
+
fields: {
|
|
3414
|
+
name: {
|
|
3415
|
+
helpText: "\u4E00\u610F\u8B58\u5225\u5B50\uFF08snake_case\uFF09"
|
|
3416
|
+
},
|
|
3417
|
+
label: {
|
|
3418
|
+
helpText: '\u8868\u793A\u540D\uFF08\u4F8B: "Sales Assistant"\uFF09'
|
|
3419
|
+
},
|
|
3420
|
+
role: {
|
|
3421
|
+
helpText: '\u30A8\u30FC\u30B8\u30A7\u30F3\u30C8\u30DA\u30EB\u30BD\u30CA\uFF08\u4F8B: "Customer Support Specialist"\uFF09'
|
|
3422
|
+
},
|
|
3423
|
+
avatar: {
|
|
3424
|
+
helpText: "\u30A2\u30D0\u30BF\u30FC\u753B\u50CF URL"
|
|
3425
|
+
},
|
|
3426
|
+
active: {
|
|
3427
|
+
helpText: "\u3053\u306E\u30A8\u30FC\u30B8\u30A7\u30F3\u30C8\u306E\u6709\u52B9/\u7121\u52B9"
|
|
3428
|
+
},
|
|
3429
|
+
instructions: {
|
|
3430
|
+
helpText: "\u30B7\u30B9\u30C6\u30E0\u30D7\u30ED\u30F3\u30D7\u30C8 \u2014 \u30A8\u30FC\u30B8\u30A7\u30F3\u30C8\u306E\u632F\u308B\u821E\u3044\u3068\u53EF\u80FD\u306A\u64CD\u4F5C\u3092\u6307\u5B9A"
|
|
3431
|
+
},
|
|
3432
|
+
model: {
|
|
3433
|
+
helpText: "AI \u30E2\u30C7\u30EB\u8A2D\u5B9A\uFF08provider, model name, temperature \u306A\u3069\uFF09"
|
|
3434
|
+
},
|
|
3435
|
+
planning: {
|
|
3436
|
+
helpText: "\u81EA\u5F8B\u63A8\u8AD6\u8A2D\u5B9A\uFF08strategy, max iterations, replan\uFF09"
|
|
3437
|
+
},
|
|
3438
|
+
memory: {
|
|
3439
|
+
helpText: "\u30E1\u30E2\u30EA\u7BA1\u7406\uFF08short-term, long-term, reflection\uFF09"
|
|
3440
|
+
},
|
|
3441
|
+
lifecycle: {
|
|
3442
|
+
helpText: "\u4F1A\u8A71\u30D5\u30ED\u30FC\u3092\u5B9A\u7FA9\u3059\u308B\u30B9\u30C6\u30FC\u30C8\u30DE\u30B7\u30F3"
|
|
3443
|
+
},
|
|
3444
|
+
skills: {
|
|
3445
|
+
helpText: "\u30B9\u30AD\u30EB\u540D\uFF08Agent\u2192Skill\u2192Tool \u30A2\u30FC\u30AD\u30C6\u30AF\u30C1\u30E3\uFF09"
|
|
3446
|
+
},
|
|
3447
|
+
tools: {
|
|
3448
|
+
helpText: "\u76F4\u63A5\u30C4\u30FC\u30EB\u53C2\u7167\uFF08\u30EC\u30AC\u30B7\u30FC\u30E2\u30FC\u30C9\uFF09"
|
|
3449
|
+
},
|
|
3450
|
+
knowledge: {
|
|
3451
|
+
helpText: "RAG \u30CA\u30EC\u30C3\u30B8\u30A2\u30AF\u30BB\u30B9\u8A2D\u5B9A"
|
|
3452
|
+
},
|
|
3453
|
+
visibility: {
|
|
3454
|
+
helpText: "\u30B9\u30B3\u30FC\u30D7: global, organization, \u307E\u305F\u306F private"
|
|
3455
|
+
},
|
|
3456
|
+
access: {
|
|
3457
|
+
helpText: "\u3053\u306E\u30A8\u30FC\u30B8\u30A7\u30F3\u30C8\u3068\u30C1\u30E3\u30C3\u30C8\u53EF\u80FD\u306A\u30E6\u30FC\u30B6\u30FC ID \u307E\u305F\u306F\u30ED\u30FC\u30EB\u540D"
|
|
3458
|
+
},
|
|
3459
|
+
permissions: {
|
|
3460
|
+
helpText: "\u3053\u306E\u30A8\u30FC\u30B8\u30A7\u30F3\u30C8\u306E\u4F7F\u7528\u306B\u5FC5\u8981\u306A\u6A29\u9650"
|
|
3461
|
+
},
|
|
3462
|
+
tenantId: {
|
|
3463
|
+
helpText: "\u7279\u5B9A organization ID \u306B\u5236\u9650"
|
|
3464
|
+
},
|
|
3465
|
+
guardrails: {
|
|
3466
|
+
helpText: "\u5B89\u5168\u30EB\u30FC\u30EB\u3068\u30B3\u30F3\u30C6\u30F3\u30C4\u30DD\u30EA\u30B7\u30FC"
|
|
3467
|
+
}
|
|
3468
|
+
}
|
|
3469
|
+
},
|
|
3470
|
+
tool: {
|
|
3471
|
+
label: "AI \u30C4\u30FC\u30EB",
|
|
3472
|
+
sections: {
|
|
3473
|
+
basics: {
|
|
3474
|
+
label: "\u57FA\u672C",
|
|
3475
|
+
description: "\u30C4\u30FC\u30EB ID \u3068 AI \u5411\u3051\u8AAC\u660E\u3002"
|
|
3476
|
+
},
|
|
3477
|
+
schemas: {
|
|
3478
|
+
label: "\u30B9\u30AD\u30FC\u30DE",
|
|
3479
|
+
description: "\u30C4\u30FC\u30EB\u304C\u53D7\u3051\u53D6\u308B\u5165\u529B\u3068\u51FA\u529B\u306E\u5F62\u72B6\u3002"
|
|
3480
|
+
},
|
|
3481
|
+
access_and_safety: {
|
|
3482
|
+
label: "\u30A2\u30AF\u30BB\u30B9\u3068\u5B89\u5168\u6027",
|
|
3483
|
+
description: "\u6A29\u9650\u3068\u78BA\u8A8D\u8981\u4EF6\u3002"
|
|
3484
|
+
}
|
|
3485
|
+
},
|
|
3486
|
+
fields: {
|
|
3487
|
+
name: {
|
|
3488
|
+
helpText: "\u4E00\u610F\u8B58\u5225\u5B50\uFF08snake_case\uFF09"
|
|
3489
|
+
},
|
|
3490
|
+
label: {
|
|
3491
|
+
helpText: "Studio UI \u5411\u3051\u8868\u793A\u540D"
|
|
3492
|
+
},
|
|
3493
|
+
description: {
|
|
3494
|
+
helpText: "AI \u306B\u3053\u306E\u30C4\u30FC\u30EB\u306E\u4F7F\u7528\u30BF\u30A4\u30DF\u30F3\u30B0\u3092\u6307\u793A \u2014 \u5177\u4F53\u7684\u306B\uFF01"
|
|
3495
|
+
},
|
|
3496
|
+
category: {
|
|
3497
|
+
helpText: "\u30C4\u30FC\u30EB\u30AB\u30C6\u30B4\u30EA\uFF08data, action, flow, integration \u306A\u3069\uFF09"
|
|
3498
|
+
},
|
|
3499
|
+
objectName: {
|
|
3500
|
+
helpText: "\u95A2\u9023\u30AA\u30D6\u30B8\u30A7\u30AF\u30C8\uFF08\u3053\u306E\u30C4\u30FC\u30EB\u304C\u7279\u5B9A\u30AA\u30D6\u30B8\u30A7\u30AF\u30C8\u3092\u6271\u3046\u5834\u5408\uFF09"
|
|
3501
|
+
},
|
|
3502
|
+
active: {
|
|
3503
|
+
helpText: "\u3053\u306E\u30C4\u30FC\u30EB\u306E\u6709\u52B9/\u7121\u52B9"
|
|
3504
|
+
},
|
|
3505
|
+
builtIn: {
|
|
3506
|
+
helpText: "\u30D7\u30E9\u30C3\u30C8\u30D5\u30A9\u30FC\u30E0\u7D44\u307F\u8FBC\u307F\u30C4\u30FC\u30EB\uFF08\u30E6\u30FC\u30B6\u30FC\u5B9A\u7FA9\u3068\u306E\u5BFE\u6BD4\uFF09"
|
|
3507
|
+
},
|
|
3508
|
+
parameters: {
|
|
3509
|
+
helpText: '\u5165\u529B\u30D1\u30E9\u30E1\u30FC\u30BF\u30FC \u2014 \u6B21\u306E\u3088\u3046\u306A\u30D7\u30ED\u30D1\u30C6\u30A3\u3092\u5B9A\u7FA9: {name: {type: "string", description: "..."}}'
|
|
3510
|
+
},
|
|
3511
|
+
outputSchema: {
|
|
3512
|
+
helpText: "\u691C\u8A3C\u7528\u51FA\u529B\u30B9\u30AD\u30FC\u30DE\uFF08\u4EFB\u610F\uFF09"
|
|
3513
|
+
},
|
|
3514
|
+
requiresConfirmation: {
|
|
3515
|
+
helpText: "\u5B9F\u884C\u524D\u306B\u30E6\u30FC\u30B6\u30FC\u627F\u8A8D\u3092\u6C42\u3081\u308B\uFF08\u7834\u58CA\u7684\u30A2\u30AF\u30B7\u30E7\u30F3\u7528\uFF09"
|
|
3516
|
+
},
|
|
3517
|
+
permissions: {
|
|
3518
|
+
helpText: "\u3053\u306E\u30C4\u30FC\u30EB\u306E\u4F7F\u7528\u306B\u5FC5\u8981\u306A\u6A29\u9650"
|
|
3519
|
+
}
|
|
3520
|
+
}
|
|
3521
|
+
},
|
|
3522
|
+
skill: {
|
|
3523
|
+
label: "AI \u30B9\u30AD\u30EB",
|
|
3524
|
+
sections: {
|
|
3525
|
+
basics: {
|
|
3526
|
+
label: "\u57FA\u672C",
|
|
3527
|
+
description: "\u30B9\u30AD\u30EB ID \u3068\u4EBA\u9593\u5411\u3051\u8AAC\u660E\u3002"
|
|
3528
|
+
},
|
|
3529
|
+
ai_instructions: {
|
|
3530
|
+
label: "AI \u6307\u793A",
|
|
3531
|
+
description: "\u30A8\u30FC\u30B8\u30A7\u30F3\u30C8\u304C\u3053\u306E\u30B9\u30AD\u30EB\u3067\u63A8\u8AD6\u3059\u308B\u65B9\u6CD5\u3002"
|
|
3532
|
+
},
|
|
3533
|
+
triggers: {
|
|
3534
|
+
label: "\u30C8\u30EA\u30AC\u30FC",
|
|
3535
|
+
description: "\u3053\u306E\u30B9\u30AD\u30EB\u306E\u8D77\u52D5\u30BF\u30A4\u30DF\u30F3\u30B0\u3002"
|
|
3536
|
+
},
|
|
3537
|
+
access: {
|
|
3538
|
+
label: "\u30A2\u30AF\u30BB\u30B9",
|
|
3539
|
+
description: "\u3053\u306E\u30B9\u30AD\u30EB\u306E\u4F7F\u7528\u306B\u5FC5\u8981\u306A\u6A29\u9650\u3002"
|
|
3540
|
+
}
|
|
3541
|
+
},
|
|
3542
|
+
fields: {
|
|
3543
|
+
name: {
|
|
3544
|
+
helpText: "\u4E00\u610F\u8B58\u5225\u5B50\uFF08snake_case\uFF09"
|
|
3545
|
+
},
|
|
3546
|
+
label: {
|
|
3547
|
+
helpText: '\u8868\u793A\u540D\uFF08\u4F8B: "Case Management"\uFF09'
|
|
3548
|
+
},
|
|
3549
|
+
description: {
|
|
3550
|
+
helpText: "\u3053\u306E\u30B9\u30AD\u30EB\u306E\u51E6\u7406\u5185\u5BB9"
|
|
3551
|
+
},
|
|
3552
|
+
active: {
|
|
3553
|
+
helpText: "\u3053\u306E\u30B9\u30AD\u30EB\u306E\u6709\u52B9/\u7121\u52B9"
|
|
3554
|
+
},
|
|
3555
|
+
instructions: {
|
|
3556
|
+
helpText: "AI \u3078\u306E\u6307\u793A \u2014 \u3053\u308C\u3089\u306E\u30C4\u30FC\u30EB\u3092\u4F75\u7528\u3059\u308B\u65B9\u6CD5\u3092\u6307\u5B9A"
|
|
3557
|
+
},
|
|
3558
|
+
tools: {
|
|
3559
|
+
helpText: "\u30C4\u30FC\u30EB\u540D\uFF08\u30EF\u30A4\u30EB\u30C9\u30AB\u30FC\u30C9\u5BFE\u5FDC: action_*\uFF09"
|
|
3560
|
+
},
|
|
3561
|
+
triggerPhrases: {
|
|
3562
|
+
helpText: "\u3053\u306E\u30B9\u30AD\u30EB\u3092\u8D77\u52D5\u3059\u308B\u81EA\u7136\u8A00\u8A9E\u30D5\u30EC\u30FC\u30BA"
|
|
3563
|
+
},
|
|
3564
|
+
triggerConditions: {
|
|
3565
|
+
helpText: '\u30D7\u30ED\u30B0\u30E9\u30E0\u6761\u4EF6\uFF08\u4F8B: objectName == "case"\uFF09'
|
|
3566
|
+
},
|
|
3567
|
+
permissions: {
|
|
3568
|
+
helpText: "\u3053\u306E\u30B9\u30AD\u30EB\u306E\u4F7F\u7528\u306B\u5FC5\u8981\u306A\u6A29\u9650"
|
|
3569
|
+
}
|
|
3570
|
+
}
|
|
3571
|
+
}
|
|
3572
|
+
};
|
|
3573
|
+
|
|
3574
|
+
// src/apps/translations/es-ES.metadata-forms.generated.ts
|
|
3575
|
+
var esESMetadataForms = {
|
|
3576
|
+
object: {
|
|
3577
|
+
label: "Objeto",
|
|
3578
|
+
sections: {
|
|
3579
|
+
basics: {
|
|
3580
|
+
label: "Aspectos b\xE1sicos",
|
|
3581
|
+
description: "Identidad, etiquetas y taxonom\xEDa."
|
|
3582
|
+
},
|
|
3583
|
+
fields: {
|
|
3584
|
+
label: "Campos",
|
|
3585
|
+
description: "Define el modelo de datos \u2014 cada fila se convierte en una columna de la tabla de base de datos."
|
|
3586
|
+
},
|
|
3587
|
+
capabilities: {
|
|
3588
|
+
label: "Capacidades",
|
|
3589
|
+
description: "Funciones del sistema y exposici\xF3n de API."
|
|
3590
|
+
},
|
|
3591
|
+
advanced: {
|
|
3592
|
+
label: "Avanzado",
|
|
3593
|
+
description: "M\xE1quinas de estado, acciones y almacenamiento."
|
|
3594
|
+
}
|
|
3595
|
+
},
|
|
3596
|
+
fields: {
|
|
3597
|
+
name: {
|
|
3598
|
+
helpText: "Identificador \xFAnico snake_case (inmutable tras la creaci\xF3n)"
|
|
3599
|
+
},
|
|
3600
|
+
label: {
|
|
3601
|
+
helpText: 'Nombre mostrado en singular (p. ej. "Account")'
|
|
3602
|
+
},
|
|
3603
|
+
pluralLabel: {
|
|
3604
|
+
helpText: 'Nombre mostrado en plural (p. ej. "Accounts")'
|
|
3605
|
+
},
|
|
3606
|
+
icon: {
|
|
3607
|
+
helpText: 'Nombre de icono Lucide (p. ej. "building", "users")'
|
|
3608
|
+
},
|
|
3609
|
+
description: {
|
|
3610
|
+
helpText: "Documentaci\xF3n para desarrolladores"
|
|
3611
|
+
},
|
|
3612
|
+
tags: {
|
|
3613
|
+
helpText: 'Etiquetas de categorizaci\xF3n (p. ej. "sales", "system")'
|
|
3614
|
+
},
|
|
3615
|
+
active: {
|
|
3616
|
+
helpText: "Indica si el objeto est\xE1 activo y usable"
|
|
3617
|
+
},
|
|
3618
|
+
isSystem: {
|
|
3619
|
+
helpText: "Objeto de sistema (protegido contra eliminaci\xF3n)"
|
|
3620
|
+
},
|
|
3621
|
+
abstract: {
|
|
3622
|
+
helpText: "Base abstracta (no se puede instanciar)"
|
|
3623
|
+
},
|
|
3624
|
+
fields: {
|
|
3625
|
+
helpText: "A\xF1ade las columnas que almacenar\xE1 este objeto"
|
|
3626
|
+
},
|
|
3627
|
+
"fields.name": {
|
|
3628
|
+
helpText: "Identificador snake_case"
|
|
3629
|
+
},
|
|
3630
|
+
"fields.label": {
|
|
3631
|
+
helpText: "Etiqueta mostrada"
|
|
3632
|
+
},
|
|
3633
|
+
"fields.type": {
|
|
3634
|
+
helpText: "Tipo de campo"
|
|
3635
|
+
},
|
|
3636
|
+
"fields.reference": {
|
|
3637
|
+
helpText: "Objeto de destino (para lookup/master_detail)"
|
|
3638
|
+
},
|
|
3639
|
+
capabilities: {
|
|
3640
|
+
helpText: "Activa/desactiva funciones del sistema"
|
|
3641
|
+
},
|
|
3642
|
+
datasource: {
|
|
3643
|
+
helpText: 'ID de fuente de datos de destino (valor predeterminado: "default")'
|
|
3644
|
+
}
|
|
3645
|
+
}
|
|
3646
|
+
},
|
|
3647
|
+
field: {
|
|
3648
|
+
label: "Campo",
|
|
3649
|
+
sections: {
|
|
3650
|
+
basics: {
|
|
3651
|
+
label: "Aspectos b\xE1sicos",
|
|
3652
|
+
description: "Identidad y restricciones b\xE1sicas del campo."
|
|
3653
|
+
},
|
|
3654
|
+
configuration: {
|
|
3655
|
+
label: "Configuraci\xF3n",
|
|
3656
|
+
description: "Ajustes espec\xEDficos del tipo de campo (los bloques visibles dependen del tipo elegido)."
|
|
3657
|
+
},
|
|
3658
|
+
formula: {
|
|
3659
|
+
label: "F\xF3rmula y calculado",
|
|
3660
|
+
description: "Valores calculados y res\xFAmenes roll-up."
|
|
3661
|
+
},
|
|
3662
|
+
advanced: {
|
|
3663
|
+
label: "Avanzado",
|
|
3664
|
+
description: "Ajustes de base de datos, UI, auditor\xEDa y seguridad."
|
|
3665
|
+
}
|
|
3666
|
+
},
|
|
3667
|
+
fields: {
|
|
3668
|
+
name: {
|
|
3669
|
+
helpText: "Identificador \xFAnico (snake_case, inmutable tras la creaci\xF3n)"
|
|
3670
|
+
},
|
|
3671
|
+
label: {
|
|
3672
|
+
helpText: "Nombre mostrado a los usuarios"
|
|
3673
|
+
},
|
|
3674
|
+
type: {
|
|
3675
|
+
helpText: "Tipo de datos de este campo"
|
|
3676
|
+
},
|
|
3677
|
+
group: {
|
|
3678
|
+
helpText: "Nombre de grupo para el dise\xF1o del formulario"
|
|
3679
|
+
},
|
|
3680
|
+
description: {
|
|
3681
|
+
helpText: "Texto de ayuda mostrado a los usuarios"
|
|
3682
|
+
},
|
|
3683
|
+
required: {
|
|
3684
|
+
helpText: "El usuario debe proporcionar un valor"
|
|
3685
|
+
},
|
|
3686
|
+
unique: {
|
|
3687
|
+
helpText: "No puede haber dos registros con el mismo valor"
|
|
3688
|
+
},
|
|
3689
|
+
multiple: {
|
|
3690
|
+
helpText: "Permite varios valores (para select/lookup)"
|
|
3691
|
+
},
|
|
3692
|
+
defaultValue: {
|
|
3693
|
+
helpText: "Valor predeterminado para registros nuevos"
|
|
3694
|
+
},
|
|
3695
|
+
minLength: {
|
|
3696
|
+
helpText: "Longitud m\xEDnima de caracteres"
|
|
3697
|
+
},
|
|
3698
|
+
maxLength: {
|
|
3699
|
+
helpText: "Longitud m\xE1xima de caracteres"
|
|
3700
|
+
},
|
|
3701
|
+
min: {
|
|
3702
|
+
helpText: "Valor m\xEDnimo"
|
|
3703
|
+
},
|
|
3704
|
+
max: {
|
|
3705
|
+
helpText: "Valor m\xE1ximo"
|
|
3706
|
+
},
|
|
3707
|
+
precision: {
|
|
3708
|
+
helpText: "Decimales (p. ej., 2 para $10.50)"
|
|
3709
|
+
},
|
|
3710
|
+
scale: {
|
|
3711
|
+
helpText: "N\xFAmero de d\xEDgitos decimales"
|
|
3712
|
+
},
|
|
3713
|
+
options: {
|
|
3714
|
+
helpText: "Opciones disponibles (pares label/value)"
|
|
3715
|
+
},
|
|
3716
|
+
reference: {
|
|
3717
|
+
helpText: "Nombre del objeto referenciado"
|
|
3718
|
+
},
|
|
3719
|
+
referenceFilters: {
|
|
3720
|
+
helpText: 'Expresiones de filtro (p. ej., "active = true")'
|
|
3721
|
+
},
|
|
3722
|
+
deleteBehavior: {
|
|
3723
|
+
helpText: "Qu\xE9 ocurre cuando se elimina el registro referenciado"
|
|
3724
|
+
},
|
|
3725
|
+
expression: {
|
|
3726
|
+
helpText: "Expresi\xF3n CEL para calcular este campo (lo hace de solo lectura)"
|
|
3727
|
+
},
|
|
3728
|
+
summaryOperations: {
|
|
3729
|
+
helpText: "Configuraci\xF3n de resumen roll-up (para relaciones padre-hijo)"
|
|
3730
|
+
},
|
|
3731
|
+
cached: {
|
|
3732
|
+
helpText: "Configuraci\xF3n de cach\xE9 para campos calculados"
|
|
3733
|
+
},
|
|
3734
|
+
columnName: {
|
|
3735
|
+
helpText: "Nombre de columna f\xEDsica en la base de datos (por defecto, el nombre del campo)"
|
|
3736
|
+
},
|
|
3737
|
+
index: {
|
|
3738
|
+
helpText: "Crea un \xEDndice de base de datos para consultas m\xE1s r\xE1pidas"
|
|
3739
|
+
},
|
|
3740
|
+
externalId: {
|
|
3741
|
+
helpText: "Marca como ID externo para operaciones upsert"
|
|
3742
|
+
},
|
|
3743
|
+
readonly: {
|
|
3744
|
+
helpText: "El campo es de solo lectura en formularios"
|
|
3745
|
+
},
|
|
3746
|
+
hidden: {
|
|
3747
|
+
helpText: "Oculta el campo en las vistas UI predeterminadas"
|
|
3748
|
+
},
|
|
3749
|
+
searchable: {
|
|
3750
|
+
helpText: "Incluye en los resultados de b\xFAsqueda global"
|
|
3751
|
+
},
|
|
3752
|
+
sortable: {
|
|
3753
|
+
helpText: "Permite ordenar listas por este campo"
|
|
3754
|
+
},
|
|
3755
|
+
auditTrail: {
|
|
3756
|
+
helpText: "Registra cambios detallados con usuario y marca temporal"
|
|
3757
|
+
},
|
|
3758
|
+
trackFeedHistory: {
|
|
3759
|
+
helpText: "Muestra cambios en el feed de actividad"
|
|
3760
|
+
},
|
|
3761
|
+
encryptionConfig: {
|
|
3762
|
+
helpText: "Cifrado a nivel de campo (GDPR/HIPAA/PCI-DSS)"
|
|
3763
|
+
},
|
|
3764
|
+
maskingRule: {
|
|
3765
|
+
helpText: "Reglas de enmascaramiento de datos para protecci\xF3n de PII"
|
|
3766
|
+
}
|
|
3767
|
+
}
|
|
3768
|
+
},
|
|
3769
|
+
trigger: {
|
|
3770
|
+
label: "Disparador"
|
|
3771
|
+
},
|
|
3772
|
+
validation: {
|
|
3773
|
+
label: "Regla de validaci\xF3n"
|
|
3774
|
+
},
|
|
3775
|
+
hook: {
|
|
3776
|
+
label: "Hook",
|
|
3777
|
+
sections: {
|
|
3778
|
+
identity: {
|
|
3779
|
+
label: "Identidad",
|
|
3780
|
+
description: "Qu\xE9 es este hook y cu\xE1ndo se dispara."
|
|
3781
|
+
},
|
|
3782
|
+
body: {
|
|
3783
|
+
label: "Cuerpo",
|
|
3784
|
+
description: "Expresi\xF3n en l\xEDnea o JavaScript en sandbox ejecutado cuando se dispara el hook."
|
|
3785
|
+
},
|
|
3786
|
+
legacy_handler: {
|
|
3787
|
+
label: "Manejador heredado",
|
|
3788
|
+
description: "Referencia de nombre de funci\xF3n \u2014 obsoleta en favor de body."
|
|
3789
|
+
},
|
|
3790
|
+
execution: {
|
|
3791
|
+
label: "Ejecuci\xF3n"
|
|
3792
|
+
}
|
|
3793
|
+
},
|
|
3794
|
+
fields: {
|
|
3795
|
+
name: {
|
|
3796
|
+
helpText: "Identificador snake_case (inmutable tras la creaci\xF3n)"
|
|
3797
|
+
},
|
|
3798
|
+
object: {
|
|
3799
|
+
helpText: 'Nombre del objeto de destino (o "*" para global)'
|
|
3800
|
+
},
|
|
3801
|
+
events: {
|
|
3802
|
+
helpText: "Eventos de ciclo de vida (p. ej. beforeInsert, afterUpdate)"
|
|
3803
|
+
},
|
|
3804
|
+
priority: {
|
|
3805
|
+
helpText: "Los n\xFAmeros menores se ejecutan primero"
|
|
3806
|
+
},
|
|
3807
|
+
body: {
|
|
3808
|
+
helpText: "Una expresi\xF3n L1 o un body JS L2 en sandbox"
|
|
3809
|
+
},
|
|
3810
|
+
"body.language": {
|
|
3811
|
+
helpText: "expression = f\xF3rmula pura; js = JavaScript en sandbox"
|
|
3812
|
+
},
|
|
3813
|
+
"body.source": {
|
|
3814
|
+
helpText: "C\xF3digo fuente del body de la funci\xF3n \u2014 sin imports de nivel superior"
|
|
3815
|
+
},
|
|
3816
|
+
"body.capabilities": {
|
|
3817
|
+
helpText: "API ctx permitidas (api.read, api.write, crypto.uuid, log, \u2026)"
|
|
3818
|
+
},
|
|
3819
|
+
"body.timeoutMs": {
|
|
3820
|
+
helpText: "Tiempo de espera por invocaci\xF3n (ms)"
|
|
3821
|
+
},
|
|
3822
|
+
handler: {
|
|
3823
|
+
helpText: "Nombre de funci\xF3n manejadora (obsoleto \u2014 preferir `body`)"
|
|
3824
|
+
},
|
|
3825
|
+
async: {
|
|
3826
|
+
helpText: "Ejecutar en segundo plano, sin bloquear la transacci\xF3n"
|
|
3827
|
+
},
|
|
3828
|
+
condition: {
|
|
3829
|
+
helpText: "F\xF3rmula opcional \u2014 omite el hook cuando eval\xFAa a false"
|
|
3830
|
+
}
|
|
3831
|
+
}
|
|
3832
|
+
},
|
|
3833
|
+
view: {
|
|
3834
|
+
label: "Vista",
|
|
3835
|
+
sections: {
|
|
3836
|
+
basics: {
|
|
3837
|
+
label: "Aspectos b\xE1sicos",
|
|
3838
|
+
description: "Identidad y superficie principal."
|
|
3839
|
+
},
|
|
3840
|
+
columns_filters: {
|
|
3841
|
+
label: "Columnas y filtros",
|
|
3842
|
+
description: "Qu\xE9 filas se muestran y c\xF3mo las filtran los usuarios."
|
|
3843
|
+
},
|
|
3844
|
+
table_options: {
|
|
3845
|
+
label: "Opciones de tabla",
|
|
3846
|
+
description: "Opciones de visualizaci\xF3n solo de cuadr\xEDcula."
|
|
3847
|
+
},
|
|
3848
|
+
kanban: {
|
|
3849
|
+
label: "Kanban",
|
|
3850
|
+
description: "Configuraci\xF3n de tablero espec\xEDfica de Kanban."
|
|
3851
|
+
},
|
|
3852
|
+
calendar: {
|
|
3853
|
+
label: "Calendario",
|
|
3854
|
+
description: "Configuraci\xF3n espec\xEDfica de calendario."
|
|
3855
|
+
},
|
|
3856
|
+
gantt: {
|
|
3857
|
+
label: "Gantt",
|
|
3858
|
+
description: "Configuraci\xF3n espec\xEDfica de Gantt."
|
|
3859
|
+
},
|
|
3860
|
+
gallery: {
|
|
3861
|
+
label: "Galer\xEDa",
|
|
3862
|
+
description: "Configuraci\xF3n espec\xEDfica de galer\xEDa."
|
|
3863
|
+
},
|
|
3864
|
+
timeline: {
|
|
3865
|
+
label: "Cronolog\xEDa",
|
|
3866
|
+
description: "Configuraci\xF3n espec\xEDfica de cronolog\xEDa."
|
|
3867
|
+
},
|
|
3868
|
+
chart: {
|
|
3869
|
+
label: "Gr\xE1fico",
|
|
3870
|
+
description: "Configuraci\xF3n espec\xEDfica de gr\xE1fico."
|
|
3871
|
+
},
|
|
3872
|
+
navigation_sharing: {
|
|
3873
|
+
label: "Navegaci\xF3n y uso compartido",
|
|
3874
|
+
description: "D\xF3nde aparece esta vista y qui\xE9n puede verla."
|
|
3875
|
+
}
|
|
3876
|
+
},
|
|
3877
|
+
fields: {
|
|
3878
|
+
name: {
|
|
3879
|
+
helpText: "snake_case, \xFAnico por environment"
|
|
3880
|
+
},
|
|
3881
|
+
type: {
|
|
3882
|
+
helpText: "Superficie principal de la vista"
|
|
3883
|
+
},
|
|
3884
|
+
data: {
|
|
3885
|
+
helpText: 'Fuente de datos \u2014 p. ej. {"provider":"object","object":"task"}'
|
|
3886
|
+
},
|
|
3887
|
+
columns: {
|
|
3888
|
+
helpText: "Columnas que mostrar (nombres de campo del objeto seleccionado)"
|
|
3889
|
+
},
|
|
3890
|
+
filter: {
|
|
3891
|
+
helpText: "Condiciones de filtro"
|
|
3892
|
+
},
|
|
3893
|
+
sort: {
|
|
3894
|
+
helpText: "Orden predeterminado"
|
|
3895
|
+
},
|
|
3896
|
+
searchableFields: {
|
|
3897
|
+
helpText: "Nombres de campo disponibles para b\xFAsqueda r\xE1pida"
|
|
3898
|
+
},
|
|
3899
|
+
filterableFields: {
|
|
3900
|
+
helpText: "Nombres de campo disponibles para filtrado"
|
|
3901
|
+
}
|
|
3902
|
+
}
|
|
3903
|
+
},
|
|
3904
|
+
page: {
|
|
3905
|
+
label: "P\xE1gina",
|
|
3906
|
+
sections: {
|
|
3907
|
+
basics: {
|
|
3908
|
+
label: "Aspectos b\xE1sicos",
|
|
3909
|
+
description: "Identidad y plantilla de p\xE1gina."
|
|
3910
|
+
},
|
|
3911
|
+
data_context: {
|
|
3912
|
+
label: "Contexto de datos",
|
|
3913
|
+
description: "Vinculaci\xF3n de registros y estado local de p\xE1gina."
|
|
3914
|
+
},
|
|
3915
|
+
layout: {
|
|
3916
|
+
label: "Dise\xF1o",
|
|
3917
|
+
description: "Regiones de p\xE1gina y componentes colocados en ellas."
|
|
3918
|
+
},
|
|
3919
|
+
advanced: {
|
|
3920
|
+
label: "Avanzado",
|
|
3921
|
+
description: "Activaci\xF3n, audiencia y accesibilidad."
|
|
3922
|
+
}
|
|
3923
|
+
},
|
|
3924
|
+
fields: {
|
|
3925
|
+
name: {
|
|
3926
|
+
helpText: "Identificador \xFAnico (snake_case)"
|
|
3927
|
+
},
|
|
3928
|
+
label: {
|
|
3929
|
+
helpText: "T\xEDtulo de p\xE1gina mostrado a los usuarios"
|
|
3930
|
+
},
|
|
3931
|
+
icon: {
|
|
3932
|
+
helpText: "Icono para el men\xFA de navegaci\xF3n"
|
|
3933
|
+
},
|
|
3934
|
+
type: {
|
|
3935
|
+
helpText: "Tipo de p\xE1gina (record, home, app, dashboard, etc.)"
|
|
3936
|
+
},
|
|
3937
|
+
template: {
|
|
3938
|
+
helpText: 'Plantilla de dise\xF1o (p. ej., "header-sidebar-main")'
|
|
3939
|
+
},
|
|
3940
|
+
description: {
|
|
3941
|
+
helpText: "Descripci\xF3n de p\xE1gina para navegaci\xF3n"
|
|
3942
|
+
},
|
|
3943
|
+
object: {
|
|
3944
|
+
helpText: "Objeto vinculado (para p\xE1ginas Record)"
|
|
3945
|
+
},
|
|
3946
|
+
variables: {
|
|
3947
|
+
helpText: "Variables de estado local de p\xE1gina"
|
|
3948
|
+
},
|
|
3949
|
+
regions: {
|
|
3950
|
+
helpText: "Regiones de dise\xF1o (header, main, sidebar, footer) con componentes"
|
|
3951
|
+
},
|
|
3952
|
+
isDefault: {
|
|
3953
|
+
helpText: "Establece como p\xE1gina predeterminada para este tipo de p\xE1gina"
|
|
3954
|
+
},
|
|
3955
|
+
kind: {
|
|
3956
|
+
helpText: "Modo de anulaci\xF3n de p\xE1gina: full o slotted (para p\xE1ginas record)"
|
|
3957
|
+
},
|
|
3958
|
+
assignedProfiles: {
|
|
3959
|
+
helpText: "Perfiles que pueden acceder a esta p\xE1gina"
|
|
3960
|
+
},
|
|
3961
|
+
aria: {
|
|
3962
|
+
helpText: "Atributos de accesibilidad (etiquetas ARIA, roles)"
|
|
3963
|
+
}
|
|
3964
|
+
}
|
|
3965
|
+
},
|
|
3966
|
+
dashboard: {
|
|
3967
|
+
label: "Panel",
|
|
3968
|
+
sections: {
|
|
3969
|
+
basics: {
|
|
3970
|
+
label: "Aspectos b\xE1sicos",
|
|
3971
|
+
description: "Identidad y descripci\xF3n del panel."
|
|
3972
|
+
},
|
|
3973
|
+
layout: {
|
|
3974
|
+
label: "Dise\xF1o",
|
|
3975
|
+
description: "Tama\xF1o de cuadr\xEDcula y cadencia de actualizaci\xF3n."
|
|
3976
|
+
},
|
|
3977
|
+
widgets: {
|
|
3978
|
+
label: "Widgets",
|
|
3979
|
+
description: "Tarjetas y gr\xE1ficos colocados en la cuadr\xEDcula."
|
|
3980
|
+
},
|
|
3981
|
+
filters: {
|
|
3982
|
+
label: "Filtros",
|
|
3983
|
+
description: "Filtros predeterminados y globales aplicados a todos los widgets."
|
|
3984
|
+
},
|
|
3985
|
+
advanced: {
|
|
3986
|
+
label: "Avanzado",
|
|
3987
|
+
description: "Ajustes de accesibilidad y rendimiento."
|
|
3988
|
+
}
|
|
3989
|
+
},
|
|
3990
|
+
fields: {
|
|
3991
|
+
name: {
|
|
3992
|
+
helpText: "Identificador \xFAnico snake_case"
|
|
3993
|
+
},
|
|
3994
|
+
label: {
|
|
3995
|
+
helpText: "Nombre mostrado"
|
|
3996
|
+
},
|
|
3997
|
+
columns: {
|
|
3998
|
+
helpText: "Columnas de cuadr\xEDcula (predeterminado 12)"
|
|
3999
|
+
},
|
|
4000
|
+
gap: {
|
|
4001
|
+
helpText: "Separaci\xF3n de cuadr\xEDcula (unidades Tailwind)"
|
|
4002
|
+
},
|
|
4003
|
+
refreshInterval: {
|
|
4004
|
+
helpText: "Actualizaci\xF3n autom\xE1tica (segundos)"
|
|
4005
|
+
},
|
|
4006
|
+
header: {
|
|
4007
|
+
helpText: "Configuraci\xF3n de cabecera del panel (title, subtitle, actions)"
|
|
4008
|
+
},
|
|
4009
|
+
widgets: {
|
|
4010
|
+
helpText: "Widgets del panel con posici\xF3n y tama\xF1o"
|
|
4011
|
+
},
|
|
4012
|
+
dateRange: {
|
|
4013
|
+
helpText: "Selector predeterminado de intervalo de fechas"
|
|
4014
|
+
},
|
|
4015
|
+
globalFilters: {
|
|
4016
|
+
helpText: "Filtros aplicados a todos los widgets"
|
|
4017
|
+
},
|
|
4018
|
+
aria: {
|
|
4019
|
+
helpText: "Etiquetas de accesibilidad"
|
|
4020
|
+
},
|
|
4021
|
+
performance: {
|
|
4022
|
+
helpText: "Configuraci\xF3n de cach\xE9 y optimizaci\xF3n"
|
|
4023
|
+
}
|
|
4024
|
+
}
|
|
4025
|
+
},
|
|
4026
|
+
app: {
|
|
4027
|
+
label: "Aplicaci\xF3n",
|
|
4028
|
+
sections: {
|
|
4029
|
+
basics: {
|
|
4030
|
+
label: "Aspectos b\xE1sicos",
|
|
4031
|
+
description: "Identidad y activaci\xF3n de la app."
|
|
4032
|
+
},
|
|
4033
|
+
navigation: {
|
|
4034
|
+
label: "Navegaci\xF3n",
|
|
4035
|
+
description: "Elementos de barra lateral y agrupaci\xF3n de \xE1reas."
|
|
4036
|
+
},
|
|
4037
|
+
content: {
|
|
4038
|
+
label: "Contenido",
|
|
4039
|
+
description: "Objetos y API que usa esta app."
|
|
4040
|
+
},
|
|
4041
|
+
branding: {
|
|
4042
|
+
label: "Marca",
|
|
4043
|
+
description: "Colores de tema y logotipo."
|
|
4044
|
+
},
|
|
4045
|
+
access_and_sharing: {
|
|
4046
|
+
label: "Acceso y uso compartido",
|
|
4047
|
+
description: "Qui\xE9n puede acceder a esta app y c\xF3mo puede incrustarse."
|
|
4048
|
+
}
|
|
4049
|
+
},
|
|
4050
|
+
fields: {
|
|
4051
|
+
name: {
|
|
4052
|
+
helpText: "snake_case, \xFAnico"
|
|
4053
|
+
},
|
|
4054
|
+
icon: {
|
|
4055
|
+
helpText: 'Nombre de icono Lucide (p. ej. "users", "briefcase")'
|
|
4056
|
+
},
|
|
4057
|
+
isDefault: {
|
|
4058
|
+
helpText: "Convierte esta app en la predeterminada para usuarios nuevos"
|
|
4059
|
+
},
|
|
4060
|
+
navigation: {
|
|
4061
|
+
helpText: "\xC1rbol de navegaci\xF3n \u2014 estructura recursiva"
|
|
4062
|
+
},
|
|
4063
|
+
areas: {
|
|
4064
|
+
helpText: "Agrupa elementos en \xE1reas plegables"
|
|
4065
|
+
},
|
|
4066
|
+
homePageId: {
|
|
4067
|
+
helpText: "P\xE1gina de inicio al abrir la app"
|
|
4068
|
+
},
|
|
4069
|
+
mobileNavigation: {
|
|
4070
|
+
helpText: "Configuraci\xF3n de barra de pesta\xF1as inferior para m\xF3vil"
|
|
4071
|
+
},
|
|
4072
|
+
objects: {
|
|
4073
|
+
helpText: "Nombres de objeto que expone esta app"
|
|
4074
|
+
},
|
|
4075
|
+
apis: {
|
|
4076
|
+
helpText: "Definiciones de endpoints API"
|
|
4077
|
+
},
|
|
4078
|
+
defaultAgent: {
|
|
4079
|
+
helpText: "Agente de IA para el bot\xF3n de asistente ambiental"
|
|
4080
|
+
},
|
|
4081
|
+
branding: {
|
|
4082
|
+
helpText: "Colores primario/secundario, logotipo, tema"
|
|
4083
|
+
},
|
|
4084
|
+
requiredPermissions: {
|
|
4085
|
+
helpText: "Permisos necesarios para acceder a esta app"
|
|
4086
|
+
},
|
|
4087
|
+
sharing: {
|
|
4088
|
+
helpText: "Control de acceso p\xFAblico/interno/restringido"
|
|
4089
|
+
},
|
|
4090
|
+
embed: {
|
|
4091
|
+
helpText: "Configuraci\xF3n de incrustaci\xF3n iFrame"
|
|
4092
|
+
},
|
|
4093
|
+
aria: {
|
|
4094
|
+
helpText: "Etiquetas de accesibilidad"
|
|
4095
|
+
}
|
|
4096
|
+
}
|
|
4097
|
+
},
|
|
4098
|
+
action: {
|
|
4099
|
+
label: "Acci\xF3n",
|
|
4100
|
+
sections: {
|
|
4101
|
+
basics: {
|
|
4102
|
+
label: "Aspectos b\xE1sicos",
|
|
4103
|
+
description: "Identidad y presentaci\xF3n de la acci\xF3n."
|
|
4104
|
+
},
|
|
4105
|
+
behavior: {
|
|
4106
|
+
label: "Comportamiento",
|
|
4107
|
+
description: "Configura qu\xE9 ocurre cuando se dispara la acci\xF3n."
|
|
4108
|
+
},
|
|
4109
|
+
placement: {
|
|
4110
|
+
label: "Ubicaci\xF3n",
|
|
4111
|
+
description: "D\xF3nde y cu\xE1ndo aparece el bot\xF3n de acci\xF3n."
|
|
4112
|
+
},
|
|
4113
|
+
advanced: {
|
|
4114
|
+
label: "Avanzado",
|
|
4115
|
+
description: "Operaciones masivas, exposici\xF3n a IA y forma de solicitud API."
|
|
4116
|
+
}
|
|
4117
|
+
},
|
|
4118
|
+
fields: {
|
|
4119
|
+
name: {
|
|
4120
|
+
helpText: "Identificador \xFAnico (snake_case)"
|
|
4121
|
+
},
|
|
4122
|
+
label: {
|
|
4123
|
+
helpText: "Texto de bot\xF3n mostrado a los usuarios"
|
|
4124
|
+
},
|
|
4125
|
+
objectName: {
|
|
4126
|
+
helpText: "Objeto al que pertenece esta acci\xF3n (opcional)"
|
|
4127
|
+
},
|
|
4128
|
+
icon: {
|
|
4129
|
+
helpText: 'Nombre de icono Lucide (p. ej., "check", "x-circle")'
|
|
4130
|
+
},
|
|
4131
|
+
type: {
|
|
4132
|
+
helpText: "Qu\xE9 ocurre al hacer clic"
|
|
4133
|
+
},
|
|
4134
|
+
variant: {
|
|
4135
|
+
helpText: "Estilo de bot\xF3n (primary=blue, danger=red, ghost=transparent)"
|
|
4136
|
+
},
|
|
4137
|
+
target: {
|
|
4138
|
+
helpText: "URL, nombre de flujo o endpoint API que llamar"
|
|
4139
|
+
},
|
|
4140
|
+
method: {
|
|
4141
|
+
helpText: "M\xE9todo HTTP (GET, POST, PUT, DELETE)"
|
|
4142
|
+
},
|
|
4143
|
+
body: {
|
|
4144
|
+
helpText: "C\xF3digo JavaScript que ejecutar"
|
|
4145
|
+
},
|
|
4146
|
+
params: {
|
|
4147
|
+
helpText: "Par\xE1metros de entrada de usuario (muestra el formulario antes de ejecutar)"
|
|
4148
|
+
},
|
|
4149
|
+
confirmText: {
|
|
4150
|
+
helpText: 'Mensaje de confirmaci\xF3n (p. ej., "Are you sure?")'
|
|
4151
|
+
},
|
|
4152
|
+
successMessage: {
|
|
4153
|
+
helpText: "Mensaje de \xE9xito tras completar"
|
|
4154
|
+
},
|
|
4155
|
+
refreshAfter: {
|
|
4156
|
+
helpText: "Actualiza la lista/p\xE1gina tras completar la acci\xF3n"
|
|
4157
|
+
},
|
|
4158
|
+
locations: {
|
|
4159
|
+
helpText: "D\xF3nde mostrar esta acci\xF3n (toolbar, row menu, etc.)"
|
|
4160
|
+
},
|
|
4161
|
+
component: {
|
|
4162
|
+
helpText: "C\xF3mo renderizar (button, icon, menu item)"
|
|
4163
|
+
},
|
|
4164
|
+
visible: {
|
|
4165
|
+
helpText: "Expresi\xF3n CEL: mostrar solo cuando la condici\xF3n sea true"
|
|
4166
|
+
},
|
|
4167
|
+
disabled: {
|
|
4168
|
+
helpText: "Expresi\xF3n CEL: desactivar cuando la condici\xF3n sea true"
|
|
4169
|
+
},
|
|
4170
|
+
shortcut: {
|
|
4171
|
+
helpText: 'Atajo de teclado (p. ej., "Ctrl+S", "Cmd+Enter")'
|
|
4172
|
+
},
|
|
4173
|
+
bulkEnabled: {
|
|
4174
|
+
helpText: "Permite aplicar a varios registros seleccionados"
|
|
4175
|
+
},
|
|
4176
|
+
aiExposed: {
|
|
4177
|
+
helpText: "Permite que agentes de IA llamen a esta acci\xF3n"
|
|
4178
|
+
},
|
|
4179
|
+
recordIdParam: {
|
|
4180
|
+
helpText: "Nombre del par\xE1metro body para ID de registro"
|
|
4181
|
+
},
|
|
4182
|
+
recordIdField: {
|
|
4183
|
+
helpText: 'Campo que usar como ID de registro (valor predeterminado: "id")'
|
|
4184
|
+
},
|
|
4185
|
+
bodyShape: {
|
|
4186
|
+
helpText: "Estructura del cuerpo de solicitud (flat o nested)"
|
|
4187
|
+
}
|
|
4188
|
+
}
|
|
4189
|
+
},
|
|
4190
|
+
report: {
|
|
4191
|
+
label: "Informe",
|
|
4192
|
+
sections: {
|
|
4193
|
+
basics: {
|
|
4194
|
+
label: "Aspectos b\xE1sicos",
|
|
4195
|
+
description: "Identidad y fuente de datos."
|
|
4196
|
+
},
|
|
4197
|
+
columns: {
|
|
4198
|
+
label: "Columnas",
|
|
4199
|
+
description: "Columnas mostradas en la salida del informe."
|
|
4200
|
+
},
|
|
4201
|
+
groupings: {
|
|
4202
|
+
label: "Agrupaciones",
|
|
4203
|
+
description: "C\xF3mo se agrupan las filas (y columnas, para informes matrix)."
|
|
4204
|
+
},
|
|
4205
|
+
joined_blocks: {
|
|
4206
|
+
label: "Bloques unidos",
|
|
4207
|
+
description: "Bloques adicionales unidos en un solo informe (solo informes joined)."
|
|
4208
|
+
},
|
|
4209
|
+
filter_and_chart: {
|
|
4210
|
+
label: "Filtro y gr\xE1fico",
|
|
4211
|
+
description: "Filtros a nivel de informe y presentaci\xF3n del gr\xE1fico."
|
|
4212
|
+
},
|
|
4213
|
+
advanced: {
|
|
4214
|
+
label: "Avanzado",
|
|
4215
|
+
description: "Ajustes de accesibilidad y rendimiento."
|
|
4216
|
+
}
|
|
4217
|
+
},
|
|
4218
|
+
fields: {
|
|
4219
|
+
name: {
|
|
4220
|
+
helpText: "Identificador \xFAnico snake_case"
|
|
4221
|
+
},
|
|
4222
|
+
objectName: {
|
|
4223
|
+
helpText: "Objeto de fuente de datos"
|
|
4224
|
+
},
|
|
4225
|
+
type: {
|
|
4226
|
+
helpText: "Tipo de informe: tabular/summary/matrix/joined"
|
|
4227
|
+
},
|
|
4228
|
+
columns: {
|
|
4229
|
+
helpText: "Columnas que mostrar en el informe"
|
|
4230
|
+
},
|
|
4231
|
+
groupingsDown: {
|
|
4232
|
+
helpText: "Niveles de agrupaci\xF3n de filas"
|
|
4233
|
+
},
|
|
4234
|
+
groupingsAcross: {
|
|
4235
|
+
helpText: "Niveles de agrupaci\xF3n de columnas (solo matrix)"
|
|
4236
|
+
},
|
|
4237
|
+
blocks: {
|
|
4238
|
+
helpText: "Une varios objetos (solo informe joined)"
|
|
4239
|
+
},
|
|
4240
|
+
filter: {
|
|
4241
|
+
helpText: "Filtros a nivel de informe"
|
|
4242
|
+
},
|
|
4243
|
+
chart: {
|
|
4244
|
+
helpText: "Configuraci\xF3n de gr\xE1fico (type, legend, colors)"
|
|
4245
|
+
},
|
|
4246
|
+
aria: {
|
|
4247
|
+
helpText: "Etiquetas de accesibilidad"
|
|
4248
|
+
},
|
|
4249
|
+
performance: {
|
|
4250
|
+
helpText: "Cach\xE9 y optimizaci\xF3n"
|
|
4251
|
+
}
|
|
4252
|
+
}
|
|
4253
|
+
},
|
|
4254
|
+
flow: {
|
|
4255
|
+
label: "Flujo",
|
|
4256
|
+
sections: {
|
|
4257
|
+
basics: {
|
|
4258
|
+
label: "Aspectos b\xE1sicos",
|
|
4259
|
+
description: "Identidad del flujo y c\xF3mo se inicia."
|
|
4260
|
+
},
|
|
4261
|
+
canvas: {
|
|
4262
|
+
label: "Lienzo",
|
|
4263
|
+
description: "Nodos, aristas y variables de flujo \u2014 considera el dise\xF1ador visual para flujos complejos."
|
|
4264
|
+
},
|
|
4265
|
+
execution: {
|
|
4266
|
+
label: "Ejecuci\xF3n",
|
|
4267
|
+
description: "Estado de despliegue, identidad y gesti\xF3n de errores."
|
|
4268
|
+
}
|
|
4269
|
+
},
|
|
4270
|
+
fields: {
|
|
4271
|
+
name: {
|
|
4272
|
+
helpText: "Identificador \xFAnico (snake_case)"
|
|
4273
|
+
},
|
|
4274
|
+
label: {
|
|
4275
|
+
helpText: "Nombre mostrado a los usuarios"
|
|
4276
|
+
},
|
|
4277
|
+
type: {
|
|
4278
|
+
helpText: "C\xF3mo se inicia el flujo (autolaunched, record_change, schedule, screen, api)"
|
|
4279
|
+
},
|
|
4280
|
+
template: {
|
|
4281
|
+
helpText: "Indica si es un subflujo reutilizable (puede llamarse desde otros flujos)"
|
|
4282
|
+
},
|
|
4283
|
+
description: {
|
|
4284
|
+
helpText: "Qu\xE9 hace este flujo"
|
|
4285
|
+
},
|
|
4286
|
+
nodes: {
|
|
4287
|
+
helpText: "\u26A0\uFE0F Considera usar el editor visual Flow Designer en lugar de JSON"
|
|
4288
|
+
},
|
|
4289
|
+
edges: {
|
|
4290
|
+
helpText: "Conexiones entre nodos \u2014 usa Flow Designer para editar m\xE1s f\xE1cilmente"
|
|
4291
|
+
},
|
|
4292
|
+
variables: {
|
|
4293
|
+
helpText: "Variables de flujo (inputs/outputs)"
|
|
4294
|
+
},
|
|
4295
|
+
status: {
|
|
4296
|
+
helpText: "Estado de despliegue: draft \u2192 active \u2192 obsolete"
|
|
4297
|
+
},
|
|
4298
|
+
version: {
|
|
4299
|
+
helpText: "N\xFAmero de versi\xF3n (autoincrementado)"
|
|
4300
|
+
},
|
|
4301
|
+
runAs: {
|
|
4302
|
+
helpText: "Ejecutar como system (admin) o user (permisos del usuario actual)"
|
|
4303
|
+
},
|
|
4304
|
+
errorHandling: {
|
|
4305
|
+
helpText: "Qu\xE9 hacer cuando falla un nodo (fail, retry, continue)"
|
|
4306
|
+
}
|
|
4307
|
+
}
|
|
4308
|
+
},
|
|
4309
|
+
workflow: {
|
|
4310
|
+
label: "Flujo de trabajo",
|
|
4311
|
+
sections: {
|
|
4312
|
+
basics: {
|
|
4313
|
+
label: "Aspectos b\xE1sicos",
|
|
4314
|
+
description: "Identidad y objeto/evento que lo dispara."
|
|
4315
|
+
},
|
|
4316
|
+
actions: {
|
|
4317
|
+
label: "Acciones",
|
|
4318
|
+
description: "Qu\xE9 hace este flujo de trabajo cuando se dispara."
|
|
4319
|
+
},
|
|
4320
|
+
advanced: {
|
|
4321
|
+
label: "Avanzado",
|
|
4322
|
+
description: "Orden y comportamiento de ejecuci\xF3n."
|
|
4323
|
+
}
|
|
4324
|
+
},
|
|
4325
|
+
fields: {
|
|
4326
|
+
name: {
|
|
4327
|
+
helpText: "Identificador \xFAnico (snake_case)"
|
|
4328
|
+
},
|
|
4329
|
+
objectName: {
|
|
4330
|
+
helpText: "Qu\xE9 objeto dispara este flujo de trabajo"
|
|
4331
|
+
},
|
|
4332
|
+
triggerType: {
|
|
4333
|
+
helpText: "Cu\xE1ndo ejecutar: on_create, on_update, on_delete, schedule"
|
|
4334
|
+
},
|
|
4335
|
+
active: {
|
|
4336
|
+
helpText: "Activa/desactiva este flujo de trabajo"
|
|
4337
|
+
},
|
|
4338
|
+
description: {
|
|
4339
|
+
helpText: "Qu\xE9 hace este flujo de trabajo"
|
|
4340
|
+
},
|
|
4341
|
+
criteria: {
|
|
4342
|
+
helpText: "Expresi\xF3n CEL: ejecutar solo cuando esta condici\xF3n sea true"
|
|
4343
|
+
},
|
|
4344
|
+
actions: {
|
|
4345
|
+
helpText: "Acciones que ejecutar inmediatamente (field update, email, API call, etc.)"
|
|
4346
|
+
},
|
|
4347
|
+
timeTriggers: {
|
|
4348
|
+
helpText: "Acciones programadas (p. ej., enviar recordatorio 1 d\xEDa antes del plazo)"
|
|
4349
|
+
},
|
|
4350
|
+
executionOrder: {
|
|
4351
|
+
helpText: "Orden de ejecuci\xF3n cuando coinciden varios flujos de trabajo (menor = antes)"
|
|
4352
|
+
}
|
|
4353
|
+
}
|
|
4354
|
+
},
|
|
4355
|
+
approval: {
|
|
4356
|
+
label: "Proceso de aprobaci\xF3n",
|
|
4357
|
+
sections: {
|
|
4358
|
+
basics: {
|
|
4359
|
+
label: "Aspectos b\xE1sicos",
|
|
4360
|
+
description: "Identidad del proceso de aprobaci\xF3n y el objeto que controla."
|
|
4361
|
+
},
|
|
4362
|
+
entry_rules: {
|
|
4363
|
+
label: "Reglas de entrada",
|
|
4364
|
+
description: "Qui\xE9n puede enviar y qu\xE9 ocurre con el registro mientras est\xE1 pendiente."
|
|
4365
|
+
},
|
|
4366
|
+
steps: {
|
|
4367
|
+
label: "Pasos",
|
|
4368
|
+
description: "Cadena de aprobaci\xF3n ordenada \u2014 cada paso elige aprobador y decide el enrutado."
|
|
4369
|
+
},
|
|
4370
|
+
escalation_and_outcomes: {
|
|
4371
|
+
label: "Escalado y resultados",
|
|
4372
|
+
description: "SLA, escalado y acciones posteriores a la decisi\xF3n."
|
|
4373
|
+
}
|
|
4374
|
+
},
|
|
4375
|
+
fields: {
|
|
4376
|
+
name: {
|
|
4377
|
+
helpText: "Identificador \xFAnico (snake_case)"
|
|
4378
|
+
},
|
|
4379
|
+
label: {
|
|
4380
|
+
helpText: 'Nombre mostrado (p. ej., "Contract Approval")'
|
|
4381
|
+
},
|
|
4382
|
+
object: {
|
|
4383
|
+
helpText: "Qu\xE9 objeto necesita aprobaci\xF3n"
|
|
4384
|
+
},
|
|
4385
|
+
active: {
|
|
4386
|
+
helpText: "Activa/desactiva este proceso de aprobaci\xF3n"
|
|
4387
|
+
},
|
|
4388
|
+
description: {
|
|
4389
|
+
helpText: "Qu\xE9 se aprueba y por qu\xE9"
|
|
4390
|
+
},
|
|
4391
|
+
entryCriteria: {
|
|
4392
|
+
helpText: "Expresi\xF3n CEL: los usuarios solo pueden enviar cuando esto sea true"
|
|
4393
|
+
},
|
|
4394
|
+
lockRecord: {
|
|
4395
|
+
helpText: "Bloquea la edici\xF3n del registro mientras la aprobaci\xF3n est\xE1 pendiente"
|
|
4396
|
+
},
|
|
4397
|
+
approvalStatusField: {
|
|
4398
|
+
helpText: 'Nombre de campo para reflejar el estado de aprobaci\xF3n (p. ej., "approval_status")'
|
|
4399
|
+
},
|
|
4400
|
+
steps: {
|
|
4401
|
+
helpText: "Pasos de aprobaci\xF3n en orden \u2014 cada paso define qui\xE9n aprueba y qu\xE9 ocurre"
|
|
4402
|
+
},
|
|
4403
|
+
escalation: {
|
|
4404
|
+
helpText: "Escala o aprueba autom\xE1ticamente tras el tiempo de espera"
|
|
4405
|
+
},
|
|
4406
|
+
onFinalApprove: {
|
|
4407
|
+
helpText: "Acciones cuando todos los pasos se aprueban (p. ej., actualizar estado)"
|
|
4408
|
+
},
|
|
4409
|
+
onFinalReject: {
|
|
4410
|
+
helpText: "Acciones al rechazar (p. ej., notificar al remitente)"
|
|
4411
|
+
}
|
|
4412
|
+
}
|
|
4413
|
+
},
|
|
4414
|
+
job: {
|
|
4415
|
+
label: "Trabajo en segundo plano"
|
|
4416
|
+
},
|
|
4417
|
+
datasource: {
|
|
4418
|
+
label: "Fuente de datos"
|
|
4419
|
+
},
|
|
4420
|
+
translation: {
|
|
4421
|
+
label: "Traducci\xF3n"
|
|
4422
|
+
},
|
|
4423
|
+
router: {
|
|
4424
|
+
label: "Router"
|
|
4425
|
+
},
|
|
4426
|
+
function: {
|
|
4427
|
+
label: "Funci\xF3n"
|
|
4428
|
+
},
|
|
4429
|
+
service: {
|
|
4430
|
+
label: "Servicio"
|
|
4431
|
+
},
|
|
4432
|
+
email_template: {
|
|
4433
|
+
label: "Plantilla de email",
|
|
4434
|
+
sections: {
|
|
4435
|
+
identity: {
|
|
4436
|
+
label: "Identidad",
|
|
4437
|
+
description: "Identificador y tipo de contenido. El id se referencia con sendTemplate({ template: id, ... })."
|
|
4438
|
+
},
|
|
4439
|
+
subject: {
|
|
4440
|
+
label: "Asunto",
|
|
4441
|
+
description: "L\xEDnea de asunto. Admite interpolaci\xF3n {{var.path}}."
|
|
4442
|
+
},
|
|
4443
|
+
body: {
|
|
4444
|
+
label: "Cuerpo",
|
|
4445
|
+
description: "Cuerpo del email. Usa {{var}} para variables. El editor resalta seg\xFAn el tipo de body."
|
|
4446
|
+
},
|
|
4447
|
+
variables_and_attachments: {
|
|
4448
|
+
label: "Variables y adjuntos",
|
|
4449
|
+
description: "Variables de plantilla declaradas y adjuntos de archivo opcionales."
|
|
4450
|
+
}
|
|
4451
|
+
},
|
|
4452
|
+
fields: {
|
|
4453
|
+
id: {
|
|
4454
|
+
helpText: "id de plantilla (p. ej. auth.password_reset)"
|
|
4455
|
+
},
|
|
4456
|
+
body: {
|
|
4457
|
+
helpText: "Contenido del body. Se renderizar\xE1 como HTML, texto plano o Markdown seg\xFAn Body Type."
|
|
4458
|
+
},
|
|
4459
|
+
variables: {
|
|
4460
|
+
helpText: "Lista de nombres de variable referenciados en subject/body"
|
|
4461
|
+
},
|
|
4462
|
+
attachments: {
|
|
4463
|
+
helpText: '[{ "name": "...", "url": "..." }]'
|
|
4464
|
+
}
|
|
4465
|
+
}
|
|
4466
|
+
},
|
|
4467
|
+
permission: {
|
|
4468
|
+
label: "Conjunto de permisos",
|
|
4469
|
+
sections: {
|
|
4470
|
+
identity: {
|
|
4471
|
+
label: "Identidad",
|
|
4472
|
+
description: "Los conjuntos de permisos se apilan sobre un perfil para conceder acceso adicional. Los perfiles son el conjunto base asignado 1:1 a cada usuario."
|
|
4473
|
+
},
|
|
4474
|
+
system_permissions: {
|
|
4475
|
+
label: "Permisos del sistema",
|
|
4476
|
+
description: "Capacidades de alto nivel no vinculadas a un objeto espec\xEDfico \u2014 p. ej. manage_users, view_audit_logs."
|
|
4477
|
+
},
|
|
4478
|
+
object_and_field_permissions: {
|
|
4479
|
+
label: "Permisos de objeto y campo",
|
|
4480
|
+
description: "CRUD por objeto + FLS por campo. Edita mediante el editor matricial o pega JSON aqu\xED."
|
|
4481
|
+
},
|
|
4482
|
+
tab_and_row_level_security: {
|
|
4483
|
+
label: "Pesta\xF1a y seguridad a nivel de fila",
|
|
4484
|
+
description: "Visibilidad de pesta\xF1as, pol\xEDticas RLS y variables de contexto personalizadas para evaluar predicados."
|
|
4485
|
+
}
|
|
4486
|
+
},
|
|
4487
|
+
fields: {
|
|
4488
|
+
name: {
|
|
4489
|
+
helpText: "Nombre de m\xE1quina (snake_case)"
|
|
4490
|
+
},
|
|
4491
|
+
label: {
|
|
4492
|
+
helpText: "Etiqueta mostrada para administradores"
|
|
4493
|
+
},
|
|
4494
|
+
isProfile: {
|
|
4495
|
+
helpText: "Profile = conjunto base asignado a usuarios. Permission Set = concesi\xF3n adicional."
|
|
4496
|
+
},
|
|
4497
|
+
systemPermissions: {
|
|
4498
|
+
helpText: "Lista de claves de capacidades del sistema"
|
|
4499
|
+
},
|
|
4500
|
+
objects: {
|
|
4501
|
+
helpText: '{ "account": { allowRead: true, allowEdit: true, ... } }'
|
|
4502
|
+
},
|
|
4503
|
+
fields: {
|
|
4504
|
+
helpText: '{ "account.amount": { readable: true, editable: false } }'
|
|
4505
|
+
},
|
|
4506
|
+
tabPermissions: {
|
|
4507
|
+
helpText: '{ "app_crm": "visible", "app_admin": "hidden" }'
|
|
4508
|
+
},
|
|
4509
|
+
rowLevelSecurity: {
|
|
4510
|
+
helpText: "Array de pol\xEDticas RLS (ver rls.zod.ts)"
|
|
4511
|
+
},
|
|
4512
|
+
contextVariables: {
|
|
4513
|
+
helpText: "Variables personalizadas referenciadas en predicados RLS"
|
|
4514
|
+
}
|
|
4515
|
+
}
|
|
4516
|
+
},
|
|
4517
|
+
profile: {
|
|
4518
|
+
label: "Perfil",
|
|
4519
|
+
sections: {
|
|
4520
|
+
identity: {
|
|
4521
|
+
label: "Identidad",
|
|
4522
|
+
description: "Los conjuntos de permisos se apilan sobre un perfil para conceder acceso adicional. Los perfiles son el conjunto base asignado 1:1 a cada usuario."
|
|
4523
|
+
},
|
|
4524
|
+
system_permissions: {
|
|
4525
|
+
label: "Permisos del sistema",
|
|
4526
|
+
description: "Capacidades de alto nivel no vinculadas a un objeto espec\xEDfico \u2014 p. ej. manage_users, view_audit_logs."
|
|
4527
|
+
},
|
|
4528
|
+
object_and_field_permissions: {
|
|
4529
|
+
label: "Permisos de objeto y campo",
|
|
4530
|
+
description: "CRUD por objeto + FLS por campo. Edita mediante el editor matricial o pega JSON aqu\xED."
|
|
4531
|
+
},
|
|
4532
|
+
tab_and_row_level_security: {
|
|
4533
|
+
label: "Pesta\xF1a y seguridad a nivel de fila",
|
|
4534
|
+
description: "Visibilidad de pesta\xF1as, pol\xEDticas RLS y variables de contexto personalizadas para evaluar predicados."
|
|
4535
|
+
}
|
|
4536
|
+
},
|
|
4537
|
+
fields: {
|
|
4538
|
+
name: {
|
|
4539
|
+
helpText: "Nombre de m\xE1quina (snake_case)"
|
|
4540
|
+
},
|
|
4541
|
+
label: {
|
|
4542
|
+
helpText: "Etiqueta mostrada para administradores"
|
|
4543
|
+
},
|
|
4544
|
+
isProfile: {
|
|
4545
|
+
helpText: "Profile = conjunto base asignado a usuarios. Permission Set = concesi\xF3n adicional."
|
|
4546
|
+
},
|
|
4547
|
+
systemPermissions: {
|
|
4548
|
+
helpText: "Lista de claves de capacidades del sistema"
|
|
4549
|
+
},
|
|
4550
|
+
objects: {
|
|
4551
|
+
helpText: '{ "account": { allowRead: true, allowEdit: true, ... } }'
|
|
4552
|
+
},
|
|
4553
|
+
fields: {
|
|
4554
|
+
helpText: '{ "account.amount": { readable: true, editable: false } }'
|
|
4555
|
+
},
|
|
4556
|
+
tabPermissions: {
|
|
4557
|
+
helpText: '{ "app_crm": "visible", "app_admin": "hidden" }'
|
|
4558
|
+
},
|
|
4559
|
+
rowLevelSecurity: {
|
|
4560
|
+
helpText: "Array de pol\xEDticas RLS (ver rls.zod.ts)"
|
|
4561
|
+
},
|
|
4562
|
+
contextVariables: {
|
|
4563
|
+
helpText: "Variables personalizadas referenciadas en predicados RLS"
|
|
4564
|
+
}
|
|
4565
|
+
}
|
|
4566
|
+
},
|
|
4567
|
+
role: {
|
|
4568
|
+
label: "Rol",
|
|
4569
|
+
sections: {
|
|
4570
|
+
role: {
|
|
4571
|
+
label: "Rol",
|
|
4572
|
+
description: "Los roles componen una jerarqu\xEDa usada para compartir registros (sales VP \u2192 sales mgr \u2192 sales rep). Los permisos en s\xED residen en Permission Sets y Profiles."
|
|
4573
|
+
}
|
|
4574
|
+
},
|
|
4575
|
+
fields: {
|
|
4576
|
+
name: {
|
|
4577
|
+
helpText: "snake_case"
|
|
4578
|
+
},
|
|
4579
|
+
parent: {
|
|
4580
|
+
helpText: "Nombre de m\xE1quina del rol padre (Reports To)"
|
|
4581
|
+
}
|
|
4582
|
+
}
|
|
4583
|
+
},
|
|
4584
|
+
agent: {
|
|
4585
|
+
label: "Agente de IA",
|
|
4586
|
+
sections: {
|
|
4587
|
+
identity: {
|
|
4588
|
+
label: "Identidad",
|
|
4589
|
+
description: "C\xF3mo ven y referencian este agente los usuarios."
|
|
4590
|
+
},
|
|
4591
|
+
ai_configuration: {
|
|
4592
|
+
label: "Configuraci\xF3n de IA",
|
|
4593
|
+
description: "Selecci\xF3n de modelo, instrucciones, planificaci\xF3n y memoria."
|
|
4594
|
+
},
|
|
4595
|
+
capabilities: {
|
|
4596
|
+
label: "Capacidades",
|
|
4597
|
+
description: "Skills, herramientas y fuentes de conocimiento que puede usar el agente."
|
|
4598
|
+
},
|
|
4599
|
+
access: {
|
|
4600
|
+
label: "Acceso y seguridad",
|
|
4601
|
+
description: "Qui\xE9n puede usar este agente y qu\xE9 salvaguardas se aplican."
|
|
4602
|
+
}
|
|
4603
|
+
},
|
|
4604
|
+
fields: {
|
|
4605
|
+
name: {
|
|
4606
|
+
helpText: "Identificador \xFAnico (snake_case)"
|
|
4607
|
+
},
|
|
4608
|
+
label: {
|
|
4609
|
+
helpText: 'Nombre mostrado (p. ej., "Sales Assistant")'
|
|
4610
|
+
},
|
|
4611
|
+
role: {
|
|
4612
|
+
helpText: 'Persona del agente (p. ej., "Customer Support Specialist")'
|
|
4613
|
+
},
|
|
4614
|
+
avatar: {
|
|
4615
|
+
helpText: "URL de imagen de avatar"
|
|
4616
|
+
},
|
|
4617
|
+
active: {
|
|
4618
|
+
helpText: "Activa/desactiva este agente"
|
|
4619
|
+
},
|
|
4620
|
+
instructions: {
|
|
4621
|
+
helpText: "Prompt del sistema \u2014 indica al agente c\xF3mo comportarse y qu\xE9 puede hacer"
|
|
4622
|
+
},
|
|
4623
|
+
model: {
|
|
4624
|
+
helpText: "Configuraci\xF3n del modelo de IA (provider, model name, temperature, etc.)"
|
|
4625
|
+
},
|
|
4626
|
+
planning: {
|
|
4627
|
+
helpText: "Configuraci\xF3n de razonamiento aut\xF3nomo (strategy, max iterations, replan)"
|
|
4628
|
+
},
|
|
4629
|
+
memory: {
|
|
4630
|
+
helpText: "Gesti\xF3n de memoria (short-term, long-term, reflection)"
|
|
4631
|
+
},
|
|
4632
|
+
lifecycle: {
|
|
4633
|
+
helpText: "M\xE1quina de estado que define el flujo de conversaci\xF3n"
|
|
4634
|
+
},
|
|
4635
|
+
skills: {
|
|
4636
|
+
helpText: "Nombres de skill (arquitectura Agent\u2192Skill\u2192Tool)"
|
|
4637
|
+
},
|
|
4638
|
+
tools: {
|
|
4639
|
+
helpText: "Referencias directas a herramientas (modo heredado)"
|
|
4640
|
+
},
|
|
4641
|
+
knowledge: {
|
|
4642
|
+
helpText: "Configuraci\xF3n de acceso a conocimiento RAG"
|
|
4643
|
+
},
|
|
4644
|
+
visibility: {
|
|
4645
|
+
helpText: "\xC1mbito: global, organization o private"
|
|
4646
|
+
},
|
|
4647
|
+
access: {
|
|
4648
|
+
helpText: "IDs de usuario o nombres de rol que pueden chatear con este agente"
|
|
4649
|
+
},
|
|
4650
|
+
permissions: {
|
|
4651
|
+
helpText: "Permisos necesarios para usar este agente"
|
|
4652
|
+
},
|
|
4653
|
+
tenantId: {
|
|
4654
|
+
helpText: "Restringe a un ID de organization espec\xEDfico"
|
|
4655
|
+
},
|
|
4656
|
+
guardrails: {
|
|
4657
|
+
helpText: "Reglas de seguridad y pol\xEDticas de contenido"
|
|
4658
|
+
}
|
|
4659
|
+
}
|
|
4660
|
+
},
|
|
4661
|
+
tool: {
|
|
4662
|
+
label: "Herramienta de IA",
|
|
4663
|
+
sections: {
|
|
4664
|
+
basics: {
|
|
4665
|
+
label: "Aspectos b\xE1sicos",
|
|
4666
|
+
description: "Identidad de herramienta y descripci\xF3n para IA."
|
|
4667
|
+
},
|
|
4668
|
+
schemas: {
|
|
4669
|
+
label: "Esquemas",
|
|
4670
|
+
description: "Entradas que acepta la herramienta y forma de su salida."
|
|
4671
|
+
},
|
|
4672
|
+
access_and_safety: {
|
|
4673
|
+
label: "Acceso y seguridad",
|
|
4674
|
+
description: "Permisos y requisitos de confirmaci\xF3n."
|
|
4675
|
+
}
|
|
4676
|
+
},
|
|
4677
|
+
fields: {
|
|
4678
|
+
name: {
|
|
4679
|
+
helpText: "Identificador \xFAnico (snake_case)"
|
|
4680
|
+
},
|
|
4681
|
+
label: {
|
|
4682
|
+
helpText: "Nombre mostrado para Studio UI"
|
|
4683
|
+
},
|
|
4684
|
+
description: {
|
|
4685
|
+
helpText: "Indica a IA cu\xE1ndo usar esta herramienta \u2014 s\xE9 espec\xEDfico."
|
|
4686
|
+
},
|
|
4687
|
+
category: {
|
|
4688
|
+
helpText: "Categor\xEDa de herramienta (data, action, flow, integration, etc.)"
|
|
4689
|
+
},
|
|
4690
|
+
objectName: {
|
|
4691
|
+
helpText: "Objeto relacionado (si esta herramienta opera sobre un objeto espec\xEDfico)"
|
|
4692
|
+
},
|
|
4693
|
+
active: {
|
|
4694
|
+
helpText: "Activa/desactiva esta herramienta"
|
|
4695
|
+
},
|
|
4696
|
+
builtIn: {
|
|
4697
|
+
helpText: "Herramienta integrada de la plataforma (frente a definida por usuario)"
|
|
4698
|
+
},
|
|
4699
|
+
parameters: {
|
|
4700
|
+
helpText: 'Par\xE1metros de entrada \u2014 define propiedades como: {name: {type: "string", description: "..."}}'
|
|
4701
|
+
},
|
|
4702
|
+
outputSchema: {
|
|
4703
|
+
helpText: "Esquema de salida para validaci\xF3n (opcional)"
|
|
4704
|
+
},
|
|
4705
|
+
requiresConfirmation: {
|
|
4706
|
+
helpText: "Pide aprobaci\xF3n al usuario antes de ejecutar (para acciones destructivas)"
|
|
4707
|
+
},
|
|
4708
|
+
permissions: {
|
|
4709
|
+
helpText: "Permisos necesarios para usar esta herramienta"
|
|
4710
|
+
}
|
|
4711
|
+
}
|
|
4712
|
+
},
|
|
4713
|
+
skill: {
|
|
4714
|
+
label: "Habilidad de IA",
|
|
4715
|
+
sections: {
|
|
4716
|
+
basics: {
|
|
4717
|
+
label: "Aspectos b\xE1sicos",
|
|
4718
|
+
description: "Identidad de skill y descripci\xF3n legible."
|
|
4719
|
+
},
|
|
4720
|
+
ai_instructions: {
|
|
4721
|
+
label: "Instrucciones de IA",
|
|
4722
|
+
description: "C\xF3mo debe razonar el agente con esta skill."
|
|
4723
|
+
},
|
|
4724
|
+
triggers: {
|
|
4725
|
+
label: "Disparadores",
|
|
4726
|
+
description: "Cu\xE1ndo debe activarse esta skill."
|
|
4727
|
+
},
|
|
4728
|
+
access: {
|
|
4729
|
+
label: "Acceso",
|
|
4730
|
+
description: "Permisos necesarios para usar esta skill."
|
|
4731
|
+
}
|
|
4732
|
+
},
|
|
4733
|
+
fields: {
|
|
4734
|
+
name: {
|
|
4735
|
+
helpText: "Identificador \xFAnico (snake_case)"
|
|
4736
|
+
},
|
|
4737
|
+
label: {
|
|
4738
|
+
helpText: 'Nombre mostrado (p. ej., "Case Management")'
|
|
4739
|
+
},
|
|
4740
|
+
description: {
|
|
4741
|
+
helpText: "Qu\xE9 hace esta skill"
|
|
4742
|
+
},
|
|
4743
|
+
active: {
|
|
4744
|
+
helpText: "Activa/desactiva esta skill"
|
|
4745
|
+
},
|
|
4746
|
+
instructions: {
|
|
4747
|
+
helpText: "Instrucciones para IA \u2014 indica c\xF3mo usar estas herramientas juntas"
|
|
4748
|
+
},
|
|
4749
|
+
tools: {
|
|
4750
|
+
helpText: "Nombres de herramienta (admite comod\xEDn: action_*)"
|
|
4751
|
+
},
|
|
4752
|
+
triggerPhrases: {
|
|
4753
|
+
helpText: "Frases de lenguaje natural que activan esta skill"
|
|
4754
|
+
},
|
|
4755
|
+
triggerConditions: {
|
|
4756
|
+
helpText: 'Condiciones program\xE1ticas (p. ej., objectName == "case")'
|
|
4757
|
+
},
|
|
4758
|
+
permissions: {
|
|
4759
|
+
helpText: "Permisos necesarios para usar esta skill"
|
|
4760
|
+
}
|
|
4761
|
+
}
|
|
4762
|
+
}
|
|
4763
|
+
};
|
|
4764
|
+
|
|
4765
|
+
// src/metadata-translations/index.ts
|
|
4766
|
+
var MetadataFormsTranslations = {
|
|
4767
|
+
en: { metadataForms: enMetadataForms },
|
|
4768
|
+
"zh-CN": { metadataForms: zhCNMetadataForms },
|
|
4769
|
+
"ja-JP": { metadataForms: jaJPMetadataForms },
|
|
4770
|
+
"es-ES": { metadataForms: esESMetadataForms }
|
|
4771
|
+
};
|
|
4772
|
+
|
|
4773
|
+
export { MetadataFormsTranslations };
|
|
4774
|
+
//# sourceMappingURL=index.mjs.map
|
|
4775
|
+
//# sourceMappingURL=index.mjs.map
|