@acorex/platform 21.0.0-next.90 → 21.0.0-next.92

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 (52) hide show
  1. package/fesm2022/acorex-platform-auth.mjs +1 -2
  2. package/fesm2022/acorex-platform-auth.mjs.map +1 -1
  3. package/fesm2022/acorex-platform-common-common-settings.provider-DilV4dql.mjs.map +1 -1
  4. package/fesm2022/acorex-platform-common.mjs +3 -10
  5. package/fesm2022/acorex-platform-common.mjs.map +1 -1
  6. package/fesm2022/acorex-platform-contracts.mjs +1736 -27
  7. package/fesm2022/acorex-platform-contracts.mjs.map +1 -1
  8. package/fesm2022/acorex-platform-core.mjs +6 -1708
  9. package/fesm2022/acorex-platform-core.mjs.map +1 -1
  10. package/fesm2022/acorex-platform-domain-contracts.mjs.map +1 -1
  11. package/fesm2022/acorex-platform-layout-builder.mjs.map +1 -1
  12. package/fesm2022/acorex-platform-layout-components.mjs +2 -2
  13. package/fesm2022/acorex-platform-layout-components.mjs.map +1 -1
  14. package/fesm2022/acorex-platform-layout-designer.mjs.map +1 -1
  15. package/fesm2022/acorex-platform-layout-entity-attachments-page.component-CwG6n_Yb.mjs.map +1 -1
  16. package/fesm2022/acorex-platform-layout-entity-contracts.mjs +27 -1
  17. package/fesm2022/acorex-platform-layout-entity-contracts.mjs.map +1 -1
  18. package/fesm2022/acorex-platform-layout-entity-file-list-popup.component--IeMZLIr.mjs.map +1 -1
  19. package/fesm2022/acorex-platform-layout-entity.mjs +263 -115
  20. package/fesm2022/acorex-platform-layout-entity.mjs.map +1 -1
  21. package/fesm2022/acorex-platform-layout-views.mjs +4 -2
  22. package/fesm2022/acorex-platform-layout-views.mjs.map +1 -1
  23. package/fesm2022/acorex-platform-layout-widget-core.mjs +87 -11
  24. package/fesm2022/acorex-platform-layout-widget-core.mjs.map +1 -1
  25. package/fesm2022/acorex-platform-layout-widgets-page-widget-designer.component-D10yO28c.mjs.map +1 -1
  26. package/fesm2022/acorex-platform-layout-widgets-repeater-widget-column.component-CFyfix31.mjs.map +1 -1
  27. package/fesm2022/acorex-platform-layout-widgets-tabular-data-edit-popup.component-BvFykMTH.mjs.map +1 -1
  28. package/fesm2022/acorex-platform-layout-widgets.mjs +2 -4
  29. package/fesm2022/acorex-platform-layout-widgets.mjs.map +1 -1
  30. package/fesm2022/acorex-platform-runtime.mjs.map +1 -1
  31. package/fesm2022/acorex-platform-themes-default-entity-master-create-view.component-CWLfNqV0.mjs.map +1 -1
  32. package/fesm2022/acorex-platform-themes-default-entity-master-modify-view.component-C7cT82K2.mjs.map +1 -1
  33. package/fesm2022/acorex-platform-themes-default-entity-master-single-view.component-DrUwqKKA.mjs.map +1 -1
  34. package/fesm2022/acorex-platform-themes-default.mjs.map +1 -1
  35. package/fesm2022/{acorex-platform-themes-shared-settings.provider-UyKdkeyk.mjs → acorex-platform-themes-shared-settings.provider-DxtfyNGS.mjs} +2 -2
  36. package/fesm2022/acorex-platform-themes-shared-settings.provider-DxtfyNGS.mjs.map +1 -0
  37. package/fesm2022/acorex-platform-themes-shared.mjs +2 -2
  38. package/fesm2022/acorex-platform-workflow.mjs +2 -2
  39. package/fesm2022/acorex-platform-workflow.mjs.map +1 -1
  40. package/package.json +1 -1
  41. package/types/acorex-platform-common.d.ts +3 -5
  42. package/types/acorex-platform-contracts.d.ts +862 -7
  43. package/types/acorex-platform-core.d.ts +64 -921
  44. package/types/acorex-platform-layout-builder.d.ts +3 -3
  45. package/types/acorex-platform-layout-components.d.ts +6 -6
  46. package/types/acorex-platform-layout-designer.d.ts +4 -5
  47. package/types/acorex-platform-layout-entity-contracts.d.ts +90 -3
  48. package/types/acorex-platform-layout-entity.d.ts +45 -102
  49. package/types/acorex-platform-layout-views.d.ts +13 -11
  50. package/types/acorex-platform-layout-widget-core.d.ts +83 -77
  51. package/types/acorex-platform-layout-widgets.d.ts +9 -8
  52. package/fesm2022/acorex-platform-themes-shared-settings.provider-UyKdkeyk.mjs.map +0 -1
@@ -191,6 +191,29 @@ declare enum AXPSystemActionType {
191
191
  Distribution = "distribution"
192
192
  }
193
193
 
194
+ type AXPContextState = 'initiated' | 'restored' | 'changed' | 'patch';
195
+ type AXPContextUpdateOrigin = 'user' | 'system';
196
+ interface AXPContextUpdateOptions {
197
+ origin?: AXPContextUpdateOrigin;
198
+ }
199
+ interface AXPContextPatchOptions {
200
+ /** When true, updates the saved snapshot together with live data. */
201
+ updateSaved?: boolean;
202
+ }
203
+ type AXPContextData = {
204
+ [key: string]: any;
205
+ };
206
+ declare class AXPContextChangeEvent {
207
+ oldValue?: any;
208
+ newValue?: any;
209
+ path?: string;
210
+ state: AXPContextState;
211
+ data: any;
212
+ origin?: AXPContextUpdateOrigin;
213
+ /** Aggregated form dirty flag (context snapshot + composite widget dirty). */
214
+ isFormDirty?: boolean;
215
+ }
216
+
194
217
  type AXDataSourceOperatorType = 'endsWith' | 'startsWith' | 'in' | 'equal' | 'isNull' | 'isEmpty' | 'lt' | 'lte' | 'gt' | 'gte' | 'contains';
