@adaptabletools/adaptable 16.0.1-canary.0 → 16.0.1-canary.1

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 (60) hide show
  1. package/bundle.cjs.js +162 -164
  2. package/package.json +1 -1
  3. package/publishTimestamp.d.ts +1 -1
  4. package/publishTimestamp.js +1 -1
  5. package/src/AdaptableInterfaces/IAdaptable.d.ts +2 -1
  6. package/src/AdaptableOptions/AdaptableOptions.d.ts +6 -1
  7. package/src/AdaptableOptions/CalendarOptions.d.ts +3 -3
  8. package/src/AdaptableOptions/CommentsOptions.d.ts +23 -0
  9. package/src/AdaptableOptions/Fdc3Options.d.ts +54 -47
  10. package/src/AdaptableOptions/FilterOptions.d.ts +7 -2
  11. package/src/AdaptableOptions/FinancePluginOptions.d.ts +2 -306
  12. package/src/AdaptableOptions/OpenFinPluginOptions.d.ts +0 -6
  13. package/src/AdaptableOptions/UserInterfaceOptions.d.ts +0 -17
  14. package/src/Api/CommentsApi.d.ts +6 -6
  15. package/src/Api/EventApi.d.ts +2 -14
  16. package/src/Api/GridApi.d.ts +13 -13
  17. package/src/Api/Implementation/ApiBase.d.ts +2 -0
  18. package/src/Api/Implementation/ApiBase.js +3 -0
  19. package/src/Api/Implementation/CalendarApiImpl.js +1 -2
  20. package/src/Api/Implementation/CommentsApiImpl.d.ts +3 -3
  21. package/src/Api/Implementation/CommentsApiImpl.js +3 -3
  22. package/src/Api/Implementation/GridApiImpl.js +2 -2
  23. package/src/Api/Implementation/OptionsApiImpl.d.ts +2 -1
  24. package/src/Api/Implementation/OptionsApiImpl.js +3 -0
  25. package/src/Api/Implementation/PluginsApiImpl.d.ts +0 -2
  26. package/src/Api/Implementation/PluginsApiImpl.js +0 -6
  27. package/src/Api/Internal/AdaptableInternalApi.js +1 -1
  28. package/src/Api/Internal/Fdc3InternalApi.js +2 -2
  29. package/src/Api/OptionsApi.d.ts +5 -1
  30. package/src/Api/PluginsApi.d.ts +0 -5
  31. package/src/PredefinedConfig/CommentsState.d.ts +30 -3
  32. package/src/PredefinedConfig/Common/Entitlement.d.ts +1 -1
  33. package/src/PredefinedConfig/Common/Fdc3Context.d.ts +6 -0
  34. package/src/PredefinedConfig/SystemState.d.ts +2 -2
  35. package/src/Redux/ActionsReducers/SystemRedux.d.ts +4 -4
  36. package/src/Strategy/CommentsModule.d.ts +2 -2
  37. package/src/Strategy/CommentsModule.js +11 -11
  38. package/src/Strategy/Fdc3Module.d.ts +0 -1
  39. package/src/Strategy/Fdc3Module.js +0 -3
  40. package/src/Utilities/Constants/GeneralConstants.d.ts +0 -1
  41. package/src/Utilities/Constants/GeneralConstants.js +2 -3
  42. package/src/Utilities/Defaults/DefaultAdaptableOptions.js +1 -1
  43. package/src/View/AdaptableWizardView/AdaptableConfigurationDialog/ConfigurationWizard.js +10 -7
  44. package/src/View/AdaptableWizardView/AdaptableConfigurationDialog/FinanceForm/FinanceForm.d.ts +1 -7
  45. package/src/View/AdaptableWizardView/AdaptableConfigurationDialog/FinanceForm/FinanceForm.js +621 -268
  46. package/src/View/Comments/CommentPopup.js +5 -5
  47. package/src/agGrid/Adaptable.d.ts +2 -1
  48. package/src/agGrid/Adaptable.js +5 -1
  49. package/src/agGrid/attachAddaptableColumnTypes.js +1 -0
  50. package/src/metamodel/adaptable.metamodel.d.ts +41 -411
  51. package/src/metamodel/adaptable.metamodel.js +1 -1
  52. package/src/types.d.ts +4 -6
  53. package/version.d.ts +1 -1
  54. package/version.js +1 -1
  55. package/src/Api/FinanceApi.d.ts +0 -125
  56. package/src/PredefinedConfig/Common/FDC3Context_DEPR.d.ts +0 -246
  57. package/src/PredefinedConfig/Common/FDC3Context_DEPR.js +0 -2
  58. package/src/View/AdaptableWizardView/AdaptableConfigurationDialog/FinanceForm/index.d.ts +0 -1
  59. package/src/View/AdaptableWizardView/AdaptableConfigurationDialog/FinanceForm/index.js +0 -5
  60. /package/src/{Api/FinanceApi.js → AdaptableOptions/CommentsOptions.js} +0 -0
