mdt-client 31.3.46 → 31.3.47

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 (354) hide show
  1. package/dist/index.d.ts +11 -10
  2. package/dist/index.js +16 -16
  3. package/package.json +38 -38
  4. package/readme.md +15 -15
  5. package/types/_core/scripts/common/Datasource.d.ts +9 -0
  6. package/types/_core/scripts/common/Field.d.ts +51 -0
  7. package/types/_core/scripts/common/FieldSettings.schema.d.ts +17 -0
  8. package/types/_core/scripts/common/MdtField.d.ts +9 -0
  9. package/types/_core/scripts/common/MdtObject.d.ts +7 -0
  10. package/types/_core/scripts/common/Record.d.ts +27 -0
  11. package/types/_core/scripts/common/Table.d.ts +66 -0
  12. package/types/_core/scripts/common/form/tabs/TabsFormExtenderOptions.d.ts +12 -0
  13. package/types/_core/scripts/common/list/aggregation/AggregayionTypes.d.ts +2 -0
  14. package/types/_core/scripts/common/list/cacheUpdateTime/CacheUpdateTimePublicOptions.d.ts +6 -0
  15. package/types/_core/scripts/common/list/cellControlExtender/CellControlExtender.d.ts +1 -0
  16. package/types/_core/scripts/common/list/columnMenu/ColumnMenuOptions.d.ts +17 -0
  17. package/types/_core/scripts/common/list/columnMenu/QuickFilterOptions.d.ts +7 -0
  18. package/types/_core/scripts/common/list/columnMenu/ValuesFilterOptions.d.ts +24 -0
  19. package/types/_core/scripts/common/list/form/FormListPublicOptions.d.ts +40 -0
  20. package/types/_core/scripts/common/list/gallery/GalleryListExtenderPublicOptions.d.ts +11 -0
  21. package/types/_core/scripts/common/list/group/groupTypes.d.ts +177 -0
  22. package/types/_core/scripts/common/list/hierarchy/hierarchyTypes.d.ts +48 -0
  23. package/types/_core/scripts/common/list/historyType/HistoryTypeListExtenderOptions.d.ts +3 -0
  24. package/types/_core/scripts/common/list/labelStyle/LabelStylePublicOptions.d.ts +6 -0
  25. package/types/_core/scripts/common/list/legend/LegendListExtenderOptions.d.ts +8 -0
  26. package/types/_core/scripts/common/list/listView/ListViewListExtenderOptions.d.ts +25 -0
  27. package/types/_core/scripts/common/list/namedFilter/InMemoryNamedFilterOptions.d.ts +23 -0
  28. package/types/_core/scripts/common/list/namedFilter/NamedFilterListExtenderPublicOptions.d.ts +29 -0
  29. package/types/_core/scripts/common/list/reorder/ReorderListExtenderPublicOptions.d.ts +4 -0
  30. package/types/_core/scripts/common/list/select/SelectPublicOptions.d.ts +18 -0
  31. package/types/_core/scripts/common/list/styleField/StyleFieldListExtenderPublicOptions.d.ts +3 -0
  32. package/types/_core/scripts/common/list/toolbar/ToolbarPublicOptions.d.ts +22 -0
  33. package/types/_core/scripts/common/list/virtualScroll/VIrtualScrollPublicOptions.d.ts +7 -0
  34. package/types/_core/scripts/common/serverMessage/ServerMessageTypes.d.ts +17 -0
  35. package/types/_core/scripts/components/baseFormControls/input/inputOptions.d.ts +30 -0
  36. package/types/_core/scripts/components/baseFormControls/maskedInput/MaskFormatter.types.d.ts +2 -0
  37. package/types/_core/scripts/components/button/baseButton/buttonOptions.d.ts +12 -0
  38. package/types/_core/scripts/components/buttonGroup/buttonGroupOptions.d.ts +7 -0
  39. package/types/_core/scripts/components/dropdown/menu/item/dropdownInputItemOptions.d.ts +5 -0
  40. package/types/_core/scripts/components/dropdown/menu/item/dropdownItemWrapOptions.d.ts +19 -0
  41. package/types/_core/scripts/components/dropdown/menuActionItem/dropdownMenuItemOptions.d.ts +32 -0
  42. package/types/_core/scripts/components/form/fieldView/fieldViewOptions.d.ts +13 -0
  43. package/types/_core/scripts/components/form/header/types.d.ts +14 -0
  44. package/types/_core/scripts/components/form/label/labelOptions.d.ts +22 -0
  45. package/types/_core/scripts/components/icon/iconOptions.d.ts +21 -0
  46. package/types/_core/scripts/components/iconButton/iconButtonOptions.d.ts +9 -0
  47. package/types/_core/scripts/components/processPrincipalsList/ProcessPrincipalsListItem.d.ts +5 -0
  48. package/types/_core/scripts/components/resizablePanels/panelTitle/panelTitleOptions.d.ts +16 -0
  49. package/types/_core/scripts/components/resizablePanels/panelToolbar/panelToolbarOptions.d.ts +4 -0
  50. package/types/_core/scripts/components/resizablePanels/resizablePanel/resizablePanelOptions.d.ts +24 -0
  51. package/types/_core/scripts/components/resizablePanels/resizablePanelsOptions.d.ts +22 -0
  52. package/types/_core/scripts/components/textWithIcon/textWithIconOptions.d.ts +16 -0
  53. package/types/_core/scripts/components/toggleablePanels/toggleablePanelsOptions.d.ts +40 -0
  54. package/types/_core/scripts/data/active/ActivationListAdapterTypes.d.ts +6 -0
  55. package/types/_core/scripts/data/fieldFilter/ToolbarFieldFilterOptions.d.ts +21 -0
  56. package/types/_core/scripts/data/periods/helpers/types.d.ts +4 -0
  57. package/types/_core/scripts/datasources/FetchResult.d.ts +5 -0
  58. package/types/_core/scripts/helpers/IUi.d.ts +2 -0
  59. package/types/_core/scripts/helpers/dateUtils.d.ts +23 -0
  60. package/types/_core/scripts/helpers/deleteFromArray.d.ts +1 -0
  61. package/types/_core/scripts/helpers/events/EventEmitter.d.ts +12 -0
  62. package/types/_core/scripts/helpers/fireEvent.d.ts +4 -0
  63. package/types/_core/scripts/helpers/formatOptions.d.ts +16 -0
  64. package/types/_core/scripts/helpers/formattedText.d.ts +8 -0
  65. package/types/_core/scripts/helpers/pipeline/ImmutableArgPipeline.d.ts +8 -0
  66. package/types/_core/scripts/helpers/pipeline/Pipeline.d.ts +20 -0
  67. package/types/_core/scripts/helpers/redraw.d.ts +16 -0
  68. package/types/_core/scripts/helpers/types.d.ts +84 -0
  69. package/types/_core/scripts/helpers/ui/elementModificators/focusableComponent.d.ts +14 -0
  70. package/types/_core/scripts/helpers/ui/elementModificators/modificatorsTypes.d.ts +4 -0
  71. package/types/_core/scripts/helpers/ui/keyboardUtils/getKeySymbol.d.ts +2 -0
  72. package/types/_core/scripts/helpers/ui/keyboardUtils/keyboardUtils.d.ts +23 -0
  73. package/types/_core/scripts/helpers/ui/keyboardUtils/osByUserAgent.d.ts +1 -0
  74. package/types/_core/scripts/helpers/utils/classNames.d.ts +20 -0
  75. package/types/_core/scripts/helpers/utils/keyStorage/KeyStorage.d.ts +6 -0
  76. package/types/_core/scripts/helpers/utils/memoization/memoize.d.ts +18 -0
  77. package/types/_core/scripts/helpers/utils/object.d.ts +4 -0
  78. package/types/_core/scripts/helpers/utils/stringifyControlSize.d.ts +3 -0
  79. package/types/_core/scripts/helpers/utils/valued/getValued.d.ts +18 -0
  80. package/types/_core/scripts/helpers/zone/IZone.d.ts +7 -0
  81. package/types/_core/scripts/security/PermissionLevel.d.ts +40 -0
  82. package/types/_core/scripts/security/User.d.ts +19 -0
  83. package/types/_core/scripts/services/HotkeyManager.d.ts +6 -0
  84. package/types/_core/scripts/services/IFilter.d.ts +322 -0
  85. package/types/_core/scripts/services/ModuleData.d.ts +9 -0
  86. package/types/_core/scripts/services/api/ApiAccessor/apiV1Types.d.ts +266 -0
  87. package/types/_core/scripts/services/api/ApiAccessor/apiV2Types.d.ts +585 -0
  88. package/types/_core/scripts/services/api/ApiAccessor/binding/bindingApiTypes.d.ts +42 -0
  89. package/types/_core/scripts/services/api/ApiAccessor/job/jobApiTypes.d.ts +82 -0
  90. package/types/_core/scripts/services/api/ApiAccessorRequestAdapter/handlers/fetch/helpers/count/count.d.ts +10 -0
  91. package/types/_core/scripts/services/api/ApiAccessorRequestAdapter/handlers/fetch/helpers/query/exts/hierarchy/hierarchyQueryHelpersTypes.d.ts +28 -0
  92. package/types/_core/scripts/services/api/ApiAccessorRequestAdapter/handlers/fetch/helpers/query/exts/placeIn/placeInQueryTypes.d.ts +9 -0
  93. package/types/_core/scripts/services/api/ApiAccessorRequestAdapter/handlers/messageTypes.d.ts +37 -0
  94. package/types/_core/scripts/services/api/ApiAccessorRequestAdapter/message/apiV2MessageTypes.d.ts +2 -0
  95. package/types/_core/scripts/services/api/ApiRequestOptions.d.ts +43 -0
  96. package/types/_core/scripts/services/api/BaseQuery.d.ts +25 -0
  97. package/types/_core/scripts/services/api/Query.d.ts +56 -0
  98. package/types/_core/scripts/services/api/QuerySorting.d.ts +18 -0
  99. package/types/_core/scripts/services/api/ServerResonseType.d.ts +2 -0
  100. package/types/_core/scripts/services/commands/Command.d.ts +22 -0
  101. package/types/_core/scripts/services/commands/CommandGroup.d.ts +15 -0
  102. package/types/_core/scripts/services/commands/CommandManager.d.ts +77 -0
  103. package/types/_core/scripts/services/customModules/facades/Form/IFieldControlFacade.d.ts +26 -0
  104. package/types/_core/scripts/services/customModules/facades/Form/IFieldControlManagerFacade.d.ts +36 -0
  105. package/types/_core/scripts/services/customModules/facades/Form/IFieldStateFacade.d.ts +13 -0
  106. package/types/_core/scripts/services/customModules/facades/Form/IFormControlFacade.d.ts +133 -0
  107. package/types/_core/scripts/services/customModules/facades/Form/IFormFacade.d.ts +102 -0
  108. package/types/_core/scripts/services/customModules/facades/Form/IFormLayout.d.ts +12 -0
  109. package/types/_core/scripts/services/customModules/facades/IAppFacade.d.ts +38 -0
  110. package/types/_core/scripts/services/customModules/facades/IAuthFacade.d.ts +9 -0
  111. package/types/_core/scripts/services/customModules/facades/ILegacyFacade.d.ts +238 -0
  112. package/types/_core/scripts/services/customModules/facades/IMdtFacade.d.ts +87 -0
  113. package/types/_core/scripts/services/customModules/facades/IModuleRegistryFacade.d.ts +5 -0
  114. package/types/_core/scripts/services/customModules/facades/IPageFacade.d.ts +7 -0
  115. package/types/_core/scripts/services/customModules/facades/List/Column/IColumnFacade.d.ts +7 -0
  116. package/types/_core/scripts/services/customModules/facades/List/IListCellFacade.d.ts +8 -0
  117. package/types/_core/scripts/services/customModules/facades/List/IListComponentFacade.d.ts +10 -0
  118. package/types/_core/scripts/services/customModules/facades/List/IListControlFacade.d.ts +88 -0
  119. package/types/_core/scripts/services/customModules/facades/List/IListRowFacade.d.ts +2 -0
  120. package/types/_core/scripts/services/customModules/facades/List/IListServiceFacade.d.ts +96 -0
  121. package/types/_core/scripts/services/customModules/facades/List/ListOptions/IListOptions.d.ts +4 -0
  122. package/types/_core/scripts/services/customModules/facades/components/CodeEditorFacade.d.ts +9 -0
  123. package/types/_core/scripts/services/customModules/facades/components/ModalFacade.d.ts +4 -0
  124. package/types/_core/scripts/services/customModules/facades/formDashboard/IFormDashboard.d.ts +20 -0
  125. package/types/_core/scripts/services/customModules/facades/internalModules/importFormCtrl.types.d.ts +77 -0
  126. package/types/_core/scripts/services/customModules/facades/internalModules/importModuleFacade.d.ts +53 -0
  127. package/types/_core/scripts/services/customModules/facades/internalModules/jobFacade.d.ts +7 -0
  128. package/types/_core/scripts/services/customModules/facades/internalModules/modulesFacadeTypes.d.ts +12 -0
  129. package/types/_core/scripts/services/customModules/facades/internalModules/statusFacade.d.ts +13 -0
  130. package/types/_core/scripts/services/customModules/facades/record/IRecordFacade.d.ts +13 -0
  131. package/types/_core/scripts/services/customModules/facades/record/IRecordManagerFacade.d.ts +5 -0
  132. package/types/_core/scripts/services/customModules/facades/schema/IFieldFacade.d.ts +14 -0
  133. package/types/_core/scripts/services/customModules/facades/schema/IObjectFacade.d.ts +20 -0
  134. package/types/_core/scripts/services/customModules/facades/schema/ISchemaFacade.d.ts +24 -0
  135. package/types/_core/scripts/services/customModules/facades/schema/fieldBuilder/fieldBuilder/IFieldBuilder.d.ts +23 -0
  136. package/types/_core/scripts/services/customModules/facades/schema/fieldBuilder/fieldFkBuilder/IFieldFkBuilder.d.ts +8 -0
  137. package/types/_core/scripts/services/customModules/facades/services/CommandManagerFacade.d.ts +11 -0
  138. package/types/_core/scripts/services/customModules/facades/services/IListButtonExtendPipelineService.d.ts +13 -0
  139. package/types/_core/scripts/services/customModules/facades/services/INavigationFacade.d.ts +91 -0
  140. package/types/_core/scripts/services/customModules/facades/services/ISecurityFacade.d.ts +13 -0
  141. package/types/_core/scripts/services/customModules/facades/utils/IApiFacade.d.ts +91 -0
  142. package/types/_core/scripts/services/customModules/facades/utils/IUiComponentsFacade.d.ts +185 -0
  143. package/types/_core/scripts/services/customModules/facades/utils/IUiFacade.d.ts +83 -0
  144. package/types/_core/scripts/services/customModules/facades/utils/IUtilsFacade.d.ts +224 -0
  145. package/types/_core/scripts/services/customModules/facades/utils/ImUtilsFacade.d.ts +41 -0
  146. package/types/_core/scripts/services/dropdown/IDropDownMenu.d.ts +40 -0
  147. package/types/_core/scripts/services/e2e/e2eServiceType.d.ts +11 -0
  148. package/types/_core/scripts/ui-kit/IUiKitUtilsFacade.d.ts +21 -0
  149. package/types/_core/scripts/ui-kit/UiKitFacade.d.ts +101 -0
  150. package/types/_core/scripts/views/controls/Control.d.ts +7 -0
  151. package/types/_core/scripts/views/controls/panels/panelOptions.d.ts +15 -0
  152. package/types/_core/scripts/views/form/controls/commonControl/ICommonControl.d.ts +28 -0
  153. package/types/_core/scripts/views/form/controls/fileupload/FileInputFacade.types.d.ts +6 -0
  154. package/types/_core/scripts/views/form/controls/monacoEditor/MonacoCodeOptions.schema.d.ts +24 -0
  155. package/types/_core/scripts/views/form/controls/monacoEditor/jsonSchemas/Button.schema.d.ts +70 -0
  156. package/types/_core/scripts/views/form/controls/picker/multiPickerFacade/IMultiPickerFacade.d.ts +36 -0
  157. package/types/_core/scripts/views/form/controls/toggleablePanels/editor/toggleablePanelsEditorFacadeOptions.d.ts +21 -0
  158. package/types/_core/scripts/views/form/formTypes.d.ts +5 -0
  159. package/types/_core/scripts/views/form/schema/FormPageExtOptions.schema.d.ts +22 -0
  160. package/types/_core/scripts/views/form/schema/FormPageOptions.schema.d.ts +19 -0
  161. package/types/_core/scripts/views/gallery/ImageFetchOptions.d.ts +5 -0
  162. package/types/_core/scripts/views/list/ListViewOptions.d.ts +99 -0
  163. package/types/_core/scripts/views/list/features/aggregation/AggregationRowListOptions.d.ts +23 -0
  164. package/types/_core/scripts/views/list/schema/ListPageExtOptions.schema.d.ts +123 -0
  165. package/types/_core/scripts/views/list/schema/ListPageOptions.schema.d.ts +145 -0
  166. package/types/_core/scripts/views/list/tabular/TabularListTypes.d.ts +53 -0
  167. package/types/_core/scripts/views/page/PageZoneTypes.d.ts +1 -0
  168. package/types/_core/scripts/views/page/charts/ChartControlOptions.schema.d.ts +759 -0
  169. package/types/_core/scripts/views/page/charts/facade/IChartControlFacade.d.ts +29 -0
  170. package/types/_core/scripts/views/page/charts/reportDashboard/config/chartConfig.d.ts +31 -0
  171. package/types/_core/scripts/views/page/charts/reportDashboard/config/filterConfig.d.ts +56 -0
  172. package/types/_core/scripts/views/page/charts/reportDashboard/config/listConfig.d.ts +9 -0
  173. package/types/_core/scripts/views/page/charts/reportDashboard/config/reportDashboardConfig.d.ts +55 -0
  174. package/types/_core/scripts/views/page/charts/reportDashboard/controls/dynamicChart/dynamicChartControlPublicOptions.d.ts +3 -0
  175. package/types/_core/scripts/views/page/charts/reportDashboard/index.d.ts +5 -0
  176. package/types/_core/scripts/views/page/charts/reportDashboard/utils/formJsonVarParser.d.ts +13 -0
  177. package/types/common/Datasource.d.ts +9 -9
  178. package/types/common/Field.d.ts +51 -51
  179. package/types/common/FieldSettings.schema.d.ts +32 -32
  180. package/types/common/MdtField.d.ts +9 -9
  181. package/types/common/MdtObject.d.ts +7 -7
  182. package/types/common/Record.d.ts +27 -27
  183. package/types/common/Table.d.ts +66 -66
  184. package/types/common/form/tabs/TabsFormExtenderOptions.d.ts +14 -14
  185. package/types/common/list/aggregation/AggregayionTypes.d.ts +2 -2
  186. package/types/common/list/cacheUpdateTime/CacheUpdateTimePublicOptions.d.ts +6 -6
  187. package/types/common/list/cellControlExtender/CellControlExtender.d.ts +1 -1
  188. package/types/common/list/columnMenu/ColumnMenuOptions.d.ts +17 -17
  189. package/types/common/list/columnMenu/QuickFilterOptions.d.ts +7 -7
  190. package/types/common/list/columnMenu/ValuesFilterOptions.d.ts +24 -24
  191. package/types/common/list/form/FormListPublicOptions.d.ts +44 -44
  192. package/types/common/list/gallery/GalleryListExtenderPublicOptions.d.ts +11 -11
  193. package/types/common/list/group/groupTypes.d.ts +177 -177
  194. package/types/common/list/hierarchy/hierarchyTypes.d.ts +48 -48
  195. package/types/common/list/historyType/HistoryTypeListExtenderOptions.d.ts +3 -3
  196. package/types/common/list/labelStyle/LabelStylePublicOptions.d.ts +6 -6
  197. package/types/common/list/legend/LegendListExtenderOptions.d.ts +8 -8
  198. package/types/common/list/listView/ListViewListExtenderOptions.d.ts +25 -25
  199. package/types/common/list/namedFilter/InMemoryNamedFilterOptions.d.ts +23 -23
  200. package/types/common/list/namedFilter/NamedFilterListExtenderPublicOptions.d.ts +29 -29
  201. package/types/common/list/reorder/ReorderListExtenderPublicOptions.d.ts +4 -4
  202. package/types/common/list/select/SelectPublicOptions.d.ts +18 -18
  203. package/types/common/list/styleField/StyleFieldListExtenderPublicOptions.d.ts +3 -3
  204. package/types/common/list/toolbar/ToolbarPublicOptions.d.ts +23 -23
  205. package/types/common/list/virtualScroll/VIrtualScrollPublicOptions.d.ts +7 -7
  206. package/types/common/serverMessage/ServerMessageTypes.d.ts +17 -17
  207. package/types/components/baseFormControls/input/inputOptions.d.ts +31 -30
  208. package/types/components/baseFormControls/maskedInput/MaskFormatter.types.d.ts +2 -2
  209. package/types/components/button/baseButton/buttonOptions.d.ts +12 -12
  210. package/types/components/buttonGroup/buttonGroupOptions.d.ts +7 -7
  211. package/types/components/dropdown/menu/item/dropdownInputItemOptions.d.ts +5 -5
  212. package/types/components/dropdown/menu/item/dropdownItemWrapOptions.d.ts +20 -20
  213. package/types/components/dropdown/menuActionItem/dropdownMenuItemOptions.d.ts +32 -32
  214. package/types/components/form/fieldView/fieldViewOptions.d.ts +13 -13
  215. package/types/components/form/header/types.d.ts +14 -14
  216. package/types/components/form/label/labelOptions.d.ts +23 -23
  217. package/types/components/icon/iconOptions.d.ts +24 -23
  218. package/types/components/iconButton/iconButtonOptions.d.ts +10 -9
  219. package/types/components/navigation/header/userButton/UserMenuSlot.d.ts +10 -10
  220. package/types/components/processPrincipalsList/ProcessPrincipalsListItem.d.ts +5 -5
  221. package/types/components/resizablePanels/panelTitle/panelTitleOptions.d.ts +16 -16
  222. package/types/components/resizablePanels/panelToolbar/panelToolbarOptions.d.ts +4 -4
  223. package/types/components/resizablePanels/resizablePanel/resizablePanelOptions.d.ts +24 -24
  224. package/types/components/resizablePanels/resizablePanelsOptions.d.ts +22 -22
  225. package/types/components/textWithIcon/textWithIconOptions.d.ts +17 -16
  226. package/types/components/toggleablePanels/toggleablePanelsOptions.d.ts +40 -40
  227. package/types/data/active/ActivationListAdapterTypes.d.ts +6 -6
  228. package/types/data/fieldFilter/ToolbarFieldFilterOptions.d.ts +21 -21
  229. package/types/data/periods/helpers/types.d.ts +4 -4
  230. package/types/datasources/FetchResult.d.ts +5 -5
  231. package/types/helpers/IUi.d.ts +2 -2
  232. package/types/helpers/dateUtils.d.ts +23 -23
  233. package/types/helpers/deleteFromArray.d.ts +1 -1
  234. package/types/helpers/events/EventEmitter.d.ts +12 -12
  235. package/types/helpers/fireEvent.d.ts +4 -4
  236. package/types/helpers/formatOptions.d.ts +24 -24
  237. package/types/helpers/formattedText.d.ts +8 -8
  238. package/types/helpers/pipeline/ImmutableArgPipeline.d.ts +8 -8
  239. package/types/helpers/pipeline/Pipeline.d.ts +20 -20
  240. package/types/helpers/redraw.d.ts +16 -16
  241. package/types/helpers/types.d.ts +85 -84
  242. package/types/helpers/ui/elementModificators/focusableComponent.d.ts +15 -14
  243. package/types/helpers/ui/elementModificators/modificatorsTypes.d.ts +4 -4
  244. package/types/helpers/ui/keyboardUtils/getKeySymbol.d.ts +2 -2
  245. package/types/helpers/ui/keyboardUtils/keyboardUtils.d.ts +23 -23
  246. package/types/helpers/ui/keyboardUtils/osByUserAgent.d.ts +1 -1
  247. package/types/helpers/ui/toolbarItemTypes.d.ts +30 -30
  248. package/types/helpers/utils/classNames.d.ts +20 -20
  249. package/types/helpers/utils/duration/durationFormatTypes.d.ts +21 -21
  250. package/types/helpers/utils/keyStorage/KeyStorage.d.ts +6 -6
  251. package/types/helpers/utils/memoization/memoize.d.ts +18 -18
  252. package/types/helpers/utils/object.d.ts +10 -10
  253. package/types/helpers/utils/stringifyControlSize.d.ts +3 -3
  254. package/types/helpers/utils/valued/getValued.d.ts +18 -18
  255. package/types/helpers/zone/IZone.d.ts +8 -7
  256. package/types/job/scripts/types.d.ts +11 -0
  257. package/types/security/PermissionLevel.d.ts +40 -40
  258. package/types/security/User.d.ts +20 -20
  259. package/types/services/HotkeyManager.d.ts +6 -6
  260. package/types/services/IFilter.d.ts +322 -322
  261. package/types/services/ModuleData.d.ts +9 -9
  262. package/types/services/api/ApiAccessor/apiV1Types.d.ts +266 -266
  263. package/types/services/api/ApiAccessor/apiV2Types.d.ts +586 -586
  264. package/types/services/api/ApiAccessor/binding/bindingApiTypes.d.ts +42 -42
  265. package/types/services/api/ApiAccessor/job/jobApiTypes.d.ts +83 -83
  266. package/types/services/api/ApiAccessorRequestAdapter/handlers/fetch/helpers/count/count.d.ts +10 -10
  267. package/types/services/api/ApiAccessorRequestAdapter/handlers/fetch/helpers/query/exts/hierarchy/hierarchyQueryHelpersTypes.d.ts +28 -28
  268. package/types/services/api/ApiAccessorRequestAdapter/handlers/fetch/helpers/query/exts/placeIn/placeInQueryTypes.d.ts +9 -9
  269. package/types/services/api/ApiAccessorRequestAdapter/handlers/messageTypes.d.ts +37 -37
  270. package/types/services/api/ApiAccessorRequestAdapter/message/apiV2MessageTypes.d.ts +2 -2
  271. package/types/services/api/ApiRequestOptions.d.ts +43 -43
  272. package/types/services/api/BaseQuery.d.ts +25 -25
  273. package/types/services/api/Query.d.ts +56 -56
  274. package/types/services/api/QuerySorting.d.ts +18 -18
  275. package/types/services/api/ServerResonseType.d.ts +2 -2
  276. package/types/services/commands/Command.d.ts +22 -22
  277. package/types/services/commands/CommandGroup.d.ts +15 -15
  278. package/types/services/commands/CommandManager.d.ts +77 -77
  279. package/types/services/customModules/facades/Form/IFieldControlFacade.d.ts +26 -26
  280. package/types/services/customModules/facades/Form/IFieldControlManagerFacade.d.ts +38 -38
  281. package/types/services/customModules/facades/Form/IFieldStateFacade.d.ts +13 -13
  282. package/types/services/customModules/facades/Form/IFormControlFacade.d.ts +133 -133
  283. package/types/services/customModules/facades/Form/IFormFacade.d.ts +106 -106
  284. package/types/services/customModules/facades/Form/IFormLayout.d.ts +12 -12
  285. package/types/services/customModules/facades/IAppFacade.d.ts +38 -38
  286. package/types/services/customModules/facades/IAuthFacade.d.ts +9 -9
  287. package/types/services/customModules/facades/ILegacyFacade.d.ts +240 -239
  288. package/types/services/customModules/facades/IMdtFacade.d.ts +91 -90
  289. package/types/services/customModules/facades/IModuleRegistryFacade.d.ts +5 -5
  290. package/types/services/customModules/facades/IPageFacade.d.ts +7 -7
  291. package/types/services/customModules/facades/List/Column/IColumnFacade.d.ts +7 -7
  292. package/types/services/customModules/facades/List/IListCellFacade.d.ts +9 -9
  293. package/types/services/customModules/facades/List/IListComponentFacade.d.ts +10 -10
  294. package/types/services/customModules/facades/List/IListControlFacade.d.ts +90 -90
  295. package/types/services/customModules/facades/List/IListRowFacade.d.ts +2 -2
  296. package/types/services/customModules/facades/List/IListServiceFacade.d.ts +96 -96
  297. package/types/services/customModules/facades/List/ListOptions/IListOptions.d.ts +4 -4
  298. package/types/services/customModules/facades/components/CodeEditorFacade.d.ts +9 -9
  299. package/types/services/customModules/facades/components/ModalFacade.d.ts +4 -4
  300. package/types/services/customModules/facades/formDashboard/IFormDashboard.d.ts +20 -20
  301. package/types/services/customModules/facades/internalModules/importFormCtrl.types.d.ts +83 -83
  302. package/types/services/customModules/facades/internalModules/importModuleFacade.d.ts +59 -59
  303. package/types/services/customModules/facades/internalModules/jobFacade.d.ts +24 -24
  304. package/types/services/customModules/facades/internalModules/modulesFacadeTypes.d.ts +16 -16
  305. package/types/services/customModules/facades/internalModules/statusFacade.d.ts +11 -11
  306. package/types/services/customModules/facades/record/IRecordFacade.d.ts +13 -13
  307. package/types/services/customModules/facades/record/IRecordManagerFacade.d.ts +5 -5
  308. package/types/services/customModules/facades/schema/IFieldFacade.d.ts +14 -14
  309. package/types/services/customModules/facades/schema/IObjectFacade.d.ts +20 -20
  310. package/types/services/customModules/facades/schema/ISchemaFacade.d.ts +24 -24
  311. package/types/services/customModules/facades/schema/fieldBuilder/fieldBuilder/IFieldBuilder.d.ts +23 -23
  312. package/types/services/customModules/facades/schema/fieldBuilder/fieldFkBuilder/IFieldFkBuilder.d.ts +8 -8
  313. package/types/services/customModules/facades/services/CommandManagerFacade.d.ts +11 -11
  314. package/types/services/customModules/facades/services/IListButtonExtendPipelineService.d.ts +13 -13
  315. package/types/services/customModules/facades/services/INavigationFacade.d.ts +92 -92
  316. package/types/services/customModules/facades/services/ISecurityFacade.d.ts +13 -13
  317. package/types/services/customModules/facades/sharedModules/ISharedModulesFacade.d.ts +4 -4
  318. package/types/services/customModules/facades/utils/IApiFacade.d.ts +93 -91
  319. package/types/services/customModules/facades/utils/IUiComponentsFacade.d.ts +191 -190
  320. package/types/services/customModules/facades/utils/IUiFacade.d.ts +84 -83
  321. package/types/services/customModules/facades/utils/IUtilsFacade.d.ts +225 -225
  322. package/types/services/customModules/facades/utils/ImUtilsFacade.d.ts +42 -41
  323. package/types/services/dropdown/IDropDownMenu.d.ts +41 -40
  324. package/types/services/e2e/e2eServiceType.d.ts +11 -11
  325. package/types/ui-kit/IUiKitUtilsFacade.d.ts +40 -41
  326. package/types/ui-kit/UiKitFacade.d.ts +124 -124
  327. package/types/ui-kit/components/calendar/Calendar.d.ts +3 -3
  328. package/types/views/controls/Control.d.ts +7 -7
  329. package/types/views/controls/panels/panelOptions.d.ts +15 -15
  330. package/types/views/form/controls/commonControl/ICommonControl.d.ts +29 -28
  331. package/types/views/form/controls/fileupload/FileInputFacade.types.d.ts +6 -6
  332. package/types/views/form/controls/monacoEditor/MonacoCodeOptions.schema.d.ts +24 -24
  333. package/types/views/form/controls/monacoEditor/jsonSchemas/Button.schema.d.ts +70 -70
  334. package/types/views/form/controls/picker/multiPickerFacade/IMultiPickerFacade.d.ts +36 -36
  335. package/types/views/form/controls/toggleablePanels/editor/toggleablePanelsEditorFacadeOptions.d.ts +21 -21
  336. package/types/views/form/formTypes.d.ts +5 -5
  337. package/types/views/form/schema/FormPageExtOptions.schema.d.ts +22 -22
  338. package/types/views/form/schema/FormPageOptions.schema.d.ts +19 -19
  339. package/types/views/gallery/ImageFetchOptions.d.ts +5 -5
  340. package/types/views/list/ListViewOptions.d.ts +102 -101
  341. package/types/views/list/features/aggregation/AggregationRowListOptions.d.ts +23 -23
  342. package/types/views/list/schema/ListPageExtOptions.schema.d.ts +123 -123
  343. package/types/views/list/schema/ListPageOptions.schema.d.ts +150 -150
  344. package/types/views/list/tabular/TabularListTypes.d.ts +53 -53
  345. package/types/views/page/PageZoneTypes.d.ts +1 -1
  346. package/types/views/page/charts/ChartControlOptions.schema.d.ts +850 -850
  347. package/types/views/page/charts/facade/IChartControlFacade.d.ts +29 -29
  348. package/types/views/page/charts/reportDashboard/config/chartConfig.d.ts +31 -31
  349. package/types/views/page/charts/reportDashboard/config/filterConfig.d.ts +56 -56
  350. package/types/views/page/charts/reportDashboard/config/listConfig.d.ts +9 -9
  351. package/types/views/page/charts/reportDashboard/config/reportDashboardConfig.d.ts +55 -55
  352. package/types/views/page/charts/reportDashboard/controls/dynamicChart/dynamicChartControlPublicOptions.d.ts +3 -3
  353. package/types/views/page/charts/reportDashboard/index.d.ts +5 -5
  354. package/types/views/page/charts/reportDashboard/utils/formJsonVarParser.d.ts +13 -13
