@open-mercato/cli 0.6.6-develop.6457.1.41b39a465a → 0.6.6-develop.6460.1.f94c74174c
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/.turbo/turbo-build.log +45 -1
- package/build.mjs +25 -15
- package/dist/agentic/guides/module-facts.json +3375 -349
- package/dist/agentic/guides/modules/ai_assistant.md +57 -0
- package/dist/agentic/guides/modules/api_docs.md +39 -0
- package/dist/agentic/guides/modules/api_keys.md +41 -0
- package/dist/agentic/guides/modules/attachments.md +46 -0
- package/dist/agentic/guides/modules/audit_logs.md +42 -0
- package/dist/agentic/guides/modules/auth.md +1 -1
- package/dist/agentic/guides/modules/business_rules.md +44 -0
- package/dist/agentic/guides/modules/catalog.md +1 -1
- package/dist/agentic/guides/modules/channel_gmail.md +39 -0
- package/dist/agentic/guides/modules/channel_imap.md +39 -0
- package/dist/agentic/guides/modules/checkout.md +60 -0
- package/dist/agentic/guides/modules/communication_channels.md +65 -0
- package/dist/agentic/guides/modules/configs.md +42 -0
- package/dist/agentic/guides/modules/content.md +39 -0
- package/dist/agentic/guides/modules/currencies.md +1 -1
- package/dist/agentic/guides/modules/customer_accounts.md +1 -1
- package/dist/agentic/guides/modules/customers.md +1 -1
- package/dist/agentic/guides/modules/dashboards.md +43 -0
- package/dist/agentic/guides/modules/data_sync.md +1 -1
- package/dist/agentic/guides/modules/dictionaries.md +46 -0
- package/dist/agentic/guides/modules/directory.md +49 -0
- package/dist/agentic/guides/modules/entities.md +46 -0
- package/dist/agentic/guides/modules/events.md +39 -0
- package/dist/agentic/guides/modules/feature_toggles.md +42 -0
- package/dist/agentic/guides/modules/gateway_stripe.md +39 -0
- package/dist/agentic/guides/modules/generators.md +39 -0
- package/dist/agentic/guides/modules/inbox_ops.md +59 -0
- package/dist/agentic/guides/modules/integrations.md +1 -1
- package/dist/agentic/guides/modules/messages.md +55 -0
- package/dist/agentic/guides/modules/notifications.md +41 -0
- package/dist/agentic/guides/modules/onboarding.md +41 -0
- package/dist/agentic/guides/modules/payment_gateways.md +52 -0
- package/dist/agentic/guides/modules/perspectives.md +42 -0
- package/dist/agentic/guides/modules/planner.md +49 -0
- package/dist/agentic/guides/modules/portal.md +39 -0
- package/dist/agentic/guides/modules/progress.md +48 -0
- package/dist/agentic/guides/modules/query_index.md +46 -0
- package/dist/agentic/guides/modules/record_locks.md +53 -0
- package/dist/agentic/guides/modules/resources.md +62 -0
- package/dist/agentic/guides/modules/sales.md +1 -1
- package/dist/agentic/guides/modules/scheduler.md +46 -0
- package/dist/agentic/guides/modules/search.md +39 -0
- package/dist/agentic/guides/modules/security.md +67 -0
- package/dist/agentic/guides/modules/shipping_carriers.md +51 -0
- package/dist/agentic/guides/modules/sso.md +59 -0
- package/dist/agentic/guides/modules/staff.md +88 -0
- package/dist/agentic/guides/modules/storage_s3.md +39 -0
- package/dist/agentic/guides/modules/sync_akeneo.md +39 -0
- package/dist/agentic/guides/modules/sync_excel.md +41 -0
- package/dist/agentic/guides/modules/system_status_overlays.md +39 -0
- package/dist/agentic/guides/modules/translations.md +44 -0
- package/dist/agentic/guides/modules/webhooks.md +54 -0
- package/dist/agentic/guides/modules/workflows.md +1 -1
- package/dist/lib/generators/index.js +0 -2
- package/dist/lib/generators/index.js.map +2 -2
- package/dist/lib/generators/module-facts-discovery.js +46 -0
- package/dist/lib/generators/module-facts-discovery.js.map +7 -0
- package/dist/lib/generators/module-facts.js +14 -8
- package/dist/lib/generators/module-facts.js.map +2 -2
- package/dist/mercato.js +1 -3
- package/dist/mercato.js.map +2 -2
- package/package.json +5 -5
- package/src/__tests__/mercato.test.ts +0 -5
- package/src/lib/generators/__tests__/module-facts.bc-guard.test.ts +36 -23
- package/src/lib/generators/__tests__/module-facts.discovery.test.ts +88 -0
- package/src/lib/generators/index.ts +0 -1
- package/src/lib/generators/module-facts-discovery.ts +58 -0
- package/src/lib/generators/module-facts.ts +50 -10
- package/src/mercato.ts +0 -2
- package/dist/lib/generators/module-facts-generate.js +0 -52
- package/dist/lib/generators/module-facts-generate.js.map +0 -7
- package/src/lib/generators/module-facts-generate.ts +0 -68
|
@@ -1,8 +1,296 @@
|
|
|
1
1
|
{
|
|
2
|
+
"ai_assistant": {
|
|
3
|
+
"title": "AI Assistant",
|
|
4
|
+
"description": "MCP server for AI assistant integration with multi-tenant support.",
|
|
5
|
+
"coreVersion": "0.6.6-develop.6460.1.f94c74174c",
|
|
6
|
+
"entities": [
|
|
7
|
+
{
|
|
8
|
+
"id": "ai_assistant:ai_agent_prompt_override",
|
|
9
|
+
"class": "AiAgentPromptOverride",
|
|
10
|
+
"table": "ai_agent_prompt_overrides",
|
|
11
|
+
"editable": true,
|
|
12
|
+
"customFields": false
|
|
13
|
+
},
|
|
14
|
+
{
|
|
15
|
+
"id": "ai_assistant:ai_pending_action",
|
|
16
|
+
"class": "AiPendingAction",
|
|
17
|
+
"table": "ai_pending_actions",
|
|
18
|
+
"editable": false,
|
|
19
|
+
"customFields": false
|
|
20
|
+
},
|
|
21
|
+
{
|
|
22
|
+
"id": "ai_assistant:ai_agent_runtime_override",
|
|
23
|
+
"class": "AiAgentRuntimeOverride",
|
|
24
|
+
"table": "ai_agent_runtime_overrides",
|
|
25
|
+
"editable": true,
|
|
26
|
+
"customFields": false
|
|
27
|
+
},
|
|
28
|
+
{
|
|
29
|
+
"id": "ai_assistant:ai_token_usage_event",
|
|
30
|
+
"class": "AiTokenUsageEvent",
|
|
31
|
+
"table": "ai_token_usage_events",
|
|
32
|
+
"editable": true,
|
|
33
|
+
"customFields": false
|
|
34
|
+
},
|
|
35
|
+
{
|
|
36
|
+
"id": "ai_assistant:ai_token_usage_daily",
|
|
37
|
+
"class": "AiTokenUsageDaily",
|
|
38
|
+
"table": "ai_token_usage_daily",
|
|
39
|
+
"editable": true,
|
|
40
|
+
"customFields": false
|
|
41
|
+
},
|
|
42
|
+
{
|
|
43
|
+
"id": "ai_assistant:ai_tenant_model_allowlist",
|
|
44
|
+
"class": "AiTenantModelAllowlist",
|
|
45
|
+
"table": "ai_tenant_model_allowlists",
|
|
46
|
+
"editable": true,
|
|
47
|
+
"customFields": false
|
|
48
|
+
},
|
|
49
|
+
{
|
|
50
|
+
"id": "ai_assistant:ai_agent_mutation_policy_override",
|
|
51
|
+
"class": "AiAgentMutationPolicyOverride",
|
|
52
|
+
"table": "ai_agent_mutation_policy_overrides",
|
|
53
|
+
"editable": true,
|
|
54
|
+
"customFields": false
|
|
55
|
+
},
|
|
56
|
+
{
|
|
57
|
+
"id": "ai_assistant:ai_chat_conversation",
|
|
58
|
+
"class": "AiChatConversation",
|
|
59
|
+
"table": "ai_chat_conversations",
|
|
60
|
+
"editable": true,
|
|
61
|
+
"customFields": false
|
|
62
|
+
},
|
|
63
|
+
{
|
|
64
|
+
"id": "ai_assistant:ai_chat_conversation_participant",
|
|
65
|
+
"class": "AiChatConversationParticipant",
|
|
66
|
+
"table": "ai_chat_conversation_participants",
|
|
67
|
+
"editable": true,
|
|
68
|
+
"customFields": false
|
|
69
|
+
},
|
|
70
|
+
{
|
|
71
|
+
"id": "ai_assistant:ai_chat_message",
|
|
72
|
+
"class": "AiChatMessage",
|
|
73
|
+
"table": "ai_chat_messages",
|
|
74
|
+
"editable": true,
|
|
75
|
+
"customFields": false
|
|
76
|
+
}
|
|
77
|
+
],
|
|
78
|
+
"events": [
|
|
79
|
+
{
|
|
80
|
+
"id": "ai.action.confirmed",
|
|
81
|
+
"category": null,
|
|
82
|
+
"entity": "ai_pending_action"
|
|
83
|
+
},
|
|
84
|
+
{
|
|
85
|
+
"id": "ai.action.cancelled",
|
|
86
|
+
"category": null,
|
|
87
|
+
"entity": "ai_pending_action"
|
|
88
|
+
},
|
|
89
|
+
{
|
|
90
|
+
"id": "ai.action.expired",
|
|
91
|
+
"category": null,
|
|
92
|
+
"entity": "ai_pending_action"
|
|
93
|
+
},
|
|
94
|
+
{
|
|
95
|
+
"id": "ai.token_usage.recorded",
|
|
96
|
+
"category": null,
|
|
97
|
+
"entity": "token_usage"
|
|
98
|
+
},
|
|
99
|
+
{
|
|
100
|
+
"id": "ai_assistant.conversation.shared",
|
|
101
|
+
"category": null,
|
|
102
|
+
"entity": "ai_chat_conversation"
|
|
103
|
+
},
|
|
104
|
+
{
|
|
105
|
+
"id": "ai_assistant.conversation.unshared",
|
|
106
|
+
"category": null,
|
|
107
|
+
"entity": "ai_chat_conversation"
|
|
108
|
+
}
|
|
109
|
+
],
|
|
110
|
+
"aclFeatures": [
|
|
111
|
+
"ai_assistant.view",
|
|
112
|
+
"ai_assistant.settings.manage",
|
|
113
|
+
"ai_assistant.conversations.manage",
|
|
114
|
+
"ai_assistant.conversations.share",
|
|
115
|
+
"ai_assistant.mcp.serve",
|
|
116
|
+
"ai_assistant.tools.list",
|
|
117
|
+
"ai_assistant.mcp_servers.view",
|
|
118
|
+
"ai_assistant.mcp_servers.manage"
|
|
119
|
+
],
|
|
120
|
+
"apiRoutes": [],
|
|
121
|
+
"diTokens": [],
|
|
122
|
+
"searchEntities": [],
|
|
123
|
+
"hostTokens": {
|
|
124
|
+
"entityIds": [],
|
|
125
|
+
"tableIds": []
|
|
126
|
+
},
|
|
127
|
+
"notifications": [
|
|
128
|
+
"ai_assistant.conversation_shared"
|
|
129
|
+
],
|
|
130
|
+
"cli": [
|
|
131
|
+
"mcp:serve",
|
|
132
|
+
"mcp:serve-http",
|
|
133
|
+
"mcp:dev",
|
|
134
|
+
"mcp:list-tools",
|
|
135
|
+
"entity-graph",
|
|
136
|
+
"run-pending-action-cleanup",
|
|
137
|
+
"run-token-usage-prune",
|
|
138
|
+
"test-tools"
|
|
139
|
+
]
|
|
140
|
+
},
|
|
141
|
+
"api_docs": {
|
|
142
|
+
"title": "API Documentation",
|
|
143
|
+
"description": "Auto-generated documentation for all HTTP endpoints.",
|
|
144
|
+
"coreVersion": "0.6.6-develop.6460.1.f94c74174c",
|
|
145
|
+
"entities": [],
|
|
146
|
+
"events": [],
|
|
147
|
+
"aclFeatures": [],
|
|
148
|
+
"apiRoutes": [],
|
|
149
|
+
"diTokens": [],
|
|
150
|
+
"searchEntities": [],
|
|
151
|
+
"hostTokens": {
|
|
152
|
+
"entityIds": [],
|
|
153
|
+
"tableIds": []
|
|
154
|
+
},
|
|
155
|
+
"notifications": [],
|
|
156
|
+
"cli": []
|
|
157
|
+
},
|
|
158
|
+
"api_keys": {
|
|
159
|
+
"title": "API Keys",
|
|
160
|
+
"description": "Manage access tokens for external API access.",
|
|
161
|
+
"coreVersion": "0.6.6-develop.6460.1.f94c74174c",
|
|
162
|
+
"entities": [
|
|
163
|
+
{
|
|
164
|
+
"id": "api_keys:api_key",
|
|
165
|
+
"class": "ApiKey",
|
|
166
|
+
"table": "api_keys",
|
|
167
|
+
"editable": true,
|
|
168
|
+
"customFields": false
|
|
169
|
+
}
|
|
170
|
+
],
|
|
171
|
+
"events": [],
|
|
172
|
+
"aclFeatures": [
|
|
173
|
+
"api_keys.view",
|
|
174
|
+
"api_keys.create",
|
|
175
|
+
"api_keys.delete"
|
|
176
|
+
],
|
|
177
|
+
"apiRoutes": [],
|
|
178
|
+
"diTokens": [],
|
|
179
|
+
"searchEntities": [],
|
|
180
|
+
"hostTokens": {
|
|
181
|
+
"entityIds": [],
|
|
182
|
+
"tableIds": [
|
|
183
|
+
"api_keys.list"
|
|
184
|
+
]
|
|
185
|
+
},
|
|
186
|
+
"notifications": [],
|
|
187
|
+
"cli": [
|
|
188
|
+
"add"
|
|
189
|
+
]
|
|
190
|
+
},
|
|
191
|
+
"attachments": {
|
|
192
|
+
"title": "Attachments",
|
|
193
|
+
"description": "File attachments and media management.",
|
|
194
|
+
"coreVersion": "0.6.6-develop.6460.1.f94c74174c",
|
|
195
|
+
"entities": [
|
|
196
|
+
{
|
|
197
|
+
"id": "attachments:attachment_partition",
|
|
198
|
+
"class": "AttachmentPartition",
|
|
199
|
+
"table": "attachment_partitions",
|
|
200
|
+
"editable": true,
|
|
201
|
+
"customFields": false
|
|
202
|
+
},
|
|
203
|
+
{
|
|
204
|
+
"id": "attachments:attachment",
|
|
205
|
+
"class": "Attachment",
|
|
206
|
+
"table": "attachments",
|
|
207
|
+
"editable": false,
|
|
208
|
+
"customFields": false
|
|
209
|
+
}
|
|
210
|
+
],
|
|
211
|
+
"events": [
|
|
212
|
+
{
|
|
213
|
+
"id": "attachments.attachment.created",
|
|
214
|
+
"category": "crud",
|
|
215
|
+
"entity": "attachment"
|
|
216
|
+
},
|
|
217
|
+
{
|
|
218
|
+
"id": "attachments.attachment.updated",
|
|
219
|
+
"category": "crud",
|
|
220
|
+
"entity": "attachment"
|
|
221
|
+
},
|
|
222
|
+
{
|
|
223
|
+
"id": "attachments.attachment.deleted",
|
|
224
|
+
"category": "crud",
|
|
225
|
+
"entity": "attachment"
|
|
226
|
+
}
|
|
227
|
+
],
|
|
228
|
+
"aclFeatures": [
|
|
229
|
+
"attachments.view",
|
|
230
|
+
"attachments.manage"
|
|
231
|
+
],
|
|
232
|
+
"apiRoutes": [],
|
|
233
|
+
"diTokens": [
|
|
234
|
+
"storageDriverFactory"
|
|
235
|
+
],
|
|
236
|
+
"searchEntities": [],
|
|
237
|
+
"hostTokens": {
|
|
238
|
+
"entityIds": [],
|
|
239
|
+
"tableIds": []
|
|
240
|
+
},
|
|
241
|
+
"notifications": [],
|
|
242
|
+
"cli": [
|
|
243
|
+
"delete"
|
|
244
|
+
]
|
|
245
|
+
},
|
|
246
|
+
"audit_logs": {
|
|
247
|
+
"title": "Audit & Action Logs",
|
|
248
|
+
"description": "Tracks user actions and data accesses with undo support scaffolding.",
|
|
249
|
+
"coreVersion": "0.6.6-develop.6460.1.f94c74174c",
|
|
250
|
+
"entities": [
|
|
251
|
+
{
|
|
252
|
+
"id": "audit_logs:action_log",
|
|
253
|
+
"class": "ActionLog",
|
|
254
|
+
"table": "action_logs",
|
|
255
|
+
"editable": true,
|
|
256
|
+
"customFields": false
|
|
257
|
+
},
|
|
258
|
+
{
|
|
259
|
+
"id": "audit_logs:access_log",
|
|
260
|
+
"class": "AccessLog",
|
|
261
|
+
"table": "access_logs",
|
|
262
|
+
"editable": false,
|
|
263
|
+
"customFields": false
|
|
264
|
+
}
|
|
265
|
+
],
|
|
266
|
+
"events": [],
|
|
267
|
+
"aclFeatures": [
|
|
268
|
+
"audit_logs.view_self",
|
|
269
|
+
"audit_logs.view_tenant",
|
|
270
|
+
"audit_logs.undo_self",
|
|
271
|
+
"audit_logs.undo_tenant",
|
|
272
|
+
"audit_logs.redo_self",
|
|
273
|
+
"audit_logs.redo_tenant"
|
|
274
|
+
],
|
|
275
|
+
"apiRoutes": [],
|
|
276
|
+
"diTokens": [
|
|
277
|
+
"actionLogService",
|
|
278
|
+
"accessLogService"
|
|
279
|
+
],
|
|
280
|
+
"searchEntities": [],
|
|
281
|
+
"hostTokens": {
|
|
282
|
+
"entityIds": [],
|
|
283
|
+
"tableIds": []
|
|
284
|
+
},
|
|
285
|
+
"notifications": [],
|
|
286
|
+
"cli": [
|
|
287
|
+
"projections:backfill"
|
|
288
|
+
]
|
|
289
|
+
},
|
|
2
290
|
"auth": {
|
|
3
291
|
"title": "Authentication & Accounts",
|
|
4
292
|
"description": "User accounts, sessions, roles and password resets.",
|
|
5
|
-
"coreVersion": "0.6.6-develop.
|
|
293
|
+
"coreVersion": "0.6.6-develop.6460.1.f94c74174c",
|
|
6
294
|
"entities": [
|
|
7
295
|
{
|
|
8
296
|
"id": "auth:user",
|
|
@@ -188,10 +476,72 @@
|
|
|
188
476
|
"set-password"
|
|
189
477
|
]
|
|
190
478
|
},
|
|
479
|
+
"business_rules": {
|
|
480
|
+
"title": "Business Rules",
|
|
481
|
+
"description": "Business Rules Engine for defining, managing, and executing business logic and automation rules.",
|
|
482
|
+
"coreVersion": "0.6.6-develop.6460.1.f94c74174c",
|
|
483
|
+
"entities": [
|
|
484
|
+
{
|
|
485
|
+
"id": "business_rules:business_rule",
|
|
486
|
+
"class": "BusinessRule",
|
|
487
|
+
"table": "business_rules",
|
|
488
|
+
"editable": true,
|
|
489
|
+
"customFields": false
|
|
490
|
+
},
|
|
491
|
+
{
|
|
492
|
+
"id": "business_rules:rule_execution_log",
|
|
493
|
+
"class": "RuleExecutionLog",
|
|
494
|
+
"table": "rule_execution_logs",
|
|
495
|
+
"editable": false,
|
|
496
|
+
"customFields": false
|
|
497
|
+
},
|
|
498
|
+
{
|
|
499
|
+
"id": "business_rules:rule_set",
|
|
500
|
+
"class": "RuleSet",
|
|
501
|
+
"table": "rule_sets",
|
|
502
|
+
"editable": true,
|
|
503
|
+
"customFields": false
|
|
504
|
+
},
|
|
505
|
+
{
|
|
506
|
+
"id": "business_rules:rule_set_member",
|
|
507
|
+
"class": "RuleSetMember",
|
|
508
|
+
"table": "rule_set_members",
|
|
509
|
+
"editable": false,
|
|
510
|
+
"customFields": false
|
|
511
|
+
}
|
|
512
|
+
],
|
|
513
|
+
"events": [],
|
|
514
|
+
"aclFeatures": [
|
|
515
|
+
"business_rules.view",
|
|
516
|
+
"business_rules.manage",
|
|
517
|
+
"business_rules.execute",
|
|
518
|
+
"business_rules.view_logs",
|
|
519
|
+
"business_rules.manage_sets"
|
|
520
|
+
],
|
|
521
|
+
"apiRoutes": [],
|
|
522
|
+
"diTokens": [
|
|
523
|
+
"ruleEvaluator",
|
|
524
|
+
"actionExecutor",
|
|
525
|
+
"ruleEngine"
|
|
526
|
+
],
|
|
527
|
+
"searchEntities": [],
|
|
528
|
+
"hostTokens": {
|
|
529
|
+
"entityIds": [],
|
|
530
|
+
"tableIds": [
|
|
531
|
+
"business-rules.rules.list"
|
|
532
|
+
]
|
|
533
|
+
},
|
|
534
|
+
"notifications": [
|
|
535
|
+
"business_rules.rule.execution_failed"
|
|
536
|
+
],
|
|
537
|
+
"cli": [
|
|
538
|
+
"seed-guard-rules"
|
|
539
|
+
]
|
|
540
|
+
},
|
|
191
541
|
"catalog": {
|
|
192
542
|
"title": "Product Catalog",
|
|
193
543
|
"description": "Configurable catalog for products, variants, and pricing used by the sales module.",
|
|
194
|
-
"coreVersion": "0.6.6-develop.
|
|
544
|
+
"coreVersion": "0.6.6-develop.6460.1.f94c74174c",
|
|
195
545
|
"entities": [
|
|
196
546
|
{
|
|
197
547
|
"id": "catalog:catalog_option_schema_template",
|
|
@@ -402,76 +752,476 @@
|
|
|
402
752
|
"seed-examples-bundle"
|
|
403
753
|
]
|
|
404
754
|
},
|
|
405
|
-
"
|
|
406
|
-
"title": "
|
|
407
|
-
"description": "
|
|
408
|
-
"coreVersion": "0.6.6-develop.
|
|
755
|
+
"channel_gmail": {
|
|
756
|
+
"title": "Gmail Email Channel",
|
|
757
|
+
"description": "Connect per-user Gmail accounts via OAuth2. Outbound via gmail.users.messages.send; inbound via History API polling. Pairs with the Communications Hub.",
|
|
758
|
+
"coreVersion": "0.6.6-develop.6460.1.f94c74174c",
|
|
759
|
+
"entities": [],
|
|
760
|
+
"events": [],
|
|
761
|
+
"aclFeatures": [
|
|
762
|
+
"channel_gmail.view",
|
|
763
|
+
"channel_gmail.configure"
|
|
764
|
+
],
|
|
765
|
+
"apiRoutes": [],
|
|
766
|
+
"diTokens": [],
|
|
767
|
+
"searchEntities": [],
|
|
768
|
+
"hostTokens": {
|
|
769
|
+
"entityIds": [],
|
|
770
|
+
"tableIds": []
|
|
771
|
+
},
|
|
772
|
+
"notifications": [],
|
|
773
|
+
"cli": []
|
|
774
|
+
},
|
|
775
|
+
"channel_imap": {
|
|
776
|
+
"title": "IMAP + SMTP Email Channel",
|
|
777
|
+
"description": "Connect personal mailboxes via IMAP for inbound polling and SMTP for outbound delivery. Pairs with the Communications Hub (SPEC-045d).",
|
|
778
|
+
"coreVersion": "0.6.6-develop.6460.1.f94c74174c",
|
|
779
|
+
"entities": [],
|
|
780
|
+
"events": [],
|
|
781
|
+
"aclFeatures": [
|
|
782
|
+
"channel_imap.view",
|
|
783
|
+
"channel_imap.configure"
|
|
784
|
+
],
|
|
785
|
+
"apiRoutes": [],
|
|
786
|
+
"diTokens": [],
|
|
787
|
+
"searchEntities": [],
|
|
788
|
+
"hostTokens": {
|
|
789
|
+
"entityIds": [],
|
|
790
|
+
"tableIds": []
|
|
791
|
+
},
|
|
792
|
+
"notifications": [],
|
|
793
|
+
"cli": []
|
|
794
|
+
},
|
|
795
|
+
"checkout": {
|
|
796
|
+
"title": "Checkout",
|
|
797
|
+
"description": "Pay links, checkout templates, public payment pages, and checkout transaction tracking.",
|
|
798
|
+
"coreVersion": "0.6.6-develop.6460.1.f94c74174c",
|
|
409
799
|
"entities": [
|
|
410
800
|
{
|
|
411
|
-
"id": "
|
|
412
|
-
"class": "
|
|
413
|
-
"table": "
|
|
801
|
+
"id": "checkout:checkout_link_template",
|
|
802
|
+
"class": "CheckoutLinkTemplate",
|
|
803
|
+
"table": "checkout_link_templates",
|
|
414
804
|
"editable": true,
|
|
415
805
|
"customFields": false
|
|
416
806
|
},
|
|
417
807
|
{
|
|
418
|
-
"id": "
|
|
419
|
-
"class": "
|
|
420
|
-
"table": "
|
|
421
|
-
"editable":
|
|
808
|
+
"id": "checkout:checkout_link",
|
|
809
|
+
"class": "CheckoutLink",
|
|
810
|
+
"table": "checkout_links",
|
|
811
|
+
"editable": false,
|
|
422
812
|
"customFields": false
|
|
423
813
|
},
|
|
424
814
|
{
|
|
425
|
-
"id": "
|
|
426
|
-
"class": "
|
|
427
|
-
"table": "
|
|
815
|
+
"id": "checkout:checkout_transaction",
|
|
816
|
+
"class": "CheckoutTransaction",
|
|
817
|
+
"table": "checkout_transactions",
|
|
428
818
|
"editable": true,
|
|
429
819
|
"customFields": false
|
|
430
820
|
}
|
|
431
821
|
],
|
|
432
822
|
"events": [
|
|
433
823
|
{
|
|
434
|
-
"id": "
|
|
824
|
+
"id": "checkout.template.created",
|
|
435
825
|
"category": "crud",
|
|
436
|
-
"entity": "
|
|
826
|
+
"entity": "template"
|
|
437
827
|
},
|
|
438
828
|
{
|
|
439
|
-
"id": "
|
|
829
|
+
"id": "checkout.template.updated",
|
|
440
830
|
"category": "crud",
|
|
441
|
-
"entity": "
|
|
831
|
+
"entity": "template"
|
|
442
832
|
},
|
|
443
833
|
{
|
|
444
|
-
"id": "
|
|
834
|
+
"id": "checkout.template.deleted",
|
|
445
835
|
"category": "crud",
|
|
446
|
-
"entity": "
|
|
836
|
+
"entity": "template"
|
|
447
837
|
},
|
|
448
838
|
{
|
|
449
|
-
"id": "
|
|
839
|
+
"id": "checkout.link.created",
|
|
450
840
|
"category": "crud",
|
|
451
|
-
"entity": "
|
|
841
|
+
"entity": "link"
|
|
452
842
|
},
|
|
453
843
|
{
|
|
454
|
-
"id": "
|
|
844
|
+
"id": "checkout.link.updated",
|
|
455
845
|
"category": "crud",
|
|
456
|
-
"entity": "
|
|
846
|
+
"entity": "link"
|
|
457
847
|
},
|
|
458
848
|
{
|
|
459
|
-
"id": "
|
|
849
|
+
"id": "checkout.link.deleted",
|
|
460
850
|
"category": "crud",
|
|
461
|
-
"entity": "
|
|
462
|
-
}
|
|
463
|
-
|
|
464
|
-
|
|
465
|
-
|
|
466
|
-
|
|
467
|
-
|
|
468
|
-
|
|
469
|
-
|
|
470
|
-
|
|
471
|
-
|
|
472
|
-
|
|
473
|
-
|
|
474
|
-
|
|
851
|
+
"entity": "link"
|
|
852
|
+
},
|
|
853
|
+
{
|
|
854
|
+
"id": "checkout.link.published",
|
|
855
|
+
"category": "lifecycle",
|
|
856
|
+
"entity": "link"
|
|
857
|
+
},
|
|
858
|
+
{
|
|
859
|
+
"id": "checkout.link.locked",
|
|
860
|
+
"category": "lifecycle",
|
|
861
|
+
"entity": "link"
|
|
862
|
+
},
|
|
863
|
+
{
|
|
864
|
+
"id": "checkout.transaction.created",
|
|
865
|
+
"category": "crud",
|
|
866
|
+
"entity": "transaction"
|
|
867
|
+
},
|
|
868
|
+
{
|
|
869
|
+
"id": "checkout.transaction.customerDataCaptured",
|
|
870
|
+
"category": "lifecycle",
|
|
871
|
+
"entity": "transaction"
|
|
872
|
+
},
|
|
873
|
+
{
|
|
874
|
+
"id": "checkout.transaction.sessionStarted",
|
|
875
|
+
"category": "lifecycle",
|
|
876
|
+
"entity": "transaction"
|
|
877
|
+
},
|
|
878
|
+
{
|
|
879
|
+
"id": "checkout.transaction.completed",
|
|
880
|
+
"category": "lifecycle",
|
|
881
|
+
"entity": "transaction"
|
|
882
|
+
},
|
|
883
|
+
{
|
|
884
|
+
"id": "checkout.transaction.failed",
|
|
885
|
+
"category": "lifecycle",
|
|
886
|
+
"entity": "transaction"
|
|
887
|
+
},
|
|
888
|
+
{
|
|
889
|
+
"id": "checkout.transaction.cancelled",
|
|
890
|
+
"category": "lifecycle",
|
|
891
|
+
"entity": "transaction"
|
|
892
|
+
},
|
|
893
|
+
{
|
|
894
|
+
"id": "checkout.transaction.expired",
|
|
895
|
+
"category": "lifecycle",
|
|
896
|
+
"entity": "transaction"
|
|
897
|
+
},
|
|
898
|
+
{
|
|
899
|
+
"id": "checkout.link.usageLimitReached",
|
|
900
|
+
"category": "lifecycle",
|
|
901
|
+
"entity": "link"
|
|
902
|
+
}
|
|
903
|
+
],
|
|
904
|
+
"aclFeatures": [
|
|
905
|
+
"checkout.view",
|
|
906
|
+
"checkout.create",
|
|
907
|
+
"checkout.edit",
|
|
908
|
+
"checkout.delete",
|
|
909
|
+
"checkout.viewPii",
|
|
910
|
+
"checkout.export"
|
|
911
|
+
],
|
|
912
|
+
"apiRoutes": [],
|
|
913
|
+
"diTokens": [],
|
|
914
|
+
"searchEntities": [],
|
|
915
|
+
"hostTokens": {
|
|
916
|
+
"entityIds": [],
|
|
917
|
+
"tableIds": [
|
|
918
|
+
"checkout-links",
|
|
919
|
+
"checkout-templates",
|
|
920
|
+
"checkout-transactions"
|
|
921
|
+
]
|
|
922
|
+
},
|
|
923
|
+
"notifications": [
|
|
924
|
+
"checkout.transaction.completed",
|
|
925
|
+
"checkout.transaction.failed",
|
|
926
|
+
"checkout.link.usageLimitReached"
|
|
927
|
+
],
|
|
928
|
+
"cli": []
|
|
929
|
+
},
|
|
930
|
+
"communication_channels": {
|
|
931
|
+
"title": "Communication Channels",
|
|
932
|
+
"description": "Unified hub bridging external chat/email channels (Slack, WhatsApp, Email) to the Messages module. Adapter contract, channel-native payload storage, reactions, and per-channel threading.",
|
|
933
|
+
"coreVersion": "0.6.6-develop.6460.1.f94c74174c",
|
|
934
|
+
"entities": [
|
|
935
|
+
{
|
|
936
|
+
"id": "communication_channels:communication_channel",
|
|
937
|
+
"class": "CommunicationChannel",
|
|
938
|
+
"table": "communication_channels",
|
|
939
|
+
"editable": true,
|
|
940
|
+
"customFields": false
|
|
941
|
+
},
|
|
942
|
+
{
|
|
943
|
+
"id": "communication_channels:external_conversation",
|
|
944
|
+
"class": "ExternalConversation",
|
|
945
|
+
"table": "external_conversations",
|
|
946
|
+
"editable": true,
|
|
947
|
+
"customFields": false
|
|
948
|
+
},
|
|
949
|
+
{
|
|
950
|
+
"id": "communication_channels:external_message",
|
|
951
|
+
"class": "ExternalMessage",
|
|
952
|
+
"table": "external_messages",
|
|
953
|
+
"editable": false,
|
|
954
|
+
"customFields": false
|
|
955
|
+
},
|
|
956
|
+
{
|
|
957
|
+
"id": "communication_channels:message_channel_link",
|
|
958
|
+
"class": "MessageChannelLink",
|
|
959
|
+
"table": "message_channel_links",
|
|
960
|
+
"editable": false,
|
|
961
|
+
"customFields": false
|
|
962
|
+
},
|
|
963
|
+
{
|
|
964
|
+
"id": "communication_channels:channel_thread_mapping",
|
|
965
|
+
"class": "ChannelThreadMapping",
|
|
966
|
+
"table": "channel_thread_mappings",
|
|
967
|
+
"editable": true,
|
|
968
|
+
"customFields": false
|
|
969
|
+
},
|
|
970
|
+
{
|
|
971
|
+
"id": "communication_channels:message_reaction",
|
|
972
|
+
"class": "MessageReaction",
|
|
973
|
+
"table": "message_reactions",
|
|
974
|
+
"editable": false,
|
|
975
|
+
"customFields": false
|
|
976
|
+
},
|
|
977
|
+
{
|
|
978
|
+
"id": "communication_channels:channel_thread_token",
|
|
979
|
+
"class": "ChannelThreadToken",
|
|
980
|
+
"table": "channel_thread_tokens",
|
|
981
|
+
"editable": false,
|
|
982
|
+
"customFields": false
|
|
983
|
+
},
|
|
984
|
+
{
|
|
985
|
+
"id": "communication_channels:channel_ingest_dead_letter",
|
|
986
|
+
"class": "ChannelIngestDeadLetter",
|
|
987
|
+
"table": "channel_ingest_dead_letters",
|
|
988
|
+
"editable": false,
|
|
989
|
+
"customFields": false
|
|
990
|
+
}
|
|
991
|
+
],
|
|
992
|
+
"events": [
|
|
993
|
+
{
|
|
994
|
+
"id": "communication_channels.message.received",
|
|
995
|
+
"category": "custom",
|
|
996
|
+
"entity": "external_message"
|
|
997
|
+
},
|
|
998
|
+
{
|
|
999
|
+
"id": "communication_channels.message.sent",
|
|
1000
|
+
"category": "custom",
|
|
1001
|
+
"entity": "external_message"
|
|
1002
|
+
},
|
|
1003
|
+
{
|
|
1004
|
+
"id": "communication_channels.message.delivery_failed",
|
|
1005
|
+
"category": "custom",
|
|
1006
|
+
"entity": "external_message"
|
|
1007
|
+
},
|
|
1008
|
+
{
|
|
1009
|
+
"id": "communication_channels.conversation.created",
|
|
1010
|
+
"category": "custom",
|
|
1011
|
+
"entity": "external_conversation"
|
|
1012
|
+
},
|
|
1013
|
+
{
|
|
1014
|
+
"id": "communication_channels.conversation.reassigned",
|
|
1015
|
+
"category": "custom",
|
|
1016
|
+
"entity": "external_conversation"
|
|
1017
|
+
},
|
|
1018
|
+
{
|
|
1019
|
+
"id": "communication_channels.contact.resolved",
|
|
1020
|
+
"category": "custom",
|
|
1021
|
+
"entity": "external_conversation"
|
|
1022
|
+
},
|
|
1023
|
+
{
|
|
1024
|
+
"id": "communication_channels.channel.requires_reauth",
|
|
1025
|
+
"category": "lifecycle",
|
|
1026
|
+
"entity": "communication_channel"
|
|
1027
|
+
},
|
|
1028
|
+
{
|
|
1029
|
+
"id": "communication_channels.channel.disconnected",
|
|
1030
|
+
"category": "lifecycle",
|
|
1031
|
+
"entity": "communication_channel"
|
|
1032
|
+
},
|
|
1033
|
+
{
|
|
1034
|
+
"id": "communication_channels.channel.deleted",
|
|
1035
|
+
"category": "lifecycle",
|
|
1036
|
+
"entity": "communication_channel"
|
|
1037
|
+
},
|
|
1038
|
+
{
|
|
1039
|
+
"id": "communication_channels.channel.primary_changed",
|
|
1040
|
+
"category": "lifecycle",
|
|
1041
|
+
"entity": "communication_channel"
|
|
1042
|
+
},
|
|
1043
|
+
{
|
|
1044
|
+
"id": "communication_channels.reaction.added",
|
|
1045
|
+
"category": "custom",
|
|
1046
|
+
"entity": "message_reaction"
|
|
1047
|
+
},
|
|
1048
|
+
{
|
|
1049
|
+
"id": "communication_channels.reaction.removed",
|
|
1050
|
+
"category": "custom",
|
|
1051
|
+
"entity": "message_reaction"
|
|
1052
|
+
},
|
|
1053
|
+
{
|
|
1054
|
+
"id": "communication_channels.push.registered",
|
|
1055
|
+
"category": "lifecycle",
|
|
1056
|
+
"entity": "communication_channel"
|
|
1057
|
+
},
|
|
1058
|
+
{
|
|
1059
|
+
"id": "communication_channels.push.failed",
|
|
1060
|
+
"category": "lifecycle",
|
|
1061
|
+
"entity": "communication_channel"
|
|
1062
|
+
},
|
|
1063
|
+
{
|
|
1064
|
+
"id": "communication_channels.push.renewed",
|
|
1065
|
+
"category": "lifecycle",
|
|
1066
|
+
"entity": "communication_channel"
|
|
1067
|
+
},
|
|
1068
|
+
{
|
|
1069
|
+
"id": "communication_channels.push.deactivated",
|
|
1070
|
+
"category": "lifecycle",
|
|
1071
|
+
"entity": "communication_channel"
|
|
1072
|
+
}
|
|
1073
|
+
],
|
|
1074
|
+
"aclFeatures": [
|
|
1075
|
+
"communication_channels.view",
|
|
1076
|
+
"communication_channels.manage",
|
|
1077
|
+
"communication_channels.react",
|
|
1078
|
+
"communication_channels.assign",
|
|
1079
|
+
"communication_channels.connect_user_channel",
|
|
1080
|
+
"communication_channels.admin",
|
|
1081
|
+
"communication_channels.channel.import_history",
|
|
1082
|
+
"communication_channels.channel.push.manage"
|
|
1083
|
+
],
|
|
1084
|
+
"apiRoutes": [],
|
|
1085
|
+
"diTokens": [],
|
|
1086
|
+
"searchEntities": [],
|
|
1087
|
+
"hostTokens": {
|
|
1088
|
+
"entityIds": [],
|
|
1089
|
+
"tableIds": []
|
|
1090
|
+
},
|
|
1091
|
+
"notifications": [
|
|
1092
|
+
"communication_channels.message.received",
|
|
1093
|
+
"communication_channels.channel.requires_reauth"
|
|
1094
|
+
],
|
|
1095
|
+
"cli": []
|
|
1096
|
+
},
|
|
1097
|
+
"configs": {
|
|
1098
|
+
"title": "Configuration",
|
|
1099
|
+
"description": "Shared configuration storage and helpers for module settings.",
|
|
1100
|
+
"coreVersion": "0.6.6-develop.6460.1.f94c74174c",
|
|
1101
|
+
"entities": [
|
|
1102
|
+
{
|
|
1103
|
+
"id": "configs:module_config",
|
|
1104
|
+
"class": "ModuleConfig",
|
|
1105
|
+
"table": "module_configs",
|
|
1106
|
+
"editable": true,
|
|
1107
|
+
"customFields": false
|
|
1108
|
+
},
|
|
1109
|
+
{
|
|
1110
|
+
"id": "configs:upgrade_action_run",
|
|
1111
|
+
"class": "UpgradeActionRun",
|
|
1112
|
+
"table": "upgrade_action_runs",
|
|
1113
|
+
"editable": false,
|
|
1114
|
+
"customFields": false
|
|
1115
|
+
}
|
|
1116
|
+
],
|
|
1117
|
+
"events": [],
|
|
1118
|
+
"aclFeatures": [
|
|
1119
|
+
"configs.system_status.view",
|
|
1120
|
+
"configs.cache.view",
|
|
1121
|
+
"configs.cache.manage",
|
|
1122
|
+
"configs.manage"
|
|
1123
|
+
],
|
|
1124
|
+
"apiRoutes": [],
|
|
1125
|
+
"diTokens": [],
|
|
1126
|
+
"searchEntities": [],
|
|
1127
|
+
"hostTokens": {
|
|
1128
|
+
"entityIds": [],
|
|
1129
|
+
"tableIds": []
|
|
1130
|
+
},
|
|
1131
|
+
"notifications": [],
|
|
1132
|
+
"cli": [
|
|
1133
|
+
"restore-defaults",
|
|
1134
|
+
"cache",
|
|
1135
|
+
"help"
|
|
1136
|
+
]
|
|
1137
|
+
},
|
|
1138
|
+
"content": {
|
|
1139
|
+
"title": "Content",
|
|
1140
|
+
"description": "Static informational pages such as terms of service and privacy policy.",
|
|
1141
|
+
"coreVersion": "0.6.6-develop.6460.1.f94c74174c",
|
|
1142
|
+
"entities": [],
|
|
1143
|
+
"events": [],
|
|
1144
|
+
"aclFeatures": [],
|
|
1145
|
+
"apiRoutes": [],
|
|
1146
|
+
"diTokens": [],
|
|
1147
|
+
"searchEntities": [],
|
|
1148
|
+
"hostTokens": {
|
|
1149
|
+
"entityIds": [],
|
|
1150
|
+
"tableIds": []
|
|
1151
|
+
},
|
|
1152
|
+
"notifications": [],
|
|
1153
|
+
"cli": []
|
|
1154
|
+
},
|
|
1155
|
+
"currencies": {
|
|
1156
|
+
"title": "Currencies",
|
|
1157
|
+
"description": "Currencies and Exchange rate management",
|
|
1158
|
+
"coreVersion": "0.6.6-develop.6460.1.f94c74174c",
|
|
1159
|
+
"entities": [
|
|
1160
|
+
{
|
|
1161
|
+
"id": "currencies:currency",
|
|
1162
|
+
"class": "Currency",
|
|
1163
|
+
"table": "currencies",
|
|
1164
|
+
"editable": true,
|
|
1165
|
+
"customFields": false
|
|
1166
|
+
},
|
|
1167
|
+
{
|
|
1168
|
+
"id": "currencies:exchange_rate",
|
|
1169
|
+
"class": "ExchangeRate",
|
|
1170
|
+
"table": "exchange_rates",
|
|
1171
|
+
"editable": true,
|
|
1172
|
+
"customFields": false
|
|
1173
|
+
},
|
|
1174
|
+
{
|
|
1175
|
+
"id": "currencies:currency_fetch_config",
|
|
1176
|
+
"class": "CurrencyFetchConfig",
|
|
1177
|
+
"table": "currency_fetch_configs",
|
|
1178
|
+
"editable": true,
|
|
1179
|
+
"customFields": false
|
|
1180
|
+
}
|
|
1181
|
+
],
|
|
1182
|
+
"events": [
|
|
1183
|
+
{
|
|
1184
|
+
"id": "currencies.currency.created",
|
|
1185
|
+
"category": "crud",
|
|
1186
|
+
"entity": "currency"
|
|
1187
|
+
},
|
|
1188
|
+
{
|
|
1189
|
+
"id": "currencies.currency.updated",
|
|
1190
|
+
"category": "crud",
|
|
1191
|
+
"entity": "currency"
|
|
1192
|
+
},
|
|
1193
|
+
{
|
|
1194
|
+
"id": "currencies.currency.deleted",
|
|
1195
|
+
"category": "crud",
|
|
1196
|
+
"entity": "currency"
|
|
1197
|
+
},
|
|
1198
|
+
{
|
|
1199
|
+
"id": "currencies.exchange_rate.created",
|
|
1200
|
+
"category": "crud",
|
|
1201
|
+
"entity": "exchange_rate"
|
|
1202
|
+
},
|
|
1203
|
+
{
|
|
1204
|
+
"id": "currencies.exchange_rate.updated",
|
|
1205
|
+
"category": "crud",
|
|
1206
|
+
"entity": "exchange_rate"
|
|
1207
|
+
},
|
|
1208
|
+
{
|
|
1209
|
+
"id": "currencies.exchange_rate.deleted",
|
|
1210
|
+
"category": "crud",
|
|
1211
|
+
"entity": "exchange_rate"
|
|
1212
|
+
}
|
|
1213
|
+
],
|
|
1214
|
+
"aclFeatures": [
|
|
1215
|
+
"currencies.view",
|
|
1216
|
+
"currencies.manage",
|
|
1217
|
+
"currencies.rates.view",
|
|
1218
|
+
"currencies.rates.manage",
|
|
1219
|
+
"currencies.fetch.view",
|
|
1220
|
+
"currencies.fetch.manage"
|
|
1221
|
+
],
|
|
1222
|
+
"apiRoutes": [],
|
|
1223
|
+
"diTokens": [],
|
|
1224
|
+
"searchEntities": [],
|
|
475
1225
|
"hostTokens": {
|
|
476
1226
|
"entityIds": [],
|
|
477
1227
|
"tableIds": [
|
|
@@ -489,7 +1239,7 @@
|
|
|
489
1239
|
"customer_accounts": {
|
|
490
1240
|
"title": "Customer Identity & Portal Authentication",
|
|
491
1241
|
"description": "Customer-facing authentication with two-tier identity model and full RBAC.",
|
|
492
|
-
"coreVersion": "0.6.6-develop.
|
|
1242
|
+
"coreVersion": "0.6.6-develop.6460.1.f94c74174c",
|
|
493
1243
|
"entities": [
|
|
494
1244
|
{
|
|
495
1245
|
"id": "customer_accounts:customer_user",
|
|
@@ -729,7 +1479,7 @@
|
|
|
729
1479
|
"customers": {
|
|
730
1480
|
"title": "Customer Relationship Management",
|
|
731
1481
|
"description": "Core CRM capabilities for people, companies, deals, and activities.",
|
|
732
|
-
"coreVersion": "0.6.6-develop.
|
|
1482
|
+
"coreVersion": "0.6.6-develop.6460.1.f94c74174c",
|
|
733
1483
|
"entities": [
|
|
734
1484
|
{
|
|
735
1485
|
"id": "customers:customer_entity",
|
|
@@ -1208,28 +1958,79 @@
|
|
|
1208
1958
|
"interactions:backfill"
|
|
1209
1959
|
]
|
|
1210
1960
|
},
|
|
1211
|
-
"
|
|
1212
|
-
"title": "
|
|
1213
|
-
"description": "
|
|
1214
|
-
"coreVersion": "0.6.6-develop.
|
|
1961
|
+
"dashboards": {
|
|
1962
|
+
"title": "Admin Dashboards",
|
|
1963
|
+
"description": "Configurable admin dashboard with module-provided widgets.",
|
|
1964
|
+
"coreVersion": "0.6.6-develop.6460.1.f94c74174c",
|
|
1215
1965
|
"entities": [
|
|
1216
1966
|
{
|
|
1217
|
-
"id": "
|
|
1218
|
-
"class": "
|
|
1219
|
-
"table": "
|
|
1967
|
+
"id": "dashboards:dashboard_layout",
|
|
1968
|
+
"class": "DashboardLayout",
|
|
1969
|
+
"table": "dashboard_layouts",
|
|
1220
1970
|
"editable": true,
|
|
1221
1971
|
"customFields": false
|
|
1222
1972
|
},
|
|
1223
1973
|
{
|
|
1224
|
-
"id": "
|
|
1225
|
-
"class": "
|
|
1226
|
-
"table": "
|
|
1974
|
+
"id": "dashboards:dashboard_role_widgets",
|
|
1975
|
+
"class": "DashboardRoleWidgets",
|
|
1976
|
+
"table": "dashboard_role_widgets",
|
|
1227
1977
|
"editable": true,
|
|
1228
1978
|
"customFields": false
|
|
1229
1979
|
},
|
|
1230
1980
|
{
|
|
1231
|
-
"id": "
|
|
1232
|
-
"class": "
|
|
1981
|
+
"id": "dashboards:dashboard_user_widgets",
|
|
1982
|
+
"class": "DashboardUserWidgets",
|
|
1983
|
+
"table": "dashboard_user_widgets",
|
|
1984
|
+
"editable": true,
|
|
1985
|
+
"customFields": false
|
|
1986
|
+
}
|
|
1987
|
+
],
|
|
1988
|
+
"events": [],
|
|
1989
|
+
"aclFeatures": [
|
|
1990
|
+
"dashboards.view",
|
|
1991
|
+
"dashboards.configure",
|
|
1992
|
+
"dashboards.admin.assign-widgets",
|
|
1993
|
+
"analytics.view"
|
|
1994
|
+
],
|
|
1995
|
+
"apiRoutes": [],
|
|
1996
|
+
"diTokens": [
|
|
1997
|
+
"analyticsRegistry"
|
|
1998
|
+
],
|
|
1999
|
+
"searchEntities": [],
|
|
2000
|
+
"hostTokens": {
|
|
2001
|
+
"entityIds": [],
|
|
2002
|
+
"tableIds": []
|
|
2003
|
+
},
|
|
2004
|
+
"notifications": [],
|
|
2005
|
+
"cli": [
|
|
2006
|
+
"seed-defaults",
|
|
2007
|
+
"enable-analytics-widgets",
|
|
2008
|
+
"seed-analytics",
|
|
2009
|
+
"debug-analytics"
|
|
2010
|
+
]
|
|
2011
|
+
},
|
|
2012
|
+
"data_sync": {
|
|
2013
|
+
"title": "Data Sync",
|
|
2014
|
+
"description": "Streaming data sync hub for import/export integrations.",
|
|
2015
|
+
"coreVersion": "0.6.6-develop.6460.1.f94c74174c",
|
|
2016
|
+
"entities": [
|
|
2017
|
+
{
|
|
2018
|
+
"id": "data_sync:sync_run",
|
|
2019
|
+
"class": "SyncRun",
|
|
2020
|
+
"table": "sync_runs",
|
|
2021
|
+
"editable": true,
|
|
2022
|
+
"customFields": false
|
|
2023
|
+
},
|
|
2024
|
+
{
|
|
2025
|
+
"id": "data_sync:sync_cursor",
|
|
2026
|
+
"class": "SyncCursor",
|
|
2027
|
+
"table": "sync_cursors",
|
|
2028
|
+
"editable": true,
|
|
2029
|
+
"customFields": false
|
|
2030
|
+
},
|
|
2031
|
+
{
|
|
2032
|
+
"id": "data_sync:sync_mapping",
|
|
2033
|
+
"class": "SyncMapping",
|
|
1233
2034
|
"table": "sync_mappings",
|
|
1234
2035
|
"editable": true,
|
|
1235
2036
|
"customFields": false
|
|
@@ -1286,560 +2087,2785 @@
|
|
|
1286
2087
|
"notifications": [],
|
|
1287
2088
|
"cli": []
|
|
1288
2089
|
},
|
|
1289
|
-
"
|
|
1290
|
-
"title": "
|
|
1291
|
-
"description": "
|
|
1292
|
-
"coreVersion": "0.6.6-develop.
|
|
2090
|
+
"dictionaries": {
|
|
2091
|
+
"title": "Shared Dictionaries",
|
|
2092
|
+
"description": "Organization-scoped dictionaries for reusable enumerations and appearance presets.",
|
|
2093
|
+
"coreVersion": "0.6.6-develop.6460.1.f94c74174c",
|
|
1293
2094
|
"entities": [
|
|
1294
2095
|
{
|
|
1295
|
-
"id": "
|
|
1296
|
-
"class": "
|
|
1297
|
-
"table": "
|
|
2096
|
+
"id": "dictionaries:dictionary",
|
|
2097
|
+
"class": "Dictionary",
|
|
2098
|
+
"table": "dictionaries",
|
|
1298
2099
|
"editable": true,
|
|
1299
2100
|
"customFields": false
|
|
1300
2101
|
},
|
|
1301
2102
|
{
|
|
1302
|
-
"id": "
|
|
1303
|
-
"class": "
|
|
1304
|
-
"table": "
|
|
2103
|
+
"id": "dictionaries:dictionary_entry",
|
|
2104
|
+
"class": "DictionaryEntry",
|
|
2105
|
+
"table": "dictionary_entries",
|
|
1305
2106
|
"editable": true,
|
|
1306
2107
|
"customFields": false
|
|
2108
|
+
}
|
|
2109
|
+
],
|
|
2110
|
+
"events": [
|
|
2111
|
+
{
|
|
2112
|
+
"id": "dictionaries.entry.created",
|
|
2113
|
+
"category": "crud",
|
|
2114
|
+
"entity": "entry"
|
|
1307
2115
|
},
|
|
1308
2116
|
{
|
|
1309
|
-
"id": "
|
|
1310
|
-
"
|
|
1311
|
-
"
|
|
2117
|
+
"id": "dictionaries.entry.updated",
|
|
2118
|
+
"category": "crud",
|
|
2119
|
+
"entity": "entry"
|
|
2120
|
+
},
|
|
2121
|
+
{
|
|
2122
|
+
"id": "dictionaries.entry.deleted",
|
|
2123
|
+
"category": "crud",
|
|
2124
|
+
"entity": "entry"
|
|
2125
|
+
}
|
|
2126
|
+
],
|
|
2127
|
+
"aclFeatures": [
|
|
2128
|
+
"dictionaries.view",
|
|
2129
|
+
"dictionaries.manage"
|
|
2130
|
+
],
|
|
2131
|
+
"apiRoutes": [],
|
|
2132
|
+
"diTokens": [],
|
|
2133
|
+
"searchEntities": [],
|
|
2134
|
+
"hostTokens": {
|
|
2135
|
+
"entityIds": [],
|
|
2136
|
+
"tableIds": []
|
|
2137
|
+
},
|
|
2138
|
+
"notifications": [],
|
|
2139
|
+
"cli": []
|
|
2140
|
+
},
|
|
2141
|
+
"directory": {
|
|
2142
|
+
"title": "Directory (Tenants & Organizations)",
|
|
2143
|
+
"description": "Multi-tenant directory with tenants and organizations.",
|
|
2144
|
+
"coreVersion": "0.6.6-develop.6460.1.f94c74174c",
|
|
2145
|
+
"entities": [
|
|
2146
|
+
{
|
|
2147
|
+
"id": "directory:tenant",
|
|
2148
|
+
"class": "Tenant",
|
|
2149
|
+
"table": "tenants",
|
|
1312
2150
|
"editable": true,
|
|
1313
2151
|
"customFields": false
|
|
1314
2152
|
},
|
|
1315
2153
|
{
|
|
1316
|
-
"id": "
|
|
1317
|
-
"class": "
|
|
1318
|
-
"table": "
|
|
1319
|
-
"editable":
|
|
2154
|
+
"id": "directory:organization",
|
|
2155
|
+
"class": "Organization",
|
|
2156
|
+
"table": "organizations",
|
|
2157
|
+
"editable": true,
|
|
1320
2158
|
"customFields": false
|
|
1321
2159
|
}
|
|
1322
2160
|
],
|
|
1323
2161
|
"events": [
|
|
1324
2162
|
{
|
|
1325
|
-
"id": "
|
|
1326
|
-
"category": "
|
|
1327
|
-
"entity": "
|
|
2163
|
+
"id": "directory.tenant.created",
|
|
2164
|
+
"category": "crud",
|
|
2165
|
+
"entity": "tenant"
|
|
1328
2166
|
},
|
|
1329
2167
|
{
|
|
1330
|
-
"id": "
|
|
1331
|
-
"category": "
|
|
1332
|
-
"entity": "
|
|
2168
|
+
"id": "directory.tenant.updated",
|
|
2169
|
+
"category": "crud",
|
|
2170
|
+
"entity": "tenant"
|
|
1333
2171
|
},
|
|
1334
2172
|
{
|
|
1335
|
-
"id": "
|
|
1336
|
-
"category": "
|
|
1337
|
-
"entity": "
|
|
2173
|
+
"id": "directory.tenant.deleted",
|
|
2174
|
+
"category": "crud",
|
|
2175
|
+
"entity": "tenant"
|
|
1338
2176
|
},
|
|
1339
2177
|
{
|
|
1340
|
-
"id": "
|
|
1341
|
-
"category": "
|
|
1342
|
-
"entity": "
|
|
2178
|
+
"id": "directory.organization.created",
|
|
2179
|
+
"category": "crud",
|
|
2180
|
+
"entity": "organization"
|
|
2181
|
+
},
|
|
2182
|
+
{
|
|
2183
|
+
"id": "directory.organization.updated",
|
|
2184
|
+
"category": "crud",
|
|
2185
|
+
"entity": "organization"
|
|
2186
|
+
},
|
|
2187
|
+
{
|
|
2188
|
+
"id": "directory.organization.deleted",
|
|
2189
|
+
"category": "crud",
|
|
2190
|
+
"entity": "organization"
|
|
1343
2191
|
}
|
|
1344
2192
|
],
|
|
1345
2193
|
"aclFeatures": [
|
|
1346
|
-
"
|
|
1347
|
-
"
|
|
1348
|
-
"
|
|
2194
|
+
"directory.tenants.view",
|
|
2195
|
+
"directory.tenants.manage",
|
|
2196
|
+
"directory.organizations.view",
|
|
2197
|
+
"directory.organizations.manage"
|
|
1349
2198
|
],
|
|
1350
2199
|
"apiRoutes": [],
|
|
1351
|
-
"diTokens": [
|
|
1352
|
-
"integrationCredentialsService",
|
|
1353
|
-
"integrationStateService",
|
|
1354
|
-
"integrationLogService",
|
|
1355
|
-
"integrationHealthService"
|
|
1356
|
-
],
|
|
2200
|
+
"diTokens": [],
|
|
1357
2201
|
"searchEntities": [],
|
|
1358
2202
|
"hostTokens": {
|
|
1359
2203
|
"entityIds": [],
|
|
1360
|
-
"tableIds": [
|
|
2204
|
+
"tableIds": [
|
|
2205
|
+
"directory.organizations.list",
|
|
2206
|
+
"directory.tenants.list"
|
|
2207
|
+
]
|
|
1361
2208
|
},
|
|
1362
2209
|
"notifications": [],
|
|
1363
2210
|
"cli": []
|
|
1364
2211
|
},
|
|
1365
|
-
"
|
|
1366
|
-
"title": "
|
|
1367
|
-
"description": "
|
|
1368
|
-
"coreVersion": "0.6.6-develop.
|
|
2212
|
+
"entities": {
|
|
2213
|
+
"title": "Custom Entities & Fields",
|
|
2214
|
+
"description": "User-defined entities, custom fields, and dynamic records storage.",
|
|
2215
|
+
"coreVersion": "0.6.6-develop.6460.1.f94c74174c",
|
|
1369
2216
|
"entities": [
|
|
1370
2217
|
{
|
|
1371
|
-
"id": "
|
|
1372
|
-
"class": "
|
|
1373
|
-
"table": "
|
|
2218
|
+
"id": "entities:custom_field_def",
|
|
2219
|
+
"class": "CustomFieldDef",
|
|
2220
|
+
"table": "custom_field_defs",
|
|
1374
2221
|
"editable": true,
|
|
1375
2222
|
"customFields": false
|
|
1376
2223
|
},
|
|
1377
2224
|
{
|
|
1378
|
-
"id": "
|
|
1379
|
-
"class": "
|
|
1380
|
-
"table": "
|
|
2225
|
+
"id": "entities:custom_field_entity_config",
|
|
2226
|
+
"class": "CustomFieldEntityConfig",
|
|
2227
|
+
"table": "custom_field_entity_configs",
|
|
1381
2228
|
"editable": true,
|
|
1382
2229
|
"customFields": false
|
|
1383
2230
|
},
|
|
1384
2231
|
{
|
|
1385
|
-
"id": "
|
|
1386
|
-
"class": "
|
|
1387
|
-
"table": "
|
|
2232
|
+
"id": "entities:custom_entity",
|
|
2233
|
+
"class": "CustomEntity",
|
|
2234
|
+
"table": "custom_entities",
|
|
1388
2235
|
"editable": true,
|
|
1389
2236
|
"customFields": false
|
|
1390
2237
|
},
|
|
1391
2238
|
{
|
|
1392
|
-
"id": "
|
|
1393
|
-
"class": "
|
|
1394
|
-
"table": "
|
|
2239
|
+
"id": "entities:custom_entity_storage",
|
|
2240
|
+
"class": "CustomEntityStorage",
|
|
2241
|
+
"table": "custom_entities_storage",
|
|
1395
2242
|
"editable": true,
|
|
1396
2243
|
"customFields": false
|
|
1397
2244
|
},
|
|
1398
2245
|
{
|
|
1399
|
-
"id": "
|
|
1400
|
-
"class": "
|
|
1401
|
-
"table": "
|
|
1402
|
-
"editable":
|
|
2246
|
+
"id": "entities:custom_field_value",
|
|
2247
|
+
"class": "CustomFieldValue",
|
|
2248
|
+
"table": "custom_field_values",
|
|
2249
|
+
"editable": false,
|
|
1403
2250
|
"customFields": false
|
|
1404
2251
|
},
|
|
1405
2252
|
{
|
|
1406
|
-
"id": "
|
|
1407
|
-
"class": "
|
|
1408
|
-
"table": "
|
|
2253
|
+
"id": "entities:encryption_map",
|
|
2254
|
+
"class": "EncryptionMap",
|
|
2255
|
+
"table": "encryption_maps",
|
|
1409
2256
|
"editable": true,
|
|
1410
2257
|
"customFields": false
|
|
1411
|
-
}
|
|
2258
|
+
}
|
|
2259
|
+
],
|
|
2260
|
+
"events": [],
|
|
2261
|
+
"aclFeatures": [
|
|
2262
|
+
"entities.definitions.view",
|
|
2263
|
+
"entities.definitions.manage",
|
|
2264
|
+
"entities.records.view",
|
|
2265
|
+
"entities.records.manage"
|
|
2266
|
+
],
|
|
2267
|
+
"apiRoutes": [],
|
|
2268
|
+
"diTokens": [],
|
|
2269
|
+
"searchEntities": [],
|
|
2270
|
+
"hostTokens": {
|
|
2271
|
+
"entityIds": [
|
|
2272
|
+
"entities:custom_entity"
|
|
2273
|
+
],
|
|
2274
|
+
"tableIds": []
|
|
2275
|
+
},
|
|
2276
|
+
"notifications": [],
|
|
2277
|
+
"cli": [
|
|
2278
|
+
"install",
|
|
2279
|
+
"reinstall",
|
|
2280
|
+
"add-field",
|
|
2281
|
+
"seed-encryption",
|
|
2282
|
+
"rotate-encryption-key",
|
|
2283
|
+
"decrypt-database"
|
|
2284
|
+
]
|
|
2285
|
+
},
|
|
2286
|
+
"events": {
|
|
2287
|
+
"title": "Events",
|
|
2288
|
+
"description": "Event bus and subscriber dispatch",
|
|
2289
|
+
"coreVersion": "0.6.6-develop.6460.1.f94c74174c",
|
|
2290
|
+
"entities": [],
|
|
2291
|
+
"events": [],
|
|
2292
|
+
"aclFeatures": [],
|
|
2293
|
+
"apiRoutes": [],
|
|
2294
|
+
"diTokens": [],
|
|
2295
|
+
"searchEntities": [],
|
|
2296
|
+
"hostTokens": {
|
|
2297
|
+
"entityIds": [],
|
|
2298
|
+
"tableIds": []
|
|
2299
|
+
},
|
|
2300
|
+
"notifications": [],
|
|
2301
|
+
"cli": []
|
|
2302
|
+
},
|
|
2303
|
+
"feature_toggles": {
|
|
2304
|
+
"title": "Feature Toggles",
|
|
2305
|
+
"description": "Global feature flags with tenant-level overrides.",
|
|
2306
|
+
"coreVersion": "0.6.6-develop.6460.1.f94c74174c",
|
|
2307
|
+
"entities": [
|
|
1412
2308
|
{
|
|
1413
|
-
"id": "
|
|
1414
|
-
"class": "
|
|
1415
|
-
"table": "
|
|
2309
|
+
"id": "feature_toggles:feature_toggle",
|
|
2310
|
+
"class": "FeatureToggle",
|
|
2311
|
+
"table": "feature_toggles",
|
|
1416
2312
|
"editable": true,
|
|
1417
2313
|
"customFields": false
|
|
1418
2314
|
},
|
|
1419
2315
|
{
|
|
1420
|
-
"id": "
|
|
1421
|
-
"class": "
|
|
1422
|
-
"table": "
|
|
2316
|
+
"id": "feature_toggles:feature_toggle_override",
|
|
2317
|
+
"class": "FeatureToggleOverride",
|
|
2318
|
+
"table": "feature_toggle_overrides",
|
|
1423
2319
|
"editable": true,
|
|
1424
2320
|
"customFields": false
|
|
1425
|
-
}
|
|
2321
|
+
}
|
|
2322
|
+
],
|
|
2323
|
+
"events": [],
|
|
2324
|
+
"aclFeatures": [
|
|
2325
|
+
"feature_toggles.view",
|
|
2326
|
+
"feature_toggles.manage",
|
|
2327
|
+
"feature_toggles.global.manage"
|
|
2328
|
+
],
|
|
2329
|
+
"apiRoutes": [],
|
|
2330
|
+
"diTokens": [
|
|
2331
|
+
"featureTogglesService"
|
|
2332
|
+
],
|
|
2333
|
+
"searchEntities": [],
|
|
2334
|
+
"hostTokens": {
|
|
2335
|
+
"entityIds": [],
|
|
2336
|
+
"tableIds": []
|
|
2337
|
+
},
|
|
2338
|
+
"notifications": [],
|
|
2339
|
+
"cli": [
|
|
2340
|
+
"toggle-create",
|
|
2341
|
+
"toggle-update",
|
|
2342
|
+
"toggle-delete",
|
|
2343
|
+
"override-set-value",
|
|
2344
|
+
"seed-defaults"
|
|
2345
|
+
]
|
|
2346
|
+
},
|
|
2347
|
+
"gateway_stripe": {
|
|
2348
|
+
"title": "Stripe Payment Gateway",
|
|
2349
|
+
"description": "Accept card payments, Apple Pay, Google Pay, and bank transfers via Stripe.",
|
|
2350
|
+
"coreVersion": "0.6.6-develop.6460.1.f94c74174c",
|
|
2351
|
+
"entities": [],
|
|
2352
|
+
"events": [],
|
|
2353
|
+
"aclFeatures": [
|
|
2354
|
+
"gateway_stripe.view",
|
|
2355
|
+
"gateway_stripe.configure"
|
|
2356
|
+
],
|
|
2357
|
+
"apiRoutes": [],
|
|
2358
|
+
"diTokens": [],
|
|
2359
|
+
"searchEntities": [],
|
|
2360
|
+
"hostTokens": {
|
|
2361
|
+
"entityIds": [],
|
|
2362
|
+
"tableIds": []
|
|
2363
|
+
},
|
|
2364
|
+
"notifications": [],
|
|
2365
|
+
"cli": [
|
|
2366
|
+
"configure-from-env",
|
|
2367
|
+
"help"
|
|
2368
|
+
]
|
|
2369
|
+
},
|
|
2370
|
+
"generators": {
|
|
2371
|
+
"title": null,
|
|
2372
|
+
"description": null,
|
|
2373
|
+
"coreVersion": "0.6.6-develop.6460.1.f94c74174c",
|
|
2374
|
+
"entities": [],
|
|
2375
|
+
"events": [],
|
|
2376
|
+
"aclFeatures": [],
|
|
2377
|
+
"apiRoutes": [],
|
|
2378
|
+
"diTokens": [],
|
|
2379
|
+
"searchEntities": [],
|
|
2380
|
+
"hostTokens": {
|
|
2381
|
+
"entityIds": [],
|
|
2382
|
+
"tableIds": []
|
|
2383
|
+
},
|
|
2384
|
+
"notifications": [],
|
|
2385
|
+
"cli": []
|
|
2386
|
+
},
|
|
2387
|
+
"inbox_ops": {
|
|
2388
|
+
"title": "InboxOps — Email-to-ERP Agent",
|
|
2389
|
+
"description": "Receives forwarded emails via webhook, extracts structured action proposals using LLM, and presents them for human-in-the-loop approval.",
|
|
2390
|
+
"coreVersion": "0.6.6-develop.6460.1.f94c74174c",
|
|
2391
|
+
"entities": [
|
|
1426
2392
|
{
|
|
1427
|
-
"id": "
|
|
1428
|
-
"class": "
|
|
1429
|
-
"table": "
|
|
2393
|
+
"id": "inbox_ops:inbox_settings",
|
|
2394
|
+
"class": "InboxSettings",
|
|
2395
|
+
"table": "inbox_settings",
|
|
1430
2396
|
"editable": true,
|
|
1431
2397
|
"customFields": false
|
|
1432
2398
|
},
|
|
1433
2399
|
{
|
|
1434
|
-
"id": "
|
|
1435
|
-
"class": "
|
|
1436
|
-
"table": "
|
|
2400
|
+
"id": "inbox_ops:inbox_email",
|
|
2401
|
+
"class": "InboxEmail",
|
|
2402
|
+
"table": "inbox_emails",
|
|
1437
2403
|
"editable": true,
|
|
1438
2404
|
"customFields": false
|
|
1439
2405
|
},
|
|
1440
2406
|
{
|
|
1441
|
-
"id": "
|
|
1442
|
-
"class": "
|
|
1443
|
-
"table": "
|
|
2407
|
+
"id": "inbox_ops:inbox_proposal",
|
|
2408
|
+
"class": "InboxProposal",
|
|
2409
|
+
"table": "inbox_proposals",
|
|
1444
2410
|
"editable": true,
|
|
1445
|
-
"customFields":
|
|
2411
|
+
"customFields": true
|
|
1446
2412
|
},
|
|
1447
2413
|
{
|
|
1448
|
-
"id": "
|
|
1449
|
-
"class": "
|
|
1450
|
-
"table": "
|
|
2414
|
+
"id": "inbox_ops:inbox_proposal_action",
|
|
2415
|
+
"class": "InboxProposalAction",
|
|
2416
|
+
"table": "inbox_proposal_actions",
|
|
1451
2417
|
"editable": true,
|
|
1452
2418
|
"customFields": false
|
|
1453
2419
|
},
|
|
1454
2420
|
{
|
|
1455
|
-
"id": "
|
|
1456
|
-
"class": "
|
|
1457
|
-
"table": "
|
|
2421
|
+
"id": "inbox_ops:inbox_discrepancy",
|
|
2422
|
+
"class": "InboxDiscrepancy",
|
|
2423
|
+
"table": "inbox_discrepancies",
|
|
1458
2424
|
"editable": true,
|
|
1459
2425
|
"customFields": false
|
|
2426
|
+
}
|
|
2427
|
+
],
|
|
2428
|
+
"events": [
|
|
2429
|
+
{
|
|
2430
|
+
"id": "inbox_ops.email.received",
|
|
2431
|
+
"category": "custom",
|
|
2432
|
+
"entity": "email"
|
|
1460
2433
|
},
|
|
1461
2434
|
{
|
|
1462
|
-
"id": "
|
|
1463
|
-
"
|
|
1464
|
-
"
|
|
1465
|
-
"editable": true,
|
|
1466
|
-
"customFields": false
|
|
2435
|
+
"id": "inbox_ops.email.processed",
|
|
2436
|
+
"category": "lifecycle",
|
|
2437
|
+
"entity": "email"
|
|
1467
2438
|
},
|
|
1468
2439
|
{
|
|
1469
|
-
"id": "
|
|
1470
|
-
"
|
|
1471
|
-
"
|
|
1472
|
-
"editable": false,
|
|
1473
|
-
"customFields": false
|
|
2440
|
+
"id": "inbox_ops.email.failed",
|
|
2441
|
+
"category": "lifecycle",
|
|
2442
|
+
"entity": "email"
|
|
1474
2443
|
},
|
|
1475
2444
|
{
|
|
1476
|
-
"id": "
|
|
1477
|
-
"
|
|
1478
|
-
"
|
|
1479
|
-
"editable": true,
|
|
1480
|
-
"customFields": false
|
|
2445
|
+
"id": "inbox_ops.email.reprocessed",
|
|
2446
|
+
"category": "custom",
|
|
2447
|
+
"entity": "email"
|
|
1481
2448
|
},
|
|
1482
2449
|
{
|
|
1483
|
-
"id": "
|
|
2450
|
+
"id": "inbox_ops.email.deduplicated",
|
|
2451
|
+
"category": "custom",
|
|
2452
|
+
"entity": "email"
|
|
2453
|
+
},
|
|
2454
|
+
{
|
|
2455
|
+
"id": "inbox_ops.proposal.created",
|
|
2456
|
+
"category": "crud",
|
|
2457
|
+
"entity": "proposal"
|
|
2458
|
+
},
|
|
2459
|
+
{
|
|
2460
|
+
"id": "inbox_ops.proposal.accepted",
|
|
2461
|
+
"category": "custom",
|
|
2462
|
+
"entity": "proposal"
|
|
2463
|
+
},
|
|
2464
|
+
{
|
|
2465
|
+
"id": "inbox_ops.proposal.rejected",
|
|
2466
|
+
"category": "custom",
|
|
2467
|
+
"entity": "proposal"
|
|
2468
|
+
},
|
|
2469
|
+
{
|
|
2470
|
+
"id": "inbox_ops.action.rejected",
|
|
2471
|
+
"category": "custom",
|
|
2472
|
+
"entity": "action"
|
|
2473
|
+
},
|
|
2474
|
+
{
|
|
2475
|
+
"id": "inbox_ops.action.edited",
|
|
2476
|
+
"category": "custom",
|
|
2477
|
+
"entity": "action"
|
|
2478
|
+
},
|
|
2479
|
+
{
|
|
2480
|
+
"id": "inbox_ops.action.executed",
|
|
2481
|
+
"category": "custom",
|
|
2482
|
+
"entity": "action"
|
|
2483
|
+
},
|
|
2484
|
+
{
|
|
2485
|
+
"id": "inbox_ops.action.failed",
|
|
2486
|
+
"category": "custom",
|
|
2487
|
+
"entity": "action"
|
|
2488
|
+
},
|
|
2489
|
+
{
|
|
2490
|
+
"id": "inbox_ops.reply.sent",
|
|
2491
|
+
"category": "custom",
|
|
2492
|
+
"entity": "reply"
|
|
2493
|
+
}
|
|
2494
|
+
],
|
|
2495
|
+
"aclFeatures": [
|
|
2496
|
+
"inbox_ops.proposals.view",
|
|
2497
|
+
"inbox_ops.proposals.manage",
|
|
2498
|
+
"inbox_ops.settings.manage",
|
|
2499
|
+
"inbox_ops.log.view",
|
|
2500
|
+
"inbox_ops.replies.send"
|
|
2501
|
+
],
|
|
2502
|
+
"apiRoutes": [],
|
|
2503
|
+
"diTokens": [],
|
|
2504
|
+
"searchEntities": [
|
|
2505
|
+
"inbox_ops:inbox_proposal"
|
|
2506
|
+
],
|
|
2507
|
+
"hostTokens": {
|
|
2508
|
+
"entityIds": [],
|
|
2509
|
+
"tableIds": []
|
|
2510
|
+
},
|
|
2511
|
+
"notifications": [
|
|
2512
|
+
"inbox_ops.proposal.created"
|
|
2513
|
+
],
|
|
2514
|
+
"cli": []
|
|
2515
|
+
},
|
|
2516
|
+
"integrations": {
|
|
2517
|
+
"title": "Integrations",
|
|
2518
|
+
"description": "Core integration framework — external ID mapping, status badges, and integration registry.",
|
|
2519
|
+
"coreVersion": "0.6.6-develop.6460.1.f94c74174c",
|
|
2520
|
+
"entities": [
|
|
2521
|
+
{
|
|
2522
|
+
"id": "integrations:sync_external_id_mapping",
|
|
2523
|
+
"class": "SyncExternalIdMapping",
|
|
2524
|
+
"table": "sync_external_id_mappings",
|
|
2525
|
+
"editable": true,
|
|
2526
|
+
"customFields": false
|
|
2527
|
+
},
|
|
2528
|
+
{
|
|
2529
|
+
"id": "integrations:integration_credentials",
|
|
2530
|
+
"class": "IntegrationCredentials",
|
|
2531
|
+
"table": "integration_credentials",
|
|
2532
|
+
"editable": true,
|
|
2533
|
+
"customFields": false
|
|
2534
|
+
},
|
|
2535
|
+
{
|
|
2536
|
+
"id": "integrations:integration_state",
|
|
2537
|
+
"class": "IntegrationState",
|
|
2538
|
+
"table": "integration_states",
|
|
2539
|
+
"editable": true,
|
|
2540
|
+
"customFields": false
|
|
2541
|
+
},
|
|
2542
|
+
{
|
|
2543
|
+
"id": "integrations:integration_log",
|
|
2544
|
+
"class": "IntegrationLog",
|
|
2545
|
+
"table": "integration_logs",
|
|
2546
|
+
"editable": false,
|
|
2547
|
+
"customFields": false
|
|
2548
|
+
}
|
|
2549
|
+
],
|
|
2550
|
+
"events": [
|
|
2551
|
+
{
|
|
2552
|
+
"id": "integrations.credentials.updated",
|
|
2553
|
+
"category": "custom",
|
|
2554
|
+
"entity": "credentials"
|
|
2555
|
+
},
|
|
2556
|
+
{
|
|
2557
|
+
"id": "integrations.state.updated",
|
|
2558
|
+
"category": "custom",
|
|
2559
|
+
"entity": "state"
|
|
2560
|
+
},
|
|
2561
|
+
{
|
|
2562
|
+
"id": "integrations.version.changed",
|
|
2563
|
+
"category": "custom",
|
|
2564
|
+
"entity": "state"
|
|
2565
|
+
},
|
|
2566
|
+
{
|
|
2567
|
+
"id": "integrations.log.created",
|
|
2568
|
+
"category": "system",
|
|
2569
|
+
"entity": "log"
|
|
2570
|
+
}
|
|
2571
|
+
],
|
|
2572
|
+
"aclFeatures": [
|
|
2573
|
+
"integrations.view",
|
|
2574
|
+
"integrations.manage",
|
|
2575
|
+
"integrations.credentials.manage"
|
|
2576
|
+
],
|
|
2577
|
+
"apiRoutes": [],
|
|
2578
|
+
"diTokens": [
|
|
2579
|
+
"integrationCredentialsService",
|
|
2580
|
+
"integrationStateService",
|
|
2581
|
+
"integrationLogService",
|
|
2582
|
+
"integrationHealthService"
|
|
2583
|
+
],
|
|
2584
|
+
"searchEntities": [],
|
|
2585
|
+
"hostTokens": {
|
|
2586
|
+
"entityIds": [],
|
|
2587
|
+
"tableIds": []
|
|
2588
|
+
},
|
|
2589
|
+
"notifications": [],
|
|
2590
|
+
"cli": []
|
|
2591
|
+
},
|
|
2592
|
+
"messages": {
|
|
2593
|
+
"title": "Messages",
|
|
2594
|
+
"description": "Internal messaging system with attachments, actions, and email forwarding.",
|
|
2595
|
+
"coreVersion": "0.6.6-develop.6460.1.f94c74174c",
|
|
2596
|
+
"entities": [
|
|
2597
|
+
{
|
|
2598
|
+
"id": "messages:message",
|
|
2599
|
+
"class": "Message",
|
|
2600
|
+
"table": "messages",
|
|
2601
|
+
"editable": true,
|
|
2602
|
+
"customFields": false
|
|
2603
|
+
},
|
|
2604
|
+
{
|
|
2605
|
+
"id": "messages:message_recipient",
|
|
2606
|
+
"class": "MessageRecipient",
|
|
2607
|
+
"table": "message_recipients",
|
|
2608
|
+
"editable": false,
|
|
2609
|
+
"customFields": false
|
|
2610
|
+
},
|
|
2611
|
+
{
|
|
2612
|
+
"id": "messages:message_object",
|
|
2613
|
+
"class": "MessageObject",
|
|
2614
|
+
"table": "message_objects",
|
|
2615
|
+
"editable": false,
|
|
2616
|
+
"customFields": false
|
|
2617
|
+
},
|
|
2618
|
+
{
|
|
2619
|
+
"id": "messages:message_access_token",
|
|
2620
|
+
"class": "MessageAccessToken",
|
|
2621
|
+
"table": "message_access_tokens",
|
|
2622
|
+
"editable": false,
|
|
2623
|
+
"customFields": false
|
|
2624
|
+
},
|
|
2625
|
+
{
|
|
2626
|
+
"id": "messages:message_confirmation",
|
|
2627
|
+
"class": "MessageConfirmation",
|
|
2628
|
+
"table": "message_confirmations",
|
|
2629
|
+
"editable": true,
|
|
2630
|
+
"customFields": false
|
|
2631
|
+
}
|
|
2632
|
+
],
|
|
2633
|
+
"events": [
|
|
2634
|
+
{
|
|
2635
|
+
"id": "messages.message.sent",
|
|
2636
|
+
"category": "custom",
|
|
2637
|
+
"entity": "message"
|
|
2638
|
+
},
|
|
2639
|
+
{
|
|
2640
|
+
"id": "messages.message.read",
|
|
2641
|
+
"category": "custom",
|
|
2642
|
+
"entity": "message"
|
|
2643
|
+
},
|
|
2644
|
+
{
|
|
2645
|
+
"id": "messages.message.marked_unread",
|
|
2646
|
+
"category": "custom",
|
|
2647
|
+
"entity": "message"
|
|
2648
|
+
},
|
|
2649
|
+
{
|
|
2650
|
+
"id": "messages.message.archived",
|
|
2651
|
+
"category": "custom",
|
|
2652
|
+
"entity": "message"
|
|
2653
|
+
},
|
|
2654
|
+
{
|
|
2655
|
+
"id": "messages.message.unarchived",
|
|
2656
|
+
"category": "custom",
|
|
2657
|
+
"entity": "message"
|
|
2658
|
+
},
|
|
2659
|
+
{
|
|
2660
|
+
"id": "messages.message.deleted",
|
|
2661
|
+
"category": "custom",
|
|
2662
|
+
"entity": "message"
|
|
2663
|
+
},
|
|
2664
|
+
{
|
|
2665
|
+
"id": "messages.message.action_taken",
|
|
2666
|
+
"category": "custom",
|
|
2667
|
+
"entity": "message"
|
|
2668
|
+
},
|
|
2669
|
+
{
|
|
2670
|
+
"id": "messages.message.email_sent",
|
|
2671
|
+
"category": "custom",
|
|
2672
|
+
"entity": "message"
|
|
2673
|
+
},
|
|
2674
|
+
{
|
|
2675
|
+
"id": "messages.message.email_failed",
|
|
2676
|
+
"category": "custom",
|
|
2677
|
+
"entity": "message"
|
|
2678
|
+
}
|
|
2679
|
+
],
|
|
2680
|
+
"aclFeatures": [
|
|
2681
|
+
"messages.view",
|
|
2682
|
+
"messages.compose",
|
|
2683
|
+
"messages.attach",
|
|
2684
|
+
"messages.attach_files",
|
|
2685
|
+
"messages.email",
|
|
2686
|
+
"messages.actions",
|
|
2687
|
+
"messages.manage"
|
|
2688
|
+
],
|
|
2689
|
+
"apiRoutes": [],
|
|
2690
|
+
"diTokens": [],
|
|
2691
|
+
"searchEntities": [
|
|
2692
|
+
"messages:message"
|
|
2693
|
+
],
|
|
2694
|
+
"hostTokens": {
|
|
2695
|
+
"entityIds": [],
|
|
2696
|
+
"tableIds": []
|
|
2697
|
+
},
|
|
2698
|
+
"notifications": [
|
|
2699
|
+
"messages.new"
|
|
2700
|
+
],
|
|
2701
|
+
"cli": []
|
|
2702
|
+
},
|
|
2703
|
+
"notifications": {
|
|
2704
|
+
"title": "Notifications",
|
|
2705
|
+
"description": "In-app notifications with module-extensible types and actions.",
|
|
2706
|
+
"coreVersion": "0.6.6-develop.6460.1.f94c74174c",
|
|
2707
|
+
"entities": [
|
|
2708
|
+
{
|
|
2709
|
+
"id": "notifications:notification",
|
|
2710
|
+
"class": "Notification",
|
|
2711
|
+
"table": "notifications",
|
|
2712
|
+
"editable": false,
|
|
2713
|
+
"customFields": false
|
|
2714
|
+
}
|
|
2715
|
+
],
|
|
2716
|
+
"events": [],
|
|
2717
|
+
"aclFeatures": [
|
|
2718
|
+
"notifications.view",
|
|
2719
|
+
"notifications.create",
|
|
2720
|
+
"notifications.manage"
|
|
2721
|
+
],
|
|
2722
|
+
"apiRoutes": [],
|
|
2723
|
+
"diTokens": [
|
|
2724
|
+
"notificationService"
|
|
2725
|
+
],
|
|
2726
|
+
"searchEntities": [],
|
|
2727
|
+
"hostTokens": {
|
|
2728
|
+
"entityIds": [],
|
|
2729
|
+
"tableIds": []
|
|
2730
|
+
},
|
|
2731
|
+
"notifications": [],
|
|
2732
|
+
"cli": [
|
|
2733
|
+
"cleanup-expired"
|
|
2734
|
+
]
|
|
2735
|
+
},
|
|
2736
|
+
"onboarding": {
|
|
2737
|
+
"title": "Onboarding",
|
|
2738
|
+
"description": "Self-service tenant and organization onboarding flow.",
|
|
2739
|
+
"coreVersion": "0.6.6-develop.6460.1.f94c74174c",
|
|
2740
|
+
"entities": [
|
|
2741
|
+
{
|
|
2742
|
+
"id": "onboarding:onboarding_request",
|
|
2743
|
+
"class": "OnboardingRequest",
|
|
2744
|
+
"table": "onboarding_requests",
|
|
2745
|
+
"editable": true,
|
|
2746
|
+
"customFields": false
|
|
2747
|
+
}
|
|
2748
|
+
],
|
|
2749
|
+
"events": [],
|
|
2750
|
+
"aclFeatures": [
|
|
2751
|
+
"onboarding.access",
|
|
2752
|
+
"onboarding.submit",
|
|
2753
|
+
"onboarding.verify"
|
|
2754
|
+
],
|
|
2755
|
+
"apiRoutes": [],
|
|
2756
|
+
"diTokens": [],
|
|
2757
|
+
"searchEntities": [],
|
|
2758
|
+
"hostTokens": {
|
|
2759
|
+
"entityIds": [],
|
|
2760
|
+
"tableIds": []
|
|
2761
|
+
},
|
|
2762
|
+
"notifications": [],
|
|
2763
|
+
"cli": []
|
|
2764
|
+
},
|
|
2765
|
+
"payment_gateways": {
|
|
2766
|
+
"title": "Payment Gateways",
|
|
2767
|
+
"description": "Payment gateway adapter contract, registry, transaction tracking, and webhook routing.",
|
|
2768
|
+
"coreVersion": "0.6.6-develop.6460.1.f94c74174c",
|
|
2769
|
+
"entities": [
|
|
2770
|
+
{
|
|
2771
|
+
"id": "payment_gateways:gateway_transaction",
|
|
2772
|
+
"class": "GatewayTransaction",
|
|
2773
|
+
"table": "gateway_transactions",
|
|
2774
|
+
"editable": true,
|
|
2775
|
+
"customFields": false
|
|
2776
|
+
},
|
|
2777
|
+
{
|
|
2778
|
+
"id": "payment_gateways:webhook_processed_event",
|
|
2779
|
+
"class": "WebhookProcessedEvent",
|
|
2780
|
+
"table": "gateway_webhook_events",
|
|
2781
|
+
"editable": false,
|
|
2782
|
+
"customFields": false
|
|
2783
|
+
}
|
|
2784
|
+
],
|
|
2785
|
+
"events": [
|
|
2786
|
+
{
|
|
2787
|
+
"id": "payment_gateways.session.created",
|
|
2788
|
+
"category": "lifecycle",
|
|
2789
|
+
"entity": "session"
|
|
2790
|
+
},
|
|
2791
|
+
{
|
|
2792
|
+
"id": "payment_gateways.session.expired",
|
|
2793
|
+
"category": "lifecycle",
|
|
2794
|
+
"entity": "session"
|
|
2795
|
+
},
|
|
2796
|
+
{
|
|
2797
|
+
"id": "payment_gateways.payment.authorized",
|
|
2798
|
+
"category": "lifecycle",
|
|
2799
|
+
"entity": "payment"
|
|
2800
|
+
},
|
|
2801
|
+
{
|
|
2802
|
+
"id": "payment_gateways.payment.captured",
|
|
2803
|
+
"category": "lifecycle",
|
|
2804
|
+
"entity": "payment"
|
|
2805
|
+
},
|
|
2806
|
+
{
|
|
2807
|
+
"id": "payment_gateways.payment.failed",
|
|
2808
|
+
"category": "lifecycle",
|
|
2809
|
+
"entity": "payment"
|
|
2810
|
+
},
|
|
2811
|
+
{
|
|
2812
|
+
"id": "payment_gateways.payment.refunded",
|
|
2813
|
+
"category": "lifecycle",
|
|
2814
|
+
"entity": "payment"
|
|
2815
|
+
},
|
|
2816
|
+
{
|
|
2817
|
+
"id": "payment_gateways.payment.cancelled",
|
|
2818
|
+
"category": "lifecycle",
|
|
2819
|
+
"entity": "payment"
|
|
2820
|
+
},
|
|
2821
|
+
{
|
|
2822
|
+
"id": "payment_gateways.webhook.received",
|
|
2823
|
+
"category": "system",
|
|
2824
|
+
"entity": "webhook"
|
|
2825
|
+
},
|
|
2826
|
+
{
|
|
2827
|
+
"id": "payment_gateways.webhook.failed",
|
|
2828
|
+
"category": "system",
|
|
2829
|
+
"entity": "webhook"
|
|
2830
|
+
}
|
|
2831
|
+
],
|
|
2832
|
+
"aclFeatures": [
|
|
2833
|
+
"payment_gateways.view",
|
|
2834
|
+
"payment_gateways.manage",
|
|
2835
|
+
"payment_gateways.capture",
|
|
2836
|
+
"payment_gateways.refund"
|
|
2837
|
+
],
|
|
2838
|
+
"apiRoutes": [],
|
|
2839
|
+
"diTokens": [
|
|
2840
|
+
"paymentGatewayService",
|
|
2841
|
+
"paymentGatewayDescriptorService"
|
|
2842
|
+
],
|
|
2843
|
+
"searchEntities": [],
|
|
2844
|
+
"hostTokens": {
|
|
2845
|
+
"entityIds": [],
|
|
2846
|
+
"tableIds": [
|
|
2847
|
+
"payment_gateways.transactions.list"
|
|
2848
|
+
]
|
|
2849
|
+
},
|
|
2850
|
+
"notifications": [],
|
|
2851
|
+
"cli": []
|
|
2852
|
+
},
|
|
2853
|
+
"perspectives": {
|
|
2854
|
+
"title": "Table perspectives",
|
|
2855
|
+
"description": "Shared persistence for DataTable perspectives (columns, filters, saved views).",
|
|
2856
|
+
"coreVersion": "0.6.6-develop.6460.1.f94c74174c",
|
|
2857
|
+
"entities": [
|
|
2858
|
+
{
|
|
2859
|
+
"id": "perspectives:perspective",
|
|
2860
|
+
"class": "Perspective",
|
|
2861
|
+
"table": "perspectives",
|
|
2862
|
+
"editable": true,
|
|
2863
|
+
"customFields": false
|
|
2864
|
+
},
|
|
2865
|
+
{
|
|
2866
|
+
"id": "perspectives:role_perspective",
|
|
2867
|
+
"class": "RolePerspective",
|
|
2868
|
+
"table": "role_perspectives",
|
|
2869
|
+
"editable": true,
|
|
2870
|
+
"customFields": false
|
|
2871
|
+
}
|
|
2872
|
+
],
|
|
2873
|
+
"events": [],
|
|
2874
|
+
"aclFeatures": [
|
|
2875
|
+
"perspectives.use",
|
|
2876
|
+
"perspectives.role_defaults"
|
|
2877
|
+
],
|
|
2878
|
+
"apiRoutes": [],
|
|
2879
|
+
"diTokens": [],
|
|
2880
|
+
"searchEntities": [],
|
|
2881
|
+
"hostTokens": {
|
|
2882
|
+
"entityIds": [],
|
|
2883
|
+
"tableIds": []
|
|
2884
|
+
},
|
|
2885
|
+
"notifications": [],
|
|
2886
|
+
"cli": []
|
|
2887
|
+
},
|
|
2888
|
+
"planner": {
|
|
2889
|
+
"title": "Worktime / Availabilities",
|
|
2890
|
+
"description": "Availability schedules, rulesets, and shared planning rules.",
|
|
2891
|
+
"coreVersion": "0.6.6-develop.6460.1.f94c74174c",
|
|
2892
|
+
"entities": [
|
|
2893
|
+
{
|
|
2894
|
+
"id": "planner:planner_availability_rule_set",
|
|
2895
|
+
"class": "PlannerAvailabilityRuleSet",
|
|
2896
|
+
"table": "planner_availability_rule_sets",
|
|
2897
|
+
"editable": true,
|
|
2898
|
+
"customFields": false
|
|
2899
|
+
},
|
|
2900
|
+
{
|
|
2901
|
+
"id": "planner:planner_availability_rule",
|
|
2902
|
+
"class": "PlannerAvailabilityRule",
|
|
2903
|
+
"table": "planner_availability_rules",
|
|
2904
|
+
"editable": true,
|
|
2905
|
+
"customFields": false
|
|
2906
|
+
}
|
|
2907
|
+
],
|
|
2908
|
+
"events": [
|
|
2909
|
+
{
|
|
2910
|
+
"id": "planner.availability_rule.created",
|
|
2911
|
+
"category": "crud",
|
|
2912
|
+
"entity": "availability_rule"
|
|
2913
|
+
},
|
|
2914
|
+
{
|
|
2915
|
+
"id": "planner.availability_rule.updated",
|
|
2916
|
+
"category": "crud",
|
|
2917
|
+
"entity": "availability_rule"
|
|
2918
|
+
},
|
|
2919
|
+
{
|
|
2920
|
+
"id": "planner.availability_rule.deleted",
|
|
2921
|
+
"category": "crud",
|
|
2922
|
+
"entity": "availability_rule"
|
|
2923
|
+
},
|
|
2924
|
+
{
|
|
2925
|
+
"id": "planner.availability_rule_set.created",
|
|
2926
|
+
"category": "crud",
|
|
2927
|
+
"entity": "availability_rule_set"
|
|
2928
|
+
},
|
|
2929
|
+
{
|
|
2930
|
+
"id": "planner.availability_rule_set.updated",
|
|
2931
|
+
"category": "crud",
|
|
2932
|
+
"entity": "availability_rule_set"
|
|
2933
|
+
},
|
|
2934
|
+
{
|
|
2935
|
+
"id": "planner.availability_rule_set.deleted",
|
|
2936
|
+
"category": "crud",
|
|
2937
|
+
"entity": "availability_rule_set"
|
|
2938
|
+
}
|
|
2939
|
+
],
|
|
2940
|
+
"aclFeatures": [
|
|
2941
|
+
"planner.view",
|
|
2942
|
+
"planner.manage_availability"
|
|
2943
|
+
],
|
|
2944
|
+
"apiRoutes": [],
|
|
2945
|
+
"diTokens": [
|
|
2946
|
+
"plannerAvailabilityService"
|
|
2947
|
+
],
|
|
2948
|
+
"searchEntities": [
|
|
2949
|
+
"planner:planner_availability_rule_set"
|
|
2950
|
+
],
|
|
2951
|
+
"hostTokens": {
|
|
2952
|
+
"entityIds": [],
|
|
2953
|
+
"tableIds": []
|
|
2954
|
+
},
|
|
2955
|
+
"notifications": [],
|
|
2956
|
+
"cli": [
|
|
2957
|
+
"seed-availability-rulesets",
|
|
2958
|
+
"seed-unavailability-reasons"
|
|
2959
|
+
]
|
|
2960
|
+
},
|
|
2961
|
+
"portal": {
|
|
2962
|
+
"title": "Customer Portal",
|
|
2963
|
+
"description": "Self-service customer portal framework with login, signup, dashboard, sidebar navigation, and extensible widget system.",
|
|
2964
|
+
"coreVersion": "0.6.6-develop.6460.1.f94c74174c",
|
|
2965
|
+
"entities": [],
|
|
2966
|
+
"events": [],
|
|
2967
|
+
"aclFeatures": [],
|
|
2968
|
+
"apiRoutes": [],
|
|
2969
|
+
"diTokens": [],
|
|
2970
|
+
"searchEntities": [],
|
|
2971
|
+
"hostTokens": {
|
|
2972
|
+
"entityIds": [],
|
|
2973
|
+
"tableIds": []
|
|
2974
|
+
},
|
|
2975
|
+
"notifications": [],
|
|
2976
|
+
"cli": []
|
|
2977
|
+
},
|
|
2978
|
+
"progress": {
|
|
2979
|
+
"title": "Progress",
|
|
2980
|
+
"description": "Generic server-side progress tracking for long-running operations",
|
|
2981
|
+
"coreVersion": "0.6.6-develop.6460.1.f94c74174c",
|
|
2982
|
+
"entities": [
|
|
2983
|
+
{
|
|
2984
|
+
"id": "progress:progress_job",
|
|
2985
|
+
"class": "ProgressJob",
|
|
2986
|
+
"table": "progress_jobs",
|
|
2987
|
+
"editable": true,
|
|
2988
|
+
"customFields": false
|
|
2989
|
+
}
|
|
2990
|
+
],
|
|
2991
|
+
"events": [
|
|
2992
|
+
{
|
|
2993
|
+
"id": "progress.job.created",
|
|
2994
|
+
"category": "crud",
|
|
2995
|
+
"entity": "job"
|
|
2996
|
+
},
|
|
2997
|
+
{
|
|
2998
|
+
"id": "progress.job.started",
|
|
2999
|
+
"category": "lifecycle",
|
|
3000
|
+
"entity": "job"
|
|
3001
|
+
},
|
|
3002
|
+
{
|
|
3003
|
+
"id": "progress.job.updated",
|
|
3004
|
+
"category": "lifecycle",
|
|
3005
|
+
"entity": "job"
|
|
3006
|
+
},
|
|
3007
|
+
{
|
|
3008
|
+
"id": "progress.job.completed",
|
|
3009
|
+
"category": "lifecycle",
|
|
3010
|
+
"entity": "job"
|
|
3011
|
+
},
|
|
3012
|
+
{
|
|
3013
|
+
"id": "progress.job.failed",
|
|
3014
|
+
"category": "lifecycle",
|
|
3015
|
+
"entity": "job"
|
|
3016
|
+
},
|
|
3017
|
+
{
|
|
3018
|
+
"id": "progress.job.cancelled",
|
|
3019
|
+
"category": "lifecycle",
|
|
3020
|
+
"entity": "job"
|
|
3021
|
+
}
|
|
3022
|
+
],
|
|
3023
|
+
"aclFeatures": [
|
|
3024
|
+
"progress.view",
|
|
3025
|
+
"progress.create",
|
|
3026
|
+
"progress.update",
|
|
3027
|
+
"progress.cancel",
|
|
3028
|
+
"progress.manage"
|
|
3029
|
+
],
|
|
3030
|
+
"apiRoutes": [],
|
|
3031
|
+
"diTokens": [],
|
|
3032
|
+
"searchEntities": [],
|
|
3033
|
+
"hostTokens": {
|
|
3034
|
+
"entityIds": [],
|
|
3035
|
+
"tableIds": []
|
|
3036
|
+
},
|
|
3037
|
+
"notifications": [],
|
|
3038
|
+
"cli": []
|
|
3039
|
+
},
|
|
3040
|
+
"query_index": {
|
|
3041
|
+
"title": "Query Indexes",
|
|
3042
|
+
"description": "Hybrid query layer with full-text and vector search capabilities.",
|
|
3043
|
+
"coreVersion": "0.6.6-develop.6460.1.f94c74174c",
|
|
3044
|
+
"entities": [
|
|
3045
|
+
{
|
|
3046
|
+
"id": "query_index:entity_index_row",
|
|
3047
|
+
"class": "EntityIndexRow",
|
|
3048
|
+
"table": "entity_indexes",
|
|
3049
|
+
"editable": true,
|
|
3050
|
+
"customFields": false
|
|
3051
|
+
},
|
|
3052
|
+
{
|
|
3053
|
+
"id": "query_index:entity_index_job",
|
|
3054
|
+
"class": "EntityIndexJob",
|
|
3055
|
+
"table": "entity_index_jobs",
|
|
3056
|
+
"editable": false,
|
|
3057
|
+
"customFields": false
|
|
3058
|
+
},
|
|
3059
|
+
{
|
|
3060
|
+
"id": "query_index:entity_index_coverage",
|
|
3061
|
+
"class": "EntityIndexCoverage",
|
|
3062
|
+
"table": "entity_index_coverage",
|
|
3063
|
+
"editable": false,
|
|
3064
|
+
"customFields": false
|
|
3065
|
+
},
|
|
3066
|
+
{
|
|
3067
|
+
"id": "query_index:indexer_error_log",
|
|
3068
|
+
"class": "IndexerErrorLog",
|
|
3069
|
+
"table": "indexer_error_logs",
|
|
3070
|
+
"editable": false,
|
|
3071
|
+
"customFields": false
|
|
3072
|
+
},
|
|
3073
|
+
{
|
|
3074
|
+
"id": "query_index:indexer_status_log",
|
|
3075
|
+
"class": "IndexerStatusLog",
|
|
3076
|
+
"table": "indexer_status_logs",
|
|
3077
|
+
"editable": false,
|
|
3078
|
+
"customFields": false
|
|
3079
|
+
},
|
|
3080
|
+
{
|
|
3081
|
+
"id": "query_index:search_token",
|
|
3082
|
+
"class": "SearchToken",
|
|
3083
|
+
"table": "search_tokens",
|
|
3084
|
+
"editable": false,
|
|
3085
|
+
"customFields": false
|
|
3086
|
+
}
|
|
3087
|
+
],
|
|
3088
|
+
"events": [],
|
|
3089
|
+
"aclFeatures": [
|
|
3090
|
+
"query_index.status.view",
|
|
3091
|
+
"query_index.reindex",
|
|
3092
|
+
"query_index.purge"
|
|
3093
|
+
],
|
|
3094
|
+
"apiRoutes": [],
|
|
3095
|
+
"diTokens": [],
|
|
3096
|
+
"searchEntities": [],
|
|
3097
|
+
"hostTokens": {
|
|
3098
|
+
"entityIds": [],
|
|
3099
|
+
"tableIds": []
|
|
3100
|
+
},
|
|
3101
|
+
"notifications": [],
|
|
3102
|
+
"cli": [
|
|
3103
|
+
"rebuild",
|
|
3104
|
+
"rebuild-all",
|
|
3105
|
+
"reindex",
|
|
3106
|
+
"purge"
|
|
3107
|
+
]
|
|
3108
|
+
},
|
|
3109
|
+
"record_locks": {
|
|
3110
|
+
"title": "Record Locking",
|
|
3111
|
+
"description": "Optimistic and pessimistic record locking with conflict resolution.",
|
|
3112
|
+
"coreVersion": "0.6.6-develop.6460.1.f94c74174c",
|
|
3113
|
+
"entities": [
|
|
3114
|
+
{
|
|
3115
|
+
"id": "record_locks:record_lock",
|
|
3116
|
+
"class": "RecordLock",
|
|
3117
|
+
"table": "record_locks",
|
|
3118
|
+
"editable": true,
|
|
3119
|
+
"customFields": false
|
|
3120
|
+
},
|
|
3121
|
+
{
|
|
3122
|
+
"id": "record_locks:record_lock_conflict",
|
|
3123
|
+
"class": "RecordLockConflict",
|
|
3124
|
+
"table": "record_lock_conflicts",
|
|
3125
|
+
"editable": true,
|
|
3126
|
+
"customFields": false
|
|
3127
|
+
}
|
|
3128
|
+
],
|
|
3129
|
+
"events": [
|
|
3130
|
+
{
|
|
3131
|
+
"id": "record_locks.lock.acquired",
|
|
3132
|
+
"category": "crud",
|
|
3133
|
+
"entity": "lock"
|
|
3134
|
+
},
|
|
3135
|
+
{
|
|
3136
|
+
"id": "record_locks.participant.joined",
|
|
3137
|
+
"category": "lifecycle",
|
|
3138
|
+
"entity": "lock"
|
|
3139
|
+
},
|
|
3140
|
+
{
|
|
3141
|
+
"id": "record_locks.participant.left",
|
|
3142
|
+
"category": "lifecycle",
|
|
3143
|
+
"entity": "lock"
|
|
3144
|
+
},
|
|
3145
|
+
{
|
|
3146
|
+
"id": "record_locks.lock.contended",
|
|
3147
|
+
"category": "lifecycle",
|
|
3148
|
+
"entity": "lock"
|
|
3149
|
+
},
|
|
3150
|
+
{
|
|
3151
|
+
"id": "record_locks.lock.released",
|
|
3152
|
+
"category": "crud",
|
|
3153
|
+
"entity": "lock"
|
|
3154
|
+
},
|
|
3155
|
+
{
|
|
3156
|
+
"id": "record_locks.lock.force_released",
|
|
3157
|
+
"category": "crud",
|
|
3158
|
+
"entity": "lock"
|
|
3159
|
+
},
|
|
3160
|
+
{
|
|
3161
|
+
"id": "record_locks.record.deleted",
|
|
3162
|
+
"category": "crud",
|
|
3163
|
+
"entity": "record"
|
|
3164
|
+
},
|
|
3165
|
+
{
|
|
3166
|
+
"id": "record_locks.conflict.detected",
|
|
3167
|
+
"category": "crud",
|
|
3168
|
+
"entity": "conflict"
|
|
3169
|
+
},
|
|
3170
|
+
{
|
|
3171
|
+
"id": "record_locks.conflict.resolved",
|
|
3172
|
+
"category": "crud",
|
|
3173
|
+
"entity": "conflict"
|
|
3174
|
+
},
|
|
3175
|
+
{
|
|
3176
|
+
"id": "record_locks.incoming_changes.available",
|
|
3177
|
+
"category": "lifecycle",
|
|
3178
|
+
"entity": "change"
|
|
3179
|
+
}
|
|
3180
|
+
],
|
|
3181
|
+
"aclFeatures": [
|
|
3182
|
+
"record_locks.view",
|
|
3183
|
+
"record_locks.manage",
|
|
3184
|
+
"record_locks.force_release",
|
|
3185
|
+
"record_locks.override_incoming"
|
|
3186
|
+
],
|
|
3187
|
+
"apiRoutes": [],
|
|
3188
|
+
"diTokens": [
|
|
3189
|
+
"recordLockService",
|
|
3190
|
+
"crudMutationGuardService",
|
|
3191
|
+
"commandOptimisticLockGuardService"
|
|
3192
|
+
],
|
|
3193
|
+
"searchEntities": [],
|
|
3194
|
+
"hostTokens": {
|
|
3195
|
+
"entityIds": [],
|
|
3196
|
+
"tableIds": []
|
|
3197
|
+
},
|
|
3198
|
+
"notifications": [
|
|
3199
|
+
"record_locks.participant.joined",
|
|
3200
|
+
"record_locks.participant.left",
|
|
3201
|
+
"record_locks.lock.contended",
|
|
3202
|
+
"record_locks.lock.force_released",
|
|
3203
|
+
"record_locks.record.deleted",
|
|
3204
|
+
"record_locks.conflict.detected",
|
|
3205
|
+
"record_locks.incoming_changes.available",
|
|
3206
|
+
"record_locks.conflict.resolved"
|
|
3207
|
+
],
|
|
3208
|
+
"cli": []
|
|
3209
|
+
},
|
|
3210
|
+
"resources": {
|
|
3211
|
+
"title": "Resource planning",
|
|
3212
|
+
"description": "Assets and resources with scheduling policies.",
|
|
3213
|
+
"coreVersion": "0.6.6-develop.6460.1.f94c74174c",
|
|
3214
|
+
"entities": [
|
|
3215
|
+
{
|
|
3216
|
+
"id": "resources:resources_resource_type",
|
|
3217
|
+
"class": "ResourcesResourceType",
|
|
3218
|
+
"table": "resources_resource_types",
|
|
3219
|
+
"editable": true,
|
|
3220
|
+
"customFields": false
|
|
3221
|
+
},
|
|
3222
|
+
{
|
|
3223
|
+
"id": "resources:resources_resource",
|
|
3224
|
+
"class": "ResourcesResource",
|
|
3225
|
+
"table": "resources_resources",
|
|
3226
|
+
"editable": true,
|
|
3227
|
+
"customFields": false
|
|
3228
|
+
},
|
|
3229
|
+
{
|
|
3230
|
+
"id": "resources:resources_resource_comment",
|
|
3231
|
+
"class": "ResourcesResourceComment",
|
|
3232
|
+
"table": "resources_resource_comments",
|
|
3233
|
+
"editable": true,
|
|
3234
|
+
"customFields": false
|
|
3235
|
+
},
|
|
3236
|
+
{
|
|
3237
|
+
"id": "resources:resources_resource_activity",
|
|
3238
|
+
"class": "ResourcesResourceActivity",
|
|
3239
|
+
"table": "resources_resource_activities",
|
|
3240
|
+
"editable": true,
|
|
3241
|
+
"customFields": false
|
|
3242
|
+
},
|
|
3243
|
+
{
|
|
3244
|
+
"id": "resources:resources_resource_tag",
|
|
3245
|
+
"class": "ResourcesResourceTag",
|
|
3246
|
+
"table": "resources_resource_tags",
|
|
3247
|
+
"editable": true,
|
|
3248
|
+
"customFields": false
|
|
3249
|
+
},
|
|
3250
|
+
{
|
|
3251
|
+
"id": "resources:resources_resource_tag_assignment",
|
|
3252
|
+
"class": "ResourcesResourceTagAssignment",
|
|
3253
|
+
"table": "resources_resource_tag_assignments",
|
|
3254
|
+
"editable": true,
|
|
3255
|
+
"customFields": false
|
|
3256
|
+
}
|
|
3257
|
+
],
|
|
3258
|
+
"events": [
|
|
3259
|
+
{
|
|
3260
|
+
"id": "resources.resource.created",
|
|
3261
|
+
"category": "crud",
|
|
3262
|
+
"entity": "resource"
|
|
3263
|
+
},
|
|
3264
|
+
{
|
|
3265
|
+
"id": "resources.resource.updated",
|
|
3266
|
+
"category": "crud",
|
|
3267
|
+
"entity": "resource"
|
|
3268
|
+
},
|
|
3269
|
+
{
|
|
3270
|
+
"id": "resources.resource.deleted",
|
|
3271
|
+
"category": "crud",
|
|
3272
|
+
"entity": "resource"
|
|
3273
|
+
},
|
|
3274
|
+
{
|
|
3275
|
+
"id": "resources.resource_type.created",
|
|
3276
|
+
"category": "crud",
|
|
3277
|
+
"entity": "resource_type"
|
|
3278
|
+
},
|
|
3279
|
+
{
|
|
3280
|
+
"id": "resources.resource_type.updated",
|
|
3281
|
+
"category": "crud",
|
|
3282
|
+
"entity": "resource_type"
|
|
3283
|
+
},
|
|
3284
|
+
{
|
|
3285
|
+
"id": "resources.resource_type.deleted",
|
|
3286
|
+
"category": "crud",
|
|
3287
|
+
"entity": "resource_type"
|
|
3288
|
+
},
|
|
3289
|
+
{
|
|
3290
|
+
"id": "resources.comment.created",
|
|
3291
|
+
"category": "crud",
|
|
3292
|
+
"entity": "comment"
|
|
3293
|
+
},
|
|
3294
|
+
{
|
|
3295
|
+
"id": "resources.comment.updated",
|
|
3296
|
+
"category": "crud",
|
|
3297
|
+
"entity": "comment"
|
|
3298
|
+
},
|
|
3299
|
+
{
|
|
3300
|
+
"id": "resources.comment.deleted",
|
|
3301
|
+
"category": "crud",
|
|
3302
|
+
"entity": "comment"
|
|
3303
|
+
},
|
|
3304
|
+
{
|
|
3305
|
+
"id": "resources.activity.created",
|
|
3306
|
+
"category": "crud",
|
|
3307
|
+
"entity": "activity"
|
|
3308
|
+
},
|
|
3309
|
+
{
|
|
3310
|
+
"id": "resources.activity.updated",
|
|
3311
|
+
"category": "crud",
|
|
3312
|
+
"entity": "activity"
|
|
3313
|
+
},
|
|
3314
|
+
{
|
|
3315
|
+
"id": "resources.activity.deleted",
|
|
3316
|
+
"category": "crud",
|
|
3317
|
+
"entity": "activity"
|
|
3318
|
+
},
|
|
3319
|
+
{
|
|
3320
|
+
"id": "resources.resource_tag_assignment.created",
|
|
3321
|
+
"category": "crud",
|
|
3322
|
+
"entity": "resource_tag_assignment"
|
|
3323
|
+
},
|
|
3324
|
+
{
|
|
3325
|
+
"id": "resources.resource_tag_assignment.updated",
|
|
3326
|
+
"category": "crud",
|
|
3327
|
+
"entity": "resource_tag_assignment"
|
|
3328
|
+
},
|
|
3329
|
+
{
|
|
3330
|
+
"id": "resources.resource_tag_assignment.deleted",
|
|
3331
|
+
"category": "crud",
|
|
3332
|
+
"entity": "resource_tag_assignment"
|
|
3333
|
+
}
|
|
3334
|
+
],
|
|
3335
|
+
"aclFeatures": [
|
|
3336
|
+
"resources.view",
|
|
3337
|
+
"resources.manage_resources"
|
|
3338
|
+
],
|
|
3339
|
+
"apiRoutes": [],
|
|
3340
|
+
"diTokens": [],
|
|
3341
|
+
"searchEntities": [
|
|
3342
|
+
"resources:resources_resource",
|
|
3343
|
+
"resources:resources_resource_type"
|
|
3344
|
+
],
|
|
3345
|
+
"hostTokens": {
|
|
3346
|
+
"entityIds": [],
|
|
3347
|
+
"tableIds": [
|
|
3348
|
+
"resources.resource-types.list",
|
|
3349
|
+
"resources.resources.list"
|
|
3350
|
+
]
|
|
3351
|
+
},
|
|
3352
|
+
"notifications": [],
|
|
3353
|
+
"cli": [
|
|
3354
|
+
"seed-capacity-units",
|
|
3355
|
+
"seed-activity-types",
|
|
3356
|
+
"seed-address-types",
|
|
3357
|
+
"seed-examples"
|
|
3358
|
+
]
|
|
3359
|
+
},
|
|
3360
|
+
"sales": {
|
|
3361
|
+
"title": "Sales Management",
|
|
3362
|
+
"description": "Quoting, ordering, fulfillment, and billing capabilities built on modular pricing and tax pipelines.",
|
|
3363
|
+
"coreVersion": "0.6.6-develop.6460.1.f94c74174c",
|
|
3364
|
+
"entities": [
|
|
3365
|
+
{
|
|
3366
|
+
"id": "sales:sales_channel",
|
|
3367
|
+
"class": "SalesChannel",
|
|
3368
|
+
"table": "sales_channels",
|
|
3369
|
+
"editable": true,
|
|
3370
|
+
"customFields": false
|
|
3371
|
+
},
|
|
3372
|
+
{
|
|
3373
|
+
"id": "sales:sales_shipping_method",
|
|
3374
|
+
"class": "SalesShippingMethod",
|
|
3375
|
+
"table": "sales_shipping_methods",
|
|
3376
|
+
"editable": true,
|
|
3377
|
+
"customFields": false
|
|
3378
|
+
},
|
|
3379
|
+
{
|
|
3380
|
+
"id": "sales:sales_delivery_window",
|
|
3381
|
+
"class": "SalesDeliveryWindow",
|
|
3382
|
+
"table": "sales_delivery_windows",
|
|
3383
|
+
"editable": true,
|
|
3384
|
+
"customFields": false
|
|
3385
|
+
},
|
|
3386
|
+
{
|
|
3387
|
+
"id": "sales:sales_payment_method",
|
|
3388
|
+
"class": "SalesPaymentMethod",
|
|
3389
|
+
"table": "sales_payment_methods",
|
|
3390
|
+
"editable": true,
|
|
3391
|
+
"customFields": false
|
|
3392
|
+
},
|
|
3393
|
+
{
|
|
3394
|
+
"id": "sales:sales_tax_rate",
|
|
3395
|
+
"class": "SalesTaxRate",
|
|
3396
|
+
"table": "sales_tax_rates",
|
|
3397
|
+
"editable": true,
|
|
3398
|
+
"customFields": false
|
|
3399
|
+
},
|
|
3400
|
+
{
|
|
3401
|
+
"id": "sales:sales_order",
|
|
3402
|
+
"class": "SalesOrder",
|
|
3403
|
+
"table": "sales_orders",
|
|
3404
|
+
"editable": true,
|
|
3405
|
+
"customFields": false
|
|
3406
|
+
},
|
|
3407
|
+
{
|
|
3408
|
+
"id": "sales:sales_order_line",
|
|
3409
|
+
"class": "SalesOrderLine",
|
|
3410
|
+
"table": "sales_order_lines",
|
|
3411
|
+
"editable": true,
|
|
3412
|
+
"customFields": false
|
|
3413
|
+
},
|
|
3414
|
+
{
|
|
3415
|
+
"id": "sales:sales_order_adjustment",
|
|
3416
|
+
"class": "SalesOrderAdjustment",
|
|
3417
|
+
"table": "sales_order_adjustments",
|
|
3418
|
+
"editable": true,
|
|
3419
|
+
"customFields": false
|
|
3420
|
+
},
|
|
3421
|
+
{
|
|
3422
|
+
"id": "sales:sales_settings",
|
|
3423
|
+
"class": "SalesSettings",
|
|
3424
|
+
"table": "sales_settings",
|
|
3425
|
+
"editable": true,
|
|
3426
|
+
"customFields": false
|
|
3427
|
+
},
|
|
3428
|
+
{
|
|
3429
|
+
"id": "sales:sales_document_sequence",
|
|
3430
|
+
"class": "SalesDocumentSequence",
|
|
3431
|
+
"table": "sales_document_sequences",
|
|
3432
|
+
"editable": true,
|
|
3433
|
+
"customFields": false
|
|
3434
|
+
},
|
|
3435
|
+
{
|
|
3436
|
+
"id": "sales:sales_quote",
|
|
3437
|
+
"class": "SalesQuote",
|
|
3438
|
+
"table": "sales_quotes",
|
|
3439
|
+
"editable": true,
|
|
3440
|
+
"customFields": false
|
|
3441
|
+
},
|
|
3442
|
+
{
|
|
3443
|
+
"id": "sales:sales_quote_line",
|
|
3444
|
+
"class": "SalesQuoteLine",
|
|
3445
|
+
"table": "sales_quote_lines",
|
|
3446
|
+
"editable": true,
|
|
3447
|
+
"customFields": false
|
|
3448
|
+
},
|
|
3449
|
+
{
|
|
3450
|
+
"id": "sales:sales_quote_adjustment",
|
|
3451
|
+
"class": "SalesQuoteAdjustment",
|
|
3452
|
+
"table": "sales_quote_adjustments",
|
|
3453
|
+
"editable": true,
|
|
3454
|
+
"customFields": false
|
|
3455
|
+
},
|
|
3456
|
+
{
|
|
3457
|
+
"id": "sales:sales_shipment",
|
|
3458
|
+
"class": "SalesShipment",
|
|
3459
|
+
"table": "sales_shipments",
|
|
3460
|
+
"editable": true,
|
|
3461
|
+
"customFields": false
|
|
3462
|
+
},
|
|
3463
|
+
{
|
|
3464
|
+
"id": "sales:sales_shipment_item",
|
|
3465
|
+
"class": "SalesShipmentItem",
|
|
3466
|
+
"table": "sales_shipment_items",
|
|
3467
|
+
"editable": false,
|
|
3468
|
+
"customFields": false
|
|
3469
|
+
},
|
|
3470
|
+
{
|
|
3471
|
+
"id": "sales:sales_return",
|
|
3472
|
+
"class": "SalesReturn",
|
|
3473
|
+
"table": "sales_returns",
|
|
3474
|
+
"editable": true,
|
|
3475
|
+
"customFields": false
|
|
3476
|
+
},
|
|
3477
|
+
{
|
|
3478
|
+
"id": "sales:sales_return_line",
|
|
1484
3479
|
"class": "SalesReturnLine",
|
|
1485
3480
|
"table": "sales_return_lines",
|
|
1486
3481
|
"editable": true,
|
|
1487
3482
|
"customFields": false
|
|
1488
3483
|
},
|
|
1489
3484
|
{
|
|
1490
|
-
"id": "sales:sales_invoice",
|
|
1491
|
-
"class": "SalesInvoice",
|
|
1492
|
-
"table": "sales_invoices",
|
|
1493
|
-
"editable": true,
|
|
3485
|
+
"id": "sales:sales_invoice",
|
|
3486
|
+
"class": "SalesInvoice",
|
|
3487
|
+
"table": "sales_invoices",
|
|
3488
|
+
"editable": true,
|
|
3489
|
+
"customFields": false
|
|
3490
|
+
},
|
|
3491
|
+
{
|
|
3492
|
+
"id": "sales:sales_invoice_line",
|
|
3493
|
+
"class": "SalesInvoiceLine",
|
|
3494
|
+
"table": "sales_invoice_lines",
|
|
3495
|
+
"editable": false,
|
|
3496
|
+
"customFields": false
|
|
3497
|
+
},
|
|
3498
|
+
{
|
|
3499
|
+
"id": "sales:sales_credit_memo",
|
|
3500
|
+
"class": "SalesCreditMemo",
|
|
3501
|
+
"table": "sales_credit_memos",
|
|
3502
|
+
"editable": true,
|
|
3503
|
+
"customFields": false
|
|
3504
|
+
},
|
|
3505
|
+
{
|
|
3506
|
+
"id": "sales:sales_credit_memo_line",
|
|
3507
|
+
"class": "SalesCreditMemoLine",
|
|
3508
|
+
"table": "sales_credit_memo_lines",
|
|
3509
|
+
"editable": false,
|
|
3510
|
+
"customFields": false
|
|
3511
|
+
},
|
|
3512
|
+
{
|
|
3513
|
+
"id": "sales:sales_payment",
|
|
3514
|
+
"class": "SalesPayment",
|
|
3515
|
+
"table": "sales_payments",
|
|
3516
|
+
"editable": true,
|
|
3517
|
+
"customFields": false
|
|
3518
|
+
},
|
|
3519
|
+
{
|
|
3520
|
+
"id": "sales:sales_payment_allocation",
|
|
3521
|
+
"class": "SalesPaymentAllocation",
|
|
3522
|
+
"table": "sales_payment_allocations",
|
|
3523
|
+
"editable": false,
|
|
3524
|
+
"customFields": false
|
|
3525
|
+
},
|
|
3526
|
+
{
|
|
3527
|
+
"id": "sales:sales_note",
|
|
3528
|
+
"class": "SalesNote",
|
|
3529
|
+
"table": "sales_notes",
|
|
3530
|
+
"editable": true,
|
|
3531
|
+
"customFields": false
|
|
3532
|
+
},
|
|
3533
|
+
{
|
|
3534
|
+
"id": "sales:sales_document_address",
|
|
3535
|
+
"class": "SalesDocumentAddress",
|
|
3536
|
+
"table": "sales_document_addresses",
|
|
3537
|
+
"editable": true,
|
|
3538
|
+
"customFields": false
|
|
3539
|
+
},
|
|
3540
|
+
{
|
|
3541
|
+
"id": "sales:sales_document_tag",
|
|
3542
|
+
"class": "SalesDocumentTag",
|
|
3543
|
+
"table": "sales_document_tags",
|
|
3544
|
+
"editable": true,
|
|
3545
|
+
"customFields": false
|
|
3546
|
+
},
|
|
3547
|
+
{
|
|
3548
|
+
"id": "sales:sales_document_tag_assignment",
|
|
3549
|
+
"class": "SalesDocumentTagAssignment",
|
|
3550
|
+
"table": "sales_document_tag_assignments",
|
|
3551
|
+
"editable": true,
|
|
3552
|
+
"customFields": false
|
|
3553
|
+
}
|
|
3554
|
+
],
|
|
3555
|
+
"events": [
|
|
3556
|
+
{
|
|
3557
|
+
"id": "sales.order.created",
|
|
3558
|
+
"category": "crud",
|
|
3559
|
+
"entity": "order"
|
|
3560
|
+
},
|
|
3561
|
+
{
|
|
3562
|
+
"id": "sales.order.updated",
|
|
3563
|
+
"category": "crud",
|
|
3564
|
+
"entity": "order"
|
|
3565
|
+
},
|
|
3566
|
+
{
|
|
3567
|
+
"id": "sales.order.deleted",
|
|
3568
|
+
"category": "crud",
|
|
3569
|
+
"entity": "order"
|
|
3570
|
+
},
|
|
3571
|
+
{
|
|
3572
|
+
"id": "sales.quote.created",
|
|
3573
|
+
"category": "crud",
|
|
3574
|
+
"entity": "quote"
|
|
3575
|
+
},
|
|
3576
|
+
{
|
|
3577
|
+
"id": "sales.quote.updated",
|
|
3578
|
+
"category": "crud",
|
|
3579
|
+
"entity": "quote"
|
|
3580
|
+
},
|
|
3581
|
+
{
|
|
3582
|
+
"id": "sales.quote.deleted",
|
|
3583
|
+
"category": "crud",
|
|
3584
|
+
"entity": "quote"
|
|
3585
|
+
},
|
|
3586
|
+
{
|
|
3587
|
+
"id": "sales.invoice.created",
|
|
3588
|
+
"category": "crud",
|
|
3589
|
+
"entity": "invoice"
|
|
3590
|
+
},
|
|
3591
|
+
{
|
|
3592
|
+
"id": "sales.invoice.updated",
|
|
3593
|
+
"category": "crud",
|
|
3594
|
+
"entity": "invoice"
|
|
3595
|
+
},
|
|
3596
|
+
{
|
|
3597
|
+
"id": "sales.invoice.deleted",
|
|
3598
|
+
"category": "crud",
|
|
3599
|
+
"entity": "invoice"
|
|
3600
|
+
},
|
|
3601
|
+
{
|
|
3602
|
+
"id": "sales.credit_memo.created",
|
|
3603
|
+
"category": "crud",
|
|
3604
|
+
"entity": "credit_memo"
|
|
3605
|
+
},
|
|
3606
|
+
{
|
|
3607
|
+
"id": "sales.credit_memo.updated",
|
|
3608
|
+
"category": "crud",
|
|
3609
|
+
"entity": "credit_memo"
|
|
3610
|
+
},
|
|
3611
|
+
{
|
|
3612
|
+
"id": "sales.credit_memo.deleted",
|
|
3613
|
+
"category": "crud",
|
|
3614
|
+
"entity": "credit_memo"
|
|
3615
|
+
},
|
|
3616
|
+
{
|
|
3617
|
+
"id": "sales.line.created",
|
|
3618
|
+
"category": "crud",
|
|
3619
|
+
"entity": "line"
|
|
3620
|
+
},
|
|
3621
|
+
{
|
|
3622
|
+
"id": "sales.line.updated",
|
|
3623
|
+
"category": "crud",
|
|
3624
|
+
"entity": "line"
|
|
3625
|
+
},
|
|
3626
|
+
{
|
|
3627
|
+
"id": "sales.line.deleted",
|
|
3628
|
+
"category": "crud",
|
|
3629
|
+
"entity": "line"
|
|
3630
|
+
},
|
|
3631
|
+
{
|
|
3632
|
+
"id": "sales.payment.created",
|
|
3633
|
+
"category": "crud",
|
|
3634
|
+
"entity": "payment"
|
|
3635
|
+
},
|
|
3636
|
+
{
|
|
3637
|
+
"id": "sales.payment.updated",
|
|
3638
|
+
"category": "crud",
|
|
3639
|
+
"entity": "payment"
|
|
3640
|
+
},
|
|
3641
|
+
{
|
|
3642
|
+
"id": "sales.payment.deleted",
|
|
3643
|
+
"category": "crud",
|
|
3644
|
+
"entity": "payment"
|
|
3645
|
+
},
|
|
3646
|
+
{
|
|
3647
|
+
"id": "sales.shipment.created",
|
|
3648
|
+
"category": "crud",
|
|
3649
|
+
"entity": "shipment"
|
|
3650
|
+
},
|
|
3651
|
+
{
|
|
3652
|
+
"id": "sales.shipment.updated",
|
|
3653
|
+
"category": "crud",
|
|
3654
|
+
"entity": "shipment"
|
|
3655
|
+
},
|
|
3656
|
+
{
|
|
3657
|
+
"id": "sales.shipment.deleted",
|
|
3658
|
+
"category": "crud",
|
|
3659
|
+
"entity": "shipment"
|
|
3660
|
+
},
|
|
3661
|
+
{
|
|
3662
|
+
"id": "sales.return.created",
|
|
3663
|
+
"category": "crud",
|
|
3664
|
+
"entity": "return"
|
|
3665
|
+
},
|
|
3666
|
+
{
|
|
3667
|
+
"id": "sales.return.updated",
|
|
3668
|
+
"category": "crud",
|
|
3669
|
+
"entity": "return"
|
|
3670
|
+
},
|
|
3671
|
+
{
|
|
3672
|
+
"id": "sales.return.deleted",
|
|
3673
|
+
"category": "crud",
|
|
3674
|
+
"entity": "return"
|
|
3675
|
+
},
|
|
3676
|
+
{
|
|
3677
|
+
"id": "sales.note.created",
|
|
3678
|
+
"category": "crud",
|
|
3679
|
+
"entity": "note"
|
|
3680
|
+
},
|
|
3681
|
+
{
|
|
3682
|
+
"id": "sales.note.updated",
|
|
3683
|
+
"category": "crud",
|
|
3684
|
+
"entity": "note"
|
|
3685
|
+
},
|
|
3686
|
+
{
|
|
3687
|
+
"id": "sales.note.deleted",
|
|
3688
|
+
"category": "crud",
|
|
3689
|
+
"entity": "note"
|
|
3690
|
+
},
|
|
3691
|
+
{
|
|
3692
|
+
"id": "sales.channel.created",
|
|
3693
|
+
"category": "crud",
|
|
3694
|
+
"entity": "channel"
|
|
3695
|
+
},
|
|
3696
|
+
{
|
|
3697
|
+
"id": "sales.channel.updated",
|
|
3698
|
+
"category": "crud",
|
|
3699
|
+
"entity": "channel"
|
|
3700
|
+
},
|
|
3701
|
+
{
|
|
3702
|
+
"id": "sales.channel.deleted",
|
|
3703
|
+
"category": "crud",
|
|
3704
|
+
"entity": "channel"
|
|
3705
|
+
},
|
|
3706
|
+
{
|
|
3707
|
+
"id": "sales.document.totals.calculated",
|
|
3708
|
+
"category": "lifecycle",
|
|
3709
|
+
"entity": null
|
|
3710
|
+
},
|
|
3711
|
+
{
|
|
3712
|
+
"id": "sales.document.calculate.before",
|
|
3713
|
+
"category": "lifecycle",
|
|
3714
|
+
"entity": null
|
|
3715
|
+
},
|
|
3716
|
+
{
|
|
3717
|
+
"id": "sales.document.calculate.after",
|
|
3718
|
+
"category": "lifecycle",
|
|
3719
|
+
"entity": null
|
|
3720
|
+
},
|
|
3721
|
+
{
|
|
3722
|
+
"id": "sales.line.calculate.before",
|
|
3723
|
+
"category": "lifecycle",
|
|
3724
|
+
"entity": null
|
|
3725
|
+
},
|
|
3726
|
+
{
|
|
3727
|
+
"id": "sales.line.calculate.after",
|
|
3728
|
+
"category": "lifecycle",
|
|
3729
|
+
"entity": null
|
|
3730
|
+
},
|
|
3731
|
+
{
|
|
3732
|
+
"id": "sales.tax.calculate.before",
|
|
3733
|
+
"category": "lifecycle",
|
|
3734
|
+
"entity": null
|
|
3735
|
+
},
|
|
3736
|
+
{
|
|
3737
|
+
"id": "sales.tax.calculate.after",
|
|
3738
|
+
"category": "lifecycle",
|
|
3739
|
+
"entity": null
|
|
3740
|
+
},
|
|
3741
|
+
{
|
|
3742
|
+
"id": "sales.shipping.adjustments.apply.before",
|
|
3743
|
+
"category": "lifecycle",
|
|
3744
|
+
"entity": null
|
|
3745
|
+
},
|
|
3746
|
+
{
|
|
3747
|
+
"id": "sales.shipping.adjustments.apply.after",
|
|
3748
|
+
"category": "lifecycle",
|
|
3749
|
+
"entity": null
|
|
3750
|
+
},
|
|
3751
|
+
{
|
|
3752
|
+
"id": "sales.payment.adjustments.apply.before",
|
|
3753
|
+
"category": "lifecycle",
|
|
3754
|
+
"entity": null
|
|
3755
|
+
},
|
|
3756
|
+
{
|
|
3757
|
+
"id": "sales.payment.adjustments.apply.after",
|
|
3758
|
+
"category": "lifecycle",
|
|
3759
|
+
"entity": null
|
|
3760
|
+
}
|
|
3761
|
+
],
|
|
3762
|
+
"aclFeatures": [
|
|
3763
|
+
"sales.orders.view",
|
|
3764
|
+
"sales.orders.manage",
|
|
3765
|
+
"sales.orders.approve",
|
|
3766
|
+
"sales.widgets.new-orders",
|
|
3767
|
+
"sales.widgets.new-quotes",
|
|
3768
|
+
"sales.quotes.view",
|
|
3769
|
+
"sales.quotes.manage",
|
|
3770
|
+
"sales.documents.number.edit",
|
|
3771
|
+
"sales.shipments.manage",
|
|
3772
|
+
"sales.payments.manage",
|
|
3773
|
+
"sales.returns.view",
|
|
3774
|
+
"sales.returns.create",
|
|
3775
|
+
"sales.returns.manage",
|
|
3776
|
+
"sales.invoices.manage",
|
|
3777
|
+
"sales.credit_memos.manage",
|
|
3778
|
+
"sales.channels.view",
|
|
3779
|
+
"sales.channels.manage",
|
|
3780
|
+
"sales.settings.view",
|
|
3781
|
+
"sales.settings.manage"
|
|
3782
|
+
],
|
|
3783
|
+
"apiRoutes": [],
|
|
3784
|
+
"diTokens": [
|
|
3785
|
+
"salesCalculationService",
|
|
3786
|
+
"taxCalculationService",
|
|
3787
|
+
"salesDocumentNumberGenerator",
|
|
3788
|
+
"salesOrderService"
|
|
3789
|
+
],
|
|
3790
|
+
"searchEntities": [
|
|
3791
|
+
"sales:sales_channel",
|
|
3792
|
+
"sales:sales_order",
|
|
3793
|
+
"sales:sales_quote",
|
|
3794
|
+
"sales:sales_order_line",
|
|
3795
|
+
"sales:sales_quote_line",
|
|
3796
|
+
"sales:sales_order_adjustment",
|
|
3797
|
+
"sales:sales_quote_adjustment",
|
|
3798
|
+
"sales:sales_shipment",
|
|
3799
|
+
"sales:sales_shipment_item",
|
|
3800
|
+
"sales:sales_invoice",
|
|
3801
|
+
"sales:sales_invoice_line",
|
|
3802
|
+
"sales:sales_credit_memo",
|
|
3803
|
+
"sales:sales_credit_memo_line",
|
|
3804
|
+
"sales:sales_payment",
|
|
3805
|
+
"sales:sales_payment_allocation",
|
|
3806
|
+
"sales:sales_note",
|
|
3807
|
+
"sales:sales_document_address",
|
|
3808
|
+
"sales:sales_shipping_method",
|
|
3809
|
+
"sales:sales_delivery_window",
|
|
3810
|
+
"sales:sales_payment_method",
|
|
3811
|
+
"sales:sales_tax_rate",
|
|
3812
|
+
"sales:sales_document_tag"
|
|
3813
|
+
],
|
|
3814
|
+
"hostTokens": {
|
|
3815
|
+
"entityIds": [],
|
|
3816
|
+
"tableIds": []
|
|
3817
|
+
},
|
|
3818
|
+
"notifications": [
|
|
3819
|
+
"sales.order.created",
|
|
3820
|
+
"sales.quote.created",
|
|
3821
|
+
"sales.payment.received",
|
|
3822
|
+
"sales.quote.expiring"
|
|
3823
|
+
],
|
|
3824
|
+
"cli": [
|
|
3825
|
+
"seed-tax-rates",
|
|
3826
|
+
"seed-statuses",
|
|
3827
|
+
"seed-adjustment-kinds",
|
|
3828
|
+
"backfill-deal-loss-reasons",
|
|
3829
|
+
"seed-shipping-methods",
|
|
3830
|
+
"seed-payment-methods",
|
|
3831
|
+
"seed-examples"
|
|
3832
|
+
]
|
|
3833
|
+
},
|
|
3834
|
+
"scheduler": {
|
|
3835
|
+
"title": "Scheduler",
|
|
3836
|
+
"description": "Database-managed scheduled jobs with admin UI",
|
|
3837
|
+
"coreVersion": "0.6.6-develop.6460.1.f94c74174c",
|
|
3838
|
+
"entities": [
|
|
3839
|
+
{
|
|
3840
|
+
"id": "scheduler:scheduled_job",
|
|
3841
|
+
"class": "ScheduledJob",
|
|
3842
|
+
"table": "scheduled_jobs",
|
|
3843
|
+
"editable": true,
|
|
3844
|
+
"customFields": false
|
|
3845
|
+
}
|
|
3846
|
+
],
|
|
3847
|
+
"events": [
|
|
3848
|
+
{
|
|
3849
|
+
"id": "scheduler.job.started",
|
|
3850
|
+
"category": "lifecycle",
|
|
3851
|
+
"entity": "scheduled_job"
|
|
3852
|
+
},
|
|
3853
|
+
{
|
|
3854
|
+
"id": "scheduler.job.completed",
|
|
3855
|
+
"category": "lifecycle",
|
|
3856
|
+
"entity": "scheduled_job"
|
|
3857
|
+
},
|
|
3858
|
+
{
|
|
3859
|
+
"id": "scheduler.job.failed",
|
|
3860
|
+
"category": "lifecycle",
|
|
3861
|
+
"entity": "scheduled_job"
|
|
3862
|
+
},
|
|
3863
|
+
{
|
|
3864
|
+
"id": "scheduler.job.skipped",
|
|
3865
|
+
"category": "lifecycle",
|
|
3866
|
+
"entity": "scheduled_job"
|
|
3867
|
+
}
|
|
3868
|
+
],
|
|
3869
|
+
"aclFeatures": [
|
|
3870
|
+
"scheduler.jobs.view",
|
|
3871
|
+
"scheduler.jobs.manage",
|
|
3872
|
+
"scheduler.jobs.trigger"
|
|
3873
|
+
],
|
|
3874
|
+
"apiRoutes": [],
|
|
3875
|
+
"diTokens": [
|
|
3876
|
+
"bullmqSchedulerService",
|
|
3877
|
+
"localSchedulerService",
|
|
3878
|
+
"schedulerService"
|
|
3879
|
+
],
|
|
3880
|
+
"searchEntities": [],
|
|
3881
|
+
"hostTokens": {
|
|
3882
|
+
"entityIds": [],
|
|
3883
|
+
"tableIds": []
|
|
3884
|
+
},
|
|
3885
|
+
"notifications": [],
|
|
3886
|
+
"cli": [
|
|
3887
|
+
"list",
|
|
3888
|
+
"status",
|
|
3889
|
+
"run",
|
|
3890
|
+
"start"
|
|
3891
|
+
]
|
|
3892
|
+
},
|
|
3893
|
+
"search": {
|
|
3894
|
+
"title": "Search",
|
|
3895
|
+
"description": "Unified search module with pluggable strategies (Meilisearch, Vector, Tokens).",
|
|
3896
|
+
"coreVersion": "0.6.6-develop.6460.1.f94c74174c",
|
|
3897
|
+
"entities": [],
|
|
3898
|
+
"events": [],
|
|
3899
|
+
"aclFeatures": [
|
|
3900
|
+
"search.view",
|
|
3901
|
+
"search.manage",
|
|
3902
|
+
"search.reindex",
|
|
3903
|
+
"search.embeddings.view",
|
|
3904
|
+
"search.embeddings.manage",
|
|
3905
|
+
"search.global"
|
|
3906
|
+
],
|
|
3907
|
+
"apiRoutes": [],
|
|
3908
|
+
"diTokens": [],
|
|
3909
|
+
"searchEntities": [],
|
|
3910
|
+
"hostTokens": {
|
|
3911
|
+
"entityIds": [],
|
|
3912
|
+
"tableIds": []
|
|
3913
|
+
},
|
|
3914
|
+
"notifications": [],
|
|
3915
|
+
"cli": [
|
|
3916
|
+
"query",
|
|
3917
|
+
"status",
|
|
3918
|
+
"index",
|
|
3919
|
+
"reindex",
|
|
3920
|
+
"reindex-help",
|
|
3921
|
+
"test-meilisearch",
|
|
3922
|
+
"worker",
|
|
3923
|
+
"help"
|
|
3924
|
+
]
|
|
3925
|
+
},
|
|
3926
|
+
"security": {
|
|
3927
|
+
"title": "Security",
|
|
3928
|
+
"description": null,
|
|
3929
|
+
"coreVersion": "0.6.6-develop.6460.1.f94c74174c",
|
|
3930
|
+
"entities": [
|
|
3931
|
+
{
|
|
3932
|
+
"id": "security:user_mfa_method",
|
|
3933
|
+
"class": "UserMfaMethod",
|
|
3934
|
+
"table": "user_mfa_methods",
|
|
3935
|
+
"editable": true,
|
|
3936
|
+
"customFields": false
|
|
3937
|
+
},
|
|
3938
|
+
{
|
|
3939
|
+
"id": "security:mfa_recovery_code",
|
|
3940
|
+
"class": "MfaRecoveryCode",
|
|
3941
|
+
"table": "mfa_recovery_codes",
|
|
3942
|
+
"editable": false,
|
|
3943
|
+
"customFields": false
|
|
3944
|
+
},
|
|
3945
|
+
{
|
|
3946
|
+
"id": "security:mfa_enforcement_policy",
|
|
3947
|
+
"class": "MfaEnforcementPolicy",
|
|
3948
|
+
"table": "mfa_enforcement_policies",
|
|
3949
|
+
"editable": true,
|
|
3950
|
+
"customFields": false
|
|
3951
|
+
},
|
|
3952
|
+
{
|
|
3953
|
+
"id": "security:sudo_challenge_config",
|
|
3954
|
+
"class": "SudoChallengeConfig",
|
|
3955
|
+
"table": "sudo_challenge_configs",
|
|
3956
|
+
"editable": true,
|
|
3957
|
+
"customFields": false
|
|
3958
|
+
},
|
|
3959
|
+
{
|
|
3960
|
+
"id": "security:sudo_session",
|
|
3961
|
+
"class": "SudoSession",
|
|
3962
|
+
"table": "sudo_sessions",
|
|
3963
|
+
"editable": false,
|
|
3964
|
+
"customFields": false
|
|
3965
|
+
},
|
|
3966
|
+
{
|
|
3967
|
+
"id": "security:mfa_challenge",
|
|
3968
|
+
"class": "MfaChallenge",
|
|
3969
|
+
"table": "mfa_challenges",
|
|
3970
|
+
"editable": false,
|
|
3971
|
+
"customFields": false
|
|
3972
|
+
}
|
|
3973
|
+
],
|
|
3974
|
+
"events": [
|
|
3975
|
+
{
|
|
3976
|
+
"id": "security.password.changed",
|
|
3977
|
+
"category": "lifecycle",
|
|
3978
|
+
"entity": "password"
|
|
3979
|
+
},
|
|
3980
|
+
{
|
|
3981
|
+
"id": "security.password.notification_requested",
|
|
3982
|
+
"category": "lifecycle",
|
|
3983
|
+
"entity": "password"
|
|
3984
|
+
},
|
|
3985
|
+
{
|
|
3986
|
+
"id": "security.mfa.method.added",
|
|
3987
|
+
"category": "lifecycle",
|
|
3988
|
+
"entity": null
|
|
3989
|
+
},
|
|
3990
|
+
{
|
|
3991
|
+
"id": "security.mfa.method.removed",
|
|
3992
|
+
"category": "lifecycle",
|
|
3993
|
+
"entity": null
|
|
3994
|
+
},
|
|
3995
|
+
{
|
|
3996
|
+
"id": "security.mfa.enrolled",
|
|
3997
|
+
"category": "lifecycle",
|
|
3998
|
+
"entity": null
|
|
3999
|
+
},
|
|
4000
|
+
{
|
|
4001
|
+
"id": "security.mfa.removed",
|
|
4002
|
+
"category": "lifecycle",
|
|
4003
|
+
"entity": null
|
|
4004
|
+
},
|
|
4005
|
+
{
|
|
4006
|
+
"id": "security.mfa.verified",
|
|
4007
|
+
"category": "lifecycle",
|
|
4008
|
+
"entity": null
|
|
4009
|
+
},
|
|
4010
|
+
{
|
|
4011
|
+
"id": "security.mfa.otp.sent",
|
|
4012
|
+
"category": "lifecycle",
|
|
4013
|
+
"entity": null
|
|
4014
|
+
},
|
|
4015
|
+
{
|
|
4016
|
+
"id": "security.mfa.reset",
|
|
4017
|
+
"category": "lifecycle",
|
|
4018
|
+
"entity": null
|
|
4019
|
+
},
|
|
4020
|
+
{
|
|
4021
|
+
"id": "security.recovery.regenerated",
|
|
4022
|
+
"category": "lifecycle",
|
|
4023
|
+
"entity": null
|
|
4024
|
+
},
|
|
4025
|
+
{
|
|
4026
|
+
"id": "security.recovery.used",
|
|
4027
|
+
"category": "lifecycle",
|
|
4028
|
+
"entity": null
|
|
4029
|
+
},
|
|
4030
|
+
{
|
|
4031
|
+
"id": "security.enforcement.created",
|
|
4032
|
+
"category": "lifecycle",
|
|
4033
|
+
"entity": null
|
|
4034
|
+
},
|
|
4035
|
+
{
|
|
4036
|
+
"id": "security.enforcement.updated",
|
|
4037
|
+
"category": "lifecycle",
|
|
4038
|
+
"entity": null
|
|
4039
|
+
},
|
|
4040
|
+
{
|
|
4041
|
+
"id": "security.enforcement.deadline_reminder_requested",
|
|
4042
|
+
"category": "lifecycle",
|
|
4043
|
+
"entity": null
|
|
4044
|
+
},
|
|
4045
|
+
{
|
|
4046
|
+
"id": "security.sudo.challenged",
|
|
4047
|
+
"category": "lifecycle",
|
|
4048
|
+
"entity": null
|
|
4049
|
+
},
|
|
4050
|
+
{
|
|
4051
|
+
"id": "security.sudo.verified",
|
|
4052
|
+
"category": "lifecycle",
|
|
4053
|
+
"entity": null
|
|
4054
|
+
},
|
|
4055
|
+
{
|
|
4056
|
+
"id": "security.sudo.failed",
|
|
4057
|
+
"category": "lifecycle",
|
|
4058
|
+
"entity": null
|
|
4059
|
+
},
|
|
4060
|
+
{
|
|
4061
|
+
"id": "security.sudo.config.created",
|
|
4062
|
+
"category": "lifecycle",
|
|
4063
|
+
"entity": null
|
|
4064
|
+
},
|
|
4065
|
+
{
|
|
4066
|
+
"id": "security.sudo.config.updated",
|
|
4067
|
+
"category": "lifecycle",
|
|
4068
|
+
"entity": null
|
|
4069
|
+
},
|
|
4070
|
+
{
|
|
4071
|
+
"id": "security.sudo.config.deleted",
|
|
4072
|
+
"category": "lifecycle",
|
|
4073
|
+
"entity": null
|
|
4074
|
+
}
|
|
4075
|
+
],
|
|
4076
|
+
"aclFeatures": [
|
|
4077
|
+
"security.profile.view",
|
|
4078
|
+
"security.profile.password",
|
|
4079
|
+
"security.profile.manage",
|
|
4080
|
+
"security.mfa.manage",
|
|
4081
|
+
"security.admin.manage",
|
|
4082
|
+
"security.sudo.view",
|
|
4083
|
+
"security.sudo.manage"
|
|
4084
|
+
],
|
|
4085
|
+
"apiRoutes": [],
|
|
4086
|
+
"diTokens": [
|
|
4087
|
+
"passwordService",
|
|
4088
|
+
"mfaService",
|
|
4089
|
+
"mfaVerificationService",
|
|
4090
|
+
"mfaEnforcementService",
|
|
4091
|
+
"mfaAdminService",
|
|
4092
|
+
"sudoChallengeService"
|
|
4093
|
+
],
|
|
4094
|
+
"searchEntities": [],
|
|
4095
|
+
"hostTokens": {
|
|
4096
|
+
"entityIds": [],
|
|
4097
|
+
"tableIds": [
|
|
4098
|
+
"security.enforcement.list",
|
|
4099
|
+
"security.sudo.list",
|
|
4100
|
+
"security.users.list"
|
|
4101
|
+
]
|
|
4102
|
+
},
|
|
4103
|
+
"notifications": [
|
|
4104
|
+
"security.password.changed",
|
|
4105
|
+
"security.mfa.enrolled",
|
|
4106
|
+
"security.mfa.reset",
|
|
4107
|
+
"security.mfa.enforcement_deadline"
|
|
4108
|
+
],
|
|
4109
|
+
"cli": []
|
|
4110
|
+
},
|
|
4111
|
+
"shipping_carriers": {
|
|
4112
|
+
"title": "Shipping Carriers",
|
|
4113
|
+
"description": "Shipping carrier adapter hub with rates, shipment creation, tracking, and webhooks.",
|
|
4114
|
+
"coreVersion": "0.6.6-develop.6460.1.f94c74174c",
|
|
4115
|
+
"entities": [
|
|
4116
|
+
{
|
|
4117
|
+
"id": "shipping_carriers:carrier_shipment",
|
|
4118
|
+
"class": "CarrierShipment",
|
|
4119
|
+
"table": "carrier_shipments",
|
|
4120
|
+
"editable": true,
|
|
4121
|
+
"customFields": false
|
|
4122
|
+
},
|
|
4123
|
+
{
|
|
4124
|
+
"id": "shipping_carriers:carrier_webhook_processed_event",
|
|
4125
|
+
"class": "CarrierWebhookProcessedEvent",
|
|
4126
|
+
"table": "carrier_webhook_events",
|
|
4127
|
+
"editable": false,
|
|
1494
4128
|
"customFields": false
|
|
1495
4129
|
},
|
|
1496
4130
|
{
|
|
1497
|
-
"id": "
|
|
1498
|
-
"class": "
|
|
1499
|
-
"table": "
|
|
4131
|
+
"id": "shipping_carriers:carrier_shipment_idempotency_key",
|
|
4132
|
+
"class": "CarrierShipmentIdempotencyKey",
|
|
4133
|
+
"table": "carrier_shipment_idempotency_keys",
|
|
1500
4134
|
"editable": false,
|
|
1501
4135
|
"customFields": false
|
|
4136
|
+
}
|
|
4137
|
+
],
|
|
4138
|
+
"events": [
|
|
4139
|
+
{
|
|
4140
|
+
"id": "shipping_carriers.shipment.created",
|
|
4141
|
+
"category": "lifecycle",
|
|
4142
|
+
"entity": "shipment"
|
|
1502
4143
|
},
|
|
1503
4144
|
{
|
|
1504
|
-
"id": "
|
|
1505
|
-
"
|
|
1506
|
-
"
|
|
4145
|
+
"id": "shipping_carriers.shipment.status_changed",
|
|
4146
|
+
"category": "lifecycle",
|
|
4147
|
+
"entity": "shipment"
|
|
4148
|
+
},
|
|
4149
|
+
{
|
|
4150
|
+
"id": "shipping_carriers.shipment.delivered",
|
|
4151
|
+
"category": "lifecycle",
|
|
4152
|
+
"entity": "shipment"
|
|
4153
|
+
},
|
|
4154
|
+
{
|
|
4155
|
+
"id": "shipping_carriers.shipment.returned",
|
|
4156
|
+
"category": "lifecycle",
|
|
4157
|
+
"entity": "shipment"
|
|
4158
|
+
},
|
|
4159
|
+
{
|
|
4160
|
+
"id": "shipping_carriers.shipment.cancelled",
|
|
4161
|
+
"category": "lifecycle",
|
|
4162
|
+
"entity": "shipment"
|
|
4163
|
+
},
|
|
4164
|
+
{
|
|
4165
|
+
"id": "shipping_carriers.webhook.received",
|
|
4166
|
+
"category": "system",
|
|
4167
|
+
"entity": null
|
|
4168
|
+
},
|
|
4169
|
+
{
|
|
4170
|
+
"id": "shipping_carriers.webhook.failed",
|
|
4171
|
+
"category": "system",
|
|
4172
|
+
"entity": null
|
|
4173
|
+
}
|
|
4174
|
+
],
|
|
4175
|
+
"aclFeatures": [
|
|
4176
|
+
"shipping_carriers.view",
|
|
4177
|
+
"shipping_carriers.manage"
|
|
4178
|
+
],
|
|
4179
|
+
"apiRoutes": [],
|
|
4180
|
+
"diTokens": [
|
|
4181
|
+
"shippingCarrierService"
|
|
4182
|
+
],
|
|
4183
|
+
"searchEntities": [],
|
|
4184
|
+
"hostTokens": {
|
|
4185
|
+
"entityIds": [],
|
|
4186
|
+
"tableIds": []
|
|
4187
|
+
},
|
|
4188
|
+
"notifications": [],
|
|
4189
|
+
"cli": []
|
|
4190
|
+
},
|
|
4191
|
+
"sso": {
|
|
4192
|
+
"title": null,
|
|
4193
|
+
"description": null,
|
|
4194
|
+
"coreVersion": "0.6.6-develop.6460.1.f94c74174c",
|
|
4195
|
+
"entities": [
|
|
4196
|
+
{
|
|
4197
|
+
"id": "sso:sso_config",
|
|
4198
|
+
"class": "SsoConfig",
|
|
4199
|
+
"table": "sso_configs",
|
|
1507
4200
|
"editable": true,
|
|
1508
4201
|
"customFields": false
|
|
1509
4202
|
},
|
|
1510
4203
|
{
|
|
1511
|
-
"id": "
|
|
1512
|
-
"class": "
|
|
1513
|
-
"table": "
|
|
1514
|
-
"editable":
|
|
4204
|
+
"id": "sso:sso_identity",
|
|
4205
|
+
"class": "SsoIdentity",
|
|
4206
|
+
"table": "sso_identities",
|
|
4207
|
+
"editable": true,
|
|
1515
4208
|
"customFields": false
|
|
1516
4209
|
},
|
|
1517
4210
|
{
|
|
1518
|
-
"id": "
|
|
1519
|
-
"class": "
|
|
1520
|
-
"table": "
|
|
4211
|
+
"id": "sso:scim_token",
|
|
4212
|
+
"class": "ScimToken",
|
|
4213
|
+
"table": "scim_tokens",
|
|
1521
4214
|
"editable": true,
|
|
1522
4215
|
"customFields": false
|
|
1523
4216
|
},
|
|
1524
4217
|
{
|
|
1525
|
-
"id": "
|
|
1526
|
-
"class": "
|
|
1527
|
-
"table": "
|
|
4218
|
+
"id": "sso:sso_user_deactivation",
|
|
4219
|
+
"class": "SsoUserDeactivation",
|
|
4220
|
+
"table": "sso_user_deactivations",
|
|
1528
4221
|
"editable": false,
|
|
1529
4222
|
"customFields": false
|
|
1530
4223
|
},
|
|
1531
4224
|
{
|
|
1532
|
-
"id": "
|
|
1533
|
-
"class": "
|
|
1534
|
-
"table": "
|
|
4225
|
+
"id": "sso:scim_provisioning_log",
|
|
4226
|
+
"class": "ScimProvisioningLog",
|
|
4227
|
+
"table": "scim_provisioning_log",
|
|
4228
|
+
"editable": false,
|
|
4229
|
+
"customFields": false
|
|
4230
|
+
},
|
|
4231
|
+
{
|
|
4232
|
+
"id": "sso:sso_role_grant",
|
|
4233
|
+
"class": "SsoRoleGrant",
|
|
4234
|
+
"table": "sso_role_grants",
|
|
4235
|
+
"editable": false,
|
|
4236
|
+
"customFields": false
|
|
4237
|
+
}
|
|
4238
|
+
],
|
|
4239
|
+
"events": [
|
|
4240
|
+
{
|
|
4241
|
+
"id": "sso.login.initiated",
|
|
4242
|
+
"category": "lifecycle",
|
|
4243
|
+
"entity": null
|
|
4244
|
+
},
|
|
4245
|
+
{
|
|
4246
|
+
"id": "sso.login.completed",
|
|
4247
|
+
"category": "lifecycle",
|
|
4248
|
+
"entity": null
|
|
4249
|
+
},
|
|
4250
|
+
{
|
|
4251
|
+
"id": "sso.login.failed",
|
|
4252
|
+
"category": "lifecycle",
|
|
4253
|
+
"entity": null
|
|
4254
|
+
},
|
|
4255
|
+
{
|
|
4256
|
+
"id": "sso.identity.linked",
|
|
4257
|
+
"category": "lifecycle",
|
|
4258
|
+
"entity": null
|
|
4259
|
+
},
|
|
4260
|
+
{
|
|
4261
|
+
"id": "sso.identity.created",
|
|
4262
|
+
"category": "lifecycle",
|
|
4263
|
+
"entity": null
|
|
4264
|
+
},
|
|
4265
|
+
{
|
|
4266
|
+
"id": "sso.config.created",
|
|
4267
|
+
"category": "crud",
|
|
4268
|
+
"entity": "sso_config"
|
|
4269
|
+
},
|
|
4270
|
+
{
|
|
4271
|
+
"id": "sso.config.updated",
|
|
4272
|
+
"category": "crud",
|
|
4273
|
+
"entity": "sso_config"
|
|
4274
|
+
},
|
|
4275
|
+
{
|
|
4276
|
+
"id": "sso.config.deleted",
|
|
4277
|
+
"category": "crud",
|
|
4278
|
+
"entity": "sso_config"
|
|
4279
|
+
},
|
|
4280
|
+
{
|
|
4281
|
+
"id": "sso.config.activated",
|
|
4282
|
+
"category": "lifecycle",
|
|
4283
|
+
"entity": "sso_config"
|
|
4284
|
+
},
|
|
4285
|
+
{
|
|
4286
|
+
"id": "sso.config.deactivated",
|
|
4287
|
+
"category": "lifecycle",
|
|
4288
|
+
"entity": "sso_config"
|
|
4289
|
+
},
|
|
4290
|
+
{
|
|
4291
|
+
"id": "sso.domain.added",
|
|
4292
|
+
"category": "lifecycle",
|
|
4293
|
+
"entity": "sso_config"
|
|
4294
|
+
},
|
|
4295
|
+
{
|
|
4296
|
+
"id": "sso.domain.removed",
|
|
4297
|
+
"category": "lifecycle",
|
|
4298
|
+
"entity": "sso_config"
|
|
4299
|
+
}
|
|
4300
|
+
],
|
|
4301
|
+
"aclFeatures": [
|
|
4302
|
+
"sso.config.view",
|
|
4303
|
+
"sso.config.manage",
|
|
4304
|
+
"sso.scim.manage"
|
|
4305
|
+
],
|
|
4306
|
+
"apiRoutes": [],
|
|
4307
|
+
"diTokens": [
|
|
4308
|
+
"ssoService",
|
|
4309
|
+
"accountLinkingService",
|
|
4310
|
+
"ssoConfigService",
|
|
4311
|
+
"hrdService",
|
|
4312
|
+
"scimTokenService",
|
|
4313
|
+
"scimService"
|
|
4314
|
+
],
|
|
4315
|
+
"searchEntities": [],
|
|
4316
|
+
"hostTokens": {
|
|
4317
|
+
"entityIds": [],
|
|
4318
|
+
"tableIds": []
|
|
4319
|
+
},
|
|
4320
|
+
"notifications": [],
|
|
4321
|
+
"cli": []
|
|
4322
|
+
},
|
|
4323
|
+
"staff": {
|
|
4324
|
+
"title": "Employees",
|
|
4325
|
+
"description": "Teams, roles, and employee rosters.",
|
|
4326
|
+
"coreVersion": "0.6.6-develop.6460.1.f94c74174c",
|
|
4327
|
+
"entities": [
|
|
4328
|
+
{
|
|
4329
|
+
"id": "staff:staff_team",
|
|
4330
|
+
"class": "StaffTeam",
|
|
4331
|
+
"table": "staff_teams",
|
|
1535
4332
|
"editable": true,
|
|
1536
4333
|
"customFields": false
|
|
1537
4334
|
},
|
|
1538
4335
|
{
|
|
1539
|
-
"id": "
|
|
1540
|
-
"class": "
|
|
1541
|
-
"table": "
|
|
4336
|
+
"id": "staff:staff_team_role",
|
|
4337
|
+
"class": "StaffTeamRole",
|
|
4338
|
+
"table": "staff_team_roles",
|
|
1542
4339
|
"editable": true,
|
|
1543
4340
|
"customFields": false
|
|
1544
4341
|
},
|
|
1545
4342
|
{
|
|
1546
|
-
"id": "
|
|
1547
|
-
"class": "
|
|
1548
|
-
"table": "
|
|
4343
|
+
"id": "staff:staff_team_member",
|
|
4344
|
+
"class": "StaffTeamMember",
|
|
4345
|
+
"table": "staff_team_members",
|
|
1549
4346
|
"editable": true,
|
|
1550
4347
|
"customFields": false
|
|
1551
4348
|
},
|
|
1552
4349
|
{
|
|
1553
|
-
"id": "
|
|
1554
|
-
"class": "
|
|
1555
|
-
"table": "
|
|
4350
|
+
"id": "staff:staff_leave_request",
|
|
4351
|
+
"class": "StaffLeaveRequest",
|
|
4352
|
+
"table": "staff_leave_requests",
|
|
4353
|
+
"editable": true,
|
|
4354
|
+
"customFields": false
|
|
4355
|
+
},
|
|
4356
|
+
{
|
|
4357
|
+
"id": "staff:staff_team_member_comment",
|
|
4358
|
+
"class": "StaffTeamMemberComment",
|
|
4359
|
+
"table": "staff_team_member_comments",
|
|
4360
|
+
"editable": true,
|
|
4361
|
+
"customFields": false
|
|
4362
|
+
},
|
|
4363
|
+
{
|
|
4364
|
+
"id": "staff:staff_team_member_activity",
|
|
4365
|
+
"class": "StaffTeamMemberActivity",
|
|
4366
|
+
"table": "staff_team_member_activities",
|
|
4367
|
+
"editable": true,
|
|
4368
|
+
"customFields": false
|
|
4369
|
+
},
|
|
4370
|
+
{
|
|
4371
|
+
"id": "staff:staff_team_member_job_history",
|
|
4372
|
+
"class": "StaffTeamMemberJobHistory",
|
|
4373
|
+
"table": "staff_team_member_job_histories",
|
|
4374
|
+
"editable": true,
|
|
4375
|
+
"customFields": false
|
|
4376
|
+
},
|
|
4377
|
+
{
|
|
4378
|
+
"id": "staff:staff_team_member_address",
|
|
4379
|
+
"class": "StaffTeamMemberAddress",
|
|
4380
|
+
"table": "staff_team_member_addresses",
|
|
4381
|
+
"editable": true,
|
|
4382
|
+
"customFields": false
|
|
4383
|
+
},
|
|
4384
|
+
{
|
|
4385
|
+
"id": "staff:staff_time_entry",
|
|
4386
|
+
"class": "StaffTimeEntry",
|
|
4387
|
+
"table": "staff_time_entries",
|
|
4388
|
+
"editable": true,
|
|
4389
|
+
"customFields": false
|
|
4390
|
+
},
|
|
4391
|
+
{
|
|
4392
|
+
"id": "staff:staff_time_entry_segment",
|
|
4393
|
+
"class": "StaffTimeEntrySegment",
|
|
4394
|
+
"table": "staff_time_entry_segments",
|
|
4395
|
+
"editable": true,
|
|
4396
|
+
"customFields": false
|
|
4397
|
+
},
|
|
4398
|
+
{
|
|
4399
|
+
"id": "staff:staff_time_project",
|
|
4400
|
+
"class": "StaffTimeProject",
|
|
4401
|
+
"table": "staff_time_projects",
|
|
4402
|
+
"editable": true,
|
|
4403
|
+
"customFields": false
|
|
4404
|
+
},
|
|
4405
|
+
{
|
|
4406
|
+
"id": "staff:staff_time_project_member",
|
|
4407
|
+
"class": "StaffTimeProjectMember",
|
|
4408
|
+
"table": "staff_time_project_members",
|
|
1556
4409
|
"editable": true,
|
|
1557
4410
|
"customFields": false
|
|
1558
4411
|
}
|
|
1559
4412
|
],
|
|
1560
4413
|
"events": [
|
|
1561
4414
|
{
|
|
1562
|
-
"id": "
|
|
4415
|
+
"id": "staff.team.created",
|
|
1563
4416
|
"category": "crud",
|
|
1564
|
-
"entity": "
|
|
4417
|
+
"entity": "team"
|
|
1565
4418
|
},
|
|
1566
4419
|
{
|
|
1567
|
-
"id": "
|
|
4420
|
+
"id": "staff.team.updated",
|
|
1568
4421
|
"category": "crud",
|
|
1569
|
-
"entity": "
|
|
4422
|
+
"entity": "team"
|
|
1570
4423
|
},
|
|
1571
4424
|
{
|
|
1572
|
-
"id": "
|
|
4425
|
+
"id": "staff.team.deleted",
|
|
1573
4426
|
"category": "crud",
|
|
1574
|
-
"entity": "
|
|
4427
|
+
"entity": "team"
|
|
1575
4428
|
},
|
|
1576
4429
|
{
|
|
1577
|
-
"id": "
|
|
4430
|
+
"id": "staff.team_role.created",
|
|
1578
4431
|
"category": "crud",
|
|
1579
|
-
"entity": "
|
|
4432
|
+
"entity": "team_role"
|
|
1580
4433
|
},
|
|
1581
4434
|
{
|
|
1582
|
-
"id": "
|
|
4435
|
+
"id": "staff.team_role.updated",
|
|
1583
4436
|
"category": "crud",
|
|
1584
|
-
"entity": "
|
|
4437
|
+
"entity": "team_role"
|
|
1585
4438
|
},
|
|
1586
4439
|
{
|
|
1587
|
-
"id": "
|
|
4440
|
+
"id": "staff.team_role.deleted",
|
|
1588
4441
|
"category": "crud",
|
|
1589
|
-
"entity": "
|
|
4442
|
+
"entity": "team_role"
|
|
1590
4443
|
},
|
|
1591
4444
|
{
|
|
1592
|
-
"id": "
|
|
4445
|
+
"id": "staff.team_member.created",
|
|
1593
4446
|
"category": "crud",
|
|
1594
|
-
"entity": "
|
|
4447
|
+
"entity": "team_member"
|
|
1595
4448
|
},
|
|
1596
4449
|
{
|
|
1597
|
-
"id": "
|
|
4450
|
+
"id": "staff.team_member.updated",
|
|
1598
4451
|
"category": "crud",
|
|
1599
|
-
"entity": "
|
|
4452
|
+
"entity": "team_member"
|
|
1600
4453
|
},
|
|
1601
4454
|
{
|
|
1602
|
-
"id": "
|
|
4455
|
+
"id": "staff.team_member.deleted",
|
|
1603
4456
|
"category": "crud",
|
|
1604
|
-
"entity": "
|
|
4457
|
+
"entity": "team_member"
|
|
1605
4458
|
},
|
|
1606
4459
|
{
|
|
1607
|
-
"id": "
|
|
4460
|
+
"id": "staff.leave_request.created",
|
|
1608
4461
|
"category": "crud",
|
|
1609
|
-
"entity": "
|
|
4462
|
+
"entity": "leave_request"
|
|
1610
4463
|
},
|
|
1611
4464
|
{
|
|
1612
|
-
"id": "
|
|
4465
|
+
"id": "staff.leave_request.updated",
|
|
1613
4466
|
"category": "crud",
|
|
1614
|
-
"entity": "
|
|
4467
|
+
"entity": "leave_request"
|
|
4468
|
+
},
|
|
4469
|
+
{
|
|
4470
|
+
"id": "staff.leave_request.deleted",
|
|
4471
|
+
"category": "crud",
|
|
4472
|
+
"entity": "leave_request"
|
|
4473
|
+
},
|
|
4474
|
+
{
|
|
4475
|
+
"id": "staff.address.created",
|
|
4476
|
+
"category": "crud",
|
|
4477
|
+
"entity": "address"
|
|
4478
|
+
},
|
|
4479
|
+
{
|
|
4480
|
+
"id": "staff.address.updated",
|
|
4481
|
+
"category": "crud",
|
|
4482
|
+
"entity": "address"
|
|
4483
|
+
},
|
|
4484
|
+
{
|
|
4485
|
+
"id": "staff.address.deleted",
|
|
4486
|
+
"category": "crud",
|
|
4487
|
+
"entity": "address"
|
|
4488
|
+
},
|
|
4489
|
+
{
|
|
4490
|
+
"id": "staff.comment.created",
|
|
4491
|
+
"category": "crud",
|
|
4492
|
+
"entity": "comment"
|
|
4493
|
+
},
|
|
4494
|
+
{
|
|
4495
|
+
"id": "staff.comment.updated",
|
|
4496
|
+
"category": "crud",
|
|
4497
|
+
"entity": "comment"
|
|
1615
4498
|
},
|
|
1616
4499
|
{
|
|
1617
|
-
"id": "
|
|
4500
|
+
"id": "staff.comment.deleted",
|
|
1618
4501
|
"category": "crud",
|
|
1619
|
-
"entity": "
|
|
4502
|
+
"entity": "comment"
|
|
1620
4503
|
},
|
|
1621
4504
|
{
|
|
1622
|
-
"id": "
|
|
4505
|
+
"id": "staff.activity.created",
|
|
1623
4506
|
"category": "crud",
|
|
1624
|
-
"entity": "
|
|
4507
|
+
"entity": "activity"
|
|
1625
4508
|
},
|
|
1626
4509
|
{
|
|
1627
|
-
"id": "
|
|
4510
|
+
"id": "staff.activity.updated",
|
|
1628
4511
|
"category": "crud",
|
|
1629
|
-
"entity": "
|
|
4512
|
+
"entity": "activity"
|
|
1630
4513
|
},
|
|
1631
4514
|
{
|
|
1632
|
-
"id": "
|
|
4515
|
+
"id": "staff.activity.deleted",
|
|
1633
4516
|
"category": "crud",
|
|
1634
|
-
"entity": "
|
|
4517
|
+
"entity": "activity"
|
|
1635
4518
|
},
|
|
1636
4519
|
{
|
|
1637
|
-
"id": "
|
|
4520
|
+
"id": "staff.job_history.created",
|
|
1638
4521
|
"category": "crud",
|
|
1639
|
-
"entity": "
|
|
4522
|
+
"entity": "job_history"
|
|
1640
4523
|
},
|
|
1641
4524
|
{
|
|
1642
|
-
"id": "
|
|
4525
|
+
"id": "staff.job_history.updated",
|
|
1643
4526
|
"category": "crud",
|
|
1644
|
-
"entity": "
|
|
4527
|
+
"entity": "job_history"
|
|
1645
4528
|
},
|
|
1646
4529
|
{
|
|
1647
|
-
"id": "
|
|
4530
|
+
"id": "staff.job_history.deleted",
|
|
1648
4531
|
"category": "crud",
|
|
1649
|
-
"entity": "
|
|
4532
|
+
"entity": "job_history"
|
|
1650
4533
|
},
|
|
1651
4534
|
{
|
|
1652
|
-
"id": "
|
|
4535
|
+
"id": "staff.timesheets.time_entry.created",
|
|
1653
4536
|
"category": "crud",
|
|
1654
|
-
"entity": "
|
|
4537
|
+
"entity": "time_entry"
|
|
1655
4538
|
},
|
|
1656
4539
|
{
|
|
1657
|
-
"id": "
|
|
4540
|
+
"id": "staff.timesheets.time_entry.updated",
|
|
1658
4541
|
"category": "crud",
|
|
1659
|
-
"entity": "
|
|
4542
|
+
"entity": "time_entry"
|
|
1660
4543
|
},
|
|
1661
4544
|
{
|
|
1662
|
-
"id": "
|
|
4545
|
+
"id": "staff.timesheets.time_entry.deleted",
|
|
1663
4546
|
"category": "crud",
|
|
1664
|
-
"entity": "
|
|
4547
|
+
"entity": "time_entry"
|
|
1665
4548
|
},
|
|
1666
4549
|
{
|
|
1667
|
-
"id": "
|
|
1668
|
-
"category": "
|
|
1669
|
-
"entity": "
|
|
4550
|
+
"id": "staff.timesheets.time_entry.timer_started",
|
|
4551
|
+
"category": "lifecycle",
|
|
4552
|
+
"entity": "time_entry"
|
|
1670
4553
|
},
|
|
1671
4554
|
{
|
|
1672
|
-
"id": "
|
|
1673
|
-
"category": "
|
|
1674
|
-
"entity": "
|
|
4555
|
+
"id": "staff.timesheets.time_entry.timer_stopped",
|
|
4556
|
+
"category": "lifecycle",
|
|
4557
|
+
"entity": "time_entry"
|
|
1675
4558
|
},
|
|
1676
4559
|
{
|
|
1677
|
-
"id": "
|
|
4560
|
+
"id": "staff.timesheets.time_project.created",
|
|
1678
4561
|
"category": "crud",
|
|
1679
|
-
"entity": "
|
|
4562
|
+
"entity": "time_project"
|
|
1680
4563
|
},
|
|
1681
4564
|
{
|
|
1682
|
-
"id": "
|
|
4565
|
+
"id": "staff.timesheets.time_project.updated",
|
|
1683
4566
|
"category": "crud",
|
|
1684
|
-
"entity": "
|
|
4567
|
+
"entity": "time_project"
|
|
1685
4568
|
},
|
|
1686
4569
|
{
|
|
1687
|
-
"id": "
|
|
4570
|
+
"id": "staff.timesheets.time_project.deleted",
|
|
1688
4571
|
"category": "crud",
|
|
1689
|
-
"entity": "
|
|
4572
|
+
"entity": "time_project"
|
|
1690
4573
|
},
|
|
1691
4574
|
{
|
|
1692
|
-
"id": "
|
|
4575
|
+
"id": "staff.timesheets.time_project_member.created",
|
|
1693
4576
|
"category": "crud",
|
|
1694
|
-
"entity": "
|
|
4577
|
+
"entity": "time_project_member"
|
|
1695
4578
|
},
|
|
1696
4579
|
{
|
|
1697
|
-
"id": "
|
|
4580
|
+
"id": "staff.timesheets.time_project_member.updated",
|
|
1698
4581
|
"category": "crud",
|
|
1699
|
-
"entity": "
|
|
4582
|
+
"entity": "time_project_member"
|
|
1700
4583
|
},
|
|
1701
4584
|
{
|
|
1702
|
-
"id": "
|
|
4585
|
+
"id": "staff.timesheets.time_project_member.deleted",
|
|
1703
4586
|
"category": "crud",
|
|
1704
|
-
"entity": "
|
|
4587
|
+
"entity": "time_project_member"
|
|
4588
|
+
}
|
|
4589
|
+
],
|
|
4590
|
+
"aclFeatures": [
|
|
4591
|
+
"staff.view",
|
|
4592
|
+
"staff.manage_team",
|
|
4593
|
+
"staff.leave_requests.send",
|
|
4594
|
+
"staff.leave_requests.manage",
|
|
4595
|
+
"staff.my_availability.view",
|
|
4596
|
+
"staff.my_availability.manage",
|
|
4597
|
+
"staff.my_availability.unavailability",
|
|
4598
|
+
"staff.my_leave_requests.view",
|
|
4599
|
+
"staff.my_leave_requests.send",
|
|
4600
|
+
"staff.timesheets.view",
|
|
4601
|
+
"staff.timesheets.manage_own",
|
|
4602
|
+
"staff.timesheets.manage_all",
|
|
4603
|
+
"staff.timesheets.projects.view",
|
|
4604
|
+
"staff.timesheets.projects.manage",
|
|
4605
|
+
"staff.timesheets.approve",
|
|
4606
|
+
"staff.timesheets.lock"
|
|
4607
|
+
],
|
|
4608
|
+
"apiRoutes": [],
|
|
4609
|
+
"diTokens": [],
|
|
4610
|
+
"searchEntities": [
|
|
4611
|
+
"staff:staff_team",
|
|
4612
|
+
"staff:staff_team_member",
|
|
4613
|
+
"staff:staff_team_role",
|
|
4614
|
+
"staff:staff_time_project"
|
|
4615
|
+
],
|
|
4616
|
+
"hostTokens": {
|
|
4617
|
+
"entityIds": [],
|
|
4618
|
+
"tableIds": []
|
|
4619
|
+
},
|
|
4620
|
+
"notifications": [
|
|
4621
|
+
"staff.leave_request.pending",
|
|
4622
|
+
"staff.leave_request.approved",
|
|
4623
|
+
"staff.leave_request.rejected"
|
|
4624
|
+
],
|
|
4625
|
+
"cli": [
|
|
4626
|
+
"seed-activity-types",
|
|
4627
|
+
"seed-address-types",
|
|
4628
|
+
"seed-examples",
|
|
4629
|
+
"seed-timesheets-widgets"
|
|
4630
|
+
]
|
|
4631
|
+
},
|
|
4632
|
+
"storage_s3": {
|
|
4633
|
+
"title": "S3-Compatible Storage",
|
|
4634
|
+
"description": "Store attachments and files in AWS S3, DigitalOcean Spaces, MinIO, or any S3-compatible object storage.",
|
|
4635
|
+
"coreVersion": "0.6.6-develop.6460.1.f94c74174c",
|
|
4636
|
+
"entities": [],
|
|
4637
|
+
"events": [],
|
|
4638
|
+
"aclFeatures": [
|
|
4639
|
+
"storage_providers.manage"
|
|
4640
|
+
],
|
|
4641
|
+
"apiRoutes": [],
|
|
4642
|
+
"diTokens": [
|
|
4643
|
+
"storageService"
|
|
4644
|
+
],
|
|
4645
|
+
"searchEntities": [],
|
|
4646
|
+
"hostTokens": {
|
|
4647
|
+
"entityIds": [],
|
|
4648
|
+
"tableIds": []
|
|
4649
|
+
},
|
|
4650
|
+
"notifications": [],
|
|
4651
|
+
"cli": [
|
|
4652
|
+
"configure-from-env",
|
|
4653
|
+
"help"
|
|
4654
|
+
]
|
|
4655
|
+
},
|
|
4656
|
+
"sync_akeneo": {
|
|
4657
|
+
"title": "Akeneo Product Sync",
|
|
4658
|
+
"description": "Import Akeneo PIM categories, product attributes, and products into the Open Mercato catalog.",
|
|
4659
|
+
"coreVersion": "0.6.6-develop.6460.1.f94c74174c",
|
|
4660
|
+
"entities": [],
|
|
4661
|
+
"events": [],
|
|
4662
|
+
"aclFeatures": [],
|
|
4663
|
+
"apiRoutes": [],
|
|
4664
|
+
"diTokens": [],
|
|
4665
|
+
"searchEntities": [],
|
|
4666
|
+
"hostTokens": {
|
|
4667
|
+
"entityIds": [],
|
|
4668
|
+
"tableIds": []
|
|
4669
|
+
},
|
|
4670
|
+
"notifications": [],
|
|
4671
|
+
"cli": [
|
|
4672
|
+
"configure-from-env",
|
|
4673
|
+
"help"
|
|
4674
|
+
]
|
|
4675
|
+
},
|
|
4676
|
+
"sync_excel": {
|
|
4677
|
+
"title": "Excel / CSV Import",
|
|
4678
|
+
"description": "File-upload-based CSV import foundation built on top of the data sync hub.",
|
|
4679
|
+
"coreVersion": "0.6.6-develop.6460.1.f94c74174c",
|
|
4680
|
+
"entities": [
|
|
4681
|
+
{
|
|
4682
|
+
"id": "sync_excel:sync_excel_upload",
|
|
4683
|
+
"class": "SyncExcelUpload",
|
|
4684
|
+
"table": "sync_excel_uploads",
|
|
4685
|
+
"editable": true,
|
|
4686
|
+
"customFields": false
|
|
4687
|
+
}
|
|
4688
|
+
],
|
|
4689
|
+
"events": [],
|
|
4690
|
+
"aclFeatures": [
|
|
4691
|
+
"sync_excel.view",
|
|
4692
|
+
"sync_excel.run"
|
|
4693
|
+
],
|
|
4694
|
+
"apiRoutes": [],
|
|
4695
|
+
"diTokens": [],
|
|
4696
|
+
"searchEntities": [],
|
|
4697
|
+
"hostTokens": {
|
|
4698
|
+
"entityIds": [],
|
|
4699
|
+
"tableIds": []
|
|
4700
|
+
},
|
|
4701
|
+
"notifications": [],
|
|
4702
|
+
"cli": []
|
|
4703
|
+
},
|
|
4704
|
+
"system_status_overlays": {
|
|
4705
|
+
"title": "System Status Overlays",
|
|
4706
|
+
"description": "Enterprise overlays and injected widgets for system status pages.",
|
|
4707
|
+
"coreVersion": "0.6.6-develop.6460.1.f94c74174c",
|
|
4708
|
+
"entities": [],
|
|
4709
|
+
"events": [],
|
|
4710
|
+
"aclFeatures": [],
|
|
4711
|
+
"apiRoutes": [],
|
|
4712
|
+
"diTokens": [],
|
|
4713
|
+
"searchEntities": [],
|
|
4714
|
+
"hostTokens": {
|
|
4715
|
+
"entityIds": [],
|
|
4716
|
+
"tableIds": []
|
|
4717
|
+
},
|
|
4718
|
+
"notifications": [],
|
|
4719
|
+
"cli": []
|
|
4720
|
+
},
|
|
4721
|
+
"translations": {
|
|
4722
|
+
"title": "Entity Translations",
|
|
4723
|
+
"description": "System-wide entity translation storage and locale overlay for CRUD responses.",
|
|
4724
|
+
"coreVersion": "0.6.6-develop.6460.1.f94c74174c",
|
|
4725
|
+
"entities": [
|
|
4726
|
+
{
|
|
4727
|
+
"id": "translations:entity_translation",
|
|
4728
|
+
"class": "EntityTranslation",
|
|
4729
|
+
"table": "entity_translations",
|
|
4730
|
+
"editable": true,
|
|
4731
|
+
"customFields": false
|
|
4732
|
+
}
|
|
4733
|
+
],
|
|
4734
|
+
"events": [
|
|
4735
|
+
{
|
|
4736
|
+
"id": "translations.translation.updated",
|
|
4737
|
+
"category": "crud",
|
|
4738
|
+
"entity": "translation"
|
|
1705
4739
|
},
|
|
1706
4740
|
{
|
|
1707
|
-
"id": "
|
|
4741
|
+
"id": "translations.translation.deleted",
|
|
1708
4742
|
"category": "crud",
|
|
1709
|
-
"entity": "
|
|
4743
|
+
"entity": "translation"
|
|
4744
|
+
}
|
|
4745
|
+
],
|
|
4746
|
+
"aclFeatures": [
|
|
4747
|
+
"translations.view",
|
|
4748
|
+
"translations.manage",
|
|
4749
|
+
"translations.manage_locales"
|
|
4750
|
+
],
|
|
4751
|
+
"apiRoutes": [],
|
|
4752
|
+
"diTokens": [],
|
|
4753
|
+
"searchEntities": [],
|
|
4754
|
+
"hostTokens": {
|
|
4755
|
+
"entityIds": [],
|
|
4756
|
+
"tableIds": []
|
|
4757
|
+
},
|
|
4758
|
+
"notifications": [],
|
|
4759
|
+
"cli": []
|
|
4760
|
+
},
|
|
4761
|
+
"webhooks": {
|
|
4762
|
+
"title": "Webhooks",
|
|
4763
|
+
"description": "Standard Webhooks compliant outbound webhook delivery for platform events.",
|
|
4764
|
+
"coreVersion": "0.6.6-develop.6460.1.f94c74174c",
|
|
4765
|
+
"entities": [
|
|
4766
|
+
{
|
|
4767
|
+
"id": "webhooks:webhook_entity",
|
|
4768
|
+
"class": "WebhookEntity",
|
|
4769
|
+
"table": "webhooks",
|
|
4770
|
+
"editable": true,
|
|
4771
|
+
"customFields": false
|
|
1710
4772
|
},
|
|
1711
4773
|
{
|
|
1712
|
-
"id": "
|
|
1713
|
-
"
|
|
1714
|
-
"
|
|
4774
|
+
"id": "webhooks:webhook_delivery_entity",
|
|
4775
|
+
"class": "WebhookDeliveryEntity",
|
|
4776
|
+
"table": "webhook_deliveries",
|
|
4777
|
+
"editable": true,
|
|
4778
|
+
"customFields": false
|
|
1715
4779
|
},
|
|
1716
4780
|
{
|
|
1717
|
-
"id": "
|
|
1718
|
-
"
|
|
1719
|
-
"
|
|
4781
|
+
"id": "webhooks:webhook_inbound_receipt_entity",
|
|
4782
|
+
"class": "WebhookInboundReceiptEntity",
|
|
4783
|
+
"table": "webhook_inbound_receipts",
|
|
4784
|
+
"editable": false,
|
|
4785
|
+
"customFields": false
|
|
4786
|
+
}
|
|
4787
|
+
],
|
|
4788
|
+
"events": [
|
|
4789
|
+
{
|
|
4790
|
+
"id": "webhooks.webhook.created",
|
|
4791
|
+
"category": null,
|
|
4792
|
+
"entity": "webhook"
|
|
1720
4793
|
},
|
|
1721
4794
|
{
|
|
1722
|
-
"id": "
|
|
1723
|
-
"category":
|
|
1724
|
-
"entity":
|
|
4795
|
+
"id": "webhooks.webhook.updated",
|
|
4796
|
+
"category": null,
|
|
4797
|
+
"entity": "webhook"
|
|
1725
4798
|
},
|
|
1726
4799
|
{
|
|
1727
|
-
"id": "
|
|
1728
|
-
"category":
|
|
1729
|
-
"entity":
|
|
4800
|
+
"id": "webhooks.webhook.deleted",
|
|
4801
|
+
"category": null,
|
|
4802
|
+
"entity": "webhook"
|
|
1730
4803
|
},
|
|
1731
4804
|
{
|
|
1732
|
-
"id": "
|
|
1733
|
-
"category":
|
|
1734
|
-
"entity":
|
|
4805
|
+
"id": "webhooks.delivery.enqueued",
|
|
4806
|
+
"category": null,
|
|
4807
|
+
"entity": "delivery"
|
|
1735
4808
|
},
|
|
1736
4809
|
{
|
|
1737
|
-
"id": "
|
|
1738
|
-
"category":
|
|
1739
|
-
"entity":
|
|
4810
|
+
"id": "webhooks.delivery.succeeded",
|
|
4811
|
+
"category": null,
|
|
4812
|
+
"entity": "delivery"
|
|
1740
4813
|
},
|
|
1741
4814
|
{
|
|
1742
|
-
"id": "
|
|
1743
|
-
"category":
|
|
1744
|
-
"entity":
|
|
4815
|
+
"id": "webhooks.delivery.failed",
|
|
4816
|
+
"category": null,
|
|
4817
|
+
"entity": "delivery"
|
|
1745
4818
|
},
|
|
1746
4819
|
{
|
|
1747
|
-
"id": "
|
|
1748
|
-
"category":
|
|
1749
|
-
"entity":
|
|
4820
|
+
"id": "webhooks.delivery.exhausted",
|
|
4821
|
+
"category": null,
|
|
4822
|
+
"entity": "delivery"
|
|
1750
4823
|
},
|
|
1751
4824
|
{
|
|
1752
|
-
"id": "
|
|
1753
|
-
"category":
|
|
1754
|
-
"entity":
|
|
4825
|
+
"id": "webhooks.webhook.disabled",
|
|
4826
|
+
"category": null,
|
|
4827
|
+
"entity": "webhook"
|
|
1755
4828
|
},
|
|
1756
4829
|
{
|
|
1757
|
-
"id": "
|
|
1758
|
-
"category":
|
|
1759
|
-
"entity":
|
|
4830
|
+
"id": "webhooks.inbound.received",
|
|
4831
|
+
"category": null,
|
|
4832
|
+
"entity": "inbound"
|
|
1760
4833
|
},
|
|
1761
4834
|
{
|
|
1762
|
-
"id": "
|
|
1763
|
-
"category":
|
|
1764
|
-
"entity":
|
|
4835
|
+
"id": "webhooks.secret.rotated",
|
|
4836
|
+
"category": null,
|
|
4837
|
+
"entity": "webhook"
|
|
1765
4838
|
}
|
|
1766
4839
|
],
|
|
1767
4840
|
"aclFeatures": [
|
|
1768
|
-
"
|
|
1769
|
-
"
|
|
1770
|
-
"
|
|
1771
|
-
"
|
|
1772
|
-
"sales.widgets.new-quotes",
|
|
1773
|
-
"sales.quotes.view",
|
|
1774
|
-
"sales.quotes.manage",
|
|
1775
|
-
"sales.documents.number.edit",
|
|
1776
|
-
"sales.shipments.manage",
|
|
1777
|
-
"sales.payments.manage",
|
|
1778
|
-
"sales.returns.view",
|
|
1779
|
-
"sales.returns.create",
|
|
1780
|
-
"sales.returns.manage",
|
|
1781
|
-
"sales.invoices.manage",
|
|
1782
|
-
"sales.credit_memos.manage",
|
|
1783
|
-
"sales.channels.view",
|
|
1784
|
-
"sales.channels.manage",
|
|
1785
|
-
"sales.settings.view",
|
|
1786
|
-
"sales.settings.manage"
|
|
4841
|
+
"webhooks.view",
|
|
4842
|
+
"webhooks.manage",
|
|
4843
|
+
"webhooks.secrets",
|
|
4844
|
+
"webhooks.test"
|
|
1787
4845
|
],
|
|
1788
4846
|
"apiRoutes": [],
|
|
1789
|
-
"diTokens": [
|
|
1790
|
-
|
|
1791
|
-
"taxCalculationService",
|
|
1792
|
-
"salesDocumentNumberGenerator",
|
|
1793
|
-
"salesOrderService"
|
|
1794
|
-
],
|
|
1795
|
-
"searchEntities": [
|
|
1796
|
-
"sales:sales_channel",
|
|
1797
|
-
"sales:sales_order",
|
|
1798
|
-
"sales:sales_quote",
|
|
1799
|
-
"sales:sales_order_line",
|
|
1800
|
-
"sales:sales_quote_line",
|
|
1801
|
-
"sales:sales_order_adjustment",
|
|
1802
|
-
"sales:sales_quote_adjustment",
|
|
1803
|
-
"sales:sales_shipment",
|
|
1804
|
-
"sales:sales_shipment_item",
|
|
1805
|
-
"sales:sales_invoice",
|
|
1806
|
-
"sales:sales_invoice_line",
|
|
1807
|
-
"sales:sales_credit_memo",
|
|
1808
|
-
"sales:sales_credit_memo_line",
|
|
1809
|
-
"sales:sales_payment",
|
|
1810
|
-
"sales:sales_payment_allocation",
|
|
1811
|
-
"sales:sales_note",
|
|
1812
|
-
"sales:sales_document_address",
|
|
1813
|
-
"sales:sales_shipping_method",
|
|
1814
|
-
"sales:sales_delivery_window",
|
|
1815
|
-
"sales:sales_payment_method",
|
|
1816
|
-
"sales:sales_tax_rate",
|
|
1817
|
-
"sales:sales_document_tag"
|
|
1818
|
-
],
|
|
4847
|
+
"diTokens": [],
|
|
4848
|
+
"searchEntities": [],
|
|
1819
4849
|
"hostTokens": {
|
|
1820
|
-
"entityIds": [
|
|
1821
|
-
|
|
4850
|
+
"entityIds": [
|
|
4851
|
+
"webhooks:webhook_entity",
|
|
4852
|
+
"webhooks:webhook_delivery_entity",
|
|
4853
|
+
"webhooks:webhook_inbound_receipt_entity"
|
|
4854
|
+
],
|
|
4855
|
+
"tableIds": [
|
|
4856
|
+
"webhooks.deliveries",
|
|
4857
|
+
"webhooks.list"
|
|
4858
|
+
]
|
|
1822
4859
|
},
|
|
1823
4860
|
"notifications": [
|
|
1824
|
-
"
|
|
1825
|
-
"sales.quote.created",
|
|
1826
|
-
"sales.payment.received",
|
|
1827
|
-
"sales.quote.expiring"
|
|
4861
|
+
"webhooks.delivery.failed"
|
|
1828
4862
|
],
|
|
1829
|
-
"cli": [
|
|
1830
|
-
"seed-tax-rates",
|
|
1831
|
-
"seed-statuses",
|
|
1832
|
-
"seed-adjustment-kinds",
|
|
1833
|
-
"backfill-deal-loss-reasons",
|
|
1834
|
-
"seed-shipping-methods",
|
|
1835
|
-
"seed-payment-methods",
|
|
1836
|
-
"seed-examples"
|
|
1837
|
-
]
|
|
4863
|
+
"cli": []
|
|
1838
4864
|
},
|
|
1839
4865
|
"workflows": {
|
|
1840
4866
|
"title": "Workflow Engine",
|
|
1841
4867
|
"description": "Orchestrate business processes with state machines, transitions, and activities",
|
|
1842
|
-
"coreVersion": "0.6.6-develop.
|
|
4868
|
+
"coreVersion": "0.6.6-develop.6460.1.f94c74174c",
|
|
1843
4869
|
"entities": [
|
|
1844
4870
|
{
|
|
1845
4871
|
"id": "workflows:workflow_definition",
|