@@ -38,12 +38,12 @@ const CommentPopup = () => {
38
38
  const { api } = (0, AdaptableContext_1.useAdaptable)();
39
39
  const cellPopupRef = React.useRef(null);
40
40
  const editMode = (0, react_redux_1.useSelector)((state) => (0, SystemRedux_1.SystemCommentsEditModeSelector)(state.System));
41
- const commentPosition = (0, react_redux_1.useSelector)((state) => (0, SystemRedux_1.SystemCommentsSelector)(state.System));
41
+ const commentGridCell = (0, react_redux_1.useSelector)((state) => (0, SystemRedux_1.SystemCommentsSelector)(state.System));
42
42
  const [
43
43
  // Only handle first comment for now
44
44
  // Later we can handle multiple comments
45
45
  comment,] = (0, react_redux_1.useSelector)((state) => {
46
- return commentPosition ? (0, CommentsRedux_1.GetCommentsSelector)(state.Comments, commentPosition) : [];
46
+ return commentGridCell ? (0, CommentsRedux_1.GetCommentsSelector)(state.Comments, commentGridCell) : [];
47
47
  });
48
48
  const handleCommentChange = (value) => {
49
49
  api.commentsApi.updateCommentText(value, comment);
@@ -51,14 +51,14 @@ const CommentPopup = () => {
51
51
  const isReadonly = api.entitlementApi.isModuleReadOnlyEntitlement('Comments');
52
52
  const enableEditMode = () => {
53
53
  if (!editMode) {
54
- api.commentsApi.showComment(commentPosition, true);
54
+ api.commentsApi.showComment(commentGridCell, true);
55
55
  cellPopupRef === null || cellPopupRef === void 0 ? void 0 : cellPopupRef.current.refreshContent();
56
56
  }
57
57
  };
58
- if (!commentPosition) {
58
+ if (!commentGridCell) {
59
59
  return React.createElement(React.Fragment, null);
60
60
  }
61
- return (React.createElement(CellPopup_1.CellPopup, { ref: cellPopupRef, key: `${commentPosition.PrimaryKeyValue}-${commentPosition.ColumnId}`, isOpen: true, primaryKeyValue: commentPosition.PrimaryKeyValue, columnId: commentPosition.ColumnId },
61
+ return (React.createElement(CellPopup_1.CellPopup, { ref: cellPopupRef, key: `${commentGridCell.PrimaryKeyValue}-${commentGridCell.ColumnId}`, isOpen: true, primaryKeyValue: commentGridCell.PrimaryKeyValue, columnId: commentGridCell.ColumnId },
62
62
  React.createElement(rebass_1.Flex, { onClick: () => enableEditMode(), flexDirection: "column", className: "ab-CommentPopup" },
63
63
  React.createElement(CommentEditor, { isReadonly: isReadonly, editMode: editMode, key: comment === null || comment === void 0 ? void 0 : comment.Uuid, onClose: () => api.commentsApi.hideComment(), comment: (_a = comment === null || comment === void 0 ? void 0 : comment.Value) !== null && _a !== void 0 ? _a : '', onCommentChange: (value) => handleCommentChange(value) }))));
64
64
  };
@@ -377,7 +377,8 @@ export declare class Adaptable implements IAdaptable {
377
377
  autoSizeAllColumns(): void;
378
378
  setColumnSort(columnSorts: ColumnSort[]): void;
379
379
  clearColumnSort(): void;
380
- setDataSource(dataSource: any[]): void;
380
+ setGridData(dataSource: any[]): void;
381
+ setInitialGridData(dataSource: any[]): void;
381
382
  getGridData(): any[];
382
383
  getFilteredData(): any[];
383
384
  updateRows(dataRows: any[], dataUpdateConfig?: DataUpdateConfig): Promise<IRowNode[]>;
@@ -4271,7 +4271,7 @@ class Adaptable {
4271
4271
  clearColumnSort() {
4272
4272
  this.setColumnSort(null);
4273
4273
  }
4274
- setDataSource(dataSource) {
4274
+ setGridData(dataSource) {
4275
4275
  if (!this.gridOptions.api) {
4276
4276
  return;
4277
4277
  }
@@ -4282,6 +4282,10 @@ class Adaptable {
4282
4282
  this.updateColumnDataTypeIfRowDataIsEmpty();
4283
4283
  this.updateRowGroupsExpandedState();
4284
4284
  }
4285
+ setInitialGridData(dataSource) {
4286
+ this.setGridData(dataSource);
4287
+ this.setupColumns();
4288
+ }
4285
4289
  getGridData() {
4286
4290
  var _a;
4287
4291
  const data = [];
@@ -7,6 +7,7 @@ const attachColumnTypes = (gridOptions) => {
7
7
  gridOptions.columnTypes = (_a = gridOptions.columnTypes) !== null && _a !== void 0 ? _a : {};
8
8
  return Object.assign(gridOptions.columnTypes, {
9
9
  [GeneralConstants_1.AB_SPECIAL_COLUMN]: {},
10
+ [GeneralConstants_1.AB_FDC3_COLUMN]: {},
10
11
  abColDefNumber: (_b = gridOptions.columnTypes.abColDefNumber) !== null && _b !== void 0 ? _b : {},
11
12
  abColDefString: (_c = gridOptions.columnTypes.abColDefString) !== null && _c !== void 0 ? _c : {},
12
13
  abColDefBoolean: (_d = gridOptions.columnTypes.abColDefBoolean) !== null && _d !== void 0 ? _d : {},
@@ -38,6 +38,18 @@ export declare const ADAPTABLE_METAMODEL: {
38
38
  desc: string;
39
39
  }[];
40
40
  };
41
+ ActionColumnDefaultConfiguration: {
42
+ name: string;
43
+ kind: string;
44
+ desc: string;
45
+ props: {
46
+ name: string;
47
+ kind: string;
48
+ desc: string;
49
+ isOpt: boolean;
50
+ defVal: string;
51
+ }[];
52
+ };
41
53
  ActionColumnOptions: {
42
54
  name: string;
43
55
  kind: string;
@@ -316,6 +328,11 @@ export declare const ADAPTABLE_METAMODEL: {
316
328
  name: string;
317
329
  kind: string;
318
330
  desc: string;
331
+ props: {
332
+ name: string;
333
+ kind: string;
334
+ desc: string;
335
+ }[];
319
336
  };
320
337
  AdaptableComparerFunction: {
321
338
  name: string;
@@ -373,30 +390,6 @@ export declare const ADAPTABLE_METAMODEL: {
373
390
  desc: string;
374
391
  }[];
375
392
  };
376
- AdaptableFDC3EventInfo: {
377
- name: string;
378
- kind: string;
379
- desc: string;
380
- props: ({
381
- name: string;
382
- kind: string;
383
- desc: string;
384
- ref: string;
385
- isOpt?: undefined;
386
- } | {
387
- name: string;
388
- kind: string;
389
- desc: string;
390
- ref?: undefined;
391
- isOpt?: undefined;
392
- } | {
393
- name: string;
394
- kind: string;
395
- desc: string;
396
- isOpt: boolean;
397
- ref?: undefined;
398
- })[];
399
- };
400
393
  AdaptableFlashingCell: {
401
394
  name: string;
402
395
  kind: string;
@@ -635,18 +628,18 @@ export declare const ADAPTABLE_METAMODEL: {
635
628
  kind: string;
636
629
  desc: string;
637
630
  isOpt: boolean;
638
- noCode: string;
639
631
  ref: string;
640
632
  gridInfo?: undefined;
633
+ noCode?: undefined;
641
634
  defVal?: undefined;
642
635
  } | {
643
636
  name: string;
644
637
  kind: string;
645
638
  desc: string;
646
639
  isOpt: boolean;
640
+ noCode: string;
647
641
  ref: string;
648
642
  gridInfo?: undefined;
649
- noCode?: undefined;
650
643
  defVal?: undefined;
651
644
  } | {
652
645
  name: string;
@@ -1703,34 +1696,12 @@ export declare const ADAPTABLE_METAMODEL: {
1703
1696
  ref: string;
1704
1697
  })[];
1705
1698
  };
1706
- CommentsState: {
1699
+ CommentGridCell: {
1707
1700
  name: string;
1708
1701
  kind: string;
1709
1702
  desc: string;
1710
- props: {
1711
- name: string;
1712
- kind: string;
1713
- desc: string;
1714
- isOpt: boolean;
1715
- ref: string;
1716
- }[];
1717
1703
  };
1718
- CommmentableCellContext: {
1719
- name: string;
1720
- kind: string;
1721
- desc: string;
1722
- props: {
1723
- name: string;
1724
- kind: string;
1725
- desc: string;
1726
- }[];
1727
- };
1728
- CompatibleContext: {
1729
- name: string;
1730
- kind: string;
1731
- desc: string;
1732
- };
1733
- ConfigState: {
1704
+ CommentOptions: {
1734
1705
  name: string;
1735
1706
  kind: string;
1736
1707
  desc: string;
@@ -1741,65 +1712,43 @@ export declare const ADAPTABLE_METAMODEL: {
1741
1712
  isOpt: boolean;
1742
1713
  }[];
1743
1714
  };
1744
- ContactColumn: {
1715
+ CommentsState: {
1745
1716
  name: string;
1746
1717
  kind: string;
1747
1718
  desc: string;
1748
- props: ({
1749
- name: string;
1750
- kind: string;
1751
- desc: string;
1752
- isOpt: boolean;
1753
- ref?: undefined;
1754
- } | {
1719
+ props: {
1755
1720
  name: string;
1756
1721
  kind: string;
1757
1722
  desc: string;
1758
1723
  isOpt: boolean;
1759
1724
  ref: string;
1760
- })[];
1725
+ }[];
1761
1726
  };
1762
- ContactContextDepr: {
1727
+ CommmentableCellContext: {
1763
1728
  name: string;
1764
1729
  kind: string;
1765
1730
  desc: string;
1766
- props: ({
1767
- name: string;
1768
- kind: string;
1769
- desc: string;
1770
- isOpt: boolean;
1771
- } | {
1731
+ props: {
1772
1732
  name: string;
1773
1733
  kind: string;
1774
1734
  desc: string;
1775
- isOpt?: undefined;
1776
- })[];
1777
- };
1778
- ContactIntent: {
1779
- name: string;
1780
- kind: string;
1781
- desc: string;
1735
+ }[];
1782
1736
  };
1783
- ContactIntents: {
1737
+ CompatibleContext: {
1784
1738
  name: string;
1785
1739
  kind: string;
1786
1740
  desc: string;
1787
1741
  };
1788
- ContactListContextDepr: {
1742
+ ConfigState: {
1789
1743
  name: string;
1790
1744
  kind: string;
1791
1745
  desc: string;
1792
- props: ({
1746
+ props: {
1793
1747
  name: string;
1794
1748
  kind: string;
1795
1749
  desc: string;
1796
1750
  isOpt: boolean;
1797
- } | {
1798
- name: string;
1799
- kind: string;
1800
- desc: string;
1801
- isOpt?: undefined;
1802
- })[];
1751
+ }[];
1803
1752
  };
1804
1753
  ContainerOptions: {
1805
1754
  name: string;
@@ -1814,11 +1763,6 @@ export declare const ADAPTABLE_METAMODEL: {
1814
1763
  defVal: string;
1815
1764
  }[];
1816
1765
  };
1817
- ContextDataDepr: {
1818
- name: string;
1819
- kind: string;
1820
- desc: string;
1821
- };
1822
1766
  ContextMenuContext: {
1823
1767
  name: string;
1824
1768
  kind: string;
@@ -1835,50 +1779,6 @@ export declare const ADAPTABLE_METAMODEL: {
1835
1779
  ref: string;
1836
1780
  })[];
1837
1781
  };
1838
- CountryColumn: {
1839
- name: string;
1840
- kind: string;
1841
- desc: string;
1842
- props: ({
1843
- name: string;
1844
- kind: string;
1845
- desc: string;
1846
- isOpt: boolean;
1847
- ref: string;
1848
- } | {
1849
- name: string;
1850
- kind: string;
1851
- desc: string;
1852
- isOpt: boolean;
1853
- ref?: undefined;
1854
- })[];
1855
- };
1856
- CountryContextDepr: {
1857
- name: string;
1858
- kind: string;
1859
- desc: string;
1860
- props: ({
1861
- name: string;
1862
- kind: string;
1863
- desc: string;
1864
- isOpt: boolean;
1865
- } | {
1866
- name: string;
1867
- kind: string;
1868
- desc: string;
1869
- isOpt?: undefined;
1870
- })[];
1871
- };
1872
- CountryIntent: {
1873
- name: string;
1874
- kind: string;
1875
- desc: string;
1876
- };
1877
- CountryIntents: {
1878
- name: string;
1879
- kind: string;
1880
- desc: string;
1881
- };
1882
1782
  CreateActionRowFormContext: {
1883
1783
  name: string;
1884
1784
  kind: string;
@@ -1951,26 +1851,6 @@ export declare const ADAPTABLE_METAMODEL: {
1951
1851
  ref?: undefined;
1952
1852
  })[];
1953
1853
  };
1954
- CustomFDC3Column: {
1955
- name: string;
1956
- kind: string;
1957
- desc: string;
1958
- props: {
1959
- name: string;
1960
- kind: string;
1961
- desc: string;
1962
- }[];
1963
- };
1964
- CustomFDC3Context: {
1965
- name: string;
1966
- kind: string;
1967
- desc: string;
1968
- };
1969
- CustomFDC3Intent_Depr: {
1970
- name: string;
1971
- kind: string;
1972
- desc: string;
1973
- };
1974
1854
  CustomIcon: {
1975
1855
  name: string;
1976
1856
  kind: string;
@@ -2753,47 +2633,12 @@ export declare const ADAPTABLE_METAMODEL: {
2753
2633
  isOpt?: undefined;
2754
2634
  })[];
2755
2635
  };
2756
- FDC3Column_Depr: {
2636
+ Fdc3Context: {
2757
2637
  name: string;
2758
2638
  kind: string;
2759
2639
  desc: string;
2760
- props: ({
2761
- name: string;
2762
- kind: string;
2763
- desc: string;
2764
- isOpt: boolean;
2765
- } | {
2766
- name: string;
2767
- kind: string;
2768
- desc: string;
2769
- isOpt?: undefined;
2770
- })[];
2771
2640
  };
2772
- FDC3Context_DEPR: {
2773
- name: string;
2774
- kind: string;
2775
- desc: string;
2776
- props: ({
2777
- name: string;
2778
- kind: string;
2779
- desc: string;
2780
- isOpt?: undefined;
2781
- ref?: undefined;
2782
- } | {
2783
- name: string;
2784
- kind: string;
2785
- desc: string;
2786
- isOpt: boolean;
2787
- ref?: undefined;
2788
- } | {
2789
- name: string;
2790
- kind: string;
2791
- desc: string;
2792
- ref: string;
2793
- isOpt?: undefined;
2794
- })[];
2795
- };
2796
- FDC3ContextTypeDepr: {
2641
+ Fdc3ContextType: {
2797
2642
  name: string;
2798
2643
  kind: string;
2799
2644
  desc: string;
@@ -2803,21 +2648,6 @@ export declare const ADAPTABLE_METAMODEL: {
2803
2648
  kind: string;
2804
2649
  desc: string;
2805
2650
  };
2806
- FDC3DesktopAgent: {
2807
- name: string;
2808
- kind: string;
2809
- desc: string;
2810
- props: {
2811
- name: string;
2812
- kind: string;
2813
- desc: string;
2814
- }[];
2815
- };
2816
- FDC3Intent_Depr: {
2817
- name: string;
2818
- kind: string;
2819
- desc: string;
2820
- };
2821
2651
  Fdc3IntentType: {
2822
2652
  name: string;
2823
2653
  kind: string;
@@ -2832,22 +2662,22 @@ export declare const ADAPTABLE_METAMODEL: {
2832
2662
  kind: string;
2833
2663
  desc: string;
2834
2664
  isOpt: boolean;
2665
+ ref: string;
2835
2666
  defVal?: undefined;
2836
- ref?: undefined;
2837
2667
  } | {
2838
2668
  name: string;
2839
2669
  kind: string;
2840
2670
  desc: string;
2841
2671
  isOpt: boolean;
2842
- defVal: string;
2843
2672
  ref?: undefined;
2673
+ defVal?: undefined;
2844
2674
  } | {
2845
2675
  name: string;
2846
2676
  kind: string;
2847
2677
  desc: string;
2848
2678
  isOpt: boolean;
2849
- ref: string;
2850
- defVal?: undefined;
2679
+ defVal: string;
2680
+ ref?: undefined;
2851
2681
  })[];
2852
2682
  };
2853
2683
  FilterActionOnDataChange: {
@@ -2912,27 +2742,27 @@ export declare const ADAPTABLE_METAMODEL: {
2912
2742
  kind: string;
2913
2743
  desc: string;
2914
2744
  isOpt: boolean;
2745
+ noCode: string;
2915
2746
  defVal: string;
2916
2747
  gridInfo?: undefined;
2917
- noCode?: undefined;
2918
2748
  ref?: undefined;
2919
2749
  } | {
2920
2750
  name: string;
2921
2751
  kind: string;
2922
2752
  desc: string;
2923
2753
  isOpt: boolean;
2754
+ defVal: string;
2924
2755
  gridInfo?: undefined;
2925
2756
  noCode?: undefined;
2926
- defVal?: undefined;
2927
2757
  ref?: undefined;
2928
2758
  } | {
2929
2759
  name: string;
2930
2760
  kind: string;
2931
2761
  desc: string;
2932
2762
  isOpt: boolean;
2933
- noCode: string;
2934
- defVal: string;
2935
2763
  gridInfo?: undefined;
2764
+ noCode?: undefined;
2765
+ defVal?: undefined;
2936
2766
  ref?: undefined;
2937
2767
  })[];
2938
2768
  };
@@ -2964,24 +2794,6 @@ export declare const ADAPTABLE_METAMODEL: {
2964
2794
  desc: string;
2965
2795
  }[];
2966
2796
  };
2967
- FinancePluginOptions: {
2968
- name: string;
2969
- kind: string;
2970
- desc: string;
2971
- props: ({
2972
- name: string;
2973
- kind: string;
2974
- desc: string;
2975
- isOpt: boolean;
2976
- defVal: string;
2977
- } | {
2978
- name: string;
2979
- kind: string;
2980
- desc: string;
2981
- isOpt: boolean;
2982
- defVal?: undefined;
2983
- })[];
2984
- };
2985
2797
  FinsemblePluginOptions: {
2986
2798
  name: string;
2987
2799
  kind: string;
@@ -3449,66 +3261,6 @@ export declare const ADAPTABLE_METAMODEL: {
3449
3261
  kind: string;
3450
3262
  desc: string;
3451
3263
  };
3452
- InstrumentColumn: {
3453
- name: string;
3454
- kind: string;
3455
- desc: string;
3456
- props: ({
3457
- name: string;
3458
- kind: string;
3459
- desc: string;
3460
- isOpt: boolean;
3461
- ref?: undefined;
3462
- } | {
3463
- name: string;
3464
- kind: string;
3465
- desc: string;
3466
- isOpt: boolean;
3467
- ref: string;
3468
- })[];
3469
- };
3470
- InstrumentContextDepr: {
3471
- name: string;
3472
- kind: string;
3473
- desc: string;
3474
- props: ({
3475
- name: string;
3476
- kind: string;
3477
- desc: string;
3478
- isOpt: boolean;
3479
- } | {
3480
- name: string;
3481
- kind: string;
3482
- desc: string;
3483
- isOpt?: undefined;
3484
- })[];
3485
- };
3486
- InstrumentIntent: {
3487
- name: string;
3488
- kind: string;
3489
- desc: string;
3490
- };
3491
- InstrumentIntents: {
3492
- name: string;
3493
- kind: string;
3494
- desc: string;
3495
- };
3496
- InstrumentListContextDepr: {
3497
- name: string;
3498
- kind: string;
3499
- desc: string;
3500
- props: ({
3501
- name: string;
3502
- kind: string;
3503
- desc: string;
3504
- isOpt: boolean;
3505
- } | {
3506
- name: string;
3507
- kind: string;
3508
- desc: string;
3509
- isOpt?: undefined;
3510
- })[];
3511
- };
3512
3264
  IPushPullDomain: {
3513
3265
  name: string;
3514
3266
  kind: string;
@@ -3889,50 +3641,6 @@ export declare const ADAPTABLE_METAMODEL: {
3889
3641
  kind: string;
3890
3642
  desc: string;
3891
3643
  };
3892
- OrganizationColumn: {
3893
- name: string;
3894
- kind: string;
3895
- desc: string;
3896
- props: ({
3897
- name: string;
3898
- kind: string;
3899
- desc: string;
3900
- isOpt: boolean;
3901
- ref?: undefined;
3902
- } | {
3903
- name: string;
3904
- kind: string;
3905
- desc: string;
3906
- isOpt: boolean;
3907
- ref: string;
3908
- })[];
3909
- };
3910
- OrganizationContextDepr: {
3911
- name: string;
3912
- kind: string;
3913
- desc: string;
3914
- props: ({
3915
- name: string;
3916
- kind: string;
3917
- desc: string;
3918
- isOpt: boolean;
3919
- } | {
3920
- name: string;
3921
- kind: string;
3922
- desc: string;
3923
- isOpt?: undefined;
3924
- })[];
3925
- };
3926
- OrganizationIntent: {
3927
- name: string;
3928
- kind: string;
3929
- desc: string;
3930
- };
3931
- OrganizationIntents: {
3932
- name: string;
3933
- kind: string;
3934
- desc: string;
3935
- };
3936
3644
  PercentBarStyle: {
3937
3645
  name: string;
3938
3646
  kind: string;
@@ -4025,74 +3733,6 @@ export declare const ADAPTABLE_METAMODEL: {
4025
3733
  isOpt: boolean;
4026
3734
  }[];
4027
3735
  };
4028
- PortfolioContextDepr: {
4029
- name: string;
4030
- kind: string;
4031
- desc: string;
4032
- props: ({
4033
- name: string;
4034
- kind: string;
4035
- desc: string;
4036
- isOpt: boolean;
4037
- } | {
4038
- name: string;
4039
- kind: string;
4040
- desc: string;
4041
- isOpt?: undefined;
4042
- })[];
4043
- };
4044
- PositionColumn: {
4045
- name: string;
4046
- kind: string;
4047
- desc: string;
4048
- props: ({
4049
- name: string;
4050
- kind: string;
4051
- desc: string;
4052
- isOpt?: undefined;
4053
- ref?: undefined;
4054
- } | {
4055
- name: string;
4056
- kind: string;
4057
- desc: string;
4058
- isOpt: boolean;
4059
- ref: string;
4060
- })[];
4061
- };
4062
- PositionContextDepr: {
4063
- name: string;
4064
- kind: string;
4065
- desc: string;
4066
- props: ({
4067
- name: string;
4068
- kind: string;
4069
- desc: string;
4070
- isOpt?: undefined;
4071
- ref?: undefined;
4072
- } | {
4073
- name: string;
4074
- kind: string;
4075
- desc: string;
4076
- isOpt: boolean;
4077
- ref?: undefined;
4078
- } | {
4079
- name: string;
4080
- kind: string;
4081
- desc: string;
4082
- ref: string;
4083
- isOpt?: undefined;
4084
- })[];
4085
- };
4086
- PositionIntent: {
4087
- name: string;
4088
- kind: string;
4089
- desc: string;
4090
- };
4091
- PositionIntents: {
4092
- name: string;
4093
- kind: string;
4094
- desc: string;
4095
- };
4096
3736
  PredefinedConfig: {
4097
3737
  name: string;
4098
3738
  kind: string;
@@ -4241,16 +3881,6 @@ export declare const ADAPTABLE_METAMODEL: {
4241
3881
  ref: string;
4242
3882
  })[];
4243
3883
  };
4244
- RaiseFDC3IntentContext: {
4245
- name: string;
4246
- kind: string;
4247
- desc: string;
4248
- props: {
4249
- name: string;
4250
- kind: string;
4251
- desc: string;
4252
- }[];
4253
- };
4254
3884
  RangeValueType: {
4255
3885
  name: string;
4256
3886
  kind: string;