@finos/legend-query-builder 0.0.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 (608) hide show
  1. package/LICENSE +201 -0
  2. package/README.md +3 -0
  3. package/lib/components/QueryBuilder.d.ts +22 -0
  4. package/lib/components/QueryBuilder.d.ts.map +1 -0
  5. package/lib/components/QueryBuilder.js +111 -0
  6. package/lib/components/QueryBuilder.js.map +1 -0
  7. package/lib/components/QueryBuilderComponentTestUtils.d.ts +24 -0
  8. package/lib/components/QueryBuilderComponentTestUtils.d.ts.map +1 -0
  9. package/lib/components/QueryBuilderComponentTestUtils.js +54 -0
  10. package/lib/components/QueryBuilderComponentTestUtils.js.map +1 -0
  11. package/lib/components/QueryBuilderParametersPanel.d.ts +31 -0
  12. package/lib/components/QueryBuilderParametersPanel.d.ts.map +1 -0
  13. package/lib/components/QueryBuilderParametersPanel.js +128 -0
  14. package/lib/components/QueryBuilderParametersPanel.js.map +1 -0
  15. package/lib/components/QueryBuilderPropertyExpressionEditor.d.ts +29 -0
  16. package/lib/components/QueryBuilderPropertyExpressionEditor.d.ts.map +1 -0
  17. package/lib/components/QueryBuilderPropertyExpressionEditor.js +116 -0
  18. package/lib/components/QueryBuilderPropertyExpressionEditor.js.map +1 -0
  19. package/lib/components/QueryBuilderResultPanel.d.ts +22 -0
  20. package/lib/components/QueryBuilderResultPanel.d.ts.map +1 -0
  21. package/lib/components/QueryBuilderResultPanel.js +242 -0
  22. package/lib/components/QueryBuilderResultPanel.js.map +1 -0
  23. package/lib/components/QueryBuilderSideBar.d.ts +41 -0
  24. package/lib/components/QueryBuilderSideBar.d.ts.map +1 -0
  25. package/lib/components/QueryBuilderSideBar.js +169 -0
  26. package/lib/components/QueryBuilderSideBar.js.map +1 -0
  27. package/lib/components/QueryBuilderTextEditor.d.ts +22 -0
  28. package/lib/components/QueryBuilderTextEditor.d.ts.map +1 -0
  29. package/lib/components/QueryBuilderTextEditor.js +48 -0
  30. package/lib/components/QueryBuilderTextEditor.js.map +1 -0
  31. package/lib/components/QueryBuilderUnsupportedQueryEditor.d.ts +22 -0
  32. package/lib/components/QueryBuilderUnsupportedQueryEditor.d.ts.map +1 -0
  33. package/lib/components/QueryBuilderUnsupportedQueryEditor.js +36 -0
  34. package/lib/components/QueryBuilderUnsupportedQueryEditor.js.map +1 -0
  35. package/lib/components/QueryBuilder_TestID.d.ts +26 -0
  36. package/lib/components/QueryBuilder_TestID.d.ts.map +1 -0
  37. package/lib/components/QueryBuilder_TestID.js +27 -0
  38. package/lib/components/QueryBuilder_TestID.js.map +1 -0
  39. package/lib/components/explorer/QueryBuilderExplorerPanel.d.ts +36 -0
  40. package/lib/components/explorer/QueryBuilderExplorerPanel.d.ts.map +1 -0
  41. package/lib/components/explorer/QueryBuilderExplorerPanel.js +340 -0
  42. package/lib/components/explorer/QueryBuilderExplorerPanel.js.map +1 -0
  43. package/lib/components/explorer/QueryBuilderFunctionsExplorerPanel.d.ts +22 -0
  44. package/lib/components/explorer/QueryBuilderFunctionsExplorerPanel.d.ts.map +1 -0
  45. package/lib/components/explorer/QueryBuilderFunctionsExplorerPanel.js +147 -0
  46. package/lib/components/explorer/QueryBuilderFunctionsExplorerPanel.js.map +1 -0
  47. package/lib/components/explorer/QueryBuilderMilestoneEditor.d.ts +22 -0
  48. package/lib/components/explorer/QueryBuilderMilestoneEditor.d.ts.map +1 -0
  49. package/lib/components/explorer/QueryBuilderMilestoneEditor.js +122 -0
  50. package/lib/components/explorer/QueryBuilderMilestoneEditor.js.map +1 -0
  51. package/lib/components/explorer/QueryBuilderPropertySearchPanel.d.ts +23 -0
  52. package/lib/components/explorer/QueryBuilderPropertySearchPanel.d.ts.map +1 -0
  53. package/lib/components/explorer/QueryBuilderPropertySearchPanel.js +200 -0
  54. package/lib/components/explorer/QueryBuilderPropertySearchPanel.js.map +1 -0
  55. package/lib/components/fetch-structure/QueryBuilderFetchStructurePanel.d.ts +22 -0
  56. package/lib/components/fetch-structure/QueryBuilderFetchStructurePanel.d.ts.map +1 -0
  57. package/lib/components/fetch-structure/QueryBuilderFetchStructurePanel.js +52 -0
  58. package/lib/components/fetch-structure/QueryBuilderFetchStructurePanel.js.map +1 -0
  59. package/lib/components/fetch-structure/QueryBuilderGraphFetchTreePanel.d.ts +31 -0
  60. package/lib/components/fetch-structure/QueryBuilderGraphFetchTreePanel.d.ts.map +1 -0
  61. package/lib/components/fetch-structure/QueryBuilderGraphFetchTreePanel.js +94 -0
  62. package/lib/components/fetch-structure/QueryBuilderGraphFetchTreePanel.js.map +1 -0
  63. package/lib/components/fetch-structure/QueryBuilderPostFilterPanel.d.ts +30 -0
  64. package/lib/components/fetch-structure/QueryBuilderPostFilterPanel.d.ts.map +1 -0
  65. package/lib/components/fetch-structure/QueryBuilderPostFilterPanel.js +378 -0
  66. package/lib/components/fetch-structure/QueryBuilderPostFilterPanel.js.map +1 -0
  67. package/lib/components/fetch-structure/QueryBuilderProjectionPanel.d.ts +22 -0
  68. package/lib/components/fetch-structure/QueryBuilderProjectionPanel.d.ts.map +1 -0
  69. package/lib/components/fetch-structure/QueryBuilderProjectionPanel.js +216 -0
  70. package/lib/components/fetch-structure/QueryBuilderProjectionPanel.js.map +1 -0
  71. package/lib/components/fetch-structure/QueryBuilderResultModifierPanel.d.ts +22 -0
  72. package/lib/components/fetch-structure/QueryBuilderResultModifierPanel.d.ts.map +1 -0
  73. package/lib/components/fetch-structure/QueryBuilderResultModifierPanel.js +88 -0
  74. package/lib/components/fetch-structure/QueryBuilderResultModifierPanel.js.map +1 -0
  75. package/lib/components/filter/QueryBuilderFilterPanel.d.ts +22 -0
  76. package/lib/components/filter/QueryBuilderFilterPanel.d.ts.map +1 -0
  77. package/lib/components/filter/QueryBuilderFilterPanel.js +316 -0
  78. package/lib/components/filter/QueryBuilderFilterPanel.js.map +1 -0
  79. package/lib/components/shared/ElementIconUtils.d.ts +18 -0
  80. package/lib/components/shared/ElementIconUtils.d.ts.map +1 -0
  81. package/lib/components/shared/ElementIconUtils.js +37 -0
  82. package/lib/components/shared/ElementIconUtils.js.map +1 -0
  83. package/lib/components/shared/QueryBuilderLambdaEditor.d.ts +42 -0
  84. package/lib/components/shared/QueryBuilderLambdaEditor.d.ts.map +1 -0
  85. package/lib/components/shared/QueryBuilderLambdaEditor.js +47 -0
  86. package/lib/components/shared/QueryBuilderLambdaEditor.js.map +1 -0
  87. package/lib/components/shared/QueryBuilderPanelIssueCountBadge.d.ts +20 -0
  88. package/lib/components/shared/QueryBuilderPanelIssueCountBadge.d.ts.map +1 -0
  89. package/lib/components/shared/QueryBuilderPanelIssueCountBadge.js +28 -0
  90. package/lib/components/shared/QueryBuilderPanelIssueCountBadge.js.map +1 -0
  91. package/lib/components/shared/QueryBuilderPropertyInfoTooltip.d.ts +26 -0
  92. package/lib/components/shared/QueryBuilderPropertyInfoTooltip.d.ts.map +1 -0
  93. package/lib/components/shared/QueryBuilderPropertyInfoTooltip.js +32 -0
  94. package/lib/components/shared/QueryBuilderPropertyInfoTooltip.js.map +1 -0
  95. package/lib/components/workflows/ClassQueryBuilder.d.ts +18 -0
  96. package/lib/components/workflows/ClassQueryBuilder.d.ts.map +1 -0
  97. package/lib/components/workflows/ClassQueryBuilder.js +87 -0
  98. package/lib/components/workflows/ClassQueryBuilder.js.map +1 -0
  99. package/lib/components/workflows/MappingQueryBuilder.d.ts +18 -0
  100. package/lib/components/workflows/MappingQueryBuilder.d.ts.map +1 -0
  101. package/lib/components/workflows/MappingQueryBuilder.js +88 -0
  102. package/lib/components/workflows/MappingQueryBuilder.js.map +1 -0
  103. package/lib/components/workflows/ServiceQueryBuilder.d.ts +18 -0
  104. package/lib/components/workflows/ServiceQueryBuilder.d.ts.map +1 -0
  105. package/lib/components/workflows/ServiceQueryBuilder.js +69 -0
  106. package/lib/components/workflows/ServiceQueryBuilder.js.map +1 -0
  107. package/lib/graphManager/QueryBuilderSupportedFunctions.d.ts +60 -0
  108. package/lib/graphManager/QueryBuilderSupportedFunctions.d.ts.map +1 -0
  109. package/lib/graphManager/QueryBuilderSupportedFunctions.js +65 -0
  110. package/lib/graphManager/QueryBuilderSupportedFunctions.js.map +1 -0
  111. package/lib/graphManager/QueryBuilder_GraphManagerPlugin.d.ts +21 -0
  112. package/lib/graphManager/QueryBuilder_GraphManagerPlugin.d.ts.map +1 -0
  113. package/lib/graphManager/QueryBuilder_GraphManagerPlugin.js +27 -0
  114. package/lib/graphManager/QueryBuilder_GraphManagerPlugin.js.map +1 -0
  115. package/lib/graphManager/QueryBuilder_GraphManagerPreset.d.ts +24 -0
  116. package/lib/graphManager/QueryBuilder_GraphManagerPreset.d.ts.map +1 -0
  117. package/lib/graphManager/QueryBuilder_GraphManagerPreset.js +32 -0
  118. package/lib/graphManager/QueryBuilder_GraphManagerPreset.js.map +1 -0
  119. package/lib/graphManager/action/analytics/MappingRuntimeCompatibilityAnalysis.d.ts +21 -0
  120. package/lib/graphManager/action/analytics/MappingRuntimeCompatibilityAnalysis.d.ts.map +1 -0
  121. package/lib/graphManager/action/analytics/MappingRuntimeCompatibilityAnalysis.js +20 -0
  122. package/lib/graphManager/action/analytics/MappingRuntimeCompatibilityAnalysis.js.map +1 -0
  123. package/lib/graphManager/action/analytics/ServiceExecutionAnalysis.d.ts +21 -0
  124. package/lib/graphManager/action/analytics/ServiceExecutionAnalysis.d.ts.map +1 -0
  125. package/lib/graphManager/action/analytics/ServiceExecutionAnalysis.js +20 -0
  126. package/lib/graphManager/action/analytics/ServiceExecutionAnalysis.js.map +1 -0
  127. package/lib/graphManager/protocol/pure/QueryBuilder_PureGraphManagerExtension.d.ts +25 -0
  128. package/lib/graphManager/protocol/pure/QueryBuilder_PureGraphManagerExtension.d.ts.map +1 -0
  129. package/lib/graphManager/protocol/pure/QueryBuilder_PureGraphManagerExtension.js +21 -0
  130. package/lib/graphManager/protocol/pure/QueryBuilder_PureGraphManagerExtension.js.map +1 -0
  131. package/lib/graphManager/protocol/pure/QueryBuilder_PureGraphManagerExtensionBuilder.d.ts +18 -0
  132. package/lib/graphManager/protocol/pure/QueryBuilder_PureGraphManagerExtensionBuilder.d.ts.map +1 -0
  133. package/lib/graphManager/protocol/pure/QueryBuilder_PureGraphManagerExtensionBuilder.js +20 -0
  134. package/lib/graphManager/protocol/pure/QueryBuilder_PureGraphManagerExtensionBuilder.js.map +1 -0
  135. package/lib/graphManager/protocol/pure/QueryBuilder_PureProtocolProcessorPlugin.d.ts +22 -0
  136. package/lib/graphManager/protocol/pure/QueryBuilder_PureProtocolProcessorPlugin.d.ts.map +1 -0
  137. package/lib/graphManager/protocol/pure/QueryBuilder_PureProtocolProcessorPlugin.js +70 -0
  138. package/lib/graphManager/protocol/pure/QueryBuilder_PureProtocolProcessorPlugin.js.map +1 -0
  139. package/lib/graphManager/protocol/pure/v1/V1_QueryBuilder_FunctionExpressionBuilder.d.ts +22 -0
  140. package/lib/graphManager/protocol/pure/v1/V1_QueryBuilder_FunctionExpressionBuilder.d.ts.map +1 -0
  141. package/lib/graphManager/protocol/pure/v1/V1_QueryBuilder_FunctionExpressionBuilder.js +207 -0
  142. package/lib/graphManager/protocol/pure/v1/V1_QueryBuilder_FunctionExpressionBuilder.js.map +1 -0
  143. package/lib/graphManager/protocol/pure/v1/V1_QueryBuilder_PropertyExpressionTypeInferenceBuilder.d.ts +18 -0
  144. package/lib/graphManager/protocol/pure/v1/V1_QueryBuilder_PropertyExpressionTypeInferenceBuilder.d.ts.map +1 -0
  145. package/lib/graphManager/protocol/pure/v1/V1_QueryBuilder_PropertyExpressionTypeInferenceBuilder.js +18 -0
  146. package/lib/graphManager/protocol/pure/v1/V1_QueryBuilder_PropertyExpressionTypeInferenceBuilder.js.map +1 -0
  147. package/lib/graphManager/protocol/pure/v1/V1_QueryBuilder_PureGraphManagerExtension.d.ts +29 -0
  148. package/lib/graphManager/protocol/pure/v1/V1_QueryBuilder_PureGraphManagerExtension.d.ts.map +1 -0
  149. package/lib/graphManager/protocol/pure/v1/V1_QueryBuilder_PureGraphManagerExtension.js +182 -0
  150. package/lib/graphManager/protocol/pure/v1/V1_QueryBuilder_PureGraphManagerExtension.js.map +1 -0
  151. package/lib/index.css +17 -0
  152. package/lib/index.css.map +1 -0
  153. package/lib/index.d.ts +28 -0
  154. package/lib/index.d.ts.map +1 -0
  155. package/lib/index.js +26 -0
  156. package/lib/index.js.map +1 -0
  157. package/lib/package.json +95 -0
  158. package/lib/stores/QueryBuilderBootstraper.d.ts +17 -0
  159. package/lib/stores/QueryBuilderBootstraper.d.ts.map +1 -0
  160. package/lib/stores/QueryBuilderBootstraper.js +22 -0
  161. package/lib/stores/QueryBuilderBootstraper.js.map +1 -0
  162. package/lib/stores/QueryBuilderChangeDetectionState.d.ts +25 -0
  163. package/lib/stores/QueryBuilderChangeDetectionState.d.ts.map +1 -0
  164. package/lib/stores/QueryBuilderChangeDetectionState.js +32 -0
  165. package/lib/stores/QueryBuilderChangeDetectionState.js.map +1 -0
  166. package/lib/stores/QueryBuilderConfig.d.ts +32 -0
  167. package/lib/stores/QueryBuilderConfig.d.ts.map +1 -0
  168. package/lib/stores/QueryBuilderConfig.js +34 -0
  169. package/lib/stores/QueryBuilderConfig.js.map +1 -0
  170. package/lib/stores/QueryBuilderGroupOperationHelper.d.ts +22 -0
  171. package/lib/stores/QueryBuilderGroupOperationHelper.d.ts.map +1 -0
  172. package/lib/stores/QueryBuilderGroupOperationHelper.js +43 -0
  173. package/lib/stores/QueryBuilderGroupOperationHelper.js.map +1 -0
  174. package/lib/stores/QueryBuilderMilestoningState.d.ts +32 -0
  175. package/lib/stores/QueryBuilderMilestoningState.d.ts.map +1 -0
  176. package/lib/stores/QueryBuilderMilestoningState.js +95 -0
  177. package/lib/stores/QueryBuilderMilestoningState.js.map +1 -0
  178. package/lib/stores/QueryBuilderParametersState.d.ts +28 -0
  179. package/lib/stores/QueryBuilderParametersState.d.ts.map +1 -0
  180. package/lib/stores/QueryBuilderParametersState.js +39 -0
  181. package/lib/stores/QueryBuilderParametersState.js.map +1 -0
  182. package/lib/stores/QueryBuilderPreviewDataHelper.d.ts +26 -0
  183. package/lib/stores/QueryBuilderPreviewDataHelper.d.ts.map +1 -0
  184. package/lib/stores/QueryBuilderPreviewDataHelper.js +138 -0
  185. package/lib/stores/QueryBuilderPreviewDataHelper.js.map +1 -0
  186. package/lib/stores/QueryBuilderPropertyEditorState.d.ts +62 -0
  187. package/lib/stores/QueryBuilderPropertyEditorState.d.ts.map +1 -0
  188. package/lib/stores/QueryBuilderPropertyEditorState.js +395 -0
  189. package/lib/stores/QueryBuilderPropertyEditorState.js.map +1 -0
  190. package/lib/stores/QueryBuilderResultState.d.ts +41 -0
  191. package/lib/stores/QueryBuilderResultState.d.ts.map +1 -0
  192. package/lib/stores/QueryBuilderResultState.js +176 -0
  193. package/lib/stores/QueryBuilderResultState.js.map +1 -0
  194. package/lib/stores/QueryBuilderState.d.ts +110 -0
  195. package/lib/stores/QueryBuilderState.d.ts.map +1 -0
  196. package/lib/stores/QueryBuilderState.js +334 -0
  197. package/lib/stores/QueryBuilderState.js.map +1 -0
  198. package/lib/stores/QueryBuilderStateBuilder.d.ts +124 -0
  199. package/lib/stores/QueryBuilderStateBuilder.d.ts.map +1 -0
  200. package/lib/stores/QueryBuilderStateBuilder.js +311 -0
  201. package/lib/stores/QueryBuilderStateBuilder.js.map +1 -0
  202. package/lib/stores/QueryBuilderStateTestUtils.d.ts +24 -0
  203. package/lib/stores/QueryBuilderStateTestUtils.d.ts.map +1 -0
  204. package/lib/stores/QueryBuilderStateTestUtils.js +50 -0
  205. package/lib/stores/QueryBuilderStateTestUtils.js.map +1 -0
  206. package/lib/stores/QueryBuilderTextEditorState.d.ts +49 -0
  207. package/lib/stores/QueryBuilderTextEditorState.d.ts.map +1 -0
  208. package/lib/stores/QueryBuilderTextEditorState.js +145 -0
  209. package/lib/stores/QueryBuilderTextEditorState.js.map +1 -0
  210. package/lib/stores/QueryBuilderTypeaheadHelper.d.ts +24 -0
  211. package/lib/stores/QueryBuilderTypeaheadHelper.d.ts.map +1 -0
  212. package/lib/stores/QueryBuilderTypeaheadHelper.js +85 -0
  213. package/lib/stores/QueryBuilderTypeaheadHelper.js.map +1 -0
  214. package/lib/stores/QueryBuilderUnsupportedQueryState.d.ts +26 -0
  215. package/lib/stores/QueryBuilderUnsupportedQueryState.d.ts.map +1 -0
  216. package/lib/stores/QueryBuilderUnsupportedQueryState.js +37 -0
  217. package/lib/stores/QueryBuilderUnsupportedQueryState.js.map +1 -0
  218. package/lib/stores/QueryBuilderValueSpecificationBuilder.d.ts +20 -0
  219. package/lib/stores/QueryBuilderValueSpecificationBuilder.d.ts.map +1 -0
  220. package/lib/stores/QueryBuilderValueSpecificationBuilder.js +87 -0
  221. package/lib/stores/QueryBuilderValueSpecificationBuilder.js.map +1 -0
  222. package/lib/stores/QueryBuilderValueSpecificationBuilderHelper.d.ts +27 -0
  223. package/lib/stores/QueryBuilderValueSpecificationBuilderHelper.d.ts.map +1 -0
  224. package/lib/stores/QueryBuilderValueSpecificationBuilderHelper.js +161 -0
  225. package/lib/stores/QueryBuilderValueSpecificationBuilderHelper.js.map +1 -0
  226. package/lib/stores/QueryBuilderValueSpecificationHelper.d.ts +61 -0
  227. package/lib/stores/QueryBuilderValueSpecificationHelper.d.ts.map +1 -0
  228. package/lib/stores/QueryBuilderValueSpecificationHelper.js +235 -0
  229. package/lib/stores/QueryBuilderValueSpecificationHelper.js.map +1 -0
  230. package/lib/stores/explorer/QueryBuilderExplorerState.d.ts +99 -0
  231. package/lib/stores/explorer/QueryBuilderExplorerState.d.ts.map +1 -0
  232. package/lib/stores/explorer/QueryBuilderExplorerState.js +446 -0
  233. package/lib/stores/explorer/QueryBuilderExplorerState.js.map +1 -0
  234. package/lib/stores/explorer/QueryBuilderPropertySearchState.d.ts +46 -0
  235. package/lib/stores/explorer/QueryBuilderPropertySearchState.d.ts.map +1 -0
  236. package/lib/stores/explorer/QueryBuilderPropertySearchState.js +242 -0
  237. package/lib/stores/explorer/QueryBuilderPropertySearchState.js.map +1 -0
  238. package/lib/stores/explorer/QueryFunctionsExplorerState.d.ts +59 -0
  239. package/lib/stores/explorer/QueryFunctionsExplorerState.d.ts.map +1 -0
  240. package/lib/stores/explorer/QueryFunctionsExplorerState.js +228 -0
  241. package/lib/stores/explorer/QueryFunctionsExplorerState.js.map +1 -0
  242. package/lib/stores/fetch-structure/QueryBuilderFetchStructureImplementationState.d.ts +40 -0
  243. package/lib/stores/fetch-structure/QueryBuilderFetchStructureImplementationState.d.ts.map +1 -0
  244. package/lib/stores/fetch-structure/QueryBuilderFetchStructureImplementationState.js +34 -0
  245. package/lib/stores/fetch-structure/QueryBuilderFetchStructureImplementationState.js.map +1 -0
  246. package/lib/stores/fetch-structure/QueryBuilderFetchStructureState.d.ts +27 -0
  247. package/lib/stores/fetch-structure/QueryBuilderFetchStructureState.d.ts.map +1 -0
  248. package/lib/stores/fetch-structure/QueryBuilderFetchStructureState.js +73 -0
  249. package/lib/stores/fetch-structure/QueryBuilderFetchStructureState.js.map +1 -0
  250. package/lib/stores/fetch-structure/graph-fetch/QueryBuilderGraphFetchTreeState.d.ts +49 -0
  251. package/lib/stores/fetch-structure/graph-fetch/QueryBuilderGraphFetchTreeState.d.ts.map +1 -0
  252. package/lib/stores/fetch-structure/graph-fetch/QueryBuilderGraphFetchTreeState.js +157 -0
  253. package/lib/stores/fetch-structure/graph-fetch/QueryBuilderGraphFetchTreeState.js.map +1 -0
  254. package/lib/stores/fetch-structure/graph-fetch/QueryBuilderGraphFetchTreeStateBuilder.d.ts +20 -0
  255. package/lib/stores/fetch-structure/graph-fetch/QueryBuilderGraphFetchTreeStateBuilder.d.ts.map +1 -0
  256. package/lib/stores/fetch-structure/graph-fetch/QueryBuilderGraphFetchTreeStateBuilder.js +62 -0
  257. package/lib/stores/fetch-structure/graph-fetch/QueryBuilderGraphFetchTreeStateBuilder.js.map +1 -0
  258. package/lib/stores/fetch-structure/graph-fetch/QueryBuilderGraphFetchTreeUtil.d.ts +42 -0
  259. package/lib/stores/fetch-structure/graph-fetch/QueryBuilderGraphFetchTreeUtil.d.ts.map +1 -0
  260. package/lib/stores/fetch-structure/graph-fetch/QueryBuilderGraphFetchTreeUtil.js +173 -0
  261. package/lib/stores/fetch-structure/graph-fetch/QueryBuilderGraphFetchTreeUtil.js.map +1 -0
  262. package/lib/stores/fetch-structure/graph-fetch/QueryBuilderGraphFetchValueSpecificationBuilder.d.ts +26 -0
  263. package/lib/stores/fetch-structure/graph-fetch/QueryBuilderGraphFetchValueSpecificationBuilder.d.ts.map +1 -0
  264. package/lib/stores/fetch-structure/graph-fetch/QueryBuilderGraphFetchValueSpecificationBuilder.js +72 -0
  265. package/lib/stores/fetch-structure/graph-fetch/QueryBuilderGraphFetchValueSpecificationBuilder.js.map +1 -0
  266. package/lib/stores/fetch-structure/projection/QueryBuilderProjectionColumnState.d.ts +73 -0
  267. package/lib/stores/fetch-structure/projection/QueryBuilderProjectionColumnState.d.ts.map +1 -0
  268. package/lib/stores/fetch-structure/projection/QueryBuilderProjectionColumnState.js +187 -0
  269. package/lib/stores/fetch-structure/projection/QueryBuilderProjectionColumnState.js.map +1 -0
  270. package/lib/stores/fetch-structure/projection/QueryBuilderProjectionState.d.ts +68 -0
  271. package/lib/stores/fetch-structure/projection/QueryBuilderProjectionState.d.ts.map +1 -0
  272. package/lib/stores/fetch-structure/projection/QueryBuilderProjectionState.js +305 -0
  273. package/lib/stores/fetch-structure/projection/QueryBuilderProjectionState.js.map +1 -0
  274. package/lib/stores/fetch-structure/projection/QueryBuilderProjectionStateBuilder.d.ts +25 -0
  275. package/lib/stores/fetch-structure/projection/QueryBuilderProjectionStateBuilder.d.ts.map +1 -0
  276. package/lib/stores/fetch-structure/projection/QueryBuilderProjectionStateBuilder.js +186 -0
  277. package/lib/stores/fetch-structure/projection/QueryBuilderProjectionStateBuilder.js.map +1 -0
  278. package/lib/stores/fetch-structure/projection/QueryBuilderProjectionValueSpecificationBuilder.d.ts +26 -0
  279. package/lib/stores/fetch-structure/projection/QueryBuilderProjectionValueSpecificationBuilder.d.ts.map +1 -0
  280. package/lib/stores/fetch-structure/projection/QueryBuilderProjectionValueSpecificationBuilder.js +189 -0
  281. package/lib/stores/fetch-structure/projection/QueryBuilderProjectionValueSpecificationBuilder.js.map +1 -0
  282. package/lib/stores/fetch-structure/projection/QueryResultSetModifierState.d.ts +43 -0
  283. package/lib/stores/fetch-structure/projection/QueryResultSetModifierState.d.ts.map +1 -0
  284. package/lib/stores/fetch-structure/projection/QueryResultSetModifierState.js +77 -0
  285. package/lib/stores/fetch-structure/projection/QueryResultSetModifierState.js.map +1 -0
  286. package/lib/stores/fetch-structure/projection/aggregation/QueryBuilderAggregateOperator.d.ts +32 -0
  287. package/lib/stores/fetch-structure/projection/aggregation/QueryBuilderAggregateOperator.d.ts.map +1 -0
  288. package/lib/stores/fetch-structure/projection/aggregation/QueryBuilderAggregateOperator.js +36 -0
  289. package/lib/stores/fetch-structure/projection/aggregation/QueryBuilderAggregateOperator.js.map +1 -0
  290. package/lib/stores/fetch-structure/projection/aggregation/QueryBuilderAggregateOperatorLoader.d.ts +18 -0
  291. package/lib/stores/fetch-structure/projection/aggregation/QueryBuilderAggregateOperatorLoader.d.ts.map +1 -0
  292. package/lib/stores/fetch-structure/projection/aggregation/QueryBuilderAggregateOperatorLoader.js +38 -0
  293. package/lib/stores/fetch-structure/projection/aggregation/QueryBuilderAggregateOperatorLoader.js.map +1 -0
  294. package/lib/stores/fetch-structure/projection/aggregation/QueryBuilderAggregationState.d.ts +42 -0
  295. package/lib/stores/fetch-structure/projection/aggregation/QueryBuilderAggregationState.d.ts.map +1 -0
  296. package/lib/stores/fetch-structure/projection/aggregation/QueryBuilderAggregationState.js +103 -0
  297. package/lib/stores/fetch-structure/projection/aggregation/QueryBuilderAggregationState.js.map +1 -0
  298. package/lib/stores/fetch-structure/projection/aggregation/QueryBuilderAggregationStateBuilder.d.ts +20 -0
  299. package/lib/stores/fetch-structure/projection/aggregation/QueryBuilderAggregationStateBuilder.d.ts.map +1 -0
  300. package/lib/stores/fetch-structure/projection/aggregation/QueryBuilderAggregationStateBuilder.js +96 -0
  301. package/lib/stores/fetch-structure/projection/aggregation/QueryBuilderAggregationStateBuilder.js.map +1 -0
  302. package/lib/stores/fetch-structure/projection/aggregation/operators/QueryBuilderAggregateOperatorHelper.d.ts +22 -0
  303. package/lib/stores/fetch-structure/projection/aggregation/operators/QueryBuilderAggregateOperatorHelper.d.ts.map +1 -0
  304. package/lib/stores/fetch-structure/projection/aggregation/operators/QueryBuilderAggregateOperatorHelper.js +40 -0
  305. package/lib/stores/fetch-structure/projection/aggregation/operators/QueryBuilderAggregateOperatorHelper.js.map +1 -0
  306. package/lib/stores/fetch-structure/projection/aggregation/operators/QueryBuilderAggregateOperator_Average.d.ts +27 -0
  307. package/lib/stores/fetch-structure/projection/aggregation/operators/QueryBuilderAggregateOperator_Average.d.ts.map +1 -0
  308. package/lib/stores/fetch-structure/projection/aggregation/operators/QueryBuilderAggregateOperator_Average.js +50 -0
  309. package/lib/stores/fetch-structure/projection/aggregation/operators/QueryBuilderAggregateOperator_Average.js.map +1 -0
  310. package/lib/stores/fetch-structure/projection/aggregation/operators/QueryBuilderAggregateOperator_Count.d.ts +27 -0
  311. package/lib/stores/fetch-structure/projection/aggregation/operators/QueryBuilderAggregateOperator_Count.d.ts.map +1 -0
  312. package/lib/stores/fetch-structure/projection/aggregation/operators/QueryBuilderAggregateOperator_Count.js +55 -0
  313. package/lib/stores/fetch-structure/projection/aggregation/operators/QueryBuilderAggregateOperator_Count.js.map +1 -0
  314. package/lib/stores/fetch-structure/projection/aggregation/operators/QueryBuilderAggregateOperator_Distinct.d.ts +26 -0
  315. package/lib/stores/fetch-structure/projection/aggregation/operators/QueryBuilderAggregateOperator_Distinct.d.ts.map +1 -0
  316. package/lib/stores/fetch-structure/projection/aggregation/operators/QueryBuilderAggregateOperator_Distinct.js +50 -0
  317. package/lib/stores/fetch-structure/projection/aggregation/operators/QueryBuilderAggregateOperator_Distinct.js.map +1 -0
  318. package/lib/stores/fetch-structure/projection/aggregation/operators/QueryBuilderAggregateOperator_DistinctCount.d.ts +27 -0
  319. package/lib/stores/fetch-structure/projection/aggregation/operators/QueryBuilderAggregateOperator_DistinctCount.d.ts.map +1 -0
  320. package/lib/stores/fetch-structure/projection/aggregation/operators/QueryBuilderAggregateOperator_DistinctCount.js +78 -0
  321. package/lib/stores/fetch-structure/projection/aggregation/operators/QueryBuilderAggregateOperator_DistinctCount.js.map +1 -0
  322. package/lib/stores/fetch-structure/projection/aggregation/operators/QueryBuilderAggregateOperator_JoinString.d.ts +27 -0
  323. package/lib/stores/fetch-structure/projection/aggregation/operators/QueryBuilderAggregateOperator_JoinString.d.ts.map +1 -0
  324. package/lib/stores/fetch-structure/projection/aggregation/operators/QueryBuilderAggregateOperator_JoinString.js +67 -0
  325. package/lib/stores/fetch-structure/projection/aggregation/operators/QueryBuilderAggregateOperator_JoinString.js.map +1 -0
  326. package/lib/stores/fetch-structure/projection/aggregation/operators/QueryBuilderAggregateOperator_Max.d.ts +26 -0
  327. package/lib/stores/fetch-structure/projection/aggregation/operators/QueryBuilderAggregateOperator_Max.d.ts.map +1 -0
  328. package/lib/stores/fetch-structure/projection/aggregation/operators/QueryBuilderAggregateOperator_Max.js +86 -0
  329. package/lib/stores/fetch-structure/projection/aggregation/operators/QueryBuilderAggregateOperator_Max.js.map +1 -0
  330. package/lib/stores/fetch-structure/projection/aggregation/operators/QueryBuilderAggregateOperator_Min.d.ts +26 -0
  331. package/lib/stores/fetch-structure/projection/aggregation/operators/QueryBuilderAggregateOperator_Min.d.ts.map +1 -0
  332. package/lib/stores/fetch-structure/projection/aggregation/operators/QueryBuilderAggregateOperator_Min.js +86 -0
  333. package/lib/stores/fetch-structure/projection/aggregation/operators/QueryBuilderAggregateOperator_Min.js.map +1 -0
  334. package/lib/stores/fetch-structure/projection/aggregation/operators/QueryBuilderAggregateOperator_StdDev_Population.d.ts +27 -0
  335. package/lib/stores/fetch-structure/projection/aggregation/operators/QueryBuilderAggregateOperator_StdDev_Population.d.ts.map +1 -0
  336. package/lib/stores/fetch-structure/projection/aggregation/operators/QueryBuilderAggregateOperator_StdDev_Population.js +50 -0
  337. package/lib/stores/fetch-structure/projection/aggregation/operators/QueryBuilderAggregateOperator_StdDev_Population.js.map +1 -0
  338. package/lib/stores/fetch-structure/projection/aggregation/operators/QueryBuilderAggregateOperator_StdDev_Sample.d.ts +27 -0
  339. package/lib/stores/fetch-structure/projection/aggregation/operators/QueryBuilderAggregateOperator_StdDev_Sample.d.ts.map +1 -0
  340. package/lib/stores/fetch-structure/projection/aggregation/operators/QueryBuilderAggregateOperator_StdDev_Sample.js +50 -0
  341. package/lib/stores/fetch-structure/projection/aggregation/operators/QueryBuilderAggregateOperator_StdDev_Sample.js.map +1 -0
  342. package/lib/stores/fetch-structure/projection/aggregation/operators/QueryBuilderAggregateOperator_Sum.d.ts +26 -0
  343. package/lib/stores/fetch-structure/projection/aggregation/operators/QueryBuilderAggregateOperator_Sum.d.ts.map +1 -0
  344. package/lib/stores/fetch-structure/projection/aggregation/operators/QueryBuilderAggregateOperator_Sum.js +45 -0
  345. package/lib/stores/fetch-structure/projection/aggregation/operators/QueryBuilderAggregateOperator_Sum.js.map +1 -0
  346. package/lib/stores/fetch-structure/projection/post-filter/QueryBuilderPostFilterOperator.d.ts +29 -0
  347. package/lib/stores/fetch-structure/projection/post-filter/QueryBuilderPostFilterOperator.d.ts.map +1 -0
  348. package/lib/stores/fetch-structure/projection/post-filter/QueryBuilderPostFilterOperator.js +30 -0
  349. package/lib/stores/fetch-structure/projection/post-filter/QueryBuilderPostFilterOperator.js.map +1 -0
  350. package/lib/stores/fetch-structure/projection/post-filter/QueryBuilderPostFilterOperatorLoader.d.ts +18 -0
  351. package/lib/stores/fetch-structure/projection/post-filter/QueryBuilderPostFilterOperatorLoader.d.ts.map +1 -0
  352. package/lib/stores/fetch-structure/projection/post-filter/QueryBuilderPostFilterOperatorLoader.js +44 -0
  353. package/lib/stores/fetch-structure/projection/post-filter/QueryBuilderPostFilterOperatorLoader.js.map +1 -0
  354. package/lib/stores/fetch-structure/projection/post-filter/QueryBuilderPostFilterState.d.ts +135 -0
  355. package/lib/stores/fetch-structure/projection/post-filter/QueryBuilderPostFilterState.d.ts.map +1 -0
  356. package/lib/stores/fetch-structure/projection/post-filter/QueryBuilderPostFilterState.js +585 -0
  357. package/lib/stores/fetch-structure/projection/post-filter/QueryBuilderPostFilterState.js.map +1 -0
  358. package/lib/stores/fetch-structure/projection/post-filter/QueryBuilderPostFilterStateBuilder.d.ts +22 -0
  359. package/lib/stores/fetch-structure/projection/post-filter/QueryBuilderPostFilterStateBuilder.d.ts.map +1 -0
  360. package/lib/stores/fetch-structure/projection/post-filter/QueryBuilderPostFilterStateBuilder.js +122 -0
  361. package/lib/stores/fetch-structure/projection/post-filter/QueryBuilderPostFilterStateBuilder.js.map +1 -0
  362. package/lib/stores/fetch-structure/projection/post-filter/QueryBuilderPostFilterValueSpecificationBuilder.d.ts +19 -0
  363. package/lib/stores/fetch-structure/projection/post-filter/QueryBuilderPostFilterValueSpecificationBuilder.d.ts.map +1 -0
  364. package/lib/stores/fetch-structure/projection/post-filter/QueryBuilderPostFilterValueSpecificationBuilder.js +79 -0
  365. package/lib/stores/fetch-structure/projection/post-filter/QueryBuilderPostFilterValueSpecificationBuilder.js.map +1 -0
  366. package/lib/stores/fetch-structure/projection/post-filter/operators/QueryBuilderPostFilterOperatorHelper.d.ts +23 -0
  367. package/lib/stores/fetch-structure/projection/post-filter/operators/QueryBuilderPostFilterOperatorHelper.d.ts.map +1 -0
  368. package/lib/stores/fetch-structure/projection/post-filter/operators/QueryBuilderPostFilterOperatorHelper.js +73 -0
  369. package/lib/stores/fetch-structure/projection/post-filter/operators/QueryBuilderPostFilterOperatorHelper.js.map +1 -0
  370. package/lib/stores/fetch-structure/projection/post-filter/operators/QueryBuilderPostFilterOperator_Contain.d.ts +32 -0
  371. package/lib/stores/fetch-structure/projection/post-filter/operators/QueryBuilderPostFilterOperator_Contain.d.ts.map +1 -0
  372. package/lib/stores/fetch-structure/projection/post-filter/operators/QueryBuilderPostFilterOperator_Contain.js +75 -0
  373. package/lib/stores/fetch-structure/projection/post-filter/operators/QueryBuilderPostFilterOperator_Contain.js.map +1 -0
  374. package/lib/stores/fetch-structure/projection/post-filter/operators/QueryBuilderPostFilterOperator_EndWith.d.ts +32 -0
  375. package/lib/stores/fetch-structure/projection/post-filter/operators/QueryBuilderPostFilterOperator_EndWith.d.ts.map +1 -0
  376. package/lib/stores/fetch-structure/projection/post-filter/operators/QueryBuilderPostFilterOperator_EndWith.js +75 -0
  377. package/lib/stores/fetch-structure/projection/post-filter/operators/QueryBuilderPostFilterOperator_EndWith.js.map +1 -0
  378. package/lib/stores/fetch-structure/projection/post-filter/operators/QueryBuilderPostFilterOperator_Equal.d.ts +32 -0
  379. package/lib/stores/fetch-structure/projection/post-filter/operators/QueryBuilderPostFilterOperator_Equal.d.ts.map +1 -0
  380. package/lib/stores/fetch-structure/projection/post-filter/operators/QueryBuilderPostFilterOperator_Equal.js +118 -0
  381. package/lib/stores/fetch-structure/projection/post-filter/operators/QueryBuilderPostFilterOperator_Equal.js.map +1 -0
  382. package/lib/stores/fetch-structure/projection/post-filter/operators/QueryBuilderPostFilterOperator_GreaterThan.d.ts +27 -0
  383. package/lib/stores/fetch-structure/projection/post-filter/operators/QueryBuilderPostFilterOperator_GreaterThan.d.ts.map +1 -0
  384. package/lib/stores/fetch-structure/projection/post-filter/operators/QueryBuilderPostFilterOperator_GreaterThan.js +81 -0
  385. package/lib/stores/fetch-structure/projection/post-filter/operators/QueryBuilderPostFilterOperator_GreaterThan.js.map +1 -0
  386. package/lib/stores/fetch-structure/projection/post-filter/operators/QueryBuilderPostFilterOperator_GreaterThanEqual.d.ts +24 -0
  387. package/lib/stores/fetch-structure/projection/post-filter/operators/QueryBuilderPostFilterOperator_GreaterThanEqual.d.ts.map +1 -0
  388. package/lib/stores/fetch-structure/projection/post-filter/operators/QueryBuilderPostFilterOperator_GreaterThanEqual.js +43 -0
  389. package/lib/stores/fetch-structure/projection/post-filter/operators/QueryBuilderPostFilterOperator_GreaterThanEqual.js.map +1 -0
  390. package/lib/stores/fetch-structure/projection/post-filter/operators/QueryBuilderPostFilterOperator_In.d.ts +32 -0
  391. package/lib/stores/fetch-structure/projection/post-filter/operators/QueryBuilderPostFilterOperator_In.d.ts.map +1 -0
  392. package/lib/stores/fetch-structure/projection/post-filter/operators/QueryBuilderPostFilterOperator_In.js +104 -0
  393. package/lib/stores/fetch-structure/projection/post-filter/operators/QueryBuilderPostFilterOperator_In.js.map +1 -0
  394. package/lib/stores/fetch-structure/projection/post-filter/operators/QueryBuilderPostFilterOperator_IsEmpty.d.ts +33 -0
  395. package/lib/stores/fetch-structure/projection/post-filter/operators/QueryBuilderPostFilterOperator_IsEmpty.d.ts.map +1 -0
  396. package/lib/stores/fetch-structure/projection/post-filter/operators/QueryBuilderPostFilterOperator_IsEmpty.js +67 -0
  397. package/lib/stores/fetch-structure/projection/post-filter/operators/QueryBuilderPostFilterOperator_IsEmpty.js.map +1 -0
  398. package/lib/stores/fetch-structure/projection/post-filter/operators/QueryBuilderPostFilterOperator_LessThan.d.ts +27 -0
  399. package/lib/stores/fetch-structure/projection/post-filter/operators/QueryBuilderPostFilterOperator_LessThan.d.ts.map +1 -0
  400. package/lib/stores/fetch-structure/projection/post-filter/operators/QueryBuilderPostFilterOperator_LessThan.js +81 -0
  401. package/lib/stores/fetch-structure/projection/post-filter/operators/QueryBuilderPostFilterOperator_LessThan.js.map +1 -0
  402. package/lib/stores/fetch-structure/projection/post-filter/operators/QueryBuilderPostFilterOperator_LessThanEqual.d.ts +24 -0
  403. package/lib/stores/fetch-structure/projection/post-filter/operators/QueryBuilderPostFilterOperator_LessThanEqual.d.ts.map +1 -0
  404. package/lib/stores/fetch-structure/projection/post-filter/operators/QueryBuilderPostFilterOperator_LessThanEqual.js +43 -0
  405. package/lib/stores/fetch-structure/projection/post-filter/operators/QueryBuilderPostFilterOperator_LessThanEqual.js.map +1 -0
  406. package/lib/stores/fetch-structure/projection/post-filter/operators/QueryBuilderPostFilterOperator_StartWith.d.ts +32 -0
  407. package/lib/stores/fetch-structure/projection/post-filter/operators/QueryBuilderPostFilterOperator_StartWith.d.ts.map +1 -0
  408. package/lib/stores/fetch-structure/projection/post-filter/operators/QueryBuilderPostFilterOperator_StartWith.js +75 -0
  409. package/lib/stores/fetch-structure/projection/post-filter/operators/QueryBuilderPostFilterOperator_StartWith.js.map +1 -0
  410. package/lib/stores/filter/QueryBuilderFilterOperator.d.ts +27 -0
  411. package/lib/stores/filter/QueryBuilderFilterOperator.d.ts.map +1 -0
  412. package/lib/stores/filter/QueryBuilderFilterOperator.js +20 -0
  413. package/lib/stores/filter/QueryBuilderFilterOperator.js.map +1 -0
  414. package/lib/stores/filter/QueryBuilderFilterOperatorLoader.d.ts +18 -0
  415. package/lib/stores/filter/QueryBuilderFilterOperatorLoader.d.ts.map +1 -0
  416. package/lib/stores/filter/QueryBuilderFilterOperatorLoader.js +44 -0
  417. package/lib/stores/filter/QueryBuilderFilterOperatorLoader.js.map +1 -0
  418. package/lib/stores/filter/QueryBuilderFilterState.d.ts +123 -0
  419. package/lib/stores/filter/QueryBuilderFilterState.d.ts.map +1 -0
  420. package/lib/stores/filter/QueryBuilderFilterState.js +531 -0
  421. package/lib/stores/filter/QueryBuilderFilterState.js.map +1 -0
  422. package/lib/stores/filter/QueryBuilderFilterStateBuilder.d.ts +19 -0
  423. package/lib/stores/filter/QueryBuilderFilterStateBuilder.d.ts.map +1 -0
  424. package/lib/stores/filter/QueryBuilderFilterStateBuilder.js +74 -0
  425. package/lib/stores/filter/QueryBuilderFilterStateBuilder.js.map +1 -0
  426. package/lib/stores/filter/QueryBuilderFilterValueSpecificationBuilder.d.ts +19 -0
  427. package/lib/stores/filter/QueryBuilderFilterValueSpecificationBuilder.d.ts.map +1 -0
  428. package/lib/stores/filter/QueryBuilderFilterValueSpecificationBuilder.js +78 -0
  429. package/lib/stores/filter/QueryBuilderFilterValueSpecificationBuilder.js.map +1 -0
  430. package/lib/stores/filter/operators/QueryBuilderFilterOperatorHelper.d.ts +21 -0
  431. package/lib/stores/filter/operators/QueryBuilderFilterOperatorHelper.d.ts.map +1 -0
  432. package/lib/stores/filter/operators/QueryBuilderFilterOperatorHelper.js +257 -0
  433. package/lib/stores/filter/operators/QueryBuilderFilterOperatorHelper.js.map +1 -0
  434. package/lib/stores/filter/operators/QueryBuilderFilterOperator_Contain.d.ts +32 -0
  435. package/lib/stores/filter/operators/QueryBuilderFilterOperator_Contain.d.ts.map +1 -0
  436. package/lib/stores/filter/operators/QueryBuilderFilterOperator_Contain.js +71 -0
  437. package/lib/stores/filter/operators/QueryBuilderFilterOperator_Contain.js.map +1 -0
  438. package/lib/stores/filter/operators/QueryBuilderFilterOperator_EndWith.d.ts +32 -0
  439. package/lib/stores/filter/operators/QueryBuilderFilterOperator_EndWith.d.ts.map +1 -0
  440. package/lib/stores/filter/operators/QueryBuilderFilterOperator_EndWith.js +71 -0
  441. package/lib/stores/filter/operators/QueryBuilderFilterOperator_EndWith.js.map +1 -0
  442. package/lib/stores/filter/operators/QueryBuilderFilterOperator_Equal.d.ts +32 -0
  443. package/lib/stores/filter/operators/QueryBuilderFilterOperator_Equal.d.ts.map +1 -0
  444. package/lib/stores/filter/operators/QueryBuilderFilterOperator_Equal.js +115 -0
  445. package/lib/stores/filter/operators/QueryBuilderFilterOperator_Equal.js.map +1 -0
  446. package/lib/stores/filter/operators/QueryBuilderFilterOperator_GreaterThan.d.ts +27 -0
  447. package/lib/stores/filter/operators/QueryBuilderFilterOperator_GreaterThan.d.ts.map +1 -0
  448. package/lib/stores/filter/operators/QueryBuilderFilterOperator_GreaterThan.js +83 -0
  449. package/lib/stores/filter/operators/QueryBuilderFilterOperator_GreaterThan.js.map +1 -0
  450. package/lib/stores/filter/operators/QueryBuilderFilterOperator_GreaterThanEqual.d.ts +27 -0
  451. package/lib/stores/filter/operators/QueryBuilderFilterOperator_GreaterThanEqual.d.ts.map +1 -0
  452. package/lib/stores/filter/operators/QueryBuilderFilterOperator_GreaterThanEqual.js +83 -0
  453. package/lib/stores/filter/operators/QueryBuilderFilterOperator_GreaterThanEqual.js.map +1 -0
  454. package/lib/stores/filter/operators/QueryBuilderFilterOperator_In.d.ts +32 -0
  455. package/lib/stores/filter/operators/QueryBuilderFilterOperator_In.d.ts.map +1 -0
  456. package/lib/stores/filter/operators/QueryBuilderFilterOperator_In.js +103 -0
  457. package/lib/stores/filter/operators/QueryBuilderFilterOperator_In.js.map +1 -0
  458. package/lib/stores/filter/operators/QueryBuilderFilterOperator_IsEmpty.d.ts +32 -0
  459. package/lib/stores/filter/operators/QueryBuilderFilterOperator_IsEmpty.d.ts.map +1 -0
  460. package/lib/stores/filter/operators/QueryBuilderFilterOperator_IsEmpty.js +65 -0
  461. package/lib/stores/filter/operators/QueryBuilderFilterOperator_IsEmpty.js.map +1 -0
  462. package/lib/stores/filter/operators/QueryBuilderFilterOperator_LessThan.d.ts +27 -0
  463. package/lib/stores/filter/operators/QueryBuilderFilterOperator_LessThan.d.ts.map +1 -0
  464. package/lib/stores/filter/operators/QueryBuilderFilterOperator_LessThan.js +83 -0
  465. package/lib/stores/filter/operators/QueryBuilderFilterOperator_LessThan.js.map +1 -0
  466. package/lib/stores/filter/operators/QueryBuilderFilterOperator_LessThanEqual.d.ts +27 -0
  467. package/lib/stores/filter/operators/QueryBuilderFilterOperator_LessThanEqual.d.ts.map +1 -0
  468. package/lib/stores/filter/operators/QueryBuilderFilterOperator_LessThanEqual.js +83 -0
  469. package/lib/stores/filter/operators/QueryBuilderFilterOperator_LessThanEqual.js.map +1 -0
  470. package/lib/stores/filter/operators/QueryBuilderFilterOperator_StartWith.d.ts +32 -0
  471. package/lib/stores/filter/operators/QueryBuilderFilterOperator_StartWith.d.ts.map +1 -0
  472. package/lib/stores/filter/operators/QueryBuilderFilterOperator_StartWith.js +71 -0
  473. package/lib/stores/filter/operators/QueryBuilderFilterOperator_StartWith.js.map +1 -0
  474. package/lib/stores/workflows/ClassQueryBuilderState.d.ts +35 -0
  475. package/lib/stores/workflows/ClassQueryBuilderState.d.ts.map +1 -0
  476. package/lib/stores/workflows/ClassQueryBuilderState.js +57 -0
  477. package/lib/stores/workflows/ClassQueryBuilderState.js.map +1 -0
  478. package/lib/stores/workflows/MappingQueryBuilderState.d.ts +33 -0
  479. package/lib/stores/workflows/MappingQueryBuilderState.d.ts.map +1 -0
  480. package/lib/stores/workflows/MappingQueryBuilderState.js +55 -0
  481. package/lib/stores/workflows/MappingQueryBuilderState.js.map +1 -0
  482. package/lib/stores/workflows/ServiceQueryBuilderState.d.ts +44 -0
  483. package/lib/stores/workflows/ServiceQueryBuilderState.d.ts.map +1 -0
  484. package/lib/stores/workflows/ServiceQueryBuilderState.js +90 -0
  485. package/lib/stores/workflows/ServiceQueryBuilderState.js.map +1 -0
  486. package/package.json +95 -0
  487. package/src/components/QueryBuilder.tsx +411 -0
  488. package/src/components/QueryBuilderComponentTestUtils.tsx +122 -0
  489. package/src/components/QueryBuilderParametersPanel.tsx +431 -0
  490. package/src/components/QueryBuilderPropertyExpressionEditor.tsx +376 -0
  491. package/src/components/QueryBuilderResultPanel.tsx +640 -0
  492. package/src/components/QueryBuilderSideBar.tsx +421 -0
  493. package/src/components/QueryBuilderTextEditor.tsx +127 -0
  494. package/src/components/QueryBuilderUnsupportedQueryEditor.tsx +88 -0
  495. package/src/components/QueryBuilder_TestID.ts +26 -0
  496. package/src/components/explorer/QueryBuilderExplorerPanel.tsx +934 -0
  497. package/src/components/explorer/QueryBuilderFunctionsExplorerPanel.tsx +554 -0
  498. package/src/components/explorer/QueryBuilderMilestoneEditor.tsx +296 -0
  499. package/src/components/explorer/QueryBuilderPropertySearchPanel.tsx +617 -0
  500. package/src/components/fetch-structure/QueryBuilderFetchStructurePanel.tsx +112 -0
  501. package/src/components/fetch-structure/QueryBuilderGraphFetchTreePanel.tsx +276 -0
  502. package/src/components/fetch-structure/QueryBuilderPostFilterPanel.tsx +1103 -0
  503. package/src/components/fetch-structure/QueryBuilderProjectionPanel.tsx +649 -0
  504. package/src/components/fetch-structure/QueryBuilderResultModifierPanel.tsx +254 -0
  505. package/src/components/filter/QueryBuilderFilterPanel.tsx +891 -0
  506. package/src/components/shared/ElementIconUtils.tsx +47 -0
  507. package/src/components/shared/QueryBuilderLambdaEditor.tsx +120 -0
  508. package/src/components/shared/QueryBuilderPanelIssueCountBadge.tsx +40 -0
  509. package/src/components/shared/QueryBuilderPropertyInfoTooltip.tsx +87 -0
  510. package/src/components/workflows/ClassQueryBuilder.tsx +198 -0
  511. package/src/components/workflows/MappingQueryBuilder.tsx +195 -0
  512. package/src/components/workflows/ServiceQueryBuilder.tsx +192 -0
  513. package/src/graphManager/QueryBuilderSupportedFunctions.ts +67 -0
  514. package/src/graphManager/QueryBuilder_GraphManagerPlugin.ts +32 -0
  515. package/src/graphManager/QueryBuilder_GraphManagerPreset.ts +33 -0
  516. package/src/graphManager/action/analytics/MappingRuntimeCompatibilityAnalysis.ts +22 -0
  517. package/src/graphManager/action/analytics/ServiceExecutionAnalysis.ts +22 -0
  518. package/src/graphManager/protocol/pure/QueryBuilder_PureGraphManagerExtension.ts +47 -0
  519. package/src/graphManager/protocol/pure/QueryBuilder_PureGraphManagerExtensionBuilder.ts +27 -0
  520. package/src/graphManager/protocol/pure/QueryBuilder_PureProtocolProcessorPlugin.ts +167 -0
  521. package/src/graphManager/protocol/pure/v1/V1_QueryBuilder_FunctionExpressionBuilder.ts +571 -0
  522. package/src/graphManager/protocol/pure/v1/V1_QueryBuilder_PropertyExpressionTypeInferenceBuilder.ts +28 -0
  523. package/src/graphManager/protocol/pure/v1/V1_QueryBuilder_PureGraphManagerExtension.ts +296 -0
  524. package/src/index.ts +38 -0
  525. package/src/stores/QueryBuilderBootstraper.ts +23 -0
  526. package/src/stores/QueryBuilderChangeDetectionState.ts +37 -0
  527. package/src/stores/QueryBuilderConfig.ts +34 -0
  528. package/src/stores/QueryBuilderGroupOperationHelper.ts +54 -0
  529. package/src/stores/QueryBuilderMilestoningState.ts +164 -0
  530. package/src/stores/QueryBuilderParametersState.ts +52 -0
  531. package/src/stores/QueryBuilderPreviewDataHelper.ts +202 -0
  532. package/src/stores/QueryBuilderPropertyEditorState.ts +668 -0
  533. package/src/stores/QueryBuilderResultState.ts +281 -0
  534. package/src/stores/QueryBuilderState.ts +465 -0
  535. package/src/stores/QueryBuilderStateBuilder.ts +585 -0
  536. package/src/stores/QueryBuilderStateTestUtils.ts +99 -0
  537. package/src/stores/QueryBuilderTextEditorState.ts +203 -0
  538. package/src/stores/QueryBuilderTypeaheadHelper.ts +152 -0
  539. package/src/stores/QueryBuilderUnsupportedQueryState.ts +44 -0
  540. package/src/stores/QueryBuilderValueSpecificationBuilder.ts +179 -0
  541. package/src/stores/QueryBuilderValueSpecificationBuilderHelper.ts +256 -0
  542. package/src/stores/QueryBuilderValueSpecificationHelper.ts +359 -0
  543. package/src/stores/explorer/QueryBuilderExplorerState.ts +798 -0
  544. package/src/stores/explorer/QueryBuilderPropertySearchState.ts +333 -0
  545. package/src/stores/explorer/QueryFunctionsExplorerState.ts +375 -0
  546. package/src/stores/fetch-structure/QueryBuilderFetchStructureImplementationState.ts +65 -0
  547. package/src/stores/fetch-structure/QueryBuilderFetchStructureState.ts +107 -0
  548. package/src/stores/fetch-structure/graph-fetch/QueryBuilderGraphFetchTreeState.ts +240 -0
  549. package/src/stores/fetch-structure/graph-fetch/QueryBuilderGraphFetchTreeStateBuilder.ts +131 -0
  550. package/src/stores/fetch-structure/graph-fetch/QueryBuilderGraphFetchTreeUtil.ts +282 -0
  551. package/src/stores/fetch-structure/graph-fetch/QueryBuilderGraphFetchValueSpecificationBuilder.ts +154 -0
  552. package/src/stores/fetch-structure/projection/QueryBuilderProjectionColumnState.ts +327 -0
  553. package/src/stores/fetch-structure/projection/QueryBuilderProjectionState.ts +569 -0
  554. package/src/stores/fetch-structure/projection/QueryBuilderProjectionStateBuilder.ts +426 -0
  555. package/src/stores/fetch-structure/projection/QueryBuilderProjectionValueSpecificationBuilder.ts +416 -0
  556. package/src/stores/fetch-structure/projection/QueryResultSetModifierState.ts +95 -0
  557. package/src/stores/fetch-structure/projection/aggregation/QueryBuilderAggregateOperator.ts +79 -0
  558. package/src/stores/fetch-structure/projection/aggregation/QueryBuilderAggregateOperatorLoader.ts +41 -0
  559. package/src/stores/fetch-structure/projection/aggregation/QueryBuilderAggregationState.ts +145 -0
  560. package/src/stores/fetch-structure/projection/aggregation/QueryBuilderAggregationStateBuilder.ts +228 -0
  561. package/src/stores/fetch-structure/projection/aggregation/operators/QueryBuilderAggregateOperatorHelper.ts +109 -0
  562. package/src/stores/fetch-structure/projection/aggregation/operators/QueryBuilderAggregateOperator_Average.ts +98 -0
  563. package/src/stores/fetch-structure/projection/aggregation/operators/QueryBuilderAggregateOperator_Count.ts +106 -0
  564. package/src/stores/fetch-structure/projection/aggregation/operators/QueryBuilderAggregateOperator_Distinct.ts +96 -0
  565. package/src/stores/fetch-structure/projection/aggregation/operators/QueryBuilderAggregateOperator_DistinctCount.ts +173 -0
  566. package/src/stores/fetch-structure/projection/aggregation/operators/QueryBuilderAggregateOperator_JoinString.ts +155 -0
  567. package/src/stores/fetch-structure/projection/aggregation/operators/QueryBuilderAggregateOperator_Max.ts +174 -0
  568. package/src/stores/fetch-structure/projection/aggregation/operators/QueryBuilderAggregateOperator_Min.ts +174 -0
  569. package/src/stores/fetch-structure/projection/aggregation/operators/QueryBuilderAggregateOperator_StdDev_Population.ts +98 -0
  570. package/src/stores/fetch-structure/projection/aggregation/operators/QueryBuilderAggregateOperator_StdDev_Sample.ts +98 -0
  571. package/src/stores/fetch-structure/projection/aggregation/operators/QueryBuilderAggregateOperator_Sum.ts +88 -0
  572. package/src/stores/fetch-structure/projection/post-filter/QueryBuilderPostFilterOperator.ts +66 -0
  573. package/src/stores/fetch-structure/projection/post-filter/QueryBuilderPostFilterOperatorLoader.ts +65 -0
  574. package/src/stores/fetch-structure/projection/post-filter/QueryBuilderPostFilterState.ts +807 -0
  575. package/src/stores/fetch-structure/projection/post-filter/QueryBuilderPostFilterStateBuilder.ts +297 -0
  576. package/src/stores/fetch-structure/projection/post-filter/QueryBuilderPostFilterValueSpecificationBuilder.ts +121 -0
  577. package/src/stores/fetch-structure/projection/post-filter/operators/QueryBuilderPostFilterOperatorHelper.ts +129 -0
  578. package/src/stores/fetch-structure/projection/post-filter/operators/QueryBuilderPostFilterOperator_Contain.ts +140 -0
  579. package/src/stores/fetch-structure/projection/post-filter/operators/QueryBuilderPostFilterOperator_EndWith.ts +135 -0
  580. package/src/stores/fetch-structure/projection/post-filter/operators/QueryBuilderPostFilterOperator_Equal.ts +218 -0
  581. package/src/stores/fetch-structure/projection/post-filter/operators/QueryBuilderPostFilterOperator_GreaterThan.ts +143 -0
  582. package/src/stores/fetch-structure/projection/post-filter/operators/QueryBuilderPostFilterOperator_GreaterThanEqual.ts +70 -0
  583. package/src/stores/fetch-structure/projection/post-filter/operators/QueryBuilderPostFilterOperator_In.ts +183 -0
  584. package/src/stores/fetch-structure/projection/post-filter/operators/QueryBuilderPostFilterOperator_IsEmpty.ts +113 -0
  585. package/src/stores/fetch-structure/projection/post-filter/operators/QueryBuilderPostFilterOperator_LessThan.ts +143 -0
  586. package/src/stores/fetch-structure/projection/post-filter/operators/QueryBuilderPostFilterOperator_LessThanEqual.ts +70 -0
  587. package/src/stores/fetch-structure/projection/post-filter/operators/QueryBuilderPostFilterOperator_StartWith.ts +135 -0
  588. package/src/stores/filter/QueryBuilderFilterOperator.ts +52 -0
  589. package/src/stores/filter/QueryBuilderFilterOperatorLoader.ts +65 -0
  590. package/src/stores/filter/QueryBuilderFilterState.ts +736 -0
  591. package/src/stores/filter/QueryBuilderFilterStateBuilder.ts +155 -0
  592. package/src/stores/filter/QueryBuilderFilterValueSpecificationBuilder.ts +120 -0
  593. package/src/stores/filter/operators/QueryBuilderFilterOperatorHelper.ts +524 -0
  594. package/src/stores/filter/operators/QueryBuilderFilterOperator_Contain.ts +134 -0
  595. package/src/stores/filter/operators/QueryBuilderFilterOperator_EndWith.ts +134 -0
  596. package/src/stores/filter/operators/QueryBuilderFilterOperator_Equal.ts +211 -0
  597. package/src/stores/filter/operators/QueryBuilderFilterOperator_GreaterThan.ts +145 -0
  598. package/src/stores/filter/operators/QueryBuilderFilterOperator_GreaterThanEqual.ts +145 -0
  599. package/src/stores/filter/operators/QueryBuilderFilterOperator_In.ts +181 -0
  600. package/src/stores/filter/operators/QueryBuilderFilterOperator_IsEmpty.ts +125 -0
  601. package/src/stores/filter/operators/QueryBuilderFilterOperator_LessThan.ts +145 -0
  602. package/src/stores/filter/operators/QueryBuilderFilterOperator_LessThanEqual.ts +145 -0
  603. package/src/stores/filter/operators/QueryBuilderFilterOperator_StartWith.ts +134 -0
  604. package/src/stores/workflows/ClassQueryBuilderState.ts +80 -0
  605. package/src/stores/workflows/MappingQueryBuilderState.ts +86 -0
  606. package/src/stores/workflows/ServiceQueryBuilderState.ts +143 -0
  607. package/tsconfig.json +166 -0
  608. package/tsconfig.package.json +38 -0
