@open-mercato/cli 0.6.6-develop.6383.1.27fcc83455 → 0.6.6-develop.6385.1.9a81faa5f0

This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
Files changed (35) hide show
  1. package/.turbo/turbo-build.log +11 -0
  2. package/build.mjs +70 -2
  3. package/dist/agentic/guides/core.auth.md +3 -0
  4. package/dist/agentic/guides/core.catalog.md +3 -0
  5. package/dist/agentic/guides/core.currencies.md +3 -0
  6. package/dist/agentic/guides/core.customer_accounts.md +3 -0
  7. package/dist/agentic/guides/core.customers.md +3 -0
  8. package/dist/agentic/guides/core.data_sync.md +3 -0
  9. package/dist/agentic/guides/core.integrations.md +3 -0
  10. package/dist/agentic/guides/core.sales.md +3 -0
  11. package/dist/agentic/guides/core.workflows.md +3 -0
  12. package/dist/agentic/guides/module-facts.json +2073 -0
  13. package/dist/agentic/guides/modules/auth.md +64 -0
  14. package/dist/agentic/guides/modules/catalog.md +70 -0
  15. package/dist/agentic/guides/modules/currencies.md +50 -0
  16. package/dist/agentic/guides/modules/customer_accounts.md +76 -0
  17. package/dist/agentic/guides/modules/customers.md +115 -0
  18. package/dist/agentic/guides/modules/data_sync.md +49 -0
  19. package/dist/agentic/guides/modules/integrations.md +49 -0
  20. package/dist/agentic/guides/modules/sales.md +109 -0
  21. package/dist/agentic/guides/modules/workflows.md +73 -0
  22. package/dist/lib/__integration__/TC-INT-008.spec.js +29 -1
  23. package/dist/lib/__integration__/TC-INT-008.spec.js.map +2 -2
  24. package/dist/lib/agentic-setup.js +87 -0
  25. package/dist/lib/agentic-setup.js.map +2 -2
  26. package/dist/lib/worker-job-handler.js +13 -1
  27. package/dist/lib/worker-job-handler.js.map +2 -2
  28. package/dist/mercato.js +4 -1
  29. package/dist/mercato.js.map +2 -2
  30. package/package.json +5 -5
  31. package/src/lib/__integration__/TC-INT-008.spec.ts +41 -1
  32. package/src/lib/__tests__/worker-job-handler.test.ts +28 -0
  33. package/src/lib/agentic-setup.ts +129 -0
  34. package/src/lib/worker-job-handler.ts +13 -1
  35. package/src/mercato.ts +4 -1