195
218
  interface AXDataSourceOperator {
196
219
  type: AXDataSourceOperatorType;
@@ -211,6 +234,728 @@ interface AXDataSourceSortOption {
211
234
  dir?: 'asc' | 'desc';
212
235
  }
213
236
 
237
+ declare const AXPSystemActions: Readonly<{
238
+ readonly View: {
239
+ readonly key: AXPSystemActionType.View;
240
+ readonly title: string;
241
+ readonly icon: "fa-light fa-eye";
242
+ readonly color: "primary";
243
+ readonly descriptions: {
244
+ readonly title: string;
245
+ readonly tooltip: string;
246
+ readonly permission: string;
247
+ readonly audit: string;
248
+ };
249
+ };
250
+ readonly Create: {
251
+ readonly key: AXPSystemActionType.Create;
252
+ readonly title: string;
253
+ readonly icon: "fa-light fa-plus";
254
+ readonly color: "primary";
255
+ readonly descriptions: {
256
+ readonly title: string;
257
+ readonly tooltip: string;
258
+ readonly permission: string;
259
+ readonly audit: string;
260
+ };
261
+ };
262
+ readonly Edit: {
263
+ readonly key: AXPSystemActionType.Update;
264
+ readonly title: string;
265
+ readonly icon: "fa-light fa-pen";
266
+ readonly color: "default";
267
+ readonly descriptions: {
268
+ readonly title: string;
269
+ readonly tooltip: string;
270
+ readonly permission: string;
271
+ readonly audit: string;
272
+ };
273
+ };
274
+ readonly Delete: {
275
+ readonly key: AXPSystemActionType.Delete;
276
+ readonly title: string;
277
+ readonly icon: "fa-light fa-trash";
278
+ readonly color: "danger";
279
+ readonly critical: true;
280
+ readonly descriptions: {
281
+ readonly title: string;
282
+ readonly tooltip: string;
283
+ readonly permission: string;
284
+ readonly audit: string;
285
+ };
286
+ };
287
+ readonly Approve: {
288
+ readonly key: AXPSystemActionType.Approve;
289
+ readonly title: string;
290
+ readonly icon: "fa-light fa-circle-check";
291
+ readonly color: "success";
292
+ readonly critical: true;
293
+ readonly descriptions: {
294
+ readonly title: string;
295
+ readonly tooltip: string;
296
+ readonly permission: string;
297
+ readonly audit: string;
298
+ };
299
+ };
300
+ readonly Submit: {
301
+ readonly key: AXPSystemActionType.Submit;
302
+ readonly title: string;
303
+ readonly icon: "fa-light fa-paper-plane";
304
+ readonly color: "primary";
305
+ readonly descriptions: {
306
+ readonly title: string;
307
+ readonly tooltip: string;
308
+ readonly permission: string;
309
+ readonly audit: string;
310
+ };
311
+ };
312
+ readonly Reject: {
313
+ readonly key: AXPSystemActionType.Reject;
314
+ readonly title: string;
315
+ readonly icon: "fa-light fa-ban";
316
+ readonly color: "danger";
317
+ readonly critical: true;
318
+ readonly descriptions: {
319
+ readonly title: string;
320
+ readonly tooltip: string;
321
+ readonly permission: string;
322
+ readonly audit: string;
323
+ };
324
+ };
325
+ readonly Export: {
326
+ readonly key: AXPSystemActionType.Export;
327
+ readonly title: string;
328
+ readonly icon: "fa-light fa-download";
329
+ readonly color: "default";
330
+ readonly descriptions: {
331
+ readonly title: string;
332
+ readonly tooltip: string;
333
+ readonly permission: string;
334
+ readonly audit: string;
335
+ };
336
+ };
337
+ readonly Import: {
338
+ readonly key: AXPSystemActionType.Import;
339
+ readonly title: string;
340
+ readonly icon: "fa-light fa-upload";
341
+ readonly color: "default";
342
+ readonly descriptions: {
343
+ readonly title: string;
344
+ readonly tooltip: string;
345
+ readonly permission: string;
346
+ readonly audit: string;
347
+ };
348
+ };
349
+ readonly Print: {
350
+ readonly key: AXPSystemActionType.Print;
351
+ readonly title: string;
352
+ readonly icon: "fa-light fa-print";
353
+ readonly color: "default";
354
+ readonly descriptions: {
355
+ readonly title: string;
356
+ readonly tooltip: string;
357
+ readonly permission: string;
358
+ readonly audit: string;
359
+ };
360
+ };
361
+ readonly Duplicate: {
362
+ readonly key: AXPSystemActionType.Duplicate;
363
+ readonly title: string;
364
+ readonly icon: "fa-light fa-clone";
365
+ readonly color: "warning";
366
+ readonly descriptions: {
367
+ readonly title: string;
368
+ readonly tooltip: string;
369
+ readonly permission: string;
370
+ readonly audit: string;
371
+ };
372
+ };
373
+ readonly Archive: {
374
+ readonly key: AXPSystemActionType.Archive;
375
+ readonly title: string;
376
+ readonly icon: "fa-light fa-box-archive";
377
+ readonly color: "default";
378
+ readonly descriptions: {
379
+ readonly title: string;
380
+ readonly tooltip: string;
381
+ readonly permission: string;
382
+ readonly audit: string;
383
+ };
384
+ };
385
+ readonly Restore: {
386
+ readonly key: AXPSystemActionType.Restore;
387
+ readonly title: string;
388
+ readonly icon: "fa-light fa-arrow-rotate-left";
389
+ readonly color: "default";
390
+ readonly descriptions: {
391
+ readonly title: string;
392
+ readonly tooltip: string;
393
+ readonly permission: string;
394
+ readonly audit: string;
395
+ };
396
+ };
397
+ readonly Assign: {
398
+ readonly key: AXPSystemActionType.Assign;
399
+ readonly title: string;
400
+ readonly icon: "fa-light fa-user-plus";
401
+ readonly color: "primary";
402
+ readonly descriptions: {
403
+ readonly title: string;
404
+ readonly tooltip: string;
405
+ readonly permission: string;
406
+ readonly audit: string;
407
+ };
408
+ };
409
+ readonly Lock: {
410
+ readonly key: AXPSystemActionType.Lock;
411
+ readonly title: string;
412
+ readonly icon: "fa-light fa-lock";
413
+ readonly color: "warning";
414
+ readonly descriptions: {
415
+ readonly title: string;
416
+ readonly tooltip: string;
417
+ readonly permission: string;
418
+ readonly audit: string;
419
+ };
420
+ };
421
+ readonly Unlock: {
422
+ readonly key: AXPSystemActionType.Unlock;
423
+ readonly title: string;
424
+ readonly icon: "fa-light fa-unlock";
425
+ readonly color: "success";
426
+ readonly descriptions: {
427
+ readonly title: string;
428
+ readonly tooltip: string;
429
+ readonly permission: string;
430
+ readonly audit: string;
431
+ };
432
+ };
433
+ readonly Share: {
434
+ readonly key: AXPSystemActionType.Share;
435
+ readonly title: string;
436
+ readonly icon: "fa-light fa-share-nodes";
437
+ readonly color: "info";
438
+ readonly descriptions: {
439
+ readonly title: string;
440
+ readonly tooltip: string;
441
+ readonly permission: string;
442
+ readonly audit: string;
443
+ };
444
+ };
445
+ readonly Configure: {
446
+ readonly key: AXPSystemActionType.Configure;
447
+ readonly title: string;
448
+ readonly icon: "fa-light fa-sliders";
449
+ readonly color: "primary";
450
+ readonly descriptions: {
451
+ readonly title: string;
452
+ readonly tooltip: string;
453
+ readonly permission: string;
454
+ readonly audit: string;
455
+ };
456
+ };
457
+ readonly Reorder: {
458
+ readonly key: AXPSystemActionType.Reorder;
459
+ readonly title: string;
460
+ readonly icon: "fa-light fa-arrow-down-up-across-line";
461
+ readonly color: "default";
462
+ readonly descriptions: {
463
+ readonly title: string;
464
+ readonly tooltip: string;
465
+ readonly permission: string;
466
+ readonly audit: string;
467
+ };
468
+ };
469
+ readonly Preview: {
470
+ readonly key: AXPSystemActionType.Preview;
471
+ readonly title: string;
472
+ readonly icon: "fa-light fa-magnifying-glass";
473
+ readonly color: "default";
474
+ readonly descriptions: {
475
+ readonly title: string;
476
+ readonly tooltip: string;
477
+ readonly permission: string;
478
+ readonly audit: string;
479
+ };
480
+ };
481
+ readonly Publish: {
482
+ readonly key: AXPSystemActionType.Publish;
483
+ readonly title: string;
484
+ readonly icon: "fa-light fa-globe";
485
+ readonly color: "success";
486
+ readonly descriptions: {
487
+ readonly title: string;
488
+ readonly tooltip: string;
489
+ readonly permission: string;
490
+ readonly audit: string;
491
+ };
492
+ };
493
+ readonly Unpublish: {
494
+ readonly key: AXPSystemActionType.Unpublish;
495
+ readonly title: string;
496
+ readonly icon: "fa-light fa-globe-slash";
497
+ readonly color: "danger";
498
+ readonly descriptions: {
499
+ readonly title: string;
500
+ readonly tooltip: string;
501
+ readonly permission: string;
502
+ readonly audit: string;
503
+ };
504
+ };
505
+ readonly Upload: {
506
+ readonly key: AXPSystemActionType.Upload;
507
+ readonly title: string;
508
+ readonly icon: "fa-light fa-upload";
509
+ readonly color: "default";
510
+ readonly descriptions: {
511
+ readonly title: string;
512
+ readonly tooltip: string;
513
+ readonly permission: string;
514
+ readonly audit: string;
515
+ };
516
+ };
517
+ readonly Download: {
518
+ readonly key: AXPSystemActionType.Download;
519
+ readonly title: string;
520
+ readonly icon: "fa-light fa-download";
521
+ readonly color: "default";
522
+ readonly descriptions: {
523
+ readonly title: string;
524
+ readonly tooltip: string;
525
+ readonly permission: string;
526
+ readonly audit: string;
527
+ };
528
+ };
529
+ readonly Copy: {
530
+ readonly key: AXPSystemActionType.Copy;
531
+ readonly title: string;
532
+ readonly icon: "fa-light fa-copy";
533
+ readonly color: "default";
534
+ readonly descriptions: {
535
+ readonly title: string;
536
+ readonly tooltip: string;
537
+ readonly permission: string;
538
+ readonly audit: string;
539
+ };
540
+ };
541
+ readonly Move: {
542
+ readonly key: AXPSystemActionType.Move;
543
+ readonly title: string;
544
+ readonly icon: "fa-light fa-arrow-right-arrow-left";
545
+ readonly color: "default";
546
+ readonly descriptions: {
547
+ readonly title: string;
548
+ readonly tooltip: string;
549
+ readonly permission: string;
550
+ readonly audit: string;
551
+ };
552
+ };
553
+ readonly Rename: {
554
+ readonly key: AXPSystemActionType.Rename;
555
+ readonly title: string;
556
+ readonly icon: "fa-light fa-pen";
557
+ readonly color: "default";
558
+ readonly descriptions: {
559
+ readonly title: string;
560
+ readonly tooltip: string;
561
+ readonly permission: string;
562
+ readonly audit: string;
563
+ };
564
+ };
565
+ readonly Manage: {
566
+ readonly key: AXPSystemActionType.Manage;
567
+ readonly title: string;
568
+ readonly icon: "fa-light fa-gear";
569
+ readonly color: "default";
570
+ readonly descriptions: {
571
+ readonly title: string;
572
+ readonly tooltip: string;
573
+ readonly permission: string;
574
+ readonly audit: string;
575
+ };
576
+ };
577
+ readonly Info: {
578
+ readonly key: AXPSystemActionType.Info;
579
+ readonly title: string;
580
+ readonly icon: "fa-light fa-info";
581
+ readonly color: "default";
582
+ readonly descriptions: {
583
+ readonly title: string;
584
+ readonly tooltip: string;
585
+ readonly permission: string;
586
+ readonly audit: string;
587
+ };
588
+ };
589
+ readonly Confirm: {
590
+ readonly key: AXPSystemActionType.Confirm;
591
+ readonly title: string;
592
+ readonly icon: "fa-light fa-check";
593
+ readonly color: "success";
594
+ readonly descriptions: {
595
+ readonly title: string;
596
+ readonly tooltip: string;
597
+ readonly permission: string;
598
+ readonly audit: string;
599
+ };
600
+ };
601
+ readonly Design: {
602
+ readonly key: AXPSystemActionType.Design;
603
+ readonly title: string;
604
+ readonly icon: "fa-light fa-paintbrush";
605
+ readonly color: "default";
606
+ readonly descriptions: {
607
+ readonly title: string;
608
+ readonly tooltip: string;
609
+ readonly permission: string;
610
+ readonly audit: string;
611
+ };
612
+ };
613
+ readonly VersionHistory: {
614
+ readonly key: AXPSystemActionType.VersionHistory;
615
+ readonly title: string;
616
+ readonly icon: "fa-light fa-history";
617
+ readonly color: "default";
618
+ readonly descriptions: {
619
+ readonly title: string;
620
+ readonly tooltip: string;
621
+ readonly permission: string;
622
+ readonly audit: string;
623
+ };
624
+ };
625
+ readonly Compare: {
626
+ readonly key: AXPSystemActionType.Compare;
627
+ readonly title: string;
628
+ readonly icon: "fa-light fa-code-compare";
629
+ readonly color: "default";
630
+ readonly descriptions: {
631
+ readonly title: string;
632
+ readonly tooltip: string;
633
+ readonly permission: string;
634
+ readonly audit: string;
635
+ };
636
+ };
637
+ readonly Comments: {
638
+ readonly key: AXPSystemActionType.Comments;
639
+ readonly title: string;
640
+ readonly icon: "fa-light fa-comments";
641
+ readonly color: "default";
642
+ readonly descriptions: {
643
+ readonly title: string;
644
+ readonly tooltip: string;
645
+ readonly permission: string;
646
+ readonly audit: string;
647
+ };
648
+ };
649
+ readonly Sign: {
650
+ readonly key: AXPSystemActionType.Sign;
651
+ readonly title: string;
652
+ readonly icon: "fa-light fa-signature";
653
+ readonly color: "default";
654
+ readonly descriptions: {
655
+ readonly title: string;
656
+ readonly tooltip: string;
657
+ readonly permission: string;
658
+ readonly audit: string;
659
+ };
660
+ };
661
+ readonly Setup: {
662
+ readonly key: AXPSystemActionType.Setup;
663
+ readonly title: string;
664
+ readonly icon: "fa-light fa-cog";
665
+ readonly color: "default";
666
+ readonly descriptions: {
667
+ readonly title: string;
668
+ readonly tooltip: string;
669
+ readonly permission: string;
670
+ readonly audit: string;
671
+ };
672
+ };
673
+ readonly Send: {
674
+ readonly key: AXPSystemActionType.Send;
675
+ readonly title: string;
676
+ readonly icon: "fa-light fa-envelope";
677
+ readonly color: "default";
678
+ readonly descriptions: {
679
+ readonly title: string;
680
+ readonly tooltip: string;
681
+ readonly permission: string;
682
+ readonly audit: string;
683
+ };
684
+ };
685
+ readonly Report: {
686
+ readonly key: AXPSystemActionType.Report;
687
+ readonly title: string;
688
+ readonly icon: "fa-light fa-chart-line";
689
+ readonly color: "default";
690
+ readonly descriptions: {
691
+ readonly title: string;
692
+ readonly tooltip: string;
693
+ readonly permission: string;
694
+ readonly audit: string;
695
+ };
696
+ };
697
+ readonly Sent: {
698
+ readonly key: AXPSystemActionType.Sent;
699
+ readonly title: string;
700
+ readonly icon: "fa-light fa-paper-plane";
701
+ readonly color: "default";
702
+ readonly descriptions: {
703
+ readonly title: string;
704
+ readonly tooltip: string;
705
+ readonly permission: string;
706
+ readonly audit: string;
707
+ };
708
+ };
709
+ readonly Review: {
710
+ readonly key: AXPSystemActionType.Review;
711
+ readonly title: string;
712
+ readonly icon: "fa-light fa-eye";
713
+ readonly color: "default";
714
+ readonly descriptions: {
715
+ readonly title: string;
716
+ readonly tooltip: string;
717
+ readonly permission: string;
718
+ readonly audit: string;
719
+ };
720
+ };
721
+ readonly Generate: {
722
+ readonly key: AXPSystemActionType.Generate;
723
+ readonly title: string;
724
+ readonly icon: "fa-light fa-wand-magic-sparkles";
725
+ readonly color: "primary";
726
+ readonly descriptions: {
727
+ readonly title: string;
728
+ readonly tooltip: string;
729
+ readonly permission: string;
730
+ readonly audit: string;
731
+ };
732
+ };
733
+ readonly Refresh: {
734
+ readonly key: AXPSystemActionType.Refresh;
735
+ readonly title: string;
736
+ readonly icon: "fa-light fa-arrows-rotate";
737
+ readonly color: "default";
738
+ readonly descriptions: {
739
+ readonly title: string;
740
+ readonly tooltip: string;
741
+ readonly permission: string;
742
+ readonly audit: string;
743
+ };
744
+ };
745
+ readonly Reload: {
746
+ readonly key: AXPSystemActionType.Reload;
747
+ readonly title: string;
748
+ readonly icon: "fa-light fa-arrows-rotate";
749
+ readonly color: "default";
750
+ readonly descriptions: {
751
+ readonly title: string;
752
+ readonly tooltip: string;
753
+ readonly permission: string;
754
+ readonly audit: string;
755
+ };
756
+ };
757
+ readonly Search: {
758
+ readonly key: AXPSystemActionType.Search;
759
+ readonly title: string;
760
+ readonly icon: "fa-light fa-magnifying-glass";
761
+ readonly color: "default";
762
+ readonly descriptions: {
763
+ readonly title: string;
764
+ readonly tooltip: string;
765
+ readonly permission: string;
766
+ readonly audit: string;
767
+ };
768
+ };
769
+ readonly Filter: {
770
+ readonly key: AXPSystemActionType.Filter;
771
+ readonly title: string;
772
+ readonly icon: "fa-light fa-filter";
773
+ readonly color: "default";
774
+ readonly descriptions: {
775
+ readonly title: string;
776
+ readonly tooltip: string;
777
+ readonly permission: string;
778
+ readonly audit: string;
779
+ };
780
+ };
781
+ readonly Sort: {
782
+ readonly key: AXPSystemActionType.Sort;
783
+ readonly title: string;
784
+ readonly icon: "fa-light fa-arrow-down-up-across-line";
785
+ readonly color: "default";
786
+ readonly descriptions: {
787
+ readonly title: string;
788
+ readonly tooltip: string;
789
+ readonly permission: string;
790
+ readonly audit: string;
791
+ };
792
+ };
793
+ readonly Start: {
794
+ readonly key: AXPSystemActionType.Start;
795
+ readonly title: string;
796
+ readonly icon: "fa-light fa-play";
797
+ readonly color: "success";
798
+ readonly descriptions: {
799
+ readonly title: string;
800
+ readonly tooltip: string;
801
+ readonly permission: string;
802
+ readonly audit: string;
803
+ };
804
+ };
805
+ readonly Stop: {
806
+ readonly key: AXPSystemActionType.Stop;
807
+ readonly title: string;
808
+ readonly icon: "fa-light fa-stop";
809
+ readonly color: "danger";
810
+ readonly critical: true;
811
+ readonly descriptions: {
812
+ readonly title: string;
813
+ readonly tooltip: string;
814
+ readonly permission: string;
815
+ readonly audit: string;
816
+ };
817
+ };
818
+ readonly Pause: {
819
+ readonly key: AXPSystemActionType.Pause;
820
+ readonly title: string;
821
+ readonly icon: "fa-light fa-pause";
822
+ readonly color: "warning";
823
+ readonly descriptions: {
824
+ readonly title: string;
825
+ readonly tooltip: string;
826
+ readonly permission: string;
827
+ readonly audit: string;
828
+ };
829
+ };
830
+ readonly Cancel: {
831
+ readonly key: AXPSystemActionType.Cancel;
832
+ readonly title: string;
833
+ readonly icon: "fa-light fa-xmark";
834
+ readonly critical: true;
835
+ readonly descriptions: {
836
+ readonly title: string;
837
+ readonly tooltip: string;
838
+ readonly permission: string;
839
+ readonly audit: string;
840
+ };
841
+ };
842
+ readonly Close: {
843
+ readonly key: AXPSystemActionType.Close;
844
+ readonly title: string;
845
+ readonly icon: "fa-light fa-xmark";
846
+ readonly color: "default";
847
+ readonly descriptions: {
848
+ readonly title: string;
849
+ readonly tooltip: string;
850
+ readonly permission: string;
851
+ readonly audit: string;
852
+ };
853
+ };
854
+ readonly Complete: {
855
+ readonly key: AXPSystemActionType.Complete;
856
+ readonly title: string;
857
+ readonly icon: "fa-light fa-check";
858
+ readonly color: "success";
859
+ readonly descriptions: {
860
+ readonly title: string;
861
+ readonly tooltip: string;
862
+ readonly permission: string;
863
+ readonly audit: string;
864
+ };
865
+ };
866
+ readonly Save: {
867
+ readonly key: AXPSystemActionType.Save;
868
+ readonly title: string;
869
+ readonly icon: "fa-light fa-floppy-disk";
870
+ readonly color: "primary";
871
+ readonly descriptions: {
872
+ readonly title: string;
873
+ readonly tooltip: string;
874
+ readonly permission: string;
875
+ readonly audit: string;
876
+ };
877
+ };
878
+ readonly SaveAs: {
879
+ readonly key: AXPSystemActionType.SaveAs;
880
+ readonly title: string;
881
+ readonly icon: "fa-light fa-floppy-disk";
882
+ readonly color: "default";
883
+ readonly descriptions: {
884
+ readonly title: string;
885
+ readonly tooltip: string;
886
+ readonly permission: string;
887
+ readonly audit: string;
888
+ };
889
+ };
890
+ readonly Sync: {
891
+ readonly key: AXPSystemActionType.Sync;
892
+ readonly title: string;
893
+ readonly icon: "fa-light fa-arrows-rotate";
894
+ readonly color: "default";
895
+ readonly descriptions: {
896
+ readonly title: string;
897
+ readonly tooltip: string;
898
+ readonly permission: string;
899
+ readonly audit: string;
900
+ };
901
+ };
902
+ readonly Reset: {
903
+ readonly key: AXPSystemActionType.Reset;
904
+ readonly title: string;
905
+ readonly icon: "fa-light fa-arrow-rotate-left";
906
+ readonly color: "warning";
907
+ readonly critical: true;
908
+ readonly descriptions: {
909
+ readonly title: string;
910
+ readonly tooltip: string;
911
+ readonly permission: string;
912
+ readonly audit: string;
913
+ };
914
+ };
915
+ readonly Clear: {
916
+ readonly key: AXPSystemActionType.Clear;
917
+ readonly title: string;
918
+ readonly icon: "fa-light fa-eraser";
919
+ readonly color: "default";
920
+ readonly descriptions: {
921
+ readonly title: string;
922
+ readonly tooltip: string;
923
+ readonly permission: string;
924
+ readonly audit: string;
925
+ };
926
+ };
927
+ readonly Distribution: {
928
+ readonly key: AXPSystemActionType.Distribution;
929
+ readonly title: string;
930
+ readonly icon: "fa-light fa-share-nodes";
931
+ readonly color: "default";
932
+ readonly descriptions: {
933
+ readonly title: string;
934
+ readonly tooltip: string;
935
+ readonly permission: string;
936
+ readonly audit: string;
937
+ };
938
+ };
939
+ }>;
940
+ declare function getSystemActions(type: AXPSystemActionType): AXPSystemAction;
941
+ /**
942
+ * Resolves the visual appearance (color and icon) for entity actions.
943
+ */
944
+ declare function resolveActionLook(actionType: string): {
945
+ color: AXStyleColorType;
946
+ icon: string;
947
+ };
948
+ /**
949
+ * Resolves the title, description, icon and color for button actions.
950
+ */
951
+ declare function getActionButton(actionType: string): {
952
+ name: string;
953
+ title: string;
954
+ description: string;
955
+ icon: string;
956
+ color: string;
957
+ };
958
+
214
959
  type AXPPlatformScopeKey = 'P' | 'T' | 'U';
215
960
  declare enum AXPPlatformScope {
216
961
  Platform = "P",
@@ -243,6 +988,120 @@ interface AXPMiddlewareErrorResponse {
243
988
  };
244
989
  }
245
990
 
991
+ declare function extractNestedFieldsWildcard(obj: any, basePath: string, fields: string[]): any;
992
+ declare function setSmart(obj: any, smartPath: string, value: any): any;
993
+ declare function getSmart(obj: any, smartPath: string): any;
994
+ declare function extractValue<T = any>(value: any, key?: string): T | null;
995
+ declare function cleanDeep(obj: any): any;
996
+ type ChangeEntry = {
997
+ path: string;
998
+ oldValue: any;
999
+ newValue: any;
1000
+ arrayDiff?: {
1001
+ added: any[];
1002
+ removed: any[];
1003
+ };
1004
+ };
1005
+ declare function getChangedPaths(obj1: any, obj2: any): string[];
1006
+ declare function getDetailedChanges(obj1: any, obj2: any): ChangeEntry[];
1007
+ declare function getEnumValues(enumType: any): {
1008
+ id: string;
1009
+ title: string;
1010
+ }[];
1011
+ /**
1012
+ * Lookup/select expose may write a resolved MLS string while the baseline keeps the locale map.
1013
+ * Restore baseline shape when the string matches any locale entry.
1014
+ */
1015
+ declare function shouldRestoreSavedMultiLanguageShape(value: unknown, savedAtPath: unknown): boolean;
1016
+ /**
1017
+ * Semantic equality for lookup/select values when restoring saved baseline shape.
1018
+ * Compares by selection identity (id), including two full items with the same id.
1019
+ */
1020
+ declare function isSelectionValueEqual(a: unknown, b: unknown): boolean;
1021
+ /**
1022
+ * Semantic equality for dirty-state and baseline checks.
1023
+ * Prefer over lodash `isEqual` when comparing user-edited form/context data to a saved baseline.
1024
+ *
1025
+ * Arrays: `[]`, `null`, and all-empty lists are equivalent; non-empty arrays compare as multisets (order ignored).
1026
+ */
1027
+ declare function isFormValueEqual(a: unknown, b: unknown): boolean;
1028
+ /**
1029
+ * Returns whether `current` differs from the saved/clean `baseline` snapshot.
1030
+ */
1031
+ declare function isFormContextDirty(current: Record<string, unknown>, baseline: Record<string, unknown>): boolean;
1032
+ interface FormContextDirtyDiffEntry {
1033
+ path: string;
1034
+ current: unknown;
1035
+ baseline: unknown;
1036
+ selectionEqual: boolean;
1037
+ }
1038
+ /**
1039
+ * Lists paths where live context differs from baseline (for dirty-state trace logs).
1040
+ */
1041
+ declare function summarizeFormContextDirtyDiff(current: Record<string, unknown>, baseline: Record<string, unknown>, maxEntries?: number): FormContextDirtyDiffEntry[];
1042
+ /**
1043
+ * Clones a context object for use as a dirty-tracking baseline.
1044
+ */
1045
+ declare function captureFormContextBaseline(context: Record<string, unknown>): Record<string, unknown>;
1046
+
1047
+ /**
1048
+ * If `raw` is a plain non-array object with a `value` property, returns `value`; otherwise returns `raw`.
1049
+ */
1050
+ declare function unwrapValueProperty(raw: unknown): unknown;
1051
+ /**
1052
+ * Coerces to a trimmed string. Plain objects may carry `{ value }` from setting widgets or `{ id }` from select payloads using `valueField: 'id'`.
1053
+ */
1054
+ declare function coerceUnknownToTrimmedString(raw: unknown): string;
1055
+ /**
1056
+ * Coerces to boolean: direct booleans pass through; wrapped `{ value: true | 'true' }` is respected; otherwise false.
1057
+ */
1058
+ declare function coerceUnknownToBoolean(raw: unknown): boolean;
1059
+ /** Parses a finite number after optional `{ value }` unwrap; non-finite or empty string yields NaN. */
1060
+ declare function coerceUnknownToFiniteNumber(raw: unknown): number;
1061
+ /** Parses a Date after optional `{ value }` unwrap; invalid input yields Invalid Date. */
1062
+ declare function coerceUnknownToDate(raw: unknown): Date;
1063
+
1064
+ declare function extractTextFromHtml(value: string): string;
1065
+ /**
1066
+ * True when the string likely contains HTML markup (e.g. `<p>`, `<ul>`), as opposed to plain text.
1067
+ * Used to choose innerHTML vs text interpolation for multilingual fields.
1068
+ */
1069
+ declare function containsHtmlMarkup(value: string | null | undefined): boolean;
1070
+ /**
1071
+ * Generate kebab-case group name from title
1072
+ */
1073
+ declare function generateKebabCase(title: string): string;
1074
+
1075
+ /**
1076
+ * Locale-aware comparison of {@link AXPMultiLanguageString} values (plain string, `@scope:key`, or locale map).
1077
+ * Resolves each side with {@link resolveMultiLanguageString} for `locale`, then compares with `String#localeCompare`.
1078
+ */
1079
+ declare function compareMultiLanguageStrings(a: AXPMultiLanguageString | null | undefined, b: AXPMultiLanguageString | null | undefined, locale: string, collatorOptions?: Intl.CollatorOptions): number;
1080
+ /**
1081
+ * Stable sort copy: orders items by resolved string for `getValue(item)` using the active `locale`.
1082
+ */
1083
+ declare function sortByMultiLanguageString<T>(items: readonly T[], getValue: (item: T) => AXPMultiLanguageString | null | undefined, locale: string, collatorOptions?: Intl.CollatorOptions): T[];
1084
+ /**
1085
+ * True when the resolved value contains `query` (case-insensitive) for `locale`.
1086
+ * Useful for search/filter flows over {@link AXPMultiLanguageString}.
1087
+ */
1088
+ declare function searchInMultiLanguageString(value: AXPMultiLanguageString | null | undefined, query: string, locale: string): boolean;
1089
+
1090
+ /** Per-locale string map (`{ 'en-US': '...', 'fa-IR': '...' }`). */
1091
+ declare function isLocaleStringMap(value: unknown): value is Record<string, string>;
1092
+ /**
1093
+ * Use locale-map read/write when the option is on or live/saved data is already a map.
1094
+ * Auto-enables when API data is a map but the editor option was left off.
1095
+ */
1096
+ declare function shouldUseLocaleMapShape(localeMapOptionEnabled: boolean, current: unknown, saved: unknown): boolean;
1097
+ /** Updates one locale entry; preserves sibling locales from current or saved map. */
1098
+ declare function buildLocaleTextMapValue(current: unknown, saved: unknown, lang: string, input: string): Record<string, string> | null;
1099
+
1100
+ /**
1101
+ * Resolves {@link AXPMultiLanguageString} to a plain string for the given locale.
1102
+ */
1103
+ declare function resolveMultiLanguageString(value: AXPMultiLanguageString | null | undefined, locale: string): string;
1104
+
246
1105
  interface AXPPagedListResult<T = unknown> {
247
1106
  items: T[];
248
1107
  total: number;
@@ -2210,11 +3069,7 @@ declare const AXP_PREVIEW_WIDGET_FIELD_COMMAND_KEY = "Widget:Preview";
2210
3069
  * Standalone copy for connectivity mocks — no dependency on @acorex/core/translation.
2211
3070
  */
2212
3071
  declare function createMultiLanguageString(enUS: string, faIR?: string): Record<string, string>;
2213
- /**
2214
- * Resolves {@link AXPMultiLanguageString} to a plain string for the given locale.
2215
- * Standalone copy for connectivity mocks — no dependency on @acorex/core/translation.
2216
- */
2217
- declare function resolveMultiLanguageString(value: AXPMultiLanguageString | null | undefined, locale: string): string;
3072
+
2218
3073
  /**
2219
3074
  * Lightweight data helpers for mock seed files.
2220
3075
  * Standalone copy for connectivity mocks — no dependency on @acorex/platform/core.
@@ -2468,5 +3323,5 @@ declare class AXPIntegrationMissingScopeError extends Error {
2468
3323
  constructor(providerId: string, missingScopes: string[], message?: string);
2469
3324
  }
2470
3325
 
2471
- export { AXPDataGenerator, AXPExportTemplateToken, AXPFileStorageStatus, AXPIntegrationExpiredError, AXPIntegrationMissingScopeError, AXPIntegrationNotConnectedError, AXPPlatformCoreDataSourceKeys, AXPPlatformScope, AXPRegionalSetting, AXPStatusProvider, AXPSystemActionType, AXPSystemStatusType, AXPSystemStatuses, AXPWidgetsCatalog, AXPWidgetsList, AXP_INTEGRATION_AUTH_METHOD_TYPE, AXP_INTEGRATION_CAPABILITY, AXP_INTEGRATION_CATEGORY, AXP_INTEGRATION_CONNECTION_SCOPE, AXP_INTEGRATION_CONNECTION_STATUS, AXP_PREVIEW_WIDGET_FIELD_COMMAND_KEY, createMultiLanguageString, getNestedKeys, getStatusInfo, getSystemStatus, normalizeDefinitionCategories, resolveMultiLanguageString, resolvePlatformScopeKey, resolvePlatformScopeName, resolveStatusLook, systemStatusToDefinition };
2472
- export type { AXDataSourceFilterOption, AXDataSourceOperator, AXDataSourceOperatorType, AXDataSourceSortOption, AXFilterLogic, AXPActionMenuItem, AXPActivityCategory, AXPActivityDefinition, AXPActivityDefinitionCategoryRef, AXPActivityDefinitionQueryResult, AXPActivityExecutionContextState, AXPActivityIncident, AXPActivityStatus, AXPActivityVariable, AXPAddressData, AXPAddressLabel, AXPAddressMode, AXPAgentOutputKind, AXPApplicationUserReference, AXPBackButton, AXPBadge, AXPBookmark, AXPBreadcrumbItem, AXPCategorizedEntity, AXPCategorizedEntityDto, AXPCategoryEntity, AXPCategoryEntityWithItems, AXPCategoryListItem, AXPColumnQuery, AXPCommandMessage, AXPCompletionCallbackState, AXPConnection, AXPContent, AXPContentDirection, AXPContentType, AXPDataType, AXPDefinitionCategory, AXPElsaWorkflowExtensions, AXPEntityOp, AXPEntityReference, AXPEqualValidationRule, AXPExceptionState, AXPExecuteCommand, AXPExecuteCommandResult, AXPExportCsvOptions, AXPExportExcelOptions, AXPExportOptions, AXPExportPdfOptions, AXPExportPrintOptions, AXPExpression, AXPFileListItem, AXPFileManyStorageInfo, AXPFileSource, AXPFileStatus, AXPFileStorageCreateRequest, AXPFileStorageFindRequest, AXPFileStorageInfo, AXPFileStorageUpdateRequest, AXPFilterClause, AXPFilterDefinition, AXPFilterQuery, AXPFilterTriggerDefinition, AXPFlowDirection, AXPGridLayoutOptions, AXPGridPlacement, AXPIntegrationApiTokenAuthMethodDefinition, AXPIntegrationApiTokenSecretPayload, AXPIntegrationAuthContext, AXPIntegrationAuthFieldDefinition, AXPIntegrationAuthMethodDefinition, AXPIntegrationAuthMethodType, AXPIntegrationBasicAuthMethodDefinition, AXPIntegrationBasicSecretPayload, AXPIntegrationCapability, AXPIntegrationCategory, AXPIntegrationConnectionScope, AXPIntegrationConnectionStatus, AXPIntegrationOAuth2AuthMethodDefinition, AXPIntegrationOAuthSecretPayload, AXPIntegrationPatAuthMethodDefinition, AXPIntegrationPatSecretPayload, AXPIntegrationProviderDefinition, AXPIntegrationProviderListItemDto, AXPIntegrationProviderRuntimeHooks, AXPIntegrationResolvedCredentials, AXPIntegrationRuntimeContext, AXPIntegrationSecretPayload, AXPIntegrationValidationResult, AXPLogoConfig, AXPMaxLengthValidationRule, AXPMaybePromise, AXPMetaData, AXPMetaDataDefinition, AXPMetaDataFeatures, AXPMiddlewareErrorResponse, AXPMinLengthValidationRule, AXPMultiLanguageString, AXPMultiSourceRef, AXPOptionsData, AXPOutputTranscriptSegmentId, AXPPageStatus, AXPPagedListResult, AXPPartialNested, AXPPlatformScopeKey, AXPProperty, AXPPropertyGroup, AXPPropertyInterface, AXPQueryFetchResult, AXPQueryRequest, AXPReqexValidationRule, AXPRequiredValidationRule, AXPSafeIntegrationConnectionDto, AXPSortDefinition, AXPSortQuery, AXPSpreadsheetCellValue, AXPSpreadsheetData, AXPStatusDefinition, AXPStatusTransition, AXPStringValidationRules, AXPSystemAction, AXPTaskType, AXPUserReference, AXPValidationRule, AXPValidationRules, AXPValueTransformerFunction, AXPValueTransformerFunctions, AXPValueUnit, AXPValueUnits, AXPViewBlockDefinition, AXPViewDefinition, AXPViewFieldDefinition, AXPViewQuery, AXPWidgetNode, AXPWidgetRenderMode, AXPWidgetTrigger, AXPWidgetTriggers, AXPWorkflowActivityInstance, AXPWorkflowBinding, AXPWorkflowCategory, AXPWorkflowContinuationBeforeInteractive, AXPWorkflowContinuationMetadata, AXPWorkflowDefinition, AXPWorkflowExtensions, AXPWorkflowFaultState, AXPWorkflowGraph, AXPWorkflowInstance, AXPWorkflowOutputProperty, AXPWorkflowState, AXPWorkflowStatus, AXPWorkflowSubStatus, AXPopupSizeType, AXStyleColorType };
3326
+ export { AXPContextChangeEvent, AXPDataGenerator, AXPExportTemplateToken, AXPFileStorageStatus, AXPIntegrationExpiredError, AXPIntegrationMissingScopeError, AXPIntegrationNotConnectedError, AXPPlatformCoreDataSourceKeys, AXPPlatformScope, AXPRegionalSetting, AXPStatusProvider, AXPSystemActionType, AXPSystemActions, AXPSystemStatusType, AXPSystemStatuses, AXPWidgetsCatalog, AXPWidgetsList, AXP_INTEGRATION_AUTH_METHOD_TYPE, AXP_INTEGRATION_CAPABILITY, AXP_INTEGRATION_CATEGORY, AXP_INTEGRATION_CONNECTION_SCOPE, AXP_INTEGRATION_CONNECTION_STATUS, AXP_PREVIEW_WIDGET_FIELD_COMMAND_KEY, buildLocaleTextMapValue, captureFormContextBaseline, cleanDeep, coerceUnknownToBoolean, coerceUnknownToDate, coerceUnknownToFiniteNumber, coerceUnknownToTrimmedString, compareMultiLanguageStrings, containsHtmlMarkup, createMultiLanguageString, extractNestedFieldsWildcard, extractTextFromHtml, extractValue, generateKebabCase, getActionButton, getChangedPaths, getDetailedChanges, getEnumValues, getNestedKeys, getSmart, getStatusInfo, getSystemActions, getSystemStatus, isFormContextDirty, isFormValueEqual, isLocaleStringMap, isSelectionValueEqual, normalizeDefinitionCategories, resolveActionLook, resolveMultiLanguageString, resolvePlatformScopeKey, resolvePlatformScopeName, resolveStatusLook, searchInMultiLanguageString, setSmart, shouldRestoreSavedMultiLanguageShape, shouldUseLocaleMapShape, sortByMultiLanguageString, summarizeFormContextDirtyDiff, systemStatusToDefinition, unwrapValueProperty };
3327
+ export type { AXDataSourceFilterOption, AXDataSourceOperator, AXDataSourceOperatorType, AXDataSourceSortOption, AXFilterLogic, AXPActionMenuItem, AXPActivityCategory, AXPActivityDefinition, AXPActivityDefinitionCategoryRef, AXPActivityDefinitionQueryResult, AXPActivityExecutionContextState, AXPActivityIncident, AXPActivityStatus, AXPActivityVariable, AXPAddressData, AXPAddressLabel, AXPAddressMode, AXPAgentOutputKind, AXPApplicationUserReference, AXPBackButton, AXPBadge, AXPBookmark, AXPBreadcrumbItem, AXPCategorizedEntity, AXPCategorizedEntityDto, AXPCategoryEntity, AXPCategoryEntityWithItems, AXPCategoryListItem, AXPColumnQuery, AXPCommandMessage, AXPCompletionCallbackState, AXPConnection, AXPContent, AXPContentDirection, AXPContentType, AXPContextData, AXPContextPatchOptions, AXPContextState, AXPContextUpdateOptions, AXPContextUpdateOrigin, AXPDataType, AXPDefinitionCategory, AXPElsaWorkflowExtensions, AXPEntityOp, AXPEntityReference, AXPEqualValidationRule, AXPExceptionState, AXPExecuteCommand, AXPExecuteCommandResult, AXPExportCsvOptions, AXPExportExcelOptions, AXPExportOptions, AXPExportPdfOptions, AXPExportPrintOptions, AXPExpression, AXPFileListItem, AXPFileManyStorageInfo, AXPFileSource, AXPFileStatus, AXPFileStorageCreateRequest, AXPFileStorageFindRequest, AXPFileStorageInfo, AXPFileStorageUpdateRequest, AXPFilterClause, AXPFilterDefinition, AXPFilterQuery, AXPFilterTriggerDefinition, AXPFlowDirection, AXPGridLayoutOptions, AXPGridPlacement, AXPIntegrationApiTokenAuthMethodDefinition, AXPIntegrationApiTokenSecretPayload, AXPIntegrationAuthContext, AXPIntegrationAuthFieldDefinition, AXPIntegrationAuthMethodDefinition, AXPIntegrationAuthMethodType, AXPIntegrationBasicAuthMethodDefinition, AXPIntegrationBasicSecretPayload, AXPIntegrationCapability, AXPIntegrationCategory, AXPIntegrationConnectionScope, AXPIntegrationConnectionStatus, AXPIntegrationOAuth2AuthMethodDefinition, AXPIntegrationOAuthSecretPayload, AXPIntegrationPatAuthMethodDefinition, AXPIntegrationPatSecretPayload, AXPIntegrationProviderDefinition, AXPIntegrationProviderListItemDto, AXPIntegrationProviderRuntimeHooks, AXPIntegrationResolvedCredentials, AXPIntegrationRuntimeContext, AXPIntegrationSecretPayload, AXPIntegrationValidationResult, AXPLogoConfig, AXPMaxLengthValidationRule, AXPMaybePromise, AXPMetaData, AXPMetaDataDefinition, AXPMetaDataFeatures, AXPMiddlewareErrorResponse, AXPMinLengthValidationRule, AXPMultiLanguageString, AXPMultiSourceRef, AXPOptionsData, AXPOutputTranscriptSegmentId, AXPPageStatus, AXPPagedListResult, AXPPartialNested, AXPPlatformScopeKey, AXPProperty, AXPPropertyGroup, AXPPropertyInterface, AXPQueryFetchResult, AXPQueryRequest, AXPReqexValidationRule, AXPRequiredValidationRule, AXPSafeIntegrationConnectionDto, AXPSortDefinition, AXPSortQuery, AXPSpreadsheetCellValue, AXPSpreadsheetData, AXPStatusDefinition, AXPStatusTransition, AXPStringValidationRules, AXPSystemAction, AXPTaskType, AXPUserReference, AXPValidationRule, AXPValidationRules, AXPValueTransformerFunction, AXPValueTransformerFunctions, AXPValueUnit, AXPValueUnits, AXPViewBlockDefinition, AXPViewDefinition, AXPViewFieldDefinition, AXPViewQuery, AXPWidgetNode, AXPWidgetRenderMode, AXPWidgetTrigger, AXPWidgetTriggers, AXPWorkflowActivityInstance, AXPWorkflowBinding, AXPWorkflowCategory, AXPWorkflowContinuationBeforeInteractive, AXPWorkflowContinuationMetadata, AXPWorkflowDefinition, AXPWorkflowExtensions, AXPWorkflowFaultState, AXPWorkflowGraph, AXPWorkflowInstance, AXPWorkflowOutputProperty, AXPWorkflowState, AXPWorkflowStatus, AXPWorkflowSubStatus, AXPopupSizeType, AXStyleColorType, FormContextDirtyDiffEntry };