@@ -1,239 +1,240 @@
1
- /// <reference types="../../../../mithril" />
2
- /// <reference types="react" />
3
- import { MdtRecord } from "mdtScripts/common/Record";
4
- import { ButtonFacade } from "./Form/IFormFacade";
5
- import { ClassNamesArg } from "mdtScripts/helpers/utils/classNames";
6
- import { ViewElement } from "mdtScripts/helpers/types";
7
- /** @deprecated */
8
- export interface ILegacyFacade {
9
- SchemaManagerInstance: any;
10
- SchemaManager: any;
11
- NavigationManagerInstance: any;
12
- DateTextFieldCtrl: any;
13
- FormlessFieldCtrl: any;
14
- MonthPicker: any;
15
- UiMarked: any;
16
- prop: any;
17
- ImageService: any;
18
- FormLayoutManager: any;
19
- removeSpecial: any;
20
- ServerErrorCtrl: any;
21
- ExportApiAccessor: any;
22
- showErrors: any;
23
- CheckboxListFieldCtrl: any;
24
- SplitBlockCtrl: any;
25
- SplitBlockSection: any;
26
- pickRecordModal: any;
27
- uiCtxEvent: any;
28
- uiRedraw: any;
29
- ApiAccessorInstance: any;
30
- ApiAccessor: any;
31
- ApiUtils: any;
32
- ApiUrlManager: any;
33
- clone: any;
34
- mClassNames: any;
35
- isDev: any;
36
- ModuleService: any;
37
- ApiServiceInstance: any;
38
- SecurityManagerInstance: any;
39
- FormControlManagerInstance: any;
40
- RecordManagerInstance: any;
41
- RecordManager: any;
42
- utils: any;
43
- FormServiceInstance: any;
44
- ListServiceInstance: any;
45
- ui: any;
46
- viewer: any;
47
- deleteFromArray: any;
48
- onDocumentVisibilityChange: any;
49
- fireEvent: any;
50
- combine: any;
51
- app: any;
52
- ContentListCtrl: any;
53
- ListCtrl: any;
54
- FormCtrl: any;
55
- SideCtrl: any;
56
- FieldCtrl: any;
57
- FileInputCtrl: any;
58
- FkPanels: any;
59
- FramePage: any;
60
- PageZones: any;
61
- modules: ModulesLegacyFacade;
62
- pageConfig: any;
63
- view: any;
64
- NavigationControlManager: any;
65
- NavigationControlManagerInstance: any;
66
- messages: any;
67
- registerForm: any;
68
- components: any;
69
- FieldControlManagerInstance: any;
70
- ServerMessageCtrl: any;
71
- ContainerMixin: any;
72
- SelectFieldCtrl: any;
73
- FormFieldMode: any;
74
- FormFieldCtrl: any;
75
- FullPageForm: any;
76
- LabelMode: any;
77
- WarningText: any;
78
- showError: any;
79
- SelectMixin: any;
80
- CacheManager: any;
81
- ControlSize: any;
82
- LayoutBuilder: any;
83
- ServerMessageHelper: any;
84
- showSidebar: any;
85
- uiShow: any;
86
- GlobalVarManager: any;
87
- list: {
88
- ToolbarCtrl: any;
89
- SwitchButtons: any;
90
- CustomColumnCtrl: any;
91
- HierarchyListExtender: any;
92
- LabelStyleHelper: any;
93
- LabelStyleCellView: any;
94
- labelStyleView: any;
95
- };
96
- CenteredMessageCtrl: any;
97
- PageHeaderControls: any;
98
- confirmModal: any;
99
- DropdownMenuCtrl: any;
100
- DeleteService: any;
101
- ApiService: any;
102
- ApiUrlHelper: any;
103
- URLHelper: any;
104
- SchemaError: any;
105
- MemoryDatasource: any;
106
- ChangePasswordCtrl: any;
107
- layoutFormGroup: any;
108
- FilterSettings: any;
109
- TextFieldCtrl: any;
110
- QuickFilterPipelines: any;
111
- textWithIcon: any;
112
- isElementContentOverflowing: any;
113
- labeledCheckboxView: any;
114
- toolbarView: any;
115
- uiComponents: {
116
- alert: any;
117
- };
118
- PlaceInQueryHelpers: any;
119
- isApiV2: () => boolean;
120
- ProgressBarCtrl: any;
121
- ProgressBarStateController: any;
122
- getChartElByCode: (code: string) => Element;
123
- linkIcon: any;
124
- ApiJSActionsPipeline: any;
125
- DatePickerInput: any;
126
- OneToManyGridCtrl: any;
127
- /**
128
- * Преобразует дату в строку формата ISO (YYYY-MM-DD)
129
- * @param date Объект даты
130
- * @returns Строка в формате YYYY-MM-DD
131
- */
132
- toISO8601DateString: any;
133
- /**
134
- * Преобразует дату в строку формата ISO с временем (YYYY-MM-DDThh:mm:ssZ)
135
- * @param date Объект даты
136
- * @param dateOnly Если true, возвращает только дату без времени
137
- * @returns Строка в формате ISO
138
- */
139
- toISOString: any;
140
- Skeleton: any;
141
- PipelineSync: any;
142
- compareDates: any;
143
- isEmpty: any;
144
- dateFromUiDateString: any;
145
- toUiDateString: any;
146
- parseRowsToV1: any;
147
- DatePicker: any;
148
- getDateForCalendarControl: any;
149
- locale: any;
150
- datePickerViewModes: any;
151
- formatByMask: any;
152
- classes: {
153
- borderRadiusNormal: string;
154
- borderRadiusSmall: string;
155
- borderRadiusLarge: string;
156
- borderRadiusXLarge: string;
157
- SCROLLBAR_INVISIBLE_CLASSNAME: string;
158
- SCROLLBAR_VANISHED_CLASSNAME: string;
159
- SCROLLBAR_APPEARANCE_COMPENSATION: string;
160
- DATEPICKER_CLASS: string;
161
- };
162
- tabsView: {
163
- wrapper: (children: ViewElement) => _mithril.MithrilVirtualElement;
164
- linksWrapper: (children: ViewElement) => _mithril.MithrilVirtualElement;
165
- linkItem: ({ isActive, onclick, index, icon, title }: {
166
- isActive: boolean;
167
- onclick: () => void;
168
- index: number;
169
- icon?: string;
170
- title: string;
171
- }) => _mithril.MithrilVirtualElement;
172
- contentWrapper: (children: ViewElement) => _mithril.MithrilVirtualElement;
173
- };
174
- /**
175
- * Функция для рендера React компонента в mithril.
176
- *
177
- * @param Component React компонент
178
- * @param props props для компонента
179
- * @param options опции для обертки. Например, className
180
- */
181
- reactComponentWrap<P>(Component: React.FC<P>, props: P, options?: {
182
- className?: ClassNamesArg;
183
- }): ViewElement;
184
- /**
185
- * Функция для рендера компонента UI Kit в mithril.
186
- *
187
- * @param Component React компонент из UI Kit
188
- * @param props props для компонента
189
- */
190
- uiKitWrap<P>(Component: React.FC<P>, props: P): ViewElement;
191
- }
192
- export interface ModulesLegacyFacade {
193
- audit?: {
194
- PrepareAuditRecords: any;
195
- };
196
- pbi?: {
197
- PbiFrameCtrl: any;
198
- };
199
- etl?: {
200
- FormValueManager: any;
201
- EtlPanel: any;
202
- };
203
- dm?: {
204
- MergeHelper: any;
205
- };
206
- mapping?: {
207
- MappingListExtender: any;
208
- MappingManager: any;
209
- MappingManagerInstance: any;
210
- };
211
- admin?: {
212
- DesignerHelper: any;
213
- };
214
- binding?: {
215
- UnbindingForm: any;
216
- };
217
- status?: {
218
- StatusButton: any;
219
- StatusManager: any;
220
- statusSchema: any;
221
- };
222
- help?: {
223
- HelpManagerInstance: any;
224
- };
225
- job?: {
226
- JobHelper: any;
227
- };
228
- ExportApiAccessor?: any;
229
- password?: {
230
- buttons: {
231
- changePassword: (args?: {
232
- mdtPrincipalRecord?: MdtRecord;
233
- }) => ButtonFacade;
234
- sendInvitation: (args?: {
235
- mdtPrincipalRecord?: MdtRecord;
236
- }) => ButtonFacade;
237
- };
238
- };
239
- }
1
+ /// <reference types="../../../../mithril" />
2
+ /// <reference types="mithril" />
3
+ /// <reference types="react" />
4
+ import { MdtRecord } from "mdtScripts/common/Record";
5
+ import { ButtonFacade } from "./Form/IFormFacade";
6
+ import { ClassNamesArg } from "mdtScripts/helpers/utils/classNames";
7
+ import { ViewElement } from "mdtScripts/helpers/types";
8
+ /** @deprecated */
9
+ export interface ILegacyFacade {
10
+ SchemaManagerInstance: any;
11
+ SchemaManager: any;
12
+ NavigationManagerInstance: any;
13
+ DateTextFieldCtrl: any;
14
+ FormlessFieldCtrl: any;
15
+ MonthPicker: any;
16
+ UiMarked: any;
17
+ prop: any;
18
+ ImageService: any;
19
+ FormLayoutManager: any;
20
+ removeSpecial: any;
21
+ ServerErrorCtrl: any;
22
+ ExportApiAccessor: any;
23
+ showErrors: any;
24
+ CheckboxListFieldCtrl: any;
25
+ SplitBlockCtrl: any;
26
+ SplitBlockSection: any;
27
+ pickRecordModal: any;
28
+ uiCtxEvent: any;
29
+ uiRedraw: any;
30
+ ApiAccessorInstance: any;
31
+ ApiAccessor: any;
32
+ ApiUtils: any;
33
+ ApiUrlManager: any;
34
+ clone: any;
35
+ mClassNames: any;
36
+ isDev: any;
37
+ ModuleService: any;
38
+ ApiServiceInstance: any;
39
+ SecurityManagerInstance: any;
40
+ FormControlManagerInstance: any;
41
+ RecordManagerInstance: any;
42
+ RecordManager: any;
43
+ utils: any;
44
+ FormServiceInstance: any;
45
+ ListServiceInstance: any;
46
+ ui: any;
47
+ viewer: any;
48
+ deleteFromArray: any;
49
+ onDocumentVisibilityChange: any;
50
+ fireEvent: any;
51
+ combine: any;
52
+ app: any;
53
+ ContentListCtrl: any;
54
+ ListCtrl: any;
55
+ FormCtrl: any;
56
+ SideCtrl: any;
57
+ FieldCtrl: any;
58
+ FileInputCtrl: any;
59
+ FkPanels: any;
60
+ FramePage: any;
61
+ PageZones: any;
62
+ modules: ModulesLegacyFacade;
63
+ pageConfig: any;
64
+ view: any;
65
+ NavigationControlManager: any;
66
+ NavigationControlManagerInstance: any;
67
+ messages: any;
68
+ registerForm: any;
69
+ components: any;
70
+ FieldControlManagerInstance: any;
71
+ ServerMessageCtrl: any;
72
+ ContainerMixin: any;
73
+ SelectFieldCtrl: any;
74
+ FormFieldMode: any;
75
+ FormFieldCtrl: any;
76
+ FullPageForm: any;
77
+ LabelMode: any;
78
+ WarningText: any;
79
+ showError: any;
80
+ SelectMixin: any;
81
+ CacheManager: any;
82
+ ControlSize: any;
83
+ LayoutBuilder: any;
84
+ ServerMessageHelper: any;
85
+ showSidebar: any;
86
+ uiShow: any;
87
+ GlobalVarManager: any;
88
+ list: {
89
+ ToolbarCtrl: any;
90
+ SwitchButtons: any;
91
+ CustomColumnCtrl: any;
92
+ HierarchyListExtender: any;
93
+ LabelStyleHelper: any;
94
+ LabelStyleCellView: any;
95
+ labelStyleView: any;
96
+ };
97
+ CenteredMessageCtrl: any;
98
+ PageHeaderControls: any;
99
+ confirmModal: any;
100
+ DropdownMenuCtrl: any;
101
+ DeleteService: any;
102
+ ApiService: any;
103
+ ApiUrlHelper: any;
104
+ URLHelper: any;
105
+ SchemaError: any;
106
+ MemoryDatasource: any;
107
+ ChangePasswordCtrl: any;
108
+ layoutFormGroup: any;
109
+ FilterSettings: any;
110
+ TextFieldCtrl: any;
111
+ QuickFilterPipelines: any;
112
+ textWithIcon: any;
113
+ isElementContentOverflowing: any;
114
+ labeledCheckboxView: any;
115
+ toolbarView: any;
116
+ uiComponents: {
117
+ alert: any;
118
+ };
119
+ PlaceInQueryHelpers: any;
120
+ isApiV2: () => boolean;
121
+ ProgressBarCtrl: any;
122
+ ProgressBarStateController: any;
123
+ getChartElByCode: (code: string) => Element;
124
+ linkIcon: any;
125
+ ApiJSActionsPipeline: any;
126
+ DatePickerInput: any;
127
+ OneToManyGridCtrl: any;
128
+ /**
129
+ * Преобразует дату в строку формата ISO (YYYY-MM-DD)
130
+ * @param date Объект даты
131
+ * @returns Строка в формате YYYY-MM-DD
132
+ */
133
+ toISO8601DateString: any;
134
+ /**
135
+ * Преобразует дату в строку формата ISO с временем (YYYY-MM-DDThh:mm:ssZ)
136
+ * @param date Объект даты
137
+ * @param dateOnly Если true, возвращает только дату без времени
138
+ * @returns Строка в формате ISO
139
+ */
140
+ toISOString: any;
141
+ Skeleton: any;
142
+ PipelineSync: any;
143
+ compareDates: any;
144
+ isEmpty: any;
145
+ dateFromUiDateString: any;
146
+ toUiDateString: any;
147
+ parseRowsToV1: any;
148
+ DatePicker: any;
149
+ getDateForCalendarControl: any;
150
+ locale: any;
151
+ datePickerViewModes: any;
152
+ formatByMask: any;
153
+ classes: {
154
+ borderRadiusNormal: string;
155
+ borderRadiusSmall: string;
156
+ borderRadiusLarge: string;
157
+ borderRadiusXLarge: string;
158
+ SCROLLBAR_INVISIBLE_CLASSNAME: string;
159
+ SCROLLBAR_VANISHED_CLASSNAME: string;
160
+ SCROLLBAR_APPEARANCE_COMPENSATION: string;
161
+ DATEPICKER_CLASS: string;
162
+ };
163
+ tabsView: {
164
+ wrapper: (children: ViewElement) => _mithril.MithrilVirtualElement;
165
+ linksWrapper: (children: ViewElement) => _mithril.MithrilVirtualElement;
166
+ linkItem: ({ isActive, onclick, index, icon, title }: {
167
+ isActive: boolean;
168
+ onclick: () => void;
169
+ index: number;
170
+ icon?: string;
171
+ title: string;
172
+ }) => _mithril.MithrilVirtualElement;
173
+ contentWrapper: (children: ViewElement) => _mithril.MithrilVirtualElement;
174
+ };
175
+ /**
176
+ * Функция для рендера React компонента в mithril.
177
+ *
178
+ * @param Component React компонент
179
+ * @param props props для компонента
180
+ * @param options опции для обертки. Например, className
181
+ */
182
+ reactComponentWrap<P>(Component: React.FC<P>, props: P, options?: {
183
+ className?: ClassNamesArg;
184
+ }): ViewElement;
185
+ /**
186
+ * Функция для рендера компонента UI Kit в mithril.
187
+ *
188
+ * @param Component React компонент из UI Kit
189
+ * @param props props для компонента
190
+ */
191
+ uiKitWrap<P>(Component: React.FC<P>, props: P): ViewElement;
192
+ }
193
+ export interface ModulesLegacyFacade {
194
+ audit?: {
195
+ PrepareAuditRecords: any;
196
+ };
197
+ pbi?: {
198
+ PbiFrameCtrl: any;
199
+ };
200
+ etl?: {
201
+ FormValueManager: any;
202
+ EtlPanel: any;
203
+ };
204
+ dm?: {
205
+ MergeHelper: any;
206
+ };
207
+ mapping?: {
208
+ MappingListExtender: any;
209
+ MappingManager: any;
210
+ MappingManagerInstance: any;
211
+ };
212
+ admin?: {
213
+ DesignerHelper: any;
214
+ };
215
+ binding?: {
216
+ UnbindingForm: any;
217
+ };
218
+ status?: {
219
+ StatusButton: any;
220
+ StatusManager: any;
221
+ statusSchema: any;
222
+ };
223
+ help?: {
224
+ HelpManagerInstance: any;
225
+ };
226
+ job?: {
227
+ JobHelper: any;
228
+ };
229
+ ExportApiAccessor?: any;
230
+ password?: {
231
+ buttons: {
232
+ changePassword: (args?: {
233
+ mdtPrincipalRecord?: MdtRecord;
234
+ }) => ButtonFacade;
235
+ sendInvitation: (args?: {
236
+ mdtPrincipalRecord?: MdtRecord;
237
+ }) => ButtonFacade;
238
+ };
239
+ };
240
+ }