@@ -0,0 +1,161 @@
1
+ /**
2
+ * Copyright (c) 2020-present, Goldman Sachs
3
+ *
4
+ * Licensed under the Apache License, Version 2.0 (the "License");
5
+ * you may not use this file except in compliance with the License.
6
+ * You may obtain a copy of the License at
7
+ *
8
+ * http://www.apache.org/licenses/LICENSE-2.0
9
+ *
10
+ * Unless required by applicable law or agreed to in writing, software
11
+ * distributed under the License is distributed on an "AS IS" BASIS,
12
+ * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
13
+ * See the License for the specific language governing permissions and
14
+ * limitations under the License.
15
+ */
16
+ import { functionExpression_setParametersValues, propertyExpression_setParametersValue, } from '@finos/legend-application';
17
+ import { AbstractPropertyExpression, Class, DerivedProperty, getMilestoneTemporalStereotype, INTERNAL__PropagatedValue, matchFunctionName, MILESTONING_STEREOTYPE, SimpleFunctionExpression, TYPICAL_MULTIPLICITY_TYPE, } from '@finos/legend-graph';
18
+ import { getNullableFirstElement, guaranteeNonNullable, guaranteeType, } from '@finos/legend-shared';
19
+ import { QUERY_BUILDER_SUPPORTED_FUNCTIONS } from '../graphManager/QueryBuilderSupportedFunctions.js';
20
+ import { getDerivedPropertyMilestoningSteoreotype } from './QueryBuilderPropertyEditorState.js';
21
+ /**
22
+ * Checks if the provided property expression match the criteria for default
23
+ * date propagation so we know whether we need to fill in values for the parameter
24
+ * or just propgate values from the parent's expression
25
+ *
26
+ * NOTE: this takes date propgation into account. See the table below for all
27
+ * the combination:
28
+ *
29
+ * | [source] | | | | |
30
+ * ----------------------------------------------------------------------
31
+ * [target] | | NONE | PR_TMP | BI_TMP | BU_TMP |
32
+ * ----------------------------------------------------------------------
33
+ * | NONE | N.A. | PRD | PRD,BUD | BUD |
34
+ * ----------------------------------------------------------------------
35
+ * | PR_TMP | N.A. | X | PRD,BUD | BUD |
36
+ * ----------------------------------------------------------------------
37
+ * | BI_TMP | N.A. | X | X | X |
38
+ * ----------------------------------------------------------------------
39
+ * | BU_TMP | N.A. | PRD | PRD,BUD | X |
40
+ * ----------------------------------------------------------------------
41
+ *
42
+ * Annotations:
43
+ *
44
+ * [source]: source temporal type
45
+ * [target]: target temporal type
46
+ *
47
+ * PR_TMP : processing temporal
48
+ * BI_TMP : bitemporal
49
+ * BU_TMP : business temporal
50
+ *
51
+ * X : no default date propagated
52
+ * PRD : default processing date is propagated
53
+ * BUD : default business date is propgated
54
+ */
55
+ const isDefaultDatePropagationSupported = (currentPropertyExpression, queryBuilderState, prevPropertyExpression) => {
56
+ const property = currentPropertyExpression.func;
57
+ const graph = queryBuilderState.graphManagerState.graph;
58
+ // Default date propagation is not supported for current expression when the previous property expression is a derived property.
59
+ if (prevPropertyExpression &&
60
+ prevPropertyExpression.func instanceof DerivedProperty &&
61
+ prevPropertyExpression.func._OWNER.derivedProperties.includes(prevPropertyExpression.func)) {
62
+ return false;
63
+ }
64
+ // Default date propagation is not supported for current expression when the milestonedParameterValues of
65
+ // the previous property expression doesn't match with the global milestonedParameterValues
66
+ if (prevPropertyExpression &&
67
+ prevPropertyExpression.func.genericType.value.rawType instanceof Class) {
68
+ const milestoningStereotype = getMilestoneTemporalStereotype(prevPropertyExpression.func.genericType.value.rawType, graph);
69
+ if (milestoningStereotype &&
70
+ !prevPropertyExpression.parametersValues
71
+ .slice(1)
72
+ .every((parameterValue) => parameterValue instanceof INTERNAL__PropagatedValue)) {
73
+ return false;
74
+ }
75
+ }
76
+ if (property.genericType.value.rawType instanceof Class) {
77
+ // the stereotype of source class of current property expression.
78
+ const sourceStereotype = property instanceof DerivedProperty
79
+ ? getDerivedPropertyMilestoningSteoreotype(property, graph)
80
+ : undefined;
81
+ // Default date propagation is always supported if the source is `bitemporal`
82
+ if (sourceStereotype === MILESTONING_STEREOTYPE.BITEMPORAL) {
83
+ return true;
84
+ }
85
+ // the stereotype (if exists) of the generic type of current property expression.
86
+ const targetStereotype = getMilestoneTemporalStereotype(property.genericType.value.rawType, graph);
87
+ // Default date propagation is supported when stereotype of both source and target matches
88
+ if (sourceStereotype && targetStereotype) {
89
+ return sourceStereotype === targetStereotype;
90
+ }
91
+ }
92
+ return false;
93
+ };
94
+ export const buildPropertyExpressionChain = (propertyExpression, queryBuilderState,
95
+ /**
96
+ * As of now, we don't support date propagation for aggregation-class functions
97
+ * so we have this temporary flag to disable date propagation, there could be other
98
+ * functions that we need to handle, then we will revise this approach
99
+ * See https://github.com/finos/legend-studio/issues/1471
100
+ */
101
+ TEMPORARY__disableDatePropagation) => {
102
+ const graph = queryBuilderState.graphManagerState.graph;
103
+ const newPropertyExpression = new AbstractPropertyExpression('', graph.getTypicalMultiplicity(TYPICAL_MULTIPLICITY_TYPE.ONE));
104
+ newPropertyExpression.func = propertyExpression.func;
105
+ newPropertyExpression.parametersValues = propertyExpression.parametersValues;
106
+ let nextExpression;
107
+ let currentExpression = newPropertyExpression;
108
+ while (currentExpression instanceof AbstractPropertyExpression) {
109
+ nextExpression = getNullableFirstElement(currentExpression.parametersValues);
110
+ if (nextExpression instanceof AbstractPropertyExpression) {
111
+ const parameterValue = new AbstractPropertyExpression('', graph.getTypicalMultiplicity(TYPICAL_MULTIPLICITY_TYPE.ONE));
112
+ parameterValue.func = nextExpression.func;
113
+ parameterValue.parametersValues = nextExpression.parametersValues;
114
+ nextExpression = parameterValue;
115
+ currentExpression.parametersValues[0] = parameterValue;
116
+ }
117
+ if (currentExpression.func instanceof DerivedProperty) {
118
+ const parameterValues = currentExpression.parametersValues.slice(1);
119
+ parameterValues.forEach((parameterValue, index) => {
120
+ if (parameterValue instanceof INTERNAL__PropagatedValue) {
121
+ // Replace with argumentless derived property expression only when default date propagation is supported
122
+ if (!TEMPORARY__disableDatePropagation &&
123
+ isDefaultDatePropagationSupported(guaranteeType(currentExpression, AbstractPropertyExpression), queryBuilderState, nextExpression instanceof AbstractPropertyExpression
124
+ ? nextExpression
125
+ : undefined)) {
126
+ // NOTE: For `bitemporal` property check if the property expression has parameters which are not instance of
127
+ // `INTERNAL_PropagatedValue` then pass the parameters as user explicitly changed values of either of the parameters.
128
+ if ((index === 1 &&
129
+ guaranteeType(currentExpression, AbstractPropertyExpression)
130
+ .parametersValues.length === 3) ||
131
+ (index === 0 &&
132
+ guaranteeType(currentExpression, AbstractPropertyExpression)
133
+ .parametersValues.length === 3 &&
134
+ !(guaranteeType(currentExpression, AbstractPropertyExpression)
135
+ .parametersValues[2] instanceof INTERNAL__PropagatedValue))) {
136
+ propertyExpression_setParametersValue(guaranteeType(currentExpression, AbstractPropertyExpression), index + 1, parameterValue.getValue(), queryBuilderState.observableContext);
137
+ }
138
+ else {
139
+ functionExpression_setParametersValues(guaranteeType(currentExpression, AbstractPropertyExpression), [
140
+ guaranteeNonNullable(guaranteeType(currentExpression, AbstractPropertyExpression)
141
+ .parametersValues[0]),
142
+ ], queryBuilderState.observableContext);
143
+ }
144
+ }
145
+ else {
146
+ propertyExpression_setParametersValue(guaranteeType(currentExpression, AbstractPropertyExpression), index + 1, parameterValue.getValue(), queryBuilderState.observableContext);
147
+ }
148
+ }
149
+ });
150
+ }
151
+ currentExpression = nextExpression;
152
+ // Take care of chains of subtype (a pattern that is not useful, but we want to support and rectify)
153
+ // $x.employees->subType(@Person)->subType(@Staff)
154
+ while (currentExpression instanceof SimpleFunctionExpression &&
155
+ matchFunctionName(currentExpression.functionName, QUERY_BUILDER_SUPPORTED_FUNCTIONS.SUBTYPE)) {
156
+ currentExpression = getNullableFirstElement(currentExpression.parametersValues);
157
+ }
158
+ }
159
+ return newPropertyExpression;
160
+ };
161
+ //# sourceMappingURL=QueryBuilderValueSpecificationBuilderHelper.js.map
@@ -0,0 +1 @@
1
+ {"version":3,"file":"QueryBuilderValueSpecificationBuilderHelper.js","sourceRoot":"","sources":["../../src/stores/QueryBuilderValueSpecificationBuilderHelper.ts"],"names":[],"mappings":"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"}
@@ -0,0 +1,61 @@
1
+ /**
2
+ * Copyright (c) 2020-present, Goldman Sachs
3
+ *
4
+ * Licensed under the Apache License, Version 2.0 (the "License");
5
+ * you may not use this file except in compliance with the License.
6
+ * You may obtain a copy of the License at
7
+ *
8
+ * http://www.apache.org/licenses/LICENSE-2.0
9
+ *
10
+ * Unless required by applicable law or agreed to in writing, software
11
+ * distributed under the License is distributed on an "AS IS" BASIS,
12
+ * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
13
+ * See the License for the specific language governing permissions and
14
+ * limitations under the License.
15
+ */
16
+ import { type PureModel, type ValueSpecification, LambdaFunctionInstanceValue, PRIMITIVE_TYPE, type Type, SimpleFunctionExpression, AbstractPropertyExpression } from '@finos/legend-graph';
17
+ export declare const getNonCollectionValueSpecificationType: (valueSpecification: ValueSpecification) => Type | undefined;
18
+ export declare const getCollectionValueSpecificationType: (graph: PureModel, values: ValueSpecification[]) => Type | undefined;
19
+ export declare const unwrapNotExpression: (expression: SimpleFunctionExpression) => SimpleFunctionExpression | undefined;
20
+ export declare const buildNotExpression: (graph: PureModel, expression: ValueSpecification) => ValueSpecification;
21
+ export declare const isPropertyExpressionChainOptional: (expression: ValueSpecification | undefined) => boolean;
22
+ export declare const isTypeCompatibleForAssignment: (type: Type | undefined, assignmentType: Type) => boolean;
23
+ export declare const generateDefaultValueForPrimitiveType: (type: PRIMITIVE_TYPE) => unknown;
24
+ export declare const buildGenericLambdaFunctionInstanceValue: (lambdaParameterName: string, lambdaBodyExpressions: ValueSpecification[], graph: PureModel) => LambdaFunctionInstanceValue;
25
+ /**
26
+ * Checks if the milestoning property expression is valid in terms of number of parameter values provided
27
+ * in relation to its milestoning type.
28
+ *
29
+ * NOTE: this takes date propgation into account. See the table below for all
30
+ * the combination:
31
+ *
32
+ * | [source] | | | | |
33
+ * ----------------------------------------------------------------------
34
+ * [target] | | NONE | PR_TMP | BI_TMP | BU_TMP |
35
+ * ----------------------------------------------------------------------
36
+ * | NONE | N.A. | PRD | PRD,BUD | BUD |
37
+ * ----------------------------------------------------------------------
38
+ * | PR_TMP | N.A. | X | PRD,BUD | BUD |
39
+ * ----------------------------------------------------------------------
40
+ * | BI_TMP | N.A. | X | X | X |
41
+ * ----------------------------------------------------------------------
42
+ * | BU_TMP | N.A. | PRD | PRD,BUD | X |
43
+ * ----------------------------------------------------------------------
44
+ *
45
+ * Annotations:
46
+ *
47
+ * [source]: source temporal type
48
+ * [target]: target temporal type
49
+ *
50
+ * PR_TMP : processing temporal
51
+ * BI_TMP : bitemporal
52
+ * BU_TMP : business temporal
53
+ *
54
+ * X : no default date propagated
55
+ * PRD : default processing date is propagated
56
+ * BUD : default business date is propgated
57
+ */
58
+ export declare const validatePropertyExpressionChain: (propertyExpression: AbstractPropertyExpression, graph: PureModel) => void;
59
+ export declare const extractNullableStringFromInstanceValue: (value: ValueSpecification) => string | undefined;
60
+ export declare const extractNullableNumberFromInstanceValue: (value: ValueSpecification) => number | undefined;
61
+ //# sourceMappingURL=QueryBuilderValueSpecificationHelper.d.ts.map
@@ -0,0 +1 @@
1
+ {"version":3,"file":"QueryBuilderValueSpecificationHelper.d.ts","sourceRoot":"","sources":["../../src/stores/QueryBuilderValueSpecificationHelper.ts"],"names":[],"mappings":"AAAA;;;;;;;;;;;;;;GAcG;AAEH,OAAO,EACL,KAAK,SAAS,EACd,KAAK,kBAAkB,EAIvB,2BAA2B,EAC3B,cAAc,EAMd,KAAK,IAAI,EAGT,wBAAwB,EAIxB,0BAA0B,EAM3B,MAAM,qBAAqB,CAAC;AAa7B,eAAO,MAAM,sCAAsC,uBAC7B,kBAAkB,KACrC,IAAI,GAAG,SAWT,CAAC;AAEF,eAAO,MAAM,mCAAmC,UACvC,SAAS,UACR,kBAAkB,EAAE,KAC3B,IAAI,GAAG,SA4CT,CAAC;AAEF,eAAO,MAAM,mBAAmB,eAClB,wBAAwB,KACnC,wBAAwB,GAAG,SAa7B,CAAC;AAEF,eAAO,MAAM,kBAAkB,UACtB,SAAS,cACJ,kBAAkB,KAC7B,kBAUF,CAAC;AAEF,eAAO,MAAM,iCAAiC,eAChC,kBAAkB,GAAG,SAAS,KACzC,OAiBF,CAAC;AAEF,eAAO,MAAM,6BAA6B,SAClC,IAAI,GAAG,SAAS,kBACN,IAAI,KACnB,OA6BF,CAAC;AAEF,eAAO,MAAM,oCAAoC,SACzC,cAAc,KACnB,OAqBF,CAAC;AAEF,eAAO,MAAM,uCAAuC,wBAC7B,MAAM,yBACJ,kBAAkB,EAAE,SACpC,SAAS,KACf,2BAgBF,CAAC;AAEF;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;GAgCG;AACH,eAAO,MAAM,+BAA+B,uBACtB,0BAA0B,SACvC,SAAS,KACf,IAmDF,CAAC;AAEF,eAAO,MAAM,sCAAsC,UAC1C,kBAAkB,KACxB,MAAM,GAAG,SAKX,CAAC;AAEF,eAAO,MAAM,sCAAsC,UAC1C,kBAAkB,KACxB,MAAM,GAAG,SAKX,CAAC"}
@@ -0,0 +1,235 @@
1
+ /**
2
+ * Copyright (c) 2020-present, Goldman Sachs
3
+ *
4
+ * Licensed under the Apache License, Version 2.0 (the "License");
5
+ * you may not use this file except in compliance with the License.
6
+ * You may obtain a copy of the License at
7
+ *
8
+ * http://www.apache.org/licenses/LICENSE-2.0
9
+ *
10
+ * Unless required by applicable law or agreed to in writing, software
11
+ * distributed under the License is distributed on an "AS IS" BASIS,
12
+ * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
13
+ * See the License for the specific language governing permissions and
14
+ * limitations under the License.
15
+ */
16
+ import { CORE_PURE_PATH, FunctionType, LambdaFunction, LambdaFunctionInstanceValue, PRIMITIVE_TYPE, TYPICAL_MULTIPLICITY_TYPE, VariableExpression, DATE_FORMAT, DATE_TIME_FORMAT, matchFunctionName, PrimitiveInstanceValue, EnumValueInstanceValue, SimpleFunctionExpression, extractElementNameFromPath, AbstractPropertyExpression, isSuperType, Class, getMilestoneTemporalStereotype, DerivedProperty, MILESTONING_STEREOTYPE, } from '@finos/legend-graph';
17
+ import { addUniqueEntry, guaranteeNonNullable, guaranteeType, isNumber, isString, UnsupportedOperationError, } from '@finos/legend-shared';
18
+ import { format } from 'date-fns';
19
+ import { QUERY_BUILDER_SUPPORTED_FUNCTIONS } from '../graphManager/QueryBuilderSupportedFunctions.js';
20
+ import { getDerivedPropertyMilestoningSteoreotype } from './QueryBuilderPropertyEditorState.js';
21
+ export const getNonCollectionValueSpecificationType = (valueSpecification) => {
22
+ if (valueSpecification instanceof PrimitiveInstanceValue) {
23
+ return valueSpecification.genericType.value.rawType;
24
+ }
25
+ else if (valueSpecification instanceof EnumValueInstanceValue) {
26
+ return guaranteeNonNullable(valueSpecification.values[0]).value._OWNER;
27
+ }
28
+ else if (valueSpecification instanceof VariableExpression) {
29
+ return valueSpecification.genericType?.value.rawType;
30
+ }
31
+ else if (valueSpecification instanceof SimpleFunctionExpression) {
32
+ return valueSpecification.genericType?.value.rawType;
33
+ }
34
+ return undefined;
35
+ };
36
+ export const getCollectionValueSpecificationType = (graph, values) => {
37
+ if (values.every((val) => val instanceof PrimitiveInstanceValue)) {
38
+ const valuePrimitiveTypes = [];
39
+ values.forEach((val) => {
40
+ const primitiveType = val.genericType.value.rawType;
41
+ switch (primitiveType.path) {
42
+ case PRIMITIVE_TYPE.STRING:
43
+ addUniqueEntry(valuePrimitiveTypes, graph.getPrimitiveType(PRIMITIVE_TYPE.STRING));
44
+ break;
45
+ case PRIMITIVE_TYPE.INTEGER:
46
+ case PRIMITIVE_TYPE.DECIMAL:
47
+ case PRIMITIVE_TYPE.FLOAT:
48
+ case PRIMITIVE_TYPE.NUMBER:
49
+ addUniqueEntry(valuePrimitiveTypes, graph.getPrimitiveType(PRIMITIVE_TYPE.NUMBER));
50
+ break;
51
+ default:
52
+ valuePrimitiveTypes.push(undefined);
53
+ break;
54
+ }
55
+ });
56
+ if (valuePrimitiveTypes.length > 1) {
57
+ return undefined;
58
+ }
59
+ return valuePrimitiveTypes[0];
60
+ }
61
+ else if (values.every((val) => val instanceof EnumValueInstanceValue)) {
62
+ const valueEnumerationTypes = [];
63
+ values.forEach((val) => {
64
+ addUniqueEntry(valueEnumerationTypes, guaranteeNonNullable(val.values[0]).value._OWNER);
65
+ });
66
+ if (valueEnumerationTypes.length > 1) {
67
+ return undefined;
68
+ }
69
+ return valueEnumerationTypes[0];
70
+ }
71
+ return undefined;
72
+ };
73
+ export const unwrapNotExpression = (expression) => {
74
+ if (matchFunctionName(expression.functionName, QUERY_BUILDER_SUPPORTED_FUNCTIONS.NOT)) {
75
+ return guaranteeType(expression.parametersValues[0], SimpleFunctionExpression);
76
+ }
77
+ return undefined;
78
+ };
79
+ export const buildNotExpression = (graph, expression) => {
80
+ const multiplicityOne = graph.getTypicalMultiplicity(TYPICAL_MULTIPLICITY_TYPE.ONE);
81
+ const expressionNot = new SimpleFunctionExpression(extractElementNameFromPath(QUERY_BUILDER_SUPPORTED_FUNCTIONS.NOT), multiplicityOne);
82
+ expressionNot.parametersValues.push(expression);
83
+ return expressionNot;
84
+ };
85
+ export const isPropertyExpressionChainOptional = (expression) => {
86
+ let isOptional = false;
87
+ let propertyExpression = expression;
88
+ while (propertyExpression &&
89
+ propertyExpression instanceof AbstractPropertyExpression) {
90
+ if (propertyExpression.func.multiplicity.lowerBound === 0) {
91
+ isOptional = true;
92
+ break;
93
+ }
94
+ propertyExpression = propertyExpression.parametersValues.at(0);
95
+ while (propertyExpression instanceof SimpleFunctionExpression) {
96
+ propertyExpression = propertyExpression.parametersValues.at(0);
97
+ }
98
+ }
99
+ return isOptional;
100
+ };
101
+ export const isTypeCompatibleForAssignment = (type, assignmentType) => {
102
+ const NUMERIC_PRIMITIVE_TYPES = [
103
+ PRIMITIVE_TYPE.NUMBER,
104
+ PRIMITIVE_TYPE.INTEGER,
105
+ PRIMITIVE_TYPE.DECIMAL,
106
+ PRIMITIVE_TYPE.FLOAT,
107
+ ];
108
+ const DATE_PRIMITIVE_TYPES = [
109
+ PRIMITIVE_TYPE.DATE,
110
+ PRIMITIVE_TYPE.DATETIME,
111
+ PRIMITIVE_TYPE.STRICTDATE,
112
+ PRIMITIVE_TYPE.LATESTDATE,
113
+ ];
114
+ // When changing the return type for LHS, the RHS value should be adjusted accordingly.
115
+ return (type !== undefined &&
116
+ // Numeric value is handled loosely because of autoboxing
117
+ // e.g. LHS (integer) = RHS (float) is acceptable
118
+ ((NUMERIC_PRIMITIVE_TYPES.includes(type.path) &&
119
+ NUMERIC_PRIMITIVE_TYPES.includes(assignmentType.path)) ||
120
+ // Date value is handled loosely as well if the LHS is of type DateTime
121
+ // This is because we would simulate auto-boxing for date by altering the
122
+ // Pure function used for the operation
123
+ // e.g. LHS(DateTime) = RHS(Date) -> we use isOnDay() instead of is()
124
+ DATE_PRIMITIVE_TYPES.includes(type.path) ||
125
+ type === assignmentType ||
126
+ isSuperType(assignmentType, type)));
127
+ };
128
+ export const generateDefaultValueForPrimitiveType = (type) => {
129
+ switch (type) {
130
+ case PRIMITIVE_TYPE.STRING:
131
+ return '';
132
+ case PRIMITIVE_TYPE.BOOLEAN:
133
+ return false;
134
+ case PRIMITIVE_TYPE.NUMBER:
135
+ case PRIMITIVE_TYPE.DECIMAL:
136
+ case PRIMITIVE_TYPE.FLOAT:
137
+ case PRIMITIVE_TYPE.INTEGER:
138
+ return 0;
139
+ case PRIMITIVE_TYPE.DATE:
140
+ case PRIMITIVE_TYPE.STRICTDATE:
141
+ return format(new Date(Date.now()), DATE_FORMAT);
142
+ case PRIMITIVE_TYPE.DATETIME:
143
+ return format(new Date(Date.now()), DATE_TIME_FORMAT);
144
+ default:
145
+ throw new UnsupportedOperationError(`Can't generate default value for primitive type '${type}'`);
146
+ }
147
+ };
148
+ export const buildGenericLambdaFunctionInstanceValue = (lambdaParameterName, lambdaBodyExpressions, graph) => {
149
+ const multiplicityOne = graph.getTypicalMultiplicity(TYPICAL_MULTIPLICITY_TYPE.ONE);
150
+ const typeAny = graph.getType(CORE_PURE_PATH.ANY);
151
+ const functionInstanceValue = new LambdaFunctionInstanceValue(multiplicityOne);
152
+ const functionType = new FunctionType(typeAny, multiplicityOne);
153
+ functionType.parameters.push(new VariableExpression(lambdaParameterName, multiplicityOne));
154
+ const lambdaFunction = new LambdaFunction(functionType);
155
+ lambdaFunction.expressionSequence = lambdaBodyExpressions;
156
+ functionInstanceValue.values.push(lambdaFunction);
157
+ return functionInstanceValue;
158
+ };
159
+ /**
160
+ * Checks if the milestoning property expression is valid in terms of number of parameter values provided
161
+ * in relation to its milestoning type.
162
+ *
163
+ * NOTE: this takes date propgation into account. See the table below for all
164
+ * the combination:
165
+ *
166
+ * | [source] | | | | |
167
+ * ----------------------------------------------------------------------
168
+ * [target] | | NONE | PR_TMP | BI_TMP | BU_TMP |
169
+ * ----------------------------------------------------------------------
170
+ * | NONE | N.A. | PRD | PRD,BUD | BUD |
171
+ * ----------------------------------------------------------------------
172
+ * | PR_TMP | N.A. | X | PRD,BUD | BUD |
173
+ * ----------------------------------------------------------------------
174
+ * | BI_TMP | N.A. | X | X | X |
175
+ * ----------------------------------------------------------------------
176
+ * | BU_TMP | N.A. | PRD | PRD,BUD | X |
177
+ * ----------------------------------------------------------------------
178
+ *
179
+ * Annotations:
180
+ *
181
+ * [source]: source temporal type
182
+ * [target]: target temporal type
183
+ *
184
+ * PR_TMP : processing temporal
185
+ * BI_TMP : bitemporal
186
+ * BU_TMP : business temporal
187
+ *
188
+ * X : no default date propagated
189
+ * PRD : default processing date is propagated
190
+ * BUD : default business date is propgated
191
+ */
192
+ export const validatePropertyExpressionChain = (propertyExpression, graph) => {
193
+ if (propertyExpression.func.genericType.value.rawType instanceof Class &&
194
+ propertyExpression.func._OWNER._generatedMilestonedProperties.length !== 0) {
195
+ const name = propertyExpression.func.name;
196
+ const func = propertyExpression.func._OWNER._generatedMilestonedProperties.find((e) => e.name === name);
197
+ if (func) {
198
+ const targetStereotype = getMilestoneTemporalStereotype(propertyExpression.func.genericType.value.rawType, graph);
199
+ if (targetStereotype) {
200
+ const sourceStereotype = getDerivedPropertyMilestoningSteoreotype(guaranteeType(func, DerivedProperty), graph);
201
+ if (sourceStereotype !== MILESTONING_STEREOTYPE.BITEMPORAL &&
202
+ targetStereotype !== sourceStereotype) {
203
+ if (targetStereotype === MILESTONING_STEREOTYPE.BITEMPORAL) {
204
+ if (propertyExpression.parametersValues.length !== 3 &&
205
+ !sourceStereotype) {
206
+ throw new UnsupportedOperationError(`Property of milestoning sterotype '${MILESTONING_STEREOTYPE.BITEMPORAL}' should have exactly two parameters`);
207
+ }
208
+ else if (propertyExpression.parametersValues.length < 2) {
209
+ throw new UnsupportedOperationError(`Property of milestoning sterotype '${MILESTONING_STEREOTYPE.BITEMPORAL}' should have at least one parameter`);
210
+ }
211
+ else if (propertyExpression.parametersValues.length > 3) {
212
+ throw new UnsupportedOperationError(`Property of milestoning sterotype '${MILESTONING_STEREOTYPE.BITEMPORAL}' should not have more than two parameters`);
213
+ }
214
+ }
215
+ else if (propertyExpression.parametersValues.length !== 2) {
216
+ throw new UnsupportedOperationError(`Property of milestoning sterotype '${targetStereotype}' should have exactly one parameter`);
217
+ }
218
+ }
219
+ }
220
+ }
221
+ }
222
+ };
223
+ export const extractNullableStringFromInstanceValue = (value) => {
224
+ if (value instanceof PrimitiveInstanceValue && isString(value.values[0])) {
225
+ return value.values[0];
226
+ }
227
+ return undefined;
228
+ };
229
+ export const extractNullableNumberFromInstanceValue = (value) => {
230
+ if (value instanceof PrimitiveInstanceValue && isNumber(value.values[0])) {
231
+ return value.values[0];
232
+ }
233
+ return undefined;
234
+ };
235
+ //# sourceMappingURL=QueryBuilderValueSpecificationHelper.js.map
@@ -0,0 +1 @@
1
+ {"version":3,"file":"QueryBuilderValueSpecificationHelper.js","sourceRoot":"","sources":["../../src/stores/QueryBuilderValueSpecificationHelper.ts"],"names":[],"mappings":"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"}
@@ -0,0 +1,99 @@
1
+ /**
2
+ * Copyright (c) 2020-present, Goldman Sachs
3
+ *
4
+ * Licensed under the Apache License, Version 2.0 (the "License");
5
+ * you may not use this file except in compliance with the License.
6
+ * You may obtain a copy of the License at
7
+ *
8
+ * http://www.apache.org/licenses/LICENSE-2.0
9
+ *
10
+ * Unless required by applicable law or agreed to in writing, software
11
+ * distributed under the License is distributed on an "AS IS" BASIS,
12
+ * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
13
+ * See the License for the specific language governing permissions and
14
+ * limitations under the License.
15
+ */
16
+ import type { TreeNodeData, TreeData } from '@finos/legend-art';
17
+ import { ActionState, type GeneratorFn } from '@finos/legend-shared';
18
+ import { type AbstractProperty, type PureModel, type Type, type MappingModelCoverageAnalysisResult, type MappedEntity, AbstractPropertyExpression, Class, Multiplicity } from '@finos/legend-graph';
19
+ import type { QueryBuilderState } from '../QueryBuilderState.js';
20
+ import { type QueryBuilderPreviewData } from '../QueryBuilderPreviewDataHelper.js';
21
+ import { QueryBuilderPropertySearchState } from './QueryBuilderPropertySearchState.js';
22
+ export declare enum QUERY_BUILDER_EXPLORER_TREE_DND_TYPE {
23
+ ROOT = "ROOT",
24
+ CLASS_PROPERTY = "CLASS_PROPERTY",
25
+ ENUM_PROPERTY = "ENUM_PROPERTY",
26
+ PRIMITIVE_PROPERTY = "PRIMITIVE_PROPERTY"
27
+ }
28
+ export declare const generateExplorerTreePropertyNodeID: (parentId: string, propertyName: string) => string;
29
+ export declare const generateExplorerTreeSubtypeNodeID: (parentId: string, subClassPath: string) => string;
30
+ export interface QueryBuilderExplorerTreeDragSource {
31
+ node: QueryBuilderExplorerTreePropertyNodeData;
32
+ }
33
+ export declare abstract class QueryBuilderExplorerTreeNodeData implements TreeNodeData {
34
+ isSelected?: boolean | undefined;
35
+ isOpen?: boolean | undefined;
36
+ id: string;
37
+ label: string;
38
+ dndText: string;
39
+ childrenIds: string[];
40
+ isPartOfDerivedPropertyBranch: boolean;
41
+ type: Type;
42
+ mappingData: QueryBuilderExplorerTreeNodeMappingData;
43
+ constructor(id: string, label: string, dndText: string, isPartOfDerivedPropertyBranch: boolean, type: Type, mappingData: QueryBuilderExplorerTreeNodeMappingData);
44
+ setIsSelected(val: boolean | undefined): void;
45
+ }
46
+ export declare type QueryBuilderExplorerTreeNodeMappingData = {
47
+ mapped: boolean;
48
+ mappedEntity?: MappedEntity | undefined;
49
+ };
50
+ export declare class QueryBuilderExplorerTreeRootNodeData extends QueryBuilderExplorerTreeNodeData {
51
+ }
52
+ export declare class QueryBuilderExplorerTreePropertyNodeData extends QueryBuilderExplorerTreeNodeData {
53
+ property: AbstractProperty;
54
+ parentId: string;
55
+ constructor(id: string, label: string, dndText: string, property: AbstractProperty, parentId: string, isPartOfDerivedPropertyBranch: boolean, mappingData: QueryBuilderExplorerTreeNodeMappingData);
56
+ }
57
+ export declare class QueryBuilderExplorerTreeSubTypeNodeData extends QueryBuilderExplorerTreeNodeData {
58
+ subclass: Class;
59
+ parentId: string;
60
+ multiplicity: Multiplicity;
61
+ constructor(id: string, label: string, dndText: string, subclass: Class, parentId: string, isPartOfDerivedPropertyBranch: boolean, mappingData: QueryBuilderExplorerTreeNodeMappingData, multiplicity: Multiplicity);
62
+ }
63
+ export declare const buildPropertyExpressionFromExplorerTreeNodeData: (treeData: TreeData<QueryBuilderExplorerTreeNodeData>, node: QueryBuilderExplorerTreePropertyNodeData, graph: PureModel, allMappedPropertyNodes: QueryBuilderExplorerTreeNodeData[]) => AbstractPropertyExpression;
64
+ export declare const generatePropertyNodeMappingData: (property: AbstractProperty, parentMappingData: QueryBuilderExplorerTreeNodeMappingData, modelCoverageAnalysisResult: MappingModelCoverageAnalysisResult) => QueryBuilderExplorerTreeNodeMappingData;
65
+ export declare const generateSubtypeNodeMappingData: (subclass: Class, parentMappingData: QueryBuilderExplorerTreeNodeMappingData, modelCoverageAnalysisResult: MappingModelCoverageAnalysisResult) => QueryBuilderExplorerTreeNodeMappingData;
66
+ export declare const getRootMappingData: (_class: Class, modelCoverageAnalysisResult: MappingModelCoverageAnalysisResult) => QueryBuilderExplorerTreeNodeMappingData;
67
+ export declare const getQueryBuilderPropertyNodeData: (property: AbstractProperty, parentNode: QueryBuilderExplorerTreeNodeData, modelCoverageAnalysisResult: MappingModelCoverageAnalysisResult) => QueryBuilderExplorerTreePropertyNodeData | undefined;
68
+ export declare const getQueryBuilderSubTypeNodeData: (subclass: Class, parentNode: QueryBuilderExplorerTreeNodeData, modelCoverageAnalysisResult: MappingModelCoverageAnalysisResult) => QueryBuilderExplorerTreeSubTypeNodeData;
69
+ export declare class QueryBuilderExplorerPreviewDataState {
70
+ isGeneratingPreviewData: boolean;
71
+ propertyName: string;
72
+ previewData?: QueryBuilderPreviewData | undefined;
73
+ constructor();
74
+ setPropertyName(val: string): void;
75
+ setIsGeneratingPreviewData(val: boolean): void;
76
+ setPreviewData(val: QueryBuilderPreviewData | undefined): void;
77
+ }
78
+ export declare class QueryBuilderExplorerState {
79
+ queryBuilderState: QueryBuilderState;
80
+ previewDataState: QueryBuilderExplorerPreviewDataState;
81
+ treeData?: TreeData<QueryBuilderExplorerTreeNodeData> | undefined;
82
+ humanizePropertyName: boolean;
83
+ showUnmappedProperties: boolean;
84
+ highlightUsedProperties: boolean;
85
+ propertySearchState: QueryBuilderPropertySearchState;
86
+ mappingModelCoverageAnalysisResult?: MappingModelCoverageAnalysisResult;
87
+ mappingModelCoverageAnalysisState: ActionState;
88
+ constructor(queryBuilderState: QueryBuilderState);
89
+ get nonNullableTreeData(): TreeData<QueryBuilderExplorerTreeNodeData>;
90
+ setTreeData(val: TreeData<QueryBuilderExplorerTreeNodeData> | undefined): void;
91
+ refreshTree(): void;
92
+ setHumanizePropertyName(val: boolean): void;
93
+ setShowUnmappedProperties(val: boolean): void;
94
+ setHighlightUsedProperties(val: boolean): void;
95
+ refreshTreeData(): void;
96
+ analyzeMappingModelCoverage(): GeneratorFn<void>;
97
+ previewData(node: QueryBuilderExplorerTreePropertyNodeData): GeneratorFn<void>;
98
+ }
99
+ //# sourceMappingURL=QueryBuilderExplorerState.d.ts.map
@@ -0,0 +1 @@
1
+ {"version":3,"file":"QueryBuilderExplorerState.d.ts","sourceRoot":"","sources":["../../../src/stores/explorer/QueryBuilderExplorerState.ts"],"names":[],"mappings":"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"}