-
Notifications
You must be signed in to change notification settings - Fork 6
Expand file tree
/
Copy pathen.metadata-forms.generated.ts
More file actions
1620 lines (1617 loc) · 43 KB
/
Copy pathen.metadata-forms.generated.ts
File metadata and controls
1620 lines (1617 loc) · 43 KB
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
202
203
204
205
206
207
208
209
210
211
212
213
214
215
216
217
218
219
220
221
222
223
224
225
226
227
228
229
230
231
232
233
234
235
236
237
238
239
240
241
242
243
244
245
246
247
248
249
250
251
252
253
254
255
256
257
258
259
260
261
262
263
264
265
266
267
268
269
270
271
272
273
274
275
276
277
278
279
280
281
282
283
284
285
286
287
288
289
290
291
292
293
294
295
296
297
298
299
300
301
302
303
304
305
306
307
308
309
310
311
312
313
314
315
316
317
318
319
320
321
322
323
324
325
326
327
328
329
330
331
332
333
334
335
336
337
338
339
340
341
342
343
344
345
346
347
348
349
350
351
352
353
354
355
356
357
358
359
360
361
362
363
364
365
366
367
368
369
370
371
372
373
374
375
376
377
378
379
380
381
382
383
384
385
386
387
388
389
390
391
392
393
394
395
396
397
398
399
400
401
402
403
404
405
406
407
408
409
410
411
412
413
414
415
416
417
418
419
420
421
422
423
424
425
426
427
428
429
430
431
432
433
434
435
436
437
438
439
440
441
442
443
444
445
446
447
448
449
450
451
452
453
454
455
456
457
458
459
460
461
462
463
464
465
466
467
468
469
470
471
472
473
474
475
476
477
478
479
480
481
482
483
484
485
486
487
488
489
490
491
492
493
494
495
496
497
498
499
500
501
502
503
504
505
506
507
508
509
510
511
512
513
514
515
516
517
518
519
520
521
522
523
524
525
526
527
528
529
530
531
532
533
534
535
536
537
538
539
540
541
542
543
544
545
546
547
548
549
550
551
552
553
554
555
556
557
558
559
560
561
562
563
564
565
566
567
568
569
570
571
572
573
574
575
576
577
578
579
580
581
582
583
584
585
586
587
588
589
590
591
592
593
594
595
596
597
598
599
600
601
602
603
604
605
606
607
608
609
610
611
612
613
614
615
616
617
618
619
620
621
622
623
624
625
626
627
628
629
630
631
632
633
634
635
636
637
638
639
640
641
642
643
644
645
646
647
648
649
650
651
652
653
654
655
656
657
658
659
660
661
662
663
664
665
666
667
668
669
670
671
672
673
674
675
676
677
678
679
680
681
682
683
684
685
686
687
688
689
690
691
692
693
694
695
696
697
698
699
700
701
702
703
704
705
706
707
708
709
710
711
712
713
714
715
716
717
718
719
720
721
722
723
724
725
726
727
728
729
730
731
732
733
734
735
736
737
738
739
740
741
742
743
744
745
746
747
748
749
750
751
752
753
754
755
756
757
758
759
760
761
762
763
764
765
766
767
768
769
770
771
772
773
774
775
776
777
778
779
780
781
782
783
784
785
786
787
788
789
790
791
792
793
794
795
796
797
798
799
800
801
802
803
804
805
806
807
808
809
810
811
812
813
814
815
816
817
818
819
820
821
822
823
824
825
826
827
828
829
830
831
832
833
834
835
836
837
838
839
840
841
842
843
844
845
846
847
848
849
850
851
852
853
854
855
856
857
858
859
860
861
862
863
864
865
866
867
868
869
870
871
872
873
874
875
876
877
878
879
880
881
882
883
884
885
886
887
888
889
890
891
892
893
894
895
896
897
898
899
900
901
902
903
904
905
906
907
908
909
910
911
912
913
914
915
916
917
918
919
920
921
922
923
924
925
926
927
928
929
930
931
932
933
934
935
936
937
938
939
940
941
942
943
944
945
946
947
948
949
950
951
952
953
954
955
956
957
958
959
960
961
962
963
964
965
966
967
968
969
970
971
972
973
974
975
976
977
978
979
980
981
982
983
984
985
986
987
988
989
990
991
992
993
994
995
996
997
998
999
1000
// Copyright (c) 2025 ObjectStack. Licensed under the Apache-2.0 license.
/**
* Auto-generated by 'os i18n extract' for locale 'en'.
* Edit translations in place; re-run extract (with --merge) to fill new gaps.
* Do not hand-edit the structure — only the leaf string values.
*/
import type { TranslationData } from '@objectstack/spec/system';
export const enMetadataForms: NonNullable<TranslationData['metadataForms']> = {
object: {
label: "Object",
sections: {
basics: {
label: "Basics",
description: "Identity, labels, and taxonomy."
},
fields: {
label: "Fields",
description: "Define the data model — each row becomes a column in the database table."
},
capabilities: {
label: "Capabilities",
description: "System features and API exposure."
},
advanced: {
label: "Advanced",
description: "State machines, actions, and storage."
}
},
fields: {
name: {
label: "Name",
helpText: "snake_case unique identifier (immutable after creation)"
},
label: {
label: "Label",
helpText: "Singular display name (e.g. \"Account\")"
},
pluralLabel: {
label: "Plural Label",
helpText: "Plural display name (e.g. \"Accounts\")"
},
icon: {
label: "Icon",
helpText: "Lucide icon name (e.g. \"building\", \"users\")"
},
description: {
label: "Description",
helpText: "Developer documentation"
},
tags: {
label: "Tags",
helpText: "Categorization tags (e.g. \"sales\", \"system\")"
},
active: {
label: "Active",
helpText: "Is the object active and usable"
},
isSystem: {
label: "Is System",
helpText: "System object (protected from deletion)"
},
abstract: {
label: "Abstract",
helpText: "Abstract base (cannot be instantiated)"
},
fields: {
label: "Fields",
helpText: "Add the columns this object will store"
},
"fields.label": {
label: "Label",
helpText: "Display label"
},
"fields.type": {
label: "Type",
helpText: "Field type"
},
"fields.description": {
label: "Description",
helpText: "Developer documentation for this column"
},
"fields.required": {
label: "Required",
helpText: "Must be set on every record"
},
"fields.unique": {
label: "Unique",
helpText: "Disallow duplicate values"
},
"fields.indexed": {
label: "Indexed",
helpText: "Create a database index for faster querying"
},
"fields.readonly": {
label: "Readonly",
helpText: "Visible but never user-editable"
},
"fields.immutable": {
label: "Immutable",
helpText: "Editable on create, locked thereafter"
},
"fields.hidden": {
label: "Hidden",
helpText: "Hidden from default UI"
},
"fields.searchable": {
label: "Searchable",
helpText: "Include in full-text search"
},
"fields.sortable": {
label: "Sortable",
helpText: "Allow sorting on this column"
},
"fields.filterable": {
label: "Filterable",
helpText: "Allow filtering on this column"
},
"fields.defaultValue": {
label: "Default Value",
helpText: "Default value for new records (JSON literal)"
},
"fields.placeholder": {
label: "Placeholder",
helpText: "Placeholder hint"
},
"fields.maxLength": {
label: "Max Length",
helpText: "Max characters"
},
"fields.minLength": {
label: "Min Length",
helpText: "Min characters"
},
"fields.min": {
label: "Min",
helpText: "Minimum value"
},
"fields.max": {
label: "Max",
helpText: "Maximum value"
},
"fields.precision": {
label: "Precision",
helpText: "Total digits"
},
"fields.scale": {
label: "Scale",
helpText: "Decimal places"
},
"fields.options": {
label: "Options",
helpText: "Available choices"
},
"fields.options.label": {
label: "Label"
},
"fields.options.value": {
label: "Value"
},
"fields.options.color": {
label: "Color"
},
"fields.options.icon": {
label: "Icon",
helpText: "Lucide icon name"
},
"fields.options.description": {
label: "Description"
},
"fields.reference": {
label: "Reference",
helpText: "Target object (for lookup/master_detail)"
},
"fields.referenceFilter": {
label: "Reference Filter",
helpText: "CEL filter applied to the picker"
},
"fields.cascadeDelete": {
label: "Cascade Delete",
helpText: "Delete children when parent is deleted"
},
"fields.multiple": {
label: "Multiple",
helpText: "Allow selecting multiple records"
},
"fields.formula": {
label: "Formula",
helpText: "CEL formula expression"
},
"fields.returnType": {
label: "Return Type",
helpText: "Result type for formulas"
},
"fields.summaryType": {
label: "Summary Type",
helpText: "Aggregation"
},
"fields.summaryField": {
label: "Summary Field",
helpText: "Field on child object to aggregate"
},
"fields.displayFormat": {
label: "Display Format",
helpText: "e.g. \"INV-{0000}\""
},
"fields.startingNumber": {
label: "Starting Number",
helpText: "Starting sequence value"
},
"fields.language": {
label: "Language",
helpText: "Editor language (e.g. sql, javascript)"
},
"fields.validation": {
label: "Validation",
helpText: "CEL predicate — must evaluate true"
},
"fields.errorMessage": {
label: "Error Message",
helpText: "Shown when validation fails"
},
"fields.audit": {
label: "Audit",
helpText: "Audit changes to this field"
},
"fields.trackHistory": {
label: "Track History",
helpText: "Keep change history"
},
"fields.pii": {
label: "Pii",
helpText: "Personally identifiable information"
},
"fields.encrypted": {
label: "Encrypted",
helpText: "Encrypt at rest"
},
capabilities: {
label: "Capabilities",
helpText: "Enable/disable system features"
},
"capabilities.trackHistory": {
label: "Track History"
},
"capabilities.searchable": {
label: "Searchable"
},
"capabilities.apiEnabled": {
label: "Api Enabled"
},
"capabilities.files": {
label: "Files"
},
"capabilities.feeds": {
label: "Feeds"
},
"capabilities.activities": {
label: "Activities"
},
"capabilities.trash": {
label: "Trash"
},
"capabilities.mru": {
label: "Mru"
},
"capabilities.clone": {
label: "Clone"
},
datasource: {
label: "Datasource",
helpText: "Target datasource ID (default: \"default\")"
}
}
},
field: {
label: "Field",
sections: {
basics: {
label: "Basics",
description: "Core field identity and constraints."
},
configuration: {
label: "Configuration",
description: "Field-type specific settings (visible blocks depend on the chosen type)."
},
formula: {
label: "Formula & Computed",
description: "Calculated values and roll-up summaries."
},
advanced: {
label: "Advanced",
description: "Database, UI, audit, and security settings."
}
},
fields: {
name: {
label: "Name",
helpText: "Unique identifier (snake_case, immutable after creation)"
},
label: {
label: "Label",
helpText: "Display name for users"
},
type: {
label: "Type",
helpText: "Data type of this field"
},
group: {
label: "Group",
helpText: "Group name for form layout"
},
description: {
label: "Description",
helpText: "Help text shown to users"
},
required: {
label: "Required",
helpText: "User must provide a value"
},
unique: {
label: "Unique",
helpText: "No two records can have the same value"
},
multiple: {
label: "Multiple",
helpText: "Allow multiple values (for select/lookup)"
},
defaultValue: {
label: "Default Value",
helpText: "Default value for new records"
},
minLength: {
label: "Min Length",
helpText: "Minimum character length"
},
maxLength: {
label: "Max Length",
helpText: "Maximum character length"
},
min: {
label: "Min",
helpText: "Minimum value"
},
max: {
label: "Max",
helpText: "Maximum value"
},
precision: {
label: "Precision",
helpText: "Decimal places (e.g., 2 for $10.50)"
},
scale: {
label: "Scale",
helpText: "Number of decimal digits"
},
options: {
label: "Options",
helpText: "Available options (label/value pairs)"
},
reference: {
label: "Reference",
helpText: "Referenced object name"
},
referenceFilters: {
label: "Reference Filters",
helpText: "Filter expressions (e.g., \"active = true\")"
},
deleteBehavior: {
label: "Delete Behavior",
helpText: "What happens when referenced record is deleted"
},
expression: {
label: "Expression",
helpText: "CEL expression to calculate this field (makes it read-only)"
},
summaryOperations: {
label: "Summary Operations",
helpText: "Roll-up summary configuration (for parent-child relationships)"
},
cached: {
label: "Cached",
helpText: "Caching configuration for computed fields"
},
columnName: {
label: "Column Name",
helpText: "Physical column name in database (defaults to field name)"
},
index: {
label: "Index",
helpText: "Create database index for faster queries"
},
externalId: {
label: "External Id",
helpText: "Mark as external ID for upsert operations"
},
readonly: {
label: "Readonly",
helpText: "Field is read-only in forms"
},
hidden: {
label: "Hidden",
helpText: "Hide field from default UI views"
},
searchable: {
label: "Searchable",
helpText: "Include in global search results"
},
sortable: {
label: "Sortable",
helpText: "Allow sorting lists by this field"
},
auditTrail: {
label: "Audit Trail",
helpText: "Track detailed changes with user and timestamp"
},
trackFeedHistory: {
label: "Track Feed History",
helpText: "Show changes in activity feed"
},
encryptionConfig: {
label: "Encryption Config",
helpText: "Field-level encryption (GDPR/HIPAA/PCI-DSS)"
},
maskingRule: {
label: "Masking Rule",
helpText: "Data masking rules for PII protection"
}
}
},
trigger: {
label: "Trigger"
},
validation: {
label: "Validation Rule"
},
hook: {
label: "Hook",
sections: {
identity: {
label: "Identity",
description: "What this hook is and when it fires."
},
body: {
label: "Body",
description: "Inline expression or sandboxed JavaScript executed when the hook fires."
},
legacy_handler: {
label: "Legacy handler",
description: "Function name reference — deprecated in favour of body."
},
execution: {
label: "Execution"
}
},
fields: {
name: {
label: "Name",
helpText: "snake_case identifier (immutable after creation)"
},
label: {
label: "Label"
},
description: {
label: "Description"
},
object: {
label: "Object",
helpText: "Target object name (or \"*\" for global)"
},
events: {
label: "Events",
helpText: "Lifecycle events (e.g. beforeInsert, afterUpdate)"
},
priority: {
label: "Priority",
helpText: "Lower numbers run first"
},
body: {
label: "Body",
helpText: "Either an L1 expression or an L2 sandboxed JS body"
},
"body.language": {
label: "Language",
helpText: "expression = pure formula; js = sandboxed JavaScript"
},
"body.source": {
label: "Source",
helpText: "Function body source — no top-level imports"
},
"body.capabilities": {
label: "Capabilities",
helpText: "Allowed ctx APIs (api.read, api.write, crypto.uuid, log, …)"
},
"body.timeoutMs": {
label: "Timeout Ms",
helpText: "Per-invocation timeout (ms)"
},
handler: {
label: "Handler",
helpText: "Handler function name (deprecated — prefer `body`)"
},
async: {
label: "Async",
helpText: "Run in background, do not block the transaction"
},
onError: {
label: "On Error"
},
condition: {
label: "Condition",
helpText: "Optional formula — skip the hook when this evaluates to false"
}
}
},
view: {
label: "View",
sections: {
basics: {
label: "Basics",
description: "Identity and primary surface."
},
columns_filters: {
label: "Columns & filters",
description: "What rows show and how users filter them."
},
table_options: {
label: "Table options",
description: "Grid-only display options."
},
kanban: {
label: "Kanban",
description: "Kanban-specific board configuration."
},
calendar: {
label: "Calendar",
description: "Calendar-specific configuration."
},
gantt: {
label: "Gantt",
description: "Gantt-specific configuration."
},
gallery: {
label: "Gallery",
description: "Gallery-specific configuration."
},
timeline: {
label: "Timeline",
description: "Timeline-specific configuration."
},
chart: {
label: "Chart",
description: "Chart-specific configuration."
},
navigation_sharing: {
label: "Navigation & sharing",
description: "Where this view appears and who can see it."
}
},
fields: {
name: {
label: "Name",
helpText: "snake_case, unique per environment"
},
label: {
label: "Label"
},
description: {
label: "Description"
},
type: {
label: "Type",
helpText: "Primary view surface"
},
data: {
label: "Data",
helpText: "Data source — e.g. {\"provider\":\"object\",\"object\":\"task\"}"
},
columns: {
label: "Columns",
helpText: "Columns to display (field names from selected object)"
},
filter: {
label: "Filter",
helpText: "Filter conditions"
},
sort: {
label: "Sort",
helpText: "Default sort order"
},
searchableFields: {
label: "Searchable Fields",
helpText: "Field names available for quick search"
},
filterableFields: {
label: "Filterable Fields",
helpText: "Field names available for filtering"
},
resizable: {
label: "Resizable"
},
striped: {
label: "Striped"
},
bordered: {
label: "Bordered"
},
compactToolbar: {
label: "Compact Toolbar"
},
rowHeight: {
label: "Row Height"
},
selection: {
label: "Selection"
},
pagination: {
label: "Pagination"
},
kanban: {
label: "Kanban"
},
calendar: {
label: "Calendar"
},
gantt: {
label: "Gantt"
},
gallery: {
label: "Gallery"
},
timeline: {
label: "Timeline"
},
chart: {
label: "Chart"
},
navigation: {
label: "Navigation"
},
sharing: {
label: "Sharing"
}
}
},
page: {
label: "Page",
sections: {
basics: {
label: "Basics",
description: "Page identity and template."
},
data_context: {
label: "Data Context",
description: "Record binding and page-local state."
},
layout: {
label: "Layout",
description: "Page regions and components placed within them."
},
advanced: {
label: "Advanced",
description: "Activation, audience, and accessibility."
}
},
fields: {
name: {
label: "Name",
helpText: "Unique identifier (snake_case)"
},
label: {
label: "Label",
helpText: "Page title shown to users"
},
icon: {
label: "Icon",
helpText: "Icon for navigation menu"
},
type: {
label: "Type",
helpText: "Page kind — list / record / home / app / utility. How a list page looks (grid / kanban / calendar) is a visualization set under Interface, not a page type."
},
template: {
label: "Template",
helpText: "Layout template (e.g., \"header-sidebar-main\")"
},
description: {
label: "Description",
helpText: "Page description for navigation"
},
object: {
label: "Object",
helpText: "Bound object (for Record pages)"
},
variables: {
label: "Variables",
helpText: "Local page state variables"
},
regions: {
label: "Regions",
helpText: "Layout regions (header, main, sidebar, footer) with components"
},
isDefault: {
label: "Is Default",
helpText: "Set as default page for this page type"
},
kind: {
label: "Kind",
helpText: "Page override mode: full or slotted (for record pages)"
},
assignedProfiles: {
label: "Assigned Profiles",
helpText: "Profiles that can access this page"
},
aria: {
label: "Aria",
helpText: "Accessibility attributes (ARIA labels, roles)"
}
}
},
dashboard: {
label: "Dashboard",
sections: {
basics: {
label: "Basics",
description: "Dashboard identity and description."
},
layout: {
label: "Layout",
description: "Grid sizing and refresh cadence."
},
widgets: {
label: "Widgets",
description: "Cards and charts placed on the grid."
},
filters: {
label: "Filters",
description: "Default and global filters applied across widgets."
},
advanced: {
label: "Advanced",
description: "Accessibility and performance tuning."
}
},
fields: {
name: {
label: "Name",
helpText: "snake_case unique identifier"
},
label: {
label: "Label",
helpText: "Display name"
},
description: {
label: "Description"
},
columns: {
label: "Columns",
helpText: "Grid columns (default 12)"
},
gap: {
label: "Gap",
helpText: "Grid gap (Tailwind units)"
},
refreshInterval: {
label: "Refresh Interval",
helpText: "Auto-refresh (seconds)"
},
header: {
label: "Header",
helpText: "Dashboard header config (title, subtitle, actions)"
},
widgets: {
label: "Widgets",
helpText: "Dashboard widgets with position and sizing"
},
dateRange: {
label: "Date Range",
helpText: "Default date range selector"
},
globalFilters: {
label: "Global Filters",
helpText: "Filters applied to all widgets"
},
aria: {
label: "Aria",
helpText: "Accessibility labels"
},
performance: {
label: "Performance",
helpText: "Caching and optimization config"
}
}
},
app: {
label: "Application",
sections: {
basics: {
label: "Basics",
description: "App identity and activation."
},
navigation: {
label: "Navigation",
description: "Sidebar items and area grouping."
},
content: {
label: "Content",
description: "Objects and APIs this app uses."
},
branding: {
label: "Branding",
description: "Theme colors and logo."
},
access_and_sharing: {
label: "Access & sharing",
description: "Who can access this app and how it can be embedded."
}
},
fields: {
name: {
label: "Name",
helpText: "snake_case, unique"
},
label: {
label: "Label"
},
description: {
label: "Description"
},
version: {
label: "Version"
},
icon: {
label: "Icon",
helpText: "Lucide icon name (e.g. \"users\", \"briefcase\")"
},
active: {
label: "Active"
},
isDefault: {
label: "Is Default",
helpText: "Make this the default app for new users"
},
navigation: {
label: "Navigation",
helpText: "Nav tree — recursive structure"
},
areas: {
label: "Areas",
helpText: "Group items into collapsible areas"
},
homePageId: {
label: "Home Page Id",
helpText: "Landing page when app opens"
},
mobileNavigation: {
label: "Mobile Navigation",
helpText: "Bottom tab bar config for mobile"
},
objects: {
label: "Objects",
helpText: "Object names this app exposes"
},
apis: {
label: "Apis",
helpText: "API endpoint definitions"
},
defaultAgent: {
label: "Default Agent",
helpText: "AI agent for the ambient assistant button"
},
branding: {
label: "Branding",
helpText: "Primary/secondary colors, logo, theme"
},
requiredPermissions: {
label: "Required Permissions",
helpText: "Permissions needed to access this app"
},
sharing: {
label: "Sharing",
helpText: "Public/internal/restricted access control"
},
embed: {
label: "Embed",
helpText: "iFrame embed configuration"
},
aria: {
label: "Aria",
helpText: "Accessibility labels"
}
}
},
action: {
label: "Action",
sections: {
basics: {
label: "Basics",
description: "Action identity and presentation."
},
behavior: {
label: "Behavior",
description: "Configure what happens when the action is triggered."
},
placement: {
label: "Placement",
description: "Where and when the action button appears."
},
advanced: {
label: "Advanced",
description: "Bulk operations, AI exposure, and API request shape."
}
},
fields: {
name: {
label: "Name",
helpText: "Unique identifier (snake_case)"
},
label: {
label: "Label",
helpText: "Button text shown to users"
},
objectName: {
label: "Object Name",
helpText: "Object this action belongs to (optional)"
},
icon: {
label: "Icon",
helpText: "Lucide icon name (e.g., \"check\", \"x-circle\")"
},
type: {
label: "Type",
helpText: "What happens when clicked"
},
variant: {
label: "Variant",
helpText: "Button style (primary=blue, danger=red, ghost=transparent)"
},
target: {
label: "Target",
helpText: "URL, flow name, or API endpoint to call"
},
method: {
label: "Method",
helpText: "HTTP method (GET, POST, PUT, DELETE)"
},
body: {
label: "Body",
helpText: "JavaScript code to execute"
},
params: {
label: "Params",
helpText: "User input parameters (show form before executing)"
},
confirmText: {
label: "Confirm Text",
helpText: "Confirmation message (e.g., \"Are you sure?\")"
},
successMessage: {
label: "Success Message",
helpText: "Success message after completion"
},
refreshAfter: {
label: "Refresh After",
helpText: "Refresh the list/page after action completes"
},
locations: {
label: "Locations",
helpText: "Where to show this action (toolbar, row menu, etc.)"
},
component: {
label: "Component",
helpText: "How to render (button, icon, menu item)"
},
visible: {
label: "Visible",
helpText: "CEL expression: show only when condition is true"
},
disabled: {
label: "Disabled",
helpText: "CEL expression: disable when condition is true"
},
shortcut: {
label: "Shortcut",
helpText: "Keyboard shortcut (e.g., \"Ctrl+S\", \"Cmd+Enter\")"
},
bulkEnabled: {
label: "Bulk Enabled",
helpText: "Allow applying to multiple selected records"
},
aiExposed: {
label: "Ai Exposed",
helpText: "Allow AI agents to call this action"
},
recordIdParam: {
label: "Record Id Param",
helpText: "Body parameter name for record ID"
},