@sap/open.fe 1.94.0

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 (1783) hide show
  1. package/LICENSE.txt +23 -0
  2. package/README.md +10 -0
  3. package/package.json +21 -0
  4. package/packages/sap.fe.common/src/sap/fe/common/.library +36 -0
  5. package/packages/sap.fe.common/src/sap/fe/common/.theming +6 -0
  6. package/packages/sap.fe.common/src/sap/fe/common/MessageButton-dbg.js +1378 -0
  7. package/packages/sap.fe.common/src/sap/fe/common/MessageButton.js +6 -0
  8. package/packages/sap.fe.common/src/sap/fe/common/MessageFilter-dbg.js +36 -0
  9. package/packages/sap.fe.common/src/sap/fe/common/MessageFilter.js +6 -0
  10. package/packages/sap.fe.common/src/sap/fe/common/MessagePopover-dbg.js +56 -0
  11. package/packages/sap.fe.common/src/sap/fe/common/MessagePopover.js +6 -0
  12. package/packages/sap.fe.common/src/sap/fe/common/library-dbg.js +41 -0
  13. package/packages/sap.fe.common/src/sap/fe/common/library-h2-preload.js +18 -0
  14. package/packages/sap.fe.common/src/sap/fe/common/library-h2-preload.js.map +9 -0
  15. package/packages/sap.fe.common/src/sap/fe/common/library-preload.js +68 -0
  16. package/packages/sap.fe.common/src/sap/fe/common/library-preload.js.map +9 -0
  17. package/packages/sap.fe.common/src/sap/fe/common/library.js +6 -0
  18. package/packages/sap.fe.common/src/sap/fe/common/manifest.json +40 -0
  19. package/packages/sap.fe.common/src/sap/fe/common/resources.json +186 -0
  20. package/packages/sap.fe.common/test/sap/fe/common/designtime/api.json +1 -0
  21. package/packages/sap.fe.common/test/sap/fe/common/designtime/apiref/api.json +1 -0
  22. package/packages/sap.fe.common/test/sap/fe/common/designtime/codeassistance/Library.jsmeta.json +1 -0
  23. package/packages/sap.fe.common/test/sap/fe/common/designtime/codeassistance/Library.jstemplates.json +1 -0
  24. package/packages/sap.fe.common/test/sap/fe/common/designtime/codeassistance/Library.xmlmeta.json +1 -0
  25. package/packages/sap.fe.common/test/sap/fe/common/designtime/codeassistance/Library.xmltemplates.json +1 -0
  26. package/packages/sap.fe.common/test/sap/fe/common/relnotes/changes-1.91.json +23 -0
  27. package/packages/sap.fe.common/test/sap/fe/common/relnotes/changes-1.94.json +23 -0
  28. package/packages/sap.fe.core/src/sap/fe/core/.library +60 -0
  29. package/packages/sap.fe.core/src/sap/fe/core/.supportrc +4 -0
  30. package/packages/sap.fe.core/src/sap/fe/core/.theming +6 -0
  31. package/packages/sap.fe.core/src/sap/fe/core/AnnotationHelper-dbg.js +409 -0
  32. package/packages/sap.fe.core/src/sap/fe/core/AnnotationHelper.js +6 -0
  33. package/packages/sap.fe.core/src/sap/fe/core/AppComponent-dbg.js +433 -0
  34. package/packages/sap.fe.core/src/sap/fe/core/AppComponent.js +6 -0
  35. package/packages/sap.fe.core/src/sap/fe/core/AppStateHandler-dbg.js +184 -0
  36. package/packages/sap.fe.core/src/sap/fe/core/AppStateHandler.js +6 -0
  37. package/packages/sap.fe.core/src/sap/fe/core/BaseController-dbg.js +65 -0
  38. package/packages/sap.fe.core/src/sap/fe/core/BaseController.js +6 -0
  39. package/packages/sap.fe.core/src/sap/fe/core/BusyLocker-dbg.js +112 -0
  40. package/packages/sap.fe.core/src/sap/fe/core/BusyLocker.js +6 -0
  41. package/packages/sap.fe.core/src/sap/fe/core/CommonUtils-dbg.js +2246 -0
  42. package/packages/sap.fe.core/src/sap/fe/core/CommonUtils.js +6 -0
  43. package/packages/sap.fe.core/src/sap/fe/core/ExtensionAPI-dbg.js +269 -0
  44. package/packages/sap.fe.core/src/sap/fe/core/ExtensionAPI.js +6 -0
  45. package/packages/sap.fe.core/src/sap/fe/core/PageController-dbg.js +120 -0
  46. package/packages/sap.fe.core/src/sap/fe/core/PageController.js +6 -0
  47. package/packages/sap.fe.core/src/sap/fe/core/RouterProxy-dbg.js +822 -0
  48. package/packages/sap.fe.core/src/sap/fe/core/RouterProxy.js +6 -0
  49. package/packages/sap.fe.core/src/sap/fe/core/Synchronization-dbg.js +38 -0
  50. package/packages/sap.fe.core/src/sap/fe/core/Synchronization.js +6 -0
  51. package/packages/sap.fe.core/src/sap/fe/core/TemplateComponent-dbg.js +152 -0
  52. package/packages/sap.fe.core/src/sap/fe/core/TemplateComponent.js +6 -0
  53. package/packages/sap.fe.core/src/sap/fe/core/TemplateModel-dbg.js +57 -0
  54. package/packages/sap.fe.core/src/sap/fe/core/TemplateModel.js +6 -0
  55. package/packages/sap.fe.core/src/sap/fe/core/TransactionHelper-dbg.js +1584 -0
  56. package/packages/sap.fe.core/src/sap/fe/core/TransactionHelper.js +6 -0
  57. package/packages/sap.fe.core/src/sap/fe/core/actions/draft-dbg.js +584 -0
  58. package/packages/sap.fe.core/src/sap/fe/core/actions/draft.js +6 -0
  59. package/packages/sap.fe.core/src/sap/fe/core/actions/messageHandling-dbg.js +439 -0
  60. package/packages/sap.fe.core/src/sap/fe/core/actions/messageHandling.js +6 -0
  61. package/packages/sap.fe.core/src/sap/fe/core/actions/nonDraft-dbg.js +23 -0
  62. package/packages/sap.fe.core/src/sap/fe/core/actions/nonDraft.js +6 -0
  63. package/packages/sap.fe.core/src/sap/fe/core/actions/operations-dbg.js +1174 -0
  64. package/packages/sap.fe.core/src/sap/fe/core/actions/operations.js +6 -0
  65. package/packages/sap.fe.core/src/sap/fe/core/actions/sticky-dbg.js +121 -0
  66. package/packages/sap.fe.core/src/sap/fe/core/actions/sticky.js +6 -0
  67. package/packages/sap.fe.core/src/sap/fe/core/controllerextensions/ControllerExtensionMetadata-dbg.js +75 -0
  68. package/packages/sap.fe.core/src/sap/fe/core/controllerextensions/ControllerExtensionMetadata.js +6 -0
  69. package/packages/sap.fe.core/src/sap/fe/core/controllerextensions/EditFlow-dbg.js +1667 -0
  70. package/packages/sap.fe.core/src/sap/fe/core/controllerextensions/EditFlow.js +6 -0
  71. package/packages/sap.fe.core/src/sap/fe/core/controllerextensions/IntentBasedNavigation-dbg.js +57 -0
  72. package/packages/sap.fe.core/src/sap/fe/core/controllerextensions/IntentBasedNavigation.js +6 -0
  73. package/packages/sap.fe.core/src/sap/fe/core/controllerextensions/InternalEditFlow-dbg.js +501 -0
  74. package/packages/sap.fe.core/src/sap/fe/core/controllerextensions/InternalEditFlow.js +6 -0
  75. package/packages/sap.fe.core/src/sap/fe/core/controllerextensions/InternalIntentBasedNavigation-dbg.js +707 -0
  76. package/packages/sap.fe.core/src/sap/fe/core/controllerextensions/InternalIntentBasedNavigation.js +6 -0
  77. package/packages/sap.fe.core/src/sap/fe/core/controllerextensions/InternalRouting-dbg.js +989 -0
  78. package/packages/sap.fe.core/src/sap/fe/core/controllerextensions/InternalRouting.js +6 -0
  79. package/packages/sap.fe.core/src/sap/fe/core/controllerextensions/KPIManagement-dbg.js +417 -0
  80. package/packages/sap.fe.core/src/sap/fe/core/controllerextensions/KPIManagement.js +5 -0
  81. package/packages/sap.fe.core/src/sap/fe/core/controllerextensions/KPIManagement.ts +399 -0
  82. package/packages/sap.fe.core/src/sap/fe/core/controllerextensions/MessageHandler-dbg.js +116 -0
  83. package/packages/sap.fe.core/src/sap/fe/core/controllerextensions/MessageHandler.js +6 -0
  84. package/packages/sap.fe.core/src/sap/fe/core/controllerextensions/PageReady-dbg.js +403 -0
  85. package/packages/sap.fe.core/src/sap/fe/core/controllerextensions/PageReady.js +5 -0
  86. package/packages/sap.fe.core/src/sap/fe/core/controllerextensions/PageReady.ts +350 -0
  87. package/packages/sap.fe.core/src/sap/fe/core/controllerextensions/Paginator-dbg.js +135 -0
  88. package/packages/sap.fe.core/src/sap/fe/core/controllerextensions/Paginator.js +6 -0
  89. package/packages/sap.fe.core/src/sap/fe/core/controllerextensions/Placeholder-dbg.js +287 -0
  90. package/packages/sap.fe.core/src/sap/fe/core/controllerextensions/Placeholder.js +6 -0
  91. package/packages/sap.fe.core/src/sap/fe/core/controllerextensions/Routing-dbg.js +109 -0
  92. package/packages/sap.fe.core/src/sap/fe/core/controllerextensions/Routing.js +6 -0
  93. package/packages/sap.fe.core/src/sap/fe/core/controllerextensions/RoutingListener-dbg.js +9 -0
  94. package/packages/sap.fe.core/src/sap/fe/core/controllerextensions/RoutingListener.js +6 -0
  95. package/packages/sap.fe.core/src/sap/fe/core/controllerextensions/Share-dbg.js +258 -0
  96. package/packages/sap.fe.core/src/sap/fe/core/controllerextensions/Share.js +6 -0
  97. package/packages/sap.fe.core/src/sap/fe/core/controllerextensions/SideEffects-dbg.js +711 -0
  98. package/packages/sap.fe.core/src/sap/fe/core/controllerextensions/SideEffects.js +5 -0
  99. package/packages/sap.fe.core/src/sap/fe/core/controllerextensions/SideEffects.ts +692 -0
  100. package/packages/sap.fe.core/src/sap/fe/core/controllerextensions/ViewState-dbg.js +615 -0
  101. package/packages/sap.fe.core/src/sap/fe/core/controllerextensions/ViewState.js +6 -0
  102. package/packages/sap.fe.core/src/sap/fe/core/controls/ActionParameterDialog.fragment.xml +76 -0
  103. package/packages/sap.fe.core/src/sap/fe/core/controls/ActionPartial.fragment.xml +91 -0
  104. package/packages/sap.fe.core/src/sap/fe/core/controls/CommandExecution-dbg.js +71 -0
  105. package/packages/sap.fe.core/src/sap/fe/core/controls/CommandExecution.js +6 -0
  106. package/packages/sap.fe.core/src/sap/fe/core/controls/ConditionalWrapper-dbg.js +82 -0
  107. package/packages/sap.fe.core/src/sap/fe/core/controls/ConditionalWrapper.js +6 -0
  108. package/packages/sap.fe.core/src/sap/fe/core/controls/CustomQuickViewPage-dbg.js +127 -0
  109. package/packages/sap.fe.core/src/sap/fe/core/controls/CustomQuickViewPage.js +6 -0
  110. package/packages/sap.fe.core/src/sap/fe/core/controls/DataLossOrDraftDiscard/DataLossDraft.fragment.xml +12 -0
  111. package/packages/sap.fe.core/src/sap/fe/core/controls/DataLossOrDraftDiscard/DataLossOrDraftDiscardHandler-dbg.js +122 -0
  112. package/packages/sap.fe.core/src/sap/fe/core/controls/DataLossOrDraftDiscard/DataLossOrDraftDiscardHandler.js +6 -0
  113. package/packages/sap.fe.core/src/sap/fe/core/controls/FieldWrapper-dbg.js +150 -0
  114. package/packages/sap.fe.core/src/sap/fe/core/controls/FieldWrapper.js +6 -0
  115. package/packages/sap.fe.core/src/sap/fe/core/controls/FilterBar-dbg.js +162 -0
  116. package/packages/sap.fe.core/src/sap/fe/core/controls/FilterBar.js +6 -0
  117. package/packages/sap.fe.core/src/sap/fe/core/controls/FormElementWrapper-dbg.js +47 -0
  118. package/packages/sap.fe.core/src/sap/fe/core/controls/FormElementWrapper.js +6 -0
  119. package/packages/sap.fe.core/src/sap/fe/core/controls/NonComputedVisibleKeyFieldsDialog.fragment.xml +61 -0
  120. package/packages/sap.fe.core/src/sap/fe/core/controls/filterbar/FilterContainer-dbg.js +122 -0
  121. package/packages/sap.fe.core/src/sap/fe/core/controls/filterbar/FilterContainer.js +6 -0
  122. package/packages/sap.fe.core/src/sap/fe/core/controls/filterbar/VisualFilter-dbg.js +209 -0
  123. package/packages/sap.fe.core/src/sap/fe/core/controls/filterbar/VisualFilter.js +6 -0
  124. package/packages/sap.fe.core/src/sap/fe/core/controls/filterbar/VisualFilterContainer-dbg.js +148 -0
  125. package/packages/sap.fe.core/src/sap/fe/core/controls/filterbar/VisualFilterContainer.js +6 -0
  126. package/packages/sap.fe.core/src/sap/fe/core/controls/filterbar/utils/VisualFilterUtils-dbg.js +319 -0
  127. package/packages/sap.fe.core/src/sap/fe/core/controls/filterbar/utils/VisualFilterUtils.js +6 -0
  128. package/packages/sap.fe.core/src/sap/fe/core/converters/ConverterContext-dbg.js +500 -0
  129. package/packages/sap.fe.core/src/sap/fe/core/converters/ConverterContext.js +5 -0
  130. package/packages/sap.fe.core/src/sap/fe/core/converters/ConverterContext.ts +460 -0
  131. package/packages/sap.fe.core/src/sap/fe/core/converters/ManifestSettings-dbg.js +90 -0
  132. package/packages/sap.fe.core/src/sap/fe/core/converters/ManifestSettings.js +5 -0
  133. package/packages/sap.fe.core/src/sap/fe/core/converters/ManifestSettings.ts +431 -0
  134. package/packages/sap.fe.core/src/sap/fe/core/converters/ManifestWrapper-dbg.js +404 -0
  135. package/packages/sap.fe.core/src/sap/fe/core/converters/ManifestWrapper.js +5 -0
  136. package/packages/sap.fe.core/src/sap/fe/core/converters/ManifestWrapper.ts +322 -0
  137. package/packages/sap.fe.core/src/sap/fe/core/converters/MetaModelConverter-dbg.js +1294 -0
  138. package/packages/sap.fe.core/src/sap/fe/core/converters/MetaModelConverter.js +5 -0
  139. package/packages/sap.fe.core/src/sap/fe/core/converters/MetaModelConverter.ts +1172 -0
  140. package/packages/sap.fe.core/src/sap/fe/core/converters/TemplateConverter-dbg.js +100 -0
  141. package/packages/sap.fe.core/src/sap/fe/core/converters/TemplateConverter.js +5 -0
  142. package/packages/sap.fe.core/src/sap/fe/core/converters/TemplateConverter.ts +126 -0
  143. package/packages/sap.fe.core/src/sap/fe/core/converters/annotations/DataField-dbg.js +335 -0
  144. package/packages/sap.fe.core/src/sap/fe/core/converters/annotations/DataField.js +5 -0
  145. package/packages/sap.fe.core/src/sap/fe/core/converters/annotations/DataField.ts +306 -0
  146. package/packages/sap.fe.core/src/sap/fe/core/converters/common/AnnotationConverter-dbg.js +1692 -0
  147. package/packages/sap.fe.core/src/sap/fe/core/converters/common/AnnotationConverter.js +5 -0
  148. package/packages/sap.fe.core/src/sap/fe/core/converters/controls/Common/Action-dbg.js +349 -0
  149. package/packages/sap.fe.core/src/sap/fe/core/converters/controls/Common/Action.js +5 -0
  150. package/packages/sap.fe.core/src/sap/fe/core/converters/controls/Common/Action.ts +353 -0
  151. package/packages/sap.fe.core/src/sap/fe/core/converters/controls/Common/Chart-dbg.js +206 -0
  152. package/packages/sap.fe.core/src/sap/fe/core/converters/controls/Common/Chart.js +5 -0
  153. package/packages/sap.fe.core/src/sap/fe/core/converters/controls/Common/Chart.ts +202 -0
  154. package/packages/sap.fe.core/src/sap/fe/core/converters/controls/Common/Criticality-dbg.js +50 -0
  155. package/packages/sap.fe.core/src/sap/fe/core/converters/controls/Common/Criticality.js +5 -0
  156. package/packages/sap.fe.core/src/sap/fe/core/converters/controls/Common/Criticality.ts +33 -0
  157. package/packages/sap.fe.core/src/sap/fe/core/converters/controls/Common/DataVisualization-dbg.js +276 -0
  158. package/packages/sap.fe.core/src/sap/fe/core/converters/controls/Common/DataVisualization.js +5 -0
  159. package/packages/sap.fe.core/src/sap/fe/core/converters/controls/Common/DataVisualization.ts +296 -0
  160. package/packages/sap.fe.core/src/sap/fe/core/converters/controls/Common/Form-dbg.js +222 -0
  161. package/packages/sap.fe.core/src/sap/fe/core/converters/controls/Common/Form.js +5 -0
  162. package/packages/sap.fe.core/src/sap/fe/core/converters/controls/Common/Form.ts +241 -0
  163. package/packages/sap.fe.core/src/sap/fe/core/converters/controls/Common/KPI-dbg.js +181 -0
  164. package/packages/sap.fe.core/src/sap/fe/core/converters/controls/Common/KPI.js +5 -0
  165. package/packages/sap.fe.core/src/sap/fe/core/converters/controls/Common/KPI.ts +220 -0
  166. package/packages/sap.fe.core/src/sap/fe/core/converters/controls/Common/Table-dbg.js +2100 -0
  167. package/packages/sap.fe.core/src/sap/fe/core/converters/controls/Common/Table.js +5 -0
  168. package/packages/sap.fe.core/src/sap/fe/core/converters/controls/Common/Table.ts +2446 -0
  169. package/packages/sap.fe.core/src/sap/fe/core/converters/controls/ListReport/FilterBar-dbg.js +499 -0
  170. package/packages/sap.fe.core/src/sap/fe/core/converters/controls/ListReport/FilterBar.js +5 -0
  171. package/packages/sap.fe.core/src/sap/fe/core/converters/controls/ListReport/FilterBar.ts +545 -0
  172. package/packages/sap.fe.core/src/sap/fe/core/converters/controls/ListReport/VisualFilters-dbg.js +335 -0
  173. package/packages/sap.fe.core/src/sap/fe/core/converters/controls/ListReport/VisualFilters.js +5 -0
  174. package/packages/sap.fe.core/src/sap/fe/core/converters/controls/ListReport/VisualFilters.ts +316 -0
  175. package/packages/sap.fe.core/src/sap/fe/core/converters/controls/ObjectPage/HeaderFacet-dbg.js +495 -0
  176. package/packages/sap.fe.core/src/sap/fe/core/converters/controls/ObjectPage/HeaderFacet.js +5 -0
  177. package/packages/sap.fe.core/src/sap/fe/core/converters/controls/ObjectPage/HeaderFacet.ts +502 -0
  178. package/packages/sap.fe.core/src/sap/fe/core/converters/controls/ObjectPage/SubSection-dbg.js +674 -0
  179. package/packages/sap.fe.core/src/sap/fe/core/converters/controls/ObjectPage/SubSection.js +5 -0
  180. package/packages/sap.fe.core/src/sap/fe/core/converters/controls/ObjectPage/SubSection.ts +711 -0
  181. package/packages/sap.fe.core/src/sap/fe/core/converters/helpers/Aggregation-dbg.js +204 -0
  182. package/packages/sap.fe.core/src/sap/fe/core/converters/helpers/Aggregation.js +5 -0
  183. package/packages/sap.fe.core/src/sap/fe/core/converters/helpers/Aggregation.ts +176 -0
  184. package/packages/sap.fe.core/src/sap/fe/core/converters/helpers/BindingHelper-dbg.js +96 -0
  185. package/packages/sap.fe.core/src/sap/fe/core/converters/helpers/BindingHelper.js +5 -0
  186. package/packages/sap.fe.core/src/sap/fe/core/converters/helpers/BindingHelper.ts +76 -0
  187. package/packages/sap.fe.core/src/sap/fe/core/converters/helpers/ConfigurableObject-dbg.js +217 -0
  188. package/packages/sap.fe.core/src/sap/fe/core/converters/helpers/ConfigurableObject.js +5 -0
  189. package/packages/sap.fe.core/src/sap/fe/core/converters/helpers/ConfigurableObject.ts +211 -0
  190. package/packages/sap.fe.core/src/sap/fe/core/converters/helpers/ID-dbg.js +90 -0
  191. package/packages/sap.fe.core/src/sap/fe/core/converters/helpers/ID.js +5 -0
  192. package/packages/sap.fe.core/src/sap/fe/core/converters/helpers/ID.ts +45 -0
  193. package/packages/sap.fe.core/src/sap/fe/core/converters/helpers/IssueManager-dbg.js +61 -0
  194. package/packages/sap.fe.core/src/sap/fe/core/converters/helpers/IssueManager.js +5 -0
  195. package/packages/sap.fe.core/src/sap/fe/core/converters/helpers/IssueManager.ts +41 -0
  196. package/packages/sap.fe.core/src/sap/fe/core/converters/helpers/Key-dbg.js +86 -0
  197. package/packages/sap.fe.core/src/sap/fe/core/converters/helpers/Key.js +5 -0
  198. package/packages/sap.fe.core/src/sap/fe/core/converters/helpers/Key.ts +49 -0
  199. package/packages/sap.fe.core/src/sap/fe/core/converters/helpers/SelectionVariantHelper-dbg.js +93 -0
  200. package/packages/sap.fe.core/src/sap/fe/core/converters/helpers/SelectionVariantHelper.js +5 -0
  201. package/packages/sap.fe.core/src/sap/fe/core/converters/helpers/SelectionVariantHelper.ts +92 -0
  202. package/packages/sap.fe.core/src/sap/fe/core/converters/objectPage/FormMenuActions-dbg.js +164 -0
  203. package/packages/sap.fe.core/src/sap/fe/core/converters/objectPage/FormMenuActions.js +5 -0
  204. package/packages/sap.fe.core/src/sap/fe/core/converters/objectPage/FormMenuActions.ts +160 -0
  205. package/packages/sap.fe.core/src/sap/fe/core/converters/objectPage/HeaderAndFooterAction-dbg.js +427 -0
  206. package/packages/sap.fe.core/src/sap/fe/core/converters/objectPage/HeaderAndFooterAction.js +5 -0
  207. package/packages/sap.fe.core/src/sap/fe/core/converters/objectPage/HeaderAndFooterAction.ts +414 -0
  208. package/packages/sap.fe.core/src/sap/fe/core/converters/templates/ListReportConverter-dbg.js +552 -0
  209. package/packages/sap.fe.core/src/sap/fe/core/converters/templates/ListReportConverter.js +5 -0
  210. package/packages/sap.fe.core/src/sap/fe/core/converters/templates/ListReportConverter.ts +601 -0
  211. package/packages/sap.fe.core/src/sap/fe/core/converters/templates/ObjectPageConverter-dbg.js +320 -0
  212. package/packages/sap.fe.core/src/sap/fe/core/converters/templates/ObjectPageConverter.js +5 -0
  213. package/packages/sap.fe.core/src/sap/fe/core/converters/templates/ObjectPageConverter.ts +314 -0
  214. package/packages/sap.fe.core/src/sap/fe/core/designtime/AppComponent-dbg.designtime.js +93 -0
  215. package/packages/sap.fe.core/src/sap/fe/core/designtime/AppComponent.designtime.js +6 -0
  216. package/packages/sap.fe.core/src/sap/fe/core/designtime/library-preload.designtime.js +8 -0
  217. package/packages/sap.fe.core/src/sap/fe/core/designtime/library-preload.designtime.js.map +9 -0
  218. package/packages/sap.fe.core/src/sap/fe/core/formatters/CriticalityFormatter-dbg.js +77 -0
  219. package/packages/sap.fe.core/src/sap/fe/core/formatters/CriticalityFormatter.js +5 -0
  220. package/packages/sap.fe.core/src/sap/fe/core/formatters/CriticalityFormatter.ts +58 -0
  221. package/packages/sap.fe.core/src/sap/fe/core/formatters/FPMFormatter-dbg.js +51 -0
  222. package/packages/sap.fe.core/src/sap/fe/core/formatters/FPMFormatter.js +5 -0
  223. package/packages/sap.fe.core/src/sap/fe/core/formatters/FPMFormatter.ts +41 -0
  224. package/packages/sap.fe.core/src/sap/fe/core/formatters/KPIFormatter-dbg.js +103 -0
  225. package/packages/sap.fe.core/src/sap/fe/core/formatters/KPIFormatter.js +5 -0
  226. package/packages/sap.fe.core/src/sap/fe/core/formatters/KPIFormatter.ts +88 -0
  227. package/packages/sap.fe.core/src/sap/fe/core/formatters/TableFormatter-dbg.js +100 -0
  228. package/packages/sap.fe.core/src/sap/fe/core/formatters/TableFormatter.js +5 -0
  229. package/packages/sap.fe.core/src/sap/fe/core/formatters/TableFormatter.ts +80 -0
  230. package/packages/sap.fe.core/src/sap/fe/core/formatters/TableFormatterTypes-dbg.js +23 -0
  231. package/packages/sap.fe.core/src/sap/fe/core/formatters/TableFormatterTypes.js +5 -0
  232. package/packages/sap.fe.core/src/sap/fe/core/formatters/TableFormatterTypes.ts +7 -0
  233. package/packages/sap.fe.core/src/sap/fe/core/formatters/ValueFormatter-dbg.js +162 -0
  234. package/packages/sap.fe.core/src/sap/fe/core/formatters/ValueFormatter.js +5 -0
  235. package/packages/sap.fe.core/src/sap/fe/core/formatters/ValueFormatter.ts +130 -0
  236. package/packages/sap.fe.core/src/sap/fe/core/fpm/Component-dbg.js +58 -0
  237. package/packages/sap.fe.core/src/sap/fe/core/fpm/Component.js +6 -0
  238. package/packages/sap.fe.core/src/sap/fe/core/fpm/manifest.json +64 -0
  239. package/packages/sap.fe.core/src/sap/fe/core/fpm/resources.json +18 -0
  240. package/packages/sap.fe.core/src/sap/fe/core/helpers/AnnotationEnum-dbg.js +49 -0
  241. package/packages/sap.fe.core/src/sap/fe/core/helpers/AnnotationEnum.js +5 -0
  242. package/packages/sap.fe.core/src/sap/fe/core/helpers/AnnotationEnum.ts +18 -0
  243. package/packages/sap.fe.core/src/sap/fe/core/helpers/BindingExpression-dbg.js +1667 -0
  244. package/packages/sap.fe.core/src/sap/fe/core/helpers/BindingExpression.js +5 -0
  245. package/packages/sap.fe.core/src/sap/fe/core/helpers/BindingExpression.ts +1765 -0
  246. package/packages/sap.fe.core/src/sap/fe/core/helpers/ClassSupport-dbg.js +314 -0
  247. package/packages/sap.fe.core/src/sap/fe/core/helpers/ClassSupport.js +5 -0
  248. package/packages/sap.fe.core/src/sap/fe/core/helpers/ClassSupport.ts +232 -0
  249. package/packages/sap.fe.core/src/sap/fe/core/helpers/DynamicAnnotationPathHelper-dbg.js +62 -0
  250. package/packages/sap.fe.core/src/sap/fe/core/helpers/DynamicAnnotationPathHelper.js +6 -0
  251. package/packages/sap.fe.core/src/sap/fe/core/helpers/EditState-dbg.js +92 -0
  252. package/packages/sap.fe.core/src/sap/fe/core/helpers/EditState.js +6 -0
  253. package/packages/sap.fe.core/src/sap/fe/core/helpers/ExcelFormatHelper-dbg.js +53 -0
  254. package/packages/sap.fe.core/src/sap/fe/core/helpers/ExcelFormatHelper.js +6 -0
  255. package/packages/sap.fe.core/src/sap/fe/core/helpers/FPMHelper-dbg.js +64 -0
  256. package/packages/sap.fe.core/src/sap/fe/core/helpers/FPMHelper.js +6 -0
  257. package/packages/sap.fe.core/src/sap/fe/core/helpers/ModelHelper-dbg.js +150 -0
  258. package/packages/sap.fe.core/src/sap/fe/core/helpers/ModelHelper.js +6 -0
  259. package/packages/sap.fe.core/src/sap/fe/core/helpers/PasteHelper-dbg.js +130 -0
  260. package/packages/sap.fe.core/src/sap/fe/core/helpers/PasteHelper.js +6 -0
  261. package/packages/sap.fe.core/src/sap/fe/core/helpers/SemanticDateOperators-dbg.js +327 -0
  262. package/packages/sap.fe.core/src/sap/fe/core/helpers/SemanticDateOperators.js +6 -0
  263. package/packages/sap.fe.core/src/sap/fe/core/helpers/SemanticKeyHelper-dbg.js +78 -0
  264. package/packages/sap.fe.core/src/sap/fe/core/helpers/SemanticKeyHelper.js +6 -0
  265. package/packages/sap.fe.core/src/sap/fe/core/helpers/StableIdHelper-dbg.js +267 -0
  266. package/packages/sap.fe.core/src/sap/fe/core/helpers/StableIdHelper.js +9 -0
  267. package/packages/sap.fe.core/src/sap/fe/core/helpers/StableIdHelper.ts +228 -0
  268. package/packages/sap.fe.core/src/sap/fe/core/jsx-runtime/jsx-dbg.js +75 -0
  269. package/packages/sap.fe.core/src/sap/fe/core/jsx-runtime/jsx.js +5 -0
  270. package/packages/sap.fe.core/src/sap/fe/core/jsx-runtime/jsx.ts +83 -0
  271. package/packages/sap.fe.core/src/sap/fe/core/jsx-runtime/jsxs-dbg.js +10 -0
  272. package/packages/sap.fe.core/src/sap/fe/core/jsx-runtime/jsxs.js +5 -0
  273. package/packages/sap.fe.core/src/sap/fe/core/jsx-runtime/jsxs.ts +3 -0
  274. package/packages/sap.fe.core/src/sap/fe/core/library-dbg.js +429 -0
  275. package/packages/sap.fe.core/src/sap/fe/core/library-h2-preload.js +123 -0
  276. package/packages/sap.fe.core/src/sap/fe/core/library-h2-preload.js.map +9 -0
  277. package/packages/sap.fe.core/src/sap/fe/core/library-preload.js +1201 -0
  278. package/packages/sap.fe.core/src/sap/fe/core/library-preload.js.map +9 -0
  279. package/packages/sap.fe.core/src/sap/fe/core/library-preload.support.js +148 -0
  280. package/packages/sap.fe.core/src/sap/fe/core/library-preload.support.js.map +9 -0
  281. package/packages/sap.fe.core/src/sap/fe/core/library.js +6 -0
  282. package/packages/sap.fe.core/src/sap/fe/core/library.support.js +32 -0
  283. package/packages/sap.fe.core/src/sap/fe/core/manifest.json +121 -0
  284. package/packages/sap.fe.core/src/sap/fe/core/messagebundle.properties +417 -0
  285. package/packages/sap.fe.core/src/sap/fe/core/messagebundle_ar.properties +273 -0
  286. package/packages/sap.fe.core/src/sap/fe/core/messagebundle_bg.properties +273 -0
  287. package/packages/sap.fe.core/src/sap/fe/core/messagebundle_ca.properties +273 -0
  288. package/packages/sap.fe.core/src/sap/fe/core/messagebundle_cs.properties +273 -0
  289. package/packages/sap.fe.core/src/sap/fe/core/messagebundle_cy.properties +273 -0
  290. package/packages/sap.fe.core/src/sap/fe/core/messagebundle_da.properties +273 -0
  291. package/packages/sap.fe.core/src/sap/fe/core/messagebundle_de.properties +273 -0
  292. package/packages/sap.fe.core/src/sap/fe/core/messagebundle_el.properties +273 -0
  293. package/packages/sap.fe.core/src/sap/fe/core/messagebundle_en.properties +273 -0
  294. package/packages/sap.fe.core/src/sap/fe/core/messagebundle_en_GB.properties +273 -0
  295. package/packages/sap.fe.core/src/sap/fe/core/messagebundle_en_US_sappsd.properties +273 -0
  296. package/packages/sap.fe.core/src/sap/fe/core/messagebundle_en_US_saprigi.properties +275 -0
  297. package/packages/sap.fe.core/src/sap/fe/core/messagebundle_en_US_saptrc.properties +273 -0
  298. package/packages/sap.fe.core/src/sap/fe/core/messagebundle_es.properties +273 -0
  299. package/packages/sap.fe.core/src/sap/fe/core/messagebundle_es_MX.properties +273 -0
  300. package/packages/sap.fe.core/src/sap/fe/core/messagebundle_et.properties +273 -0
  301. package/packages/sap.fe.core/src/sap/fe/core/messagebundle_fi.properties +273 -0
  302. package/packages/sap.fe.core/src/sap/fe/core/messagebundle_fr.properties +273 -0
  303. package/packages/sap.fe.core/src/sap/fe/core/messagebundle_fr_CA.properties +273 -0
  304. package/packages/sap.fe.core/src/sap/fe/core/messagebundle_hi.properties +273 -0
  305. package/packages/sap.fe.core/src/sap/fe/core/messagebundle_hr.properties +273 -0
  306. package/packages/sap.fe.core/src/sap/fe/core/messagebundle_hu.properties +273 -0
  307. package/packages/sap.fe.core/src/sap/fe/core/messagebundle_id.properties +273 -0
  308. package/packages/sap.fe.core/src/sap/fe/core/messagebundle_it.properties +273 -0
  309. package/packages/sap.fe.core/src/sap/fe/core/messagebundle_iw.properties +273 -0
  310. package/packages/sap.fe.core/src/sap/fe/core/messagebundle_ja.properties +273 -0
  311. package/packages/sap.fe.core/src/sap/fe/core/messagebundle_kk.properties +273 -0
  312. package/packages/sap.fe.core/src/sap/fe/core/messagebundle_ko.properties +273 -0
  313. package/packages/sap.fe.core/src/sap/fe/core/messagebundle_lt.properties +273 -0
  314. package/packages/sap.fe.core/src/sap/fe/core/messagebundle_lv.properties +273 -0
  315. package/packages/sap.fe.core/src/sap/fe/core/messagebundle_ms.properties +273 -0
  316. package/packages/sap.fe.core/src/sap/fe/core/messagebundle_nl.properties +273 -0
  317. package/packages/sap.fe.core/src/sap/fe/core/messagebundle_no.properties +273 -0
  318. package/packages/sap.fe.core/src/sap/fe/core/messagebundle_pl.properties +273 -0
  319. package/packages/sap.fe.core/src/sap/fe/core/messagebundle_pt.properties +273 -0
  320. package/packages/sap.fe.core/src/sap/fe/core/messagebundle_pt_PT.properties +273 -0
  321. package/packages/sap.fe.core/src/sap/fe/core/messagebundle_ro.properties +273 -0
  322. package/packages/sap.fe.core/src/sap/fe/core/messagebundle_ru.properties +273 -0
  323. package/packages/sap.fe.core/src/sap/fe/core/messagebundle_sh.properties +273 -0
  324. package/packages/sap.fe.core/src/sap/fe/core/messagebundle_sk.properties +273 -0
  325. package/packages/sap.fe.core/src/sap/fe/core/messagebundle_sl.properties +273 -0
  326. package/packages/sap.fe.core/src/sap/fe/core/messagebundle_sv.properties +273 -0
  327. package/packages/sap.fe.core/src/sap/fe/core/messagebundle_th.properties +273 -0
  328. package/packages/sap.fe.core/src/sap/fe/core/messagebundle_tr.properties +273 -0
  329. package/packages/sap.fe.core/src/sap/fe/core/messagebundle_uk.properties +273 -0
  330. package/packages/sap.fe.core/src/sap/fe/core/messagebundle_vi.properties +273 -0
  331. package/packages/sap.fe.core/src/sap/fe/core/messagebundle_zh_CN.properties +273 -0
  332. package/packages/sap.fe.core/src/sap/fe/core/messagebundle_zh_TW.properties +273 -0
  333. package/packages/sap.fe.core/src/sap/fe/core/resources.json +4087 -0
  334. package/packages/sap.fe.core/src/sap/fe/core/services/AsyncComponentServiceFactory-dbg.js +106 -0
  335. package/packages/sap.fe.core/src/sap/fe/core/services/AsyncComponentServiceFactory.js +5 -0
  336. package/packages/sap.fe.core/src/sap/fe/core/services/AsyncComponentServiceFactory.ts +58 -0
  337. package/packages/sap.fe.core/src/sap/fe/core/services/CacheHandlerServiceFactory-dbg.js +205 -0
  338. package/packages/sap.fe.core/src/sap/fe/core/services/CacheHandlerServiceFactory.js +6 -0
  339. package/packages/sap.fe.core/src/sap/fe/core/services/EnvironmentServiceFactory-dbg.js +128 -0
  340. package/packages/sap.fe.core/src/sap/fe/core/services/EnvironmentServiceFactory.js +5 -0
  341. package/packages/sap.fe.core/src/sap/fe/core/services/EnvironmentServiceFactory.ts +71 -0
  342. package/packages/sap.fe.core/src/sap/fe/core/services/NavigationServiceFactory-dbg.js +303 -0
  343. package/packages/sap.fe.core/src/sap/fe/core/services/NavigationServiceFactory.js +6 -0
  344. package/packages/sap.fe.core/src/sap/fe/core/services/ResourceModelServiceFactory-dbg.js +84 -0
  345. package/packages/sap.fe.core/src/sap/fe/core/services/ResourceModelServiceFactory.js +6 -0
  346. package/packages/sap.fe.core/src/sap/fe/core/services/RoutingServiceFactory-dbg.js +1099 -0
  347. package/packages/sap.fe.core/src/sap/fe/core/services/RoutingServiceFactory.js +6 -0
  348. package/packages/sap.fe.core/src/sap/fe/core/services/ShellServicesFactory-dbg.js +819 -0
  349. package/packages/sap.fe.core/src/sap/fe/core/services/ShellServicesFactory.js +5 -0
  350. package/packages/sap.fe.core/src/sap/fe/core/services/ShellServicesFactory.ts +720 -0
  351. package/packages/sap.fe.core/src/sap/fe/core/services/SideEffectsServiceFactory-dbg.js +731 -0
  352. package/packages/sap.fe.core/src/sap/fe/core/services/SideEffectsServiceFactory.js +5 -0
  353. package/packages/sap.fe.core/src/sap/fe/core/services/SideEffectsServiceFactory.ts +668 -0
  354. package/packages/sap.fe.core/src/sap/fe/core/services/TemplatedViewServiceFactory-dbg.js +471 -0
  355. package/packages/sap.fe.core/src/sap/fe/core/services/TemplatedViewServiceFactory.js +6 -0
  356. package/packages/sap.fe.core/src/sap/fe/core/services/view/TemplatingErrorPage-dbg.controller.js +12 -0
  357. package/packages/sap.fe.core/src/sap/fe/core/services/view/TemplatingErrorPage.controller.js +6 -0
  358. package/packages/sap.fe.core/src/sap/fe/core/services/view/TemplatingErrorPage.view.xml +8 -0
  359. package/packages/sap.fe.core/src/sap/fe/core/support/AnnotationIssue.support.js +38 -0
  360. package/packages/sap.fe.core/src/sap/fe/core/support/AnnotationIssue.support.ts +20 -0
  361. package/packages/sap.fe.core/src/sap/fe/core/support/CollectionFacetMissingID.support.js +38 -0
  362. package/packages/sap.fe.core/src/sap/fe/core/support/CollectionFacetMissingID.support.ts +18 -0
  363. package/packages/sap.fe.core/src/sap/fe/core/support/CollectionFacetUnsupportedLevel.support.js +38 -0
  364. package/packages/sap.fe.core/src/sap/fe/core/support/CollectionFacetUnsupportedLevel.support.ts +18 -0
  365. package/packages/sap.fe.core/src/sap/fe/core/support/CommonHelper-dbg.js +71 -0
  366. package/packages/sap.fe.core/src/sap/fe/core/support/CommonHelper.js +5 -0
  367. package/packages/sap.fe.core/src/sap/fe/core/support/CommonHelper.ts +67 -0
  368. package/packages/sap.fe.core/src/sap/fe/core/support/Diagnostics-dbg.js +73 -0
  369. package/packages/sap.fe.core/src/sap/fe/core/support/Diagnostics.js +5 -0
  370. package/packages/sap.fe.core/src/sap/fe/core/support/Diagnostics.ts +66 -0
  371. package/packages/sap.fe.core/src/sap/fe/core/templating/CriticalityFormatters-dbg.js +156 -0
  372. package/packages/sap.fe.core/src/sap/fe/core/templating/CriticalityFormatters.js +5 -0
  373. package/packages/sap.fe.core/src/sap/fe/core/templating/CriticalityFormatters.ts +226 -0
  374. package/packages/sap.fe.core/src/sap/fe/core/templating/DataFieldFormatters-dbg.js +77 -0
  375. package/packages/sap.fe.core/src/sap/fe/core/templating/DataFieldFormatters.js +5 -0
  376. package/packages/sap.fe.core/src/sap/fe/core/templating/DataFieldFormatters.ts +54 -0
  377. package/packages/sap.fe.core/src/sap/fe/core/templating/DataModelPathHelper-dbg.js +444 -0
  378. package/packages/sap.fe.core/src/sap/fe/core/templating/DataModelPathHelper.js +5 -0
  379. package/packages/sap.fe.core/src/sap/fe/core/templating/DataModelPathHelper.ts +428 -0
  380. package/packages/sap.fe.core/src/sap/fe/core/templating/EntitySetHelper-dbg.js +33 -0
  381. package/packages/sap.fe.core/src/sap/fe/core/templating/EntitySetHelper.js +5 -0
  382. package/packages/sap.fe.core/src/sap/fe/core/templating/EntitySetHelper.ts +13 -0
  383. package/packages/sap.fe.core/src/sap/fe/core/templating/FieldControlHelper-dbg.js +89 -0
  384. package/packages/sap.fe.core/src/sap/fe/core/templating/FieldControlHelper.js +5 -0
  385. package/packages/sap.fe.core/src/sap/fe/core/templating/FieldControlHelper.ts +53 -0
  386. package/packages/sap.fe.core/src/sap/fe/core/templating/FilterHelper-dbg.js +331 -0
  387. package/packages/sap.fe.core/src/sap/fe/core/templating/FilterHelper.js +5 -0
  388. package/packages/sap.fe.core/src/sap/fe/core/templating/FilterHelper.ts +310 -0
  389. package/packages/sap.fe.core/src/sap/fe/core/templating/FilterTemplating-dbg.js +66 -0
  390. package/packages/sap.fe.core/src/sap/fe/core/templating/FilterTemplating.js +5 -0
  391. package/packages/sap.fe.core/src/sap/fe/core/templating/FilterTemplating.ts +39 -0
  392. package/packages/sap.fe.core/src/sap/fe/core/templating/PropertyFormatters-dbg.js +126 -0
  393. package/packages/sap.fe.core/src/sap/fe/core/templating/PropertyFormatters.js +5 -0
  394. package/packages/sap.fe.core/src/sap/fe/core/templating/PropertyFormatters.ts +86 -0
  395. package/packages/sap.fe.core/src/sap/fe/core/templating/PropertyHelper-dbg.js +303 -0
  396. package/packages/sap.fe.core/src/sap/fe/core/templating/PropertyHelper.js +5 -0
  397. package/packages/sap.fe.core/src/sap/fe/core/templating/PropertyHelper.ts +209 -0
  398. package/packages/sap.fe.core/src/sap/fe/core/templating/UIFormatters-dbg.js +525 -0
  399. package/packages/sap.fe.core/src/sap/fe/core/templating/UIFormatters.js +5 -0
  400. package/packages/sap.fe.core/src/sap/fe/core/templating/UIFormatters.ts +489 -0
  401. package/packages/sap.fe.core/src/sap/fe/core/type/Email-dbg.js +20 -0
  402. package/packages/sap.fe.core/src/sap/fe/core/type/Email.js +5 -0
  403. package/packages/sap.fe.core/src/sap/fe/core/type/Email.ts +18 -0
  404. package/packages/sap.fe.core/test/sap/fe/core/designtime/api.json +1 -0
  405. package/packages/sap.fe.core/test/sap/fe/core/designtime/apiref/api.json +1 -0
  406. package/packages/sap.fe.core/test/sap/fe/core/designtime/codeassistance/Library.jsmeta.json +1 -0
  407. package/packages/sap.fe.core/test/sap/fe/core/designtime/codeassistance/Library.jstemplates.json +1 -0
  408. package/packages/sap.fe.core/test/sap/fe/core/designtime/codeassistance/Library.xmlmeta.json +1 -0
  409. package/packages/sap.fe.core/test/sap/fe/core/designtime/codeassistance/Library.xmltemplates.json +1 -0
  410. package/packages/sap.fe.core/test/sap/fe/core/fpmExplorer/Component.js +56 -0
  411. package/packages/sap.fe.core/test/sap/fe/core/fpmExplorer/controller/App.controller.js +252 -0
  412. package/packages/sap.fe.core/test/sap/fe/core/fpmExplorer/controller/BaseController.js +46 -0
  413. package/packages/sap.fe.core/test/sap/fe/core/fpmExplorer/controller/ControllerExtensions.controller.js +380 -0
  414. package/packages/sap.fe.core/test/sap/fe/core/fpmExplorer/controller/CustomElements.controller.js +380 -0
  415. package/packages/sap.fe.core/test/sap/fe/core/fpmExplorer/controller/MacrosPage.controller.js +382 -0
  416. package/packages/sap.fe.core/test/sap/fe/core/fpmExplorer/controller/Overview.controller.js +99 -0
  417. package/packages/sap.fe.core/test/sap/fe/core/fpmExplorer/controller/Topic.controller.js +71 -0
  418. package/packages/sap.fe.core/test/sap/fe/core/fpmExplorer/controls/FileEditor.js +401 -0
  419. package/packages/sap.fe.core/test/sap/fe/core/fpmExplorer/css/FileEditor.css +8 -0
  420. package/packages/sap.fe.core/test/sap/fe/core/fpmExplorer/css/codesample.css +172 -0
  421. package/packages/sap.fe.core/test/sap/fe/core/fpmExplorer/css/markdown-styles.css +3 -0
  422. package/packages/sap.fe.core/test/sap/fe/core/fpmExplorer/css/style.css +48 -0
  423. package/packages/sap.fe.core/test/sap/fe/core/fpmExplorer/css/topic.css +176 -0
  424. package/packages/sap.fe.core/test/sap/fe/core/fpmExplorer/index.html +62 -0
  425. package/packages/sap.fe.core/test/sap/fe/core/fpmExplorer/manifest.json +132 -0
  426. package/packages/sap.fe.core/test/sap/fe/core/fpmExplorer/model/ControllerExtensionNavigationModel.js +174 -0
  427. package/packages/sap.fe.core/test/sap/fe/core/fpmExplorer/model/CustomElementNavigationModel.js +327 -0
  428. package/packages/sap.fe.core/test/sap/fe/core/fpmExplorer/model/ExploreSettingsModel.js +12 -0
  429. package/packages/sap.fe.core/test/sap/fe/core/fpmExplorer/model/MacroNavigationModel.js +709 -0
  430. package/packages/sap.fe.core/test/sap/fe/core/fpmExplorer/model/OverviewNavigationModel.js +15 -0
  431. package/packages/sap.fe.core/test/sap/fe/core/fpmExplorer/scripts/boot.js +68 -0
  432. package/packages/sap.fe.core/test/sap/fe/core/fpmExplorer/service-worker.js +100 -0
  433. package/packages/sap.fe.core/test/sap/fe/core/fpmExplorer/template/.gitignore.tmpl +0 -0
  434. package/packages/sap.fe.core/test/sap/fe/core/fpmExplorer/template/.npmrc.tmpl +0 -0
  435. package/packages/sap.fe.core/test/sap/fe/core/fpmExplorer/template/README.md +43 -0
  436. package/packages/sap.fe.core/test/sap/fe/core/fpmExplorer/template/package.json +31 -0
  437. package/packages/sap.fe.core/test/sap/fe/core/fpmExplorer/template/ui5-local.yaml +25 -0
  438. package/packages/sap.fe.core/test/sap/fe/core/fpmExplorer/template/ui5.yaml +25 -0
  439. package/packages/sap.fe.core/test/sap/fe/core/fpmExplorer/template/webapp/Component.js +9 -0
  440. package/packages/sap.fe.core/test/sap/fe/core/fpmExplorer/template/webapp/i18n/i18n.properties +9 -0
  441. package/packages/sap.fe.core/test/sap/fe/core/fpmExplorer/template/webapp/index.html +28 -0
  442. package/packages/sap.fe.core/test/sap/fe/core/fpmExplorer/template/webapp/manifest.json +165 -0
  443. package/packages/sap.fe.core/test/sap/fe/core/fpmExplorer/topics/buildingBlocks/FCL/FclNavigationButtons/Component.js +31 -0
  444. package/packages/sap.fe.core/test/sap/fe/core/fpmExplorer/topics/buildingBlocks/FCL/FclNavigationButtons/localService/Incidents.json +56 -0
  445. package/packages/sap.fe.core/test/sap/fe/core/fpmExplorer/topics/buildingBlocks/FCL/FclNavigationButtons/localService/service.cds +32 -0
  446. package/packages/sap.fe.core/test/sap/fe/core/fpmExplorer/topics/buildingBlocks/FCL/FclNavigationButtons/manifest.json +109 -0
  447. package/packages/sap.fe.core/test/sap/fe/core/fpmExplorer/topics/buildingBlocks/FCL/FclNavigationButtons/myViewTest.controller.js +6 -0
  448. package/packages/sap.fe.core/test/sap/fe/core/fpmExplorer/topics/buildingBlocks/FCL/FclNavigationButtons/myViewTest.view.xml +30 -0
  449. package/packages/sap.fe.core/test/sap/fe/core/fpmExplorer/topics/buildingBlocks/FclNavigationButtons.html +37 -0
  450. package/packages/sap.fe.core/test/sap/fe/core/fpmExplorer/topics/buildingBlocks/buildingBlockOverview.html +24 -0
  451. package/packages/sap.fe.core/test/sap/fe/core/fpmExplorer/topics/buildingBlocks/buildingBlockOverview.md +23 -0
  452. package/packages/sap.fe.core/test/sap/fe/core/fpmExplorer/topics/buildingBlocks/chart/chartDefault/ChartDefault.controller.js +5 -0
  453. package/packages/sap.fe.core/test/sap/fe/core/fpmExplorer/topics/buildingBlocks/chart/chartDefault/ChartDefault.view.xml +21 -0
  454. package/packages/sap.fe.core/test/sap/fe/core/fpmExplorer/topics/buildingBlocks/chart/chartDefault/Component.js +36 -0
  455. package/packages/sap.fe.core/test/sap/fe/core/fpmExplorer/topics/buildingBlocks/chart/chartDefault/localService/ChildEntity.json +686 -0
  456. package/packages/sap.fe.core/test/sap/fe/core/fpmExplorer/topics/buildingBlocks/chart/chartDefault/localService/CreditLimitDetails.json +154 -0
  457. package/packages/sap.fe.core/test/sap/fe/core/fpmExplorer/topics/buildingBlocks/chart/chartDefault/localService/RootEntity.json +252 -0
  458. package/packages/sap.fe.core/test/sap/fe/core/fpmExplorer/topics/buildingBlocks/chart/chartDefault/localService/service.cds +122 -0
  459. package/packages/sap.fe.core/test/sap/fe/core/fpmExplorer/topics/buildingBlocks/chart/chartDefault/manifest.json +69 -0
  460. package/packages/sap.fe.core/test/sap/fe/core/fpmExplorer/topics/buildingBlocks/chart/chartQualifier/ChartQualifier.controller.js +5 -0
  461. package/packages/sap.fe.core/test/sap/fe/core/fpmExplorer/topics/buildingBlocks/chart/chartQualifier/ChartQualifier.view.xml +20 -0
  462. package/packages/sap.fe.core/test/sap/fe/core/fpmExplorer/topics/buildingBlocks/chart/chartQualifier/Component.js +36 -0
  463. package/packages/sap.fe.core/test/sap/fe/core/fpmExplorer/topics/buildingBlocks/chart/chartQualifier/localService/ChildEntity.json +686 -0
  464. package/packages/sap.fe.core/test/sap/fe/core/fpmExplorer/topics/buildingBlocks/chart/chartQualifier/localService/CreditLimitDetails.json +154 -0
  465. package/packages/sap.fe.core/test/sap/fe/core/fpmExplorer/topics/buildingBlocks/chart/chartQualifier/localService/RootEntity.json +252 -0
  466. package/packages/sap.fe.core/test/sap/fe/core/fpmExplorer/topics/buildingBlocks/chart/chartQualifier/localService/service.cds +122 -0
  467. package/packages/sap.fe.core/test/sap/fe/core/fpmExplorer/topics/buildingBlocks/chart/chartQualifier/manifest.json +69 -0
  468. package/packages/sap.fe.core/test/sap/fe/core/fpmExplorer/topics/buildingBlocks/chart/chartSelectionMode/ChartSelectionMode.controller.js +5 -0
  469. package/packages/sap.fe.core/test/sap/fe/core/fpmExplorer/topics/buildingBlocks/chart/chartSelectionMode/ChartSelectionMode.view.xml +36 -0
  470. package/packages/sap.fe.core/test/sap/fe/core/fpmExplorer/topics/buildingBlocks/chart/chartSelectionMode/Component.js +36 -0
  471. package/packages/sap.fe.core/test/sap/fe/core/fpmExplorer/topics/buildingBlocks/chart/chartSelectionMode/localService/ChildEntity.json +686 -0
  472. package/packages/sap.fe.core/test/sap/fe/core/fpmExplorer/topics/buildingBlocks/chart/chartSelectionMode/localService/CreditLimitDetails.json +154 -0
  473. package/packages/sap.fe.core/test/sap/fe/core/fpmExplorer/topics/buildingBlocks/chart/chartSelectionMode/localService/RootEntity.json +277 -0
  474. package/packages/sap.fe.core/test/sap/fe/core/fpmExplorer/topics/buildingBlocks/chart/chartSelectionMode/localService/service.cds +122 -0
  475. package/packages/sap.fe.core/test/sap/fe/core/fpmExplorer/topics/buildingBlocks/chart/chartSelectionMode/manifest.json +69 -0
  476. package/packages/sap.fe.core/test/sap/fe/core/fpmExplorer/topics/buildingBlocks/chartDefault.html +37 -0
  477. package/packages/sap.fe.core/test/sap/fe/core/fpmExplorer/topics/buildingBlocks/chartQualifier.html +37 -0
  478. package/packages/sap.fe.core/test/sap/fe/core/fpmExplorer/topics/buildingBlocks/chartSelectionMode.html +37 -0
  479. package/packages/sap.fe.core/test/sap/fe/core/fpmExplorer/topics/buildingBlocks/field/fieldDisplay/Component.js +34 -0
  480. package/packages/sap.fe.core/test/sap/fe/core/fpmExplorer/topics/buildingBlocks/field/fieldDisplay/FieldDisplay.view.xml +64 -0
  481. package/packages/sap.fe.core/test/sap/fe/core/fpmExplorer/topics/buildingBlocks/field/fieldDisplay/localService/ChildEntity.json +14 -0
  482. package/packages/sap.fe.core/test/sap/fe/core/fpmExplorer/topics/buildingBlocks/field/fieldDisplay/localService/FieldDisplay.cds +94 -0
  483. package/packages/sap.fe.core/test/sap/fe/core/fpmExplorer/topics/buildingBlocks/field/fieldDisplay/localService/RootEntity.json +23 -0
  484. package/packages/sap.fe.core/test/sap/fe/core/fpmExplorer/topics/buildingBlocks/field/fieldDisplay/localService/ValueHelpEntity.js +11 -0
  485. package/packages/sap.fe.core/test/sap/fe/core/fpmExplorer/topics/buildingBlocks/field/fieldDisplay/manifest.json +68 -0
  486. package/packages/sap.fe.core/test/sap/fe/core/fpmExplorer/topics/buildingBlocks/field/fieldEdit/Component.js +33 -0
  487. package/packages/sap.fe.core/test/sap/fe/core/fpmExplorer/topics/buildingBlocks/field/fieldEdit/FieldEdit.controller.js +10 -0
  488. package/packages/sap.fe.core/test/sap/fe/core/fpmExplorer/topics/buildingBlocks/field/fieldEdit/FieldEdit.view.xml +101 -0
  489. package/packages/sap.fe.core/test/sap/fe/core/fpmExplorer/topics/buildingBlocks/field/fieldEdit/localService/ChildEntity.json +14 -0
  490. package/packages/sap.fe.core/test/sap/fe/core/fpmExplorer/topics/buildingBlocks/field/fieldEdit/localService/FieldControlValueHelpEntity.json +14 -0
  491. package/packages/sap.fe.core/test/sap/fe/core/fpmExplorer/topics/buildingBlocks/field/fieldEdit/localService/FieldEdit.cds +77 -0
  492. package/packages/sap.fe.core/test/sap/fe/core/fpmExplorer/topics/buildingBlocks/field/fieldEdit/localService/RootEntity.json +14 -0
  493. package/packages/sap.fe.core/test/sap/fe/core/fpmExplorer/topics/buildingBlocks/field/fieldEdit/localService/localAnnotations.xml +38 -0
  494. package/packages/sap.fe.core/test/sap/fe/core/fpmExplorer/topics/buildingBlocks/field/fieldEdit/manifest.json +75 -0
  495. package/packages/sap.fe.core/test/sap/fe/core/fpmExplorer/topics/buildingBlocks/field/fieldEvents/Component.js +33 -0
  496. package/packages/sap.fe.core/test/sap/fe/core/fpmExplorer/topics/buildingBlocks/field/fieldEvents/FieldEvents.controller.js +23 -0
  497. package/packages/sap.fe.core/test/sap/fe/core/fpmExplorer/topics/buildingBlocks/field/fieldEvents/FieldEvents.view.xml +20 -0
  498. package/packages/sap.fe.core/test/sap/fe/core/fpmExplorer/topics/buildingBlocks/field/fieldEvents/localService/Entities.json +6 -0
  499. package/packages/sap.fe.core/test/sap/fe/core/fpmExplorer/topics/buildingBlocks/field/fieldEvents/localService/service.cds +6 -0
  500. package/packages/sap.fe.core/test/sap/fe/core/fpmExplorer/topics/buildingBlocks/field/fieldEvents/manifest.json +68 -0
  501. package/packages/sap.fe.core/test/sap/fe/core/fpmExplorer/topics/buildingBlocks/field/fieldFormatOptions/Component.js +33 -0
  502. package/packages/sap.fe.core/test/sap/fe/core/fpmExplorer/topics/buildingBlocks/field/fieldFormatOptions/FieldFormatOptions.controller.js +10 -0
  503. package/packages/sap.fe.core/test/sap/fe/core/fpmExplorer/topics/buildingBlocks/field/fieldFormatOptions/FieldFormatOptions.view.xml +132 -0
  504. package/packages/sap.fe.core/test/sap/fe/core/fpmExplorer/topics/buildingBlocks/field/fieldFormatOptions/localService/Currencies.json +29 -0
  505. package/packages/sap.fe.core/test/sap/fe/core/fpmExplorer/topics/buildingBlocks/field/fieldFormatOptions/localService/Currencies_texts.json +38 -0
  506. package/packages/sap.fe.core/test/sap/fe/core/fpmExplorer/topics/buildingBlocks/field/fieldFormatOptions/localService/FieldFormatOptions.cds +58 -0
  507. package/packages/sap.fe.core/test/sap/fe/core/fpmExplorer/topics/buildingBlocks/field/fieldFormatOptions/localService/Languages.json +17 -0
  508. package/packages/sap.fe.core/test/sap/fe/core/fpmExplorer/topics/buildingBlocks/field/fieldFormatOptions/localService/Languages_texts.json +38 -0
  509. package/packages/sap.fe.core/test/sap/fe/core/fpmExplorer/topics/buildingBlocks/field/fieldFormatOptions/localService/RootEntity.json +13 -0
  510. package/packages/sap.fe.core/test/sap/fe/core/fpmExplorer/topics/buildingBlocks/field/fieldFormatOptions/localService/UnitOfMeasure.json +12 -0
  511. package/packages/sap.fe.core/test/sap/fe/core/fpmExplorer/topics/buildingBlocks/field/fieldFormatOptions/manifest.json +68 -0
  512. package/packages/sap.fe.core/test/sap/fe/core/fpmExplorer/topics/buildingBlocks/field/fieldNavProp/Component.js +33 -0
  513. package/packages/sap.fe.core/test/sap/fe/core/fpmExplorer/topics/buildingBlocks/field/fieldNavProp/FieldNavProp.controller.js +10 -0
  514. package/packages/sap.fe.core/test/sap/fe/core/fpmExplorer/topics/buildingBlocks/field/fieldNavProp/FieldNavProp.view.xml +114 -0
  515. package/packages/sap.fe.core/test/sap/fe/core/fpmExplorer/topics/buildingBlocks/field/fieldNavProp/localService/FieldNavProp.cds +161 -0
  516. package/packages/sap.fe.core/test/sap/fe/core/fpmExplorer/topics/buildingBlocks/field/fieldNavProp/localService/NavProp1.json +25 -0
  517. package/packages/sap.fe.core/test/sap/fe/core/fpmExplorer/topics/buildingBlocks/field/fieldNavProp/localService/NavProp2.json +7 -0
  518. package/packages/sap.fe.core/test/sap/fe/core/fpmExplorer/topics/buildingBlocks/field/fieldNavProp/localService/RootEntity.json +14 -0
  519. package/packages/sap.fe.core/test/sap/fe/core/fpmExplorer/topics/buildingBlocks/field/fieldNavProp/localService/ValueHelpEntity.json +14 -0
  520. package/packages/sap.fe.core/test/sap/fe/core/fpmExplorer/topics/buildingBlocks/field/fieldNavProp/manifest.json +68 -0
  521. package/packages/sap.fe.core/test/sap/fe/core/fpmExplorer/topics/buildingBlocks/fieldDisplay.html +37 -0
  522. package/packages/sap.fe.core/test/sap/fe/core/fpmExplorer/topics/buildingBlocks/fieldEdit.html +37 -0
  523. package/packages/sap.fe.core/test/sap/fe/core/fpmExplorer/topics/buildingBlocks/fieldEvents.html +37 -0
  524. package/packages/sap.fe.core/test/sap/fe/core/fpmExplorer/topics/buildingBlocks/fieldFormatOptions.html +37 -0
  525. package/packages/sap.fe.core/test/sap/fe/core/fpmExplorer/topics/buildingBlocks/fieldNavProp.html +37 -0
  526. package/packages/sap.fe.core/test/sap/fe/core/fpmExplorer/topics/buildingBlocks/filterBar/filterBarDefault/Component.js +36 -0
  527. package/packages/sap.fe.core/test/sap/fe/core/fpmExplorer/topics/buildingBlocks/filterBar/filterBarDefault/FilterBarDefault.controller.js +35 -0
  528. package/packages/sap.fe.core/test/sap/fe/core/fpmExplorer/topics/buildingBlocks/filterBar/filterBarDefault/FilterBarDefault.view.xml +58 -0
  529. package/packages/sap.fe.core/test/sap/fe/core/fpmExplorer/topics/buildingBlocks/filterBar/filterBarDefault/localService/ChildEntity.json +686 -0
  530. package/packages/sap.fe.core/test/sap/fe/core/fpmExplorer/topics/buildingBlocks/filterBar/filterBarDefault/localService/CreditLimitDetails.json +154 -0
  531. package/packages/sap.fe.core/test/sap/fe/core/fpmExplorer/topics/buildingBlocks/filterBar/filterBarDefault/localService/RootEntity.json +102 -0
  532. package/packages/sap.fe.core/test/sap/fe/core/fpmExplorer/topics/buildingBlocks/filterBar/filterBarDefault/localService/ValueHelpEntity.js +11 -0
  533. package/packages/sap.fe.core/test/sap/fe/core/fpmExplorer/topics/buildingBlocks/filterBar/filterBarDefault/localService/service.cds +96 -0
  534. package/packages/sap.fe.core/test/sap/fe/core/fpmExplorer/topics/buildingBlocks/filterBar/filterBarDefault/manifest.json +68 -0
  535. package/packages/sap.fe.core/test/sap/fe/core/fpmExplorer/topics/buildingBlocks/filterBarDefault.html +37 -0
  536. package/packages/sap.fe.core/test/sap/fe/core/fpmExplorer/topics/buildingBlocks/formElement/formElementCustomField/Component.js +33 -0
  537. package/packages/sap.fe.core/test/sap/fe/core/fpmExplorer/topics/buildingBlocks/formElement/formElementCustomField/FormElementCustomField.view.xml +49 -0
  538. package/packages/sap.fe.core/test/sap/fe/core/fpmExplorer/topics/buildingBlocks/formElement/formElementCustomField/localService/FormElementCustomField.cds +19 -0
  539. package/packages/sap.fe.core/test/sap/fe/core/fpmExplorer/topics/buildingBlocks/formElement/formElementCustomField/localService/RootEntity.json +13 -0
  540. package/packages/sap.fe.core/test/sap/fe/core/fpmExplorer/topics/buildingBlocks/formElement/formElementCustomField/manifest.json +68 -0
  541. package/packages/sap.fe.core/test/sap/fe/core/fpmExplorer/topics/buildingBlocks/formElement/formElementLabel/Component.js +33 -0
  542. package/packages/sap.fe.core/test/sap/fe/core/fpmExplorer/topics/buildingBlocks/formElement/formElementLabel/FormElementLabel.view.xml +32 -0
  543. package/packages/sap.fe.core/test/sap/fe/core/fpmExplorer/topics/buildingBlocks/formElement/formElementLabel/localService/FormElementLabel.cds +19 -0
  544. package/packages/sap.fe.core/test/sap/fe/core/fpmExplorer/topics/buildingBlocks/formElement/formElementLabel/localService/RootEntity.json +13 -0
  545. package/packages/sap.fe.core/test/sap/fe/core/fpmExplorer/topics/buildingBlocks/formElement/formElementLabel/manifest.json +68 -0
  546. package/packages/sap.fe.core/test/sap/fe/core/fpmExplorer/topics/buildingBlocks/formElementCustomField.html +37 -0
  547. package/packages/sap.fe.core/test/sap/fe/core/fpmExplorer/topics/buildingBlocks/formElementLabel.html +37 -0
  548. package/packages/sap.fe.core/test/sap/fe/core/fpmExplorer/topics/buildingBlocks/i18n/i18n.properties +19 -0
  549. package/packages/sap.fe.core/test/sap/fe/core/fpmExplorer/topics/buildingBlocks/microChartDefault.html +37 -0
  550. package/packages/sap.fe.core/test/sap/fe/core/fpmExplorer/topics/buildingBlocks/microChartDynamicSize.html +37 -0
  551. package/packages/sap.fe.core/test/sap/fe/core/fpmExplorer/topics/buildingBlocks/microChartHideOnNoData.html +37 -0
  552. package/packages/sap.fe.core/test/sap/fe/core/fpmExplorer/topics/buildingBlocks/microChartShowOnlyChart.html +37 -0
  553. package/packages/sap.fe.core/test/sap/fe/core/fpmExplorer/topics/buildingBlocks/microchart/microChartDefault/Component.js +36 -0
  554. package/packages/sap.fe.core/test/sap/fe/core/fpmExplorer/topics/buildingBlocks/microchart/microChartDefault/MicroChartDefault.controller.js +5 -0
  555. package/packages/sap.fe.core/test/sap/fe/core/fpmExplorer/topics/buildingBlocks/microchart/microChartDefault/MicroChartDefault.view.xml +83 -0
  556. package/packages/sap.fe.core/test/sap/fe/core/fpmExplorer/topics/buildingBlocks/microchart/microChartDefault/localService/ChildEntity.json +686 -0
  557. package/packages/sap.fe.core/test/sap/fe/core/fpmExplorer/topics/buildingBlocks/microchart/microChartDefault/localService/CreditLimitDetails.json +154 -0
  558. package/packages/sap.fe.core/test/sap/fe/core/fpmExplorer/topics/buildingBlocks/microchart/microChartDefault/localService/RootEntity.json +34 -0
  559. package/packages/sap.fe.core/test/sap/fe/core/fpmExplorer/topics/buildingBlocks/microchart/microChartDefault/localService/service.cds +308 -0
  560. package/packages/sap.fe.core/test/sap/fe/core/fpmExplorer/topics/buildingBlocks/microchart/microChartDefault/manifest.json +69 -0
  561. package/packages/sap.fe.core/test/sap/fe/core/fpmExplorer/topics/buildingBlocks/microchart/microChartDynamicSize/Component.js +36 -0
  562. package/packages/sap.fe.core/test/sap/fe/core/fpmExplorer/topics/buildingBlocks/microchart/microChartDynamicSize/MicroChartDynamicSize.controller.js +5 -0
  563. package/packages/sap.fe.core/test/sap/fe/core/fpmExplorer/topics/buildingBlocks/microchart/microChartDynamicSize/MicroChartDynamicSize.view.xml +93 -0
  564. package/packages/sap.fe.core/test/sap/fe/core/fpmExplorer/topics/buildingBlocks/microchart/microChartDynamicSize/localService/ChildEntity.json +686 -0
  565. package/packages/sap.fe.core/test/sap/fe/core/fpmExplorer/topics/buildingBlocks/microchart/microChartDynamicSize/localService/CreditLimitDetails.json +154 -0
  566. package/packages/sap.fe.core/test/sap/fe/core/fpmExplorer/topics/buildingBlocks/microchart/microChartDynamicSize/localService/RootEntity.json +34 -0
  567. package/packages/sap.fe.core/test/sap/fe/core/fpmExplorer/topics/buildingBlocks/microchart/microChartDynamicSize/localService/service.cds +308 -0
  568. package/packages/sap.fe.core/test/sap/fe/core/fpmExplorer/topics/buildingBlocks/microchart/microChartDynamicSize/manifest.json +69 -0
  569. package/packages/sap.fe.core/test/sap/fe/core/fpmExplorer/topics/buildingBlocks/microchart/microChartHideOnNoData/Component.js +36 -0
  570. package/packages/sap.fe.core/test/sap/fe/core/fpmExplorer/topics/buildingBlocks/microchart/microChartHideOnNoData/MicroChartHideOnNoData.controller.js +5 -0
  571. package/packages/sap.fe.core/test/sap/fe/core/fpmExplorer/topics/buildingBlocks/microchart/microChartHideOnNoData/MicroChartHideOnNoData.view.xml +91 -0
  572. package/packages/sap.fe.core/test/sap/fe/core/fpmExplorer/topics/buildingBlocks/microchart/microChartHideOnNoData/localService/ChildEntity.json +686 -0
  573. package/packages/sap.fe.core/test/sap/fe/core/fpmExplorer/topics/buildingBlocks/microchart/microChartHideOnNoData/localService/CreditLimitDetails.json +154 -0
  574. package/packages/sap.fe.core/test/sap/fe/core/fpmExplorer/topics/buildingBlocks/microchart/microChartHideOnNoData/localService/RootEntity.json +34 -0
  575. package/packages/sap.fe.core/test/sap/fe/core/fpmExplorer/topics/buildingBlocks/microchart/microChartHideOnNoData/localService/service.cds +308 -0
  576. package/packages/sap.fe.core/test/sap/fe/core/fpmExplorer/topics/buildingBlocks/microchart/microChartHideOnNoData/manifest.json +69 -0
  577. package/packages/sap.fe.core/test/sap/fe/core/fpmExplorer/topics/buildingBlocks/microchart/microChartShowOnlyChart/Component.js +36 -0
  578. package/packages/sap.fe.core/test/sap/fe/core/fpmExplorer/topics/buildingBlocks/microchart/microChartShowOnlyChart/MicroChartShowOnlyChart.controller.js +5 -0
  579. package/packages/sap.fe.core/test/sap/fe/core/fpmExplorer/topics/buildingBlocks/microchart/microChartShowOnlyChart/MicroChartShowOnlyChart.view.xml +93 -0
  580. package/packages/sap.fe.core/test/sap/fe/core/fpmExplorer/topics/buildingBlocks/microchart/microChartShowOnlyChart/localService/ChildEntity.json +686 -0
  581. package/packages/sap.fe.core/test/sap/fe/core/fpmExplorer/topics/buildingBlocks/microchart/microChartShowOnlyChart/localService/CreditLimitDetails.json +154 -0
  582. package/packages/sap.fe.core/test/sap/fe/core/fpmExplorer/topics/buildingBlocks/microchart/microChartShowOnlyChart/localService/RootEntity.json +34 -0
  583. package/packages/sap.fe.core/test/sap/fe/core/fpmExplorer/topics/buildingBlocks/microchart/microChartShowOnlyChart/localService/service.cds +308 -0
  584. package/packages/sap.fe.core/test/sap/fe/core/fpmExplorer/topics/buildingBlocks/microchart/microChartShowOnlyChart/manifest.json +69 -0
  585. package/packages/sap.fe.core/test/sap/fe/core/fpmExplorer/topics/buildingBlocks/paginator/paginatorDefault/Component.js +36 -0
  586. package/packages/sap.fe.core/test/sap/fe/core/fpmExplorer/topics/buildingBlocks/paginator/paginatorDefault/PaginatorDefault.controller.js +27 -0
  587. package/packages/sap.fe.core/test/sap/fe/core/fpmExplorer/topics/buildingBlocks/paginator/paginatorDefault/PaginatorDefault.view.xml +45 -0
  588. package/packages/sap.fe.core/test/sap/fe/core/fpmExplorer/topics/buildingBlocks/paginator/paginatorDefault/localService/RootEntity.json +102 -0
  589. package/packages/sap.fe.core/test/sap/fe/core/fpmExplorer/topics/buildingBlocks/paginator/paginatorDefault/localService/ValueHelpEntity.js +11 -0
  590. package/packages/sap.fe.core/test/sap/fe/core/fpmExplorer/topics/buildingBlocks/paginator/paginatorDefault/localService/service.cds +90 -0
  591. package/packages/sap.fe.core/test/sap/fe/core/fpmExplorer/topics/buildingBlocks/paginator/paginatorDefault/manifest.json +79 -0
  592. package/packages/sap.fe.core/test/sap/fe/core/fpmExplorer/topics/buildingBlocks/paginatorDefault.html +37 -0
  593. package/packages/sap.fe.core/test/sap/fe/core/fpmExplorer/topics/buildingBlocks/share/Component.js +34 -0
  594. package/packages/sap.fe.core/test/sap/fe/core/fpmExplorer/topics/buildingBlocks/share/Share.controller.js +5 -0
  595. package/packages/sap.fe.core/test/sap/fe/core/fpmExplorer/topics/buildingBlocks/share/Share.view.xml +23 -0
  596. package/packages/sap.fe.core/test/sap/fe/core/fpmExplorer/topics/buildingBlocks/share/localService/RootEntity.json +5 -0
  597. package/packages/sap.fe.core/test/sap/fe/core/fpmExplorer/topics/buildingBlocks/share/localService/Share.cds +11 -0
  598. package/packages/sap.fe.core/test/sap/fe/core/fpmExplorer/topics/buildingBlocks/share/manifest.json +68 -0
  599. package/packages/sap.fe.core/test/sap/fe/core/fpmExplorer/topics/buildingBlocks/shareDefault.html +37 -0
  600. package/packages/sap.fe.core/test/sap/fe/core/fpmExplorer/topics/buildingBlocks/table/tableCustoms/Component.js +40 -0
  601. package/packages/sap.fe.core/test/sap/fe/core/fpmExplorer/topics/buildingBlocks/table/tableCustoms/Page.controller.js +32 -0
  602. package/packages/sap.fe.core/test/sap/fe/core/fpmExplorer/topics/buildingBlocks/table/tableCustoms/Page.view.xml +32 -0
  603. package/packages/sap.fe.core/test/sap/fe/core/fpmExplorer/topics/buildingBlocks/table/tableCustoms/localService/RootEntity.json +82 -0
  604. package/packages/sap.fe.core/test/sap/fe/core/fpmExplorer/topics/buildingBlocks/table/tableCustoms/localService/service.cds +82 -0
  605. package/packages/sap.fe.core/test/sap/fe/core/fpmExplorer/topics/buildingBlocks/table/tableCustoms/manifest.json +78 -0
  606. package/packages/sap.fe.core/test/sap/fe/core/fpmExplorer/topics/buildingBlocks/table/tableDefault/Component.js +36 -0
  607. package/packages/sap.fe.core/test/sap/fe/core/fpmExplorer/topics/buildingBlocks/table/tableDefault/TableDefault.controller.js +5 -0
  608. package/packages/sap.fe.core/test/sap/fe/core/fpmExplorer/topics/buildingBlocks/table/tableDefault/TableDefault.view.xml +10 -0
  609. package/packages/sap.fe.core/test/sap/fe/core/fpmExplorer/topics/buildingBlocks/table/tableDefault/localService/RootEntity.json +102 -0
  610. package/packages/sap.fe.core/test/sap/fe/core/fpmExplorer/topics/buildingBlocks/table/tableDefault/localService/ValueHelpEntity.js +11 -0
  611. package/packages/sap.fe.core/test/sap/fe/core/fpmExplorer/topics/buildingBlocks/table/tableDefault/localService/service.cds +90 -0
  612. package/packages/sap.fe.core/test/sap/fe/core/fpmExplorer/topics/buildingBlocks/table/tableDefault/manifest.json +79 -0
  613. package/packages/sap.fe.core/test/sap/fe/core/fpmExplorer/topics/buildingBlocks/table/tableEdit/Component.js +35 -0
  614. package/packages/sap.fe.core/test/sap/fe/core/fpmExplorer/topics/buildingBlocks/table/tableEdit/TableEdit.controller.js +19 -0
  615. package/packages/sap.fe.core/test/sap/fe/core/fpmExplorer/topics/buildingBlocks/table/tableEdit/TableEdit.view.xml +31 -0
  616. package/packages/sap.fe.core/test/sap/fe/core/fpmExplorer/topics/buildingBlocks/table/tableEdit/localService/RootEntity.json +78 -0
  617. package/packages/sap.fe.core/test/sap/fe/core/fpmExplorer/topics/buildingBlocks/table/tableEdit/localService/ValueHelpCurrencyEntity.json +5 -0
  618. package/packages/sap.fe.core/test/sap/fe/core/fpmExplorer/topics/buildingBlocks/table/tableEdit/localService/ValueHelpEntity.js +11 -0
  619. package/packages/sap.fe.core/test/sap/fe/core/fpmExplorer/topics/buildingBlocks/table/tableEdit/localService/service.cds +119 -0
  620. package/packages/sap.fe.core/test/sap/fe/core/fpmExplorer/topics/buildingBlocks/table/tableEdit/manifest.json +82 -0
  621. package/packages/sap.fe.core/test/sap/fe/core/fpmExplorer/topics/buildingBlocks/tableCustoms.html +37 -0
  622. package/packages/sap.fe.core/test/sap/fe/core/fpmExplorer/topics/buildingBlocks/tableDefault.html +37 -0
  623. package/packages/sap.fe.core/test/sap/fe/core/fpmExplorer/topics/buildingBlocks/tableEdit.html +37 -0
  624. package/packages/sap.fe.core/test/sap/fe/core/fpmExplorer/topics/controllerExtensions/basicExtensibility/Component.js +35 -0
  625. package/packages/sap.fe.core/test/sap/fe/core/fpmExplorer/topics/controllerExtensions/basicExtensibility/OPExtend.controller.js +41 -0
  626. package/packages/sap.fe.core/test/sap/fe/core/fpmExplorer/topics/controllerExtensions/basicExtensibility/localService/RootEntity.json +12 -0
  627. package/packages/sap.fe.core/test/sap/fe/core/fpmExplorer/topics/controllerExtensions/basicExtensibility/localService/service.cds +52 -0
  628. package/packages/sap.fe.core/test/sap/fe/core/fpmExplorer/topics/controllerExtensions/basicExtensibility/manifest.json +76 -0
  629. package/packages/sap.fe.core/test/sap/fe/core/fpmExplorer/topics/controllerExtensions/basicExtensibility.html +37 -0
  630. package/packages/sap.fe.core/test/sap/fe/core/fpmExplorer/topics/controllerExtensions/controllerExtensionsOverview.html +24 -0
  631. package/packages/sap.fe.core/test/sap/fe/core/fpmExplorer/topics/controllerExtensions/controllerExtensionsOverview.md +18 -0
  632. package/packages/sap.fe.core/test/sap/fe/core/fpmExplorer/topics/controllerExtensions/intentBasedNavigation/Component.js +35 -0
  633. package/packages/sap.fe.core/test/sap/fe/core/fpmExplorer/topics/controllerExtensions/intentBasedNavigation/IntentBasedNavigation.controller.js +21 -0
  634. package/packages/sap.fe.core/test/sap/fe/core/fpmExplorer/topics/controllerExtensions/intentBasedNavigation/IntentBasedNavigation.view.xml +23 -0
  635. package/packages/sap.fe.core/test/sap/fe/core/fpmExplorer/topics/controllerExtensions/intentBasedNavigation/localService/RootEntity.json +12 -0
  636. package/packages/sap.fe.core/test/sap/fe/core/fpmExplorer/topics/controllerExtensions/intentBasedNavigation/localService/service.cds +40 -0
  637. package/packages/sap.fe.core/test/sap/fe/core/fpmExplorer/topics/controllerExtensions/intentBasedNavigation/manifest.json +76 -0
  638. package/packages/sap.fe.core/test/sap/fe/core/fpmExplorer/topics/controllerExtensions/intentBasedNavigation.html +70 -0
  639. package/packages/sap.fe.core/test/sap/fe/core/fpmExplorer/topics/controllerExtensions/routingExtensibility/Component.js +35 -0
  640. package/packages/sap.fe.core/test/sap/fe/core/fpmExplorer/topics/controllerExtensions/routingExtensibility/extendLR.controller.js +63 -0
  641. package/packages/sap.fe.core/test/sap/fe/core/fpmExplorer/topics/controllerExtensions/routingExtensibility/extendOP.controller.js +13 -0
  642. package/packages/sap.fe.core/test/sap/fe/core/fpmExplorer/topics/controllerExtensions/routingExtensibility/localService/RootEntity.json +18 -0
  643. package/packages/sap.fe.core/test/sap/fe/core/fpmExplorer/topics/controllerExtensions/routingExtensibility/localService/service.cds +64 -0
  644. package/packages/sap.fe.core/test/sap/fe/core/fpmExplorer/topics/controllerExtensions/routingExtensibility/manifest.json +103 -0
  645. package/packages/sap.fe.core/test/sap/fe/core/fpmExplorer/topics/controllerExtensions/routingExtensibility.html +70 -0
  646. package/packages/sap.fe.core/test/sap/fe/core/fpmExplorer/topics/controllerExtensions/share/Component.js +35 -0
  647. package/packages/sap.fe.core/test/sap/fe/core/fpmExplorer/topics/controllerExtensions/share/Share.controller.js +11 -0
  648. package/packages/sap.fe.core/test/sap/fe/core/fpmExplorer/topics/controllerExtensions/share/Share.view.xml +21 -0
  649. package/packages/sap.fe.core/test/sap/fe/core/fpmExplorer/topics/controllerExtensions/share/ShareExtend.js +15 -0
  650. package/packages/sap.fe.core/test/sap/fe/core/fpmExplorer/topics/controllerExtensions/share/localService/RootEntity.json +5 -0
  651. package/packages/sap.fe.core/test/sap/fe/core/fpmExplorer/topics/controllerExtensions/share/localService/service.cds +11 -0
  652. package/packages/sap.fe.core/test/sap/fe/core/fpmExplorer/topics/controllerExtensions/share/manifest.json +68 -0
  653. package/packages/sap.fe.core/test/sap/fe/core/fpmExplorer/topics/controllerExtensions/shareExtensibility.html +37 -0
  654. package/packages/sap.fe.core/test/sap/fe/core/fpmExplorer/topics/controllerExtensions/viewState/Component.js +35 -0
  655. package/packages/sap.fe.core/test/sap/fe/core/fpmExplorer/topics/controllerExtensions/viewState/CustomSection.fragment.xml +15 -0
  656. package/packages/sap.fe.core/test/sap/fe/core/fpmExplorer/topics/controllerExtensions/viewState/OPExtend.controller.js +57 -0
  657. package/packages/sap.fe.core/test/sap/fe/core/fpmExplorer/topics/controllerExtensions/viewState/localService/RootEntity.json +12 -0
  658. package/packages/sap.fe.core/test/sap/fe/core/fpmExplorer/topics/controllerExtensions/viewState/localService/service.cds +40 -0
  659. package/packages/sap.fe.core/test/sap/fe/core/fpmExplorer/topics/controllerExtensions/viewState/manifest.json +86 -0
  660. package/packages/sap.fe.core/test/sap/fe/core/fpmExplorer/topics/controllerExtensions/viewState.html +70 -0
  661. package/packages/sap.fe.core/test/sap/fe/core/fpmExplorer/topics/customElements/customAction/customActionContent/Component.js +35 -0
  662. package/packages/sap.fe.core/test/sap/fe/core/fpmExplorer/topics/customElements/customAction/customActionContent/CustomAction.js +41 -0
  663. package/packages/sap.fe.core/test/sap/fe/core/fpmExplorer/topics/customElements/customAction/customActionContent/extendOP.controller.js +9 -0
  664. package/packages/sap.fe.core/test/sap/fe/core/fpmExplorer/topics/customElements/customAction/customActionContent/localService/ChildEntity.json +22 -0
  665. package/packages/sap.fe.core/test/sap/fe/core/fpmExplorer/topics/customElements/customAction/customActionContent/localService/RootEntity.json +10 -0
  666. package/packages/sap.fe.core/test/sap/fe/core/fpmExplorer/topics/customElements/customAction/customActionContent/localService/service.cds +73 -0
  667. package/packages/sap.fe.core/test/sap/fe/core/fpmExplorer/topics/customElements/customAction/customActionContent/manifest.json +133 -0
  668. package/packages/sap.fe.core/test/sap/fe/core/fpmExplorer/topics/customElements/customActionContent.html +36 -0
  669. package/packages/sap.fe.core/test/sap/fe/core/fpmExplorer/topics/customElements/customColumn/customColumnContent/Component.js +35 -0
  670. package/packages/sap.fe.core/test/sap/fe/core/fpmExplorer/topics/customElements/customColumn/customColumnContent/CustomColumn.js +25 -0
  671. package/packages/sap.fe.core/test/sap/fe/core/fpmExplorer/topics/customElements/customColumn/customColumnContent/CustomColumnAdaptation.fragment.xml +11 -0
  672. package/packages/sap.fe.core/test/sap/fe/core/fpmExplorer/topics/customElements/customColumn/customColumnContent/CustomColumnButton.fragment.xml +5 -0
  673. package/packages/sap.fe.core/test/sap/fe/core/fpmExplorer/topics/customElements/customColumn/customColumnContent/localService/ChildEntity.json +26 -0
  674. package/packages/sap.fe.core/test/sap/fe/core/fpmExplorer/topics/customElements/customColumn/customColumnContent/localService/RootEntity.json +9 -0
  675. package/packages/sap.fe.core/test/sap/fe/core/fpmExplorer/topics/customElements/customColumn/customColumnContent/localService/service.cds +55 -0
  676. package/packages/sap.fe.core/test/sap/fe/core/fpmExplorer/topics/customElements/customColumn/customColumnContent/manifest.json +98 -0
  677. package/packages/sap.fe.core/test/sap/fe/core/fpmExplorer/topics/customElements/customColumnContent.html +36 -0
  678. package/packages/sap.fe.core/test/sap/fe/core/fpmExplorer/topics/customElements/customElementsOverview.html +24 -0
  679. package/packages/sap.fe.core/test/sap/fe/core/fpmExplorer/topics/customElements/customElementsOverview.md +21 -0
  680. package/packages/sap.fe.core/test/sap/fe/core/fpmExplorer/topics/customElements/customFilter/customFilterContent/Component.js +35 -0
  681. package/packages/sap.fe.core/test/sap/fe/core/fpmExplorer/topics/customElements/customFilter/customFilterContent/CustomFilter.js +28 -0
  682. package/packages/sap.fe.core/test/sap/fe/core/fpmExplorer/topics/customElements/customFilter/customFilterContent/CustomRatingFilter.fragment.xml +8 -0
  683. package/packages/sap.fe.core/test/sap/fe/core/fpmExplorer/topics/customElements/customFilter/customFilterContent/CustomRatingFilterOperator.fragment.xml +17 -0
  684. package/packages/sap.fe.core/test/sap/fe/core/fpmExplorer/topics/customElements/customFilter/customFilterContent/localService/RootEntity.json +37 -0
  685. package/packages/sap.fe.core/test/sap/fe/core/fpmExplorer/topics/customElements/customFilter/customFilterContent/localService/service.cds +75 -0
  686. package/packages/sap.fe.core/test/sap/fe/core/fpmExplorer/topics/customElements/customFilter/customFilterContent/manifest.json +87 -0
  687. package/packages/sap.fe.core/test/sap/fe/core/fpmExplorer/topics/customElements/customFilterContent.html +36 -0
  688. package/packages/sap.fe.core/test/sap/fe/core/fpmExplorer/topics/customElements/customHeaderFacet/customHeaderFacetContent/Component.js +35 -0
  689. package/packages/sap.fe.core/test/sap/fe/core/fpmExplorer/topics/customElements/customHeaderFacet/customHeaderFacetContent/CustomHeaderFacetColumnChart.fragment.xml +19 -0
  690. package/packages/sap.fe.core/test/sap/fe/core/fpmExplorer/topics/customElements/customHeaderFacet/customHeaderFacetContent/CustomHeaderFacetDataPoint.fragment.xml +11 -0
  691. package/packages/sap.fe.core/test/sap/fe/core/fpmExplorer/topics/customElements/customHeaderFacet/customHeaderFacetContent/CustomHeaderFacetMicroChartAndFormElement.fragment.xml +42 -0
  692. package/packages/sap.fe.core/test/sap/fe/core/fpmExplorer/topics/customElements/customHeaderFacet/customHeaderFacetContent/localService/RootEntity.json +12 -0
  693. package/packages/sap.fe.core/test/sap/fe/core/fpmExplorer/topics/customElements/customHeaderFacet/customHeaderFacetContent/localService/service.cds +54 -0
  694. package/packages/sap.fe.core/test/sap/fe/core/fpmExplorer/topics/customElements/customHeaderFacet/customHeaderFacetContent/manifest.json +127 -0
  695. package/packages/sap.fe.core/test/sap/fe/core/fpmExplorer/topics/customElements/customHeaderFacetContent.html +36 -0
  696. package/packages/sap.fe.core/test/sap/fe/core/fpmExplorer/topics/customElements/customPage/customPageContent/Component.js +35 -0
  697. package/packages/sap.fe.core/test/sap/fe/core/fpmExplorer/topics/customElements/customPage/customPageContent/CustomDetailPage.controller.js +12 -0
  698. package/packages/sap.fe.core/test/sap/fe/core/fpmExplorer/topics/customElements/customPage/customPageContent/CustomDetailPage.view.xml +64 -0
  699. package/packages/sap.fe.core/test/sap/fe/core/fpmExplorer/topics/customElements/customPage/customPageContent/CustomPage.controller.js +10 -0
  700. package/packages/sap.fe.core/test/sap/fe/core/fpmExplorer/topics/customElements/customPage/customPageContent/CustomPage.view.xml +39 -0
  701. package/packages/sap.fe.core/test/sap/fe/core/fpmExplorer/topics/customElements/customPage/customPageContent/localService/ChildEntity.json +23 -0
  702. package/packages/sap.fe.core/test/sap/fe/core/fpmExplorer/topics/customElements/customPage/customPageContent/localService/RootEntity.json +41 -0
  703. package/packages/sap.fe.core/test/sap/fe/core/fpmExplorer/topics/customElements/customPage/customPageContent/localService/ValueHelpCurrencyEntity.json +5 -0
  704. package/packages/sap.fe.core/test/sap/fe/core/fpmExplorer/topics/customElements/customPage/customPageContent/localService/ValueHelpEntity.js +11 -0
  705. package/packages/sap.fe.core/test/sap/fe/core/fpmExplorer/topics/customElements/customPage/customPageContent/localService/resources/275081.jpg +0 -0
  706. package/packages/sap.fe.core/test/sap/fe/core/fpmExplorer/topics/customElements/customPage/customPageContent/localService/resources/275472.jpg +0 -0
  707. package/packages/sap.fe.core/test/sap/fe/core/fpmExplorer/topics/customElements/customPage/customPageContent/localService/service.cds +144 -0
  708. package/packages/sap.fe.core/test/sap/fe/core/fpmExplorer/topics/customElements/customPage/customPageContent/manifest.json +119 -0
  709. package/packages/sap.fe.core/test/sap/fe/core/fpmExplorer/topics/customElements/customPageContent.html +70 -0
  710. package/packages/sap.fe.core/test/sap/fe/core/fpmExplorer/topics/customElements/customSection/customSectionContent/Component.js +36 -0
  711. package/packages/sap.fe.core/test/sap/fe/core/fpmExplorer/topics/customElements/customSection/customSectionContent/CustomSection.fragment.xml +13 -0
  712. package/packages/sap.fe.core/test/sap/fe/core/fpmExplorer/topics/customElements/customSection/customSectionContent/CustomSectionFormElementAndTable.fragment.xml +36 -0
  713. package/packages/sap.fe.core/test/sap/fe/core/fpmExplorer/topics/customElements/customSection/customSectionContent/CustomSectionNavigation.fragment.xml +44 -0
  714. package/packages/sap.fe.core/test/sap/fe/core/fpmExplorer/topics/customElements/customSection/customSectionContent/CustomSectionNavigation.js +11 -0
  715. package/packages/sap.fe.core/test/sap/fe/core/fpmExplorer/topics/customElements/customSection/customSectionContent/extendOP.controller.js +13 -0
  716. package/packages/sap.fe.core/test/sap/fe/core/fpmExplorer/topics/customElements/customSection/customSectionContent/localService/ChildEntity.json +82 -0
  717. package/packages/sap.fe.core/test/sap/fe/core/fpmExplorer/topics/customElements/customSection/customSectionContent/localService/RootEntity.json +9 -0
  718. package/packages/sap.fe.core/test/sap/fe/core/fpmExplorer/topics/customElements/customSection/customSectionContent/localService/ValueHelpCurrencyEntity.json +5 -0
  719. package/packages/sap.fe.core/test/sap/fe/core/fpmExplorer/topics/customElements/customSection/customSectionContent/localService/ValueHelpEntity.js +11 -0
  720. package/packages/sap.fe.core/test/sap/fe/core/fpmExplorer/topics/customElements/customSection/customSectionContent/localService/service.cds +177 -0
  721. package/packages/sap.fe.core/test/sap/fe/core/fpmExplorer/topics/customElements/customSection/customSectionContent/manifest.json +129 -0
  722. package/packages/sap.fe.core/test/sap/fe/core/fpmExplorer/topics/customElements/customSectionContent.html +36 -0
  723. package/packages/sap.fe.core/test/sap/fe/core/fpmExplorer/topics/customElements/customViewInLR/customViewInLRContent/Component.js +35 -0
  724. package/packages/sap.fe.core/test/sap/fe/core/fpmExplorer/topics/customElements/customViewInLR/customViewInLRContent/CustomButton.js +12 -0
  725. package/packages/sap.fe.core/test/sap/fe/core/fpmExplorer/topics/customElements/customViewInLR/customViewInLRContent/CustomViewWithButton.fragment.xml +12 -0
  726. package/packages/sap.fe.core/test/sap/fe/core/fpmExplorer/topics/customElements/customViewInLR/customViewInLRContent/CustomViewWithTable.fragment.xml +46 -0
  727. package/packages/sap.fe.core/test/sap/fe/core/fpmExplorer/topics/customElements/customViewInLR/customViewInLRContent/LRExtend.controller.js +31 -0
  728. package/packages/sap.fe.core/test/sap/fe/core/fpmExplorer/topics/customElements/customViewInLR/customViewInLRContent/localService/RootEntity.json +37 -0
  729. package/packages/sap.fe.core/test/sap/fe/core/fpmExplorer/topics/customElements/customViewInLR/customViewInLRContent/localService/service.cds +70 -0
  730. package/packages/sap.fe.core/test/sap/fe/core/fpmExplorer/topics/customElements/customViewInLR/customViewInLRContent/manifest.json +100 -0
  731. package/packages/sap.fe.core/test/sap/fe/core/fpmExplorer/topics/customElements/customViewInLRContent.html +36 -0
  732. package/packages/sap.fe.core/test/sap/fe/core/fpmExplorer/topics/customElements/i18n/i18n.properties +61 -0
  733. package/packages/sap.fe.core/test/sap/fe/core/fpmExplorer/topics/overview/introduction.html +24 -0
  734. package/packages/sap.fe.core/test/sap/fe/core/fpmExplorer/topics/overview/introduction.md +6 -0
  735. package/packages/sap.fe.core/test/sap/fe/core/fpmExplorer/util/FileUtils.js +124 -0
  736. package/packages/sap.fe.core/test/sap/fe/core/fpmExplorer/view/App.view.xml +60 -0
  737. package/packages/sap.fe.core/test/sap/fe/core/fpmExplorer/view/ControllerExtensions.view.xml +97 -0
  738. package/packages/sap.fe.core/test/sap/fe/core/fpmExplorer/view/CustomElements.view.xml +97 -0
  739. package/packages/sap.fe.core/test/sap/fe/core/fpmExplorer/view/MacrosPage.view.xml +97 -0
  740. package/packages/sap.fe.core/test/sap/fe/core/fpmExplorer/view/Overview.view.xml +13 -0
  741. package/packages/sap.fe.core/test/sap/fe/core/jest/BindingExpression-AnnotationExpression.spec.js +140 -0
  742. package/packages/sap.fe.core/test/sap/fe/core/jest/BindingExpression-AnnotationExpression.spec.ts +142 -0
  743. package/packages/sap.fe.core/test/sap/fe/core/jest/BindingExpression.spec.js +504 -0
  744. package/packages/sap.fe.core/test/sap/fe/core/jest/BindingExpression.spec.ts +751 -0
  745. package/packages/sap.fe.core/test/sap/fe/core/jest/TemplateConverter.spec.js +74 -0
  746. package/packages/sap.fe.core/test/sap/fe/core/jest/TemplateConverter.spec.ts +75 -0
  747. package/packages/sap.fe.core/test/sap/fe/core/jest/__snapshots__/BindingExpression-AnnotationExpression.spec.ts.snap +7 -0
  748. package/packages/sap.fe.core/test/sap/fe/core/jest/__snapshots__/TemplateConverter.spec.ts.snap +17450 -0
  749. package/packages/sap.fe.core/test/sap/fe/core/jest/controllerextensions/KPIManagement.spec.js +582 -0
  750. package/packages/sap.fe.core/test/sap/fe/core/jest/controllerextensions/KPIManagement.spec.ts +515 -0
  751. package/packages/sap.fe.core/test/sap/fe/core/jest/controllerextensions/SideEffects.spec.js +636 -0
  752. package/packages/sap.fe.core/test/sap/fe/core/jest/controllerextensions/SideEffects.spec.ts +547 -0
  753. package/packages/sap.fe.core/test/sap/fe/core/jest/converters/ConverterContext.spec.js +60 -0
  754. package/packages/sap.fe.core/test/sap/fe/core/jest/converters/ConverterContext.spec.ts +57 -0
  755. package/packages/sap.fe.core/test/sap/fe/core/jest/converters/HeaderFacet.spec.js +436 -0
  756. package/packages/sap.fe.core/test/sap/fe/core/jest/converters/HeaderFacet.spec.ts +469 -0
  757. package/packages/sap.fe.core/test/sap/fe/core/jest/converters/KPITag.spec.js +346 -0
  758. package/packages/sap.fe.core/test/sap/fe/core/jest/converters/KPITag.spec.ts +357 -0
  759. package/packages/sap.fe.core/test/sap/fe/core/jest/converters/ListReportConverter.spec.js +255 -0
  760. package/packages/sap.fe.core/test/sap/fe/core/jest/converters/ListReportConverter.spec.ts +254 -0
  761. package/packages/sap.fe.core/test/sap/fe/core/jest/converters/MetaModelConverter.spec.js +67 -0
  762. package/packages/sap.fe.core/test/sap/fe/core/jest/converters/MetaModelConverter.spec.ts +43 -0
  763. package/packages/sap.fe.core/test/sap/fe/core/jest/converters/ObjectPageConverter.spec.js +577 -0
  764. package/packages/sap.fe.core/test/sap/fe/core/jest/converters/ObjectPageConverter.spec.ts +593 -0
  765. package/packages/sap.fe.core/test/sap/fe/core/jest/converters/Table.spec.js +1206 -0
  766. package/packages/sap.fe.core/test/sap/fe/core/jest/converters/Table.spec.ts +1361 -0
  767. package/packages/sap.fe.core/test/sap/fe/core/jest/converters/__snapshots__/Table.spec.ts.snap +21 -0
  768. package/packages/sap.fe.core/test/sap/fe/core/jest/data/AnalyticalService.cds +16 -0
  769. package/packages/sap.fe.core/test/sap/fe/core/jest/data/BindingExpression-AnnotationExpression.xml +248 -0
  770. package/packages/sap.fe.core/test/sap/fe/core/jest/data/ConverterContext.cds +34 -0
  771. package/packages/sap.fe.core/test/sap/fe/core/jest/data/HeaderFacets.cds +199 -0
  772. package/packages/sap.fe.core/test/sap/fe/core/jest/data/KPI.cds +320 -0
  773. package/packages/sap.fe.core/test/sap/fe/core/jest/data/KPINone.cds +78 -0
  774. package/packages/sap.fe.core/test/sap/fe/core/jest/data/ListReportConverter.cds +164 -0
  775. package/packages/sap.fe.core/test/sap/fe/core/jest/data/MetaModelConverter.cds +43 -0
  776. package/packages/sap.fe.core/test/sap/fe/core/jest/data/MetaModelConverterBoundAction.cds +31 -0
  777. package/packages/sap.fe.core/test/sap/fe/core/jest/data/ObjectPageConverter.cds +161 -0
  778. package/packages/sap.fe.core/test/sap/fe/core/jest/data/PropertyHelper.cds +14 -0
  779. package/packages/sap.fe.core/test/sap/fe/core/jest/data/SideEffects.cds +285 -0
  780. package/packages/sap.fe.core/test/sap/fe/core/jest/data/Table.cds +98 -0
  781. package/packages/sap.fe.core/test/sap/fe/core/jest/data/TableGetSelectionMode.cds +242 -0
  782. package/packages/sap.fe.core/test/sap/fe/core/jest/data/TableNewActionNoOperationAvailable.cds +22 -0
  783. package/packages/sap.fe.core/test/sap/fe/core/jest/data/TableNewActionOperationAvailableFalse.cds +25 -0
  784. package/packages/sap.fe.core/test/sap/fe/core/jest/data/TableNewActionOperationAvailableTrue.cds +24 -0
  785. package/packages/sap.fe.core/test/sap/fe/core/jest/data/salesOrderMetadata.xml +4824 -0
  786. package/packages/sap.fe.core/test/sap/fe/core/jest/formatters/ValueFormatters.spec.js +54 -0
  787. package/packages/sap.fe.core/test/sap/fe/core/jest/formatters/ValueFormatters.spec.ts +70 -0
  788. package/packages/sap.fe.core/test/sap/fe/core/jest/services/SideEffectsService.spec.js +607 -0
  789. package/packages/sap.fe.core/test/sap/fe/core/jest/services/SideEffectsService.spec.ts +540 -0
  790. package/packages/sap.fe.core/test/sap/fe/core/jest/templating/PropertyHelper.spec.js +62 -0
  791. package/packages/sap.fe.core/test/sap/fe/core/jest/templating/PropertyHelper.spec.ts +45 -0
  792. package/packages/sap.fe.core/test/sap/fe/core/jest/type/Email.spec.js +34 -0
  793. package/packages/sap.fe.core/test/sap/fe/core/jest/type/Email.spec.ts +21 -0
  794. package/packages/sap.fe.core/test/sap/fe/core/qunit/TemplatingExpressions.qunit.js +1328 -0
  795. package/packages/sap.fe.core/test/sap/fe/core/qunit/apps/generalTests.js +18 -0
  796. package/packages/sap.fe.core/test/sap/fe/core/qunit/apps/generalTests.json +233 -0
  797. package/packages/sap.fe.core/test/sap/fe/core/qunit/apps/index.js +33 -0
  798. package/packages/sap.fe.core/test/sap/fe/core/qunit/common/testHelper.js +81 -0
  799. package/packages/sap.fe.core/test/sap/fe/core/qunit/common/utility.js +28 -0
  800. package/packages/sap.fe.core/test/sap/fe/core/qunit/helpers/ExcelFormatHelper.qunit.js +19 -0
  801. package/packages/sap.fe.core/test/sap/fe/core/qunit/helpers/SemanticDateOperators.qunit.js +253 -0
  802. package/packages/sap.fe.core/test/sap/fe/core/qunit/helpers/SemanticKeyHelper.qunit.js +211 -0
  803. package/packages/sap.fe.core/test/sap/fe/core/qunit/helpers/StableIdHelper.qunit.js +301 -0
  804. package/packages/sap.fe.core/test/sap/fe/core/qunit/services/CacheHandlerTest.qunit.js +924 -0
  805. package/packages/sap.fe.core/test/sap/fe/core/qunit/test/iteloMetadata.js +2752 -0
  806. package/packages/sap.fe.core/test/sap/fe/core/qunit/test/musicDraftMetadata.js +2301 -0
  807. package/packages/sap.fe.core/test/sap/fe/core/qunit/test/simpleMetadata.js +1186 -0
  808. package/packages/sap.fe.core/test/sap/fe/core/qunit/test/techServiceMetadata.js +3993 -0
  809. package/packages/sap.fe.core/test/sap/fe/core/qunit/testsuite.qunit.html +14 -0
  810. package/packages/sap.fe.core/test/sap/fe/core/qunit/testsuite.qunit.js +33 -0
  811. package/packages/sap.fe.core/test/sap/fe/core/relnotes/changes-1.91.json +96 -0
  812. package/packages/sap.fe.core/test/sap/fe/core/relnotes/changes-1.94.json +40 -0
  813. package/packages/sap.fe.macros/src/sap/fe/macros/.library +54 -0
  814. package/packages/sap.fe.macros/src/sap/fe/macros/.theming +6 -0
  815. package/packages/sap.fe.macros/src/sap/fe/macros/Chart.fragment.xml +171 -0
  816. package/packages/sap.fe.macros/src/sap/fe/macros/Chart.metadata-dbg.js +200 -0
  817. package/packages/sap.fe.macros/src/sap/fe/macros/Chart.metadata.js +6 -0
  818. package/packages/sap.fe.macros/src/sap/fe/macros/ChartDelegate-dbg.js +530 -0
  819. package/packages/sap.fe.macros/src/sap/fe/macros/ChartDelegate.js +6 -0
  820. package/packages/sap.fe.macros/src/sap/fe/macros/CommonHelper-dbg.js +1256 -0
  821. package/packages/sap.fe.macros/src/sap/fe/macros/CommonHelper.js +6 -0
  822. package/packages/sap.fe.macros/src/sap/fe/macros/Contact-dbg.designtime.js +93 -0
  823. package/packages/sap.fe.macros/src/sap/fe/macros/Contact.designtime.js +6 -0
  824. package/packages/sap.fe.macros/src/sap/fe/macros/Contact.fragment.xml +38 -0
  825. package/packages/sap.fe.macros/src/sap/fe/macros/Contact.metadata-dbg.js +91 -0
  826. package/packages/sap.fe.macros/src/sap/fe/macros/Contact.metadata.js +6 -0
  827. package/packages/sap.fe.macros/src/sap/fe/macros/ContactHelper-dbg.js +96 -0
  828. package/packages/sap.fe.macros/src/sap/fe/macros/ContactHelper.js +6 -0
  829. package/packages/sap.fe.macros/src/sap/fe/macros/DelegateUtil-dbg.js +286 -0
  830. package/packages/sap.fe.macros/src/sap/fe/macros/DelegateUtil.js +6 -0
  831. package/packages/sap.fe.macros/src/sap/fe/macros/DraftIndicator.fragment.xml +37 -0
  832. package/packages/sap.fe.macros/src/sap/fe/macros/DraftIndicator.metadata-dbg.js +91 -0
  833. package/packages/sap.fe.macros/src/sap/fe/macros/DraftIndicator.metadata.js +6 -0
  834. package/packages/sap.fe.macros/src/sap/fe/macros/DraftIndicatorRuntime-dbg.js +138 -0
  835. package/packages/sap.fe.macros/src/sap/fe/macros/DraftIndicatorRuntime.js +6 -0
  836. package/packages/sap.fe.macros/src/sap/fe/macros/Field.fragment.xml +37 -0
  837. package/packages/sap.fe.macros/src/sap/fe/macros/Field.metadata-dbg.js +144 -0
  838. package/packages/sap.fe.macros/src/sap/fe/macros/Field.metadata.js +5 -0
  839. package/packages/sap.fe.macros/src/sap/fe/macros/Field.metadata.ts +136 -0
  840. package/packages/sap.fe.macros/src/sap/fe/macros/FieldAPI-dbg.js +234 -0
  841. package/packages/sap.fe.macros/src/sap/fe/macros/FieldAPI.js +5 -0
  842. package/packages/sap.fe.macros/src/sap/fe/macros/FieldAPI.ts +177 -0
  843. package/packages/sap.fe.macros/src/sap/fe/macros/FieldValueHelpDelegate-dbg.js +55 -0
  844. package/packages/sap.fe.macros/src/sap/fe/macros/FieldValueHelpDelegate.js +6 -0
  845. package/packages/sap.fe.macros/src/sap/fe/macros/FilterBar-dbg.designtime.js +83 -0
  846. package/packages/sap.fe.macros/src/sap/fe/macros/FilterBar.designtime.js +6 -0
  847. package/packages/sap.fe.macros/src/sap/fe/macros/FilterBar.fragment.xml +109 -0
  848. package/packages/sap.fe.macros/src/sap/fe/macros/FilterBar.metadata-dbg.js +243 -0
  849. package/packages/sap.fe.macros/src/sap/fe/macros/FilterBar.metadata.js +6 -0
  850. package/packages/sap.fe.macros/src/sap/fe/macros/FilterBarAPI-dbg.js +130 -0
  851. package/packages/sap.fe.macros/src/sap/fe/macros/FilterBarAPI.js +5 -0
  852. package/packages/sap.fe.macros/src/sap/fe/macros/FilterBarAPI.ts +62 -0
  853. package/packages/sap.fe.macros/src/sap/fe/macros/FilterBarDelegate-dbg.js +568 -0
  854. package/packages/sap.fe.macros/src/sap/fe/macros/FilterBarDelegate.js +6 -0
  855. package/packages/sap.fe.macros/src/sap/fe/macros/FilterBarHelper-dbg.js +48 -0
  856. package/packages/sap.fe.macros/src/sap/fe/macros/FilterBarHelper.js +6 -0
  857. package/packages/sap.fe.macros/src/sap/fe/macros/FilterField-dbg.designtime.js +339 -0
  858. package/packages/sap.fe.macros/src/sap/fe/macros/FilterField.designtime.js +6 -0
  859. package/packages/sap.fe.macros/src/sap/fe/macros/FilterField.fragment.xml +57 -0
  860. package/packages/sap.fe.macros/src/sap/fe/macros/FilterField.metadata-dbg.js +130 -0
  861. package/packages/sap.fe.macros/src/sap/fe/macros/FilterField.metadata.js +6 -0
  862. package/packages/sap.fe.macros/src/sap/fe/macros/FlexibleColumnLayoutActions.fragment.xml +24 -0
  863. package/packages/sap.fe.macros/src/sap/fe/macros/FlexibleColumnLayoutActions.metadata-dbg.js +68 -0
  864. package/packages/sap.fe.macros/src/sap/fe/macros/FlexibleColumnLayoutActions.metadata.js +6 -0
  865. package/packages/sap.fe.macros/src/sap/fe/macros/Form-dbg.designtime.js +188 -0
  866. package/packages/sap.fe.macros/src/sap/fe/macros/Form.designtime.js +6 -0
  867. package/packages/sap.fe.macros/src/sap/fe/macros/Form.fragment.xml +94 -0
  868. package/packages/sap.fe.macros/src/sap/fe/macros/Form.metadata-dbg.js +209 -0
  869. package/packages/sap.fe.macros/src/sap/fe/macros/Form.metadata.js +6 -0
  870. package/packages/sap.fe.macros/src/sap/fe/macros/FormContainer-dbg.designtime.js +42 -0
  871. package/packages/sap.fe.macros/src/sap/fe/macros/FormContainer.designtime.js +6 -0
  872. package/packages/sap.fe.macros/src/sap/fe/macros/FormContainer.fragment.xml +196 -0
  873. package/packages/sap.fe.macros/src/sap/fe/macros/FormContainer.metadata-dbg.js +132 -0
  874. package/packages/sap.fe.macros/src/sap/fe/macros/FormContainer.metadata.js +6 -0
  875. package/packages/sap.fe.macros/src/sap/fe/macros/FormElement.fragment.xml +25 -0
  876. package/packages/sap.fe.macros/src/sap/fe/macros/FormElement.metadata-dbg.js +123 -0
  877. package/packages/sap.fe.macros/src/sap/fe/macros/FormElement.metadata.js +5 -0
  878. package/packages/sap.fe.macros/src/sap/fe/macros/FormElement.metadata.ts +113 -0
  879. package/packages/sap.fe.macros/src/sap/fe/macros/FormWrapper.fragment.xml +26 -0
  880. package/packages/sap.fe.macros/src/sap/fe/macros/KPITag.fragment.xml +33 -0
  881. package/packages/sap.fe.macros/src/sap/fe/macros/KPITag.metadata-dbg.js +103 -0
  882. package/packages/sap.fe.macros/src/sap/fe/macros/KPITag.metadata.js +5 -0
  883. package/packages/sap.fe.macros/src/sap/fe/macros/KPITag.metadata.ts +106 -0
  884. package/packages/sap.fe.macros/src/sap/fe/macros/MacroAPI-dbg.js +197 -0
  885. package/packages/sap.fe.macros/src/sap/fe/macros/MacroAPI.js +5 -0
  886. package/packages/sap.fe.macros/src/sap/fe/macros/MacroAPI.ts +120 -0
  887. package/packages/sap.fe.macros/src/sap/fe/macros/MacroMetadata-dbg.js +92 -0
  888. package/packages/sap.fe.macros/src/sap/fe/macros/MacroMetadata.js +6 -0
  889. package/packages/sap.fe.macros/src/sap/fe/macros/MacroRuntime-dbg.js +33 -0
  890. package/packages/sap.fe.macros/src/sap/fe/macros/MacroRuntime.js +5 -0
  891. package/packages/sap.fe.macros/src/sap/fe/macros/MacroRuntime.ts +12 -0
  892. package/packages/sap.fe.macros/src/sap/fe/macros/MacroTemplating-dbg.js +22 -0
  893. package/packages/sap.fe.macros/src/sap/fe/macros/MacroTemplating.js +5 -0
  894. package/packages/sap.fe.macros/src/sap/fe/macros/MacroTemplating.ts +9 -0
  895. package/packages/sap.fe.macros/src/sap/fe/macros/MicroChart-dbg.designtime.js +361 -0
  896. package/packages/sap.fe.macros/src/sap/fe/macros/MicroChart.designtime.js +6 -0
  897. package/packages/sap.fe.macros/src/sap/fe/macros/MicroChart.fragment.xml +36 -0
  898. package/packages/sap.fe.macros/src/sap/fe/macros/MicroChart.metadata-dbg.js +149 -0
  899. package/packages/sap.fe.macros/src/sap/fe/macros/MicroChart.metadata.js +6 -0
  900. package/packages/sap.fe.macros/src/sap/fe/macros/ODataMetaModelUtil-dbg.js +600 -0
  901. package/packages/sap.fe.macros/src/sap/fe/macros/ODataMetaModelUtil.js +6 -0
  902. package/packages/sap.fe.macros/src/sap/fe/macros/Paginator.fragment.xml +32 -0
  903. package/packages/sap.fe.macros/src/sap/fe/macros/Paginator.metadata-dbg.js +61 -0
  904. package/packages/sap.fe.macros/src/sap/fe/macros/Paginator.metadata.js +6 -0
  905. package/packages/sap.fe.macros/src/sap/fe/macros/PhantomUtil-dbg.js +615 -0
  906. package/packages/sap.fe.macros/src/sap/fe/macros/PhantomUtil.js +6 -0
  907. package/packages/sap.fe.macros/src/sap/fe/macros/QuickViewForm-dbg.designtime.js +215 -0
  908. package/packages/sap.fe.macros/src/sap/fe/macros/QuickViewForm.designtime.js +6 -0
  909. package/packages/sap.fe.macros/src/sap/fe/macros/QuickViewForm.fragment.xml +66 -0
  910. package/packages/sap.fe.macros/src/sap/fe/macros/QuickViewForm.metadata-dbg.js +84 -0
  911. package/packages/sap.fe.macros/src/sap/fe/macros/QuickViewForm.metadata.js +6 -0
  912. package/packages/sap.fe.macros/src/sap/fe/macros/ResourceModel-dbg.js +56 -0
  913. package/packages/sap.fe.macros/src/sap/fe/macros/ResourceModel.js +6 -0
  914. package/packages/sap.fe.macros/src/sap/fe/macros/Share.fragment.xml +21 -0
  915. package/packages/sap.fe.macros/src/sap/fe/macros/Share.metadata-dbg.js +90 -0
  916. package/packages/sap.fe.macros/src/sap/fe/macros/Share.metadata.js +6 -0
  917. package/packages/sap.fe.macros/src/sap/fe/macros/SizeHelper-dbg.js +41 -0
  918. package/packages/sap.fe.macros/src/sap/fe/macros/SizeHelper.js +6 -0
  919. package/packages/sap.fe.macros/src/sap/fe/macros/Table.fragment.xml +236 -0
  920. package/packages/sap.fe.macros/src/sap/fe/macros/Table.metadata-dbg.js +489 -0
  921. package/packages/sap.fe.macros/src/sap/fe/macros/Table.metadata.js +6 -0
  922. package/packages/sap.fe.macros/src/sap/fe/macros/TableAPI-dbg.js +469 -0
  923. package/packages/sap.fe.macros/src/sap/fe/macros/TableAPI.js +5 -0
  924. package/packages/sap.fe.macros/src/sap/fe/macros/TableAPI.ts +487 -0
  925. package/packages/sap.fe.macros/src/sap/fe/macros/TraceInfo-dbg.js +462 -0
  926. package/packages/sap.fe.macros/src/sap/fe/macros/TraceInfo.js +6 -0
  927. package/packages/sap.fe.macros/src/sap/fe/macros/ValueHelp.metadata-dbg.js +135 -0
  928. package/packages/sap.fe.macros/src/sap/fe/macros/ValueHelp.metadata.js +6 -0
  929. package/packages/sap.fe.macros/src/sap/fe/macros/VisualFilter.fragment.xml +87 -0
  930. package/packages/sap.fe.macros/src/sap/fe/macros/VisualFilter.metadata-dbg.js +217 -0
  931. package/packages/sap.fe.macros/src/sap/fe/macros/VisualFilter.metadata.js +6 -0
  932. package/packages/sap.fe.macros/src/sap/fe/macros/chart/ChartHelper-dbg.js +468 -0
  933. package/packages/sap.fe.macros/src/sap/fe/macros/chart/ChartHelper.js +6 -0
  934. package/packages/sap.fe.macros/src/sap/fe/macros/chart/ChartRuntime-dbg.js +118 -0
  935. package/packages/sap.fe.macros/src/sap/fe/macros/chart/ChartRuntime.js +6 -0
  936. package/packages/sap.fe.macros/src/sap/fe/macros/chart/ChartUtils-dbg.js +221 -0
  937. package/packages/sap.fe.macros/src/sap/fe/macros/chart/ChartUtils.js +6 -0
  938. package/packages/sap.fe.macros/src/sap/fe/macros/designtime/library-preload.designtime.js +17 -0
  939. package/packages/sap.fe.macros/src/sap/fe/macros/designtime/library-preload.designtime.js.map +9 -0
  940. package/packages/sap.fe.macros/src/sap/fe/macros/field/DraftPopOverAdminData.fragment.xml +53 -0
  941. package/packages/sap.fe.macros/src/sap/fe/macros/field/FieldHelper-dbg.js +1670 -0
  942. package/packages/sap.fe.macros/src/sap/fe/macros/field/FieldHelper.js +6 -0
  943. package/packages/sap.fe.macros/src/sap/fe/macros/field/FieldRuntime-dbg.js +400 -0
  944. package/packages/sap.fe.macros/src/sap/fe/macros/field/FieldRuntime.js +6 -0
  945. package/packages/sap.fe.macros/src/sap/fe/macros/field/FieldTemplating-dbg.js +538 -0
  946. package/packages/sap.fe.macros/src/sap/fe/macros/field/FieldTemplating.js +5 -0
  947. package/packages/sap.fe.macros/src/sap/fe/macros/field/FieldTemplating.ts +541 -0
  948. package/packages/sap.fe.macros/src/sap/fe/macros/field/QuickViewLinkContactContent.fragment.xml +95 -0
  949. package/packages/sap.fe.macros/src/sap/fe/macros/field/QuickViewLinkDelegate-dbg.js +1136 -0
  950. package/packages/sap.fe.macros/src/sap/fe/macros/field/QuickViewLinkDelegate.js +6 -0
  951. package/packages/sap.fe.macros/src/sap/fe/macros/field/QuickViewLinkForContact.fragment.xml +26 -0
  952. package/packages/sap.fe.macros/src/sap/fe/macros/field/QuickViewLinkForDataField.fragment.xml +95 -0
  953. package/packages/sap.fe.macros/src/sap/fe/macros/field/QuickViewLinkForEntity.fragment.xml +76 -0
  954. package/packages/sap.fe.macros/src/sap/fe/macros/field/QuickViewLinkWithFacets.fragment.xml +40 -0
  955. package/packages/sap.fe.macros/src/sap/fe/macros/filter/CustomFilter.fragment.xml +38 -0
  956. package/packages/sap.fe.macros/src/sap/fe/macros/filter/DraftEditState-dbg.js +179 -0
  957. package/packages/sap.fe.macros/src/sap/fe/macros/filter/DraftEditState.fragment.xml +36 -0
  958. package/packages/sap.fe.macros/src/sap/fe/macros/filter/DraftEditState.js +6 -0
  959. package/packages/sap.fe.macros/src/sap/fe/macros/filter/FilterFieldHelper-dbg.js +149 -0
  960. package/packages/sap.fe.macros/src/sap/fe/macros/filter/FilterFieldHelper.js +6 -0
  961. package/packages/sap.fe.macros/src/sap/fe/macros/filter/FilterFieldTemplating-dbg.js +23 -0
  962. package/packages/sap.fe.macros/src/sap/fe/macros/filter/FilterFieldTemplating.js +5 -0
  963. package/packages/sap.fe.macros/src/sap/fe/macros/filter/FilterFieldTemplating.ts +11 -0
  964. package/packages/sap.fe.macros/src/sap/fe/macros/filter/FilterUtils-dbg.js +363 -0
  965. package/packages/sap.fe.macros/src/sap/fe/macros/filter/FilterUtils.js +6 -0
  966. package/packages/sap.fe.macros/src/sap/fe/macros/filter/type/MultiValue-dbg.js +53 -0
  967. package/packages/sap.fe.macros/src/sap/fe/macros/filter/type/MultiValue.js +6 -0
  968. package/packages/sap.fe.macros/src/sap/fe/macros/filter/type/Range-dbg.js +38 -0
  969. package/packages/sap.fe.macros/src/sap/fe/macros/filter/type/Range.js +6 -0
  970. package/packages/sap.fe.macros/src/sap/fe/macros/filter/type/Value-dbg.js +219 -0
  971. package/packages/sap.fe.macros/src/sap/fe/macros/filter/type/Value.js +6 -0
  972. package/packages/sap.fe.macros/src/sap/fe/macros/flexibility/FormDelegate-dbg.js +152 -0
  973. package/packages/sap.fe.macros/src/sap/fe/macros/flexibility/FormDelegate.js +6 -0
  974. package/packages/sap.fe.macros/src/sap/fe/macros/flexibility/ValueHelpWrapper.fragment.xml +3 -0
  975. package/packages/sap.fe.macros/src/sap/fe/macros/form/AddressSection.fragment.xml +35 -0
  976. package/packages/sap.fe.macros/src/sap/fe/macros/form/DataFieldCollection.fragment.xml +44 -0
  977. package/packages/sap.fe.macros/src/sap/fe/macros/form/FormElement.fragment.xml +42 -0
  978. package/packages/sap.fe.macros/src/sap/fe/macros/form/FormHelper-dbg.js +118 -0
  979. package/packages/sap.fe.macros/src/sap/fe/macros/form/FormHelper.js +6 -0
  980. package/packages/sap.fe.macros/src/sap/fe/macros/fpm/CustomFormElement.fragment.xml +10 -0
  981. package/packages/sap.fe.macros/src/sap/fe/macros/fpm/CustomFragment.fragment.xml +13 -0
  982. package/packages/sap.fe.macros/src/sap/fe/macros/fpm/CustomFragment.metadata-dbg.js +73 -0
  983. package/packages/sap.fe.macros/src/sap/fe/macros/fpm/CustomFragment.metadata.js +6 -0
  984. package/packages/sap.fe.macros/src/sap/fe/macros/fpm/CustomHeaderFieldElement.fragment.xml +17 -0
  985. package/packages/sap.fe.macros/src/sap/fe/macros/fpm/CustomSection.fragment.xml +13 -0
  986. package/packages/sap.fe.macros/src/sap/fe/macros/fpm/CustomSection.metadata-dbg.js +82 -0
  987. package/packages/sap.fe.macros/src/sap/fe/macros/fpm/CustomSection.metadata.js +6 -0
  988. package/packages/sap.fe.macros/src/sap/fe/macros/fpm/fpm-dbg.js +15 -0
  989. package/packages/sap.fe.macros/src/sap/fe/macros/fpm/fpm.js +6 -0
  990. package/packages/sap.fe.macros/src/sap/fe/macros/internal/CollectionField.fragment.xml +33 -0
  991. package/packages/sap.fe.macros/src/sap/fe/macros/internal/CollectionField.metadata-dbg.js +167 -0
  992. package/packages/sap.fe.macros/src/sap/fe/macros/internal/CollectionField.metadata.js +5 -0
  993. package/packages/sap.fe.macros/src/sap/fe/macros/internal/CollectionField.metadata.ts +179 -0
  994. package/packages/sap.fe.macros/src/sap/fe/macros/internal/DataPoint.fragment.xml +123 -0
  995. package/packages/sap.fe.macros/src/sap/fe/macros/internal/DataPoint.metadata-dbg.js +162 -0
  996. package/packages/sap.fe.macros/src/sap/fe/macros/internal/DataPoint.metadata.js +6 -0
  997. package/packages/sap.fe.macros/src/sap/fe/macros/internal/Field-dbg.designtime.js +811 -0
  998. package/packages/sap.fe.macros/src/sap/fe/macros/internal/Field.designtime.js +6 -0
  999. package/packages/sap.fe.macros/src/sap/fe/macros/internal/Field.fragment.xml +20 -0
  1000. package/packages/sap.fe.macros/src/sap/fe/macros/internal/Field.metadata-dbg.js +534 -0
  1001. package/packages/sap.fe.macros/src/sap/fe/macros/internal/Field.metadata.js +6 -0
  1002. package/packages/sap.fe.macros/src/sap/fe/macros/internal/collectionField/MultiValueFieldDelegate-dbg.js +76 -0
  1003. package/packages/sap.fe.macros/src/sap/fe/macros/internal/collectionField/MultiValueFieldDelegate.js +6 -0
  1004. package/packages/sap.fe.macros/src/sap/fe/macros/internal/field/ConnectedDataField.fragment.xml +39 -0
  1005. package/packages/sap.fe.macros/src/sap/fe/macros/internal/field/FieldContent.fragment.xml +94 -0
  1006. package/packages/sap.fe.macros/src/sap/fe/macros/internal/field/FieldStructure.fragment.xml +55 -0
  1007. package/packages/sap.fe.macros/src/sap/fe/macros/internal/field/displayStyle/AmountWithCurrency.fragment.xml +41 -0
  1008. package/packages/sap.fe.macros/src/sap/fe/macros/internal/field/displayStyle/Avatar.fragment.xml +57 -0
  1009. package/packages/sap.fe.macros/src/sap/fe/macros/internal/field/displayStyle/Button.fragment.xml +56 -0
  1010. package/packages/sap.fe.macros/src/sap/fe/macros/internal/field/displayStyle/Contact.fragment.xml +38 -0
  1011. package/packages/sap.fe.macros/src/sap/fe/macros/internal/field/displayStyle/DataPoint.fragment.xml +45 -0
  1012. package/packages/sap.fe.macros/src/sap/fe/macros/internal/field/displayStyle/ExpandableText.fragment.xml +18 -0
  1013. package/packages/sap.fe.macros/src/sap/fe/macros/internal/field/displayStyle/File.fragment.xml +31 -0
  1014. package/packages/sap.fe.macros/src/sap/fe/macros/internal/field/displayStyle/LabelSemanticKey.fragment.xml +65 -0
  1015. package/packages/sap.fe.macros/src/sap/fe/macros/internal/field/displayStyle/Link.fragment.xml +30 -0
  1016. package/packages/sap.fe.macros/src/sap/fe/macros/internal/field/displayStyle/LinkWithQuickViewForm.fragment.xml +45 -0
  1017. package/packages/sap.fe.macros/src/sap/fe/macros/internal/field/displayStyle/LinkWrapper.fragment.xml +56 -0
  1018. package/packages/sap.fe.macros/src/sap/fe/macros/internal/field/displayStyle/ObjectIdentifier.fragment.xml +37 -0
  1019. package/packages/sap.fe.macros/src/sap/fe/macros/internal/field/displayStyle/ObjectStatus.fragment.xml +16 -0
  1020. package/packages/sap.fe.macros/src/sap/fe/macros/internal/field/displayStyle/SemanticKeyWithDraftIndicator.fragment.xml +35 -0
  1021. package/packages/sap.fe.macros/src/sap/fe/macros/internal/field/displayStyle/Text.fragment.xml +33 -0
  1022. package/packages/sap.fe.macros/src/sap/fe/macros/internal/field/editStyle/CheckBox.fragment.xml +28 -0
  1023. package/packages/sap.fe.macros/src/sap/fe/macros/internal/field/editStyle/DatePicker.fragment.xml +32 -0
  1024. package/packages/sap.fe.macros/src/sap/fe/macros/internal/field/editStyle/DateTimePicker.fragment.xml +33 -0
  1025. package/packages/sap.fe.macros/src/sap/fe/macros/internal/field/editStyle/File.fragment.xml +55 -0
  1026. package/packages/sap.fe.macros/src/sap/fe/macros/internal/field/editStyle/Input.fragment.xml +33 -0
  1027. package/packages/sap.fe.macros/src/sap/fe/macros/internal/field/editStyle/InputWithUnit.fragment.xml +77 -0
  1028. package/packages/sap.fe.macros/src/sap/fe/macros/internal/field/editStyle/InputWithValueHelp.fragment.xml +73 -0
  1029. package/packages/sap.fe.macros/src/sap/fe/macros/internal/field/editStyle/RatingIndicator.fragment.xml +23 -0
  1030. package/packages/sap.fe.macros/src/sap/fe/macros/internal/field/editStyle/TextArea.fragment.xml +34 -0
  1031. package/packages/sap.fe.macros/src/sap/fe/macros/internal/field/editStyle/TimePicker.fragment.xml +33 -0
  1032. package/packages/sap.fe.macros/src/sap/fe/macros/internal/form/FormTemplating-dbg.js +65 -0
  1033. package/packages/sap.fe.macros/src/sap/fe/macros/internal/form/FormTemplating.js +5 -0
  1034. package/packages/sap.fe.macros/src/sap/fe/macros/internal/form/FormTemplating.ts +40 -0
  1035. package/packages/sap.fe.macros/src/sap/fe/macros/internal/helpers/DataPointTemplating-dbg.js +244 -0
  1036. package/packages/sap.fe.macros/src/sap/fe/macros/internal/helpers/DataPointTemplating.js +5 -0
  1037. package/packages/sap.fe.macros/src/sap/fe/macros/internal/helpers/DataPointTemplating.ts +229 -0
  1038. package/packages/sap.fe.macros/src/sap/fe/macros/internal/valuehelp/TableDelegate-dbg.js +215 -0
  1039. package/packages/sap.fe.macros/src/sap/fe/macros/internal/valuehelp/TableDelegate.js +6 -0
  1040. package/packages/sap.fe.macros/src/sap/fe/macros/internal/valuehelp/ValueHelp-dbg.designtime.js +466 -0
  1041. package/packages/sap.fe.macros/src/sap/fe/macros/internal/valuehelp/ValueHelp.designtime.js +6 -0
  1042. package/packages/sap.fe.macros/src/sap/fe/macros/internal/valuehelp/ValueHelp.fragment.xml +23 -0
  1043. package/packages/sap.fe.macros/src/sap/fe/macros/internal/valuehelp/ValueHelpContent.fragment.xml +62 -0
  1044. package/packages/sap.fe.macros/src/sap/fe/macros/internal/valuehelp/ValueHelpTemplating-dbg.js +155 -0
  1045. package/packages/sap.fe.macros/src/sap/fe/macros/internal/valuehelp/ValueHelpTemplating.js +5 -0
  1046. package/packages/sap.fe.macros/src/sap/fe/macros/internal/valuehelp/ValueHelpTemplating.ts +133 -0
  1047. package/packages/sap.fe.macros/src/sap/fe/macros/internal/valuehelp/ValueListDialogTable.fragment.xml +57 -0
  1048. package/packages/sap.fe.macros/src/sap/fe/macros/internal/valuehelp/ValueListFilterBar.fragment.xml +20 -0
  1049. package/packages/sap.fe.macros/src/sap/fe/macros/internal/valuehelp/ValueListHelper-dbg.js +1286 -0
  1050. package/packages/sap.fe.macros/src/sap/fe/macros/internal/valuehelp/ValueListHelper.js +6 -0
  1051. package/packages/sap.fe.macros/src/sap/fe/macros/internal/valuehelp/ValueListTable.fragment.xml +67 -0
  1052. package/packages/sap.fe.macros/src/sap/fe/macros/internal/valuehelp/ValueListTableColumnHeader.fragment.xml +25 -0
  1053. package/packages/sap.fe.macros/src/sap/fe/macros/library-dbg.js +144 -0
  1054. package/packages/sap.fe.macros/src/sap/fe/macros/library-h2-preload.js +190 -0
  1055. package/packages/sap.fe.macros/src/sap/fe/macros/library-h2-preload.js.map +9 -0
  1056. package/packages/sap.fe.macros/src/sap/fe/macros/library-preload.js +696 -0
  1057. package/packages/sap.fe.macros/src/sap/fe/macros/library-preload.js.map +9 -0
  1058. package/packages/sap.fe.macros/src/sap/fe/macros/library.js +6 -0
  1059. package/packages/sap.fe.macros/src/sap/fe/macros/macroLibrary-dbg.js +126 -0
  1060. package/packages/sap.fe.macros/src/sap/fe/macros/macroLibrary.js +6 -0
  1061. package/packages/sap.fe.macros/src/sap/fe/macros/manifest.json +115 -0
  1062. package/packages/sap.fe.macros/src/sap/fe/macros/massedit/MassEditDialog.fragment.xml +106 -0
  1063. package/packages/sap.fe.macros/src/sap/fe/macros/massedit/MassEditHandler-dbg.js +708 -0
  1064. package/packages/sap.fe.macros/src/sap/fe/macros/massedit/MassEditHandler.js +6 -0
  1065. package/packages/sap.fe.macros/src/sap/fe/macros/massedit/MassEditRuntime-dbg.js +115 -0
  1066. package/packages/sap.fe.macros/src/sap/fe/macros/massedit/MassEditRuntime.js +6 -0
  1067. package/packages/sap.fe.macros/src/sap/fe/macros/messagebundle.properties +215 -0
  1068. package/packages/sap.fe.macros/src/sap/fe/macros/messagebundle_ar.properties +140 -0
  1069. package/packages/sap.fe.macros/src/sap/fe/macros/messagebundle_bg.properties +140 -0
  1070. package/packages/sap.fe.macros/src/sap/fe/macros/messagebundle_ca.properties +140 -0
  1071. package/packages/sap.fe.macros/src/sap/fe/macros/messagebundle_cs.properties +140 -0
  1072. package/packages/sap.fe.macros/src/sap/fe/macros/messagebundle_cy.properties +140 -0
  1073. package/packages/sap.fe.macros/src/sap/fe/macros/messagebundle_da.properties +140 -0
  1074. package/packages/sap.fe.macros/src/sap/fe/macros/messagebundle_de.properties +140 -0
  1075. package/packages/sap.fe.macros/src/sap/fe/macros/messagebundle_el.properties +140 -0
  1076. package/packages/sap.fe.macros/src/sap/fe/macros/messagebundle_en.properties +140 -0
  1077. package/packages/sap.fe.macros/src/sap/fe/macros/messagebundle_en_GB.properties +140 -0
  1078. package/packages/sap.fe.macros/src/sap/fe/macros/messagebundle_en_US_sappsd.properties +129 -0
  1079. package/packages/sap.fe.macros/src/sap/fe/macros/messagebundle_en_US_saprigi.properties +129 -0
  1080. package/packages/sap.fe.macros/src/sap/fe/macros/messagebundle_en_US_saptrc.properties +129 -0
  1081. package/packages/sap.fe.macros/src/sap/fe/macros/messagebundle_es.properties +140 -0
  1082. package/packages/sap.fe.macros/src/sap/fe/macros/messagebundle_es_MX.properties +140 -0
  1083. package/packages/sap.fe.macros/src/sap/fe/macros/messagebundle_et.properties +140 -0
  1084. package/packages/sap.fe.macros/src/sap/fe/macros/messagebundle_fi.properties +140 -0
  1085. package/packages/sap.fe.macros/src/sap/fe/macros/messagebundle_fr.properties +140 -0
  1086. package/packages/sap.fe.macros/src/sap/fe/macros/messagebundle_fr_CA.properties +140 -0
  1087. package/packages/sap.fe.macros/src/sap/fe/macros/messagebundle_hi.properties +140 -0
  1088. package/packages/sap.fe.macros/src/sap/fe/macros/messagebundle_hr.properties +140 -0
  1089. package/packages/sap.fe.macros/src/sap/fe/macros/messagebundle_hu.properties +140 -0
  1090. package/packages/sap.fe.macros/src/sap/fe/macros/messagebundle_id.properties +140 -0
  1091. package/packages/sap.fe.macros/src/sap/fe/macros/messagebundle_it.properties +140 -0
  1092. package/packages/sap.fe.macros/src/sap/fe/macros/messagebundle_iw.properties +140 -0
  1093. package/packages/sap.fe.macros/src/sap/fe/macros/messagebundle_ja.properties +140 -0
  1094. package/packages/sap.fe.macros/src/sap/fe/macros/messagebundle_kk.properties +140 -0
  1095. package/packages/sap.fe.macros/src/sap/fe/macros/messagebundle_ko.properties +140 -0
  1096. package/packages/sap.fe.macros/src/sap/fe/macros/messagebundle_lt.properties +140 -0
  1097. package/packages/sap.fe.macros/src/sap/fe/macros/messagebundle_lv.properties +140 -0
  1098. package/packages/sap.fe.macros/src/sap/fe/macros/messagebundle_ms.properties +140 -0
  1099. package/packages/sap.fe.macros/src/sap/fe/macros/messagebundle_nl.properties +140 -0
  1100. package/packages/sap.fe.macros/src/sap/fe/macros/messagebundle_no.properties +140 -0
  1101. package/packages/sap.fe.macros/src/sap/fe/macros/messagebundle_pl.properties +140 -0
  1102. package/packages/sap.fe.macros/src/sap/fe/macros/messagebundle_pt.properties +140 -0
  1103. package/packages/sap.fe.macros/src/sap/fe/macros/messagebundle_pt_PT.properties +140 -0
  1104. package/packages/sap.fe.macros/src/sap/fe/macros/messagebundle_ro.properties +140 -0
  1105. package/packages/sap.fe.macros/src/sap/fe/macros/messagebundle_ru.properties +140 -0
  1106. package/packages/sap.fe.macros/src/sap/fe/macros/messagebundle_sh.properties +140 -0
  1107. package/packages/sap.fe.macros/src/sap/fe/macros/messagebundle_sk.properties +140 -0
  1108. package/packages/sap.fe.macros/src/sap/fe/macros/messagebundle_sl.properties +140 -0
  1109. package/packages/sap.fe.macros/src/sap/fe/macros/messagebundle_sv.properties +140 -0
  1110. package/packages/sap.fe.macros/src/sap/fe/macros/messagebundle_th.properties +140 -0
  1111. package/packages/sap.fe.macros/src/sap/fe/macros/messagebundle_tr.properties +140 -0
  1112. package/packages/sap.fe.macros/src/sap/fe/macros/messagebundle_uk.properties +140 -0
  1113. package/packages/sap.fe.macros/src/sap/fe/macros/messagebundle_vi.properties +140 -0
  1114. package/packages/sap.fe.macros/src/sap/fe/macros/messagebundle_zh_CN.properties +140 -0
  1115. package/packages/sap.fe.macros/src/sap/fe/macros/messagebundle_zh_TW.properties +140 -0
  1116. package/packages/sap.fe.macros/src/sap/fe/macros/microchart/MicroChartContainer-dbg.js +620 -0
  1117. package/packages/sap.fe.macros/src/sap/fe/macros/microchart/MicroChartContainer.js +6 -0
  1118. package/packages/sap.fe.macros/src/sap/fe/macros/microchart/MicroChartHelper-dbg.js +491 -0
  1119. package/packages/sap.fe.macros/src/sap/fe/macros/microchart/MicroChartHelper.js +6 -0
  1120. package/packages/sap.fe.macros/src/sap/fe/macros/microchart/fragments/AreaMicroChart.fragment.xml +180 -0
  1121. package/packages/sap.fe.macros/src/sap/fe/macros/microchart/fragments/BulletMicroChart.fragment.xml +111 -0
  1122. package/packages/sap.fe.macros/src/sap/fe/macros/microchart/fragments/ColumnMicroChart.fragment.xml +99 -0
  1123. package/packages/sap.fe.macros/src/sap/fe/macros/microchart/fragments/ComparisonMicroChart.fragment.xml +64 -0
  1124. package/packages/sap.fe.macros/src/sap/fe/macros/microchart/fragments/HarveyBallMicroChart.fragment.xml +64 -0
  1125. package/packages/sap.fe.macros/src/sap/fe/macros/microchart/fragments/LineMicroChart.fragment.xml +67 -0
  1126. package/packages/sap.fe.macros/src/sap/fe/macros/microchart/fragments/MicroChartContent.fragment.xml +41 -0
  1127. package/packages/sap.fe.macros/src/sap/fe/macros/microchart/fragments/MicroChartTitle.fragment.xml +52 -0
  1128. package/packages/sap.fe.macros/src/sap/fe/macros/microchart/fragments/RadialMicroChart.fragment.xml +58 -0
  1129. package/packages/sap.fe.macros/src/sap/fe/macros/microchart/fragments/StackedBarMicroChart.fragment.xml +54 -0
  1130. package/packages/sap.fe.macros/src/sap/fe/macros/resources.json +4885 -0
  1131. package/packages/sap.fe.macros/src/sap/fe/macros/share/ShareSheet.fragment.xml +26 -0
  1132. package/packages/sap.fe.macros/src/sap/fe/macros/table/Actions.fragment.xml +215 -0
  1133. package/packages/sap.fe.macros/src/sap/fe/macros/table/BasicSearch-dbg.js +73 -0
  1134. package/packages/sap.fe.macros/src/sap/fe/macros/table/BasicSearch.js +6 -0
  1135. package/packages/sap.fe.macros/src/sap/fe/macros/table/Column.fragment.xml +27 -0
  1136. package/packages/sap.fe.macros/src/sap/fe/macros/table/ColumnContent.fragment.xml +133 -0
  1137. package/packages/sap.fe.macros/src/sap/fe/macros/table/ColumnProperty.fragment.xml +43 -0
  1138. package/packages/sap.fe.macros/src/sap/fe/macros/table/Columns.fragment.xml +37 -0
  1139. package/packages/sap.fe.macros/src/sap/fe/macros/table/CreationRow.fragment.xml +33 -0
  1140. package/packages/sap.fe.macros/src/sap/fe/macros/table/CustomColumn.fragment.xml +16 -0
  1141. package/packages/sap.fe.macros/src/sap/fe/macros/table/QuickFilterContainer-dbg.js +298 -0
  1142. package/packages/sap.fe.macros/src/sap/fe/macros/table/QuickFilterContainer.js +6 -0
  1143. package/packages/sap.fe.macros/src/sap/fe/macros/table/TableFullScreenUtil-dbg.js +194 -0
  1144. package/packages/sap.fe.macros/src/sap/fe/macros/table/TableFullScreenUtil.js +6 -0
  1145. package/packages/sap.fe.macros/src/sap/fe/macros/table/TableHelper-dbg.js +1399 -0
  1146. package/packages/sap.fe.macros/src/sap/fe/macros/table/TableHelper.js +6 -0
  1147. package/packages/sap.fe.macros/src/sap/fe/macros/table/TableRuntime-dbg.js +231 -0
  1148. package/packages/sap.fe.macros/src/sap/fe/macros/table/TableRuntime.js +6 -0
  1149. package/packages/sap.fe.macros/src/sap/fe/macros/table/Utils-dbg.js +468 -0
  1150. package/packages/sap.fe.macros/src/sap/fe/macros/table/Utils.js +6 -0
  1151. package/packages/sap.fe.macros/src/sap/fe/macros/table/ValueHelp.fragment.xml +34 -0
  1152. package/packages/sap.fe.macros/src/sap/fe/macros/table/delegates/ALPTableDelegate-dbg.js +32 -0
  1153. package/packages/sap.fe.macros/src/sap/fe/macros/table/delegates/ALPTableDelegate.js +6 -0
  1154. package/packages/sap.fe.macros/src/sap/fe/macros/table/delegates/ALPTableDelegateBaseMixin-dbg.js +100 -0
  1155. package/packages/sap.fe.macros/src/sap/fe/macros/table/delegates/ALPTableDelegateBaseMixin.js +6 -0
  1156. package/packages/sap.fe.macros/src/sap/fe/macros/table/delegates/AnalyticalALPTableDelegate-dbg.js +36 -0
  1157. package/packages/sap.fe.macros/src/sap/fe/macros/table/delegates/AnalyticalALPTableDelegate.js +6 -0
  1158. package/packages/sap.fe.macros/src/sap/fe/macros/table/delegates/AnalyticalTableDelegate-dbg.js +147 -0
  1159. package/packages/sap.fe.macros/src/sap/fe/macros/table/delegates/AnalyticalTableDelegate.js +6 -0
  1160. package/packages/sap.fe.macros/src/sap/fe/macros/table/delegates/TableDelegate-dbg.js +818 -0
  1161. package/packages/sap.fe.macros/src/sap/fe/macros/table/delegates/TableDelegate.js +6 -0
  1162. package/packages/sap.fe.macros/src/sap/fe/macros/valuehelp/ValueHelpFilterBar-dbg.designtime.js +83 -0
  1163. package/packages/sap.fe.macros/src/sap/fe/macros/valuehelp/ValueHelpFilterBar.designtime.js +6 -0
  1164. package/packages/sap.fe.macros/src/sap/fe/macros/valuehelp/ValueHelpFilterBar.fragment.xml +115 -0
  1165. package/packages/sap.fe.macros/src/sap/fe/macros/valuehelp/ValueHelpFilterBar.metadata-dbg.js +204 -0
  1166. package/packages/sap.fe.macros/src/sap/fe/macros/valuehelp/ValueHelpFilterBar.metadata.js +6 -0
  1167. package/packages/sap.fe.macros/src/sap/fe/macros/visualfilters/InteractiveChartHelper-dbg.js +476 -0
  1168. package/packages/sap.fe.macros/src/sap/fe/macros/visualfilters/InteractiveChartHelper.js +6 -0
  1169. package/packages/sap.fe.macros/src/sap/fe/macros/visualfilters/VisualFilterRuntime-dbg.js +286 -0
  1170. package/packages/sap.fe.macros/src/sap/fe/macros/visualfilters/VisualFilterRuntime.js +6 -0
  1171. package/packages/sap.fe.macros/src/sap/fe/macros/visualfilters/fragments/InteractiveBarChart.fragment.xml +70 -0
  1172. package/packages/sap.fe.macros/src/sap/fe/macros/visualfilters/fragments/InteractiveDonutChart.fragment.xml +69 -0
  1173. package/packages/sap.fe.macros/src/sap/fe/macros/visualfilters/fragments/InteractiveLineChart.fragment.xml +70 -0
  1174. package/packages/sap.fe.macros/test/sap/fe/macros/designtime/api.json +1001 -0
  1175. package/packages/sap.fe.macros/test/sap/fe/macros/designtime/apiref/api.json +1 -0
  1176. package/packages/sap.fe.macros/test/sap/fe/macros/designtime/codeassistance/Library.jsmeta.json +1 -0
  1177. package/packages/sap.fe.macros/test/sap/fe/macros/designtime/codeassistance/Library.jstemplates.json +1 -0
  1178. package/packages/sap.fe.macros/test/sap/fe/macros/designtime/codeassistance/Library.xmlmeta.json +1 -0
  1179. package/packages/sap.fe.macros/test/sap/fe/macros/designtime/codeassistance/Library.xmltemplates.json +1 -0
  1180. package/packages/sap.fe.macros/test/sap/fe/macros/jest/CollectionField.spec.js +64 -0
  1181. package/packages/sap.fe.macros/test/sap/fe/macros/jest/CollectionField.spec.ts +67 -0
  1182. package/packages/sap.fe.macros/test/sap/fe/macros/jest/DatapointMacro.spec.js +326 -0
  1183. package/packages/sap.fe.macros/test/sap/fe/macros/jest/DatapointMacro.spec.ts +349 -0
  1184. package/packages/sap.fe.macros/test/sap/fe/macros/jest/FieldMacroDataFieldTypes.spec.js +127 -0
  1185. package/packages/sap.fe.macros/test/sap/fe/macros/jest/FieldMacroDataFieldTypes.spec.ts +127 -0
  1186. package/packages/sap.fe.macros/test/sap/fe/macros/jest/FieldMacroWithSemanticKey.spec.js +184 -0
  1187. package/packages/sap.fe.macros/test/sap/fe/macros/jest/FieldMacroWithSemanticKey.spec.ts +263 -0
  1188. package/packages/sap.fe.macros/test/sap/fe/macros/jest/FieldMacroWithValueHelp.spec.js +63 -0
  1189. package/packages/sap.fe.macros/test/sap/fe/macros/jest/FieldMacroWithValueHelp.spec.ts +72 -0
  1190. package/packages/sap.fe.macros/test/sap/fe/macros/jest/FilterField.spec.js +32 -0
  1191. package/packages/sap.fe.macros/test/sap/fe/macros/jest/FilterField.spec.ts +28 -0
  1192. package/packages/sap.fe.macros/test/sap/fe/macros/jest/MacroComponent.spec.js +39 -0
  1193. package/packages/sap.fe.macros/test/sap/fe/macros/jest/MacroComponent.spec.ts +26 -0
  1194. package/packages/sap.fe.macros/test/sap/fe/macros/jest/MicroChart.spec.js +53 -0
  1195. package/packages/sap.fe.macros/test/sap/fe/macros/jest/MicroChart.spec.ts +54 -0
  1196. package/packages/sap.fe.macros/test/sap/fe/macros/jest/PhantomUtil.spec.js +142 -0
  1197. package/packages/sap.fe.macros/test/sap/fe/macros/jest/PhantomUtil.spec.ts +178 -0
  1198. package/packages/sap.fe.macros/test/sap/fe/macros/jest/QuickViewForm.spec.js +401 -0
  1199. package/packages/sap.fe.macros/test/sap/fe/macros/jest/QuickViewForm.spec.ts +662 -0
  1200. package/packages/sap.fe.macros/test/sap/fe/macros/jest/SimpleFieldMacro.spec.js +571 -0
  1201. package/packages/sap.fe.macros/test/sap/fe/macros/jest/SimpleFieldMacro.spec.ts +778 -0
  1202. package/packages/sap.fe.macros/test/sap/fe/macros/jest/TableAPI.spec.js +712 -0
  1203. package/packages/sap.fe.macros/test/sap/fe/macros/jest/TableAPI.spec.ts +800 -0
  1204. package/packages/sap.fe.macros/test/sap/fe/macros/jest/ValueHelpMacro.spec.js +192 -0
  1205. package/packages/sap.fe.macros/test/sap/fe/macros/jest/ValueHelpMacro.spec.ts +194 -0
  1206. package/packages/sap.fe.macros/test/sap/fe/macros/jest/__snapshots__/FilterField.spec.ts.snap +37 -0
  1207. package/packages/sap.fe.macros/test/sap/fe/macros/jest/__snapshots__/MacroComponent.spec.ts.snap +7 -0
  1208. package/packages/sap.fe.macros/test/sap/fe/macros/jest/__snapshots__/PhantomUtil.spec.ts.snap +184 -0
  1209. package/packages/sap.fe.macros/test/sap/fe/macros/jest/__snapshots__/QuickViewForm.spec.ts.snap +820 -0
  1210. package/packages/sap.fe.macros/test/sap/fe/macros/jest/__snapshots__/ValueHelpMacro.spec.ts.snap +279 -0
  1211. package/packages/sap.fe.macros/test/sap/fe/macros/jest/addTemplatingTest.md +51 -0
  1212. package/packages/sap.fe.macros/test/sap/fe/macros/jest/data/AdminDataPopOver.cds +8 -0
  1213. package/packages/sap.fe.macros/test/sap/fe/macros/jest/data/CollectionField.cds +48 -0
  1214. package/packages/sap.fe.macros/test/sap/fe/macros/jest/data/FieldMacroDataFieldTypes.cds +295 -0
  1215. package/packages/sap.fe.macros/test/sap/fe/macros/jest/data/FieldMacroWithSemanticKey.cds +62 -0
  1216. package/packages/sap.fe.macros/test/sap/fe/macros/jest/data/FieldMacroWithValueHelp.cds +131 -0
  1217. package/packages/sap.fe.macros/test/sap/fe/macros/jest/data/FilterFieldMacro.cds +124 -0
  1218. package/packages/sap.fe.macros/test/sap/fe/macros/jest/data/MicroChart.cds +47 -0
  1219. package/packages/sap.fe.macros/test/sap/fe/macros/jest/data/PhantomUtil.cds +20 -0
  1220. package/packages/sap.fe.macros/test/sap/fe/macros/jest/data/QuickViewForm.cds +248 -0
  1221. package/packages/sap.fe.macros/test/sap/fe/macros/jest/data/Table.cds +113 -0
  1222. package/packages/sap.fe.macros/test/sap/fe/macros/jest/data/ValueHelpMacro.cds +163 -0
  1223. package/packages/sap.fe.macros/test/sap/fe/macros/jest/data/simpleFieldMacro.cds +129 -0
  1224. package/packages/sap.fe.macros/test/sap/fe/macros/jest/field/FieldTemplating.cds +115 -0
  1225. package/packages/sap.fe.macros/test/sap/fe/macros/jest/field/FieldTemplating.spec.js +180 -0
  1226. package/packages/sap.fe.macros/test/sap/fe/macros/jest/field/FieldTemplating.spec.ts +215 -0
  1227. package/packages/sap.fe.macros/test/sap/fe/macros/jest/field/__snapshots__/FieldTemplating.spec.ts.snap +160 -0
  1228. package/packages/sap.fe.macros/test/sap/fe/macros/jest/fragments/MyTestFragment.xml +15 -0
  1229. package/packages/sap.fe.macros/test/sap/fe/macros/jest/fragments/MyTestFragmentRepeat.xml +27 -0
  1230. package/packages/sap.fe.macros/test/sap/fe/macros/jest/tsx/TestTSX.spec.tsx +49 -0
  1231. package/packages/sap.fe.macros/test/sap/fe/macros/jest/tsx/__snapshots__/TestTSX.spec.tsx.snap +33 -0
  1232. package/packages/sap.fe.macros/test/sap/fe/macros/qunit/common/testHelper.js +24 -0
  1233. package/packages/sap.fe.macros/test/sap/fe/macros/qunit/index.json +154 -0
  1234. package/packages/sap.fe.macros/test/sap/fe/macros/qunit/macros/AnalyticalTableDelegate.qunit.js +158 -0
  1235. package/packages/sap.fe.macros/test/sap/fe/macros/qunit/macros/ChartDelegate.qunit.js +275 -0
  1236. package/packages/sap.fe.macros/test/sap/fe/macros/qunit/macros/ChartHelper.qunit.js +601 -0
  1237. package/packages/sap.fe.macros/test/sap/fe/macros/qunit/macros/ChartHelperTemplate.qunit.js +67 -0
  1238. package/packages/sap.fe.macros/test/sap/fe/macros/qunit/macros/CommonHelper.qunit.js +1607 -0
  1239. package/packages/sap.fe.macros/test/sap/fe/macros/qunit/macros/FieldHelper.qunit.js +2478 -0
  1240. package/packages/sap.fe.macros/test/sap/fe/macros/qunit/macros/FieldHelperTemplate.qunit.js +383 -0
  1241. package/packages/sap.fe.macros/test/sap/fe/macros/qunit/macros/FilterBarDelegate.qunit.js +89 -0
  1242. package/packages/sap.fe.macros/test/sap/fe/macros/qunit/macros/FilterBarHelper.qunit.js +223 -0
  1243. package/packages/sap.fe.macros/test/sap/fe/macros/qunit/macros/FilterFieldHelper.qunit.js +712 -0
  1244. package/packages/sap.fe.macros/test/sap/fe/macros/qunit/macros/FormContainerTemplating.qunit.js +245 -0
  1245. package/packages/sap.fe.macros/test/sap/fe/macros/qunit/macros/FormElementTemplating.qunit.js +83 -0
  1246. package/packages/sap.fe.macros/test/sap/fe/macros/qunit/macros/FormHelper.qunit.js +209 -0
  1247. package/packages/sap.fe.macros/test/sap/fe/macros/qunit/macros/FormTemplating.qunit.js +577 -0
  1248. package/packages/sap.fe.macros/test/sap/fe/macros/qunit/macros/FormTemplatingTs.qunit.js +271 -0
  1249. package/packages/sap.fe.macros/test/sap/fe/macros/qunit/macros/InteractiveChartHelper.qunit.js +1227 -0
  1250. package/packages/sap.fe.macros/test/sap/fe/macros/qunit/macros/MacroMetadata.qunit.js +123 -0
  1251. package/packages/sap.fe.macros/test/sap/fe/macros/qunit/macros/MicroChartContainer.qunit.js +1637 -0
  1252. package/packages/sap.fe.macros/test/sap/fe/macros/qunit/macros/MicroChartHelper.qunit.js +619 -0
  1253. package/packages/sap.fe.macros/test/sap/fe/macros/qunit/macros/MicroChartHelperForTemplate.qunit.js +360 -0
  1254. package/packages/sap.fe.macros/test/sap/fe/macros/qunit/macros/PhantomUtil.qunit.js +307 -0
  1255. package/packages/sap.fe.macros/test/sap/fe/macros/qunit/macros/QuickViewLinkDelegate.qunit.js +81 -0
  1256. package/packages/sap.fe.macros/test/sap/fe/macros/qunit/macros/TableDelegate.qunit.js +734 -0
  1257. package/packages/sap.fe.macros/test/sap/fe/macros/qunit/macros/TableHelper.qunit.js +2630 -0
  1258. package/packages/sap.fe.macros/test/sap/fe/macros/qunit/macros/TableHelperTemplate.qunit.js +201 -0
  1259. package/packages/sap.fe.macros/test/sap/fe/macros/qunit/macros/TableRuntime.qunit.js +861 -0
  1260. package/packages/sap.fe.macros/test/sap/fe/macros/qunit/macros/ValueHelpTemplating.qunit.js +176 -0
  1261. package/packages/sap.fe.macros/test/sap/fe/macros/qunit/macros/ValueListHelper.qunit.js +1133 -0
  1262. package/packages/sap.fe.macros/test/sap/fe/macros/qunit/macros/chartMetadata/metadata.xml +461 -0
  1263. package/packages/sap.fe.macros/test/sap/fe/macros/qunit/macros/flexibility/FormDelegate.qunit.js +408 -0
  1264. package/packages/sap.fe.macros/test/sap/fe/macros/qunit/macros/fragments/FilterFieldMacro.fragment.xml +9 -0
  1265. package/packages/sap.fe.macros/test/sap/fe/macros/qunit/macros/fragments/FilterFieldMacroMissingID.fragment.xml +9 -0
  1266. package/packages/sap.fe.macros/test/sap/fe/macros/qunit/macros/fragments/TableMacro.fragment.xml +22 -0
  1267. package/packages/sap.fe.macros/test/sap/fe/macros/qunit/macros/metadata/simpleMetadata.js +1415 -0
  1268. package/packages/sap.fe.macros/test/sap/fe/macros/qunit/teststarter.qunit.html +13 -0
  1269. package/packages/sap.fe.macros/test/sap/fe/macros/qunit/testsuite.qunit.html +14 -0
  1270. package/packages/sap.fe.macros/test/sap/fe/macros/qunit/testsuite.qunit.js +41 -0
  1271. package/packages/sap.fe.macros/test/sap/fe/macros/relnotes/changes-1.91.json +76 -0
  1272. package/packages/sap.fe.macros/test/sap/fe/macros/relnotes/changes-1.94.json +29 -0
  1273. package/packages/sap.fe.navigation/src/sap/fe/navigation/.library +36 -0
  1274. package/packages/sap.fe.navigation/src/sap/fe/navigation/.theming +6 -0
  1275. package/packages/sap.fe.navigation/src/sap/fe/navigation/NavError-dbg.js +49 -0
  1276. package/packages/sap.fe.navigation/src/sap/fe/navigation/NavError.js +6 -0
  1277. package/packages/sap.fe.navigation/src/sap/fe/navigation/NavigationHandler-dbg.js +2215 -0
  1278. package/packages/sap.fe.navigation/src/sap/fe/navigation/NavigationHandler.js +6 -0
  1279. package/packages/sap.fe.navigation/src/sap/fe/navigation/PresentationVariant-dbg.js +347 -0
  1280. package/packages/sap.fe.navigation/src/sap/fe/navigation/PresentationVariant.js +6 -0
  1281. package/packages/sap.fe.navigation/src/sap/fe/navigation/SelectionVariant-dbg.js +774 -0
  1282. package/packages/sap.fe.navigation/src/sap/fe/navigation/SelectionVariant.js +6 -0
  1283. package/packages/sap.fe.navigation/src/sap/fe/navigation/library-dbg.js +170 -0
  1284. package/packages/sap.fe.navigation/src/sap/fe/navigation/library-h2-preload.js +19 -0
  1285. package/packages/sap.fe.navigation/src/sap/fe/navigation/library-h2-preload.js.map +9 -0
  1286. package/packages/sap.fe.navigation/src/sap/fe/navigation/library-preload.js +129 -0
  1287. package/packages/sap.fe.navigation/src/sap/fe/navigation/library-preload.js.map +9 -0
  1288. package/packages/sap.fe.navigation/src/sap/fe/navigation/library.js +6 -0
  1289. package/packages/sap.fe.navigation/src/sap/fe/navigation/manifest.json +44 -0
  1290. package/packages/sap.fe.navigation/src/sap/fe/navigation/resources.json +215 -0
  1291. package/packages/sap.fe.navigation/test/sap/fe/navigation/designtime/api.json +1 -0
  1292. package/packages/sap.fe.navigation/test/sap/fe/navigation/designtime/apiref/api.json +1 -0
  1293. package/packages/sap.fe.navigation/test/sap/fe/navigation/designtime/codeassistance/Library.jsmeta.json +1 -0
  1294. package/packages/sap.fe.navigation/test/sap/fe/navigation/designtime/codeassistance/Library.jstemplates.json +1 -0
  1295. package/packages/sap.fe.navigation/test/sap/fe/navigation/designtime/codeassistance/Library.xmlmeta.json +1 -0
  1296. package/packages/sap.fe.navigation/test/sap/fe/navigation/designtime/codeassistance/Library.xmltemplates.json +1 -0
  1297. package/packages/sap.fe.navigation/test/sap/fe/navigation/qunit/index.json +17 -0
  1298. package/packages/sap.fe.navigation/test/sap/fe/navigation/qunit/navigation/CrossAppNavigationServiceMock.js +110 -0
  1299. package/packages/sap.fe.navigation/test/sap/fe/navigation/qunit/navigation/NavigationHandlerTest.qunit.js +8625 -0
  1300. package/packages/sap.fe.navigation/test/sap/fe/navigation/qunit/navigation/PresentationVariantTest.qunit.js +179 -0
  1301. package/packages/sap.fe.navigation/test/sap/fe/navigation/qunit/navigation/SelectionVariantTest.qunit.js +1366 -0
  1302. package/packages/sap.fe.navigation/test/sap/fe/navigation/qunit/teststarter.qunit.html +13 -0
  1303. package/packages/sap.fe.navigation/test/sap/fe/navigation/qunit/testsuite.qunit.html +14 -0
  1304. package/packages/sap.fe.navigation/test/sap/fe/navigation/qunit/testsuite.qunit.js +41 -0
  1305. package/packages/sap.fe.placeholder/src/sap/fe/placeholder/.library +35 -0
  1306. package/packages/sap.fe.placeholder/src/sap/fe/placeholder/.theming +5 -0
  1307. package/packages/sap.fe.placeholder/src/sap/fe/placeholder/controller/Placeholder-dbg.controller.js +60 -0
  1308. package/packages/sap.fe.placeholder/src/sap/fe/placeholder/controller/Placeholder.controller.js +6 -0
  1309. package/packages/sap.fe.placeholder/src/sap/fe/placeholder/library-dbg.js +41 -0
  1310. package/packages/sap.fe.placeholder/src/sap/fe/placeholder/library-h2-preload.js +20 -0
  1311. package/packages/sap.fe.placeholder/src/sap/fe/placeholder/library-h2-preload.js.map +9 -0
  1312. package/packages/sap.fe.placeholder/src/sap/fe/placeholder/library-preload.js +21 -0
  1313. package/packages/sap.fe.placeholder/src/sap/fe/placeholder/library-preload.js.map +9 -0
  1314. package/packages/sap.fe.placeholder/src/sap/fe/placeholder/library.js +6 -0
  1315. package/packages/sap.fe.placeholder/src/sap/fe/placeholder/manifest.json +49 -0
  1316. package/packages/sap.fe.placeholder/src/sap/fe/placeholder/resources.json +725 -0
  1317. package/packages/sap.fe.placeholder/src/sap/fe/placeholder/themes/base/.theming +5 -0
  1318. package/packages/sap.fe.placeholder/src/sap/fe/placeholder/themes/base/Placeholder.less +504 -0
  1319. package/packages/sap.fe.placeholder/src/sap/fe/placeholder/themes/base/css_variables.css +3 -0
  1320. package/packages/sap.fe.placeholder/src/sap/fe/placeholder/themes/base/css_variables.less +4 -0
  1321. package/packages/sap.fe.placeholder/src/sap/fe/placeholder/themes/base/css_variables.source.less +1439 -0
  1322. package/packages/sap.fe.placeholder/src/sap/fe/placeholder/themes/base/library-RTL.css +3 -0
  1323. package/packages/sap.fe.placeholder/src/sap/fe/placeholder/themes/base/library-parameters.json +1 -0
  1324. package/packages/sap.fe.placeholder/src/sap/fe/placeholder/themes/base/library.css +3 -0
  1325. package/packages/sap.fe.placeholder/src/sap/fe/placeholder/themes/base/library.less +511 -0
  1326. package/packages/sap.fe.placeholder/src/sap/fe/placeholder/themes/base/library.source.less +3 -0
  1327. package/packages/sap.fe.placeholder/src/sap/fe/placeholder/themes/base/library_skeleton-RTL.css +1 -0
  1328. package/packages/sap.fe.placeholder/src/sap/fe/placeholder/themes/base/library_skeleton.css +1 -0
  1329. package/packages/sap.fe.placeholder/src/sap/fe/placeholder/themes/base/resources.json +70 -0
  1330. package/packages/sap.fe.placeholder/src/sap/fe/placeholder/themes/sap_belize/.theming +27 -0
  1331. package/packages/sap.fe.placeholder/src/sap/fe/placeholder/themes/sap_belize/css_variables.css +4 -0
  1332. package/packages/sap.fe.placeholder/src/sap/fe/placeholder/themes/sap_belize/css_variables.less +1497 -0
  1333. package/packages/sap.fe.placeholder/src/sap/fe/placeholder/themes/sap_belize/css_variables.source.less +1487 -0
  1334. package/packages/sap.fe.placeholder/src/sap/fe/placeholder/themes/sap_belize/library-RTL.css +4 -0
  1335. package/packages/sap.fe.placeholder/src/sap/fe/placeholder/themes/sap_belize/library-parameters.json +1 -0
  1336. package/packages/sap.fe.placeholder/src/sap/fe/placeholder/themes/sap_belize/library.css +4 -0
  1337. package/packages/sap.fe.placeholder/src/sap/fe/placeholder/themes/sap_belize/library.less +6 -0
  1338. package/packages/sap.fe.placeholder/src/sap/fe/placeholder/themes/sap_belize/library.source.less +3 -0
  1339. package/packages/sap.fe.placeholder/src/sap/fe/placeholder/themes/sap_belize/library_skeleton-RTL.css +1 -0
  1340. package/packages/sap.fe.placeholder/src/sap/fe/placeholder/themes/sap_belize/library_skeleton.css +1 -0
  1341. package/packages/sap.fe.placeholder/src/sap/fe/placeholder/themes/sap_belize/resources.json +64 -0
  1342. package/packages/sap.fe.placeholder/src/sap/fe/placeholder/themes/sap_belize_hcb/.theming +6 -0
  1343. package/packages/sap.fe.placeholder/src/sap/fe/placeholder/themes/sap_belize_hcb/css_variables.css +3 -0
  1344. package/packages/sap.fe.placeholder/src/sap/fe/placeholder/themes/sap_belize_hcb/css_variables.less +1463 -0
  1345. package/packages/sap.fe.placeholder/src/sap/fe/placeholder/themes/sap_belize_hcb/css_variables.source.less +1453 -0
  1346. package/packages/sap.fe.placeholder/src/sap/fe/placeholder/themes/sap_belize_hcb/library-RTL.css +3 -0
  1347. package/packages/sap.fe.placeholder/src/sap/fe/placeholder/themes/sap_belize_hcb/library-parameters.json +1 -0
  1348. package/packages/sap.fe.placeholder/src/sap/fe/placeholder/themes/sap_belize_hcb/library.css +3 -0
  1349. package/packages/sap.fe.placeholder/src/sap/fe/placeholder/themes/sap_belize_hcb/library.less +6 -0
  1350. package/packages/sap.fe.placeholder/src/sap/fe/placeholder/themes/sap_belize_hcb/library.source.less +3 -0
  1351. package/packages/sap.fe.placeholder/src/sap/fe/placeholder/themes/sap_belize_hcb/library_skeleton-RTL.css +1 -0
  1352. package/packages/sap.fe.placeholder/src/sap/fe/placeholder/themes/sap_belize_hcb/library_skeleton.css +1 -0
  1353. package/packages/sap.fe.placeholder/src/sap/fe/placeholder/themes/sap_belize_hcb/resources.json +64 -0
  1354. package/packages/sap.fe.placeholder/src/sap/fe/placeholder/themes/sap_belize_hcw/.theming +6 -0
  1355. package/packages/sap.fe.placeholder/src/sap/fe/placeholder/themes/sap_belize_hcw/css_variables.css +3 -0
  1356. package/packages/sap.fe.placeholder/src/sap/fe/placeholder/themes/sap_belize_hcw/css_variables.less +1463 -0
  1357. package/packages/sap.fe.placeholder/src/sap/fe/placeholder/themes/sap_belize_hcw/css_variables.source.less +1453 -0
  1358. package/packages/sap.fe.placeholder/src/sap/fe/placeholder/themes/sap_belize_hcw/library-RTL.css +3 -0
  1359. package/packages/sap.fe.placeholder/src/sap/fe/placeholder/themes/sap_belize_hcw/library-parameters.json +1 -0
  1360. package/packages/sap.fe.placeholder/src/sap/fe/placeholder/themes/sap_belize_hcw/library.css +3 -0
  1361. package/packages/sap.fe.placeholder/src/sap/fe/placeholder/themes/sap_belize_hcw/library.less +6 -0
  1362. package/packages/sap.fe.placeholder/src/sap/fe/placeholder/themes/sap_belize_hcw/library.source.less +3 -0
  1363. package/packages/sap.fe.placeholder/src/sap/fe/placeholder/themes/sap_belize_hcw/library_skeleton-RTL.css +1 -0
  1364. package/packages/sap.fe.placeholder/src/sap/fe/placeholder/themes/sap_belize_hcw/library_skeleton.css +1 -0
  1365. package/packages/sap.fe.placeholder/src/sap/fe/placeholder/themes/sap_belize_hcw/resources.json +64 -0
  1366. package/packages/sap.fe.placeholder/src/sap/fe/placeholder/themes/sap_belize_plus/.theming +26 -0
  1367. package/packages/sap.fe.placeholder/src/sap/fe/placeholder/themes/sap_belize_plus/css_variables.css +4 -0
  1368. package/packages/sap.fe.placeholder/src/sap/fe/placeholder/themes/sap_belize_plus/css_variables.less +1497 -0
  1369. package/packages/sap.fe.placeholder/src/sap/fe/placeholder/themes/sap_belize_plus/css_variables.source.less +1487 -0
  1370. package/packages/sap.fe.placeholder/src/sap/fe/placeholder/themes/sap_belize_plus/library-RTL.css +4 -0
  1371. package/packages/sap.fe.placeholder/src/sap/fe/placeholder/themes/sap_belize_plus/library-parameters.json +1 -0
  1372. package/packages/sap.fe.placeholder/src/sap/fe/placeholder/themes/sap_belize_plus/library.css +4 -0
  1373. package/packages/sap.fe.placeholder/src/sap/fe/placeholder/themes/sap_belize_plus/library.less +6 -0
  1374. package/packages/sap.fe.placeholder/src/sap/fe/placeholder/themes/sap_belize_plus/library.source.less +3 -0
  1375. package/packages/sap.fe.placeholder/src/sap/fe/placeholder/themes/sap_belize_plus/library_skeleton-RTL.css +1 -0
  1376. package/packages/sap.fe.placeholder/src/sap/fe/placeholder/themes/sap_belize_plus/library_skeleton.css +1 -0
  1377. package/packages/sap.fe.placeholder/src/sap/fe/placeholder/themes/sap_belize_plus/resources.json +64 -0
  1378. package/packages/sap.fe.placeholder/src/sap/fe/placeholder/themes/sap_fiori_3/.theming +6 -0
  1379. package/packages/sap.fe.placeholder/src/sap/fe/placeholder/themes/sap_fiori_3/css_variables.css +3 -0
  1380. package/packages/sap.fe.placeholder/src/sap/fe/placeholder/themes/sap_fiori_3/css_variables.less +1468 -0
  1381. package/packages/sap.fe.placeholder/src/sap/fe/placeholder/themes/sap_fiori_3/css_variables.source.less +1458 -0
  1382. package/packages/sap.fe.placeholder/src/sap/fe/placeholder/themes/sap_fiori_3/library-RTL.css +3 -0
  1383. package/packages/sap.fe.placeholder/src/sap/fe/placeholder/themes/sap_fiori_3/library-parameters.json +1 -0
  1384. package/packages/sap.fe.placeholder/src/sap/fe/placeholder/themes/sap_fiori_3/library.css +3 -0
  1385. package/packages/sap.fe.placeholder/src/sap/fe/placeholder/themes/sap_fiori_3/library.less +6 -0
  1386. package/packages/sap.fe.placeholder/src/sap/fe/placeholder/themes/sap_fiori_3/library.source.less +3 -0
  1387. package/packages/sap.fe.placeholder/src/sap/fe/placeholder/themes/sap_fiori_3/library_skeleton-RTL.css +1 -0
  1388. package/packages/sap.fe.placeholder/src/sap/fe/placeholder/themes/sap_fiori_3/library_skeleton.css +1 -0
  1389. package/packages/sap.fe.placeholder/src/sap/fe/placeholder/themes/sap_fiori_3/resources.json +64 -0
  1390. package/packages/sap.fe.placeholder/src/sap/fe/placeholder/themes/sap_fiori_3_dark/.theming +6 -0
  1391. package/packages/sap.fe.placeholder/src/sap/fe/placeholder/themes/sap_fiori_3_dark/css_variables.css +3 -0
  1392. package/packages/sap.fe.placeholder/src/sap/fe/placeholder/themes/sap_fiori_3_dark/css_variables.less +1468 -0
  1393. package/packages/sap.fe.placeholder/src/sap/fe/placeholder/themes/sap_fiori_3_dark/css_variables.source.less +1458 -0
  1394. package/packages/sap.fe.placeholder/src/sap/fe/placeholder/themes/sap_fiori_3_dark/library-RTL.css +3 -0
  1395. package/packages/sap.fe.placeholder/src/sap/fe/placeholder/themes/sap_fiori_3_dark/library-parameters.json +1 -0
  1396. package/packages/sap.fe.placeholder/src/sap/fe/placeholder/themes/sap_fiori_3_dark/library.css +3 -0
  1397. package/packages/sap.fe.placeholder/src/sap/fe/placeholder/themes/sap_fiori_3_dark/library.less +6 -0
  1398. package/packages/sap.fe.placeholder/src/sap/fe/placeholder/themes/sap_fiori_3_dark/library.source.less +3 -0
  1399. package/packages/sap.fe.placeholder/src/sap/fe/placeholder/themes/sap_fiori_3_dark/library_skeleton-RTL.css +1 -0
  1400. package/packages/sap.fe.placeholder/src/sap/fe/placeholder/themes/sap_fiori_3_dark/library_skeleton.css +1 -0
  1401. package/packages/sap.fe.placeholder/src/sap/fe/placeholder/themes/sap_fiori_3_dark/resources.json +64 -0
  1402. package/packages/sap.fe.placeholder/src/sap/fe/placeholder/themes/sap_fiori_3_hcb/.theming +6 -0
  1403. package/packages/sap.fe.placeholder/src/sap/fe/placeholder/themes/sap_fiori_3_hcb/css_variables.css +3 -0
  1404. package/packages/sap.fe.placeholder/src/sap/fe/placeholder/themes/sap_fiori_3_hcb/css_variables.less +1464 -0
  1405. package/packages/sap.fe.placeholder/src/sap/fe/placeholder/themes/sap_fiori_3_hcb/css_variables.source.less +1454 -0
  1406. package/packages/sap.fe.placeholder/src/sap/fe/placeholder/themes/sap_fiori_3_hcb/library-RTL.css +3 -0
  1407. package/packages/sap.fe.placeholder/src/sap/fe/placeholder/themes/sap_fiori_3_hcb/library-parameters.json +1 -0
  1408. package/packages/sap.fe.placeholder/src/sap/fe/placeholder/themes/sap_fiori_3_hcb/library.css +3 -0
  1409. package/packages/sap.fe.placeholder/src/sap/fe/placeholder/themes/sap_fiori_3_hcb/library.less +6 -0
  1410. package/packages/sap.fe.placeholder/src/sap/fe/placeholder/themes/sap_fiori_3_hcb/library.source.less +3 -0
  1411. package/packages/sap.fe.placeholder/src/sap/fe/placeholder/themes/sap_fiori_3_hcb/library_skeleton-RTL.css +1 -0
  1412. package/packages/sap.fe.placeholder/src/sap/fe/placeholder/themes/sap_fiori_3_hcb/library_skeleton.css +1 -0
  1413. package/packages/sap.fe.placeholder/src/sap/fe/placeholder/themes/sap_fiori_3_hcb/resources.json +64 -0
  1414. package/packages/sap.fe.placeholder/src/sap/fe/placeholder/themes/sap_fiori_3_hcw/.theming +6 -0
  1415. package/packages/sap.fe.placeholder/src/sap/fe/placeholder/themes/sap_fiori_3_hcw/css_variables.css +3 -0
  1416. package/packages/sap.fe.placeholder/src/sap/fe/placeholder/themes/sap_fiori_3_hcw/css_variables.less +1464 -0
  1417. package/packages/sap.fe.placeholder/src/sap/fe/placeholder/themes/sap_fiori_3_hcw/css_variables.source.less +1454 -0
  1418. package/packages/sap.fe.placeholder/src/sap/fe/placeholder/themes/sap_fiori_3_hcw/library-RTL.css +3 -0
  1419. package/packages/sap.fe.placeholder/src/sap/fe/placeholder/themes/sap_fiori_3_hcw/library-parameters.json +1 -0
  1420. package/packages/sap.fe.placeholder/src/sap/fe/placeholder/themes/sap_fiori_3_hcw/library.css +3 -0
  1421. package/packages/sap.fe.placeholder/src/sap/fe/placeholder/themes/sap_fiori_3_hcw/library.less +6 -0
  1422. package/packages/sap.fe.placeholder/src/sap/fe/placeholder/themes/sap_fiori_3_hcw/library.source.less +3 -0
  1423. package/packages/sap.fe.placeholder/src/sap/fe/placeholder/themes/sap_fiori_3_hcw/library_skeleton-RTL.css +1 -0
  1424. package/packages/sap.fe.placeholder/src/sap/fe/placeholder/themes/sap_fiori_3_hcw/library_skeleton.css +1 -0
  1425. package/packages/sap.fe.placeholder/src/sap/fe/placeholder/themes/sap_fiori_3_hcw/resources.json +64 -0
  1426. package/packages/sap.fe.placeholder/src/sap/fe/placeholder/view/PlaceholderALP.fragment.html +10 -0
  1427. package/packages/sap.fe.placeholder/src/sap/fe/placeholder/view/PlaceholderALP.view.xml +11 -0
  1428. package/packages/sap.fe.placeholder/src/sap/fe/placeholder/view/PlaceholderLR.fragment.html +8 -0
  1429. package/packages/sap.fe.placeholder/src/sap/fe/placeholder/view/PlaceholderLR.view.xml +11 -0
  1430. package/packages/sap.fe.placeholder/src/sap/fe/placeholder/view/PlaceholderOP.fragment.html +8 -0
  1431. package/packages/sap.fe.placeholder/src/sap/fe/placeholder/view/PlaceholderOP.view.xml +11 -0
  1432. package/packages/sap.fe.placeholder/src/sap/fe/placeholder/view/PlaceholderOVP.fragment.html +8 -0
  1433. package/packages/sap.fe.placeholder/src/sap/fe/placeholder/view/PlaceholderOVP.view.xml +11 -0
  1434. package/packages/sap.fe.placeholder/test/sap/fe/placeholder/designtime/api.json +1 -0
  1435. package/packages/sap.fe.placeholder/test/sap/fe/placeholder/designtime/apiref/api.json +1 -0
  1436. package/packages/sap.fe.placeholder/test/sap/fe/placeholder/designtime/codeassistance/Library.jsmeta.json +1 -0
  1437. package/packages/sap.fe.placeholder/test/sap/fe/placeholder/designtime/codeassistance/Library.jstemplates.json +1 -0
  1438. package/packages/sap.fe.placeholder/test/sap/fe/placeholder/designtime/codeassistance/Library.xmlmeta.json +1 -0
  1439. package/packages/sap.fe.placeholder/test/sap/fe/placeholder/designtime/codeassistance/Library.xmltemplates.json +1 -0
  1440. package/packages/sap.fe.templates/src/sap/fe/templates/.library +74 -0
  1441. package/packages/sap.fe.templates/src/sap/fe/templates/.theming +6 -0
  1442. package/packages/sap.fe.templates/src/sap/fe/templates/AnalyticalListPage/Component-dbg.js +15 -0
  1443. package/packages/sap.fe.templates/src/sap/fe/templates/AnalyticalListPage/Component.js +6 -0
  1444. package/packages/sap.fe.templates/src/sap/fe/templates/AnalyticalListPage/chart/FEChartDelegate-dbg.js +37 -0
  1445. package/packages/sap.fe.templates/src/sap/fe/templates/AnalyticalListPage/chart/FEChartDelegate.js +6 -0
  1446. package/packages/sap.fe.templates/src/sap/fe/templates/AnalyticalListPage/manifest.json +27 -0
  1447. package/packages/sap.fe.templates/src/sap/fe/templates/AnalyticalListPage/resources.json +27 -0
  1448. package/packages/sap.fe.templates/src/sap/fe/templates/ListComponent-dbg.js +121 -0
  1449. package/packages/sap.fe.templates/src/sap/fe/templates/ListComponent.js +6 -0
  1450. package/packages/sap.fe.templates/src/sap/fe/templates/ListReport/Component-dbg.js +42 -0
  1451. package/packages/sap.fe.templates/src/sap/fe/templates/ListReport/Component.js +6 -0
  1452. package/packages/sap.fe.templates/src/sap/fe/templates/ListReport/ExtensionAPI-dbg.js +95 -0
  1453. package/packages/sap.fe.templates/src/sap/fe/templates/ListReport/ExtensionAPI.js +6 -0
  1454. package/packages/sap.fe.templates/src/sap/fe/templates/ListReport/ListReport.view.xml +199 -0
  1455. package/packages/sap.fe.templates/src/sap/fe/templates/ListReport/ListReportController-dbg.controller.js +954 -0
  1456. package/packages/sap.fe.templates/src/sap/fe/templates/ListReport/ListReportController.controller.js +6 -0
  1457. package/packages/sap.fe.templates/src/sap/fe/templates/ListReport/manifest.json +28 -0
  1458. package/packages/sap.fe.templates/src/sap/fe/templates/ListReport/overrides/IntentBasedNavigation-dbg.js +52 -0
  1459. package/packages/sap.fe.templates/src/sap/fe/templates/ListReport/overrides/IntentBasedNavigation.js +6 -0
  1460. package/packages/sap.fe.templates/src/sap/fe/templates/ListReport/overrides/Share-dbg.js +124 -0
  1461. package/packages/sap.fe.templates/src/sap/fe/templates/ListReport/overrides/Share.js +6 -0
  1462. package/packages/sap.fe.templates/src/sap/fe/templates/ListReport/overrides/ViewState-dbg.js +264 -0
  1463. package/packages/sap.fe.templates/src/sap/fe/templates/ListReport/overrides/ViewState.js +6 -0
  1464. package/packages/sap.fe.templates/src/sap/fe/templates/ListReport/resources.json +79 -0
  1465. package/packages/sap.fe.templates/src/sap/fe/templates/ListReport/view/fragments/CollectionVisualization.fragment.xml +32 -0
  1466. package/packages/sap.fe.templates/src/sap/fe/templates/ListReport/view/fragments/CustomView.fragment.xml +10 -0
  1467. package/packages/sap.fe.templates/src/sap/fe/templates/ListReport/view/fragments/MultipleMode.fragment.xml +49 -0
  1468. package/packages/sap.fe.templates/src/sap/fe/templates/ObjectPage/AnnotationHelper-dbg.js +457 -0
  1469. package/packages/sap.fe.templates/src/sap/fe/templates/ObjectPage/AnnotationHelper.js +6 -0
  1470. package/packages/sap.fe.templates/src/sap/fe/templates/ObjectPage/Component-dbg.js +139 -0
  1471. package/packages/sap.fe.templates/src/sap/fe/templates/ObjectPage/Component.js +6 -0
  1472. package/packages/sap.fe.templates/src/sap/fe/templates/ObjectPage/ExtensionAPI-dbg.js +130 -0
  1473. package/packages/sap.fe.templates/src/sap/fe/templates/ObjectPage/ExtensionAPI.js +6 -0
  1474. package/packages/sap.fe.templates/src/sap/fe/templates/ObjectPage/ObjectPage.view.xml +184 -0
  1475. package/packages/sap.fe.templates/src/sap/fe/templates/ObjectPage/ObjectPageController-dbg.controller.js +1460 -0
  1476. package/packages/sap.fe.templates/src/sap/fe/templates/ObjectPage/ObjectPageController.controller.js +6 -0
  1477. package/packages/sap.fe.templates/src/sap/fe/templates/ObjectPage/controls/StashableHBox-dbg.js +90 -0
  1478. package/packages/sap.fe.templates/src/sap/fe/templates/ObjectPage/controls/StashableHBox.js +6 -0
  1479. package/packages/sap.fe.templates/src/sap/fe/templates/ObjectPage/controls/StashableVBox-dbg.js +27 -0
  1480. package/packages/sap.fe.templates/src/sap/fe/templates/ObjectPage/controls/StashableVBox.js +6 -0
  1481. package/packages/sap.fe.templates/src/sap/fe/templates/ObjectPage/controls/SubSectionBlock-dbg.js +57 -0
  1482. package/packages/sap.fe.templates/src/sap/fe/templates/ObjectPage/controls/SubSectionBlock.js +6 -0
  1483. package/packages/sap.fe.templates/src/sap/fe/templates/ObjectPage/designtime/FlexBox-dbg.designtime.js +19 -0
  1484. package/packages/sap.fe.templates/src/sap/fe/templates/ObjectPage/designtime/FlexBox.designtime.js +6 -0
  1485. package/packages/sap.fe.templates/src/sap/fe/templates/ObjectPage/designtime/StashableHBox-dbg.designtime.js +51 -0
  1486. package/packages/sap.fe.templates/src/sap/fe/templates/ObjectPage/designtime/StashableHBox.designtime.js +6 -0
  1487. package/packages/sap.fe.templates/src/sap/fe/templates/ObjectPage/designtime/StashableVBox-dbg.designtime.js +38 -0
  1488. package/packages/sap.fe.templates/src/sap/fe/templates/ObjectPage/designtime/StashableVBox.designtime.js +6 -0
  1489. package/packages/sap.fe.templates/src/sap/fe/templates/ObjectPage/flexibility/StashableHBox.flexibility-dbg.js +19 -0
  1490. package/packages/sap.fe.templates/src/sap/fe/templates/ObjectPage/flexibility/StashableHBox.flexibility.js +6 -0
  1491. package/packages/sap.fe.templates/src/sap/fe/templates/ObjectPage/flexibility/StashableVBox.flexibility-dbg.js +15 -0
  1492. package/packages/sap.fe.templates/src/sap/fe/templates/ObjectPage/flexibility/StashableVBox.flexibility.js +6 -0
  1493. package/packages/sap.fe.templates/src/sap/fe/templates/ObjectPage/manifest.json +122 -0
  1494. package/packages/sap.fe.templates/src/sap/fe/templates/ObjectPage/overrides/IntentBasedNavigation-dbg.js +55 -0
  1495. package/packages/sap.fe.templates/src/sap/fe/templates/ObjectPage/overrides/IntentBasedNavigation.js +6 -0
  1496. package/packages/sap.fe.templates/src/sap/fe/templates/ObjectPage/overrides/InternalRouting-dbg.js +20 -0
  1497. package/packages/sap.fe.templates/src/sap/fe/templates/ObjectPage/overrides/InternalRouting.js +6 -0
  1498. package/packages/sap.fe.templates/src/sap/fe/templates/ObjectPage/overrides/MessageHandler-dbg.js +20 -0
  1499. package/packages/sap.fe.templates/src/sap/fe/templates/ObjectPage/overrides/MessageHandler.js +6 -0
  1500. package/packages/sap.fe.templates/src/sap/fe/templates/ObjectPage/overrides/Routing-dbg.js +21 -0
  1501. package/packages/sap.fe.templates/src/sap/fe/templates/ObjectPage/overrides/Routing.js +6 -0
  1502. package/packages/sap.fe.templates/src/sap/fe/templates/ObjectPage/overrides/Share-dbg.js +303 -0
  1503. package/packages/sap.fe.templates/src/sap/fe/templates/ObjectPage/overrides/Share.js +6 -0
  1504. package/packages/sap.fe.templates/src/sap/fe/templates/ObjectPage/overrides/ViewState-dbg.js +45 -0
  1505. package/packages/sap.fe.templates/src/sap/fe/templates/ObjectPage/overrides/ViewState.js +6 -0
  1506. package/packages/sap.fe.templates/src/sap/fe/templates/ObjectPage/resources.json +282 -0
  1507. package/packages/sap.fe.templates/src/sap/fe/templates/ObjectPage/templating/ObjectPageTemplating-dbg.js +117 -0
  1508. package/packages/sap.fe.templates/src/sap/fe/templates/ObjectPage/templating/ObjectPageTemplating.js +5 -0
  1509. package/packages/sap.fe.templates/src/sap/fe/templates/ObjectPage/templating/ObjectPageTemplating.ts +124 -0
  1510. package/packages/sap.fe.templates/src/sap/fe/templates/ObjectPage/view/fragments/Actions.fragment.xml +183 -0
  1511. package/packages/sap.fe.templates/src/sap/fe/templates/ObjectPage/view/fragments/EditableHeaderFacet.fragment.xml +160 -0
  1512. package/packages/sap.fe.templates/src/sap/fe/templates/ObjectPage/view/fragments/FooterContent.fragment.xml +117 -0
  1513. package/packages/sap.fe.templates/src/sap/fe/templates/ObjectPage/view/fragments/FormActionButtons.fragment.xml +79 -0
  1514. package/packages/sap.fe.templates/src/sap/fe/templates/ObjectPage/view/fragments/FormActions.fragment.xml +24 -0
  1515. package/packages/sap.fe.templates/src/sap/fe/templates/ObjectPage/view/fragments/HeaderContent.fragment.xml +54 -0
  1516. package/packages/sap.fe.templates/src/sap/fe/templates/ObjectPage/view/fragments/HeaderDataPoint.fragment.xml +26 -0
  1517. package/packages/sap.fe.templates/src/sap/fe/templates/ObjectPage/view/fragments/HeaderDataPointTitle.fragment.xml +69 -0
  1518. package/packages/sap.fe.templates/src/sap/fe/templates/ObjectPage/view/fragments/HeaderFacet.fragment.xml +90 -0
  1519. package/packages/sap.fe.templates/src/sap/fe/templates/ObjectPage/view/fragments/HeaderFacetCustomContainer.fragment.xml +41 -0
  1520. package/packages/sap.fe.templates/src/sap/fe/templates/ObjectPage/view/fragments/HeaderImage.fragment.xml +24 -0
  1521. package/packages/sap.fe.templates/src/sap/fe/templates/ObjectPage/view/fragments/ObjectPageHeaderAddress.fragment.xml +20 -0
  1522. package/packages/sap.fe.templates/src/sap/fe/templates/ObjectPage/view/fragments/ObjectPageHeaderForm.fragment.xml +72 -0
  1523. package/packages/sap.fe.templates/src/sap/fe/templates/ObjectPage/view/fragments/RelatedApps.fragment.xml +22 -0
  1524. package/packages/sap.fe.templates/src/sap/fe/templates/ObjectPage/view/fragments/Section.fragment.xml +71 -0
  1525. package/packages/sap.fe.templates/src/sap/fe/templates/ObjectPage/view/fragments/SectionContent.fragment.xml +175 -0
  1526. package/packages/sap.fe.templates/src/sap/fe/templates/ObjectPage/view/fragments/SectionCustomSection.fragment.xml +18 -0
  1527. package/packages/sap.fe.templates/src/sap/fe/templates/ObjectPage/view/fragments/SectionFormContent.fragment.xml +18 -0
  1528. package/packages/sap.fe.templates/src/sap/fe/templates/ObjectPage/view/fragments/SectionMoreFormContent.fragment.xml +18 -0
  1529. package/packages/sap.fe.templates/src/sap/fe/templates/ObjectPage/view/fragments/SectionPresentationVisualization.fragment.xml +17 -0
  1530. package/packages/sap.fe.templates/src/sap/fe/templates/ObjectPage/view/fragments/SideContentCustomContainer.fragment.xml +19 -0
  1531. package/packages/sap.fe.templates/src/sap/fe/templates/ObjectPage/view/fragments/TitleAndSubtitle.fragment.xml +24 -0
  1532. package/packages/sap.fe.templates/src/sap/fe/templates/RootContainer/controller/Fcl-dbg.controller.js +816 -0
  1533. package/packages/sap.fe.templates/src/sap/fe/templates/RootContainer/controller/Fcl.controller.js +6 -0
  1534. package/packages/sap.fe.templates/src/sap/fe/templates/RootContainer/controller/NavContainer-dbg.controller.js +176 -0
  1535. package/packages/sap.fe.templates/src/sap/fe/templates/RootContainer/controller/NavContainer.controller.js +6 -0
  1536. package/packages/sap.fe.templates/src/sap/fe/templates/RootContainer/controller/RootContainerBaseController-dbg.js +441 -0
  1537. package/packages/sap.fe.templates/src/sap/fe/templates/RootContainer/controller/RootContainerBaseController.js +6 -0
  1538. package/packages/sap.fe.templates/src/sap/fe/templates/RootContainer/overrides/EditFlow-dbg.js +18 -0
  1539. package/packages/sap.fe.templates/src/sap/fe/templates/RootContainer/overrides/EditFlow.js +6 -0
  1540. package/packages/sap.fe.templates/src/sap/fe/templates/RootContainer/view/Fcl.view.xml +15 -0
  1541. package/packages/sap.fe.templates/src/sap/fe/templates/RootContainer/view/NavContainer.view.xml +9 -0
  1542. package/packages/sap.fe.templates/src/sap/fe/templates/RootContainer/view/PlaceholderLR.view.xml +617 -0
  1543. package/packages/sap.fe.templates/src/sap/fe/templates/RootContainer/view/PlaceholderOP.view.xml +588 -0
  1544. package/packages/sap.fe.templates/src/sap/fe/templates/controls/Chart.fragment.xml +20 -0
  1545. package/packages/sap.fe.templates/src/sap/fe/templates/controls/OverflowToolbarButtonHover-dbg.js +26 -0
  1546. package/packages/sap.fe.templates/src/sap/fe/templates/controls/OverflowToolbarButtonHover.js +6 -0
  1547. package/packages/sap.fe.templates/src/sap/fe/templates/controls/Paginator-dbg.js +174 -0
  1548. package/packages/sap.fe.templates/src/sap/fe/templates/controls/Paginator.control.xml +24 -0
  1549. package/packages/sap.fe.templates/src/sap/fe/templates/controls/Paginator.js +6 -0
  1550. package/packages/sap.fe.templates/src/sap/fe/templates/controls/Table.fragment.xml +23 -0
  1551. package/packages/sap.fe.templates/src/sap/fe/templates/designtime/library-preload.designtime.js +10 -0
  1552. package/packages/sap.fe.templates/src/sap/fe/templates/designtime/library-preload.designtime.js.map +9 -0
  1553. package/packages/sap.fe.templates/src/sap/fe/templates/library-dbg.js +72 -0
  1554. package/packages/sap.fe.templates/src/sap/fe/templates/library-h2-preload.js +77 -0
  1555. package/packages/sap.fe.templates/src/sap/fe/templates/library-h2-preload.js.map +9 -0
  1556. package/packages/sap.fe.templates/src/sap/fe/templates/library-preload.js +154 -0
  1557. package/packages/sap.fe.templates/src/sap/fe/templates/library-preload.js.map +9 -0
  1558. package/packages/sap.fe.templates/src/sap/fe/templates/library.js +6 -0
  1559. package/packages/sap.fe.templates/src/sap/fe/templates/manifest.json +136 -0
  1560. package/packages/sap.fe.templates/src/sap/fe/templates/messagebundle.properties +210 -0
  1561. package/packages/sap.fe.templates/src/sap/fe/templates/messagebundle_ar.properties +135 -0
  1562. package/packages/sap.fe.templates/src/sap/fe/templates/messagebundle_bg.properties +135 -0
  1563. package/packages/sap.fe.templates/src/sap/fe/templates/messagebundle_ca.properties +135 -0
  1564. package/packages/sap.fe.templates/src/sap/fe/templates/messagebundle_cs.properties +135 -0
  1565. package/packages/sap.fe.templates/src/sap/fe/templates/messagebundle_cy.properties +135 -0
  1566. package/packages/sap.fe.templates/src/sap/fe/templates/messagebundle_da.properties +135 -0
  1567. package/packages/sap.fe.templates/src/sap/fe/templates/messagebundle_de.properties +135 -0
  1568. package/packages/sap.fe.templates/src/sap/fe/templates/messagebundle_el.properties +135 -0
  1569. package/packages/sap.fe.templates/src/sap/fe/templates/messagebundle_en.properties +135 -0
  1570. package/packages/sap.fe.templates/src/sap/fe/templates/messagebundle_en_GB.properties +135 -0
  1571. package/packages/sap.fe.templates/src/sap/fe/templates/messagebundle_en_US_sappsd.properties +135 -0
  1572. package/packages/sap.fe.templates/src/sap/fe/templates/messagebundle_en_US_saprigi.properties +135 -0
  1573. package/packages/sap.fe.templates/src/sap/fe/templates/messagebundle_en_US_saptrc.properties +135 -0
  1574. package/packages/sap.fe.templates/src/sap/fe/templates/messagebundle_es.properties +135 -0
  1575. package/packages/sap.fe.templates/src/sap/fe/templates/messagebundle_es_MX.properties +135 -0
  1576. package/packages/sap.fe.templates/src/sap/fe/templates/messagebundle_et.properties +135 -0
  1577. package/packages/sap.fe.templates/src/sap/fe/templates/messagebundle_fi.properties +135 -0
  1578. package/packages/sap.fe.templates/src/sap/fe/templates/messagebundle_fr.properties +135 -0
  1579. package/packages/sap.fe.templates/src/sap/fe/templates/messagebundle_fr_CA.properties +135 -0
  1580. package/packages/sap.fe.templates/src/sap/fe/templates/messagebundle_hi.properties +135 -0
  1581. package/packages/sap.fe.templates/src/sap/fe/templates/messagebundle_hr.properties +135 -0
  1582. package/packages/sap.fe.templates/src/sap/fe/templates/messagebundle_hu.properties +135 -0
  1583. package/packages/sap.fe.templates/src/sap/fe/templates/messagebundle_id.properties +135 -0
  1584. package/packages/sap.fe.templates/src/sap/fe/templates/messagebundle_it.properties +135 -0
  1585. package/packages/sap.fe.templates/src/sap/fe/templates/messagebundle_iw.properties +135 -0
  1586. package/packages/sap.fe.templates/src/sap/fe/templates/messagebundle_ja.properties +135 -0
  1587. package/packages/sap.fe.templates/src/sap/fe/templates/messagebundle_kk.properties +135 -0
  1588. package/packages/sap.fe.templates/src/sap/fe/templates/messagebundle_ko.properties +135 -0
  1589. package/packages/sap.fe.templates/src/sap/fe/templates/messagebundle_lt.properties +135 -0
  1590. package/packages/sap.fe.templates/src/sap/fe/templates/messagebundle_lv.properties +135 -0
  1591. package/packages/sap.fe.templates/src/sap/fe/templates/messagebundle_ms.properties +135 -0
  1592. package/packages/sap.fe.templates/src/sap/fe/templates/messagebundle_nl.properties +135 -0
  1593. package/packages/sap.fe.templates/src/sap/fe/templates/messagebundle_no.properties +135 -0
  1594. package/packages/sap.fe.templates/src/sap/fe/templates/messagebundle_pl.properties +135 -0
  1595. package/packages/sap.fe.templates/src/sap/fe/templates/messagebundle_pt.properties +135 -0
  1596. package/packages/sap.fe.templates/src/sap/fe/templates/messagebundle_pt_PT.properties +135 -0
  1597. package/packages/sap.fe.templates/src/sap/fe/templates/messagebundle_ro.properties +135 -0
  1598. package/packages/sap.fe.templates/src/sap/fe/templates/messagebundle_ru.properties +135 -0
  1599. package/packages/sap.fe.templates/src/sap/fe/templates/messagebundle_sh.properties +135 -0
  1600. package/packages/sap.fe.templates/src/sap/fe/templates/messagebundle_sk.properties +135 -0
  1601. package/packages/sap.fe.templates/src/sap/fe/templates/messagebundle_sl.properties +135 -0
  1602. package/packages/sap.fe.templates/src/sap/fe/templates/messagebundle_sv.properties +135 -0
  1603. package/packages/sap.fe.templates/src/sap/fe/templates/messagebundle_th.properties +135 -0
  1604. package/packages/sap.fe.templates/src/sap/fe/templates/messagebundle_tr.properties +135 -0
  1605. package/packages/sap.fe.templates/src/sap/fe/templates/messagebundle_uk.properties +135 -0
  1606. package/packages/sap.fe.templates/src/sap/fe/templates/messagebundle_vi.properties +135 -0
  1607. package/packages/sap.fe.templates/src/sap/fe/templates/messagebundle_zh_CN.properties +135 -0
  1608. package/packages/sap.fe.templates/src/sap/fe/templates/messagebundle_zh_TW.properties +135 -0
  1609. package/packages/sap.fe.templates/src/sap/fe/templates/resources.json +2103 -0
  1610. package/packages/sap.fe.templates/test/sap/fe/templates/demokit/apps/itelo/webapp/Component.js +9 -0
  1611. package/packages/sap.fe.templates/test/sap/fe/templates/demokit/apps/itelo/webapp/WEB-INF/web.xml +120 -0
  1612. package/packages/sap.fe.templates/test/sap/fe/templates/demokit/apps/itelo/webapp/annotations/annotations.xml +43 -0
  1613. package/packages/sap.fe.templates/test/sap/fe/templates/demokit/apps/itelo/webapp/i18n/i18n.properties +13 -0
  1614. package/packages/sap.fe.templates/test/sap/fe/templates/demokit/apps/itelo/webapp/manifest.json +176 -0
  1615. package/packages/sap.fe.templates/test/sap/fe/templates/demokit/apps/itelo/webapp/test/manifestCreateDialogWithFCL.json +87 -0
  1616. package/packages/sap.fe.templates/test/sap/fe/templates/demokit/apps/itelo/webapp/test/testFLP.html +71 -0
  1617. package/packages/sap.fe.templates/test/sap/fe/templates/demokit/apps/itelo/webapp/test/testFLPService.html +82 -0
  1618. package/packages/sap.fe.templates/test/sap/fe/templates/demokit/flpSandbox.html +24 -0
  1619. package/packages/sap.fe.templates/test/sap/fe/templates/demokit/flpSandbox.js +225 -0
  1620. package/packages/sap.fe.templates/test/sap/fe/templates/demokit/mockServer.js +780 -0
  1621. package/packages/sap.fe.templates/test/sap/fe/templates/demokit/mockServerHelper.js +195 -0
  1622. package/packages/sap.fe.templates/test/sap/fe/templates/designtime/api.json +1 -0
  1623. package/packages/sap.fe.templates/test/sap/fe/templates/designtime/apiref/api.json +1 -0
  1624. package/packages/sap.fe.templates/test/sap/fe/templates/designtime/codeassistance/Library.jsmeta.json +1 -0
  1625. package/packages/sap.fe.templates/test/sap/fe/templates/designtime/codeassistance/Library.jstemplates.json +1 -0
  1626. package/packages/sap.fe.templates/test/sap/fe/templates/designtime/codeassistance/Library.xmlmeta.json +1 -0
  1627. package/packages/sap.fe.templates/test/sap/fe/templates/designtime/codeassistance/Library.xmltemplates.json +1 -0
  1628. package/packages/sap.fe.templates/test/sap/fe/templates/qunit/common/testHelper.js +80 -0
  1629. package/packages/sap.fe.templates/test/sap/fe/templates/qunit/common/utility.js +28 -0
  1630. package/packages/sap.fe.templates/test/sap/fe/templates/qunit/testsuite.qunit.html +14 -0
  1631. package/packages/sap.fe.templates/test/sap/fe/templates/qunit/testsuite.qunit.js +33 -0
  1632. package/packages/sap.fe.templates/test/sap/fe/templates/relnotes/changes-1.91.json +134 -0
  1633. package/packages/sap.fe.templates/test/sap/fe/templates/relnotes/changes-1.94.json +34 -0
  1634. package/packages/sap.fe.test/src/sap/fe/test/.library +30 -0
  1635. package/packages/sap.fe.test/src/sap/fe/test/.theming +6 -0
  1636. package/packages/sap.fe.test/src/sap/fe/test/BaseActions-dbg.js +107 -0
  1637. package/packages/sap.fe.test/src/sap/fe/test/BaseActions.js +6 -0
  1638. package/packages/sap.fe.test/src/sap/fe/test/BaseArrangements-dbg.js +199 -0
  1639. package/packages/sap.fe.test/src/sap/fe/test/BaseArrangements.js +6 -0
  1640. package/packages/sap.fe.test/src/sap/fe/test/BaseAssertions-dbg.js +56 -0
  1641. package/packages/sap.fe.test/src/sap/fe/test/BaseAssertions.js +6 -0
  1642. package/packages/sap.fe.test/src/sap/fe/test/ConfirmDialog-dbg.js +72 -0
  1643. package/packages/sap.fe.test/src/sap/fe/test/ConfirmDialog.js +6 -0
  1644. package/packages/sap.fe.test/src/sap/fe/test/FCLView-dbg.js +86 -0
  1645. package/packages/sap.fe.test/src/sap/fe/test/FCLView.js +6 -0
  1646. package/packages/sap.fe.test/src/sap/fe/test/Flexibility-dbg.js +743 -0
  1647. package/packages/sap.fe.test/src/sap/fe/test/Flexibility.js +6 -0
  1648. package/packages/sap.fe.test/src/sap/fe/test/FlexibleColumnLayout-dbg.js +149 -0
  1649. package/packages/sap.fe.test/src/sap/fe/test/FlexibleColumnLayout.js +6 -0
  1650. package/packages/sap.fe.test/src/sap/fe/test/JestTemplatingHelper-dbg.js +284 -0
  1651. package/packages/sap.fe.test/src/sap/fe/test/JestTemplatingHelper.js +5 -0
  1652. package/packages/sap.fe.test/src/sap/fe/test/JestTemplatingHelper.ts +242 -0
  1653. package/packages/sap.fe.test/src/sap/fe/test/JourneyRunner-dbg.js +314 -0
  1654. package/packages/sap.fe.test/src/sap/fe/test/JourneyRunner.js +6 -0
  1655. package/packages/sap.fe.test/src/sap/fe/test/ListReport-dbg.js +525 -0
  1656. package/packages/sap.fe.test/src/sap/fe/test/ListReport.js +6 -0
  1657. package/packages/sap.fe.test/src/sap/fe/test/LocationUtil-dbg.js +54 -0
  1658. package/packages/sap.fe.test/src/sap/fe/test/LocationUtil.js +6 -0
  1659. package/packages/sap.fe.test/src/sap/fe/test/ObjectPage-dbg.js +857 -0
  1660. package/packages/sap.fe.test/src/sap/fe/test/ObjectPage.js +6 -0
  1661. package/packages/sap.fe.test/src/sap/fe/test/Shell-dbg.js +226 -0
  1662. package/packages/sap.fe.test/src/sap/fe/test/Shell.js +6 -0
  1663. package/packages/sap.fe.test/src/sap/fe/test/Stubs-dbg.js +97 -0
  1664. package/packages/sap.fe.test/src/sap/fe/test/Stubs.js +6 -0
  1665. package/packages/sap.fe.test/src/sap/fe/test/TemplatePage-dbg.js +447 -0
  1666. package/packages/sap.fe.test/src/sap/fe/test/TemplatePage.js +6 -0
  1667. package/packages/sap.fe.test/src/sap/fe/test/TemplatingTestUtils-dbg.js +243 -0
  1668. package/packages/sap.fe.test/src/sap/fe/test/TemplatingTestUtils.js +6 -0
  1669. package/packages/sap.fe.test/src/sap/fe/test/Utils-dbg.js +301 -0
  1670. package/packages/sap.fe.test/src/sap/fe/test/Utils.js +6 -0
  1671. package/packages/sap.fe.test/src/sap/fe/test/api/APIHelper-dbg.js +117 -0
  1672. package/packages/sap.fe.test/src/sap/fe/test/api/APIHelper.js +6 -0
  1673. package/packages/sap.fe.test/src/sap/fe/test/api/BaseAPI-dbg.js +285 -0
  1674. package/packages/sap.fe.test/src/sap/fe/test/api/BaseAPI.js +6 -0
  1675. package/packages/sap.fe.test/src/sap/fe/test/api/ChartActions-dbg.js +131 -0
  1676. package/packages/sap.fe.test/src/sap/fe/test/api/ChartActions.js +6 -0
  1677. package/packages/sap.fe.test/src/sap/fe/test/api/ChartAssertions-dbg.js +114 -0
  1678. package/packages/sap.fe.test/src/sap/fe/test/api/ChartAssertions.js +6 -0
  1679. package/packages/sap.fe.test/src/sap/fe/test/api/DialogAPI-dbg.js +93 -0
  1680. package/packages/sap.fe.test/src/sap/fe/test/api/DialogAPI.js +6 -0
  1681. package/packages/sap.fe.test/src/sap/fe/test/api/DialogActions-dbg.js +101 -0
  1682. package/packages/sap.fe.test/src/sap/fe/test/api/DialogActions.js +6 -0
  1683. package/packages/sap.fe.test/src/sap/fe/test/api/DialogAssertions-dbg.js +123 -0
  1684. package/packages/sap.fe.test/src/sap/fe/test/api/DialogAssertions.js +6 -0
  1685. package/packages/sap.fe.test/src/sap/fe/test/api/DialogCreateActions-dbg.js +44 -0
  1686. package/packages/sap.fe.test/src/sap/fe/test/api/DialogCreateActions.js +6 -0
  1687. package/packages/sap.fe.test/src/sap/fe/test/api/DialogCreateAssertions-dbg.js +55 -0
  1688. package/packages/sap.fe.test/src/sap/fe/test/api/DialogCreateAssertions.js +6 -0
  1689. package/packages/sap.fe.test/src/sap/fe/test/api/DialogMessageActions-dbg.js +59 -0
  1690. package/packages/sap.fe.test/src/sap/fe/test/api/DialogMessageActions.js +6 -0
  1691. package/packages/sap.fe.test/src/sap/fe/test/api/DialogMessageAssertions-dbg.js +87 -0
  1692. package/packages/sap.fe.test/src/sap/fe/test/api/DialogMessageAssertions.js +6 -0
  1693. package/packages/sap.fe.test/src/sap/fe/test/api/DialogType-dbg.js +76 -0
  1694. package/packages/sap.fe.test/src/sap/fe/test/api/DialogType.js +6 -0
  1695. package/packages/sap.fe.test/src/sap/fe/test/api/DialogValueHelpActions-dbg.js +317 -0
  1696. package/packages/sap.fe.test/src/sap/fe/test/api/DialogValueHelpActions.js +6 -0
  1697. package/packages/sap.fe.test/src/sap/fe/test/api/DialogValueHelpAssertions-dbg.js +263 -0
  1698. package/packages/sap.fe.test/src/sap/fe/test/api/DialogValueHelpAssertions.js +6 -0
  1699. package/packages/sap.fe.test/src/sap/fe/test/api/EditState-dbg.js +67 -0
  1700. package/packages/sap.fe.test/src/sap/fe/test/api/EditState.js +6 -0
  1701. package/packages/sap.fe.test/src/sap/fe/test/api/FilterBarAPI-dbg.js +197 -0
  1702. package/packages/sap.fe.test/src/sap/fe/test/api/FilterBarAPI.js +6 -0
  1703. package/packages/sap.fe.test/src/sap/fe/test/api/FilterBarActions-dbg.js +310 -0
  1704. package/packages/sap.fe.test/src/sap/fe/test/api/FilterBarActions.js +6 -0
  1705. package/packages/sap.fe.test/src/sap/fe/test/api/FilterBarAssertions-dbg.js +413 -0
  1706. package/packages/sap.fe.test/src/sap/fe/test/api/FilterBarAssertions.js +6 -0
  1707. package/packages/sap.fe.test/src/sap/fe/test/api/FooterAPI-dbg.js +37 -0
  1708. package/packages/sap.fe.test/src/sap/fe/test/api/FooterAPI.js +6 -0
  1709. package/packages/sap.fe.test/src/sap/fe/test/api/FooterActionsBase-dbg.js +47 -0
  1710. package/packages/sap.fe.test/src/sap/fe/test/api/FooterActionsBase.js +6 -0
  1711. package/packages/sap.fe.test/src/sap/fe/test/api/FooterActionsOP-dbg.js +83 -0
  1712. package/packages/sap.fe.test/src/sap/fe/test/api/FooterActionsOP.js +6 -0
  1713. package/packages/sap.fe.test/src/sap/fe/test/api/FooterAssertionsBase-dbg.js +66 -0
  1714. package/packages/sap.fe.test/src/sap/fe/test/api/FooterAssertionsBase.js +6 -0
  1715. package/packages/sap.fe.test/src/sap/fe/test/api/FooterAssertionsOP-dbg.js +98 -0
  1716. package/packages/sap.fe.test/src/sap/fe/test/api/FooterAssertionsOP.js +6 -0
  1717. package/packages/sap.fe.test/src/sap/fe/test/api/FormAPI-dbg.js +82 -0
  1718. package/packages/sap.fe.test/src/sap/fe/test/api/FormAPI.js +6 -0
  1719. package/packages/sap.fe.test/src/sap/fe/test/api/FormActions-dbg.js +180 -0
  1720. package/packages/sap.fe.test/src/sap/fe/test/api/FormActions.js +6 -0
  1721. package/packages/sap.fe.test/src/sap/fe/test/api/FormAssertions-dbg.js +182 -0
  1722. package/packages/sap.fe.test/src/sap/fe/test/api/FormAssertions.js +6 -0
  1723. package/packages/sap.fe.test/src/sap/fe/test/api/HeaderAPI-dbg.js +152 -0
  1724. package/packages/sap.fe.test/src/sap/fe/test/api/HeaderAPI.js +6 -0
  1725. package/packages/sap.fe.test/src/sap/fe/test/api/HeaderActions-dbg.js +232 -0
  1726. package/packages/sap.fe.test/src/sap/fe/test/api/HeaderActions.js +6 -0
  1727. package/packages/sap.fe.test/src/sap/fe/test/api/HeaderActionsLR-dbg.js +94 -0
  1728. package/packages/sap.fe.test/src/sap/fe/test/api/HeaderActionsLR.js +6 -0
  1729. package/packages/sap.fe.test/src/sap/fe/test/api/HeaderAssertions-dbg.js +495 -0
  1730. package/packages/sap.fe.test/src/sap/fe/test/api/HeaderAssertions.js +6 -0
  1731. package/packages/sap.fe.test/src/sap/fe/test/api/HeaderAssertionsLR-dbg.js +110 -0
  1732. package/packages/sap.fe.test/src/sap/fe/test/api/HeaderAssertionsLR.js +6 -0
  1733. package/packages/sap.fe.test/src/sap/fe/test/api/HeaderLR-dbg.js +74 -0
  1734. package/packages/sap.fe.test/src/sap/fe/test/api/HeaderLR.js +6 -0
  1735. package/packages/sap.fe.test/src/sap/fe/test/api/TableAPI-dbg.js +452 -0
  1736. package/packages/sap.fe.test/src/sap/fe/test/api/TableAPI.js +6 -0
  1737. package/packages/sap.fe.test/src/sap/fe/test/api/TableActions-dbg.js +958 -0
  1738. package/packages/sap.fe.test/src/sap/fe/test/api/TableActions.js +6 -0
  1739. package/packages/sap.fe.test/src/sap/fe/test/api/TableAssertions-dbg.js +697 -0
  1740. package/packages/sap.fe.test/src/sap/fe/test/api/TableAssertions.js +6 -0
  1741. package/packages/sap.fe.test/src/sap/fe/test/builder/DialogBuilder-dbg.js +118 -0
  1742. package/packages/sap.fe.test/src/sap/fe/test/builder/DialogBuilder.js +6 -0
  1743. package/packages/sap.fe.test/src/sap/fe/test/builder/FEBuilder-dbg.js +428 -0
  1744. package/packages/sap.fe.test/src/sap/fe/test/builder/FEBuilder.js +6 -0
  1745. package/packages/sap.fe.test/src/sap/fe/test/builder/KPIBuilder-dbg.js +56 -0
  1746. package/packages/sap.fe.test/src/sap/fe/test/builder/KPIBuilder.js +6 -0
  1747. package/packages/sap.fe.test/src/sap/fe/test/builder/MacroFieldBuilder-dbg.js +174 -0
  1748. package/packages/sap.fe.test/src/sap/fe/test/builder/MacroFieldBuilder.js +6 -0
  1749. package/packages/sap.fe.test/src/sap/fe/test/builder/MdcFieldBuilder-dbg.js +254 -0
  1750. package/packages/sap.fe.test/src/sap/fe/test/builder/MdcFieldBuilder.js +6 -0
  1751. package/packages/sap.fe.test/src/sap/fe/test/builder/MdcFilterBarBuilder-dbg.js +112 -0
  1752. package/packages/sap.fe.test/src/sap/fe/test/builder/MdcFilterBarBuilder.js +6 -0
  1753. package/packages/sap.fe.test/src/sap/fe/test/builder/MdcFilterFieldBuilder-dbg.js +54 -0
  1754. package/packages/sap.fe.test/src/sap/fe/test/builder/MdcFilterFieldBuilder.js +6 -0
  1755. package/packages/sap.fe.test/src/sap/fe/test/builder/MdcTableBuilder-dbg.js +1069 -0
  1756. package/packages/sap.fe.test/src/sap/fe/test/builder/MdcTableBuilder.js +6 -0
  1757. package/packages/sap.fe.test/src/sap/fe/test/builder/OverflowToolbarBuilder-dbg.js +89 -0
  1758. package/packages/sap.fe.test/src/sap/fe/test/builder/OverflowToolbarBuilder.js +6 -0
  1759. package/packages/sap.fe.test/src/sap/fe/test/builder/VMBuilder-dbg.js +268 -0
  1760. package/packages/sap.fe.test/src/sap/fe/test/builder/VMBuilder.js +6 -0
  1761. package/packages/sap.fe.test/src/sap/fe/test/internal/FEArrangements-dbg.js +66 -0
  1762. package/packages/sap.fe.test/src/sap/fe/test/internal/FEArrangements.js +6 -0
  1763. package/packages/sap.fe.test/src/sap/fe/test/internal/FEJourneyRunner-dbg.js +55 -0
  1764. package/packages/sap.fe.test/src/sap/fe/test/internal/FEJourneyRunner.js +6 -0
  1765. package/packages/sap.fe.test/src/sap/fe/test/library-dbg.js +37 -0
  1766. package/packages/sap.fe.test/src/sap/fe/test/library-h2-preload.js +78 -0
  1767. package/packages/sap.fe.test/src/sap/fe/test/library-h2-preload.js.map +9 -0
  1768. package/packages/sap.fe.test/src/sap/fe/test/library-preload.js +587 -0
  1769. package/packages/sap.fe.test/src/sap/fe/test/library-preload.js.map +9 -0
  1770. package/packages/sap.fe.test/src/sap/fe/test/library.js +6 -0
  1771. package/packages/sap.fe.test/src/sap/fe/test/manifest.json +39 -0
  1772. package/packages/sap.fe.test/src/sap/fe/test/massEdit-dbg.js +99 -0
  1773. package/packages/sap.fe.test/src/sap/fe/test/massEdit.js +6 -0
  1774. package/packages/sap.fe.test/src/sap/fe/test/resources.json +1972 -0
  1775. package/packages/sap.fe.test/test/sap/fe/test/designtime/api.json +1 -0
  1776. package/packages/sap.fe.test/test/sap/fe/test/designtime/apiref/api.json +1 -0
  1777. package/packages/sap.fe.test/test/sap/fe/test/designtime/codeassistance/Library.jsmeta.json +1 -0
  1778. package/packages/sap.fe.test/test/sap/fe/test/designtime/codeassistance/Library.jstemplates.json +1 -0
  1779. package/packages/sap.fe.test/test/sap/fe/test/designtime/codeassistance/Library.xmlmeta.json +1 -0
  1780. package/packages/sap.fe.test/test/sap/fe/test/designtime/codeassistance/Library.xmltemplates.json +1 -0
  1781. package/packages/sap.fe.test/test/sap/fe/test/mockserver/MockServer.js +134870 -0
  1782. package/src/LICENSE.txt +23 -0
  1783. package/ui5.yaml +66 -0
@@ -0,0 +1,3993 @@
1
+ sap.ui.define([], function() {
2
+ "use strict";
3
+ return {
4
+ "$Version": "4.0",
5
+ "$Reference": {
6
+ "http://docs.oasis-open.org/odata/odata/v4.0/cs02/vocabularies/Org.OData.Core.V1.xml": {
7
+ "$Include": ["Org.OData.Core.V1."],
8
+ "@Org.OData.Core.V1.Description": "Reference annotation"
9
+ }
10
+ },
11
+ "com.odata.v4.technical.scenario.": {
12
+ "$kind": "Schema",
13
+ "@Org.OData.Core.V1.Description": "Schema annotation",
14
+ "$Annotations": {
15
+ "com.odata.v4.technical.scenario.ENString/String3": {
16
+ "@Org.OData.Core.V1.Description": "Member annotation"
17
+ },
18
+ "com.odata.v4.technical.scenario.ENString": {
19
+ "@Org.OData.Core.V1.Description": "EnumType annotation"
20
+ },
21
+ "com.odata.v4.technical.scenario.TDString": {
22
+ "@Org.OData.Core.V1.Description": "TypeDefinition annotation"
23
+ },
24
+ "com.odata.v4.technical.scenario.ETTwoKeyNav/PropertyInt16": {
25
+ "@Org.OData.Core.V1.Description": "Property annotation"
26
+ },
27
+ "com.odata.v4.technical.scenario.ETTwoKeyNav/NavPropertyETKeyNavOne": {
28
+ "@Org.OData.Core.V1.Description": "NavigationProperty annotation"
29
+ },
30
+ "com.odata.v4.technical.scenario.ETTwoKeyNav": {
31
+ "@Org.OData.Core.V1.Description": "EntityType annotation"
32
+ },
33
+ "com.odata.v4.technical.scenario.CTPrim": {
34
+ "@Org.OData.Core.V1.Description": "ComplexType annotation"
35
+ },
36
+ "com.odata.v4.technical.scenario.TermBinary": {
37
+ "@Org.OData.Core.V1.Description": "Term annotation"
38
+ },
39
+ "com.odata.v4.technical.scenario.Container/ESAnnotated": {
40
+ "@Org.OData.Core.V1.Description": "EntitySet annotation"
41
+ },
42
+ "com.odata.v4.technical.scenario.Container/AIRTString": {
43
+ "@Org.OData.Core.V1.Description": "ActionImport annotation"
44
+ },
45
+ "com.odata.v4.technical.scenario.Container/FINRTInt16": {
46
+ "@Org.OData.Core.V1.Description": "FunctionImport annotation"
47
+ },
48
+ "com.odata.v4.technical.scenario.Container/SI": {
49
+ "@Org.OData.Core.V1.Description": "Singleton annotation"
50
+ },
51
+ "com.odata.v4.technical.scenario.Container": {
52
+ "@Org.OData.Core.V1.Description": "EntityContainer annotation"
53
+ },
54
+ "com.odata.v4.technical.scenario.ETAnnotated/PropertyString": {
55
+ "@com.odata.v4.technical.scenario.TermBinary": {
56
+ "$Binary": "T0RhdGE="
57
+ },
58
+ "@com.odata.v4.technical.scenario.TermBoolean": true,
59
+ "@com.odata.v4.technical.scenario.TermDate": {
60
+ "$Date": "2000-01-01"
61
+ },
62
+ "@com.odata.v4.technical.scenario.TermDateTimeOffset": {
63
+ "$DateTimeOffset": "2000-01-01T16:00:00.123-09:00"
64
+ },
65
+ "@com.odata.v4.technical.scenario.TermDecimal": {
66
+ "$Decimal": "3.14"
67
+ },
68
+ "@com.odata.v4.technical.scenario.TermDuration": {
69
+ "$Duration": "P11DT23H59M59.999999999999S"
70
+ },
71
+ "@com.odata.v4.technical.scenario.TermDouble": 3.14,
72
+ "@com.odata.v4.technical.scenario.TermEnum": {
73
+ "$EnumMember": "com.odata.v4.technical.scenario.ENString/String1 com.odata.v4.technical.scenario.ENString/String3"
74
+ },
75
+ "@com.odata.v4.technical.scenario.TermGuid": {
76
+ "$Guid": "21EC2020-3AEA-1069-A2DD-08002B30309D"
77
+ },
78
+ "@com.odata.v4.technical.scenario.TermInt64": 42,
79
+ "@com.odata.v4.technical.scenario.TermString": "Annotation string",
80
+ "@com.odata.v4.technical.scenario.TermTimeOfDay": {
81
+ "$TimeOfDay": "21:45:00"
82
+ },
83
+ "@com.odata.v4.technical.scenario.TermBoolean#QualifierNot": {
84
+ "$Not": {
85
+ "$Path": "PropertyBoolean"
86
+ }
87
+ },
88
+ "@com.odata.v4.technical.scenario.TermBoolean#QualifierAnd": {
89
+ "@Org.OData.Core.V1.Description": "And annotation",
90
+ "$And": [
91
+ {
92
+ "$Path": "PropertyBoolean"
93
+ },
94
+ {
95
+ "$Path": "NavPropertyETAllPrimOne/PropertyBoolean"
96
+ }
97
+ ]
98
+ },
99
+ "@com.odata.v4.technical.scenario.TermBoolean#QualifierGt": {
100
+ "@Org.OData.Core.V1.Description": "Gt annotation",
101
+ "$Gt": [
102
+ {
103
+ "$Path": "PropertyInt16"
104
+ },
105
+ 20
106
+ ]
107
+ },
108
+ "@com.odata.v4.technical.scenario.TermString#QualifierAnnotationPath": {
109
+ "$AnnotationPath": "PropertyString/@com.odata.v4.technical.scenario.TermString"
110
+ },
111
+ "@com.odata.v4.technical.scenario.TermString#QualifierApply": {
112
+ "@Org.OData.Core.V1.Description": "Apply annotation",
113
+ "$Apply": ["Annotation", "String"],
114
+ "$Function": "odata.concat"
115
+ },
116
+ "@com.odata.v4.technical.scenario.TermString#QualifierCast": {
117
+ "@Org.OData.Core.V1.Description": "Cast annotation",
118
+ "$Cast": {
119
+ "$Path": "PropertyInt16"
120
+ },
121
+ "$Type": "Edm.String"
122
+ },
123
+ "@com.odata.v4.technical.scenario.CollTermString": ["Annotation", "String"],
124
+ "@com.odata.v4.technical.scenario.TermString#QualifierIf": {
125
+ "@Org.OData.Core.V1.Description": "If annotation",
126
+ "$If": [
127
+ {
128
+ "$Or": [
129
+ {
130
+ "$And": [
131
+ {
132
+ "$Gt": [
133
+ {
134
+ "$Path": "PropertyInt16"
135
+ },
136
+ 10
137
+ ]
138
+ },
139
+ {
140
+ "$Lt": [
141
+ {
142
+ "$Path": "PropertyInt16"
143
+ },
144
+ 20
145
+ ]
146
+ }
147
+ ]
148
+ },
149
+ {
150
+ "$Not": {
151
+ "$Path": "PropertyBoolean"
152
+ }
153
+ }
154
+ ]
155
+ },
156
+ "Fulfilled",
157
+ "Rejected"
158
+ ]
159
+ },
160
+ "@com.odata.v4.technical.scenario.TermBoolean#QualifierIsOf": {
161
+ "@Org.OData.Core.V1.Description": "IsOf annotation",
162
+ "$IsOf": {
163
+ "$Path": "PropertyBoolean"
164
+ },
165
+ "$Type": "Edm.Boolean"
166
+ },
167
+ "@com.odata.v4.technical.scenario.TermString#QualifierLabeledElement": {
168
+ "@Org.OData.Core.V1.Description": "LabeledElement annotation",
169
+ "$LabeledElement": {
170
+ "$Path": "NavPropertyETAllPrimOne/PropertyString"
171
+ },
172
+ "$Name": "LabeledElementName"
173
+ },
174
+ "@com.odata.v4.technical.scenario.TermString#QualifierLabeledElementReference": {
175
+ "$LabeledElementReference": "com.odata.v4.technical.scenario.LabeledElementName"
176
+ },
177
+ "@com.odata.v4.technical.scenario.TermString#QualifierNull": {
178
+ "@Org.OData.Core.V1.Description": "Null annotation",
179
+ "$Null": null
180
+ },
181
+ "@com.odata.v4.technical.scenario.TermString#QualifierPropertyPath": {
182
+ "$PropertyPath": "NavPropertyETAllPrimOne/PropertyString"
183
+ },
184
+ "@com.odata.v4.technical.scenario.TermString#QualifierNavigationPropertyPath": {
185
+ "$NavigationPropertyPath": "NavPropertyETAllPrimOne/NavPropertyETTwoPrimOne"
186
+ },
187
+ "@com.odata.v4.technical.scenario.TermCTTwoPrim": {
188
+ "PropertyInt16@Org.OData.Core.V1.Description": "PropertyValue annotation",
189
+ "@Org.OData.Core.V1.Description": "Record annotation",
190
+ "$Type": "com.odata.v4.technical.scenario.CTTwoPrim",
191
+ "PropertyInt16": 123,
192
+ "PropertyString": "String property"
193
+ },
194
+ "@com.odata.v4.technical.scenario.TermString#QualifierUrlRef": {
195
+ "$UrlRef": "http://host/wiki/HowToUse"
196
+ }
197
+ }
198
+ }
199
+ },
200
+ "com.odata.v4.technical.scenario.ENString": {
201
+ "$kind": "EnumType",
202
+ "$IsFlags": true,
203
+ "$UnderlyingType": "Edm.Int16",
204
+ "String1": 1,
205
+ "String2": 2,
206
+ "String3": 4
207
+ },
208
+ "com.odata.v4.technical.scenario.TDString": {
209
+ "$kind": "TypeDefinition",
210
+ "$UnderlyingType": "Edm.String",
211
+ "$MaxLength": 15
212
+ },
213
+ "com.odata.v4.technical.scenario.ETAnnotated": {
214
+ "$kind": "EntityType",
215
+ "$Key": ["PropertyString"],
216
+ "PropertyString": {
217
+ "$kind": "Property",
218
+ "$Type": "Edm.String",
219
+ "$Nullable": false
220
+ },
221
+ "PropertyBoolean": {
222
+ "$kind": "Property",
223
+ "$Type": "Edm.Boolean"
224
+ },
225
+ "PropertyInt16": {
226
+ "$kind": "Property",
227
+ "$Type": "Edm.Int16"
228
+ },
229
+ "CollPropertyString": {
230
+ "$kind": "Property",
231
+ "$isCollection": true,
232
+ "$Type": "Edm.String"
233
+ },
234
+ "PropertyComp": {
235
+ "$kind": "Property",
236
+ "$Type": "com.odata.v4.technical.scenario.CTTwoPrim"
237
+ },
238
+ "CollPropertyComp": {
239
+ "$kind": "Property",
240
+ "$isCollection": true,
241
+ "$Type": "com.odata.v4.technical.scenario.CTTwoPrim"
242
+ },
243
+ "NavPropertyETAllPrimOne": {
244
+ "$kind": "NavigationProperty",
245
+ "$Type": "com.odata.v4.technical.scenario.ETAllPrim"
246
+ },
247
+ "NavPropertyETAllPrimMany": {
248
+ "$kind": "NavigationProperty",
249
+ "$isCollection": true,
250
+ "$Type": "com.odata.v4.technical.scenario.ETAllPrim"
251
+ }
252
+ },
253
+ "com.odata.v4.technical.scenario.ETAllPrim": {
254
+ "$kind": "EntityType",
255
+ "$Key": ["PropertyInt16"],
256
+ "PropertyInt16": {
257
+ "$kind": "Property",
258
+ "$Type": "Edm.Int16",
259
+ "$Nullable": false
260
+ },
261
+ "PropertyString": {
262
+ "$kind": "Property",
263
+ "$Type": "Edm.String"
264
+ },
265
+ "PropertyBoolean": {
266
+ "$kind": "Property",
267
+ "$Type": "Edm.Boolean"
268
+ },
269
+ "PropertyByte": {
270
+ "$kind": "Property",
271
+ "$Type": "Edm.Byte"
272
+ },
273
+ "PropertySByte": {
274
+ "$kind": "Property",
275
+ "$Type": "Edm.SByte"
276
+ },
277
+ "PropertyInt32": {
278
+ "$kind": "Property",
279
+ "$Type": "Edm.Int32"
280
+ },
281
+ "PropertyInt64": {
282
+ "$kind": "Property",
283
+ "$Type": "Edm.Int64"
284
+ },
285
+ "PropertySingle": {
286
+ "$kind": "Property",
287
+ "$Type": "Edm.Single"
288
+ },
289
+ "PropertyDouble": {
290
+ "$kind": "Property",
291
+ "$Type": "Edm.Double"
292
+ },
293
+ "PropertyDecimal": {
294
+ "$kind": "Property",
295
+ "$Type": "Edm.Decimal"
296
+ },
297
+ "PropertyBinary": {
298
+ "$kind": "Property",
299
+ "$Type": "Edm.Binary"
300
+ },
301
+ "PropertyDate": {
302
+ "$kind": "Property",
303
+ "$Type": "Edm.Date"
304
+ },
305
+ "PropertyDateTimeOffset": {
306
+ "$kind": "Property",
307
+ "$Type": "Edm.DateTimeOffset"
308
+ },
309
+ "PropertyDuration": {
310
+ "$kind": "Property",
311
+ "$Type": "Edm.Duration"
312
+ },
313
+ "PropertyGuid": {
314
+ "$kind": "Property",
315
+ "$Type": "Edm.Guid"
316
+ },
317
+ "PropertyTimeOfDay": {
318
+ "$kind": "Property",
319
+ "$Type": "Edm.TimeOfDay"
320
+ },
321
+ "PropertyStream": {
322
+ "$kind": "Property",
323
+ "$Type": "Edm.Stream",
324
+ "$Nullable": false
325
+ },
326
+ "NavPropertyETTwoPrimOne": {
327
+ "$kind": "NavigationProperty",
328
+ "$Type": "com.odata.v4.technical.scenario.ETTwoPrim"
329
+ },
330
+ "NavPropertyETTwoPrimMany": {
331
+ "$kind": "NavigationProperty",
332
+ "$isCollection": true,
333
+ "$Type": "com.odata.v4.technical.scenario.ETTwoPrim"
334
+ }
335
+ },
336
+ "com.odata.v4.technical.scenario.ETAllPrimDefaultValues": {
337
+ "$kind": "EntityType",
338
+ "$Key": ["PropertyInt16"],
339
+ "PropertyInt16": {
340
+ "$kind": "Property",
341
+ "$Type": "Edm.Int16",
342
+ "$Nullable": false,
343
+ "$DefaultValue": "32767"
344
+ },
345
+ "PropertyString": {
346
+ "$kind": "Property",
347
+ "$Type": "Edm.String",
348
+ "$Nullable": false,
349
+ "$DefaultValue": "abc"
350
+ },
351
+ "PropertyBoolean": {
352
+ "$kind": "Property",
353
+ "$Type": "Edm.Boolean",
354
+ "$Nullable": false,
355
+ "$DefaultValue": "true"
356
+ },
357
+ "PropertyByte": {
358
+ "$kind": "Property",
359
+ "$Type": "Edm.Byte",
360
+ "$Nullable": false,
361
+ "$DefaultValue": "255"
362
+ },
363
+ "PropertySByte": {
364
+ "$kind": "Property",
365
+ "$Type": "Edm.SByte",
366
+ "$Nullable": false,
367
+ "$DefaultValue": "127"
368
+ },
369
+ "PropertyInt32": {
370
+ "$kind": "Property",
371
+ "$Type": "Edm.Int32",
372
+ "$Nullable": false,
373
+ "$DefaultValue": "2147483647"
374
+ },
375
+ "PropertyInt64": {
376
+ "$kind": "Property",
377
+ "$Type": "Edm.Int64",
378
+ "$Nullable": false,
379
+ "$DefaultValue": "9223372036854775807"
380
+ },
381
+ "PropertySingle": {
382
+ "$kind": "Property",
383
+ "$Type": "Edm.Single",
384
+ "$Nullable": false,
385
+ "$DefaultValue": "1.23"
386
+ },
387
+ "PropertyDouble": {
388
+ "$kind": "Property",
389
+ "$Type": "Edm.Double",
390
+ "$Nullable": false,
391
+ "$DefaultValue": "3.1415926535897931"
392
+ },
393
+ "PropertyDecimal": {
394
+ "$kind": "Property",
395
+ "$Type": "Edm.Decimal",
396
+ "$Nullable": false,
397
+ "$DefaultValue": "123.0123456789",
398
+ "$Scale": 10
399
+ },
400
+ "PropertyBinary": {
401
+ "$kind": "Property",
402
+ "$Type": "Edm.Binary",
403
+ "$Nullable": false,
404
+ "$DefaultValue": "T0RhdGE"
405
+ },
406
+ "PropertyDate": {
407
+ "$kind": "Property",
408
+ "$Type": "Edm.Date",
409
+ "$Nullable": false,
410
+ "$DefaultValue": "2016-06-27"
411
+ },
412
+ "PropertyDateTimeOffset": {
413
+ "$kind": "Property",
414
+ "$Type": "Edm.DateTimeOffset",
415
+ "$Nullable": false,
416
+ "$DefaultValue": "2016-06-27T14:52:23.123Z"
417
+ },
418
+ "PropertyDuration": {
419
+ "$kind": "Property",
420
+ "$Type": "Edm.Duration",
421
+ "$Nullable": false,
422
+ "$DefaultValue": "P12DT23H59M59.999S"
423
+ },
424
+ "PropertyGuid": {
425
+ "$kind": "Property",
426
+ "$Type": "Edm.Guid",
427
+ "$Nullable": false,
428
+ "$DefaultValue": "01234567-89ab-cdef-0123-456789abcdef"
429
+ },
430
+ "PropertyTimeOfDay": {
431
+ "$kind": "Property",
432
+ "$Type": "Edm.TimeOfDay",
433
+ "$Nullable": false,
434
+ "$DefaultValue": "07:59:59.999"
435
+ },
436
+ "PropertyEnumString": {
437
+ "$kind": "Property",
438
+ "$Type": "com.odata.v4.technical.scenario.ENString",
439
+ "$Nullable": false,
440
+ "$DefaultValue": "String1"
441
+ },
442
+ "PropertyDefString": {
443
+ "$kind": "Property",
444
+ "$Type": "com.odata.v4.technical.scenario.TDString",
445
+ "$Nullable": false,
446
+ "$DefaultValue": "CustomString"
447
+ }
448
+ },
449
+ "com.odata.v4.technical.scenario.ETCollAllPrim": {
450
+ "$kind": "EntityType",
451
+ "$Key": ["PropertyInt16"],
452
+ "PropertyInt16": {
453
+ "$kind": "Property",
454
+ "$Type": "Edm.Int16",
455
+ "$Nullable": false
456
+ },
457
+ "CollPropertyString": {
458
+ "$kind": "Property",
459
+ "$isCollection": true,
460
+ "$Type": "Edm.String",
461
+ "$Nullable": false
462
+ },
463
+ "CollPropertyBoolean": {
464
+ "$kind": "Property",
465
+ "$isCollection": true,
466
+ "$Type": "Edm.Boolean"
467
+ },
468
+ "CollPropertyByte": {
469
+ "$kind": "Property",
470
+ "$isCollection": true,
471
+ "$Type": "Edm.Byte"
472
+ },
473
+ "CollPropertySByte": {
474
+ "$kind": "Property",
475
+ "$isCollection": true,
476
+ "$Type": "Edm.SByte"
477
+ },
478
+ "CollPropertyInt16": {
479
+ "$kind": "Property",
480
+ "$isCollection": true,
481
+ "$Type": "Edm.Int16",
482
+ "$Nullable": false
483
+ },
484
+ "CollPropertyInt32": {
485
+ "$kind": "Property",
486
+ "$isCollection": true,
487
+ "$Type": "Edm.Int32"
488
+ },
489
+ "CollPropertyInt64": {
490
+ "$kind": "Property",
491
+ "$isCollection": true,
492
+ "$Type": "Edm.Int64"
493
+ },
494
+ "CollPropertySingle": {
495
+ "$kind": "Property",
496
+ "$isCollection": true,
497
+ "$Type": "Edm.Single"
498
+ },
499
+ "CollPropertyDouble": {
500
+ "$kind": "Property",
501
+ "$isCollection": true,
502
+ "$Type": "Edm.Double"
503
+ },
504
+ "CollPropertyDecimal": {
505
+ "$kind": "Property",
506
+ "$isCollection": true,
507
+ "$Type": "Edm.Decimal"
508
+ },
509
+ "CollPropertyBinary": {
510
+ "$kind": "Property",
511
+ "$isCollection": true,
512
+ "$Type": "Edm.Binary"
513
+ },
514
+ "CollPropertyDate": {
515
+ "$kind": "Property",
516
+ "$isCollection": true,
517
+ "$Type": "Edm.Date",
518
+ "$Nullable": false
519
+ },
520
+ "CollPropertyDateTimeOffset": {
521
+ "$kind": "Property",
522
+ "$isCollection": true,
523
+ "$Type": "Edm.DateTimeOffset",
524
+ "$Nullable": false
525
+ },
526
+ "CollPropertyDuration": {
527
+ "$kind": "Property",
528
+ "$isCollection": true,
529
+ "$Type": "Edm.Duration",
530
+ "$Nullable": false
531
+ },
532
+ "CollPropertyGuid": {
533
+ "$kind": "Property",
534
+ "$isCollection": true,
535
+ "$Type": "Edm.Guid"
536
+ },
537
+ "CollPropertyTimeOfDay": {
538
+ "$kind": "Property",
539
+ "$isCollection": true,
540
+ "$Type": "Edm.TimeOfDay"
541
+ }
542
+ },
543
+ "com.odata.v4.technical.scenario.ETTwoPrim": {
544
+ "$kind": "EntityType",
545
+ "$Key": ["PropertyInt16"],
546
+ "PropertyInt16": {
547
+ "$kind": "Property",
548
+ "$Type": "Edm.Int16",
549
+ "$Nullable": false
550
+ },
551
+ "PropertyString": {
552
+ "$kind": "Property",
553
+ "$Type": "Edm.String"
554
+ },
555
+ "NavPropertyETAllPrimOne": {
556
+ "$kind": "NavigationProperty",
557
+ "$Type": "com.odata.v4.technical.scenario.ETAllPrim"
558
+ },
559
+ "NavPropertyETAllPrimMany": {
560
+ "$kind": "NavigationProperty",
561
+ "$isCollection": true,
562
+ "$Type": "com.odata.v4.technical.scenario.ETAllPrim"
563
+ }
564
+ },
565
+ "com.odata.v4.technical.scenario.ETMixPrimCollComp": {
566
+ "$kind": "EntityType",
567
+ "$Key": ["PropertyInt16"],
568
+ "PropertyInt16": {
569
+ "$kind": "Property",
570
+ "$Type": "Edm.Int16",
571
+ "$Nullable": false
572
+ },
573
+ "CollPropertyString": {
574
+ "$kind": "Property",
575
+ "$isCollection": true,
576
+ "$Type": "Edm.String"
577
+ },
578
+ "PropertyComp": {
579
+ "$kind": "Property",
580
+ "$Type": "com.odata.v4.technical.scenario.CTTwoPrim"
581
+ },
582
+ "CollPropertyComp": {
583
+ "$kind": "Property",
584
+ "$isCollection": true,
585
+ "$Type": "com.odata.v4.technical.scenario.CTTwoPrim"
586
+ }
587
+ },
588
+ "com.odata.v4.technical.scenario.ETTwoKeyTwoPrim": {
589
+ "$kind": "EntityType",
590
+ "$Key": ["PropertyInt16", "PropertyString"],
591
+ "PropertyInt16": {
592
+ "$kind": "Property",
593
+ "$Type": "Edm.Int16",
594
+ "$Nullable": false
595
+ },
596
+ "PropertyString": {
597
+ "$kind": "Property",
598
+ "$Type": "Edm.String",
599
+ "$Nullable": false
600
+ }
601
+ },
602
+ "com.odata.v4.technical.scenario.ETMixEnumDefCollComp": {
603
+ "$kind": "EntityType",
604
+ "$Key": ["PropertyEnumString", "PropertyDefString"],
605
+ "PropertyEnumString": {
606
+ "$kind": "Property",
607
+ "$Type": "com.odata.v4.technical.scenario.ENString",
608
+ "$Nullable": false
609
+ },
610
+ "PropertyDefString": {
611
+ "$kind": "Property",
612
+ "$Type": "com.odata.v4.technical.scenario.TDString",
613
+ "$Nullable": false
614
+ },
615
+ "CollPropertyEnumString": {
616
+ "$kind": "Property",
617
+ "$isCollection": true,
618
+ "$Type": "com.odata.v4.technical.scenario.ENString"
619
+ },
620
+ "CollPropertyDefString": {
621
+ "$kind": "Property",
622
+ "$isCollection": true,
623
+ "$Type": "com.odata.v4.technical.scenario.TDString"
624
+ },
625
+ "PropertyCompMixedEnumDef": {
626
+ "$kind": "Property",
627
+ "$Type": "com.odata.v4.technical.scenario.CTMixEnumDef"
628
+ },
629
+ "CollPropertyCompMixedEnumDef": {
630
+ "$kind": "Property",
631
+ "$isCollection": true,
632
+ "$Type": "com.odata.v4.technical.scenario.CTMixEnumDef"
633
+ }
634
+ },
635
+ "com.odata.v4.technical.scenario.ETBase": {
636
+ "$kind": "EntityType",
637
+ "$BaseType": "com.odata.v4.technical.scenario.ETTwoPrim",
638
+ "AdditionalPropertyString_5": {
639
+ "$kind": "Property",
640
+ "$Type": "Edm.String"
641
+ }
642
+ },
643
+ "com.odata.v4.technical.scenario.ETTwoBase": {
644
+ "$kind": "EntityType",
645
+ "$BaseType": "com.odata.v4.technical.scenario.ETBase",
646
+ "AdditionalPropertyString_6": {
647
+ "$kind": "Property",
648
+ "$Type": "Edm.String"
649
+ }
650
+ },
651
+ "com.odata.v4.technical.scenario.ETAllKey": {
652
+ "$kind": "EntityType",
653
+ "$Key": [
654
+ "PropertyString",
655
+ "PropertyBoolean",
656
+ "PropertyByte",
657
+ "PropertySByte",
658
+ "PropertyInt16",
659
+ "PropertyInt32",
660
+ "PropertyInt64",
661
+ "PropertyDecimal",
662
+ "PropertyDate",
663
+ "PropertyDateTimeOffset",
664
+ "PropertyDuration",
665
+ "PropertyGuid",
666
+ "PropertyTimeOfDay"
667
+ ],
668
+ "PropertyString": {
669
+ "$kind": "Property",
670
+ "$Type": "Edm.String",
671
+ "$Nullable": false
672
+ },
673
+ "PropertyBoolean": {
674
+ "$kind": "Property",
675
+ "$Type": "Edm.Boolean",
676
+ "$Nullable": false
677
+ },
678
+ "PropertyByte": {
679
+ "$kind": "Property",
680
+ "$Type": "Edm.Byte",
681
+ "$Nullable": false
682
+ },
683
+ "PropertySByte": {
684
+ "$kind": "Property",
685
+ "$Type": "Edm.SByte",
686
+ "$Nullable": false
687
+ },
688
+ "PropertyInt16": {
689
+ "$kind": "Property",
690
+ "$Type": "Edm.Int16",
691
+ "$Nullable": false
692
+ },
693
+ "PropertyInt32": {
694
+ "$kind": "Property",
695
+ "$Type": "Edm.Int32",
696
+ "$Nullable": false
697
+ },
698
+ "PropertyInt64": {
699
+ "$kind": "Property",
700
+ "$Type": "Edm.Int64",
701
+ "$Nullable": false
702
+ },
703
+ "PropertyDecimal": {
704
+ "$kind": "Property",
705
+ "$Type": "Edm.Decimal",
706
+ "$Nullable": false
707
+ },
708
+ "PropertyDate": {
709
+ "$kind": "Property",
710
+ "$Type": "Edm.Date",
711
+ "$Nullable": false
712
+ },
713
+ "PropertyDateTimeOffset": {
714
+ "$kind": "Property",
715
+ "$Type": "Edm.DateTimeOffset",
716
+ "$Nullable": false
717
+ },
718
+ "PropertyDuration": {
719
+ "$kind": "Property",
720
+ "$Type": "Edm.Duration",
721
+ "$Nullable": false
722
+ },
723
+ "PropertyGuid": {
724
+ "$kind": "Property",
725
+ "$Type": "Edm.Guid",
726
+ "$Nullable": false
727
+ },
728
+ "PropertyTimeOfDay": {
729
+ "$kind": "Property",
730
+ "$Type": "Edm.TimeOfDay",
731
+ "$Nullable": false
732
+ }
733
+ },
734
+ "com.odata.v4.technical.scenario.ETCompAllPrim": {
735
+ "$kind": "EntityType",
736
+ "$Key": ["PropertyInt16"],
737
+ "PropertyInt16": {
738
+ "$kind": "Property",
739
+ "$Type": "Edm.Int16",
740
+ "$Nullable": false
741
+ },
742
+ "PropertyComp": {
743
+ "$kind": "Property",
744
+ "$Type": "com.odata.v4.technical.scenario.CTAllPrim"
745
+ }
746
+ },
747
+ "com.odata.v4.technical.scenario.ETCompCollAllPrim": {
748
+ "$kind": "EntityType",
749
+ "$Key": ["PropertyInt16"],
750
+ "PropertyInt16": {
751
+ "$kind": "Property",
752
+ "$Type": "Edm.Int16",
753
+ "$Nullable": false
754
+ },
755
+ "PropertyComp": {
756
+ "$kind": "Property",
757
+ "$Type": "com.odata.v4.technical.scenario.CTCollAllPrim"
758
+ }
759
+ },
760
+ "com.odata.v4.technical.scenario.ETCompComp": {
761
+ "$kind": "EntityType",
762
+ "$Key": ["PropertyInt16"],
763
+ "PropertyInt16": {
764
+ "$kind": "Property",
765
+ "$Type": "Edm.Int16",
766
+ "$Nullable": false
767
+ },
768
+ "PropertyComp": {
769
+ "$kind": "Property",
770
+ "$Type": "com.odata.v4.technical.scenario.CTCompComp"
771
+ }
772
+ },
773
+ "com.odata.v4.technical.scenario.ETCompCollComp": {
774
+ "$kind": "EntityType",
775
+ "$Key": ["PropertyInt16"],
776
+ "PropertyInt16": {
777
+ "$kind": "Property",
778
+ "$Type": "Edm.Int16",
779
+ "$Nullable": false
780
+ },
781
+ "PropertyComp": {
782
+ "$kind": "Property",
783
+ "$Type": "com.odata.v4.technical.scenario.CTCompCollComp"
784
+ }
785
+ },
786
+ "com.odata.v4.technical.scenario.ETMedia": {
787
+ "$kind": "EntityType",
788
+ "$HasStream": true,
789
+ "$Key": ["PropertyInt16"],
790
+ "PropertyInt16": {
791
+ "$kind": "Property",
792
+ "$Type": "Edm.Int16",
793
+ "$Nullable": false
794
+ }
795
+ },
796
+ "com.odata.v4.technical.scenario.ETFourKeyAlias": {
797
+ "$kind": "EntityType",
798
+ "$Key": [
799
+ "PropertyInt16",
800
+ {
801
+ "KeyAlias1": "PropertyComp/PropertyInt16"
802
+ },
803
+ {
804
+ "KeyAlias2": "PropertyComp/PropertyString"
805
+ },
806
+ {
807
+ "KeyAlias3": "PropertyCompComp/PropertyComp/PropertyString"
808
+ }
809
+ ],
810
+ "PropertyInt16": {
811
+ "$kind": "Property",
812
+ "$Type": "Edm.Int16",
813
+ "$Nullable": false
814
+ },
815
+ "PropertyComp": {
816
+ "$kind": "Property",
817
+ "$Type": "com.odata.v4.technical.scenario.CTTwoPrim",
818
+ "$Nullable": false
819
+ },
820
+ "PropertyCompComp": {
821
+ "$kind": "Property",
822
+ "$Type": "com.odata.v4.technical.scenario.CTCompComp",
823
+ "$Nullable": false
824
+ }
825
+ },
826
+ "com.odata.v4.technical.scenario.ETServerSidePaging": {
827
+ "$kind": "EntityType",
828
+ "$Key": ["PropertyInt16"],
829
+ "PropertyInt16": {
830
+ "$kind": "Property",
831
+ "$Type": "Edm.Int16",
832
+ "$Nullable": false
833
+ },
834
+ "PropertyString": {
835
+ "$kind": "Property",
836
+ "$Type": "Edm.String",
837
+ "$Nullable": false
838
+ }
839
+ },
840
+ "com.odata.v4.technical.scenario.ETAllNullable": {
841
+ "$kind": "EntityType",
842
+ "$Key": ["PropertyKey"],
843
+ "PropertyKey": {
844
+ "$kind": "Property",
845
+ "$Type": "Edm.Int16",
846
+ "$Nullable": false
847
+ },
848
+ "PropertyInt16": {
849
+ "$kind": "Property",
850
+ "$Type": "Edm.Int16"
851
+ },
852
+ "PropertyString": {
853
+ "$kind": "Property",
854
+ "$Type": "Edm.String"
855
+ },
856
+ "PropertyBoolean": {
857
+ "$kind": "Property",
858
+ "$Type": "Edm.Boolean"
859
+ },
860
+ "PropertyByte": {
861
+ "$kind": "Property",
862
+ "$Type": "Edm.Byte"
863
+ },
864
+ "PropertySByte": {
865
+ "$kind": "Property",
866
+ "$Type": "Edm.SByte"
867
+ },
868
+ "PropertyInt32": {
869
+ "$kind": "Property",
870
+ "$Type": "Edm.Int32"
871
+ },
872
+ "PropertyInt64": {
873
+ "$kind": "Property",
874
+ "$Type": "Edm.Int64"
875
+ },
876
+ "PropertySingle": {
877
+ "$kind": "Property",
878
+ "$Type": "Edm.Single"
879
+ },
880
+ "PropertyDouble": {
881
+ "$kind": "Property",
882
+ "$Type": "Edm.Double"
883
+ },
884
+ "PropertyDecimal": {
885
+ "$kind": "Property",
886
+ "$Type": "Edm.Decimal"
887
+ },
888
+ "PropertyBinary": {
889
+ "$kind": "Property",
890
+ "$Type": "Edm.Binary"
891
+ },
892
+ "PropertyDate": {
893
+ "$kind": "Property",
894
+ "$Type": "Edm.Date"
895
+ },
896
+ "PropertyDateTimeOffset": {
897
+ "$kind": "Property",
898
+ "$Type": "Edm.DateTimeOffset"
899
+ },
900
+ "PropertyDuration": {
901
+ "$kind": "Property",
902
+ "$Type": "Edm.Duration"
903
+ },
904
+ "PropertyGuid": {
905
+ "$kind": "Property",
906
+ "$Type": "Edm.Guid"
907
+ },
908
+ "PropertyTimeOfDay": {
909
+ "$kind": "Property",
910
+ "$Type": "Edm.TimeOfDay"
911
+ },
912
+ "PropertyStream": {
913
+ "$kind": "Property",
914
+ "$Type": "Edm.Stream"
915
+ },
916
+ "CollPropertyString": {
917
+ "$kind": "Property",
918
+ "$isCollection": true,
919
+ "$Type": "Edm.String"
920
+ },
921
+ "CollPropertyBoolean": {
922
+ "$kind": "Property",
923
+ "$isCollection": true,
924
+ "$Type": "Edm.Boolean"
925
+ },
926
+ "CollPropertyByte": {
927
+ "$kind": "Property",
928
+ "$isCollection": true,
929
+ "$Type": "Edm.Byte"
930
+ },
931
+ "CollPropertySByte": {
932
+ "$kind": "Property",
933
+ "$isCollection": true,
934
+ "$Type": "Edm.SByte"
935
+ },
936
+ "CollPropertyInt16": {
937
+ "$kind": "Property",
938
+ "$isCollection": true,
939
+ "$Type": "Edm.Int16"
940
+ },
941
+ "CollPropertyInt32": {
942
+ "$kind": "Property",
943
+ "$isCollection": true,
944
+ "$Type": "Edm.Int32"
945
+ },
946
+ "CollPropertyInt64": {
947
+ "$kind": "Property",
948
+ "$isCollection": true,
949
+ "$Type": "Edm.Int64"
950
+ },
951
+ "CollPropertySingle": {
952
+ "$kind": "Property",
953
+ "$isCollection": true,
954
+ "$Type": "Edm.Single"
955
+ },
956
+ "CollPropertyDouble": {
957
+ "$kind": "Property",
958
+ "$isCollection": true,
959
+ "$Type": "Edm.Double"
960
+ },
961
+ "CollPropertyDecimal": {
962
+ "$kind": "Property",
963
+ "$isCollection": true,
964
+ "$Type": "Edm.Decimal"
965
+ },
966
+ "CollPropertyBinary": {
967
+ "$kind": "Property",
968
+ "$isCollection": true,
969
+ "$Type": "Edm.Binary"
970
+ },
971
+ "CollPropertyDate": {
972
+ "$kind": "Property",
973
+ "$isCollection": true,
974
+ "$Type": "Edm.Date"
975
+ },
976
+ "CollPropertyDateTimeOffset": {
977
+ "$kind": "Property",
978
+ "$isCollection": true,
979
+ "$Type": "Edm.DateTimeOffset"
980
+ },
981
+ "CollPropertyDuration": {
982
+ "$kind": "Property",
983
+ "$isCollection": true,
984
+ "$Type": "Edm.Duration"
985
+ },
986
+ "CollPropertyGuid": {
987
+ "$kind": "Property",
988
+ "$isCollection": true,
989
+ "$Type": "Edm.Guid"
990
+ },
991
+ "CollPropertyTimeOfDay": {
992
+ "$kind": "Property",
993
+ "$isCollection": true,
994
+ "$Type": "Edm.TimeOfDay"
995
+ }
996
+ },
997
+ "com.odata.v4.technical.scenario.ETKeyNav": {
998
+ "$kind": "EntityType",
999
+ "$Key": ["PropertyInt16"],
1000
+ "PropertyInt16": {
1001
+ "$kind": "Property",
1002
+ "$Type": "Edm.Int16",
1003
+ "$Nullable": false
1004
+ },
1005
+ "PropertyString": {
1006
+ "$kind": "Property",
1007
+ "$Type": "Edm.String",
1008
+ "$Nullable": false
1009
+ },
1010
+ "PropertyCompNav": {
1011
+ "$kind": "Property",
1012
+ "$Type": "com.odata.v4.technical.scenario.CTNavFiveProp"
1013
+ },
1014
+ "PropertyCompAllPrim": {
1015
+ "$kind": "Property",
1016
+ "$Type": "com.odata.v4.technical.scenario.CTAllPrim"
1017
+ },
1018
+ "PropertyCompTwoPrim": {
1019
+ "$kind": "Property",
1020
+ "$Type": "com.odata.v4.technical.scenario.CTTwoPrim"
1021
+ },
1022
+ "CollPropertyString": {
1023
+ "$kind": "Property",
1024
+ "$isCollection": true,
1025
+ "$Type": "Edm.String"
1026
+ },
1027
+ "CollPropertyInt16": {
1028
+ "$kind": "Property",
1029
+ "$isCollection": true,
1030
+ "$Type": "Edm.Int16"
1031
+ },
1032
+ "CollPropertyComp": {
1033
+ "$kind": "Property",
1034
+ "$isCollection": true,
1035
+ "$Type": "com.odata.v4.technical.scenario.CTPrimComp"
1036
+ },
1037
+ "PropertyCompCompNav": {
1038
+ "$kind": "Property",
1039
+ "$Type": "com.odata.v4.technical.scenario.CTCompNav"
1040
+ },
1041
+ "NavPropertyETTwoKeyNavOne": {
1042
+ "$kind": "NavigationProperty",
1043
+ "$Type": "com.odata.v4.technical.scenario.ETTwoKeyNav",
1044
+ "$Nullable": false
1045
+ },
1046
+ "NavPropertyETTwoKeyNavMany": {
1047
+ "$kind": "NavigationProperty",
1048
+ "$isCollection": true,
1049
+ "$Type": "com.odata.v4.technical.scenario.ETTwoKeyNav",
1050
+ "$Partner": "NavPropertyETKeyNavOne"
1051
+ },
1052
+ "NavPropertyETKeyNavOne": {
1053
+ "$kind": "NavigationProperty",
1054
+ "$Type": "com.odata.v4.technical.scenario.ETKeyNav"
1055
+ },
1056
+ "NavPropertyETKeyNavMany": {
1057
+ "$kind": "NavigationProperty",
1058
+ "$isCollection": true,
1059
+ "$Type": "com.odata.v4.technical.scenario.ETKeyNav"
1060
+ },
1061
+ "NavPropertyETMediaOne": {
1062
+ "$kind": "NavigationProperty",
1063
+ "$Type": "com.odata.v4.technical.scenario.ETMedia"
1064
+ },
1065
+ "NavPropertyETMediaMany": {
1066
+ "$kind": "NavigationProperty",
1067
+ "$isCollection": true,
1068
+ "$Type": "com.odata.v4.technical.scenario.ETMedia"
1069
+ }
1070
+ },
1071
+ "com.odata.v4.technical.scenario.ETTwoKeyNav": {
1072
+ "$kind": "EntityType",
1073
+ "$Key": ["PropertyInt16", "PropertyString"],
1074
+ "PropertyInt16": {
1075
+ "$kind": "Property",
1076
+ "$Type": "Edm.Int16",
1077
+ "$Nullable": false
1078
+ },
1079
+ "PropertyString": {
1080
+ "$kind": "Property",
1081
+ "$Type": "Edm.String",
1082
+ "$Nullable": false
1083
+ },
1084
+ "PropertyComp": {
1085
+ "$kind": "Property",
1086
+ "$Type": "com.odata.v4.technical.scenario.CTPrimComp",
1087
+ "$Nullable": false
1088
+ },
1089
+ "PropertyCompNav": {
1090
+ "$kind": "Property",
1091
+ "$Type": "com.odata.v4.technical.scenario.CTBasePrimCompNav",
1092
+ "$Nullable": false
1093
+ },
1094
+ "CollPropertyComp": {
1095
+ "$kind": "Property",
1096
+ "$isCollection": true,
1097
+ "$Type": "com.odata.v4.technical.scenario.CTPrimComp"
1098
+ },
1099
+ "CollPropertyCompNav": {
1100
+ "$kind": "Property",
1101
+ "$isCollection": true,
1102
+ "$Type": "com.odata.v4.technical.scenario.CTNavFiveProp"
1103
+ },
1104
+ "CollPropertyString": {
1105
+ "$kind": "Property",
1106
+ "$isCollection": true,
1107
+ "$Type": "Edm.String"
1108
+ },
1109
+ "PropertyCompTwoPrim": {
1110
+ "$kind": "Property",
1111
+ "$Type": "com.odata.v4.technical.scenario.CTTwoPrim"
1112
+ },
1113
+ "NavPropertyETKeyNavOne": {
1114
+ "$kind": "NavigationProperty",
1115
+ "$Type": "com.odata.v4.technical.scenario.ETKeyNav",
1116
+ "$ReferentialConstraint": {
1117
+ "PropertyInt16": "PropertyInt16",
1118
+ "PropertyInt16@Org.OData.Core.V1.Description": "ReferentialConstraint annotation"
1119
+ }
1120
+ },
1121
+ "NavPropertyETKeyNavMany": {
1122
+ "$kind": "NavigationProperty",
1123
+ "$isCollection": true,
1124
+ "$Type": "com.odata.v4.technical.scenario.ETKeyNav"
1125
+ },
1126
+ "NavPropertyETTwoKeyNavOne": {
1127
+ "$kind": "NavigationProperty",
1128
+ "$Type": "com.odata.v4.technical.scenario.ETTwoKeyNav"
1129
+ },
1130
+ "NavPropertyETTwoKeyNavMany": {
1131
+ "$kind": "NavigationProperty",
1132
+ "$isCollection": true,
1133
+ "$Type": "com.odata.v4.technical.scenario.ETTwoKeyNav"
1134
+ },
1135
+ "NavPropertySINav": {
1136
+ "$kind": "NavigationProperty",
1137
+ "$Type": "com.odata.v4.technical.scenario.ETTwoKeyNav"
1138
+ }
1139
+ },
1140
+ "com.odata.v4.technical.scenario.ETBaseTwoKeyNav": {
1141
+ "$kind": "EntityType",
1142
+ "$BaseType": "com.odata.v4.technical.scenario.ETTwoKeyNav",
1143
+ "PropertyDate": {
1144
+ "$kind": "Property",
1145
+ "$Type": "Edm.Date"
1146
+ },
1147
+ "NavPropertyETBaseTwoKeyNavOne": {
1148
+ "$kind": "NavigationProperty",
1149
+ "$Type": "com.odata.v4.technical.scenario.ETBaseTwoKeyNav"
1150
+ },
1151
+ "NavPropertyETTwoBaseTwoKeyNavOne": {
1152
+ "$kind": "NavigationProperty",
1153
+ "$Type": "com.odata.v4.technical.scenario.ETTwoBaseTwoKeyNav"
1154
+ }
1155
+ },
1156
+ "com.odata.v4.technical.scenario.ETTwoBaseTwoKeyNav": {
1157
+ "$kind": "EntityType",
1158
+ "$BaseType": "com.odata.v4.technical.scenario.ETBaseTwoKeyNav",
1159
+ "PropertyGuid": {
1160
+ "$kind": "Property",
1161
+ "$Type": "Edm.Guid"
1162
+ },
1163
+ "NavPropertyETBaseTwoKeyNavMany": {
1164
+ "$kind": "NavigationProperty",
1165
+ "$isCollection": true,
1166
+ "$Type": "com.odata.v4.technical.scenario.ETBaseTwoKeyNav"
1167
+ }
1168
+ },
1169
+ "com.odata.v4.technical.scenario.ETKeyNavCont": {
1170
+ "$kind": "EntityType",
1171
+ "$Key": ["PropertyInt16"],
1172
+ "PropertyInt16": {
1173
+ "$kind": "Property",
1174
+ "$Type": "Edm.Int16",
1175
+ "$Nullable": false
1176
+ },
1177
+ "PropertyString": {
1178
+ "$kind": "Property",
1179
+ "$Type": "Edm.String",
1180
+ "$Nullable": false
1181
+ },
1182
+ "PropertyCompNavCont": {
1183
+ "$kind": "Property",
1184
+ "$Type": "com.odata.v4.technical.scenario.CTNavCont"
1185
+ },
1186
+ "NavPropertyETTwoKeyNavOne": {
1187
+ "$kind": "NavigationProperty",
1188
+ "$Type": "com.odata.v4.technical.scenario.ETTwoKeyNav",
1189
+ "$ContainsTarget": true
1190
+ },
1191
+ "NavPropertyETTwoKeyNavMany": {
1192
+ "$kind": "NavigationProperty",
1193
+ "$isCollection": true,
1194
+ "$Type": "com.odata.v4.technical.scenario.ETTwoKeyNav",
1195
+ "$ContainsTarget": true
1196
+ },
1197
+ "NavPropertyETTwoKeyNavContOne": {
1198
+ "$kind": "NavigationProperty",
1199
+ "$Type": "com.odata.v4.technical.scenario.ETTwoKeyNavCont"
1200
+ },
1201
+ "NavPropertyETTwoKeyNavContMany": {
1202
+ "$kind": "NavigationProperty",
1203
+ "$isCollection": true,
1204
+ "$Type": "com.odata.v4.technical.scenario.ETTwoKeyNavCont"
1205
+ }
1206
+ },
1207
+ "com.odata.v4.technical.scenario.ETTwoKeyNavCont": {
1208
+ "$kind": "EntityType",
1209
+ "$Key": ["PropertyInt16", "PropertyString"],
1210
+ "PropertyInt16": {
1211
+ "$kind": "Property",
1212
+ "$Type": "Edm.Int16",
1213
+ "$Nullable": false
1214
+ },
1215
+ "PropertyString": {
1216
+ "$kind": "Property",
1217
+ "$Type": "Edm.String",
1218
+ "$Nullable": false
1219
+ },
1220
+ "NavPropertyETKeyNavContOne": {
1221
+ "$kind": "NavigationProperty",
1222
+ "$Type": "com.odata.v4.technical.scenario.ETKeyNavCont",
1223
+ "$ContainsTarget": true
1224
+ },
1225
+ "NavPropertyETKeyNavContMany": {
1226
+ "$kind": "NavigationProperty",
1227
+ "$isCollection": true,
1228
+ "$Type": "com.odata.v4.technical.scenario.ETKeyNavCont",
1229
+ "$ContainsTarget": true
1230
+ }
1231
+ },
1232
+ "com.odata.v4.technical.scenario.ETCompMixPrimCollComp": {
1233
+ "$kind": "EntityType",
1234
+ "$Key": ["PropertyInt16"],
1235
+ "PropertyInt16": {
1236
+ "$kind": "Property",
1237
+ "$Type": "Edm.Int16",
1238
+ "$Nullable": false
1239
+ },
1240
+ "PropertyMixedPrimCollComp": {
1241
+ "$kind": "Property",
1242
+ "$Type": "com.odata.v4.technical.scenario.CTMixPrimCollComp"
1243
+ }
1244
+ },
1245
+ "com.odata.v4.technical.scenario.ETKeyPrimNav": {
1246
+ "$kind": "EntityType",
1247
+ "$Key": ["PropertyInt16"],
1248
+ "PropertyInt16": {
1249
+ "$kind": "Property",
1250
+ "$Type": "Edm.Int16",
1251
+ "$Nullable": false
1252
+ },
1253
+ "PropertyString": {
1254
+ "$kind": "Property",
1255
+ "$Type": "Edm.String"
1256
+ },
1257
+ "NavPropertyETKeyPrimNavOne": {
1258
+ "$kind": "NavigationProperty",
1259
+ "$Type": "com.odata.v4.technical.scenario.ETKeyPrimNav"
1260
+ }
1261
+ },
1262
+ "com.odata.v4.technical.scenario.ETAllGeography": {
1263
+ "$kind": "EntityType",
1264
+ "$Key": ["PropertyInt16"],
1265
+ "PropertyInt16": {
1266
+ "$kind": "Property",
1267
+ "$Type": "Edm.Int16",
1268
+ "$Nullable": false
1269
+ },
1270
+ "PropertyPoint": {
1271
+ "$kind": "Property",
1272
+ "$Type": "Edm.GeographyPoint"
1273
+ },
1274
+ "PropertyLineString": {
1275
+ "$kind": "Property",
1276
+ "$Type": "Edm.GeographyLineString"
1277
+ },
1278
+ "PropertyPolygon": {
1279
+ "$kind": "Property",
1280
+ "$Type": "Edm.GeographyPolygon"
1281
+ },
1282
+ "PropertyMultiPoint": {
1283
+ "$kind": "Property",
1284
+ "$Type": "Edm.GeographyMultiPoint"
1285
+ },
1286
+ "PropertyMultiLineString": {
1287
+ "$kind": "Property",
1288
+ "$Type": "Edm.GeographyMultiLineString"
1289
+ },
1290
+ "PropertyMultiPolygon": {
1291
+ "$kind": "Property",
1292
+ "$Type": "Edm.GeographyMultiPolygon"
1293
+ },
1294
+ "PropertyCollection": {
1295
+ "$kind": "Property",
1296
+ "$Type": "Edm.GeographyCollection"
1297
+ }
1298
+ },
1299
+ "com.odata.v4.technical.scenario.ETAllGeometry": {
1300
+ "$kind": "EntityType",
1301
+ "$Key": ["PropertyInt16"],
1302
+ "PropertyInt16": {
1303
+ "$kind": "Property",
1304
+ "$Type": "Edm.Int16",
1305
+ "$Nullable": false
1306
+ },
1307
+ "PropertyPoint": {
1308
+ "$kind": "Property",
1309
+ "$Type": "Edm.GeometryPoint"
1310
+ },
1311
+ "PropertyLineString": {
1312
+ "$kind": "Property",
1313
+ "$Type": "Edm.GeometryLineString"
1314
+ },
1315
+ "PropertyPolygon": {
1316
+ "$kind": "Property",
1317
+ "$Type": "Edm.GeometryPolygon"
1318
+ },
1319
+ "PropertyMultiPoint": {
1320
+ "$kind": "Property",
1321
+ "$Type": "Edm.GeometryMultiPoint"
1322
+ },
1323
+ "PropertyMultiLineString": {
1324
+ "$kind": "Property",
1325
+ "$Type": "Edm.GeometryMultiLineString"
1326
+ },
1327
+ "PropertyMultiPolygon": {
1328
+ "$kind": "Property",
1329
+ "$Type": "Edm.GeometryMultiPolygon"
1330
+ },
1331
+ "PropertyCollection": {
1332
+ "$kind": "Property",
1333
+ "$Type": "Edm.GeometryCollection"
1334
+ }
1335
+ },
1336
+ "com.odata.v4.technical.scenario.CTPrim": {
1337
+ "$kind": "ComplexType",
1338
+ "PropertyInt16": {
1339
+ "$kind": "Property",
1340
+ "$Type": "Edm.Int16"
1341
+ }
1342
+ },
1343
+ "com.odata.v4.technical.scenario.CTAllPrim": {
1344
+ "$kind": "ComplexType",
1345
+ "PropertyString": {
1346
+ "$kind": "Property",
1347
+ "$Type": "Edm.String"
1348
+ },
1349
+ "PropertyBinary": {
1350
+ "$kind": "Property",
1351
+ "$Type": "Edm.Binary"
1352
+ },
1353
+ "PropertyBoolean": {
1354
+ "$kind": "Property",
1355
+ "$Type": "Edm.Boolean"
1356
+ },
1357
+ "PropertyByte": {
1358
+ "$kind": "Property",
1359
+ "$Type": "Edm.Byte"
1360
+ },
1361
+ "PropertyDate": {
1362
+ "$kind": "Property",
1363
+ "$Type": "Edm.Date"
1364
+ },
1365
+ "PropertyDateTimeOffset": {
1366
+ "$kind": "Property",
1367
+ "$Type": "Edm.DateTimeOffset",
1368
+ "$Precision": 12
1369
+ },
1370
+ "PropertyDecimal": {
1371
+ "$kind": "Property",
1372
+ "$Type": "Edm.Decimal",
1373
+ "$Precision": 11,
1374
+ "$Scale": 5
1375
+ },
1376
+ "PropertySingle": {
1377
+ "$kind": "Property",
1378
+ "$Type": "Edm.Single"
1379
+ },
1380
+ "PropertyDouble": {
1381
+ "$kind": "Property",
1382
+ "$Type": "Edm.Double"
1383
+ },
1384
+ "PropertyDuration": {
1385
+ "$kind": "Property",
1386
+ "$Type": "Edm.Duration"
1387
+ },
1388
+ "PropertyGuid": {
1389
+ "$kind": "Property",
1390
+ "$Type": "Edm.Guid"
1391
+ },
1392
+ "PropertyInt16": {
1393
+ "$kind": "Property",
1394
+ "$Type": "Edm.Int16"
1395
+ },
1396
+ "PropertyInt32": {
1397
+ "$kind": "Property",
1398
+ "$Type": "Edm.Int32"
1399
+ },
1400
+ "PropertyInt64": {
1401
+ "$kind": "Property",
1402
+ "$Type": "Edm.Int64"
1403
+ },
1404
+ "PropertySByte": {
1405
+ "$kind": "Property",
1406
+ "$Type": "Edm.SByte"
1407
+ },
1408
+ "PropertyTimeOfDay": {
1409
+ "$kind": "Property",
1410
+ "$Type": "Edm.TimeOfDay",
1411
+ "$Precision": 12
1412
+ },
1413
+ "PropertyStream": {
1414
+ "$kind": "Property",
1415
+ "$Type": "Edm.Stream",
1416
+ "$Nullable": false
1417
+ }
1418
+ },
1419
+ "com.odata.v4.technical.scenario.CTCollAllPrim": {
1420
+ "$kind": "ComplexType",
1421
+ "CollPropertyString": {
1422
+ "$kind": "Property",
1423
+ "$isCollection": true,
1424
+ "$Type": "Edm.String"
1425
+ },
1426
+ "CollPropertyBoolean": {
1427
+ "$kind": "Property",
1428
+ "$isCollection": true,
1429
+ "$Type": "Edm.Boolean"
1430
+ },
1431
+ "CollPropertyByte": {
1432
+ "$kind": "Property",
1433
+ "$isCollection": true,
1434
+ "$Type": "Edm.Byte"
1435
+ },
1436
+ "CollPropertySByte": {
1437
+ "$kind": "Property",
1438
+ "$isCollection": true,
1439
+ "$Type": "Edm.SByte"
1440
+ },
1441
+ "CollPropertyInt16": {
1442
+ "$kind": "Property",
1443
+ "$isCollection": true,
1444
+ "$Type": "Edm.Int16"
1445
+ },
1446
+ "CollPropertyInt32": {
1447
+ "$kind": "Property",
1448
+ "$isCollection": true,
1449
+ "$Type": "Edm.Int32"
1450
+ },
1451
+ "CollPropertyInt64": {
1452
+ "$kind": "Property",
1453
+ "$isCollection": true,
1454
+ "$Type": "Edm.Int64"
1455
+ },
1456
+ "CollPropertySingle": {
1457
+ "$kind": "Property",
1458
+ "$isCollection": true,
1459
+ "$Type": "Edm.Single"
1460
+ },
1461
+ "CollPropertyDouble": {
1462
+ "$kind": "Property",
1463
+ "$isCollection": true,
1464
+ "$Type": "Edm.Double"
1465
+ },
1466
+ "CollPropertyDecimal": {
1467
+ "$kind": "Property",
1468
+ "$isCollection": true,
1469
+ "$Type": "Edm.Decimal"
1470
+ },
1471
+ "CollPropertyBinary": {
1472
+ "$kind": "Property",
1473
+ "$isCollection": true,
1474
+ "$Type": "Edm.Binary"
1475
+ },
1476
+ "CollPropertyDate": {
1477
+ "$kind": "Property",
1478
+ "$isCollection": true,
1479
+ "$Type": "Edm.Date"
1480
+ },
1481
+ "CollPropertyDateTimeOffset": {
1482
+ "$kind": "Property",
1483
+ "$isCollection": true,
1484
+ "$Type": "Edm.DateTimeOffset"
1485
+ },
1486
+ "CollPropertyDuration": {
1487
+ "$kind": "Property",
1488
+ "$isCollection": true,
1489
+ "$Type": "Edm.Duration"
1490
+ },
1491
+ "CollPropertyGuid": {
1492
+ "$kind": "Property",
1493
+ "$isCollection": true,
1494
+ "$Type": "Edm.Guid"
1495
+ },
1496
+ "CollPropertyTimeOfDay": {
1497
+ "$kind": "Property",
1498
+ "$isCollection": true,
1499
+ "$Type": "Edm.TimeOfDay"
1500
+ }
1501
+ },
1502
+ "com.odata.v4.technical.scenario.CTTwoPrim": {
1503
+ "$kind": "ComplexType",
1504
+ "PropertyInt16": {
1505
+ "$kind": "Property",
1506
+ "$Type": "Edm.Int16",
1507
+ "$Nullable": false
1508
+ },
1509
+ "PropertyString": {
1510
+ "$kind": "Property",
1511
+ "$Type": "Edm.String",
1512
+ "$Nullable": false
1513
+ }
1514
+ },
1515
+ "com.odata.v4.technical.scenario.CTMixPrimCollComp": {
1516
+ "$kind": "ComplexType",
1517
+ "PropertyInt16": {
1518
+ "$kind": "Property",
1519
+ "$Type": "Edm.Int16"
1520
+ },
1521
+ "CollPropertyString": {
1522
+ "$kind": "Property",
1523
+ "$isCollection": true,
1524
+ "$Type": "Edm.String"
1525
+ },
1526
+ "PropertyComp": {
1527
+ "$kind": "Property",
1528
+ "$Type": "com.odata.v4.technical.scenario.CTTwoPrim"
1529
+ },
1530
+ "CollPropertyComp": {
1531
+ "$kind": "Property",
1532
+ "$isCollection": true,
1533
+ "$Type": "com.odata.v4.technical.scenario.CTTwoPrim"
1534
+ }
1535
+ },
1536
+ "com.odata.v4.technical.scenario.CTMixEnumDef": {
1537
+ "$kind": "ComplexType",
1538
+ "PropertyEnumString": {
1539
+ "$kind": "Property",
1540
+ "$Type": "com.odata.v4.technical.scenario.ENString"
1541
+ },
1542
+ "PropertyDefString": {
1543
+ "$kind": "Property",
1544
+ "$Type": "com.odata.v4.technical.scenario.TDString"
1545
+ },
1546
+ "CollPropertyEnumString": {
1547
+ "$kind": "Property",
1548
+ "$isCollection": true,
1549
+ "$Type": "com.odata.v4.technical.scenario.ENString"
1550
+ },
1551
+ "CollPropertyDefString": {
1552
+ "$kind": "Property",
1553
+ "$isCollection": true,
1554
+ "$Type": "com.odata.v4.technical.scenario.TDString"
1555
+ }
1556
+ },
1557
+ "com.odata.v4.technical.scenario.CTBase": {
1558
+ "$kind": "ComplexType",
1559
+ "$BaseType": "com.odata.v4.technical.scenario.CTTwoPrim",
1560
+ "AdditionalPropString": {
1561
+ "$kind": "Property",
1562
+ "$Type": "Edm.String"
1563
+ }
1564
+ },
1565
+ "com.odata.v4.technical.scenario.CTTwoBase": {
1566
+ "$kind": "ComplexType",
1567
+ "$BaseType": "com.odata.v4.technical.scenario.CTBase"
1568
+ },
1569
+ "com.odata.v4.technical.scenario.CTCompComp": {
1570
+ "$kind": "ComplexType",
1571
+ "PropertyComp": {
1572
+ "$kind": "Property",
1573
+ "$Type": "com.odata.v4.technical.scenario.CTTwoPrim"
1574
+ }
1575
+ },
1576
+ "com.odata.v4.technical.scenario.CTCompCollComp": {
1577
+ "$kind": "ComplexType",
1578
+ "CollPropertyComp": {
1579
+ "$kind": "Property",
1580
+ "$isCollection": true,
1581
+ "$Type": "com.odata.v4.technical.scenario.CTTwoPrim"
1582
+ }
1583
+ },
1584
+ "com.odata.v4.technical.scenario.CTPrimComp": {
1585
+ "$kind": "ComplexType",
1586
+ "PropertyInt16": {
1587
+ "$kind": "Property",
1588
+ "$Type": "Edm.Int16"
1589
+ },
1590
+ "PropertyComp": {
1591
+ "$kind": "Property",
1592
+ "$Type": "com.odata.v4.technical.scenario.CTAllPrim"
1593
+ }
1594
+ },
1595
+ "com.odata.v4.technical.scenario.CTNavFiveProp": {
1596
+ "$kind": "ComplexType",
1597
+ "PropertyInt16": {
1598
+ "$kind": "Property",
1599
+ "$Type": "Edm.Int16"
1600
+ },
1601
+ "NavPropertyETTwoKeyNavOne": {
1602
+ "$kind": "NavigationProperty",
1603
+ "$Type": "com.odata.v4.technical.scenario.ETTwoKeyNav"
1604
+ },
1605
+ "NavPropertyETTwoKeyNavMany": {
1606
+ "$kind": "NavigationProperty",
1607
+ "$isCollection": true,
1608
+ "$Type": "com.odata.v4.technical.scenario.ETTwoKeyNav"
1609
+ },
1610
+ "NavPropertyETMediaOne": {
1611
+ "$kind": "NavigationProperty",
1612
+ "$Type": "com.odata.v4.technical.scenario.ETMedia"
1613
+ },
1614
+ "NavPropertyETMediaMany": {
1615
+ "$kind": "NavigationProperty",
1616
+ "$isCollection": true,
1617
+ "$Type": "com.odata.v4.technical.scenario.ETMedia"
1618
+ }
1619
+ },
1620
+ "com.odata.v4.technical.scenario.CTBasePrimCompNav": {
1621
+ "$kind": "ComplexType",
1622
+ "$BaseType": "com.odata.v4.technical.scenario.CTPrimComp",
1623
+ "NavPropertyETTwoKeyNavMany": {
1624
+ "$kind": "NavigationProperty",
1625
+ "$isCollection": true,
1626
+ "$Type": "com.odata.v4.technical.scenario.ETTwoKeyNav"
1627
+ },
1628
+ "NavPropertyETTwoKeyNavOne": {
1629
+ "$kind": "NavigationProperty",
1630
+ "$Type": "com.odata.v4.technical.scenario.ETTwoKeyNav"
1631
+ },
1632
+ "NavPropertyETKeyNavOne": {
1633
+ "$kind": "NavigationProperty",
1634
+ "$Type": "com.odata.v4.technical.scenario.ETKeyNav"
1635
+ },
1636
+ "NavPropertyETKeyNavMany": {
1637
+ "$kind": "NavigationProperty",
1638
+ "$isCollection": true,
1639
+ "$Type": "com.odata.v4.technical.scenario.ETKeyNav"
1640
+ }
1641
+ },
1642
+ "com.odata.v4.technical.scenario.CTTwoBasePrimCompNav": {
1643
+ "$kind": "ComplexType",
1644
+ "$BaseType": "com.odata.v4.technical.scenario.CTBasePrimCompNav"
1645
+ },
1646
+ "com.odata.v4.technical.scenario.CTCompNav": {
1647
+ "$kind": "ComplexType",
1648
+ "PropertyString": {
1649
+ "$kind": "Property",
1650
+ "$Type": "Edm.String"
1651
+ },
1652
+ "PropertyCompNav": {
1653
+ "$kind": "Property",
1654
+ "$Type": "com.odata.v4.technical.scenario.CTNavFiveProp"
1655
+ }
1656
+ },
1657
+ "com.odata.v4.technical.scenario.CTNavCont": {
1658
+ "$kind": "ComplexType",
1659
+ "NavPropertyETKeyNavOne": {
1660
+ "$kind": "NavigationProperty",
1661
+ "$Type": "com.odata.v4.technical.scenario.ETKeyNav",
1662
+ "$ContainsTarget": true
1663
+ },
1664
+ "NavPropertyETKeyNavMany": {
1665
+ "$kind": "NavigationProperty",
1666
+ "$isCollection": true,
1667
+ "$Type": "com.odata.v4.technical.scenario.ETKeyNav",
1668
+ "$ContainsTarget": true
1669
+ },
1670
+ "NavPropertyETTwoKeyNavOne": {
1671
+ "$kind": "NavigationProperty",
1672
+ "$Type": "com.odata.v4.technical.scenario.ETTwoKeyNav",
1673
+ "$ContainsTarget": true
1674
+ },
1675
+ "NavPropertyETTwoKeyNavMany": {
1676
+ "$kind": "NavigationProperty",
1677
+ "$isCollection": true,
1678
+ "$Type": "com.odata.v4.technical.scenario.ETTwoKeyNav",
1679
+ "$ContainsTarget": true
1680
+ }
1681
+ },
1682
+ "com.odata.v4.technical.scenario.BAETTwoKeyNavRTETTwoKeyNavParam": [
1683
+ {
1684
+ "$kind": "Action",
1685
+ "$IsBound": true,
1686
+ "$EntitySetPath": "ParameterETTwoKeyNav/NavPropertyETTwoKeyNavOne",
1687
+ "$Parameter": [
1688
+ {
1689
+ "$Type": "com.odata.v4.technical.scenario.ETTwoKeyNav",
1690
+ "$Name": "ParameterETTwoKeyNav",
1691
+ "$Nullable": false,
1692
+ "@Org.OData.Core.V1.Description": "Parameter annotation"
1693
+ },
1694
+ {
1695
+ "$Type": "Edm.Int16",
1696
+ "$Name": "ParameterInt16",
1697
+ "$Nullable": false
1698
+ }
1699
+ ],
1700
+ "$ReturnType": {
1701
+ "$Type": "com.odata.v4.technical.scenario.ETTwoKeyNav",
1702
+ "@Org.OData.Core.V1.Description": "ReturnType annotation"
1703
+ },
1704
+ "@Org.OData.Core.V1.Description": "Action annotation",
1705
+ "@Org.OData.Core.V1.Description@Org.OData.Core.V1.Description": "Annotation annotation"
1706
+ }
1707
+ ],
1708
+ "com.odata.v4.technical.scenario.BATDStringRTTDString": [
1709
+ {
1710
+ "$kind": "Action",
1711
+ "$IsBound": true,
1712
+ "$Parameter": [
1713
+ {
1714
+ "$Type": "com.odata.v4.technical.scenario.TDString",
1715
+ "$Name": "ParameterTDString",
1716
+ "$Nullable": false
1717
+ }
1718
+ ],
1719
+ "$ReturnType": {
1720
+ "$Type": "com.odata.v4.technical.scenario.TDString"
1721
+ }
1722
+ }
1723
+ ],
1724
+ "com.odata.v4.technical.scenario.BATDStringRTCollTDString": [
1725
+ {
1726
+ "$kind": "Action",
1727
+ "$IsBound": true,
1728
+ "$Parameter": [
1729
+ {
1730
+ "$Type": "com.odata.v4.technical.scenario.TDString",
1731
+ "$Name": "ParameterTDString",
1732
+ "$Nullable": false
1733
+ }
1734
+ ],
1735
+ "$ReturnType": {
1736
+ "$isCollection": true,
1737
+ "$Type": "com.odata.v4.technical.scenario.TDString"
1738
+ }
1739
+ }
1740
+ ],
1741
+ "com.odata.v4.technical.scenario.BA_RTETTwoKeyNav": [
1742
+ {
1743
+ "$kind": "Action",
1744
+ "$IsBound": true,
1745
+ "$EntitySetPath": "ParameterETTwoKeyNav",
1746
+ "$Parameter": [
1747
+ {
1748
+ "$Type": "com.odata.v4.technical.scenario.ETTwoKeyNav",
1749
+ "$Name": "ParameterETTwoKeyNav",
1750
+ "$Nullable": false
1751
+ }
1752
+ ],
1753
+ "$ReturnType": {
1754
+ "$Type": "com.odata.v4.technical.scenario.ETTwoKeyNav"
1755
+ }
1756
+ },
1757
+ {
1758
+ "$kind": "Action",
1759
+ "$IsBound": true,
1760
+ "$Parameter": [
1761
+ {
1762
+ "$Type": "com.odata.v4.technical.scenario.ETKeyNav",
1763
+ "$Name": "ParameterETKeyNav",
1764
+ "$Nullable": false
1765
+ }
1766
+ ],
1767
+ "$ReturnType": {
1768
+ "$Type": "com.odata.v4.technical.scenario.ETTwoKeyNav"
1769
+ }
1770
+ }
1771
+ ],
1772
+ "com.odata.v4.technical.scenario.BAESAllPrimRTETAllPrim": [
1773
+ {
1774
+ "$kind": "Action",
1775
+ "$IsBound": true,
1776
+ "$Parameter": [
1777
+ {
1778
+ "$isCollection": true,
1779
+ "$Type": "com.odata.v4.technical.scenario.ETAllPrim",
1780
+ "$Name": "ParameterESAllPrim",
1781
+ "$Nullable": false
1782
+ }
1783
+ ],
1784
+ "$ReturnType": {
1785
+ "$Type": "com.odata.v4.technical.scenario.ETAllPrim"
1786
+ }
1787
+ }
1788
+ ],
1789
+ "com.odata.v4.technical.scenario.BAESTwoKeyNavRTESTwoKeyNav": [
1790
+ {
1791
+ "$kind": "Action",
1792
+ "$IsBound": true,
1793
+ "$Parameter": [
1794
+ {
1795
+ "$isCollection": true,
1796
+ "$Type": "com.odata.v4.technical.scenario.ETTwoKeyNav",
1797
+ "$Name": "ParameterETTwoKeyNav",
1798
+ "$Nullable": false
1799
+ }
1800
+ ],
1801
+ "$ReturnType": {
1802
+ "$isCollection": true,
1803
+ "$Type": "com.odata.v4.technical.scenario.ETTwoKeyNav"
1804
+ }
1805
+ }
1806
+ ],
1807
+ "com.odata.v4.technical.scenario.BAESTwoKeyNavRTESKeyNav": [
1808
+ {
1809
+ "$kind": "Action",
1810
+ "$IsBound": true,
1811
+ "$EntitySetPath": "ParameterETTwoKeyNav/NavPropertyETKeyNavMany",
1812
+ "$Parameter": [
1813
+ {
1814
+ "$isCollection": true,
1815
+ "$Type": "com.odata.v4.technical.scenario.ETTwoKeyNav",
1816
+ "$Name": "ParameterETTwoKeyNav",
1817
+ "$Nullable": false
1818
+ }
1819
+ ],
1820
+ "$ReturnType": {
1821
+ "$isCollection": true,
1822
+ "$Type": "com.odata.v4.technical.scenario.ETKeyNav"
1823
+ }
1824
+ }
1825
+ ],
1826
+ "com.odata.v4.technical.scenario.BAETBaseTwoKeyNavRTETBaseTwoKeyNav": [
1827
+ {
1828
+ "$kind": "Action",
1829
+ "$IsBound": true,
1830
+ "$Parameter": [
1831
+ {
1832
+ "$Type": "com.odata.v4.technical.scenario.ETBaseTwoKeyNav",
1833
+ "$Name": "ParameterETTwoKeyNav",
1834
+ "$Nullable": false
1835
+ }
1836
+ ],
1837
+ "$ReturnType": {
1838
+ "$Type": "com.odata.v4.technical.scenario.ETTwoKeyNav"
1839
+ }
1840
+ }
1841
+ ],
1842
+ "com.odata.v4.technical.scenario.BAETTwoBaseTwoKeyNavRTETBaseTwoKeyNav": [
1843
+ {
1844
+ "$kind": "Action",
1845
+ "$IsBound": true,
1846
+ "$Parameter": [
1847
+ {
1848
+ "$Type": "com.odata.v4.technical.scenario.ETTwoBaseTwoKeyNav",
1849
+ "$Name": "ParameterETTwoBaseTwoKeyNav",
1850
+ "$Nullable": false
1851
+ }
1852
+ ],
1853
+ "$ReturnType": {
1854
+ "$Type": "com.odata.v4.technical.scenario.ETBaseTwoKeyNav"
1855
+ }
1856
+ }
1857
+ ],
1858
+ "com.odata.v4.technical.scenario.BAETAllPrimRT": [
1859
+ {
1860
+ "$kind": "Action",
1861
+ "$IsBound": true,
1862
+ "$Parameter": [
1863
+ {
1864
+ "$Type": "com.odata.v4.technical.scenario.ETAllPrim",
1865
+ "$Name": "ParameterETAllPrim",
1866
+ "$Nullable": false
1867
+ }
1868
+ ]
1869
+ }
1870
+ ],
1871
+ "com.odata.v4.technical.scenario.BAESAllPrimRT": [
1872
+ {
1873
+ "$kind": "Action",
1874
+ "$IsBound": true,
1875
+ "$Parameter": [
1876
+ {
1877
+ "$isCollection": true,
1878
+ "$Type": "com.odata.v4.technical.scenario.ETAllPrim",
1879
+ "$Name": "ParameterETAllPrim",
1880
+ "$Nullable": false
1881
+ }
1882
+ ]
1883
+ }
1884
+ ],
1885
+ "com.odata.v4.technical.scenario.BAETTwoPrimRTString": [
1886
+ {
1887
+ "$kind": "Action",
1888
+ "$IsBound": true,
1889
+ "$Parameter": [
1890
+ {
1891
+ "$Type": "com.odata.v4.technical.scenario.ETTwoPrim",
1892
+ "$Name": "ParameterETTwoPrim",
1893
+ "$Nullable": false
1894
+ }
1895
+ ],
1896
+ "$ReturnType": {
1897
+ "$Type": "Edm.String"
1898
+ }
1899
+ }
1900
+ ],
1901
+ "com.odata.v4.technical.scenario.BAETTwoPrimRTCollString": [
1902
+ {
1903
+ "$kind": "Action",
1904
+ "$IsBound": true,
1905
+ "$Parameter": [
1906
+ {
1907
+ "$Type": "com.odata.v4.technical.scenario.ETTwoPrim",
1908
+ "$Name": "ParameterETTwoPrim",
1909
+ "$Nullable": false
1910
+ }
1911
+ ],
1912
+ "$ReturnType": {
1913
+ "$isCollection": true,
1914
+ "$Type": "Edm.String"
1915
+ }
1916
+ }
1917
+ ],
1918
+ "com.odata.v4.technical.scenario.BAETTwoPrimRTCTAllPrim": [
1919
+ {
1920
+ "$kind": "Action",
1921
+ "$IsBound": true,
1922
+ "$Parameter": [
1923
+ {
1924
+ "$Type": "com.odata.v4.technical.scenario.ETTwoPrim",
1925
+ "$Name": "ParameterETTwoPrim",
1926
+ "$Nullable": false
1927
+ }
1928
+ ],
1929
+ "$ReturnType": {
1930
+ "$Type": "com.odata.v4.technical.scenario.CTAllPrim"
1931
+ }
1932
+ }
1933
+ ],
1934
+ "com.odata.v4.technical.scenario.BAETTwoPrimRTCollCTAllPrim": [
1935
+ {
1936
+ "$kind": "Action",
1937
+ "$IsBound": true,
1938
+ "$Parameter": [
1939
+ {
1940
+ "$Type": "com.odata.v4.technical.scenario.ETTwoPrim",
1941
+ "$Name": "ParameterETTwoPrim",
1942
+ "$Nullable": false
1943
+ }
1944
+ ],
1945
+ "$ReturnType": {
1946
+ "$isCollection": true,
1947
+ "$Type": "com.odata.v4.technical.scenario.CTAllPrim"
1948
+ }
1949
+ }
1950
+ ],
1951
+ "com.odata.v4.technical.scenario.BAETCompAllPrimRTETCompAllPrim": [
1952
+ {
1953
+ "$kind": "Action",
1954
+ "$IsBound": true,
1955
+ "$Parameter": [
1956
+ {
1957
+ "$Type": "com.odata.v4.technical.scenario.ETCompAllPrim",
1958
+ "$Name": "ParameterETCompAllPrim",
1959
+ "$Nullable": false
1960
+ }
1961
+ ],
1962
+ "$ReturnType": {
1963
+ "$Type": "com.odata.v4.technical.scenario.ETCompAllPrim"
1964
+ }
1965
+ }
1966
+ ],
1967
+ "com.odata.v4.technical.scenario._A_RTTimeOfDay_": [
1968
+ {
1969
+ "$kind": "Action",
1970
+ "$Parameter": [
1971
+ {
1972
+ "$Type": "Edm.TimeOfDay",
1973
+ "$Name": "ParameterTimeOfDay",
1974
+ "$Nullable": false
1975
+ },
1976
+ {
1977
+ "$Type": "Edm.String",
1978
+ "$Name": "ParameterAny",
1979
+ "$Nullable": false
1980
+ }
1981
+ ],
1982
+ "$ReturnType": {
1983
+ "$Type": "Edm.TimeOfDay"
1984
+ }
1985
+ },
1986
+ {
1987
+ "$kind": "Action",
1988
+ "$IsBound": true,
1989
+ "$Parameter": [
1990
+ {
1991
+ "$Type": "Edm.TimeOfDay",
1992
+ "$Name": "ParameterTimeOfDay",
1993
+ "$Nullable": false
1994
+ },
1995
+ {
1996
+ "$Type": "Edm.String",
1997
+ "$Name": "ParameterAny",
1998
+ "$Nullable": false
1999
+ }
2000
+ ],
2001
+ "$ReturnType": {
2002
+ "$Type": "Edm.TimeOfDay"
2003
+ }
2004
+ },
2005
+ {
2006
+ "$kind": "Action",
2007
+ "$IsBound": true,
2008
+ "$Parameter": [
2009
+ {
2010
+ "$Type": "Edm.String",
2011
+ "$Name": "ParameterString",
2012
+ "$Nullable": false
2013
+ },
2014
+ {
2015
+ "$Type": "Edm.TimeOfDay",
2016
+ "$Name": "ParameterTimeOfDay",
2017
+ "$Nullable": false
2018
+ },
2019
+ {
2020
+ "$Type": "Edm.Int32",
2021
+ "$Name": "ParameterAny",
2022
+ "$Nullable": false
2023
+ }
2024
+ ],
2025
+ "$ReturnType": {
2026
+ "$Type": "Edm.TimeOfDay"
2027
+ }
2028
+ }
2029
+ ],
2030
+ "com.odata.v4.technical.scenario.UAResetData": [
2031
+ {
2032
+ "$kind": "Action",
2033
+ "$ReturnType": {
2034
+ "$Type": "Edm.Boolean"
2035
+ }
2036
+ }
2037
+ ],
2038
+ "com.odata.v4.technical.scenario.UARTString": [
2039
+ {
2040
+ "$kind": "Action",
2041
+ "$ReturnType": {
2042
+ "$Type": "Edm.String"
2043
+ }
2044
+ }
2045
+ ],
2046
+ "com.odata.v4.technical.scenario.UARTTDString": [
2047
+ {
2048
+ "$kind": "Action",
2049
+ "$ReturnType": {
2050
+ "$Type": "com.odata.v4.technical.scenario.TDString"
2051
+ }
2052
+ }
2053
+ ],
2054
+ "com.odata.v4.technical.scenario.UARTCollTDString": [
2055
+ {
2056
+ "$kind": "Action",
2057
+ "$ReturnType": {
2058
+ "$isCollection": true,
2059
+ "$Type": "com.odata.v4.technical.scenario.TDString"
2060
+ }
2061
+ }
2062
+ ],
2063
+ "com.odata.v4.technical.scenario.UARTCollStringTwoParam": [
2064
+ {
2065
+ "$kind": "Action",
2066
+ "$Parameter": [
2067
+ {
2068
+ "$Type": "Edm.Int16",
2069
+ "$Name": "ParameterInt16"
2070
+ },
2071
+ {
2072
+ "$Type": "Edm.Duration",
2073
+ "$Name": "ParameterDuration"
2074
+ }
2075
+ ],
2076
+ "$ReturnType": {
2077
+ "$isCollection": true,
2078
+ "$Type": "Edm.String"
2079
+ }
2080
+ }
2081
+ ],
2082
+ "com.odata.v4.technical.scenario.UARTCTTwoPrimParam": [
2083
+ {
2084
+ "$kind": "Action",
2085
+ "$Parameter": [
2086
+ {
2087
+ "$Type": "Edm.Int16",
2088
+ "$Name": "ParameterInt16",
2089
+ "$Nullable": false
2090
+ }
2091
+ ],
2092
+ "$ReturnType": {
2093
+ "$Type": "com.odata.v4.technical.scenario.CTTwoPrim",
2094
+ "$Nullable": false
2095
+ }
2096
+ }
2097
+ ],
2098
+ "com.odata.v4.technical.scenario.UARTCollCTTwoPrimParam": [
2099
+ {
2100
+ "$kind": "Action",
2101
+ "$Parameter": [
2102
+ {
2103
+ "$Type": "Edm.Int16",
2104
+ "$Name": "ParameterInt16"
2105
+ }
2106
+ ],
2107
+ "$ReturnType": {
2108
+ "$isCollection": true,
2109
+ "$Type": "com.odata.v4.technical.scenario.CTTwoPrim"
2110
+ }
2111
+ }
2112
+ ],
2113
+ "com.odata.v4.technical.scenario.UARTETTwoKeyTwoPrimParam": [
2114
+ {
2115
+ "$kind": "Action",
2116
+ "$Parameter": [
2117
+ {
2118
+ "$Type": "Edm.Int16",
2119
+ "$Name": "ParameterInt16"
2120
+ }
2121
+ ],
2122
+ "$ReturnType": {
2123
+ "$Type": "com.odata.v4.technical.scenario.ETTwoKeyTwoPrim"
2124
+ }
2125
+ }
2126
+ ],
2127
+ "com.odata.v4.technical.scenario.UARTCollETKeyNavParam": [
2128
+ {
2129
+ "$kind": "Action",
2130
+ "$Parameter": [
2131
+ {
2132
+ "$Type": "Edm.Int16",
2133
+ "$Name": "ParameterInt16"
2134
+ }
2135
+ ],
2136
+ "$ReturnType": {
2137
+ "$isCollection": true,
2138
+ "$Type": "com.odata.v4.technical.scenario.ETKeyNav"
2139
+ }
2140
+ }
2141
+ ],
2142
+ "com.odata.v4.technical.scenario.UARTETAllPrimParam": [
2143
+ {
2144
+ "$kind": "Action",
2145
+ "$Parameter": [
2146
+ {
2147
+ "$Type": "Edm.Date",
2148
+ "$Name": "ParameterDate"
2149
+ }
2150
+ ],
2151
+ "$ReturnType": {
2152
+ "$Type": "com.odata.v4.technical.scenario.ETAllPrim"
2153
+ }
2154
+ }
2155
+ ],
2156
+ "com.odata.v4.technical.scenario.UARTCollETAllPrimParam": [
2157
+ {
2158
+ "$kind": "Action",
2159
+ "$Parameter": [
2160
+ {
2161
+ "$Type": "Edm.TimeOfDay",
2162
+ "$Name": "ParameterTimeOfDay"
2163
+ }
2164
+ ],
2165
+ "$ReturnType": {
2166
+ "$isCollection": true,
2167
+ "$Type": "com.odata.v4.technical.scenario.ETAllPrim"
2168
+ }
2169
+ }
2170
+ ],
2171
+ "com.odata.v4.technical.scenario.UART": [
2172
+ {
2173
+ "$kind": "Action"
2174
+ }
2175
+ ],
2176
+ "com.odata.v4.technical.scenario.UARTParam": [
2177
+ {
2178
+ "$kind": "Action",
2179
+ "$Parameter": [
2180
+ {
2181
+ "$Type": "Edm.Int16",
2182
+ "$Name": "ParameterInt16"
2183
+ }
2184
+ ]
2185
+ }
2186
+ ],
2187
+ "com.odata.v4.technical.scenario.UARTTwoParam": [
2188
+ {
2189
+ "$kind": "Action",
2190
+ "$Parameter": [
2191
+ {
2192
+ "$Type": "Edm.Int16",
2193
+ "$Name": "ParameterInt16"
2194
+ },
2195
+ {
2196
+ "$Type": "Edm.Duration",
2197
+ "$Name": "ParameterDuration"
2198
+ }
2199
+ ]
2200
+ }
2201
+ ],
2202
+ "com.odata.v4.technical.scenario.UARTByteNineParam": [
2203
+ {
2204
+ "$kind": "Action",
2205
+ "$Parameter": [
2206
+ {
2207
+ "$Type": "com.odata.v4.technical.scenario.ENString",
2208
+ "$Name": "ParameterEnum"
2209
+ },
2210
+ {
2211
+ "$Type": "com.odata.v4.technical.scenario.TDString",
2212
+ "$Name": "ParameterDef"
2213
+ },
2214
+ {
2215
+ "$Type": "com.odata.v4.technical.scenario.CTTwoPrim",
2216
+ "$Name": "ParameterComp"
2217
+ },
2218
+ {
2219
+ "$Type": "com.odata.v4.technical.scenario.ETTwoPrim",
2220
+ "$Name": "ParameterETTwoPrim"
2221
+ },
2222
+ {
2223
+ "$isCollection": true,
2224
+ "$Type": "Edm.Byte",
2225
+ "$Name": "CollParameterByte"
2226
+ },
2227
+ {
2228
+ "$isCollection": true,
2229
+ "$Type": "com.odata.v4.technical.scenario.ENString",
2230
+ "$Name": "CollParameterEnum"
2231
+ },
2232
+ {
2233
+ "$isCollection": true,
2234
+ "$Type": "com.odata.v4.technical.scenario.TDString",
2235
+ "$Name": "CollParameterDef"
2236
+ },
2237
+ {
2238
+ "$isCollection": true,
2239
+ "$Type": "com.odata.v4.technical.scenario.CTTwoPrim",
2240
+ "$Name": "CollParameterComp"
2241
+ },
2242
+ {
2243
+ "$isCollection": true,
2244
+ "$Type": "com.odata.v4.technical.scenario.ETTwoPrim",
2245
+ "$Name": "CollParameterETTwoPrim"
2246
+ }
2247
+ ],
2248
+ "$ReturnType": {
2249
+ "$Type": "Edm.Byte"
2250
+ }
2251
+ }
2252
+ ],
2253
+ "com.odata.v4.technical.scenario.UFNRTInt16": [
2254
+ {
2255
+ "$kind": "Function",
2256
+ "$ReturnType": {
2257
+ "$Type": "Edm.Int16"
2258
+ },
2259
+ "@Org.OData.Core.V1.Description": "Function annotation"
2260
+ }
2261
+ ],
2262
+ "com.odata.v4.technical.scenario.UFCRTETKeyNav": [
2263
+ {
2264
+ "$kind": "Function",
2265
+ "$IsComposable": true,
2266
+ "$ReturnType": {
2267
+ "$Type": "com.odata.v4.technical.scenario.ETKeyNav",
2268
+ "$Nullable": false
2269
+ }
2270
+ }
2271
+ ],
2272
+ "com.odata.v4.technical.scenario.UFCRTETTwoKeyNav": [
2273
+ {
2274
+ "$kind": "Function",
2275
+ "$IsComposable": true,
2276
+ "$ReturnType": {
2277
+ "$Type": "com.odata.v4.technical.scenario.ETTwoKeyNav",
2278
+ "$Nullable": false
2279
+ }
2280
+ }
2281
+ ],
2282
+ "com.odata.v4.technical.scenario.UFCRTETTwoKeyNavParam": [
2283
+ {
2284
+ "$kind": "Function",
2285
+ "$IsComposable": true,
2286
+ "$Parameter": [
2287
+ {
2288
+ "$Type": "Edm.Int16",
2289
+ "$Name": "ParameterInt16",
2290
+ "$Nullable": false
2291
+ }
2292
+ ],
2293
+ "$ReturnType": {
2294
+ "$Type": "com.odata.v4.technical.scenario.ETTwoKeyNav",
2295
+ "$Nullable": false
2296
+ }
2297
+ }
2298
+ ],
2299
+ "com.odata.v4.technical.scenario.UFCRTETTwoKeyNavParamCTTwoPrim": [
2300
+ {
2301
+ "$kind": "Function",
2302
+ "$IsComposable": true,
2303
+ "$Parameter": [
2304
+ {
2305
+ "$Type": "com.odata.v4.technical.scenario.CTTwoPrim",
2306
+ "$Name": "ParameterCTTwoPrim",
2307
+ "$Nullable": false
2308
+ }
2309
+ ],
2310
+ "$ReturnType": {
2311
+ "$Type": "com.odata.v4.technical.scenario.ETTwoKeyNav",
2312
+ "$Nullable": false
2313
+ }
2314
+ }
2315
+ ],
2316
+ "com.odata.v4.technical.scenario.UFCRTString_": [
2317
+ {
2318
+ "$kind": "Function",
2319
+ "$IsComposable": true,
2320
+ "$Parameter": [
2321
+ {
2322
+ "$Type": "Edm.Int16",
2323
+ "$Name": "ParameterInt16",
2324
+ "$Nullable": false
2325
+ }
2326
+ ],
2327
+ "$ReturnType": {
2328
+ "$Type": "Edm.String"
2329
+ }
2330
+ },
2331
+ {
2332
+ "$kind": "Function",
2333
+ "$IsComposable": true,
2334
+ "$Parameter": [
2335
+ {
2336
+ "$Type": "Edm.String",
2337
+ "$Name": "ParameterString",
2338
+ "$Nullable": false
2339
+ },
2340
+ {
2341
+ "$Type": "Edm.Int16",
2342
+ "$Name": "ParameterInt16",
2343
+ "$Nullable": false
2344
+ }
2345
+ ],
2346
+ "$ReturnType": {
2347
+ "$Type": "Edm.String"
2348
+ }
2349
+ }
2350
+ ],
2351
+ "com.odata.v4.technical.scenario._FC_RTTimeOfDay_": [
2352
+ {
2353
+ "$kind": "Function",
2354
+ "$IsBound": true,
2355
+ "$IsComposable": true,
2356
+ "$Parameter": [
2357
+ {
2358
+ "$Type": "Edm.TimeOfDay",
2359
+ "$Name": "ParameterTimeOfDay",
2360
+ "$Nullable": false
2361
+ }
2362
+ ],
2363
+ "$ReturnType": {
2364
+ "$Type": "Edm.TimeOfDay"
2365
+ }
2366
+ },
2367
+ {
2368
+ "$kind": "Function",
2369
+ "$IsBound": true,
2370
+ "$IsComposable": true,
2371
+ "$Parameter": [
2372
+ {
2373
+ "$Type": "Edm.TimeOfDay",
2374
+ "$Name": "ParameterTimeOfDay",
2375
+ "$Nullable": false
2376
+ },
2377
+ {
2378
+ "$Type": "Edm.String",
2379
+ "$Name": "ParameterAny",
2380
+ "$Nullable": false
2381
+ }
2382
+ ],
2383
+ "$ReturnType": {
2384
+ "$Type": "Edm.TimeOfDay"
2385
+ }
2386
+ },
2387
+ {
2388
+ "$kind": "Function",
2389
+ "$IsBound": true,
2390
+ "$IsComposable": true,
2391
+ "$Parameter": [
2392
+ {
2393
+ "$Type": "Edm.TimeOfDay",
2394
+ "$Name": "ParameterTimeOfDay",
2395
+ "$Nullable": false
2396
+ },
2397
+ {
2398
+ "$Type": "Edm.String",
2399
+ "$Name": "ParameterString",
2400
+ "$Nullable": false
2401
+ },
2402
+ {
2403
+ "$Type": "Edm.Int32",
2404
+ "$Name": "ParameterAny",
2405
+ "$Nullable": false
2406
+ }
2407
+ ],
2408
+ "$ReturnType": {
2409
+ "$Type": "Edm.TimeOfDay"
2410
+ }
2411
+ },
2412
+ {
2413
+ "$kind": "Function",
2414
+ "$IsComposable": true,
2415
+ "$Parameter": [
2416
+ {
2417
+ "$Type": "Edm.TimeOfDay",
2418
+ "$Name": "ParameterTimeOfDay",
2419
+ "$Nullable": false
2420
+ }
2421
+ ],
2422
+ "$ReturnType": {
2423
+ "$Type": "Edm.TimeOfDay"
2424
+ }
2425
+ },
2426
+ {
2427
+ "$kind": "Function",
2428
+ "$IsComposable": true,
2429
+ "$Parameter": [
2430
+ {
2431
+ "$Type": "Edm.TimeOfDay",
2432
+ "$Name": "ParameterTimeOfDay",
2433
+ "$Nullable": false
2434
+ },
2435
+ {
2436
+ "$Type": "Edm.String",
2437
+ "$Name": "ParameterAny",
2438
+ "$Nullable": false
2439
+ }
2440
+ ],
2441
+ "$ReturnType": {
2442
+ "$Type": "Edm.TimeOfDay"
2443
+ }
2444
+ },
2445
+ {
2446
+ "$kind": "Function",
2447
+ "$IsComposable": true,
2448
+ "$Parameter": [
2449
+ {
2450
+ "$Type": "Edm.TimeOfDay",
2451
+ "$Name": "ParameterTimeOfDay",
2452
+ "$Nullable": false
2453
+ },
2454
+ {
2455
+ "$Type": "Edm.String",
2456
+ "$Name": "ParameterString",
2457
+ "$Nullable": false
2458
+ },
2459
+ {
2460
+ "$Type": "Edm.Int32",
2461
+ "$Name": "ParameterAny",
2462
+ "$Nullable": false
2463
+ }
2464
+ ],
2465
+ "$ReturnType": {
2466
+ "$Type": "Edm.TimeOfDay"
2467
+ }
2468
+ }
2469
+ ],
2470
+ "com.odata.v4.technical.scenario.UFCRTCollETTwoKeyNavParam": [
2471
+ {
2472
+ "$kind": "Function",
2473
+ "$IsComposable": true,
2474
+ "$Parameter": [
2475
+ {
2476
+ "$Type": "Edm.Int16",
2477
+ "$Name": "ParameterInt16",
2478
+ "$Nullable": false
2479
+ }
2480
+ ],
2481
+ "$ReturnType": {
2482
+ "$isCollection": true,
2483
+ "$Type": "com.odata.v4.technical.scenario.ETTwoKeyNav",
2484
+ "$Nullable": false
2485
+ }
2486
+ }
2487
+ ],
2488
+ "com.odata.v4.technical.scenario.UFCRTString": [
2489
+ {
2490
+ "$kind": "Function",
2491
+ "$IsComposable": true,
2492
+ "$ReturnType": {
2493
+ "$Type": "Edm.String",
2494
+ "$Nullable": false
2495
+ }
2496
+ }
2497
+ ],
2498
+ "com.odata.v4.technical.scenario.UFCRTCollDecimal": [
2499
+ {
2500
+ "$kind": "Function",
2501
+ "$IsComposable": true,
2502
+ "$ReturnType": {
2503
+ "$isCollection": true,
2504
+ "$Type": "Edm.Decimal",
2505
+ "$Nullable": false,
2506
+ "$Precision": 12,
2507
+ "$Scale": 5
2508
+ }
2509
+ }
2510
+ ],
2511
+ "com.odata.v4.technical.scenario.UFCRTDecimal": [
2512
+ {
2513
+ "$kind": "Function",
2514
+ "$IsComposable": true,
2515
+ "$ReturnType": {
2516
+ "$Type": "Edm.Decimal",
2517
+ "$Nullable": false,
2518
+ "$Precision": 12,
2519
+ "$Scale": 5
2520
+ }
2521
+ }
2522
+ ],
2523
+ "com.odata.v4.technical.scenario.UFCRTCollStringTwoParam": [
2524
+ {
2525
+ "$kind": "Function",
2526
+ "$IsComposable": true,
2527
+ "$Parameter": [
2528
+ {
2529
+ "$Type": "Edm.String",
2530
+ "$Name": "ParameterString",
2531
+ "$Nullable": false
2532
+ },
2533
+ {
2534
+ "$Type": "Edm.Int16",
2535
+ "$Name": "ParameterInt16",
2536
+ "$Nullable": false
2537
+ }
2538
+ ],
2539
+ "$ReturnType": {
2540
+ "$isCollection": true,
2541
+ "$Type": "Edm.String",
2542
+ "$Nullable": false
2543
+ }
2544
+ }
2545
+ ],
2546
+ "com.odata.v4.technical.scenario.UFCRTCollString": [
2547
+ {
2548
+ "$kind": "Function",
2549
+ "$IsComposable": true,
2550
+ "$ReturnType": {
2551
+ "$isCollection": true,
2552
+ "$Type": "Edm.String",
2553
+ "$Nullable": false
2554
+ }
2555
+ }
2556
+ ],
2557
+ "com.odata.v4.technical.scenario.UFCRTCTAllPrimTwoParam": [
2558
+ {
2559
+ "$kind": "Function",
2560
+ "$IsComposable": true,
2561
+ "$Parameter": [
2562
+ {
2563
+ "$Type": "Edm.String",
2564
+ "$Name": "ParameterString",
2565
+ "$Nullable": false
2566
+ },
2567
+ {
2568
+ "$Type": "Edm.Int16",
2569
+ "$Name": "ParameterInt16",
2570
+ "$Nullable": false
2571
+ }
2572
+ ],
2573
+ "$ReturnType": {
2574
+ "$Type": "com.odata.v4.technical.scenario.CTAllPrim",
2575
+ "$Nullable": false
2576
+ }
2577
+ }
2578
+ ],
2579
+ "com.odata.v4.technical.scenario.UFCRTCTTwoPrimTwoParam": [
2580
+ {
2581
+ "$kind": "Function",
2582
+ "$IsComposable": true,
2583
+ "$Parameter": [
2584
+ {
2585
+ "$Type": "Edm.Int16",
2586
+ "$Name": "ParameterInt16",
2587
+ "$Nullable": false
2588
+ },
2589
+ {
2590
+ "$Type": "Edm.String",
2591
+ "$Name": "ParameterString",
2592
+ "$Nullable": false
2593
+ }
2594
+ ],
2595
+ "$ReturnType": {
2596
+ "$Type": "com.odata.v4.technical.scenario.CTTwoPrim",
2597
+ "$Nullable": false
2598
+ }
2599
+ }
2600
+ ],
2601
+ "com.odata.v4.technical.scenario.UFCRTCollCTTwoPrimTwoParam": [
2602
+ {
2603
+ "$kind": "Function",
2604
+ "$IsComposable": true,
2605
+ "$Parameter": [
2606
+ {
2607
+ "$Type": "Edm.Int16",
2608
+ "$Name": "ParameterInt16",
2609
+ "$Nullable": false
2610
+ },
2611
+ {
2612
+ "$Type": "Edm.String",
2613
+ "$Name": "ParameterString"
2614
+ }
2615
+ ],
2616
+ "$ReturnType": {
2617
+ "$isCollection": true,
2618
+ "$Type": "com.odata.v4.technical.scenario.CTTwoPrim",
2619
+ "$Nullable": false
2620
+ }
2621
+ }
2622
+ ],
2623
+ "com.odata.v4.technical.scenario.UFCRTCTTwoPrim": [
2624
+ {
2625
+ "$kind": "Function",
2626
+ "$IsComposable": true,
2627
+ "$ReturnType": {
2628
+ "$Type": "com.odata.v4.technical.scenario.CTTwoPrim",
2629
+ "$Nullable": false
2630
+ }
2631
+ }
2632
+ ],
2633
+ "com.odata.v4.technical.scenario.UFCRTCollCTTwoPrim": [
2634
+ {
2635
+ "$kind": "Function",
2636
+ "$IsComposable": true,
2637
+ "$ReturnType": {
2638
+ "$isCollection": true,
2639
+ "$Type": "com.odata.v4.technical.scenario.CTTwoPrim",
2640
+ "$Nullable": false
2641
+ }
2642
+ }
2643
+ ],
2644
+ "com.odata.v4.technical.scenario.UFCRTETMedia": [
2645
+ {
2646
+ "$kind": "Function",
2647
+ "$IsComposable": true,
2648
+ "$Parameter": [
2649
+ {
2650
+ "$Type": "Edm.Int16",
2651
+ "$Name": "ParameterInt16",
2652
+ "$Nullable": false
2653
+ }
2654
+ ],
2655
+ "$ReturnType": {
2656
+ "$Type": "com.odata.v4.technical.scenario.ETMedia",
2657
+ "$Nullable": false
2658
+ }
2659
+ }
2660
+ ],
2661
+ "com.odata.v4.technical.scenario.UFCRTCollETMedia": [
2662
+ {
2663
+ "$kind": "Function",
2664
+ "$IsComposable": true,
2665
+ "$ReturnType": {
2666
+ "$isCollection": true,
2667
+ "$Type": "com.odata.v4.technical.scenario.ETMedia",
2668
+ "$Nullable": false
2669
+ }
2670
+ }
2671
+ ],
2672
+ "com.odata.v4.technical.scenario.UFNRTCollETMixPrimCollCompTwoParam": [
2673
+ {
2674
+ "$kind": "Function",
2675
+ "$Parameter": [
2676
+ {
2677
+ "$Type": "Edm.String",
2678
+ "$Name": "ParameterString",
2679
+ "$Nullable": false
2680
+ },
2681
+ {
2682
+ "$Type": "Edm.Int16",
2683
+ "$Name": "ParameterInt16",
2684
+ "$Nullable": false
2685
+ }
2686
+ ],
2687
+ "$ReturnType": {
2688
+ "$isCollection": true,
2689
+ "$Type": "com.odata.v4.technical.scenario.ETMixPrimCollComp",
2690
+ "$Nullable": false
2691
+ }
2692
+ }
2693
+ ],
2694
+ "com.odata.v4.technical.scenario.UFCRTETAllPrimTwoParam": [
2695
+ {
2696
+ "$kind": "Function",
2697
+ "$IsComposable": true,
2698
+ "$Parameter": [
2699
+ {
2700
+ "$Type": "Edm.String",
2701
+ "$Name": "ParameterString",
2702
+ "$Nullable": false
2703
+ },
2704
+ {
2705
+ "$Type": "Edm.Int16",
2706
+ "$Name": "ParameterInt16",
2707
+ "$Nullable": false
2708
+ }
2709
+ ],
2710
+ "$ReturnType": {
2711
+ "$Type": "com.odata.v4.technical.scenario.ETAllPrim",
2712
+ "$Nullable": false
2713
+ }
2714
+ }
2715
+ ],
2716
+ "com.odata.v4.technical.scenario.UFCRTCollETMixPrimCollCompTwoParam": [
2717
+ {
2718
+ "$kind": "Function",
2719
+ "$IsComposable": true,
2720
+ "$Parameter": [
2721
+ {
2722
+ "$Type": "Edm.String",
2723
+ "$Name": "ParameterString",
2724
+ "$Nullable": false
2725
+ },
2726
+ {
2727
+ "$Type": "Edm.Int16",
2728
+ "$Name": "ParameterInt16",
2729
+ "$Nullable": false
2730
+ }
2731
+ ],
2732
+ "$ReturnType": {
2733
+ "$isCollection": true,
2734
+ "$Type": "com.odata.v4.technical.scenario.ETMixPrimCollComp",
2735
+ "$Nullable": false
2736
+ }
2737
+ }
2738
+ ],
2739
+ "com.odata.v4.technical.scenario.UFNRTCollCTNavFiveProp": [
2740
+ {
2741
+ "$kind": "Function",
2742
+ "$ReturnType": {
2743
+ "$isCollection": true,
2744
+ "$Type": "com.odata.v4.technical.scenario.CTNavFiveProp"
2745
+ }
2746
+ }
2747
+ ],
2748
+ "com.odata.v4.technical.scenario.UFCRTCollETKeyNavContParam": [
2749
+ {
2750
+ "$kind": "Function",
2751
+ "$IsComposable": true,
2752
+ "$Parameter": [
2753
+ {
2754
+ "$Type": "Edm.Int16",
2755
+ "$Name": "ParameterInt16",
2756
+ "$Nullable": false
2757
+ }
2758
+ ],
2759
+ "$ReturnType": {
2760
+ "$isCollection": true,
2761
+ "$Type": "com.odata.v4.technical.scenario.ETKeyNavCont",
2762
+ "$Nullable": false
2763
+ }
2764
+ }
2765
+ ],
2766
+ "com.odata.v4.technical.scenario.UFCRTTDString": [
2767
+ {
2768
+ "$kind": "Function",
2769
+ "$IsComposable": true,
2770
+ "$ReturnType": {
2771
+ "$Type": "com.odata.v4.technical.scenario.TDString",
2772
+ "$Nullable": false
2773
+ }
2774
+ }
2775
+ ],
2776
+ "com.odata.v4.technical.scenario.UFCRTCollTDString": [
2777
+ {
2778
+ "$kind": "Function",
2779
+ "$IsComposable": true,
2780
+ "$ReturnType": {
2781
+ "$isCollection": true,
2782
+ "$Type": "com.odata.v4.technical.scenario.TDString",
2783
+ "$Nullable": false
2784
+ }
2785
+ }
2786
+ ],
2787
+ "com.odata.v4.technical.scenario.UFNRTByteNineParam": [
2788
+ {
2789
+ "$kind": "Function",
2790
+ "$Parameter": [
2791
+ {
2792
+ "$Type": "com.odata.v4.technical.scenario.ENString",
2793
+ "$Name": "ParameterEnum"
2794
+ },
2795
+ {
2796
+ "$Type": "com.odata.v4.technical.scenario.TDString",
2797
+ "$Name": "ParameterDef"
2798
+ },
2799
+ {
2800
+ "$Type": "com.odata.v4.technical.scenario.CTTwoPrim",
2801
+ "$Name": "ParameterComp"
2802
+ },
2803
+ {
2804
+ "$Type": "com.odata.v4.technical.scenario.ETTwoPrim",
2805
+ "$Name": "ParameterETTwoPrim"
2806
+ },
2807
+ {
2808
+ "$isCollection": true,
2809
+ "$Type": "Edm.Byte",
2810
+ "$Name": "CollParameterByte"
2811
+ },
2812
+ {
2813
+ "$isCollection": true,
2814
+ "$Type": "com.odata.v4.technical.scenario.ENString",
2815
+ "$Name": "CollParameterEnum"
2816
+ },
2817
+ {
2818
+ "$isCollection": true,
2819
+ "$Type": "com.odata.v4.technical.scenario.TDString",
2820
+ "$Name": "CollParameterDef"
2821
+ },
2822
+ {
2823
+ "$isCollection": true,
2824
+ "$Type": "com.odata.v4.technical.scenario.CTTwoPrim",
2825
+ "$Name": "CollParameterComp"
2826
+ },
2827
+ {
2828
+ "$isCollection": true,
2829
+ "$Type": "com.odata.v4.technical.scenario.ETTwoPrim",
2830
+ "$Name": "CollParameterETTwoPrim"
2831
+ }
2832
+ ],
2833
+ "$ReturnType": {
2834
+ "$Type": "Edm.Byte"
2835
+ }
2836
+ }
2837
+ ],
2838
+ "com.odata.v4.technical.scenario.BFC_RTESTwoKeyNav_": [
2839
+ {
2840
+ "$kind": "Function",
2841
+ "$IsBound": true,
2842
+ "$EntitySetPath": "BindingParam/NavPropertyETTwoKeyNavMany",
2843
+ "$IsComposable": true,
2844
+ "$Parameter": [
2845
+ {
2846
+ "$isCollection": true,
2847
+ "$Type": "com.odata.v4.technical.scenario.ETTwoKeyNav",
2848
+ "$Name": "BindingParam",
2849
+ "$Nullable": false
2850
+ }
2851
+ ],
2852
+ "$ReturnType": {
2853
+ "$isCollection": true,
2854
+ "$Type": "com.odata.v4.technical.scenario.ETTwoKeyNav",
2855
+ "$Nullable": false
2856
+ }
2857
+ },
2858
+ {
2859
+ "$kind": "Function",
2860
+ "$IsBound": true,
2861
+ "$IsComposable": true,
2862
+ "$Parameter": [
2863
+ {
2864
+ "$isCollection": true,
2865
+ "$Type": "com.odata.v4.technical.scenario.ETTwoKeyNav",
2866
+ "$Name": "BindingParam",
2867
+ "$Nullable": false
2868
+ },
2869
+ {
2870
+ "$Type": "Edm.String",
2871
+ "$Name": "ParameterString",
2872
+ "$Nullable": false
2873
+ }
2874
+ ],
2875
+ "$ReturnType": {
2876
+ "$isCollection": true,
2877
+ "$Type": "com.odata.v4.technical.scenario.ETTwoKeyNav",
2878
+ "$Nullable": false
2879
+ }
2880
+ },
2881
+ {
2882
+ "$kind": "Function",
2883
+ "$IsBound": true,
2884
+ "$IsComposable": true,
2885
+ "$Parameter": [
2886
+ {
2887
+ "$isCollection": true,
2888
+ "$Type": "com.odata.v4.technical.scenario.ETKeyNav",
2889
+ "$Name": "BindingParam",
2890
+ "$Nullable": false
2891
+ }
2892
+ ],
2893
+ "$ReturnType": {
2894
+ "$isCollection": true,
2895
+ "$Type": "com.odata.v4.technical.scenario.ETTwoKeyNav",
2896
+ "$Nullable": false
2897
+ }
2898
+ }
2899
+ ],
2900
+ "com.odata.v4.technical.scenario.BFCStringRTESTwoKeyNav": [
2901
+ {
2902
+ "$kind": "Function",
2903
+ "$IsBound": true,
2904
+ "$IsComposable": true,
2905
+ "$Parameter": [
2906
+ {
2907
+ "$Type": "Edm.String",
2908
+ "$Name": "BindingParam",
2909
+ "$Nullable": false
2910
+ }
2911
+ ],
2912
+ "$ReturnType": {
2913
+ "$isCollection": true,
2914
+ "$Type": "com.odata.v4.technical.scenario.ETTwoKeyNav",
2915
+ "$Nullable": false
2916
+ }
2917
+ }
2918
+ ],
2919
+ "com.odata.v4.technical.scenario.BFCETBaseTwoKeyNavRTETTwoKeyNav": [
2920
+ {
2921
+ "$kind": "Function",
2922
+ "$IsBound": true,
2923
+ "$IsComposable": true,
2924
+ "$Parameter": [
2925
+ {
2926
+ "$Type": "com.odata.v4.technical.scenario.ETBaseTwoKeyNav",
2927
+ "$Name": "BindingParam",
2928
+ "$Nullable": false
2929
+ }
2930
+ ],
2931
+ "$ReturnType": {
2932
+ "$Type": "com.odata.v4.technical.scenario.ETTwoKeyNav",
2933
+ "$Nullable": false
2934
+ }
2935
+ }
2936
+ ],
2937
+ "com.odata.v4.technical.scenario.BFCESBaseTwoKeyNavRTESBaseTwoKey": [
2938
+ {
2939
+ "$kind": "Function",
2940
+ "$IsBound": true,
2941
+ "$IsComposable": true,
2942
+ "$Parameter": [
2943
+ {
2944
+ "$isCollection": true,
2945
+ "$Type": "com.odata.v4.technical.scenario.ETBaseTwoKeyNav",
2946
+ "$Name": "BindingParam",
2947
+ "$Nullable": false
2948
+ }
2949
+ ],
2950
+ "$ReturnType": {
2951
+ "$isCollection": true,
2952
+ "$Type": "com.odata.v4.technical.scenario.ETBaseTwoKeyNav",
2953
+ "$Nullable": false
2954
+ }
2955
+ }
2956
+ ],
2957
+ "com.odata.v4.technical.scenario.BFNESAllPrimRTCTAllPrim": [
2958
+ {
2959
+ "$kind": "Function",
2960
+ "$IsBound": true,
2961
+ "$Parameter": [
2962
+ {
2963
+ "$isCollection": true,
2964
+ "$Type": "com.odata.v4.technical.scenario.ETAllPrim",
2965
+ "$Name": "BindingParam",
2966
+ "$Nullable": false
2967
+ }
2968
+ ],
2969
+ "$ReturnType": {
2970
+ "$Type": "com.odata.v4.technical.scenario.CTAllPrim",
2971
+ "$Nullable": false
2972
+ }
2973
+ }
2974
+ ],
2975
+ "com.odata.v4.technical.scenario.BFCESTwoKeyNavRTCTTwoPrim": [
2976
+ {
2977
+ "$kind": "Function",
2978
+ "$IsBound": true,
2979
+ "$IsComposable": true,
2980
+ "$Parameter": [
2981
+ {
2982
+ "$isCollection": true,
2983
+ "$Type": "com.odata.v4.technical.scenario.ETTwoKeyNav",
2984
+ "$Name": "BindingParam",
2985
+ "$Nullable": false
2986
+ }
2987
+ ],
2988
+ "$ReturnType": {
2989
+ "$Type": "com.odata.v4.technical.scenario.CTTwoPrim",
2990
+ "$Nullable": false
2991
+ }
2992
+ }
2993
+ ],
2994
+ "com.odata.v4.technical.scenario.BFCESTwoKeyNavRTCollCTTwoPrim": [
2995
+ {
2996
+ "$kind": "Function",
2997
+ "$IsBound": true,
2998
+ "$IsComposable": true,
2999
+ "$Parameter": [
3000
+ {
3001
+ "$isCollection": true,
3002
+ "$Type": "com.odata.v4.technical.scenario.ETTwoKeyNav",
3003
+ "$Name": "BindingParam",
3004
+ "$Nullable": false
3005
+ }
3006
+ ],
3007
+ "$ReturnType": {
3008
+ "$isCollection": true,
3009
+ "$Type": "com.odata.v4.technical.scenario.CTTwoPrim",
3010
+ "$Nullable": false
3011
+ }
3012
+ }
3013
+ ],
3014
+ "com.odata.v4.technical.scenario.BFCESTwoKeyNavRTString": [
3015
+ {
3016
+ "$kind": "Function",
3017
+ "$IsBound": true,
3018
+ "$IsComposable": true,
3019
+ "$Parameter": [
3020
+ {
3021
+ "$isCollection": true,
3022
+ "$Type": "com.odata.v4.technical.scenario.ETTwoKeyNav",
3023
+ "$Name": "BindingParam",
3024
+ "$Nullable": false
3025
+ }
3026
+ ],
3027
+ "$ReturnType": {
3028
+ "$Type": "Edm.String",
3029
+ "$Nullable": false
3030
+ }
3031
+ }
3032
+ ],
3033
+ "com.odata.v4.technical.scenario.BFNESTwoKeyNavRTString": [
3034
+ {
3035
+ "$kind": "Function",
3036
+ "$IsBound": true,
3037
+ "$Parameter": [
3038
+ {
3039
+ "$isCollection": true,
3040
+ "$Type": "com.odata.v4.technical.scenario.ETTwoKeyNav",
3041
+ "$Name": "BindingParam",
3042
+ "$Nullable": false
3043
+ }
3044
+ ],
3045
+ "$ReturnType": {
3046
+ "$Type": "Edm.String",
3047
+ "$Nullable": false
3048
+ }
3049
+ }
3050
+ ],
3051
+ "com.odata.v4.technical.scenario.BFCESTwoKeyNavRTCollString": [
3052
+ {
3053
+ "$kind": "Function",
3054
+ "$IsBound": true,
3055
+ "$IsComposable": true,
3056
+ "$Parameter": [
3057
+ {
3058
+ "$isCollection": true,
3059
+ "$Type": "com.odata.v4.technical.scenario.ETTwoKeyNav",
3060
+ "$Name": "BindingParam",
3061
+ "$Nullable": false
3062
+ }
3063
+ ],
3064
+ "$ReturnType": {
3065
+ "$isCollection": true,
3066
+ "$Type": "Edm.String",
3067
+ "$Nullable": false
3068
+ }
3069
+ }
3070
+ ],
3071
+ "com.odata.v4.technical.scenario.BFCETTwoKeyNavRTESTwoKeyNav": [
3072
+ {
3073
+ "$kind": "Function",
3074
+ "$IsBound": true,
3075
+ "$EntitySetPath": "BindingParam/NavPropertyETTwoKeyNavOne",
3076
+ "$IsComposable": true,
3077
+ "$Parameter": [
3078
+ {
3079
+ "$Type": "com.odata.v4.technical.scenario.ETTwoKeyNav",
3080
+ "$Name": "BindingParam",
3081
+ "$Nullable": false
3082
+ }
3083
+ ],
3084
+ "$ReturnType": {
3085
+ "$isCollection": true,
3086
+ "$Type": "com.odata.v4.technical.scenario.ETTwoKeyNav",
3087
+ "$Nullable": false
3088
+ }
3089
+ }
3090
+ ],
3091
+ "com.odata.v4.technical.scenario.BFCETBaseTwoKeyNavRTESTwoKeyNav": [
3092
+ {
3093
+ "$kind": "Function",
3094
+ "$IsBound": true,
3095
+ "$IsComposable": true,
3096
+ "$Parameter": [
3097
+ {
3098
+ "$Type": "com.odata.v4.technical.scenario.ETBaseTwoKeyNav",
3099
+ "$Name": "BindingParam",
3100
+ "$Nullable": false
3101
+ }
3102
+ ],
3103
+ "$ReturnType": {
3104
+ "$isCollection": true,
3105
+ "$Type": "com.odata.v4.technical.scenario.ETTwoKeyNav",
3106
+ "$Nullable": false
3107
+ }
3108
+ }
3109
+ ],
3110
+ "com.odata.v4.technical.scenario.BFCSINavRTESTwoKeyNav": [
3111
+ {
3112
+ "$kind": "Function",
3113
+ "$IsBound": true,
3114
+ "$IsComposable": true,
3115
+ "$Parameter": [
3116
+ {
3117
+ "$Type": "com.odata.v4.technical.scenario.ETTwoKeyNav",
3118
+ "$Name": "BindingParam",
3119
+ "$Nullable": false
3120
+ }
3121
+ ],
3122
+ "$ReturnType": {
3123
+ "$isCollection": true,
3124
+ "$Type": "com.odata.v4.technical.scenario.ETTwoKeyNav",
3125
+ "$Nullable": false
3126
+ }
3127
+ }
3128
+ ],
3129
+ "com.odata.v4.technical.scenario.BFCETBaseTwoKeyNavRTESBaseTwoKey": [
3130
+ {
3131
+ "$kind": "Function",
3132
+ "$IsBound": true,
3133
+ "$IsComposable": true,
3134
+ "$Parameter": [
3135
+ {
3136
+ "$Type": "com.odata.v4.technical.scenario.ETBaseTwoKeyNav",
3137
+ "$Name": "BindingParam",
3138
+ "$Nullable": false
3139
+ }
3140
+ ],
3141
+ "$ReturnType": {
3142
+ "$isCollection": true,
3143
+ "$Type": "com.odata.v4.technical.scenario.ETBaseTwoKeyNav",
3144
+ "$Nullable": false
3145
+ }
3146
+ }
3147
+ ],
3148
+ "com.odata.v4.technical.scenario.BFCCollStringRTESTwoKeyNav": [
3149
+ {
3150
+ "$kind": "Function",
3151
+ "$IsBound": true,
3152
+ "$IsComposable": true,
3153
+ "$Parameter": [
3154
+ {
3155
+ "$isCollection": true,
3156
+ "$Type": "Edm.String",
3157
+ "$Name": "BindingParam",
3158
+ "$Nullable": false
3159
+ }
3160
+ ],
3161
+ "$ReturnType": {
3162
+ "$isCollection": true,
3163
+ "$Type": "com.odata.v4.technical.scenario.ETTwoKeyNav",
3164
+ "$Nullable": false
3165
+ }
3166
+ }
3167
+ ],
3168
+ "com.odata.v4.technical.scenario.BFCCTPrimCompRTESTwoKeyNav": [
3169
+ {
3170
+ "$kind": "Function",
3171
+ "$IsBound": true,
3172
+ "$IsComposable": true,
3173
+ "$Parameter": [
3174
+ {
3175
+ "$Type": "com.odata.v4.technical.scenario.CTPrimComp",
3176
+ "$Name": "BindingParam",
3177
+ "$Nullable": false
3178
+ }
3179
+ ],
3180
+ "$ReturnType": {
3181
+ "$isCollection": true,
3182
+ "$Type": "com.odata.v4.technical.scenario.ETTwoKeyNav",
3183
+ "$Nullable": false
3184
+ }
3185
+ }
3186
+ ],
3187
+ "com.odata.v4.technical.scenario.BFCCTPrimCompRTESBaseTwoKeyNav": [
3188
+ {
3189
+ "$kind": "Function",
3190
+ "$IsBound": true,
3191
+ "$IsComposable": true,
3192
+ "$Parameter": [
3193
+ {
3194
+ "$Type": "com.odata.v4.technical.scenario.CTPrimComp",
3195
+ "$Name": "BindingParam",
3196
+ "$Nullable": false
3197
+ }
3198
+ ],
3199
+ "$ReturnType": {
3200
+ "$isCollection": true,
3201
+ "$Type": "com.odata.v4.technical.scenario.ETBaseTwoKeyNav",
3202
+ "$Nullable": false
3203
+ }
3204
+ }
3205
+ ],
3206
+ "com.odata.v4.technical.scenario.BFCCollCTPrimCompRTESAllPrim": [
3207
+ {
3208
+ "$kind": "Function",
3209
+ "$IsBound": true,
3210
+ "$IsComposable": true,
3211
+ "$Parameter": [
3212
+ {
3213
+ "$isCollection": true,
3214
+ "$Type": "com.odata.v4.technical.scenario.CTPrimComp",
3215
+ "$Name": "BindingParam",
3216
+ "$Nullable": false
3217
+ }
3218
+ ],
3219
+ "$ReturnType": {
3220
+ "$isCollection": true,
3221
+ "$Type": "com.odata.v4.technical.scenario.ETAllPrim",
3222
+ "$Nullable": false
3223
+ }
3224
+ }
3225
+ ],
3226
+ "com.odata.v4.technical.scenario.BFCESTwoKeyNavRTTwoKeyNav": [
3227
+ {
3228
+ "$kind": "Function",
3229
+ "$IsBound": true,
3230
+ "$IsComposable": true,
3231
+ "$Parameter": [
3232
+ {
3233
+ "$isCollection": true,
3234
+ "$Type": "com.odata.v4.technical.scenario.ETTwoKeyNav",
3235
+ "$Name": "BindingParam",
3236
+ "$Nullable": false
3237
+ }
3238
+ ],
3239
+ "$ReturnType": {
3240
+ "$Type": "com.odata.v4.technical.scenario.ETTwoKeyNav",
3241
+ "$Nullable": false
3242
+ }
3243
+ }
3244
+ ],
3245
+ "com.odata.v4.technical.scenario.BFCESKeyNavRTETKeyNav": [
3246
+ {
3247
+ "$kind": "Function",
3248
+ "$IsBound": true,
3249
+ "$IsComposable": true,
3250
+ "$Parameter": [
3251
+ {
3252
+ "$isCollection": true,
3253
+ "$Type": "com.odata.v4.technical.scenario.ETKeyNav",
3254
+ "$Name": "BindingParam",
3255
+ "$Nullable": false
3256
+ }
3257
+ ],
3258
+ "$ReturnType": {
3259
+ "$Type": "com.odata.v4.technical.scenario.ETKeyNav",
3260
+ "$Nullable": false
3261
+ }
3262
+ }
3263
+ ],
3264
+ "com.odata.v4.technical.scenario.BFCETKeyNavRTETKeyNav": [
3265
+ {
3266
+ "$kind": "Function",
3267
+ "$IsBound": true,
3268
+ "$EntitySetPath": "BindingParam/NavPropertyETKeyNavOne",
3269
+ "$IsComposable": true,
3270
+ "$Parameter": [
3271
+ {
3272
+ "$Type": "com.odata.v4.technical.scenario.ETKeyNav",
3273
+ "$Name": "BindingParam",
3274
+ "$Nullable": false
3275
+ }
3276
+ ],
3277
+ "$ReturnType": {
3278
+ "$Type": "com.odata.v4.technical.scenario.ETKeyNav",
3279
+ "$Nullable": false
3280
+ }
3281
+ }
3282
+ ],
3283
+ "com.odata.v4.technical.scenario.BFCESTwoKeyNavRTESTwoKeyNav": [
3284
+ {
3285
+ "$kind": "Function",
3286
+ "$IsBound": true,
3287
+ "$IsComposable": true,
3288
+ "$Parameter": [
3289
+ {
3290
+ "$isCollection": true,
3291
+ "$Type": "com.odata.v4.technical.scenario.ETTwoKeyNav",
3292
+ "$Name": "BindingParam",
3293
+ "$Nullable": false
3294
+ }
3295
+ ],
3296
+ "$ReturnType": {
3297
+ "$isCollection": true,
3298
+ "$Type": "com.odata.v4.technical.scenario.ETTwoKeyNav",
3299
+ "$Nullable": false
3300
+ }
3301
+ }
3302
+ ],
3303
+ "com.odata.v4.technical.scenario.BFCETTwoKeyNavRTETTwoKeyNav": [
3304
+ {
3305
+ "$kind": "Function",
3306
+ "$IsBound": true,
3307
+ "$IsComposable": true,
3308
+ "$Parameter": [
3309
+ {
3310
+ "$Type": "com.odata.v4.technical.scenario.ETTwoKeyNav",
3311
+ "$Name": "BindingParam",
3312
+ "$Nullable": false
3313
+ }
3314
+ ],
3315
+ "$ReturnType": {
3316
+ "$Type": "com.odata.v4.technical.scenario.ETTwoKeyNav",
3317
+ "$Nullable": false
3318
+ }
3319
+ }
3320
+ ],
3321
+ "com.odata.v4.technical.scenario.BFCETTwoKeyNavRTCTTwoPrim": [
3322
+ {
3323
+ "$kind": "Function",
3324
+ "$IsBound": true,
3325
+ "$IsComposable": true,
3326
+ "$Parameter": [
3327
+ {
3328
+ "$Type": "com.odata.v4.technical.scenario.ETTwoKeyNav",
3329
+ "$Name": "BindingParam",
3330
+ "$Nullable": false
3331
+ }
3332
+ ],
3333
+ "$ReturnType": {
3334
+ "$Type": "com.odata.v4.technical.scenario.CTTwoPrim",
3335
+ "$Nullable": false
3336
+ }
3337
+ }
3338
+ ],
3339
+ "com.odata.v4.technical.scenario.BFCESTwoKeyNavRTCTNavFiveProp": [
3340
+ {
3341
+ "$kind": "Function",
3342
+ "$IsBound": true,
3343
+ "$IsComposable": true,
3344
+ "$Parameter": [
3345
+ {
3346
+ "$isCollection": true,
3347
+ "$Type": "com.odata.v4.technical.scenario.ETTwoKeyNav",
3348
+ "$Name": "BindingParam",
3349
+ "$Nullable": false
3350
+ }
3351
+ ],
3352
+ "$ReturnType": {
3353
+ "$Type": "com.odata.v4.technical.scenario.CTNavFiveProp",
3354
+ "$Nullable": false
3355
+ }
3356
+ }
3357
+ ],
3358
+ "com.odata.v4.technical.scenario.BFCESTwoKeyNavRTCollCTNavFiveProp": [
3359
+ {
3360
+ "$kind": "Function",
3361
+ "$IsBound": true,
3362
+ "$IsComposable": true,
3363
+ "$Parameter": [
3364
+ {
3365
+ "$isCollection": true,
3366
+ "$Type": "com.odata.v4.technical.scenario.ETTwoKeyNav",
3367
+ "$Name": "BindingParam",
3368
+ "$Nullable": false
3369
+ }
3370
+ ],
3371
+ "$ReturnType": {
3372
+ "$isCollection": true,
3373
+ "$Type": "com.odata.v4.technical.scenario.CTNavFiveProp",
3374
+ "$Nullable": false
3375
+ }
3376
+ }
3377
+ ],
3378
+ "com.odata.v4.technical.scenario.BFCESTwoKeyNavRTCollDecimal": [
3379
+ {
3380
+ "$kind": "Function",
3381
+ "$IsBound": true,
3382
+ "$IsComposable": true,
3383
+ "$Parameter": [
3384
+ {
3385
+ "$isCollection": true,
3386
+ "$Type": "com.odata.v4.technical.scenario.ETTwoKeyNav",
3387
+ "$Name": "BindingParam",
3388
+ "$Nullable": false
3389
+ }
3390
+ ],
3391
+ "$ReturnType": {
3392
+ "$isCollection": true,
3393
+ "$Type": "Edm.Decimal",
3394
+ "$Nullable": false,
3395
+ "$Precision": 12,
3396
+ "$Scale": 5
3397
+ }
3398
+ }
3399
+ ],
3400
+ "com.odata.v4.technical.scenario.BFCESTwoKeyNavRTStringParam": [
3401
+ {
3402
+ "$kind": "Function",
3403
+ "$IsBound": true,
3404
+ "$IsComposable": true,
3405
+ "$Parameter": [
3406
+ {
3407
+ "$isCollection": true,
3408
+ "$Type": "com.odata.v4.technical.scenario.ETTwoKeyNav",
3409
+ "$Name": "BindingParam",
3410
+ "$Nullable": false
3411
+ },
3412
+ {
3413
+ "$Type": "com.odata.v4.technical.scenario.CTTwoPrim",
3414
+ "$Name": "ParameterComp",
3415
+ "$Nullable": false
3416
+ }
3417
+ ],
3418
+ "$ReturnType": {
3419
+ "$Type": "Edm.String",
3420
+ "$Nullable": false
3421
+ }
3422
+ }
3423
+ ],
3424
+ "com.odata.v4.technical.scenario.BFCESKeyNavRTETKeyNavParam": [
3425
+ {
3426
+ "$kind": "Function",
3427
+ "$IsBound": true,
3428
+ "$IsComposable": true,
3429
+ "$Parameter": [
3430
+ {
3431
+ "$isCollection": true,
3432
+ "$Type": "com.odata.v4.technical.scenario.ETKeyNav",
3433
+ "$Name": "BindingParam",
3434
+ "$Nullable": false
3435
+ },
3436
+ {
3437
+ "$Type": "Edm.String",
3438
+ "$Name": "ParameterString",
3439
+ "$Nullable": false
3440
+ }
3441
+ ],
3442
+ "$ReturnType": {
3443
+ "$Type": "com.odata.v4.technical.scenario.ETKeyNav",
3444
+ "$Nullable": false
3445
+ }
3446
+ }
3447
+ ],
3448
+ "com.odata.v4.technical.scenario.BFCCTPrimCompRTETTwoKeyNavParam": [
3449
+ {
3450
+ "$kind": "Function",
3451
+ "$IsBound": true,
3452
+ "$IsComposable": true,
3453
+ "$Parameter": [
3454
+ {
3455
+ "$Type": "com.odata.v4.technical.scenario.CTPrimComp",
3456
+ "$Name": "BindingParam",
3457
+ "$Nullable": false
3458
+ },
3459
+ {
3460
+ "$Type": "Edm.String",
3461
+ "$Name": "ParameterString",
3462
+ "$Nullable": false
3463
+ }
3464
+ ],
3465
+ "$ReturnType": {
3466
+ "$Type": "com.odata.v4.technical.scenario.ETTwoKeyNav",
3467
+ "$Nullable": false
3468
+ }
3469
+ }
3470
+ ],
3471
+ "com.odata.v4.technical.scenario.BFCESKeyNavRTESTwoKeyNav": [
3472
+ {
3473
+ "$kind": "Function",
3474
+ "$IsBound": true,
3475
+ "$EntitySetPath": "BindingParam/NavPropertyETTwoKeyNavMany",
3476
+ "$IsComposable": true,
3477
+ "$Parameter": [
3478
+ {
3479
+ "$isCollection": true,
3480
+ "$Type": "com.odata.v4.technical.scenario.ETKeyNav",
3481
+ "$Name": "BindingParam",
3482
+ "$Nullable": false
3483
+ },
3484
+ {
3485
+ "$Type": "Edm.String",
3486
+ "$Name": "ParameterString",
3487
+ "$Nullable": false
3488
+ }
3489
+ ],
3490
+ "$ReturnType": {
3491
+ "$isCollection": true,
3492
+ "$Type": "com.odata.v4.technical.scenario.ETTwoKeyNav",
3493
+ "$Nullable": false
3494
+ }
3495
+ }
3496
+ ],
3497
+ "com.odata.v4.technical.scenario.BFCTDStringRTTDString": [
3498
+ {
3499
+ "$kind": "Function",
3500
+ "$IsBound": true,
3501
+ "$IsComposable": true,
3502
+ "$Parameter": [
3503
+ {
3504
+ "$Type": "com.odata.v4.technical.scenario.TDString",
3505
+ "$Name": "BindingParam",
3506
+ "$Nullable": false
3507
+ }
3508
+ ],
3509
+ "$ReturnType": {
3510
+ "$Type": "com.odata.v4.technical.scenario.TDString",
3511
+ "$Nullable": false
3512
+ }
3513
+ }
3514
+ ],
3515
+ "com.odata.v4.technical.scenario.BFCTDStringRTCollTDString": [
3516
+ {
3517
+ "$kind": "Function",
3518
+ "$IsBound": true,
3519
+ "$IsComposable": true,
3520
+ "$Parameter": [
3521
+ {
3522
+ "$Type": "com.odata.v4.technical.scenario.TDString",
3523
+ "$Name": "BindingParam",
3524
+ "$Nullable": false
3525
+ }
3526
+ ],
3527
+ "$ReturnType": {
3528
+ "$isCollection": true,
3529
+ "$Type": "com.odata.v4.technical.scenario.TDString",
3530
+ "$Nullable": false
3531
+ }
3532
+ }
3533
+ ],
3534
+ "com.odata.v4.technical.scenario.TermBinary": {
3535
+ "$kind": "Term",
3536
+ "$Type": "Edm.Binary"
3537
+ },
3538
+ "com.odata.v4.technical.scenario.TermBoolean": {
3539
+ "$kind": "Term",
3540
+ "$Type": "Edm.Boolean"
3541
+ },
3542
+ "com.odata.v4.technical.scenario.TermDate": {
3543
+ "$kind": "Term",
3544
+ "$Type": "Edm.Date"
3545
+ },
3546
+ "com.odata.v4.technical.scenario.TermDateTimeOffset": {
3547
+ "$kind": "Term",
3548
+ "$Type": "Edm.DateTimeOffset",
3549
+ "$Precision": 3
3550
+ },
3551
+ "com.odata.v4.technical.scenario.TermDecimal": {
3552
+ "$kind": "Term",
3553
+ "$Type": "Edm.Decimal"
3554
+ },
3555
+ "com.odata.v4.technical.scenario.TermDuration": {
3556
+ "$kind": "Term",
3557
+ "$Type": "Edm.Duration"
3558
+ },
3559
+ "com.odata.v4.technical.scenario.TermDouble": {
3560
+ "$kind": "Term",
3561
+ "$Type": "Edm.Double"
3562
+ },
3563
+ "com.odata.v4.technical.scenario.TermEnum": {
3564
+ "$kind": "Term",
3565
+ "$Type": "com.odata.v4.technical.scenario.ENString"
3566
+ },
3567
+ "com.odata.v4.technical.scenario.TermGuid": {
3568
+ "$kind": "Term",
3569
+ "$Type": "Edm.Guid"
3570
+ },
3571
+ "com.odata.v4.technical.scenario.TermInt64": {
3572
+ "$kind": "Term",
3573
+ "$Type": "Edm.Int64"
3574
+ },
3575
+ "com.odata.v4.technical.scenario.TermString": {
3576
+ "$kind": "Term",
3577
+ "$Type": "Edm.String"
3578
+ },
3579
+ "com.odata.v4.technical.scenario.TermTimeOfDay": {
3580
+ "$kind": "Term",
3581
+ "$Type": "Edm.TimeOfDay"
3582
+ },
3583
+ "com.odata.v4.technical.scenario.CollTermString": {
3584
+ "$kind": "Term",
3585
+ "$isCollection": true,
3586
+ "$Type": "Edm.String"
3587
+ },
3588
+ "com.odata.v4.technical.scenario.TermCTTwoPrim": {
3589
+ "$kind": "Term",
3590
+ "$Type": "com.odata.v4.technical.scenario.CTTwoPrim"
3591
+ },
3592
+ "com.odata.v4.technical.scenario.Container": {
3593
+ "$kind": "EntityContainer",
3594
+ "ESAnnotated": {
3595
+ "$kind": "EntitySet",
3596
+ "$Type": "com.odata.v4.technical.scenario.ETAnnotated",
3597
+ "$NavigationPropertyBinding": {
3598
+ "NavPropertyETAllPrimOne": "ESAllPrim",
3599
+ "NavPropertyETAllPrimMany": "ESAllPrim"
3600
+ }
3601
+ },
3602
+ "ESAllPrim": {
3603
+ "$kind": "EntitySet",
3604
+ "$Type": "com.odata.v4.technical.scenario.ETAllPrim",
3605
+ "$NavigationPropertyBinding": {
3606
+ "NavPropertyETTwoPrimOne": "ESTwoPrim",
3607
+ "NavPropertyETTwoPrimMany": "ESTwoPrim"
3608
+ }
3609
+ },
3610
+ "ESCollAllPrim": {
3611
+ "$kind": "EntitySet",
3612
+ "$Type": "com.odata.v4.technical.scenario.ETCollAllPrim"
3613
+ },
3614
+ "ESTwoPrim": {
3615
+ "$kind": "EntitySet",
3616
+ "$Type": "com.odata.v4.technical.scenario.ETTwoPrim",
3617
+ "$NavigationPropertyBinding": {
3618
+ "NavPropertyETAllPrimOne": "ESAllPrim",
3619
+ "NavPropertyETAllPrimMany": "ESAllPrim"
3620
+ }
3621
+ },
3622
+ "ESMixPrimCollComp": {
3623
+ "$kind": "EntitySet",
3624
+ "$Type": "com.odata.v4.technical.scenario.ETMixPrimCollComp"
3625
+ },
3626
+ "ESMixEnumDefCollComp": {
3627
+ "$kind": "EntitySet",
3628
+ "$Type": "com.odata.v4.technical.scenario.ETMixEnumDefCollComp"
3629
+ },
3630
+ "ESBase": {
3631
+ "$kind": "EntitySet",
3632
+ "$Type": "com.odata.v4.technical.scenario.ETBase"
3633
+ },
3634
+ "ESTwoBase": {
3635
+ "$kind": "EntitySet",
3636
+ "$Type": "com.odata.v4.technical.scenario.ETTwoBase"
3637
+ },
3638
+ "ESTwoKeyTwoPrim": {
3639
+ "$kind": "EntitySet",
3640
+ "$Type": "com.odata.v4.technical.scenario.ETTwoKeyTwoPrim"
3641
+ },
3642
+ "ESAllKey": {
3643
+ "$kind": "EntitySet",
3644
+ "$Type": "com.odata.v4.technical.scenario.ETAllKey"
3645
+ },
3646
+ "ESCompAllPrim": {
3647
+ "$kind": "EntitySet",
3648
+ "$Type": "com.odata.v4.technical.scenario.ETCompAllPrim"
3649
+ },
3650
+ "ESCompCollAllPrim": {
3651
+ "$kind": "EntitySet",
3652
+ "$Type": "com.odata.v4.technical.scenario.ETCompCollAllPrim"
3653
+ },
3654
+ "ESCompComp": {
3655
+ "$kind": "EntitySet",
3656
+ "$Type": "com.odata.v4.technical.scenario.ETCompComp"
3657
+ },
3658
+ "ESCompCollComp": {
3659
+ "$kind": "EntitySet",
3660
+ "$Type": "com.odata.v4.technical.scenario.ETCompCollComp"
3661
+ },
3662
+ "ESMedia": {
3663
+ "$kind": "EntitySet",
3664
+ "$Type": "com.odata.v4.technical.scenario.ETMedia"
3665
+ },
3666
+ "ESFourKeyAlias": {
3667
+ "$kind": "EntitySet",
3668
+ "$Type": "com.odata.v4.technical.scenario.ETFourKeyAlias"
3669
+ },
3670
+ "ESInvisible": {
3671
+ "$kind": "EntitySet",
3672
+ "$Type": "com.odata.v4.technical.scenario.ETAllPrim",
3673
+ "$IncludeInServiceDocument": false
3674
+ },
3675
+ "ESServerSidePaging": {
3676
+ "$kind": "EntitySet",
3677
+ "$Type": "com.odata.v4.technical.scenario.ETServerSidePaging"
3678
+ },
3679
+ "ESAllNullable": {
3680
+ "$kind": "EntitySet",
3681
+ "$Type": "com.odata.v4.technical.scenario.ETAllNullable"
3682
+ },
3683
+ "ESKeyNav": {
3684
+ "$kind": "EntitySet",
3685
+ "$Type": "com.odata.v4.technical.scenario.ETKeyNav",
3686
+ "$NavigationPropertyBinding": {
3687
+ "NavPropertyETKeyNavOne": "ESKeyNav",
3688
+ "NavPropertyETKeyNavMany": "ESKeyNav",
3689
+ "NavPropertyETTwoKeyNavOne": "ESTwoKeyNav",
3690
+ "NavPropertyETTwoKeyNavMany": "ESTwoKeyNav",
3691
+ "NavPropertyETMediaOne": "ESMedia",
3692
+ "NavPropertyETMediaMany": "ESMedia",
3693
+ "PropertyCompNav/NavPropertyETTwoKeyNavOne": "ESTwoKeyNav",
3694
+ "PropertyCompNav/NavPropertyETTwoKeyNavMany": "ESTwoKeyNav",
3695
+ "PropertyCompNav/NavPropertyETMediaOne": "ESMedia",
3696
+ "PropertyCompNav/NavPropertyETMediaMany": "ESMedia",
3697
+ "PropertyCompCompNav/PropertyCompNav/NavPropertyETTwoKeyNavOne": "ESTwoKeyNav",
3698
+ "PropertyCompCompNav/PropertyCompNav/NavPropertyETTwoKeyNavMany": "ESTwoKeyNav",
3699
+ "PropertyCompCompNav/PropertyCompNav/NavPropertyETMediaOne": "ESMedia",
3700
+ "PropertyCompCompNav/PropertyCompNav/NavPropertyETMediaMany": "ESMedia",
3701
+ "Namespace1_Alias.ETKeyNav/PropertyCompNav/NavPropertyETTwoKeyNavOne": "ESTwoKeyNav",
3702
+ "Namespace1_Alias.ETKeyNav/PropertyCompNav/NavPropertyETTwoKeyNavMany": "ESTwoKeyNav",
3703
+ "PropertyCompNav/Namespace1_Alias.CTNavFiveProp/NavPropertyETTwoKeyNavMany": "ESTwoKeyNav"
3704
+ }
3705
+ },
3706
+ "ESTwoKeyNav": {
3707
+ "$kind": "EntitySet",
3708
+ "$Type": "com.odata.v4.technical.scenario.ETTwoKeyNav",
3709
+ "$NavigationPropertyBinding": {
3710
+ "NavPropertyETKeyNavOne": "ESKeyNav",
3711
+ "NavPropertyETKeyNavMany": "ESKeyNav",
3712
+ "NavPropertyETTwoKeyNavOne": "ESTwoKeyNav",
3713
+ "NavPropertyETTwoKeyNavMany": "ESTwoKeyNav",
3714
+ "PropertyCompNav/NavPropertyETTwoKeyNavOne": "ESTwoKeyNav",
3715
+ "PropertyCompNav/NavPropertyETTwoKeyNavMany": "ESTwoKeyNav",
3716
+ "PropertyCompNav/NavPropertyETKeyNavOne": "ESKeyNav",
3717
+ "PropertyCompNav/NavPropertyETKeyNavMany": "ESKeyNav",
3718
+ "CollPropertyCompNav/NavPropertyETTwoKeyNavOne": "ESTwoKeyNav",
3719
+ "CollPropertyCompNav/NavPropertyETTwoKeyNavMany": "ESTwoKeyNav",
3720
+ "CollPropertyCompNav/NavPropertyETMediaOne": "ESMedia",
3721
+ "CollPropertyCompNav/NavPropertyETMediaMany": "ESMedia",
3722
+ "Namespace1_Alias.ETBaseTwoKeyNav/NavPropertyETTwoBaseTwoKeyNavOne": "ESBaseTwoKeyNav",
3723
+ "NavPropertySINav": "SINav"
3724
+ }
3725
+ },
3726
+ "ESBaseTwoKeyNav": {
3727
+ "$kind": "EntitySet",
3728
+ "$Type": "com.odata.v4.technical.scenario.ETBaseTwoKeyNav",
3729
+ "$NavigationPropertyBinding": {
3730
+ "NavPropertyETKeyNavMany": "ESKeyNav"
3731
+ }
3732
+ },
3733
+ "ESTwoBaseTwoKeyNav": {
3734
+ "$kind": "EntitySet",
3735
+ "$Type": "com.odata.v4.technical.scenario.ETTwoBaseTwoKeyNav"
3736
+ },
3737
+ "ESCompMixPrimCollComp": {
3738
+ "$kind": "EntitySet",
3739
+ "$Type": "com.odata.v4.technical.scenario.ETCompMixPrimCollComp"
3740
+ },
3741
+ "ESKeyNavCont": {
3742
+ "$kind": "EntitySet",
3743
+ "$Type": "com.odata.v4.technical.scenario.ETKeyNavCont",
3744
+ "$NavigationPropertyBinding": {
3745
+ "NavPropertyETTwoKeyNavOne/NavPropertyETKeyNavOne": "ESKeyNav",
3746
+ "NavPropertyETTwoKeyNavMany/NavPropertyETKeyNavOne": "ESKeyNav",
3747
+ "NavPropertyETTwoKeyNavContOne": "ESTwoKeyNavCont",
3748
+ "NavPropertyETTwoKeyNavContMany": "ESTwoKeyNavCont",
3749
+ "PropertyCompNavCont/NavPropertyETKeyNavOne/NavPropertyETKeyNavOne": "ESKeyNav",
3750
+ "PropertyCompNavCont/NavPropertyETKeyNavMany/NavPropertyETKeyNavOne": "ESKeyNav",
3751
+ "PropertyCompNavCont/NavPropertyETTwoKeyNavOne/NavPropertyETKeyNavOne": "ESKeyNav",
3752
+ "PropertyCompNavCont/NavPropertyETTwoKeyNavMany/NavPropertyETKeyNavOne": "ESKeyNav"
3753
+ }
3754
+ },
3755
+ "ESTwoKeyNavCont": {
3756
+ "$kind": "EntitySet",
3757
+ "$Type": "com.odata.v4.technical.scenario.ETTwoKeyNavCont",
3758
+ "$NavigationPropertyBinding": {
3759
+ "NavPropertyETKeyNavContOne/NavPropertyETTwoKeyNavContOne": "ESTwoKeyNavCont",
3760
+ "NavPropertyETKeyNavContMany/NavPropertyETTwoKeyNavContOne": "ESTwoKeyNavCont",
3761
+ "NavPropertyETKeyNavContOne/NavPropertyETTwoKeyNavOne/NavPropertyETKeyNavOne": "ESKeyNav",
3762
+ "NavPropertyETKeyNavContMany/NavPropertyETTwoKeyNavMany/NavPropertyETKeyNavOne": "ESKeyNav"
3763
+ }
3764
+ },
3765
+ "ESAllPrimDefaultValues": {
3766
+ "$kind": "EntitySet",
3767
+ "$Type": "com.odata.v4.technical.scenario.ETAllPrimDefaultValues"
3768
+ },
3769
+ "ESAllGeography": {
3770
+ "$kind": "EntitySet",
3771
+ "$Type": "com.odata.v4.technical.scenario.ETAllGeography"
3772
+ },
3773
+ "ESAllGeometry": {
3774
+ "$kind": "EntitySet",
3775
+ "$Type": "com.odata.v4.technical.scenario.ETAllGeometry"
3776
+ },
3777
+ "AIResetData": {
3778
+ "$kind": "ActionImport",
3779
+ "$Action": "com.odata.v4.technical.scenario.UAResetData"
3780
+ },
3781
+ "AIRTString": {
3782
+ "$kind": "ActionImport",
3783
+ "$Action": "com.odata.v4.technical.scenario.UARTString"
3784
+ },
3785
+ "AIRTTDString": {
3786
+ "$kind": "ActionImport",
3787
+ "$Action": "com.odata.v4.technical.scenario.UARTTDString"
3788
+ },
3789
+ "AIRTCollTDString": {
3790
+ "$kind": "ActionImport",
3791
+ "$Action": "com.odata.v4.technical.scenario.UARTCollTDString"
3792
+ },
3793
+ "AIRTCollStringTwoParam": {
3794
+ "$kind": "ActionImport",
3795
+ "$Action": "com.odata.v4.technical.scenario.UARTCollStringTwoParam"
3796
+ },
3797
+ "AIRTCTTwoPrimParam": {
3798
+ "$kind": "ActionImport",
3799
+ "$Action": "com.odata.v4.technical.scenario.UARTCTTwoPrimParam"
3800
+ },
3801
+ "AIRTCollCTTwoPrimParam": {
3802
+ "$kind": "ActionImport",
3803
+ "$Action": "com.odata.v4.technical.scenario.UARTCollCTTwoPrimParam"
3804
+ },
3805
+ "AIRTETTwoKeyTwoPrimParam": {
3806
+ "$kind": "ActionImport",
3807
+ "$Action": "com.odata.v4.technical.scenario.UARTETTwoKeyTwoPrimParam"
3808
+ },
3809
+ "AIRTCollETKeyNavParam": {
3810
+ "$kind": "ActionImport",
3811
+ "$Action": "com.odata.v4.technical.scenario.UARTCollETKeyNavParam"
3812
+ },
3813
+ "AIRTESAllPrimParam": {
3814
+ "$kind": "ActionImport",
3815
+ "$Action": "com.odata.v4.technical.scenario.UARTETAllPrimParam",
3816
+ "$EntitySet": "ESAllPrim"
3817
+ },
3818
+ "AIRTCollESAllPrimParam": {
3819
+ "$kind": "ActionImport",
3820
+ "$Action": "com.odata.v4.technical.scenario.UARTCollETAllPrimParam",
3821
+ "$EntitySet": "ESAllPrim"
3822
+ },
3823
+ "AIRT": {
3824
+ "$kind": "ActionImport",
3825
+ "$Action": "com.odata.v4.technical.scenario.UART"
3826
+ },
3827
+ "AIRTParam": {
3828
+ "$kind": "ActionImport",
3829
+ "$Action": "com.odata.v4.technical.scenario.UARTParam"
3830
+ },
3831
+ "AIRTTwoParam": {
3832
+ "$kind": "ActionImport",
3833
+ "$Action": "com.odata.v4.technical.scenario.UARTTwoParam"
3834
+ },
3835
+ "AIRTByteNineParam": {
3836
+ "$kind": "ActionImport",
3837
+ "$Action": "com.odata.v4.technical.scenario.UARTByteNineParam"
3838
+ },
3839
+ "AIRTTimeOfDay": {
3840
+ "$kind": "ActionImport",
3841
+ "$Action": "com.odata.v4.technical.scenario._A_RTTimeOfDay_"
3842
+ },
3843
+ "FICRTTDString": {
3844
+ "$kind": "FunctionImport",
3845
+ "$Function": "com.odata.v4.technical.scenario.UFCRTTDString",
3846
+ "$IncludeInServiceDocument": true
3847
+ },
3848
+ "FICRTCollTDString": {
3849
+ "$kind": "FunctionImport",
3850
+ "$Function": "com.odata.v4.technical.scenario.UFCRTCollTDString",
3851
+ "$IncludeInServiceDocument": true
3852
+ },
3853
+ "FINRTInt16": {
3854
+ "$kind": "FunctionImport",
3855
+ "$Function": "com.odata.v4.technical.scenario.UFNRTInt16",
3856
+ "$IncludeInServiceDocument": true
3857
+ },
3858
+ "FINInvisibleRTInt16": {
3859
+ "$kind": "FunctionImport",
3860
+ "$Function": "com.odata.v4.technical.scenario.UFNRTInt16"
3861
+ },
3862
+ "FINInvisible2RTInt16": {
3863
+ "$kind": "FunctionImport",
3864
+ "$Function": "com.odata.v4.technical.scenario.UFNRTInt16"
3865
+ },
3866
+ "FICRTETKeyNav": {
3867
+ "$kind": "FunctionImport",
3868
+ "$Function": "com.odata.v4.technical.scenario.UFCRTETKeyNav"
3869
+ },
3870
+ "FICRTESTwoKeyNav": {
3871
+ "$kind": "FunctionImport",
3872
+ "$Function": "com.odata.v4.technical.scenario.UFCRTETTwoKeyNav",
3873
+ "$EntitySet": "ESTwoKeyNav"
3874
+ },
3875
+ "FICRTETTwoKeyNavParam": {
3876
+ "$kind": "FunctionImport",
3877
+ "$Function": "com.odata.v4.technical.scenario.UFCRTETTwoKeyNavParam",
3878
+ "$IncludeInServiceDocument": true
3879
+ },
3880
+ "FICRTString_": {
3881
+ "$kind": "FunctionImport",
3882
+ "$Function": "com.odata.v4.technical.scenario.UFCRTString_",
3883
+ "$IncludeInServiceDocument": true
3884
+ },
3885
+ "FICRTCollStringTwoParam": {
3886
+ "$kind": "FunctionImport",
3887
+ "$Function": "com.odata.v4.technical.scenario.UFCRTCollStringTwoParam",
3888
+ "$IncludeInServiceDocument": true
3889
+ },
3890
+ "FICRTCTAllPrimTwoParam": {
3891
+ "$kind": "FunctionImport",
3892
+ "$Function": "com.odata.v4.technical.scenario.UFCRTCTAllPrimTwoParam",
3893
+ "$IncludeInServiceDocument": true
3894
+ },
3895
+ "FICRTCollETMixPrimCollCompTwoParam": {
3896
+ "$kind": "FunctionImport",
3897
+ "$Function": "com.odata.v4.technical.scenario.UFCRTCollETMixPrimCollCompTwoParam",
3898
+ "$IncludeInServiceDocument": true
3899
+ },
3900
+ "FINRTCollETMixPrimCollCompTwoParam": {
3901
+ "$kind": "FunctionImport",
3902
+ "$Function": "com.odata.v4.technical.scenario.UFNRTCollETMixPrimCollCompTwoParam",
3903
+ "$IncludeInServiceDocument": true
3904
+ },
3905
+ "FICRTCollCTTwoPrim": {
3906
+ "$kind": "FunctionImport",
3907
+ "$Function": "com.odata.v4.technical.scenario.UFCRTCollCTTwoPrim",
3908
+ "$IncludeInServiceDocument": true
3909
+ },
3910
+ "FICRTESMedia": {
3911
+ "$kind": "FunctionImport",
3912
+ "$Function": "com.odata.v4.technical.scenario.UFCRTETMedia",
3913
+ "$EntitySet": "ESMedia",
3914
+ "$IncludeInServiceDocument": true
3915
+ },
3916
+ "FICRTCollESMedia": {
3917
+ "$kind": "FunctionImport",
3918
+ "$Function": "com.odata.v4.technical.scenario.UFCRTCollETMedia",
3919
+ "$EntitySet": "ESMedia",
3920
+ "$IncludeInServiceDocument": true
3921
+ },
3922
+ "FICRTCTTwoPrimTwoParam": {
3923
+ "$kind": "FunctionImport",
3924
+ "$Function": "com.odata.v4.technical.scenario.UFCRTCTTwoPrimTwoParam",
3925
+ "$IncludeInServiceDocument": true
3926
+ },
3927
+ "FICRTCollCTTwoPrimTwoParam": {
3928
+ "$kind": "FunctionImport",
3929
+ "$Function": "com.odata.v4.technical.scenario.UFCRTCollCTTwoPrimTwoParam",
3930
+ "$IncludeInServiceDocument": true
3931
+ },
3932
+ "FICRTCTTwoPrim": {
3933
+ "$kind": "FunctionImport",
3934
+ "$Function": "com.odata.v4.technical.scenario.UFCRTCTTwoPrim",
3935
+ "$IncludeInServiceDocument": true
3936
+ },
3937
+ "FICRTCollString": {
3938
+ "$kind": "FunctionImport",
3939
+ "$Function": "com.odata.v4.technical.scenario.UFCRTCollString",
3940
+ "$IncludeInServiceDocument": true
3941
+ },
3942
+ "FICRTString": {
3943
+ "$kind": "FunctionImport",
3944
+ "$Function": "com.odata.v4.technical.scenario.UFCRTString",
3945
+ "$IncludeInServiceDocument": true
3946
+ },
3947
+ "FICRTCollESTwoKeyNavParam": {
3948
+ "$kind": "FunctionImport",
3949
+ "$Function": "com.odata.v4.technical.scenario.UFCRTCollETTwoKeyNavParam",
3950
+ "$EntitySet": "ESTwoKeyNav",
3951
+ "$IncludeInServiceDocument": true
3952
+ },
3953
+ "FINRTCollCTNavFiveProp": {
3954
+ "$kind": "FunctionImport",
3955
+ "$Function": "com.odata.v4.technical.scenario.UFNRTCollCTNavFiveProp",
3956
+ "$IncludeInServiceDocument": true
3957
+ },
3958
+ "FICRTCollESKeyNavContParam": {
3959
+ "$kind": "FunctionImport",
3960
+ "$Function": "com.odata.v4.technical.scenario.UFCRTCollETKeyNavContParam",
3961
+ "$EntitySet": "ESKeyNavCont",
3962
+ "$IncludeInServiceDocument": true
3963
+ },
3964
+ "FINRTByteNineParam": {
3965
+ "$kind": "FunctionImport",
3966
+ "$Function": "com.odata.v4.technical.scenario.UFNRTByteNineParam"
3967
+ },
3968
+ "FIC_RTTimeOfDay_": {
3969
+ "$kind": "FunctionImport",
3970
+ "$Function": "com.odata.v4.technical.scenario._FC_RTTimeOfDay_",
3971
+ "$IncludeInServiceDocument": true
3972
+ },
3973
+ "SI": {
3974
+ "$kind": "Singleton",
3975
+ "$Type": "com.odata.v4.technical.scenario.ETTwoPrim"
3976
+ },
3977
+ "SINav": {
3978
+ "$kind": "Singleton",
3979
+ "$Type": "com.odata.v4.technical.scenario.ETTwoKeyNav",
3980
+ "$NavigationPropertyBinding": {
3981
+ "NavPropertyETTwoKeyNavMany": "ESTwoKeyNav",
3982
+ "NavPropertyETTwoKeyNavOne": "ESTwoKeyNav",
3983
+ "NavPropertyETKeyNavOne": "ESKeyNav"
3984
+ }
3985
+ },
3986
+ "SIMedia": {
3987
+ "$kind": "Singleton",
3988
+ "$Type": "com.odata.v4.technical.scenario.ETMedia"
3989
+ }
3990
+ },
3991
+ "$EntityContainer": "com.odata.v4.technical.scenario.Container"
3992
+ };
3993
+ });