@@ -0,0 +1,2073 @@
1
+ {
2
+ "auth": {
3
+ "title": "Authentication & Accounts",
4
+ "description": "User accounts, sessions, roles and password resets.",
5
+ "coreVersion": "0.6.6-develop.6385.1.9a81faa5f0",
6
+ "entities": [
7
+ {
8
+ "id": "auth:user",
9
+ "class": "User",
10
+ "table": "users",
11
+ "editable": true,
12
+ "customFields": false
13
+ },
14
+ {
15
+ "id": "auth:role",
16
+ "class": "Role",
17
+ "table": "roles",
18
+ "editable": true,
19
+ "customFields": false
20
+ },
21
+ {
22
+ "id": "auth:user_sidebar_preference",
23
+ "class": "UserSidebarPreference",
24
+ "table": "user_sidebar_preferences",
25
+ "editable": true,
26
+ "customFields": false
27
+ },
28
+ {
29
+ "id": "auth:role_sidebar_preference",
30
+ "class": "RoleSidebarPreference",
31
+ "table": "role_sidebar_preferences",
32
+ "editable": true,
33
+ "customFields": false
34
+ },
35
+ {
36
+ "id": "auth:sidebar_variant",
37
+ "class": "SidebarVariant",
38
+ "table": "sidebar_variants",
39
+ "editable": true,
40
+ "customFields": false
41
+ },
42
+ {
43
+ "id": "auth:user_role",
44
+ "class": "UserRole",
45
+ "table": "user_roles",
46
+ "editable": false,
47
+ "customFields": false
48
+ },
49
+ {
50
+ "id": "auth:session",
51
+ "class": "Session",
52
+ "table": "sessions",
53
+ "editable": false,
54
+ "customFields": false
55
+ },
56
+ {
57
+ "id": "auth:password_reset",
58
+ "class": "PasswordReset",
59
+ "table": "password_resets",
60
+ "editable": false,
61
+ "customFields": false
62
+ },
63
+ {
64
+ "id": "auth:role_acl",
65
+ "class": "RoleAcl",
66
+ "table": "role_acls",
67
+ "editable": true,
68
+ "customFields": false
69
+ },
70
+ {
71
+ "id": "auth:user_acl",
72
+ "class": "UserAcl",
73
+ "table": "user_acls",
74
+ "editable": true,
75
+ "customFields": false
76
+ },
77
+ {
78
+ "id": "auth:user_consent",
79
+ "class": "UserConsent",
80
+ "table": "user_consents",
81
+ "editable": true,
82
+ "customFields": false
83
+ }
84
+ ],
85
+ "events": [
86
+ {
87
+ "id": "auth.user.created",
88
+ "category": "crud",
89
+ "entity": "user"
90
+ },
91
+ {
92
+ "id": "auth.user.updated",
93
+ "category": "crud",
94
+ "entity": "user"
95
+ },
96
+ {
97
+ "id": "auth.user.deleted",
98
+ "category": "crud",
99
+ "entity": "user"
100
+ },
101
+ {
102
+ "id": "auth.role.created",
103
+ "category": "crud",
104
+ "entity": "role"
105
+ },
106
+ {
107
+ "id": "auth.role.updated",
108
+ "category": "crud",
109
+ "entity": "role"
110
+ },
111
+ {
112
+ "id": "auth.role.deleted",
113
+ "category": "crud",
114
+ "entity": "role"
115
+ },
116
+ {
117
+ "id": "auth.login.success",
118
+ "category": "lifecycle",
119
+ "entity": null
120
+ },
121
+ {
122
+ "id": "auth.login.failed",
123
+ "category": "lifecycle",
124
+ "entity": null
125
+ },
126
+ {
127
+ "id": "auth.logout",
128
+ "category": "lifecycle",
129
+ "entity": null
130
+ },
131
+ {
132
+ "id": "auth.password.changed",
133
+ "category": "lifecycle",
134
+ "entity": null
135
+ },
136
+ {
137
+ "id": "auth.password.reset.requested",
138
+ "category": "lifecycle",
139
+ "entity": null
140
+ },
141
+ {
142
+ "id": "auth.password.reset.completed",
143
+ "category": "lifecycle",
144
+ "entity": null
145
+ }
146
+ ],
147
+ "aclFeatures": [
148
+ "auth.users.list",
149
+ "auth.users.create",
150
+ "auth.users.edit",
151
+ "auth.users.delete",
152
+ "auth.roles.list",
153
+ "auth.roles.manage",
154
+ "auth.acl.manage",
155
+ "auth.sidebar.manage"
156
+ ],
157
+ "apiRoutes": [],
158
+ "diTokens": [
159
+ "authService",
160
+ "rbacService"
161
+ ],
162
+ "searchEntities": [],
163
+ "hostTokens": {
164
+ "entityIds": [],
165
+ "tableIds": [
166
+ "auth.roles.list",
167
+ "auth.users.list"
168
+ ]
169
+ },
170
+ "notifications": [
171
+ "auth.password_reset.requested",
172
+ "auth.password_reset.completed",
173
+ "auth.account.locked",
174
+ "auth.login.new_device",
175
+ "auth.role.assigned",
176
+ "auth.role.revoked"
177
+ ],
178
+ "cli": [
179
+ "add-user",
180
+ "seed-roles",
181
+ "sync-role-acls",
182
+ "rotate-encryption-key",
183
+ "add-org",
184
+ "setup",
185
+ "list-orgs",
186
+ "list-tenants",
187
+ "list-users",
188
+ "set-password"
189
+ ]
190
+ },
191
+ "catalog": {
192
+ "title": "Product Catalog",
193
+ "description": "Configurable catalog for products, variants, and pricing used by the sales module.",
194
+ "coreVersion": "0.6.6-develop.6385.1.9a81faa5f0",
195
+ "entities": [
196
+ {
197
+ "id": "catalog:catalog_option_schema_template",
198
+ "class": "CatalogOptionSchemaTemplate",
199
+ "table": "catalog_product_option_schemas",
200
+ "editable": true,
201
+ "customFields": false
202
+ },
203
+ {
204
+ "id": "catalog:catalog_product",
205
+ "class": "CatalogProduct",
206
+ "table": "catalog_products",
207
+ "editable": true,
208
+ "customFields": false
209
+ },
210
+ {
211
+ "id": "catalog:catalog_product_unit_conversion",
212
+ "class": "CatalogProductUnitConversion",
213
+ "table": "catalog_product_unit_conversions",
214
+ "editable": true,
215
+ "customFields": false
216
+ },
217
+ {
218
+ "id": "catalog:catalog_product_category",
219
+ "class": "CatalogProductCategory",
220
+ "table": "catalog_product_categories",
221
+ "editable": true,
222
+ "customFields": false
223
+ },
224
+ {
225
+ "id": "catalog:catalog_product_category_assignment",
226
+ "class": "CatalogProductCategoryAssignment",
227
+ "table": "catalog_product_category_assignments",
228
+ "editable": true,
229
+ "customFields": false
230
+ },
231
+ {
232
+ "id": "catalog:catalog_product_tag",
233
+ "class": "CatalogProductTag",
234
+ "table": "catalog_product_tags",
235
+ "editable": true,
236
+ "customFields": false
237
+ },
238
+ {
239
+ "id": "catalog:catalog_product_tag_assignment",
240
+ "class": "CatalogProductTagAssignment",
241
+ "table": "catalog_product_tag_assignments",
242
+ "editable": true,
243
+ "customFields": false
244
+ },
245
+ {
246
+ "id": "catalog:catalog_offer",
247
+ "class": "CatalogOffer",
248
+ "table": "catalog_product_offers",
249
+ "editable": true,
250
+ "customFields": false
251
+ },
252
+ {
253
+ "id": "catalog:catalog_product_variant",
254
+ "class": "CatalogProductVariant",
255
+ "table": "catalog_product_variants",
256
+ "editable": true,
257
+ "customFields": false
258
+ },
259
+ {
260
+ "id": "catalog:catalog_product_variant_relation",
261
+ "class": "CatalogProductVariantRelation",
262
+ "table": "catalog_product_variant_relations",
263
+ "editable": true,
264
+ "customFields": false
265
+ },
266
+ {
267
+ "id": "catalog:catalog_price_kind",
268
+ "class": "CatalogPriceKind",
269
+ "table": "catalog_price_kinds",
270
+ "editable": true,
271
+ "customFields": false
272
+ },
273
+ {
274
+ "id": "catalog:catalog_product_price",
275
+ "class": "CatalogProductPrice",
276
+ "table": "catalog_product_variant_prices",
277
+ "editable": true,
278
+ "customFields": false
279
+ }
280
+ ],
281
+ "events": [
282
+ {
283
+ "id": "catalog.product.created",
284
+ "category": "crud",
285
+ "entity": "product"
286
+ },
287
+ {
288
+ "id": "catalog.product.updated",
289
+ "category": "crud",
290
+ "entity": "product"
291
+ },
292
+ {
293
+ "id": "catalog.product.deleted",
294
+ "category": "crud",
295
+ "entity": "product"
296
+ },
297
+ {
298
+ "id": "catalog.product_unit_conversion.created",
299
+ "category": "crud",
300
+ "entity": "product_unit_conversion"
301
+ },
302
+ {
303
+ "id": "catalog.product_unit_conversion.updated",
304
+ "category": "crud",
305
+ "entity": "product_unit_conversion"
306
+ },
307
+ {
308
+ "id": "catalog.product_unit_conversion.deleted",
309
+ "category": "crud",
310
+ "entity": "product_unit_conversion"
311
+ },
312
+ {
313
+ "id": "catalog.category.created",
314
+ "category": "crud",
315
+ "entity": "category"
316
+ },
317
+ {
318
+ "id": "catalog.category.updated",
319
+ "category": "crud",
320
+ "entity": "category"
321
+ },
322
+ {
323
+ "id": "catalog.category.deleted",
324
+ "category": "crud",
325
+ "entity": "category"
326
+ },
327
+ {
328
+ "id": "catalog.variant.created",
329
+ "category": "crud",
330
+ "entity": "variant"
331
+ },
332
+ {
333
+ "id": "catalog.variant.updated",
334
+ "category": "crud",
335
+ "entity": "variant"
336
+ },
337
+ {
338
+ "id": "catalog.variant.deleted",
339
+ "category": "crud",
340
+ "entity": "variant"
341
+ },
342
+ {
343
+ "id": "catalog.price.created",
344
+ "category": "crud",
345
+ "entity": "price"
346
+ },
347
+ {
348
+ "id": "catalog.price.updated",
349
+ "category": "crud",
350
+ "entity": "price"
351
+ },
352
+ {
353
+ "id": "catalog.price.deleted",
354
+ "category": "crud",
355
+ "entity": "price"
356
+ },
357
+ {
358
+ "id": "catalog.pricing.resolve.before",
359
+ "category": "lifecycle",
360
+ "entity": null
361
+ },
362
+ {
363
+ "id": "catalog.pricing.resolve.after",
364
+ "category": "lifecycle",
365
+ "entity": null
366
+ }
367
+ ],
368
+ "aclFeatures": [
369
+ "catalog.products.view",
370
+ "catalog.products.manage",
371
+ "catalog.categories.view",
372
+ "catalog.categories.manage",
373
+ "catalog.variants.manage",
374
+ "catalog.pricing.manage",
375
+ "catalog.settings.manage"
376
+ ],
377
+ "apiRoutes": [],
378
+ "diTokens": [
379
+ "catalogPricingService"
380
+ ],
381
+ "searchEntities": [
382
+ "catalog:catalog_product",
383
+ "catalog:catalog_product_variant",
384
+ "catalog:catalog_product_category",
385
+ "catalog:catalog_offer",
386
+ "catalog:catalog_product_tag",
387
+ "catalog:catalog_price_kind",
388
+ "catalog:catalog_product_unit_conversion",
389
+ "catalog:catalog_option_schema_template"
390
+ ],
391
+ "hostTokens": {
392
+ "entityIds": [],
393
+ "tableIds": []
394
+ },
395
+ "notifications": [
396
+ "catalog.product.low_stock"
397
+ ],
398
+ "cli": [
399
+ "seed-units",
400
+ "seed-price-kinds",
401
+ "seed-examples",
402
+ "seed-examples-bundle"
403
+ ]
404
+ },
405
+ "currencies": {
406
+ "title": "Currencies",
407
+ "description": "Currencies and Exchange rate management",
408
+ "coreVersion": "0.6.6-develop.6385.1.9a81faa5f0",
409
+ "entities": [
410
+ {
411
+ "id": "currencies:currency",
412
+ "class": "Currency",
413
+ "table": "currencies",
414
+ "editable": true,
415
+ "customFields": false
416
+ },
417
+ {
418
+ "id": "currencies:exchange_rate",
419
+ "class": "ExchangeRate",
420
+ "table": "exchange_rates",
421
+ "editable": true,
422
+ "customFields": false
423
+ },
424
+ {
425
+ "id": "currencies:currency_fetch_config",
426
+ "class": "CurrencyFetchConfig",
427
+ "table": "currency_fetch_configs",
428
+ "editable": true,
429
+ "customFields": false
430
+ }
431
+ ],
432
+ "events": [
433
+ {
434
+ "id": "currencies.currency.created",
435
+ "category": "crud",
436
+ "entity": "currency"
437
+ },
438
+ {
439
+ "id": "currencies.currency.updated",
440
+ "category": "crud",
441
+ "entity": "currency"
442
+ },
443
+ {
444
+ "id": "currencies.currency.deleted",
445
+ "category": "crud",
446
+ "entity": "currency"
447
+ },
448
+ {
449
+ "id": "currencies.exchange_rate.created",
450
+ "category": "crud",
451
+ "entity": "exchange_rate"
452
+ },
453
+ {
454
+ "id": "currencies.exchange_rate.updated",
455
+ "category": "crud",
456
+ "entity": "exchange_rate"
457
+ },
458
+ {
459
+ "id": "currencies.exchange_rate.deleted",
460
+ "category": "crud",
461
+ "entity": "exchange_rate"
462
+ }
463
+ ],
464
+ "aclFeatures": [
465
+ "currencies.view",
466
+ "currencies.manage",
467
+ "currencies.rates.view",
468
+ "currencies.rates.manage",
469
+ "currencies.fetch.view",
470
+ "currencies.fetch.manage"
471
+ ],
472
+ "apiRoutes": [],
473
+ "diTokens": [],
474
+ "searchEntities": [],
475
+ "hostTokens": {
476
+ "entityIds": [],
477
+ "tableIds": [
478
+ "currencies.list",
479
+ "exchange-rates.list"
480
+ ]
481
+ },
482
+ "notifications": [],
483
+ "cli": [
484
+ "seed",
485
+ "fetch-rates",
486
+ "list-providers"
487
+ ]
488
+ },
489
+ "customer_accounts": {
490
+ "title": "Customer Identity & Portal Authentication",
491
+ "description": "Customer-facing authentication with two-tier identity model and full RBAC.",
492
+ "coreVersion": "0.6.6-develop.6385.1.9a81faa5f0",
493
+ "entities": [
494
+ {
495
+ "id": "customer_accounts:customer_user",
496
+ "class": "CustomerUser",
497
+ "table": "customer_users",
498
+ "editable": true,
499
+ "customFields": true
500
+ },
501
+ {
502
+ "id": "customer_accounts:customer_role",
503
+ "class": "CustomerRole",
504
+ "table": "customer_roles",
505
+ "editable": true,
506
+ "customFields": true
507
+ },
508
+ {
509
+ "id": "customer_accounts:customer_role_acl",
510
+ "class": "CustomerRoleAcl",
511
+ "table": "customer_role_acls",
512
+ "editable": true,
513
+ "customFields": false
514
+ },
515
+ {
516
+ "id": "customer_accounts:customer_user_role",
517
+ "class": "CustomerUserRole",
518
+ "table": "customer_user_roles",
519
+ "editable": false,
520
+ "customFields": false
521
+ },
522
+ {
523
+ "id": "customer_accounts:customer_user_acl",
524
+ "class": "CustomerUserAcl",
525
+ "table": "customer_user_acls",
526
+ "editable": true,
527
+ "customFields": false
528
+ },
529
+ {
530
+ "id": "customer_accounts:customer_user_session",
531
+ "class": "CustomerUserSession",
532
+ "table": "customer_user_sessions",
533
+ "editable": false,
534
+ "customFields": false
535
+ },
536
+ {
537
+ "id": "customer_accounts:customer_user_email_verification",
538
+ "class": "CustomerUserEmailVerification",
539
+ "table": "customer_user_email_verifications",
540
+ "editable": false,
541
+ "customFields": false
542
+ },
543
+ {
544
+ "id": "customer_accounts:customer_user_password_reset",
545
+ "class": "CustomerUserPasswordReset",
546
+ "table": "customer_user_password_resets",
547
+ "editable": false,
548
+ "customFields": false
549
+ },
550
+ {
551
+ "id": "customer_accounts:customer_user_invitation",
552
+ "class": "CustomerUserInvitation",
553
+ "table": "customer_user_invitations",
554
+ "editable": false,
555
+ "customFields": false
556
+ },
557
+ {
558
+ "id": "customer_accounts:domain_mapping",
559
+ "class": "DomainMapping",
560
+ "table": "domain_mappings",
561
+ "editable": true,
562
+ "customFields": false
563
+ }
564
+ ],
565
+ "events": [
566
+ {
567
+ "id": "customer_accounts.user.created",
568
+ "category": "crud",
569
+ "entity": "user"
570
+ },
571
+ {
572
+ "id": "customer_accounts.user.updated",
573
+ "category": "crud",
574
+ "entity": "user"
575
+ },
576
+ {
577
+ "id": "customer_accounts.user.deleted",
578
+ "category": "crud",
579
+ "entity": "user"
580
+ },
581
+ {
582
+ "id": "customer_accounts.user.locked",
583
+ "category": "lifecycle",
584
+ "entity": "user"
585
+ },
586
+ {
587
+ "id": "customer_accounts.user.unlocked",
588
+ "category": "lifecycle",
589
+ "entity": "user"
590
+ },
591
+ {
592
+ "id": "customer_accounts.login.success",
593
+ "category": "lifecycle",
594
+ "entity": null
595
+ },
596
+ {
597
+ "id": "customer_accounts.login.failed",
598
+ "category": "lifecycle",
599
+ "entity": null
600
+ },
601
+ {
602
+ "id": "customer_accounts.magic_link.requested",
603
+ "category": "lifecycle",
604
+ "entity": null
605
+ },
606
+ {
607
+ "id": "customer_accounts.email.verified",
608
+ "category": "lifecycle",
609
+ "entity": null
610
+ },
611
+ {
612
+ "id": "customer_accounts.password.reset_requested",
613
+ "category": "lifecycle",
614
+ "entity": null
615
+ },
616
+ {
617
+ "id": "customer_accounts.password.reset",
618
+ "category": "lifecycle",
619
+ "entity": null
620
+ },
621
+ {
622
+ "id": "customer_accounts.password.changed",
623
+ "category": "lifecycle",
624
+ "entity": null
625
+ },
626
+ {
627
+ "id": "customer_accounts.role.created",
628
+ "category": "crud",
629
+ "entity": "role"
630
+ },
631
+ {
632
+ "id": "customer_accounts.role.updated",
633
+ "category": "crud",
634
+ "entity": "role"
635
+ },
636
+ {
637
+ "id": "customer_accounts.role.deleted",
638
+ "category": "crud",
639
+ "entity": "role"
640
+ },
641
+ {
642
+ "id": "customer_accounts.user.invited",
643
+ "category": "lifecycle",
644
+ "entity": "user"
645
+ },
646
+ {
647
+ "id": "customer_accounts.invitation.accepted",
648
+ "category": "lifecycle",
649
+ "entity": null
650
+ },
651
+ {
652
+ "id": "customer_accounts.password_reset.requested",
653
+ "category": "lifecycle",
654
+ "entity": null
655
+ },
656
+ {
657
+ "id": "customer_accounts.domain_mapping.created",
658
+ "category": "crud",
659
+ "entity": "domain_mapping"
660
+ },
661
+ {
662
+ "id": "customer_accounts.domain_mapping.verified",
663
+ "category": "lifecycle",
664
+ "entity": "domain_mapping"
665
+ },
666
+ {
667
+ "id": "customer_accounts.domain_mapping.activated",
668
+ "category": "lifecycle",
669
+ "entity": "domain_mapping"
670
+ },
671
+ {
672
+ "id": "customer_accounts.domain_mapping.dns_failed",
673
+ "category": "lifecycle",
674
+ "entity": "domain_mapping"
675
+ },
676
+ {
677
+ "id": "customer_accounts.domain_mapping.tls_failed",
678
+ "category": "lifecycle",
679
+ "entity": "domain_mapping"
680
+ },
681
+ {
682
+ "id": "customer_accounts.domain_mapping.deleted",
683
+ "category": "crud",
684
+ "entity": "domain_mapping"
685
+ },
686
+ {
687
+ "id": "customer_accounts.domain_mapping.replaced",
688
+ "category": "lifecycle",
689
+ "entity": "domain_mapping"
690
+ }
691
+ ],
692
+ "aclFeatures": [
693
+ "customer_accounts.view",
694
+ "customer_accounts.manage",
695
+ "customer_accounts.roles.manage",
696
+ "customer_accounts.invite",
697
+ "customer_accounts.domain.manage"
698
+ ],
699
+ "apiRoutes": [],
700
+ "diTokens": [
701
+ "customerUserService",
702
+ "customerSessionService",
703
+ "customerTokenService",
704
+ "customerRbacService",
705
+ "customerInvitationService",
706
+ "domainMappingService"
707
+ ],
708
+ "searchEntities": [
709
+ "customer_accounts:customer_user",
710
+ "customer_accounts:customer_role"
711
+ ],
712
+ "hostTokens": {
713
+ "entityIds": [],
714
+ "tableIds": [
715
+ "customer_accounts.admin.roles",
716
+ "customer_accounts.admin.users"
717
+ ]
718
+ },
719
+ "notifications": [
720
+ "customer_accounts.user.signup",
721
+ "customer_accounts.user.locked",
722
+ "customer_accounts.domain_mapping.verified",
723
+ "customer_accounts.domain_mapping.activated",
724
+ "customer_accounts.domain_mapping.dns_failed",
725
+ "customer_accounts.domain_mapping.tls_failed"
726
+ ],
727
+ "cli": []
728
+ },
729
+ "customers": {
730
+ "title": "Customer Relationship Management",
731
+ "description": "Core CRM capabilities for people, companies, deals, and activities.",
732
+ "coreVersion": "0.6.6-develop.6385.1.9a81faa5f0",
733
+ "entities": [
734
+ {
735
+ "id": "customers:customer_entity",
736
+ "class": "CustomerEntity",
737
+ "table": "customer_entities",
738
+ "editable": true,
739
+ "customFields": false
740
+ },
741
+ {
742
+ "id": "customers:customer_person_profile",
743
+ "class": "CustomerPersonProfile",
744
+ "table": "customer_people",
745
+ "editable": true,
746
+ "customFields": true
747
+ },
748
+ {
749
+ "id": "customers:customer_person_company_link",
750
+ "class": "CustomerPersonCompanyLink",
751
+ "table": "customer_person_company_links",
752
+ "editable": true,
753
+ "customFields": false
754
+ },
755
+ {
756
+ "id": "customers:customer_company_profile",
757
+ "class": "CustomerCompanyProfile",
758
+ "table": "customer_companies",
759
+ "editable": true,
760
+ "customFields": true
761
+ },
762
+ {
763
+ "id": "customers:customer_deal",
764
+ "class": "CustomerDeal",
765
+ "table": "customer_deals",
766
+ "editable": true,
767
+ "customFields": true
768
+ },
769
+ {
770
+ "id": "customers:customer_deal_stage_transition",
771
+ "class": "CustomerDealStageTransition",
772
+ "table": "customer_deal_stage_transitions",
773
+ "editable": true,
774
+ "customFields": false
775
+ },
776
+ {
777
+ "id": "customers:customer_deal_person_link",
778
+ "class": "CustomerDealPersonLink",
779
+ "table": "customer_deal_people",
780
+ "editable": false,
781
+ "customFields": false
782
+ },
783
+ {
784
+ "id": "customers:customer_deal_company_link",
785
+ "class": "CustomerDealCompanyLink",
786
+ "table": "customer_deal_companies",
787
+ "editable": false,
788
+ "customFields": false
789
+ },
790
+ {
791
+ "id": "customers:customer_activity",
792
+ "class": "CustomerActivity",
793
+ "table": "customer_activities",
794
+ "editable": true,
795
+ "customFields": true
796
+ },
797
+ {
798
+ "id": "customers:customer_interaction",
799
+ "class": "CustomerInteraction",
800
+ "table": "customer_interactions",
801
+ "editable": true,
802
+ "customFields": true
803
+ },
804
+ {
805
+ "id": "customers:customer_comment",
806
+ "class": "CustomerComment",
807
+ "table": "customer_comments",
808
+ "editable": true,
809
+ "customFields": false
810
+ },
811
+ {
812
+ "id": "customers:customer_address",
813
+ "class": "CustomerAddress",
814
+ "table": "customer_addresses",
815
+ "editable": true,
816
+ "customFields": false
817
+ },
818
+ {
819
+ "id": "customers:customer_settings",
820
+ "class": "CustomerSettings",
821
+ "table": "customer_settings",
822
+ "editable": true,
823
+ "customFields": false
824
+ },
825
+ {
826
+ "id": "customers:customer_tag",
827
+ "class": "CustomerTag",
828
+ "table": "customer_tags",
829
+ "editable": true,
830
+ "customFields": false
831
+ },
832
+ {
833
+ "id": "customers:customer_tag_assignment",
834
+ "class": "CustomerTagAssignment",
835
+ "table": "customer_tag_assignments",
836
+ "editable": false,
837
+ "customFields": false
838
+ },
839
+ {
840
+ "id": "customers:customer_dictionary_entry",
841
+ "class": "CustomerDictionaryEntry",
842
+ "table": "customer_dictionary_entries",
843
+ "editable": true,
844
+ "customFields": false
845
+ },
846
+ {
847
+ "id": "customers:customer_pipeline",
848
+ "class": "CustomerPipeline",
849
+ "table": "customer_pipelines",
850
+ "editable": true,
851
+ "customFields": false
852
+ },
853
+ {
854
+ "id": "customers:customer_pipeline_stage",
855
+ "class": "CustomerPipelineStage",
856
+ "table": "customer_pipeline_stages",
857
+ "editable": true,
858
+ "customFields": false
859
+ },
860
+ {
861
+ "id": "customers:customer_todo_link",
862
+ "class": "CustomerTodoLink",
863
+ "table": "customer_todo_links",
864
+ "editable": false,
865
+ "customFields": false
866
+ },
867
+ {
868
+ "id": "customers:customer_entity_role",
869
+ "class": "CustomerEntityRole",
870
+ "table": "customer_entity_roles",
871
+ "editable": true,
872
+ "customFields": false
873
+ },
874
+ {
875
+ "id": "customers:customer_dictionary_kind_setting",
876
+ "class": "CustomerDictionaryKindSetting",
877
+ "table": "customer_dictionary_kind_settings",
878
+ "editable": true,
879
+ "customFields": false
880
+ },
881
+ {
882
+ "id": "customers:customer_label",
883
+ "class": "CustomerLabel",
884
+ "table": "customer_labels",
885
+ "editable": true,
886
+ "customFields": false
887
+ },
888
+ {
889
+ "id": "customers:customer_label_assignment",
890
+ "class": "CustomerLabelAssignment",
891
+ "table": "customer_label_assignments",
892
+ "editable": false,
893
+ "customFields": false
894
+ },
895
+ {
896
+ "id": "customers:customer_company_billing",
897
+ "class": "CustomerCompanyBilling",
898
+ "table": "customer_company_billing",
899
+ "editable": true,
900
+ "customFields": false
901
+ },
902
+ {
903
+ "id": "customers:customer_person_company_role",
904
+ "class": "CustomerPersonCompanyRole",
905
+ "table": "customer_person_company_roles",
906
+ "editable": false,
907
+ "customFields": false
908
+ }
909
+ ],
910
+ "events": [
911
+ {
912
+ "id": "customers.person.created",
913
+ "category": "crud",
914
+ "entity": "person"
915
+ },
916
+ {
917
+ "id": "customers.person.updated",
918
+ "category": "crud",
919
+ "entity": "person"
920
+ },
921
+ {
922
+ "id": "customers.person.deleted",
923
+ "category": "crud",
924
+ "entity": "person"
925
+ },
926
+ {
927
+ "id": "customers.company.created",
928
+ "category": "crud",
929
+ "entity": "company"
930
+ },
931
+ {
932
+ "id": "customers.company.updated",
933
+ "category": "crud",
934
+ "entity": "company"
935
+ },
936
+ {
937
+ "id": "customers.company.deleted",
938
+ "category": "crud",
939
+ "entity": "company"
940
+ },
941
+ {
942
+ "id": "customers.deal.created",
943
+ "category": "crud",
944
+ "entity": "deal"
945
+ },
946
+ {
947
+ "id": "customers.deal.updated",
948
+ "category": "crud",
949
+ "entity": "deal"
950
+ },
951
+ {
952
+ "id": "customers.deal.deleted",
953
+ "category": "crud",
954
+ "entity": "deal"
955
+ },
956
+ {
957
+ "id": "customers.deal.won",
958
+ "category": "lifecycle",
959
+ "entity": "deal"
960
+ },
961
+ {
962
+ "id": "customers.deal.lost",
963
+ "category": "lifecycle",
964
+ "entity": "deal"
965
+ },
966
+ {
967
+ "id": "customers.comment.created",
968
+ "category": "crud",
969
+ "entity": "comment"
970
+ },
971
+ {
972
+ "id": "customers.comment.updated",
973
+ "category": "crud",
974
+ "entity": "comment"
975
+ },
976
+ {
977
+ "id": "customers.comment.deleted",
978
+ "category": "crud",
979
+ "entity": "comment"
980
+ },
981
+ {
982
+ "id": "customers.address.created",
983
+ "category": "crud",
984
+ "entity": "address"
985
+ },
986
+ {
987
+ "id": "customers.address.updated",
988
+ "category": "crud",
989
+ "entity": "address"
990
+ },
991
+ {
992
+ "id": "customers.address.deleted",
993
+ "category": "crud",
994
+ "entity": "address"
995
+ },
996
+ {
997
+ "id": "customers.activity.created",
998
+ "category": "crud",
999
+ "entity": "activity"
1000
+ },
1001
+ {
1002
+ "id": "customers.activity.updated",
1003
+ "category": "crud",
1004
+ "entity": "activity"
1005
+ },
1006
+ {
1007
+ "id": "customers.activity.deleted",
1008
+ "category": "crud",
1009
+ "entity": "activity"
1010
+ },
1011
+ {
1012
+ "id": "customers.tag.created",
1013
+ "category": "crud",
1014
+ "entity": "tag"
1015
+ },
1016
+ {
1017
+ "id": "customers.tag.updated",
1018
+ "category": "crud",
1019
+ "entity": "tag"
1020
+ },
1021
+ {
1022
+ "id": "customers.tag.deleted",
1023
+ "category": "crud",
1024
+ "entity": "tag"
1025
+ },
1026
+ {
1027
+ "id": "customers.tag.assigned",
1028
+ "category": "crud",
1029
+ "entity": "tag"
1030
+ },
1031
+ {
1032
+ "id": "customers.tag.removed",
1033
+ "category": "crud",
1034
+ "entity": "tag"
1035
+ },
1036
+ {
1037
+ "id": "customers.todo.created",
1038
+ "category": "crud",
1039
+ "entity": "todo"
1040
+ },
1041
+ {
1042
+ "id": "customers.todo.updated",
1043
+ "category": "crud",
1044
+ "entity": "todo"
1045
+ },
1046
+ {
1047
+ "id": "customers.todo.deleted",
1048
+ "category": "crud",
1049
+ "entity": "todo"
1050
+ },
1051
+ {
1052
+ "id": "customers.interaction.created",
1053
+ "category": "crud",
1054
+ "entity": "interaction"
1055
+ },
1056
+ {
1057
+ "id": "customers.interaction.updated",
1058
+ "category": "crud",
1059
+ "entity": "interaction"
1060
+ },
1061
+ {
1062
+ "id": "customers.interaction.completed",
1063
+ "category": "lifecycle",
1064
+ "entity": "interaction"
1065
+ },
1066
+ {
1067
+ "id": "customers.interaction.canceled",
1068
+ "category": "lifecycle",
1069
+ "entity": "interaction"
1070
+ },
1071
+ {
1072
+ "id": "customers.interaction.reverted",
1073
+ "category": "lifecycle",
1074
+ "entity": "interaction"
1075
+ },
1076
+ {
1077
+ "id": "customers.interaction.deleted",
1078
+ "category": "crud",
1079
+ "entity": "interaction"
1080
+ },
1081
+ {
1082
+ "id": "customers.next_interaction.updated",
1083
+ "category": "lifecycle",
1084
+ "entity": "interaction"
1085
+ },
1086
+ {
1087
+ "id": "customers.entity_role.created",
1088
+ "category": "crud",
1089
+ "entity": "entity_role"
1090
+ },
1091
+ {
1092
+ "id": "customers.entity_role.updated",
1093
+ "category": "crud",
1094
+ "entity": "entity_role"
1095
+ },
1096
+ {
1097
+ "id": "customers.entity_role.deleted",
1098
+ "category": "crud",
1099
+ "entity": "entity_role"
1100
+ },
1101
+ {
1102
+ "id": "customers.label.created",
1103
+ "category": "crud",
1104
+ "entity": "label"
1105
+ },
1106
+ {
1107
+ "id": "customers.label.updated",
1108
+ "category": "crud",
1109
+ "entity": "label"
1110
+ },
1111
+ {
1112
+ "id": "customers.label.deleted",
1113
+ "category": "crud",
1114
+ "entity": "label"
1115
+ },
1116
+ {
1117
+ "id": "customers.label_assignment.created",
1118
+ "category": "crud",
1119
+ "entity": "label_assignment"
1120
+ },
1121
+ {
1122
+ "id": "customers.label_assignment.updated",
1123
+ "category": "crud",
1124
+ "entity": "label_assignment"
1125
+ },
1126
+ {
1127
+ "id": "customers.label_assignment.deleted",
1128
+ "category": "crud",
1129
+ "entity": "label_assignment"
1130
+ },
1131
+ {
1132
+ "id": "customers.person_company_link.created",
1133
+ "category": "crud",
1134
+ "entity": "person_company_link"
1135
+ },
1136
+ {
1137
+ "id": "customers.person_company_link.updated",
1138
+ "category": "crud",
1139
+ "entity": "person_company_link"
1140
+ },
1141
+ {
1142
+ "id": "customers.person_company_link.deleted",
1143
+ "category": "crud",
1144
+ "entity": "person_company_link"
1145
+ },
1146
+ {
1147
+ "id": "customers.email.linked",
1148
+ "category": "lifecycle",
1149
+ "entity": "email_link"
1150
+ },
1151
+ {
1152
+ "id": "customers.email.visibility_changed",
1153
+ "category": "lifecycle",
1154
+ "entity": "email_link"
1155
+ }
1156
+ ],
1157
+ "aclFeatures": [
1158
+ "customers.people.view",
1159
+ "customers.people.manage",
1160
+ "customers.companies.view",
1161
+ "customers.companies.manage",
1162
+ "customers.deals.view",
1163
+ "customers.deals.manage",
1164
+ "customers.activities.view",
1165
+ "customers.activities.manage",
1166
+ "customers.settings.manage",
1167
+ "customers.pipelines.view",
1168
+ "customers.pipelines.manage",
1169
+ "customers.widgets.todos",
1170
+ "customers.widgets.next-interactions",
1171
+ "customers.widgets.new-customers",
1172
+ "customers.widgets.new-deals",
1173
+ "customers.interactions.view",
1174
+ "customers.interactions.manage",
1175
+ "customers.roles.view",
1176
+ "customers.roles.manage",
1177
+ "customers.email.compose",
1178
+ "customers.email.view_private"
1179
+ ],
1180
+ "apiRoutes": [],
1181
+ "diTokens": [],
1182
+ "searchEntities": [
1183
+ "customers:customer_person_profile",
1184
+ "customers:customer_company_profile",
1185
+ "customers:customer_comment",
1186
+ "customers:customer_deal",
1187
+ "customers:customer_activity",
1188
+ "customers:customer_todo_link"
1189
+ ],
1190
+ "hostTokens": {
1191
+ "entityIds": [
1192
+ "customers:customer_entity"
1193
+ ],
1194
+ "tableIds": [
1195
+ "customers.companies.list",
1196
+ "customers.deals.list",
1197
+ "customers.people.list"
1198
+ ]
1199
+ },
1200
+ "notifications": [
1201
+ "customers.deal.won",
1202
+ "customers.deal.lost"
1203
+ ],
1204
+ "cli": [
1205
+ "seed-dictionaries",
1206
+ "seed-examples",
1207
+ "seed-stresstest",
1208
+ "interactions:backfill"
1209
+ ]
1210
+ },
1211
+ "data_sync": {
1212
+ "title": "Data Sync",
1213
+ "description": "Streaming data sync hub for import/export integrations.",
1214
+ "coreVersion": "0.6.6-develop.6385.1.9a81faa5f0",
1215
+ "entities": [
1216
+ {
1217
+ "id": "data_sync:sync_run",
1218
+ "class": "SyncRun",
1219
+ "table": "sync_runs",
1220
+ "editable": true,
1221
+ "customFields": false
1222
+ },
1223
+ {
1224
+ "id": "data_sync:sync_cursor",
1225
+ "class": "SyncCursor",
1226
+ "table": "sync_cursors",
1227
+ "editable": true,
1228
+ "customFields": false
1229
+ },
1230
+ {
1231
+ "id": "data_sync:sync_mapping",
1232
+ "class": "SyncMapping",
1233
+ "table": "sync_mappings",
1234
+ "editable": true,
1235
+ "customFields": false
1236
+ },
1237
+ {
1238
+ "id": "data_sync:sync_schedule",
1239
+ "class": "SyncSchedule",
1240
+ "table": "sync_schedules",
1241
+ "editable": true,
1242
+ "customFields": false
1243
+ }
1244
+ ],
1245
+ "events": [
1246
+ {
1247
+ "id": "data_sync.run.started",
1248
+ "category": "lifecycle",
1249
+ "entity": "run"
1250
+ },
1251
+ {
1252
+ "id": "data_sync.run.completed",
1253
+ "category": "lifecycle",
1254
+ "entity": "run"
1255
+ },
1256
+ {
1257
+ "id": "data_sync.run.failed",
1258
+ "category": "lifecycle",
1259
+ "entity": "run"
1260
+ },
1261
+ {
1262
+ "id": "data_sync.run.cancelled",
1263
+ "category": "lifecycle",
1264
+ "entity": "run"
1265
+ }
1266
+ ],
1267
+ "aclFeatures": [
1268
+ "data_sync.view",
1269
+ "data_sync.run",
1270
+ "data_sync.configure"
1271
+ ],
1272
+ "apiRoutes": [],
1273
+ "diTokens": [
1274
+ "externalIdMappingService",
1275
+ "dataSyncRunService",
1276
+ "dataSyncScheduleService",
1277
+ "dataSyncEngine"
1278
+ ],
1279
+ "searchEntities": [],
1280
+ "hostTokens": {
1281
+ "entityIds": [],
1282
+ "tableIds": [
1283
+ "data_sync.runs"
1284
+ ]
1285
+ },
1286
+ "notifications": [],
1287
+ "cli": []
1288
+ },
1289
+ "integrations": {
1290
+ "title": "Integrations",
1291
+ "description": "Core integration framework — external ID mapping, status badges, and integration registry.",
1292
+ "coreVersion": "0.6.6-develop.6385.1.9a81faa5f0",
1293
+ "entities": [
1294
+ {
1295
+ "id": "integrations:sync_external_id_mapping",
1296
+ "class": "SyncExternalIdMapping",
1297
+ "table": "sync_external_id_mappings",
1298
+ "editable": true,
1299
+ "customFields": false
1300
+ },
1301
+ {
1302
+ "id": "integrations:integration_credentials",
1303
+ "class": "IntegrationCredentials",
1304
+ "table": "integration_credentials",
1305
+ "editable": true,
1306
+ "customFields": false
1307
+ },
1308
+ {
1309
+ "id": "integrations:integration_state",
1310
+ "class": "IntegrationState",
1311
+ "table": "integration_states",
1312
+ "editable": true,
1313
+ "customFields": false
1314
+ },
1315
+ {
1316
+ "id": "integrations:integration_log",
1317
+ "class": "IntegrationLog",
1318
+ "table": "integration_logs",
1319
+ "editable": false,
1320
+ "customFields": false
1321
+ }
1322
+ ],
1323
+ "events": [
1324
+ {
1325
+ "id": "integrations.credentials.updated",
1326
+ "category": "custom",
1327
+ "entity": "credentials"
1328
+ },
1329
+ {
1330
+ "id": "integrations.state.updated",
1331
+ "category": "custom",
1332
+ "entity": "state"
1333
+ },
1334
+ {
1335
+ "id": "integrations.version.changed",
1336
+ "category": "custom",
1337
+ "entity": "state"
1338
+ },
1339
+ {
1340
+ "id": "integrations.log.created",
1341
+ "category": "system",
1342
+ "entity": "log"
1343
+ }
1344
+ ],
1345
+ "aclFeatures": [
1346
+ "integrations.view",
1347
+ "integrations.manage",
1348
+ "integrations.credentials.manage"
1349
+ ],
1350
+ "apiRoutes": [],
1351
+ "diTokens": [
1352
+ "integrationCredentialsService",
1353
+ "integrationStateService",
1354
+ "integrationLogService",
1355
+ "integrationHealthService"
1356
+ ],
1357
+ "searchEntities": [],
1358
+ "hostTokens": {
1359
+ "entityIds": [],
1360
+ "tableIds": []
1361
+ },
1362
+ "notifications": [],
1363
+ "cli": []
1364
+ },
1365
+ "sales": {
1366
+ "title": "Sales Management",
1367
+ "description": "Quoting, ordering, fulfillment, and billing capabilities built on modular pricing and tax pipelines.",
1368
+ "coreVersion": "0.6.6-develop.6385.1.9a81faa5f0",
1369
+ "entities": [
1370
+ {
1371
+ "id": "sales:sales_channel",
1372
+ "class": "SalesChannel",
1373
+ "table": "sales_channels",
1374
+ "editable": true,
1375
+ "customFields": false
1376
+ },
1377
+ {
1378
+ "id": "sales:sales_shipping_method",
1379
+ "class": "SalesShippingMethod",
1380
+ "table": "sales_shipping_methods",
1381
+ "editable": true,
1382
+ "customFields": false
1383
+ },
1384
+ {
1385
+ "id": "sales:sales_delivery_window",
1386
+ "class": "SalesDeliveryWindow",
1387
+ "table": "sales_delivery_windows",
1388
+ "editable": true,
1389
+ "customFields": false
1390
+ },
1391
+ {
1392
+ "id": "sales:sales_payment_method",
1393
+ "class": "SalesPaymentMethod",
1394
+ "table": "sales_payment_methods",
1395
+ "editable": true,
1396
+ "customFields": false
1397
+ },
1398
+ {
1399
+ "id": "sales:sales_tax_rate",
1400
+ "class": "SalesTaxRate",
1401
+ "table": "sales_tax_rates",
1402
+ "editable": true,
1403
+ "customFields": false
1404
+ },
1405
+ {
1406
+ "id": "sales:sales_order",
1407
+ "class": "SalesOrder",
1408
+ "table": "sales_orders",
1409
+ "editable": true,
1410
+ "customFields": false
1411
+ },
1412
+ {
1413
+ "id": "sales:sales_order_line",
1414
+ "class": "SalesOrderLine",
1415
+ "table": "sales_order_lines",
1416
+ "editable": true,
1417
+ "customFields": false
1418
+ },
1419
+ {
1420
+ "id": "sales:sales_order_adjustment",
1421
+ "class": "SalesOrderAdjustment",
1422
+ "table": "sales_order_adjustments",
1423
+ "editable": true,
1424
+ "customFields": false
1425
+ },
1426
+ {
1427
+ "id": "sales:sales_settings",
1428
+ "class": "SalesSettings",
1429
+ "table": "sales_settings",
1430
+ "editable": true,
1431
+ "customFields": false
1432
+ },
1433
+ {
1434
+ "id": "sales:sales_document_sequence",
1435
+ "class": "SalesDocumentSequence",
1436
+ "table": "sales_document_sequences",
1437
+ "editable": true,
1438
+ "customFields": false
1439
+ },
1440
+ {
1441
+ "id": "sales:sales_quote",
1442
+ "class": "SalesQuote",
1443
+ "table": "sales_quotes",
1444
+ "editable": true,
1445
+ "customFields": false
1446
+ },
1447
+ {
1448
+ "id": "sales:sales_quote_line",
1449
+ "class": "SalesQuoteLine",
1450
+ "table": "sales_quote_lines",
1451
+ "editable": true,
1452
+ "customFields": false
1453
+ },
1454
+ {
1455
+ "id": "sales:sales_quote_adjustment",
1456
+ "class": "SalesQuoteAdjustment",
1457
+ "table": "sales_quote_adjustments",
1458
+ "editable": true,
1459
+ "customFields": false
1460
+ },
1461
+ {
1462
+ "id": "sales:sales_shipment",
1463
+ "class": "SalesShipment",
1464
+ "table": "sales_shipments",
1465
+ "editable": true,
1466
+ "customFields": false
1467
+ },
1468
+ {
1469
+ "id": "sales:sales_shipment_item",
1470
+ "class": "SalesShipmentItem",
1471
+ "table": "sales_shipment_items",
1472
+ "editable": false,
1473
+ "customFields": false
1474
+ },
1475
+ {
1476
+ "id": "sales:sales_return",
1477
+ "class": "SalesReturn",
1478
+ "table": "sales_returns",
1479
+ "editable": true,
1480
+ "customFields": false
1481
+ },
1482
+ {
1483
+ "id": "sales:sales_return_line",
1484
+ "class": "SalesReturnLine",
1485
+ "table": "sales_return_lines",
1486
+ "editable": true,
1487
+ "customFields": false
1488
+ },
1489
+ {
1490
+ "id": "sales:sales_invoice",
1491
+ "class": "SalesInvoice",
1492
+ "table": "sales_invoices",
1493
+ "editable": true,
1494
+ "customFields": false
1495
+ },
1496
+ {
1497
+ "id": "sales:sales_invoice_line",
1498
+ "class": "SalesInvoiceLine",
1499
+ "table": "sales_invoice_lines",
1500
+ "editable": false,
1501
+ "customFields": false
1502
+ },
1503
+ {
1504
+ "id": "sales:sales_credit_memo",
1505
+ "class": "SalesCreditMemo",
1506
+ "table": "sales_credit_memos",
1507
+ "editable": true,
1508
+ "customFields": false
1509
+ },
1510
+ {
1511
+ "id": "sales:sales_credit_memo_line",
1512
+ "class": "SalesCreditMemoLine",
1513
+ "table": "sales_credit_memo_lines",
1514
+ "editable": false,
1515
+ "customFields": false
1516
+ },
1517
+ {
1518
+ "id": "sales:sales_payment",
1519
+ "class": "SalesPayment",
1520
+ "table": "sales_payments",
1521
+ "editable": true,
1522
+ "customFields": false
1523
+ },
1524
+ {
1525
+ "id": "sales:sales_payment_allocation",
1526
+ "class": "SalesPaymentAllocation",
1527
+ "table": "sales_payment_allocations",
1528
+ "editable": false,
1529
+ "customFields": false
1530
+ },
1531
+ {
1532
+ "id": "sales:sales_note",
1533
+ "class": "SalesNote",
1534
+ "table": "sales_notes",
1535
+ "editable": true,
1536
+ "customFields": false
1537
+ },
1538
+ {
1539
+ "id": "sales:sales_document_address",
1540
+ "class": "SalesDocumentAddress",
1541
+ "table": "sales_document_addresses",
1542
+ "editable": true,
1543
+ "customFields": false
1544
+ },
1545
+ {
1546
+ "id": "sales:sales_document_tag",
1547
+ "class": "SalesDocumentTag",
1548
+ "table": "sales_document_tags",
1549
+ "editable": true,
1550
+ "customFields": false
1551
+ },
1552
+ {
1553
+ "id": "sales:sales_document_tag_assignment",
1554
+ "class": "SalesDocumentTagAssignment",
1555
+ "table": "sales_document_tag_assignments",
1556
+ "editable": true,
1557
+ "customFields": false
1558
+ }
1559
+ ],
1560
+ "events": [
1561
+ {
1562
+ "id": "sales.order.created",
1563
+ "category": "crud",
1564
+ "entity": "order"
1565
+ },
1566
+ {
1567
+ "id": "sales.order.updated",
1568
+ "category": "crud",
1569
+ "entity": "order"
1570
+ },
1571
+ {
1572
+ "id": "sales.order.deleted",
1573
+ "category": "crud",
1574
+ "entity": "order"
1575
+ },
1576
+ {
1577
+ "id": "sales.quote.created",
1578
+ "category": "crud",
1579
+ "entity": "quote"
1580
+ },
1581
+ {
1582
+ "id": "sales.quote.updated",
1583
+ "category": "crud",
1584
+ "entity": "quote"
1585
+ },
1586
+ {
1587
+ "id": "sales.quote.deleted",
1588
+ "category": "crud",
1589
+ "entity": "quote"
1590
+ },
1591
+ {
1592
+ "id": "sales.invoice.created",
1593
+ "category": "crud",
1594
+ "entity": "invoice"
1595
+ },
1596
+ {
1597
+ "id": "sales.invoice.updated",
1598
+ "category": "crud",
1599
+ "entity": "invoice"
1600
+ },
1601
+ {
1602
+ "id": "sales.invoice.deleted",
1603
+ "category": "crud",
1604
+ "entity": "invoice"
1605
+ },
1606
+ {
1607
+ "id": "sales.credit_memo.created",
1608
+ "category": "crud",
1609
+ "entity": "credit_memo"
1610
+ },
1611
+ {
1612
+ "id": "sales.credit_memo.updated",
1613
+ "category": "crud",
1614
+ "entity": "credit_memo"
1615
+ },
1616
+ {
1617
+ "id": "sales.credit_memo.deleted",
1618
+ "category": "crud",
1619
+ "entity": "credit_memo"
1620
+ },
1621
+ {
1622
+ "id": "sales.line.created",
1623
+ "category": "crud",
1624
+ "entity": "line"
1625
+ },
1626
+ {
1627
+ "id": "sales.line.updated",
1628
+ "category": "crud",
1629
+ "entity": "line"
1630
+ },
1631
+ {
1632
+ "id": "sales.line.deleted",
1633
+ "category": "crud",
1634
+ "entity": "line"
1635
+ },
1636
+ {
1637
+ "id": "sales.payment.created",
1638
+ "category": "crud",
1639
+ "entity": "payment"
1640
+ },
1641
+ {
1642
+ "id": "sales.payment.updated",
1643
+ "category": "crud",
1644
+ "entity": "payment"
1645
+ },
1646
+ {
1647
+ "id": "sales.payment.deleted",
1648
+ "category": "crud",
1649
+ "entity": "payment"
1650
+ },
1651
+ {
1652
+ "id": "sales.shipment.created",
1653
+ "category": "crud",
1654
+ "entity": "shipment"
1655
+ },
1656
+ {
1657
+ "id": "sales.shipment.updated",
1658
+ "category": "crud",
1659
+ "entity": "shipment"
1660
+ },
1661
+ {
1662
+ "id": "sales.shipment.deleted",
1663
+ "category": "crud",
1664
+ "entity": "shipment"
1665
+ },
1666
+ {
1667
+ "id": "sales.return.created",
1668
+ "category": "crud",
1669
+ "entity": "return"
1670
+ },
1671
+ {
1672
+ "id": "sales.return.updated",
1673
+ "category": "crud",
1674
+ "entity": "return"
1675
+ },
1676
+ {
1677
+ "id": "sales.return.deleted",
1678
+ "category": "crud",
1679
+ "entity": "return"
1680
+ },
1681
+ {
1682
+ "id": "sales.note.created",
1683
+ "category": "crud",
1684
+ "entity": "note"
1685
+ },
1686
+ {
1687
+ "id": "sales.note.updated",
1688
+ "category": "crud",
1689
+ "entity": "note"
1690
+ },
1691
+ {
1692
+ "id": "sales.note.deleted",
1693
+ "category": "crud",
1694
+ "entity": "note"
1695
+ },
1696
+ {
1697
+ "id": "sales.channel.created",
1698
+ "category": "crud",
1699
+ "entity": "channel"
1700
+ },
1701
+ {
1702
+ "id": "sales.channel.updated",
1703
+ "category": "crud",
1704
+ "entity": "channel"
1705
+ },
1706
+ {
1707
+ "id": "sales.channel.deleted",
1708
+ "category": "crud",
1709
+ "entity": "channel"
1710
+ },
1711
+ {
1712
+ "id": "sales.document.totals.calculated",
1713
+ "category": "lifecycle",
1714
+ "entity": null
1715
+ },
1716
+ {
1717
+ "id": "sales.document.calculate.before",
1718
+ "category": "lifecycle",
1719
+ "entity": null
1720
+ },
1721
+ {
1722
+ "id": "sales.document.calculate.after",
1723
+ "category": "lifecycle",
1724
+ "entity": null
1725
+ },
1726
+ {
1727
+ "id": "sales.line.calculate.before",
1728
+ "category": "lifecycle",
1729
+ "entity": null
1730
+ },
1731
+ {
1732
+ "id": "sales.line.calculate.after",
1733
+ "category": "lifecycle",
1734
+ "entity": null
1735
+ },
1736
+ {
1737
+ "id": "sales.tax.calculate.before",
1738
+ "category": "lifecycle",
1739
+ "entity": null
1740
+ },
1741
+ {
1742
+ "id": "sales.tax.calculate.after",
1743
+ "category": "lifecycle",
1744
+ "entity": null
1745
+ },
1746
+ {
1747
+ "id": "sales.shipping.adjustments.apply.before",
1748
+ "category": "lifecycle",
1749
+ "entity": null
1750
+ },
1751
+ {
1752
+ "id": "sales.shipping.adjustments.apply.after",
1753
+ "category": "lifecycle",
1754
+ "entity": null
1755
+ },
1756
+ {
1757
+ "id": "sales.payment.adjustments.apply.before",
1758
+ "category": "lifecycle",
1759
+ "entity": null
1760
+ },
1761
+ {
1762
+ "id": "sales.payment.adjustments.apply.after",
1763
+ "category": "lifecycle",
1764
+ "entity": null
1765
+ }
1766
+ ],
1767
+ "aclFeatures": [
1768
+ "sales.orders.view",
1769
+ "sales.orders.manage",
1770
+ "sales.orders.approve",
1771
+ "sales.widgets.new-orders",
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"
1787
+ ],
1788
+ "apiRoutes": [],
1789
+ "diTokens": [
1790
+ "salesCalculationService",
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
+ ],
1819
+ "hostTokens": {
1820
+ "entityIds": [],
1821
+ "tableIds": []
1822
+ },
1823
+ "notifications": [
1824
+ "sales.order.created",
1825
+ "sales.quote.created",
1826
+ "sales.payment.received",
1827
+ "sales.quote.expiring"
1828
+ ],
1829
+ "cli": [
1830
+ "seed-tax-rates",
1831
+ "seed-statuses",
1832
+ "seed-adjustment-kinds",
1833
+ "seed-shipping-methods",
1834
+ "seed-payment-methods",
1835
+ "seed-examples"
1836
+ ]
1837
+ },
1838
+ "workflows": {
1839
+ "title": "Workflow Engine",
1840
+ "description": "Orchestrate business processes with state machines, transitions, and activities",
1841
+ "coreVersion": "0.6.6-develop.6385.1.9a81faa5f0",
1842
+ "entities": [
1843
+ {
1844
+ "id": "workflows:workflow_definition",
1845
+ "class": "WorkflowDefinition",
1846
+ "table": "workflow_definitions",
1847
+ "editable": true,
1848
+ "customFields": false
1849
+ },
1850
+ {
1851
+ "id": "workflows:workflow_instance",
1852
+ "class": "WorkflowInstance",
1853
+ "table": "workflow_instances",
1854
+ "editable": true,
1855
+ "customFields": false
1856
+ },
1857
+ {
1858
+ "id": "workflows:workflow_branch_instance",
1859
+ "class": "WorkflowBranchInstance",
1860
+ "table": "workflow_branch_instances",
1861
+ "editable": true,
1862
+ "customFields": false
1863
+ },
1864
+ {
1865
+ "id": "workflows:step_instance",
1866
+ "class": "StepInstance",
1867
+ "table": "step_instances",
1868
+ "editable": true,
1869
+ "customFields": false
1870
+ },
1871
+ {
1872
+ "id": "workflows:user_task",
1873
+ "class": "UserTask",
1874
+ "table": "user_tasks",
1875
+ "editable": true,
1876
+ "customFields": false
1877
+ },
1878
+ {
1879
+ "id": "workflows:workflow_event",
1880
+ "class": "WorkflowEvent",
1881
+ "table": "workflow_events",
1882
+ "editable": false,
1883
+ "customFields": false
1884
+ },
1885
+ {
1886
+ "id": "workflows:workflow_event_trigger",
1887
+ "class": "WorkflowEventTrigger",
1888
+ "table": "workflow_event_triggers",
1889
+ "editable": true,
1890
+ "customFields": false
1891
+ }
1892
+ ],
1893
+ "events": [
1894
+ {
1895
+ "id": "workflows.definition.created",
1896
+ "category": "crud",
1897
+ "entity": "definition"
1898
+ },
1899
+ {
1900
+ "id": "workflows.definition.updated",
1901
+ "category": "crud",
1902
+ "entity": "definition"
1903
+ },
1904
+ {
1905
+ "id": "workflows.definition.deleted",
1906
+ "category": "crud",
1907
+ "entity": "definition"
1908
+ },
1909
+ {
1910
+ "id": "workflows.definition.customized",
1911
+ "category": "lifecycle",
1912
+ "entity": "definition"
1913
+ },
1914
+ {
1915
+ "id": "workflows.definition.reset_to_code",
1916
+ "category": "lifecycle",
1917
+ "entity": "definition"
1918
+ },
1919
+ {
1920
+ "id": "workflows.instance.created",
1921
+ "category": "crud",
1922
+ "entity": "instance"
1923
+ },
1924
+ {
1925
+ "id": "workflows.instance.updated",
1926
+ "category": "crud",
1927
+ "entity": "instance"
1928
+ },
1929
+ {
1930
+ "id": "workflows.instance.deleted",
1931
+ "category": "crud",
1932
+ "entity": "instance"
1933
+ },
1934
+ {
1935
+ "id": "workflows.instance.started",
1936
+ "category": "lifecycle",
1937
+ "entity": null
1938
+ },
1939
+ {
1940
+ "id": "workflows.instance.completed",
1941
+ "category": "lifecycle",
1942
+ "entity": null
1943
+ },
1944
+ {
1945
+ "id": "workflows.instance.failed",
1946
+ "category": "lifecycle",
1947
+ "entity": null
1948
+ },
1949
+ {
1950
+ "id": "workflows.instance.cancelled",
1951
+ "category": "lifecycle",
1952
+ "entity": null
1953
+ },
1954
+ {
1955
+ "id": "workflows.instance.paused",
1956
+ "category": "lifecycle",
1957
+ "entity": null
1958
+ },
1959
+ {
1960
+ "id": "workflows.instance.resumed",
1961
+ "category": "lifecycle",
1962
+ "entity": null
1963
+ },
1964
+ {
1965
+ "id": "workflows.activity.started",
1966
+ "category": "lifecycle",
1967
+ "entity": null
1968
+ },
1969
+ {
1970
+ "id": "workflows.activity.completed",
1971
+ "category": "lifecycle",
1972
+ "entity": null
1973
+ },
1974
+ {
1975
+ "id": "workflows.activity.failed",
1976
+ "category": "lifecycle",
1977
+ "entity": null
1978
+ },
1979
+ {
1980
+ "id": "workflows.trigger.created",
1981
+ "category": "crud",
1982
+ "entity": "trigger"
1983
+ },
1984
+ {
1985
+ "id": "workflows.trigger.updated",
1986
+ "category": "crud",
1987
+ "entity": "trigger"
1988
+ },
1989
+ {
1990
+ "id": "workflows.trigger.deleted",
1991
+ "category": "crud",
1992
+ "entity": "trigger"
1993
+ },
1994
+ {
1995
+ "id": "workflows.branch.opened",
1996
+ "category": "lifecycle",
1997
+ "entity": "branch"
1998
+ },
1999
+ {
2000
+ "id": "workflows.branch.completed",
2001
+ "category": "lifecycle",
2002
+ "entity": "branch"
2003
+ },
2004
+ {
2005
+ "id": "workflows.branch.cancelled",
2006
+ "category": "lifecycle",
2007
+ "entity": "branch"
2008
+ },
2009
+ {
2010
+ "id": "workflows.branch.failed",
2011
+ "category": "lifecycle",
2012
+ "entity": "branch"
2013
+ },
2014
+ {
2015
+ "id": "workflows.join.completed",
2016
+ "category": "lifecycle",
2017
+ "entity": "branch"
2018
+ }
2019
+ ],
2020
+ "aclFeatures": [
2021
+ "workflows.view",
2022
+ "workflows.manage",
2023
+ "workflows.view_logs",
2024
+ "workflows.view_tasks",
2025
+ "workflows.definitions.view",
2026
+ "workflows.definitions.create",
2027
+ "workflows.definitions.edit",
2028
+ "workflows.definitions.delete",
2029
+ "workflows.instances.view",
2030
+ "workflows.instances.create",
2031
+ "workflows.instances.cancel",
2032
+ "workflows.instances.retry",
2033
+ "workflows.instances.signal",
2034
+ "workflows.tasks.view",
2035
+ "workflows.tasks.claim",
2036
+ "workflows.tasks.complete",
2037
+ "workflows.signals.send",
2038
+ "workflows.events.view"
2039
+ ],
2040
+ "apiRoutes": [],
2041
+ "diTokens": [
2042
+ "workflowExecutor",
2043
+ "stepHandler",
2044
+ "transitionHandler",
2045
+ "activityExecutor",
2046
+ "eventLogger",
2047
+ "signalHandler",
2048
+ "timerHandler"
2049
+ ],
2050
+ "searchEntities": [],
2051
+ "hostTokens": {
2052
+ "entityIds": [],
2053
+ "tableIds": [
2054
+ "workflows.definitions.list",
2055
+ "workflows.instances.list",
2056
+ "workflows.tasks.list"
2057
+ ]
2058
+ },
2059
+ "notifications": [
2060
+ "workflows.task.assigned"
2061
+ ],
2062
+ "cli": [
2063
+ "start-worker",
2064
+ "process-activities",
2065
+ "seed-demo",
2066
+ "seed-demo-with-rules",
2067
+ "seed-sales-pipeline",
2068
+ "seed-simple-approval",
2069
+ "seed-order-approval",
2070
+ "seed-all"
2071
+ ]
2072
+ }
2073
+ }