@leav/ui 0.3.6-032b1da → 0.3.6-0a46784

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 (447) hide show
  1. package/dist/__mocks__/common/attribute.d.ts +1 -0
  2. package/dist/__mocks__/common/attribute.js +11 -2
  3. package/dist/__mocks__/common/attribute.js.map +1 -1
  4. package/dist/__mocks__/common/form.d.ts +11 -5
  5. package/dist/__mocks__/common/form.js +20 -4
  6. package/dist/__mocks__/common/form.js.map +1 -1
  7. package/dist/__mocks__/common/record.d.ts +13 -2
  8. package/dist/__mocks__/common/record.js.map +1 -1
  9. package/dist/__mocks__/common/value.js +3 -1
  10. package/dist/__mocks__/common/value.js.map +1 -1
  11. package/dist/__mocks__/common/view.js +7 -5
  12. package/dist/__mocks__/common/view.js.map +1 -1
  13. package/dist/__mocks__/mockQuery/mockGetLibraryDetailExtendedQuery.js +1 -1
  14. package/dist/__mocks__/mockQuery/mockGetLibraryDetailExtendedQuery.js.map +1 -1
  15. package/dist/__mocks__/mockQuery/mockGetViewListQuery.js +2 -1
  16. package/dist/__mocks__/mockQuery/mockGetViewListQuery.js.map +1 -1
  17. package/dist/_gqlTypes/index.d.ts +649 -77
  18. package/dist/_gqlTypes/index.js +319 -34
  19. package/dist/_gqlTypes/index.js.map +1 -1
  20. package/dist/_queries/libraries/getLibraryDetailExtendQuery.d.ts +3 -4
  21. package/dist/_queries/libraries/getLibraryDetailExtendQuery.js +2 -3
  22. package/dist/_queries/libraries/getLibraryDetailExtendQuery.js.map +1 -1
  23. package/dist/_queries/records/getRecordColumnsValues.d.ts +5 -3
  24. package/dist/_queries/records/getRecordColumnsValues.js +4 -1
  25. package/dist/_queries/records/getRecordColumnsValues.js.map +1 -1
  26. package/dist/_queries/records/getRecordFormQuery.js +2 -0
  27. package/dist/_queries/records/getRecordFormQuery.js.map +1 -1
  28. package/dist/_queries/records/getRecordPropertiesQuery.js +2 -0
  29. package/dist/_queries/records/getRecordPropertiesQuery.js.map +1 -1
  30. package/dist/_queries/records/getRecordsFromLibraryQuery.js +1 -0
  31. package/dist/_queries/records/getRecordsFromLibraryQuery.js.map +1 -1
  32. package/dist/_queries/records/recordFormAttributeFragment.js +4 -0
  33. package/dist/_queries/records/recordFormAttributeFragment.js.map +1 -1
  34. package/dist/_queries/views/saveViewMutation.js +1 -1
  35. package/dist/_queries/views/viewDetailsFragment.js +14 -11
  36. package/dist/_queries/views/viewDetailsFragment.js.map +1 -1
  37. package/dist/_utils/index.d.ts +2 -0
  38. package/dist/_utils/index.js +9 -2
  39. package/dist/_utils/index.js.map +1 -1
  40. package/dist/_utils/interleaveElement.d.ts +1 -0
  41. package/dist/_utils/interleaveElement.js +5 -0
  42. package/dist/_utils/interleaveElement.js.map +1 -0
  43. package/dist/antdTheme/index.d.ts +0 -3
  44. package/dist/antdTheme/index.js +3 -42
  45. package/dist/antdTheme/index.js.map +1 -1
  46. package/dist/components/CreateDirectory/CreateDirectory.js +1 -1
  47. package/dist/components/CreateDirectory/CreateDirectory.js.map +1 -1
  48. package/dist/components/EditApplication/EditApplication.js +2 -2
  49. package/dist/components/EditApplication/EditApplication.js.map +1 -1
  50. package/dist/components/EditApplication/_types.d.ts +2 -2
  51. package/dist/components/Explorer/DataView.d.ts +10 -1
  52. package/dist/components/Explorer/DataView.js +73 -48
  53. package/dist/components/Explorer/DataView.js.map +1 -1
  54. package/dist/components/Explorer/Explorer.d.ts +11 -6
  55. package/dist/components/Explorer/Explorer.js +60 -14
  56. package/dist/components/Explorer/Explorer.js.map +1 -1
  57. package/dist/components/Explorer/ExplorerTitle.d.ts +9 -0
  58. package/dist/components/Explorer/ExplorerTitle.js +47 -0
  59. package/dist/components/Explorer/ExplorerTitle.js.map +1 -0
  60. package/dist/components/Explorer/IdCard.d.ts +7 -0
  61. package/dist/components/Explorer/IdCard.js +15 -0
  62. package/dist/components/Explorer/IdCard.js.map +1 -0
  63. package/dist/components/Explorer/TableCell.d.ts +8 -0
  64. package/dist/components/Explorer/TableCell.js +152 -0
  65. package/dist/components/Explorer/TableCell.js.map +1 -0
  66. package/dist/components/Explorer/TableTagGroup.d.ts +7 -0
  67. package/dist/components/Explorer/TableTagGroup.js +30 -0
  68. package/dist/components/Explorer/TableTagGroup.js.map +1 -0
  69. package/dist/components/Explorer/_constants.d.ts +4 -0
  70. package/dist/components/Explorer/_constants.js +17 -0
  71. package/dist/components/Explorer/_constants.js.map +1 -0
  72. package/dist/components/Explorer/_queries/useExplorerData.d.ts +35 -0
  73. package/dist/components/Explorer/_queries/useExplorerData.js +203 -0
  74. package/dist/components/Explorer/_queries/useExplorerData.js.map +1 -0
  75. package/dist/components/Explorer/_types.d.ts +81 -0
  76. package/dist/components/Explorer/_types.js +2 -0
  77. package/dist/components/Explorer/_types.js.map +1 -0
  78. package/dist/components/Explorer/conditionsHelper.d.ts +2 -0
  79. package/dist/components/Explorer/conditionsHelper.js +16 -0
  80. package/dist/components/Explorer/conditionsHelper.js.map +1 -0
  81. package/dist/components/Explorer/display-view-filters/ExplorerToolBar.d.ts +4 -0
  82. package/dist/components/Explorer/display-view-filters/ExplorerToolBar.js +47 -0
  83. package/dist/components/Explorer/display-view-filters/ExplorerToolBar.js.map +1 -0
  84. package/dist/components/Explorer/index.d.ts +9 -1
  85. package/dist/components/Explorer/index.js +6 -1
  86. package/dist/components/Explorer/index.js.map +1 -1
  87. package/dist/components/Explorer/manage-view-settings/_shared/ColumnItem.d.ts +12 -0
  88. package/dist/components/Explorer/manage-view-settings/_shared/ColumnItem.js +85 -0
  89. package/dist/components/Explorer/manage-view-settings/_shared/ColumnItem.js.map +1 -0
  90. package/dist/components/Explorer/manage-view-settings/_shared/CommonFilterItem.d.ts +5 -0
  91. package/dist/components/Explorer/manage-view-settings/_shared/CommonFilterItem.js +12 -0
  92. package/dist/components/Explorer/manage-view-settings/_shared/CommonFilterItem.js.map +1 -0
  93. package/dist/components/Explorer/manage-view-settings/_shared/useAttributeDetailsData.d.ts +11 -0
  94. package/dist/components/Explorer/manage-view-settings/_shared/useAttributeDetailsData.js +61 -0
  95. package/dist/components/Explorer/manage-view-settings/_shared/useAttributeDetailsData.js.map +1 -0
  96. package/dist/components/Explorer/manage-view-settings/configure-display/ConfigureDisplay.d.ts +6 -0
  97. package/dist/components/Explorer/manage-view-settings/configure-display/ConfigureDisplay.js +28 -0
  98. package/dist/components/Explorer/manage-view-settings/configure-display/ConfigureDisplay.js.map +1 -0
  99. package/dist/components/Explorer/manage-view-settings/configure-display/attributes/SelectVisibleAttributes.d.ts +6 -0
  100. package/dist/components/Explorer/manage-view-settings/configure-display/attributes/SelectVisibleAttributes.js +56 -0
  101. package/dist/components/Explorer/manage-view-settings/configure-display/attributes/SelectVisibleAttributes.js.map +1 -0
  102. package/dist/components/Explorer/manage-view-settings/configure-display/view-type/SelectViewType.d.ts +8 -0
  103. package/dist/components/Explorer/manage-view-settings/configure-display/view-type/SelectViewType.js +12 -0
  104. package/dist/components/Explorer/manage-view-settings/configure-display/view-type/SelectViewType.js.map +1 -0
  105. package/dist/components/Explorer/manage-view-settings/filter-items/FilterItems.d.ts +4 -0
  106. package/dist/components/Explorer/manage-view-settings/filter-items/FilterItems.js +83 -0
  107. package/dist/components/Explorer/manage-view-settings/filter-items/FilterItems.js.map +1 -0
  108. package/dist/components/Explorer/manage-view-settings/filter-items/FilterListItem.d.ts +9 -0
  109. package/dist/components/Explorer/manage-view-settings/filter-items/FilterListItem.js +33 -0
  110. package/dist/components/Explorer/manage-view-settings/filter-items/FilterListItem.js.map +1 -0
  111. package/dist/components/Explorer/manage-view-settings/filter-items/filter-type/BooleanAttributeDropdown.d.ts +3 -0
  112. package/dist/components/Explorer/manage-view-settings/filter-items/filter-type/BooleanAttributeDropdown.js +22 -0
  113. package/dist/components/Explorer/manage-view-settings/filter-items/filter-type/BooleanAttributeDropdown.js.map +1 -0
  114. package/dist/components/Explorer/manage-view-settings/filter-items/filter-type/ColorAttributeDropDown.d.ts +3 -0
  115. package/dist/components/Explorer/manage-view-settings/filter-items/filter-type/ColorAttributeDropDown.js +11 -0
  116. package/dist/components/Explorer/manage-view-settings/filter-items/filter-type/ColorAttributeDropDown.js.map +1 -0
  117. package/dist/components/Explorer/manage-view-settings/filter-items/filter-type/DateAttributeDropDown.d.ts +3 -0
  118. package/dist/components/Explorer/manage-view-settings/filter-items/filter-type/DateAttributeDropDown.js +66 -0
  119. package/dist/components/Explorer/manage-view-settings/filter-items/filter-type/DateAttributeDropDown.js.map +1 -0
  120. package/dist/components/Explorer/manage-view-settings/filter-items/filter-type/DateRangeAttributeDropDown.d.ts +3 -0
  121. package/dist/components/Explorer/manage-view-settings/filter-items/filter-type/DateRangeAttributeDropDown.js +11 -0
  122. package/dist/components/Explorer/manage-view-settings/filter-items/filter-type/DateRangeAttributeDropDown.js.map +1 -0
  123. package/dist/components/Explorer/manage-view-settings/filter-items/filter-type/EncryptedAttributeDropDown.d.ts +3 -0
  124. package/dist/components/Explorer/manage-view-settings/filter-items/filter-type/EncryptedAttributeDropDown.js +11 -0
  125. package/dist/components/Explorer/manage-view-settings/filter-items/filter-type/EncryptedAttributeDropDown.js.map +1 -0
  126. package/dist/components/Explorer/manage-view-settings/filter-items/filter-type/ExtendedAttributeDropDown.d.ts +3 -0
  127. package/dist/components/Explorer/manage-view-settings/filter-items/filter-type/ExtendedAttributeDropDown.js +11 -0
  128. package/dist/components/Explorer/manage-view-settings/filter-items/filter-type/ExtendedAttributeDropDown.js.map +1 -0
  129. package/dist/components/Explorer/manage-view-settings/filter-items/filter-type/FilterDropDown.d.ts +3 -0
  130. package/dist/components/Explorer/manage-view-settings/filter-items/filter-type/FilterDropDown.js +71 -0
  131. package/dist/components/Explorer/manage-view-settings/filter-items/filter-type/FilterDropDown.js.map +1 -0
  132. package/dist/components/Explorer/manage-view-settings/filter-items/filter-type/FilterValueList.d.ts +10 -0
  133. package/dist/components/Explorer/manage-view-settings/filter-items/filter-type/FilterValueList.js +75 -0
  134. package/dist/components/Explorer/manage-view-settings/filter-items/filter-type/FilterValueList.js.map +1 -0
  135. package/dist/components/Explorer/manage-view-settings/filter-items/filter-type/NumericAttributeDropDown.d.ts +3 -0
  136. package/dist/components/Explorer/manage-view-settings/filter-items/filter-type/NumericAttributeDropDown.js +19 -0
  137. package/dist/components/Explorer/manage-view-settings/filter-items/filter-type/NumericAttributeDropDown.js.map +1 -0
  138. package/dist/components/Explorer/manage-view-settings/filter-items/filter-type/TextAttributeDropDown.d.ts +3 -0
  139. package/dist/components/Explorer/manage-view-settings/filter-items/filter-type/TextAttributeDropDown.js +28 -0
  140. package/dist/components/Explorer/manage-view-settings/filter-items/filter-type/TextAttributeDropDown.js.map +1 -0
  141. package/dist/components/Explorer/manage-view-settings/filter-items/filter-type/useConditionOptionsByType.d.ts +11 -0
  142. package/dist/components/Explorer/manage-view-settings/filter-items/filter-type/useConditionOptionsByType.js +100 -0
  143. package/dist/components/Explorer/manage-view-settings/filter-items/filter-type/useConditionOptionsByType.js.map +1 -0
  144. package/dist/components/Explorer/manage-view-settings/index.d.ts +8 -0
  145. package/dist/components/Explorer/manage-view-settings/index.js +11 -0
  146. package/dist/components/Explorer/manage-view-settings/index.js.map +1 -0
  147. package/dist/components/Explorer/manage-view-settings/open-view-settings/EditSettingsContext.d.ts +15 -0
  148. package/dist/components/Explorer/manage-view-settings/open-view-settings/EditSettingsContext.js +15 -0
  149. package/dist/components/Explorer/manage-view-settings/open-view-settings/EditSettingsContext.js.map +1 -0
  150. package/dist/components/Explorer/manage-view-settings/open-view-settings/EditSettingsContextProvider.d.ts +7 -0
  151. package/dist/components/Explorer/manage-view-settings/open-view-settings/EditSettingsContextProvider.js +17 -0
  152. package/dist/components/Explorer/manage-view-settings/open-view-settings/EditSettingsContextProvider.js.map +1 -0
  153. package/dist/components/Explorer/manage-view-settings/open-view-settings/SidePanel.d.ts +2 -0
  154. package/dist/components/Explorer/manage-view-settings/open-view-settings/SidePanel.js +19 -0
  155. package/dist/components/Explorer/manage-view-settings/open-view-settings/SidePanel.js.map +1 -0
  156. package/dist/components/Explorer/manage-view-settings/open-view-settings/useEditSettings.d.ts +1 -0
  157. package/dist/components/{RecordEdition/EditRecordContent/reducers/standardFieldReducer/useStandardFieldReducer.js → Explorer/manage-view-settings/open-view-settings/useEditSettings.js} +3 -3
  158. package/dist/components/Explorer/manage-view-settings/open-view-settings/useEditSettings.js.map +1 -0
  159. package/dist/components/Explorer/manage-view-settings/open-view-settings/useOpenViewSettings.d.ts +5 -0
  160. package/dist/components/Explorer/manage-view-settings/open-view-settings/useOpenViewSettings.js +39 -0
  161. package/dist/components/Explorer/manage-view-settings/open-view-settings/useOpenViewSettings.js.map +1 -0
  162. package/dist/components/Explorer/manage-view-settings/router-menu/SettingItem.d.ts +9 -0
  163. package/dist/components/Explorer/manage-view-settings/router-menu/SettingItem.js +55 -0
  164. package/dist/components/Explorer/manage-view-settings/router-menu/SettingItem.js.map +1 -0
  165. package/dist/components/Explorer/manage-view-settings/router-menu/SettingsPanel.d.ts +8 -0
  166. package/dist/components/Explorer/manage-view-settings/router-menu/SettingsPanel.js +70 -0
  167. package/dist/components/Explorer/manage-view-settings/router-menu/SettingsPanel.js.map +1 -0
  168. package/dist/components/Explorer/manage-view-settings/sort-items/SortItems.d.ts +4 -0
  169. package/dist/components/Explorer/manage-view-settings/sort-items/SortItems.js +113 -0
  170. package/dist/components/Explorer/manage-view-settings/sort-items/SortItems.js.map +1 -0
  171. package/dist/components/Explorer/manage-view-settings/sort-items/SortListItem.d.ts +10 -0
  172. package/dist/components/Explorer/manage-view-settings/sort-items/SortListItem.js +32 -0
  173. package/dist/components/Explorer/manage-view-settings/sort-items/SortListItem.js.map +1 -0
  174. package/dist/components/Explorer/manage-view-settings/store-view-settings/ViewSettingsContext.d.ts +6 -0
  175. package/dist/components/Explorer/manage-view-settings/store-view-settings/ViewSettingsContext.js +11 -0
  176. package/dist/components/Explorer/manage-view-settings/store-view-settings/ViewSettingsContext.js.map +1 -0
  177. package/dist/components/Explorer/manage-view-settings/store-view-settings/useViewSettingsContext.d.ts +4 -0
  178. package/dist/components/Explorer/manage-view-settings/store-view-settings/useViewSettingsContext.js +7 -0
  179. package/dist/components/Explorer/manage-view-settings/store-view-settings/useViewSettingsContext.js.map +1 -0
  180. package/dist/components/Explorer/manage-view-settings/store-view-settings/viewSettingsInitialState.d.ts +4 -0
  181. package/dist/components/Explorer/manage-view-settings/store-view-settings/viewSettingsInitialState.js +24 -0
  182. package/dist/components/Explorer/manage-view-settings/store-view-settings/viewSettingsInitialState.js.map +1 -0
  183. package/dist/components/Explorer/manage-view-settings/store-view-settings/viewSettingsReducer.d.ts +145 -0
  184. package/dist/components/Explorer/manage-view-settings/store-view-settings/viewSettingsReducer.js +199 -0
  185. package/dist/components/Explorer/manage-view-settings/store-view-settings/viewSettingsReducer.js.map +1 -0
  186. package/dist/components/Explorer/useColumnWidth.d.ts +6 -0
  187. package/dist/components/Explorer/useColumnWidth.js +48 -0
  188. package/dist/components/Explorer/useColumnWidth.js.map +1 -0
  189. package/dist/components/Explorer/{useCreateMainAction.d.ts → useCreateAction.d.ts} +5 -3
  190. package/dist/components/Explorer/useCreateAction.js +73 -0
  191. package/dist/components/Explorer/useCreateAction.js.map +1 -0
  192. package/dist/components/Explorer/useEditAction.d.ts +1 -1
  193. package/dist/components/Explorer/useEditAction.js +10 -8
  194. package/dist/components/Explorer/useEditAction.js.map +1 -1
  195. package/dist/components/Explorer/usePagination.d.ts +7 -0
  196. package/dist/components/Explorer/usePagination.js +25 -0
  197. package/dist/components/Explorer/usePagination.js.map +1 -0
  198. package/dist/components/Explorer/usePrimaryActions.d.ts +12 -0
  199. package/dist/components/Explorer/usePrimaryActions.js +28 -0
  200. package/dist/components/Explorer/usePrimaryActions.js.map +1 -0
  201. package/dist/components/Explorer/useRemoveAction.d.ts +12 -0
  202. package/dist/components/Explorer/useRemoveAction.js +90 -0
  203. package/dist/components/Explorer/useRemoveAction.js.map +1 -0
  204. package/dist/components/Explorer/useSearchInput.d.ts +10 -0
  205. package/dist/components/Explorer/useSearchInput.js +31 -0
  206. package/dist/components/Explorer/useSearchInput.js.map +1 -0
  207. package/dist/components/Explorer/useTableScrollableHeight.d.ts +5 -0
  208. package/dist/components/Explorer/useTableScrollableHeight.js +15 -0
  209. package/dist/components/Explorer/useTableScrollableHeight.js.map +1 -0
  210. package/dist/components/Explorer/useViewSettingsReducer.d.ts +8 -0
  211. package/dist/components/Explorer/useViewSettingsReducer.js +126 -0
  212. package/dist/components/Explorer/useViewSettingsReducer.js.map +1 -0
  213. package/dist/components/ExportModal/ExportModal.js +2 -2
  214. package/dist/components/ExportModal/ExportModal.js.map +1 -1
  215. package/dist/components/ImportModal/ImportModalConfigStep/ImportModalConfigStep.js +5 -5
  216. package/dist/components/ImportModal/ImportModalConfigStep/ImportModalConfigStep.js.map +1 -1
  217. package/dist/components/LibraryItemsList/FiltersPanel/Filter/Filter.js +2 -2
  218. package/dist/components/LibraryItemsList/FiltersPanel/Filter/Filter.js.map +1 -1
  219. package/dist/components/LibraryItemsList/LibraryItemsListContent/LibraryItemsListContent.js +7 -11
  220. package/dist/components/LibraryItemsList/LibraryItemsListContent/LibraryItemsListContent.js.map +1 -1
  221. package/dist/components/LibraryItemsList/LibraryItemsListTable/Cell/StandardCell/StandardCell.js +7 -2
  222. package/dist/components/LibraryItemsList/LibraryItemsListTable/Cell/StandardCell/StandardCell.js.map +1 -1
  223. package/dist/components/LibraryItemsList/LibraryItemsListTable/Header/Header.js +7 -5
  224. package/dist/components/LibraryItemsList/LibraryItemsListTable/Header/Header.js.map +1 -1
  225. package/dist/components/LibraryItemsList/MenuView/MenuView.js +4 -9
  226. package/dist/components/LibraryItemsList/MenuView/MenuView.js.map +1 -1
  227. package/dist/components/LibraryItemsList/ViewPanel/EditView/EditView.js +2 -3
  228. package/dist/components/LibraryItemsList/ViewPanel/EditView/EditView.js.map +1 -1
  229. package/dist/components/LibraryItemsList/ViewPanel/View/View.js +3 -3
  230. package/dist/components/LibraryItemsList/ViewPanel/View/View.js.map +1 -1
  231. package/dist/components/LibraryItemsList/helpers/getFieldsFromView.js +4 -9
  232. package/dist/components/LibraryItemsList/helpers/getFieldsFromView.js.map +1 -1
  233. package/dist/components/LibraryItemsList/hooks/useLibraryView/useLibraryView.js +7 -5
  234. package/dist/components/LibraryItemsList/hooks/useLibraryView/useLibraryView.js.map +1 -1
  235. package/dist/components/LibraryItemsList/hooks/useSearchReducer/_types.d.ts +1 -1
  236. package/dist/components/LibraryItemsList/hooks/useSearchReducer/searchReducer.d.ts +1 -1
  237. package/dist/components/LibraryItemsList/hooks/useSearchReducer/searchReducer.js +25 -33
  238. package/dist/components/LibraryItemsList/hooks/useSearchReducer/searchReducer.js.map +1 -1
  239. package/dist/components/RecordEdition/EditRecord/EditRecord.d.ts +1 -0
  240. package/dist/components/RecordEdition/EditRecord/EditRecord.js +32 -22
  241. package/dist/components/RecordEdition/EditRecord/EditRecord.js.map +1 -1
  242. package/dist/components/RecordEdition/EditRecordContent/EditRecordContent.js +18 -5
  243. package/dist/components/RecordEdition/EditRecordContent/EditRecordContent.js.map +1 -1
  244. package/dist/components/RecordEdition/EditRecordContent/_types.d.ts +12 -23
  245. package/dist/components/RecordEdition/EditRecordContent/_types.js.map +1 -1
  246. package/dist/components/RecordEdition/EditRecordContent/antdUtils.d.ts +5 -1
  247. package/dist/components/RecordEdition/EditRecordContent/antdUtils.js +44 -34
  248. package/dist/components/RecordEdition/EditRecordContent/antdUtils.js.map +1 -1
  249. package/dist/components/RecordEdition/EditRecordContent/helpers/extractFormElements/extractFormElements.d.ts +3 -1
  250. package/dist/components/RecordEdition/EditRecordContent/helpers/extractFormElements/extractFormElements.js +8 -2
  251. package/dist/components/RecordEdition/EditRecordContent/helpers/extractFormElements/extractFormElements.js.map +1 -1
  252. package/dist/components/RecordEdition/EditRecordContent/hooks/useRunActionsListAndFormatOnValue.d.ts +121 -0
  253. package/dist/components/RecordEdition/EditRecordContent/hooks/useRunActionsListAndFormatOnValue.js +31 -0
  254. package/dist/components/RecordEdition/EditRecordContent/hooks/useRunActionsListAndFormatOnValue.js.map +1 -0
  255. package/dist/components/RecordEdition/EditRecordContent/uiElements/Container/Container.d.ts +3 -1
  256. package/dist/components/RecordEdition/EditRecordContent/uiElements/Container/Container.js +2 -2
  257. package/dist/components/RecordEdition/EditRecordContent/uiElements/Container/Container.js.map +1 -1
  258. package/dist/components/RecordEdition/EditRecordContent/uiElements/LinkField/LinkField.js +2 -2
  259. package/dist/components/RecordEdition/EditRecordContent/uiElements/LinkField/LinkField.js.map +1 -1
  260. package/dist/components/RecordEdition/EditRecordContent/uiElements/LinkField/MonoValueSelect/MonoValueSelect.d.ts +0 -1
  261. package/dist/components/RecordEdition/EditRecordContent/uiElements/LinkField/MonoValueSelect/MonoValueSelect.js +2 -7
  262. package/dist/components/RecordEdition/EditRecordContent/uiElements/LinkField/MonoValueSelect/MonoValueSelect.js.map +1 -1
  263. package/dist/components/RecordEdition/EditRecordContent/uiElements/LinkField/MultiValueSelect/MultiValueSelect.d.ts +0 -1
  264. package/dist/components/RecordEdition/EditRecordContent/uiElements/LinkField/MultiValueSelect/MultiValueSelect.js +2 -9
  265. package/dist/components/RecordEdition/EditRecordContent/uiElements/LinkField/MultiValueSelect/MultiValueSelect.js.map +1 -1
  266. package/dist/components/RecordEdition/EditRecordContent/uiElements/StandardField/ComputeIndicator.d.ts +6 -0
  267. package/dist/components/RecordEdition/EditRecordContent/uiElements/StandardField/ComputeIndicator.js +16 -0
  268. package/dist/components/RecordEdition/EditRecordContent/uiElements/StandardField/ComputeIndicator.js.map +1 -0
  269. package/dist/components/RecordEdition/EditRecordContent/uiElements/StandardField/DeleteAllValuesButton.d.ts +4 -0
  270. package/dist/components/RecordEdition/EditRecordContent/uiElements/StandardField/DeleteAllValuesButton.js +25 -0
  271. package/dist/components/RecordEdition/EditRecordContent/uiElements/StandardField/DeleteAllValuesButton.js.map +1 -0
  272. package/dist/components/RecordEdition/EditRecordContent/uiElements/StandardField/StandardField.d.ts +5 -2
  273. package/dist/components/RecordEdition/EditRecordContent/uiElements/StandardField/StandardField.js +178 -186
  274. package/dist/components/RecordEdition/EditRecordContent/uiElements/StandardField/StandardField.js.map +1 -1
  275. package/dist/components/RecordEdition/EditRecordContent/uiElements/StandardField/StandardFieldValue/DSBooleanWrapper.d.ts +2 -8
  276. package/dist/components/RecordEdition/EditRecordContent/uiElements/StandardField/StandardFieldValue/DSBooleanWrapper.js +14 -30
  277. package/dist/components/RecordEdition/EditRecordContent/uiElements/StandardField/StandardFieldValue/DSBooleanWrapper.js.map +1 -1
  278. package/dist/components/RecordEdition/EditRecordContent/uiElements/StandardField/StandardFieldValue/DSColorPickerWrapper.d.ts +2 -13
  279. package/dist/components/RecordEdition/EditRecordContent/uiElements/StandardField/StandardFieldValue/DSColorPickerWrapper.js +76 -45
  280. package/dist/components/RecordEdition/EditRecordContent/uiElements/StandardField/StandardFieldValue/DSColorPickerWrapper.js.map +1 -1
  281. package/dist/components/RecordEdition/EditRecordContent/uiElements/StandardField/StandardFieldValue/DSDatePickerWrapper.d.ts +3 -14
  282. package/dist/components/RecordEdition/EditRecordContent/uiElements/StandardField/StandardFieldValue/DSDatePickerWrapper.js +41 -45
  283. package/dist/components/RecordEdition/EditRecordContent/uiElements/StandardField/StandardFieldValue/DSDatePickerWrapper.js.map +1 -1
  284. package/dist/components/RecordEdition/EditRecordContent/uiElements/StandardField/StandardFieldValue/DSInputEncryptedWrapper.d.ts +3 -14
  285. package/dist/components/RecordEdition/EditRecordContent/uiElements/StandardField/StandardFieldValue/DSInputEncryptedWrapper.js +13 -75
  286. package/dist/components/RecordEdition/EditRecordContent/uiElements/StandardField/StandardFieldValue/DSInputEncryptedWrapper.js.map +1 -1
  287. package/dist/components/RecordEdition/EditRecordContent/uiElements/StandardField/StandardFieldValue/DSInputNumberWrapper.d.ts +3 -14
  288. package/dist/components/RecordEdition/EditRecordContent/uiElements/StandardField/StandardFieldValue/DSInputNumberWrapper.js +32 -49
  289. package/dist/components/RecordEdition/EditRecordContent/uiElements/StandardField/StandardFieldValue/DSInputNumberWrapper.js.map +1 -1
  290. package/dist/components/RecordEdition/EditRecordContent/uiElements/StandardField/StandardFieldValue/DSInputWrapper.d.ts +3 -14
  291. package/dist/components/RecordEdition/EditRecordContent/uiElements/StandardField/StandardFieldValue/DSInputWrapper.js +41 -54
  292. package/dist/components/RecordEdition/EditRecordContent/uiElements/StandardField/StandardFieldValue/DSInputWrapper.js.map +1 -1
  293. package/dist/components/RecordEdition/EditRecordContent/uiElements/StandardField/StandardFieldValue/DSRangePickerWrapper.d.ts +3 -14
  294. package/dist/components/RecordEdition/EditRecordContent/uiElements/StandardField/StandardFieldValue/DSRangePickerWrapper.js +57 -62
  295. package/dist/components/RecordEdition/EditRecordContent/uiElements/StandardField/StandardFieldValue/DSRangePickerWrapper.js.map +1 -1
  296. package/dist/components/RecordEdition/EditRecordContent/uiElements/StandardField/StandardFieldValue/DSRichTextWrapper.d.ts +3 -14
  297. package/dist/components/RecordEdition/EditRecordContent/uiElements/StandardField/StandardFieldValue/DSRichTextWrapper.js +36 -53
  298. package/dist/components/RecordEdition/EditRecordContent/uiElements/StandardField/StandardFieldValue/DSRichTextWrapper.js.map +1 -1
  299. package/dist/components/RecordEdition/EditRecordContent/uiElements/StandardField/StandardFieldValue/StandardFieldValue.d.ts +17 -9
  300. package/dist/components/RecordEdition/EditRecordContent/uiElements/StandardField/StandardFieldValue/StandardFieldValue.js +67 -401
  301. package/dist/components/RecordEdition/EditRecordContent/uiElements/StandardField/StandardFieldValue/StandardFieldValue.js.map +1 -1
  302. package/dist/components/RecordEdition/EditRecordContent/uiElements/StandardField/StandardFieldValue/ValuesList/DSListSelect.d.ts +4 -0
  303. package/dist/components/RecordEdition/EditRecordContent/uiElements/StandardField/StandardFieldValue/ValuesList/DSListSelect.js +141 -0
  304. package/dist/components/RecordEdition/EditRecordContent/uiElements/StandardField/StandardFieldValue/ValuesList/DSListSelect.js.map +1 -0
  305. package/dist/components/RecordEdition/EditRecordContent/uiElements/StandardField/StandardFieldValue/ValuesList/_types.d.ts +10 -0
  306. package/dist/components/RecordEdition/EditRecordContent/uiElements/StandardField/StandardFieldValue/ValuesList/_types.js +2 -0
  307. package/dist/components/RecordEdition/EditRecordContent/uiElements/StandardField/StandardFieldValue/ValuesList/_types.js.map +1 -0
  308. package/dist/components/RecordEdition/EditRecordContent/uiElements/StandardField/StandardFieldValue/_types.d.ts +16 -0
  309. package/dist/components/RecordEdition/EditRecordContent/uiElements/StandardField/StandardFieldValue/_types.js +2 -0
  310. package/dist/components/RecordEdition/EditRecordContent/uiElements/StandardField/StandardFieldValue/_types.js.map +1 -0
  311. package/dist/components/RecordEdition/EditRecordContent/uiElements/StandardField/calculatedInheritedFlags.d.ts +42 -0
  312. package/dist/components/RecordEdition/EditRecordContent/uiElements/StandardField/calculatedInheritedFlags.js +55 -0
  313. package/dist/components/RecordEdition/EditRecordContent/uiElements/StandardField/calculatedInheritedFlags.js.map +1 -0
  314. package/dist/components/RecordEdition/EditRecordContent/uiElements/StandardField/useGetPresentationValues.d.ts +12 -0
  315. package/dist/components/RecordEdition/EditRecordContent/uiElements/StandardField/useGetPresentationValues.js +32 -0
  316. package/dist/components/RecordEdition/EditRecordContent/uiElements/StandardField/useGetPresentationValues.js.map +1 -0
  317. package/dist/components/RecordEdition/EditRecordContent/uiElements/TreeField/ValuesAdd/ValuesAdd.js +2 -2
  318. package/dist/components/RecordEdition/EditRecordContent/uiElements/TreeField/ValuesAdd/ValuesAdd.js.map +1 -1
  319. package/dist/components/RecordEdition/EditRecordModal/EditRecordModal.js +10 -4
  320. package/dist/components/RecordEdition/EditRecordModal/EditRecordModal.js.map +1 -1
  321. package/dist/components/RecordEdition/EditRecordPage/EditRecordPage.d.ts +2 -0
  322. package/dist/components/RecordEdition/EditRecordPage/EditRecordPage.js +2 -2
  323. package/dist/components/RecordEdition/EditRecordPage/EditRecordPage.js.map +1 -1
  324. package/dist/components/RecordEdition/EditRecordSidebar/EditRecordSidebar.d.ts +4 -1
  325. package/dist/components/RecordEdition/EditRecordSidebar/EditRecordSidebar.js +36 -3
  326. package/dist/components/RecordEdition/EditRecordSidebar/EditRecordSidebar.js.map +1 -1
  327. package/dist/components/RecordEdition/EditRecordSidebar/PropertiesList/PropertiesList.d.ts +4 -7
  328. package/dist/components/RecordEdition/EditRecordSidebar/PropertiesList/PropertiesList.js +6 -8
  329. package/dist/components/RecordEdition/EditRecordSidebar/PropertiesList/PropertiesList.js.map +1 -1
  330. package/dist/components/RecordEdition/EditRecordSidebar/RecordSummary/RecordInformations/RecordInformations.d.ts +9 -0
  331. package/dist/components/RecordEdition/EditRecordSidebar/RecordSummary/RecordInformations/RecordInformations.js +42 -0
  332. package/dist/components/RecordEdition/EditRecordSidebar/RecordSummary/RecordInformations/RecordInformations.js.map +1 -0
  333. package/dist/components/RecordEdition/EditRecordSidebar/RecordSummary/RecordInformations/useRecordInformations.d.ts +6 -0
  334. package/dist/components/RecordEdition/EditRecordSidebar/RecordSummary/RecordInformations/useRecordInformations.js +35 -0
  335. package/dist/components/RecordEdition/EditRecordSidebar/RecordSummary/RecordInformations/useRecordInformations.js.map +1 -0
  336. package/dist/components/RecordEdition/EditRecordSidebar/RecordSummary/RecordSummary.d.ts +2 -281
  337. package/dist/components/RecordEdition/EditRecordSidebar/RecordSummary/RecordSummary.js +25 -56
  338. package/dist/components/RecordEdition/EditRecordSidebar/RecordSummary/RecordSummary.js.map +1 -1
  339. package/dist/components/RecordEdition/EditRecordSidebar/ValueDetails/ValueDetails.js +1 -13
  340. package/dist/components/RecordEdition/EditRecordSidebar/ValueDetails/ValueDetails.js.map +1 -1
  341. package/dist/components/RecordEdition/{EditRecordContent → EditRecordSkeleton}/EditRecordSkeleton.d.ts +1 -1
  342. package/dist/components/RecordEdition/{EditRecordContent → EditRecordSkeleton}/EditRecordSkeleton.js +2 -2
  343. package/dist/components/RecordEdition/EditRecordSkeleton/EditRecordSkeleton.js.map +1 -0
  344. package/dist/components/RecordEdition/EditRecordSkeleton/index.d.ts +2 -0
  345. package/dist/components/RecordEdition/{EditRecordContent/reducers/standardFieldReducer → EditRecordSkeleton}/index.js +2 -2
  346. package/dist/components/RecordEdition/EditRecordSkeleton/index.js.map +1 -0
  347. package/dist/components/RecordEdition/index.d.ts +1 -0
  348. package/dist/components/RecordEdition/index.js +1 -0
  349. package/dist/components/RecordEdition/index.js.map +1 -1
  350. package/dist/components/SelectTreeNode/SelectTreeNode.d.ts +4 -7
  351. package/dist/components/SelectTreeNode/SelectTreeNode.js +17 -135
  352. package/dist/components/SelectTreeNode/SelectTreeNode.js.map +1 -1
  353. package/dist/components/SelectTreeNode/SelectTreeNodeContent.d.ts +16 -0
  354. package/dist/components/SelectTreeNode/SelectTreeNodeContent.js +131 -0
  355. package/dist/components/SelectTreeNode/SelectTreeNodeContent.js.map +1 -0
  356. package/dist/components/SelectTreeNode/index.d.ts +1 -1
  357. package/dist/components/SelectTreeNode/index.js +1 -1
  358. package/dist/components/SelectTreeNode/index.js.map +1 -1
  359. package/dist/components/SelectTreeNodeModal/SelectTreeNodeModal.d.ts +4 -7
  360. package/dist/components/SelectTreeNodeModal/SelectTreeNodeModal.js +10 -10
  361. package/dist/components/SelectTreeNodeModal/SelectTreeNodeModal.js.map +1 -1
  362. package/dist/components/SelectTreeNodeModal/index.d.ts +1 -2
  363. package/dist/components/SelectTreeNodeModal/index.js +1 -2
  364. package/dist/components/SelectTreeNodeModal/index.js.map +1 -1
  365. package/dist/components/UploadFiles/UploadFiles.js +1 -1
  366. package/dist/components/UploadFiles/UploadFiles.js.map +1 -1
  367. package/dist/components/ValuesVersionConfigurator/VersionTree/VersionTree.js +2 -2
  368. package/dist/components/ValuesVersionConfigurator/VersionTree/VersionTree.js.map +1 -1
  369. package/dist/components/index.d.ts +1 -0
  370. package/dist/components/index.js +1 -0
  371. package/dist/components/index.js.map +1 -1
  372. package/dist/constants.d.ts +3 -0
  373. package/dist/constants.js +3 -0
  374. package/dist/constants.js.map +1 -1
  375. package/dist/hooks/useDebouncedValue/index.d.ts +1 -0
  376. package/dist/{components/RecordEdition/EditRecordContent/uiElements/StandardField/StandardFieldValue/StandardFieldValueDisplayHandler → hooks/useDebouncedValue}/index.js +1 -1
  377. package/dist/hooks/useDebouncedValue/index.js.map +1 -0
  378. package/dist/hooks/useExecuteSaveViewMutation/index.d.ts +1 -0
  379. package/dist/{components/RecordEdition/EditRecordContent/reducers/standardFieldReducer/standardFieldReducerContext.js → hooks/useExecuteSaveViewMutation/index.js} +2 -6
  380. package/dist/hooks/useExecuteSaveViewMutation/index.js.map +1 -0
  381. package/dist/hooks/useExecuteSaveViewMutation/useExecuteSaveViewMutation.d.ts +6 -0
  382. package/dist/hooks/{useExecuteAddViewMutation/useExecuteAddViewMutation.js → useExecuteSaveViewMutation/useExecuteSaveViewMutation.js} +6 -6
  383. package/dist/hooks/useExecuteSaveViewMutation/useExecuteSaveViewMutation.js.map +1 -0
  384. package/dist/hooks/useGetRecordForm/useGetRecordForm.d.ts +1 -0
  385. package/dist/hooks/useGetRecordForm/useGetRecordForm.js.map +1 -1
  386. package/dist/locales/en/shared.json +80 -8
  387. package/dist/locales/fr/shared.json +80 -8
  388. package/dist/types/views.d.ts +4 -4
  389. package/package.json +7 -2
  390. package/dist/components/Explorer/types.d.ts +0 -21
  391. package/dist/components/Explorer/types.js +0 -2
  392. package/dist/components/Explorer/types.js.map +0 -1
  393. package/dist/components/Explorer/useCreateMainAction.js +0 -36
  394. package/dist/components/Explorer/useCreateMainAction.js.map +0 -1
  395. package/dist/components/Explorer/useDeactivateAction.d.ts +0 -12
  396. package/dist/components/Explorer/useDeactivateAction.js +0 -51
  397. package/dist/components/Explorer/useDeactivateAction.js.map +0 -1
  398. package/dist/components/Explorer/useExplorerData.d.ts +0 -11
  399. package/dist/components/Explorer/useExplorerData.js +0 -23
  400. package/dist/components/Explorer/useExplorerData.js.map +0 -1
  401. package/dist/components/RecordEdition/EditRecordContent/EditRecordSkeleton.js.map +0 -1
  402. package/dist/components/RecordEdition/EditRecordContent/reducers/standardFieldReducer/index.d.ts +0 -2
  403. package/dist/components/RecordEdition/EditRecordContent/reducers/standardFieldReducer/index.js.map +0 -1
  404. package/dist/components/RecordEdition/EditRecordContent/reducers/standardFieldReducer/standardFieldReducer.d.ts +0 -138
  405. package/dist/components/RecordEdition/EditRecordContent/reducers/standardFieldReducer/standardFieldReducer.js +0 -367
  406. package/dist/components/RecordEdition/EditRecordContent/reducers/standardFieldReducer/standardFieldReducer.js.map +0 -1
  407. package/dist/components/RecordEdition/EditRecordContent/reducers/standardFieldReducer/standardFieldReducerContext.d.ts +0 -7
  408. package/dist/components/RecordEdition/EditRecordContent/reducers/standardFieldReducer/standardFieldReducerContext.js.map +0 -1
  409. package/dist/components/RecordEdition/EditRecordContent/reducers/standardFieldReducer/useStandardFieldReducer.d.ts +0 -1
  410. package/dist/components/RecordEdition/EditRecordContent/reducers/standardFieldReducer/useStandardFieldReducer.js.map +0 -1
  411. package/dist/components/RecordEdition/EditRecordContent/shared/ValueDetailsBtn/useValueDetailsButton.d.ts +0 -8
  412. package/dist/components/RecordEdition/EditRecordContent/shared/ValueDetailsBtn/useValueDetailsButton.js +0 -23
  413. package/dist/components/RecordEdition/EditRecordContent/shared/ValueDetailsBtn/useValueDetailsButton.js.map +0 -1
  414. package/dist/components/RecordEdition/EditRecordContent/uiElements/StandardField/StandardFieldValue/Inputs/CheckboxInput.d.ts +0 -3
  415. package/dist/components/RecordEdition/EditRecordContent/uiElements/StandardField/StandardFieldValue/Inputs/CheckboxInput.js +0 -14
  416. package/dist/components/RecordEdition/EditRecordContent/uiElements/StandardField/StandardFieldValue/Inputs/CheckboxInput.js.map +0 -1
  417. package/dist/components/RecordEdition/EditRecordContent/uiElements/StandardField/StandardFieldValue/Inputs/ColorInput.d.ts +0 -3
  418. package/dist/components/RecordEdition/EditRecordContent/uiElements/StandardField/StandardFieldValue/Inputs/ColorInput.js +0 -22
  419. package/dist/components/RecordEdition/EditRecordContent/uiElements/StandardField/StandardFieldValue/Inputs/ColorInput.js.map +0 -1
  420. package/dist/components/RecordEdition/EditRecordContent/uiElements/StandardField/StandardFieldValue/Inputs/DateInput.d.ts +0 -3
  421. package/dist/components/RecordEdition/EditRecordContent/uiElements/StandardField/StandardFieldValue/Inputs/DateInput.js +0 -22
  422. package/dist/components/RecordEdition/EditRecordContent/uiElements/StandardField/StandardFieldValue/Inputs/DateInput.js.map +0 -1
  423. package/dist/components/RecordEdition/EditRecordContent/uiElements/StandardField/StandardFieldValue/Inputs/EncryptedInput.d.ts +0 -3
  424. package/dist/components/RecordEdition/EditRecordContent/uiElements/StandardField/StandardFieldValue/Inputs/EncryptedInput.js +0 -19
  425. package/dist/components/RecordEdition/EditRecordContent/uiElements/StandardField/StandardFieldValue/Inputs/EncryptedInput.js.map +0 -1
  426. package/dist/components/RecordEdition/EditRecordContent/uiElements/StandardField/StandardFieldValue/Inputs/NumberInput.d.ts +0 -3
  427. package/dist/components/RecordEdition/EditRecordContent/uiElements/StandardField/StandardFieldValue/Inputs/NumberInput.js +0 -32
  428. package/dist/components/RecordEdition/EditRecordContent/uiElements/StandardField/StandardFieldValue/Inputs/NumberInput.js.map +0 -1
  429. package/dist/components/RecordEdition/EditRecordContent/uiElements/StandardField/StandardFieldValue/Inputs/RichTextEditorInput.d.ts +0 -3
  430. package/dist/components/RecordEdition/EditRecordContent/uiElements/StandardField/StandardFieldValue/Inputs/RichTextEditorInput.js +0 -51
  431. package/dist/components/RecordEdition/EditRecordContent/uiElements/StandardField/StandardFieldValue/Inputs/RichTextEditorInput.js.map +0 -1
  432. package/dist/components/RecordEdition/EditRecordContent/uiElements/StandardField/StandardFieldValue/Inputs/TextInput.d.ts +0 -3
  433. package/dist/components/RecordEdition/EditRecordContent/uiElements/StandardField/StandardFieldValue/Inputs/TextInput.js +0 -26
  434. package/dist/components/RecordEdition/EditRecordContent/uiElements/StandardField/StandardFieldValue/Inputs/TextInput.js.map +0 -1
  435. package/dist/components/RecordEdition/EditRecordContent/uiElements/StandardField/StandardFieldValue/StandardFieldValueDisplayHandler/StandardFieldValueDisplayHandler.d.ts +0 -13
  436. package/dist/components/RecordEdition/EditRecordContent/uiElements/StandardField/StandardFieldValue/StandardFieldValueDisplayHandler/StandardFieldValueDisplayHandler.js +0 -80
  437. package/dist/components/RecordEdition/EditRecordContent/uiElements/StandardField/StandardFieldValue/StandardFieldValueDisplayHandler/StandardFieldValueDisplayHandler.js.map +0 -1
  438. package/dist/components/RecordEdition/EditRecordContent/uiElements/StandardField/StandardFieldValue/StandardFieldValueDisplayHandler/StandardFieldValueRead/ColorPickerBlock.d.ts +0 -7
  439. package/dist/components/RecordEdition/EditRecordContent/uiElements/StandardField/StandardFieldValue/StandardFieldValueDisplayHandler/StandardFieldValueRead/ColorPickerBlock.js +0 -45
  440. package/dist/components/RecordEdition/EditRecordContent/uiElements/StandardField/StandardFieldValue/StandardFieldValueDisplayHandler/StandardFieldValueRead/ColorPickerBlock.js.map +0 -1
  441. package/dist/components/RecordEdition/EditRecordContent/uiElements/StandardField/StandardFieldValue/StandardFieldValueDisplayHandler/StandardFieldValueRead/StandardFieldValueRead.d.ts +0 -9
  442. package/dist/components/RecordEdition/EditRecordContent/uiElements/StandardField/StandardFieldValue/StandardFieldValueDisplayHandler/StandardFieldValueRead/StandardFieldValueRead.js +0 -137
  443. package/dist/components/RecordEdition/EditRecordContent/uiElements/StandardField/StandardFieldValue/StandardFieldValueDisplayHandler/StandardFieldValueRead/StandardFieldValueRead.js.map +0 -1
  444. package/dist/components/RecordEdition/EditRecordContent/uiElements/StandardField/StandardFieldValue/StandardFieldValueDisplayHandler/index.d.ts +0 -1
  445. package/dist/components/RecordEdition/EditRecordContent/uiElements/StandardField/StandardFieldValue/StandardFieldValueDisplayHandler/index.js.map +0 -1
  446. package/dist/hooks/useExecuteAddViewMutation/useExecuteAddViewMutation.d.ts +0 -6
  447. package/dist/hooks/useExecuteAddViewMutation/useExecuteAddViewMutation.js.map +0 -1
@@ -158,14 +158,15 @@ export declare enum AttributeType {
158
158
  tree = "tree"
159
159
  }
160
160
  export type AttributesFiltersInput = {
161
- format?: InputMaybe<Array<InputMaybe<AttributeFormat>>>;
161
+ format?: InputMaybe<Array<AttributeFormat>>;
162
162
  id?: InputMaybe<Scalars['ID']>;
163
+ ids?: InputMaybe<Array<Scalars['ID']>>;
163
164
  label?: InputMaybe<Scalars['String']>;
164
- libraries?: InputMaybe<Array<InputMaybe<Scalars['String']>>>;
165
- librariesExcluded?: InputMaybe<Array<InputMaybe<Scalars['String']>>>;
165
+ libraries?: InputMaybe<Array<Scalars['String']>>;
166
+ librariesExcluded?: InputMaybe<Array<Scalars['String']>>;
166
167
  multiple_values?: InputMaybe<Scalars['Boolean']>;
167
168
  system?: InputMaybe<Scalars['Boolean']>;
168
- type?: InputMaybe<Array<InputMaybe<AttributeType>>>;
169
+ type?: InputMaybe<Array<AttributeType>>;
169
170
  versionable?: InputMaybe<Scalars['Boolean']>;
170
171
  };
171
172
  export declare enum AttributesSortableFields {
@@ -701,6 +702,7 @@ export declare enum ValueVersionMode {
701
702
  }
702
703
  export type ValuesListConfInput = {
703
704
  allowFreeEntry?: InputMaybe<Scalars['Boolean']>;
705
+ allowListUpdate?: InputMaybe<Scalars['Boolean']>;
704
706
  enable: Scalars['Boolean'];
705
707
  values?: InputMaybe<Array<Scalars['String']>>;
706
708
  };
@@ -724,10 +726,11 @@ export declare enum VersionProfilesSortableFields {
724
726
  id = "id"
725
727
  }
726
728
  export type ViewDisplayInput = {
727
- size: ViewSizes;
729
+ size?: InputMaybe<ViewSizes>;
728
730
  type: ViewTypes;
729
731
  };
730
732
  export type ViewInput = {
733
+ attributes?: InputMaybe<Array<Scalars['String']>>;
731
734
  color?: InputMaybe<Scalars['String']>;
732
735
  description?: InputMaybe<Scalars['SystemTranslationOptional']>;
733
736
  display: ViewDisplayInput;
@@ -735,15 +738,10 @@ export type ViewInput = {
735
738
  id?: InputMaybe<Scalars['String']>;
736
739
  label?: InputMaybe<Scalars['SystemTranslation']>;
737
740
  library: Scalars['String'];
738
- settings?: InputMaybe<Array<ViewSettingsInput>>;
739
741
  shared: Scalars['Boolean'];
740
- sort?: InputMaybe<RecordSortInput>;
742
+ sort?: InputMaybe<Array<RecordSortInput>>;
741
743
  valuesVersions?: InputMaybe<Array<ViewValuesVersionInput>>;
742
744
  };
743
- export type ViewSettingsInput = {
744
- name: Scalars['String'];
745
- value?: InputMaybe<Scalars['Any']>;
746
- };
747
745
  export declare enum ViewSizes {
748
746
  BIG = "BIG",
749
747
  MEDIUM = "MEDIUM",
@@ -1485,7 +1483,9 @@ export type RecordFormElementFragment = {
1485
1483
  format?: AttributeFormat | null;
1486
1484
  system: boolean;
1487
1485
  readonly: boolean;
1486
+ required: boolean;
1488
1487
  multiple_values: boolean;
1488
+ compute: boolean;
1489
1489
  linked_library?: {
1490
1490
  id: string;
1491
1491
  label?: any | null;
@@ -1497,6 +1497,7 @@ export type RecordFormElementFragment = {
1497
1497
  linkValuesList?: {
1498
1498
  enable: boolean;
1499
1499
  allowFreeEntry?: boolean | null;
1500
+ allowListUpdate?: boolean | null;
1500
1501
  values?: Array<{
1501
1502
  id: string;
1502
1503
  whoAmI: {
@@ -1542,6 +1543,7 @@ export type RecordFormElementFragment = {
1542
1543
  values_list?: {
1543
1544
  enable: boolean;
1544
1545
  allowFreeEntry?: boolean | null;
1546
+ allowListUpdate?: boolean | null;
1545
1547
  dateRangeValues?: Array<{
1546
1548
  from?: string | null;
1547
1549
  to?: string | null;
@@ -1549,6 +1551,7 @@ export type RecordFormElementFragment = {
1549
1551
  } | {
1550
1552
  enable: boolean;
1551
1553
  allowFreeEntry?: boolean | null;
1554
+ allowListUpdate?: boolean | null;
1552
1555
  values?: Array<string> | null;
1553
1556
  } | null;
1554
1557
  metadata_fields?: Array<{
@@ -1563,10 +1566,13 @@ export type RecordFormElementFragment = {
1563
1566
  format?: AttributeFormat | null;
1564
1567
  system: boolean;
1565
1568
  readonly: boolean;
1569
+ required: boolean;
1566
1570
  multiple_values: boolean;
1571
+ compute: boolean;
1567
1572
  values_list?: {
1568
1573
  enable: boolean;
1569
1574
  allowFreeEntry?: boolean | null;
1575
+ allowListUpdate?: boolean | null;
1570
1576
  dateRangeValues?: Array<{
1571
1577
  from?: string | null;
1572
1578
  to?: string | null;
@@ -1574,6 +1580,7 @@ export type RecordFormElementFragment = {
1574
1580
  } | {
1575
1581
  enable: boolean;
1576
1582
  allowFreeEntry?: boolean | null;
1583
+ allowListUpdate?: boolean | null;
1577
1584
  values?: Array<string> | null;
1578
1585
  } | null;
1579
1586
  permissions: {
@@ -1606,6 +1613,7 @@ export type RecordFormElementFragment = {
1606
1613
  values_list?: {
1607
1614
  enable: boolean;
1608
1615
  allowFreeEntry?: boolean | null;
1616
+ allowListUpdate?: boolean | null;
1609
1617
  dateRangeValues?: Array<{
1610
1618
  from?: string | null;
1611
1619
  to?: string | null;
@@ -1613,6 +1621,7 @@ export type RecordFormElementFragment = {
1613
1621
  } | {
1614
1622
  enable: boolean;
1615
1623
  allowFreeEntry?: boolean | null;
1624
+ allowListUpdate?: boolean | null;
1616
1625
  values?: Array<string> | null;
1617
1626
  } | null;
1618
1627
  metadata_fields?: Array<{
@@ -1627,7 +1636,9 @@ export type RecordFormElementFragment = {
1627
1636
  format?: AttributeFormat | null;
1628
1637
  system: boolean;
1629
1638
  readonly: boolean;
1639
+ required: boolean;
1630
1640
  multiple_values: boolean;
1641
+ compute: boolean;
1631
1642
  linked_tree?: {
1632
1643
  id: string;
1633
1644
  label?: any | null;
@@ -1635,6 +1646,7 @@ export type RecordFormElementFragment = {
1635
1646
  treeValuesList?: {
1636
1647
  enable: boolean;
1637
1648
  allowFreeEntry?: boolean | null;
1649
+ allowListUpdate?: boolean | null;
1638
1650
  values?: Array<{
1639
1651
  id: string;
1640
1652
  record: {
@@ -1699,6 +1711,7 @@ export type RecordFormElementFragment = {
1699
1711
  values_list?: {
1700
1712
  enable: boolean;
1701
1713
  allowFreeEntry?: boolean | null;
1714
+ allowListUpdate?: boolean | null;
1702
1715
  dateRangeValues?: Array<{
1703
1716
  from?: string | null;
1704
1717
  to?: string | null;
@@ -1706,6 +1719,7 @@ export type RecordFormElementFragment = {
1706
1719
  } | {
1707
1720
  enable: boolean;
1708
1721
  allowFreeEntry?: boolean | null;
1722
+ allowListUpdate?: boolean | null;
1709
1723
  values?: Array<string> | null;
1710
1724
  } | null;
1711
1725
  metadata_fields?: Array<{
@@ -2127,7 +2141,9 @@ export type RecordFormAttributeLinkAttributeFragment = {
2127
2141
  format?: AttributeFormat | null;
2128
2142
  system: boolean;
2129
2143
  readonly: boolean;
2144
+ required: boolean;
2130
2145
  multiple_values: boolean;
2146
+ compute: boolean;
2131
2147
  linked_library?: {
2132
2148
  id: string;
2133
2149
  label?: any | null;
@@ -2139,6 +2155,7 @@ export type RecordFormAttributeLinkAttributeFragment = {
2139
2155
  linkValuesList?: {
2140
2156
  enable: boolean;
2141
2157
  allowFreeEntry?: boolean | null;
2158
+ allowListUpdate?: boolean | null;
2142
2159
  values?: Array<{
2143
2160
  id: string;
2144
2161
  whoAmI: {
@@ -2184,6 +2201,7 @@ export type RecordFormAttributeLinkAttributeFragment = {
2184
2201
  values_list?: {
2185
2202
  enable: boolean;
2186
2203
  allowFreeEntry?: boolean | null;
2204
+ allowListUpdate?: boolean | null;
2187
2205
  dateRangeValues?: Array<{
2188
2206
  from?: string | null;
2189
2207
  to?: string | null;
@@ -2191,6 +2209,7 @@ export type RecordFormAttributeLinkAttributeFragment = {
2191
2209
  } | {
2192
2210
  enable: boolean;
2193
2211
  allowFreeEntry?: boolean | null;
2212
+ allowListUpdate?: boolean | null;
2194
2213
  values?: Array<string> | null;
2195
2214
  } | null;
2196
2215
  metadata_fields?: Array<{
@@ -2206,10 +2225,13 @@ export type RecordFormAttributeStandardAttributeFragment = {
2206
2225
  format?: AttributeFormat | null;
2207
2226
  system: boolean;
2208
2227
  readonly: boolean;
2228
+ required: boolean;
2209
2229
  multiple_values: boolean;
2230
+ compute: boolean;
2210
2231
  values_list?: {
2211
2232
  enable: boolean;
2212
2233
  allowFreeEntry?: boolean | null;
2234
+ allowListUpdate?: boolean | null;
2213
2235
  dateRangeValues?: Array<{
2214
2236
  from?: string | null;
2215
2237
  to?: string | null;
@@ -2217,6 +2239,7 @@ export type RecordFormAttributeStandardAttributeFragment = {
2217
2239
  } | {
2218
2240
  enable: boolean;
2219
2241
  allowFreeEntry?: boolean | null;
2242
+ allowListUpdate?: boolean | null;
2220
2243
  values?: Array<string> | null;
2221
2244
  } | null;
2222
2245
  permissions: {
@@ -2249,6 +2272,7 @@ export type RecordFormAttributeStandardAttributeFragment = {
2249
2272
  values_list?: {
2250
2273
  enable: boolean;
2251
2274
  allowFreeEntry?: boolean | null;
2275
+ allowListUpdate?: boolean | null;
2252
2276
  dateRangeValues?: Array<{
2253
2277
  from?: string | null;
2254
2278
  to?: string | null;
@@ -2256,6 +2280,7 @@ export type RecordFormAttributeStandardAttributeFragment = {
2256
2280
  } | {
2257
2281
  enable: boolean;
2258
2282
  allowFreeEntry?: boolean | null;
2283
+ allowListUpdate?: boolean | null;
2259
2284
  values?: Array<string> | null;
2260
2285
  } | null;
2261
2286
  metadata_fields?: Array<{
@@ -2271,7 +2296,9 @@ export type RecordFormAttributeTreeAttributeFragment = {
2271
2296
  format?: AttributeFormat | null;
2272
2297
  system: boolean;
2273
2298
  readonly: boolean;
2299
+ required: boolean;
2274
2300
  multiple_values: boolean;
2301
+ compute: boolean;
2275
2302
  linked_tree?: {
2276
2303
  id: string;
2277
2304
  label?: any | null;
@@ -2279,6 +2306,7 @@ export type RecordFormAttributeTreeAttributeFragment = {
2279
2306
  treeValuesList?: {
2280
2307
  enable: boolean;
2281
2308
  allowFreeEntry?: boolean | null;
2309
+ allowListUpdate?: boolean | null;
2282
2310
  values?: Array<{
2283
2311
  id: string;
2284
2312
  record: {
@@ -2343,6 +2371,7 @@ export type RecordFormAttributeTreeAttributeFragment = {
2343
2371
  values_list?: {
2344
2372
  enable: boolean;
2345
2373
  allowFreeEntry?: boolean | null;
2374
+ allowListUpdate?: boolean | null;
2346
2375
  dateRangeValues?: Array<{
2347
2376
  from?: string | null;
2348
2377
  to?: string | null;
@@ -2350,6 +2379,7 @@ export type RecordFormAttributeTreeAttributeFragment = {
2350
2379
  } | {
2351
2380
  enable: boolean;
2352
2381
  allowFreeEntry?: boolean | null;
2382
+ allowListUpdate?: boolean | null;
2353
2383
  values?: Array<string> | null;
2354
2384
  } | null;
2355
2385
  metadata_fields?: Array<{
@@ -2361,6 +2391,7 @@ export type RecordFormAttributeFragment = RecordFormAttributeLinkAttributeFragme
2361
2391
  export type StandardValuesListFragmentStandardDateRangeValuesListConfFragment = {
2362
2392
  enable: boolean;
2363
2393
  allowFreeEntry?: boolean | null;
2394
+ allowListUpdate?: boolean | null;
2364
2395
  dateRangeValues?: Array<{
2365
2396
  from?: string | null;
2366
2397
  to?: string | null;
@@ -2369,6 +2400,7 @@ export type StandardValuesListFragmentStandardDateRangeValuesListConfFragment =
2369
2400
  export type StandardValuesListFragmentStandardStringValuesListConfFragment = {
2370
2401
  enable: boolean;
2371
2402
  allowFreeEntry?: boolean | null;
2403
+ allowListUpdate?: boolean | null;
2372
2404
  values?: Array<string> | null;
2373
2405
  };
2374
2406
  export type StandardValuesListFragmentFragment = StandardValuesListFragmentStandardDateRangeValuesListConfFragment | StandardValuesListFragmentStandardStringValuesListConfFragment;
@@ -2448,7 +2480,7 @@ export type ViewDetailsFragment = {
2448
2480
  description?: any | null;
2449
2481
  color?: string | null;
2450
2482
  display: {
2451
- size: ViewSizes;
2483
+ size?: ViewSizes | null;
2452
2484
  type: ViewTypes;
2453
2485
  };
2454
2486
  created_by: {
@@ -2471,10 +2503,10 @@ export type ViewDetailsFragment = {
2471
2503
  label?: any | null;
2472
2504
  } | null;
2473
2505
  }> | null;
2474
- sort?: {
2506
+ sort?: Array<{
2475
2507
  field: string;
2476
2508
  order: SortOrder;
2477
- } | null;
2509
+ }> | null;
2478
2510
  valuesVersions?: Array<{
2479
2511
  treeId: string;
2480
2512
  treeNode: {
@@ -2495,11 +2527,33 @@ export type ViewDetailsFragment = {
2495
2527
  };
2496
2528
  };
2497
2529
  }> | null;
2498
- settings?: Array<{
2499
- name: string;
2500
- value?: any | null;
2530
+ attributes?: Array<{
2531
+ id: string;
2501
2532
  }> | null;
2502
2533
  };
2534
+ export type ViewDetailsFilterFragment = {
2535
+ field?: string | null;
2536
+ value?: string | null;
2537
+ condition?: RecordFilterCondition | null;
2538
+ operator?: RecordFilterOperator | null;
2539
+ tree?: {
2540
+ id: string;
2541
+ label?: any | null;
2542
+ } | null;
2543
+ };
2544
+ export type LinkAttributeDetailsFragment = {
2545
+ label?: any | null;
2546
+ linked_library?: {
2547
+ id: string;
2548
+ } | null;
2549
+ };
2550
+ export type AttributePropertiesFragment = {
2551
+ id: string;
2552
+ label?: any | null;
2553
+ type: AttributeType;
2554
+ format?: AttributeFormat | null;
2555
+ multiple_values: boolean;
2556
+ };
2503
2557
  export type PropertyValueLinkValueFragment = {
2504
2558
  linkPayload?: {
2505
2559
  id: string;
@@ -2515,9 +2569,6 @@ export type PropertyValueLinkValueFragment = {
2515
2569
  };
2516
2570
  };
2517
2571
  } | null;
2518
- attribute: {
2519
- type: AttributeType;
2520
- };
2521
2572
  };
2522
2573
  export type PropertyValueTreeValueFragment = {
2523
2574
  treePayload?: {
@@ -2536,17 +2587,79 @@ export type PropertyValueTreeValueFragment = {
2536
2587
  };
2537
2588
  };
2538
2589
  } | null;
2539
- attribute: {
2540
- type: AttributeType;
2541
- };
2542
2590
  };
2543
2591
  export type PropertyValueValueFragment = {
2544
2592
  valuePayload?: any | null;
2545
- attribute: {
2546
- type: AttributeType;
2547
- };
2593
+ valueRawPayload?: any | null;
2548
2594
  };
2549
2595
  export type PropertyValueFragment = PropertyValueLinkValueFragment | PropertyValueTreeValueFragment | PropertyValueValueFragment;
2596
+ export type LinkPropertyLinkValueFragment = {
2597
+ id_value?: string | null;
2598
+ payload?: {
2599
+ id: string;
2600
+ properties: Array<{
2601
+ attributeId: string;
2602
+ attributeProperties: {
2603
+ id: string;
2604
+ label?: any | null;
2605
+ type: AttributeType;
2606
+ format?: AttributeFormat | null;
2607
+ multiple_values: boolean;
2608
+ };
2609
+ values: Array<{
2610
+ linkPayload?: {
2611
+ id: string;
2612
+ whoAmI: {
2613
+ id: string;
2614
+ label?: string | null;
2615
+ subLabel?: string | null;
2616
+ color?: string | null;
2617
+ preview?: IPreviewScalar | null;
2618
+ library: {
2619
+ id: string;
2620
+ label?: any | null;
2621
+ };
2622
+ };
2623
+ } | null;
2624
+ } | {
2625
+ treePayload?: {
2626
+ record: {
2627
+ id: string;
2628
+ whoAmI: {
2629
+ id: string;
2630
+ label?: string | null;
2631
+ subLabel?: string | null;
2632
+ color?: string | null;
2633
+ preview?: IPreviewScalar | null;
2634
+ library: {
2635
+ id: string;
2636
+ label?: any | null;
2637
+ };
2638
+ };
2639
+ };
2640
+ } | null;
2641
+ } | {
2642
+ valuePayload?: any | null;
2643
+ valueRawPayload?: any | null;
2644
+ }>;
2645
+ }>;
2646
+ whoAmI: {
2647
+ id: string;
2648
+ label?: string | null;
2649
+ subLabel?: string | null;
2650
+ color?: string | null;
2651
+ preview?: IPreviewScalar | null;
2652
+ library: {
2653
+ id: string;
2654
+ label?: any | null;
2655
+ };
2656
+ };
2657
+ } | null;
2658
+ };
2659
+ export type LinkPropertyTreeValueValueFragment = {
2660
+ id_value?: string | null;
2661
+ };
2662
+ export type LinkPropertyFragment = LinkPropertyLinkValueFragment | LinkPropertyTreeValueValueFragment;
2550
2663
  export type CheckApplicationExistenceQueryVariables = Exact<{
2551
2664
  id?: InputMaybe<Scalars['ID']>;
2552
2665
  endpoint?: InputMaybe<Scalars['String']>;
@@ -3941,7 +4054,9 @@ export type RecordFormQuery = {
3941
4054
  format?: AttributeFormat | null;
3942
4055
  system: boolean;
3943
4056
  readonly: boolean;
4057
+ required: boolean;
3944
4058
  multiple_values: boolean;
4059
+ compute: boolean;
3945
4060
  linked_library?: {
3946
4061
  id: string;
3947
4062
  label?: any | null;
@@ -3953,6 +4068,7 @@ export type RecordFormQuery = {
3953
4068
  linkValuesList?: {
3954
4069
  enable: boolean;
3955
4070
  allowFreeEntry?: boolean | null;
4071
+ allowListUpdate?: boolean | null;
3956
4072
  values?: Array<{
3957
4073
  id: string;
3958
4074
  whoAmI: {
@@ -3998,6 +4114,7 @@ export type RecordFormQuery = {
3998
4114
  values_list?: {
3999
4115
  enable: boolean;
4000
4116
  allowFreeEntry?: boolean | null;
4117
+ allowListUpdate?: boolean | null;
4001
4118
  dateRangeValues?: Array<{
4002
4119
  from?: string | null;
4003
4120
  to?: string | null;
@@ -4005,6 +4122,7 @@ export type RecordFormQuery = {
4005
4122
  } | {
4006
4123
  enable: boolean;
4007
4124
  allowFreeEntry?: boolean | null;
4125
+ allowListUpdate?: boolean | null;
4008
4126
  values?: Array<string> | null;
4009
4127
  } | null;
4010
4128
  metadata_fields?: Array<{
@@ -4019,10 +4137,13 @@ export type RecordFormQuery = {
4019
4137
  format?: AttributeFormat | null;
4020
4138
  system: boolean;
4021
4139
  readonly: boolean;
4140
+ required: boolean;
4022
4141
  multiple_values: boolean;
4142
+ compute: boolean;
4023
4143
  values_list?: {
4024
4144
  enable: boolean;
4025
4145
  allowFreeEntry?: boolean | null;
4146
+ allowListUpdate?: boolean | null;
4026
4147
  dateRangeValues?: Array<{
4027
4148
  from?: string | null;
4028
4149
  to?: string | null;
@@ -4030,6 +4151,7 @@ export type RecordFormQuery = {
4030
4151
  } | {
4031
4152
  enable: boolean;
4032
4153
  allowFreeEntry?: boolean | null;
4154
+ allowListUpdate?: boolean | null;
4033
4155
  values?: Array<string> | null;
4034
4156
  } | null;
4035
4157
  permissions: {
@@ -4062,6 +4184,7 @@ export type RecordFormQuery = {
4062
4184
  values_list?: {
4063
4185
  enable: boolean;
4064
4186
  allowFreeEntry?: boolean | null;
4187
+ allowListUpdate?: boolean | null;
4065
4188
  dateRangeValues?: Array<{
4066
4189
  from?: string | null;
4067
4190
  to?: string | null;
@@ -4069,6 +4192,7 @@ export type RecordFormQuery = {
4069
4192
  } | {
4070
4193
  enable: boolean;
4071
4194
  allowFreeEntry?: boolean | null;
4195
+ allowListUpdate?: boolean | null;
4072
4196
  values?: Array<string> | null;
4073
4197
  } | null;
4074
4198
  metadata_fields?: Array<{
@@ -4083,7 +4207,9 @@ export type RecordFormQuery = {
4083
4207
  format?: AttributeFormat | null;
4084
4208
  system: boolean;
4085
4209
  readonly: boolean;
4210
+ required: boolean;
4086
4211
  multiple_values: boolean;
4212
+ compute: boolean;
4087
4213
  linked_tree?: {
4088
4214
  id: string;
4089
4215
  label?: any | null;
@@ -4091,6 +4217,7 @@ export type RecordFormQuery = {
4091
4217
  treeValuesList?: {
4092
4218
  enable: boolean;
4093
4219
  allowFreeEntry?: boolean | null;
4220
+ allowListUpdate?: boolean | null;
4094
4221
  values?: Array<{
4095
4222
  id: string;
4096
4223
  record: {
@@ -4155,6 +4282,7 @@ export type RecordFormQuery = {
4155
4282
  values_list?: {
4156
4283
  enable: boolean;
4157
4284
  allowFreeEntry?: boolean | null;
4285
+ allowListUpdate?: boolean | null;
4158
4286
  dateRangeValues?: Array<{
4159
4287
  from?: string | null;
4160
4288
  to?: string | null;
@@ -4162,6 +4290,7 @@ export type RecordFormQuery = {
4162
4290
  } | {
4163
4291
  enable: boolean;
4164
4292
  allowFreeEntry?: boolean | null;
4293
+ allowListUpdate?: boolean | null;
4165
4294
  values?: Array<string> | null;
4166
4295
  } | null;
4167
4296
  metadata_fields?: Array<{
@@ -5180,6 +5309,128 @@ export type DeleteValueMutation = {
5180
5309
  } | null> | null;
5181
5310
  }>;
5182
5311
  };
5312
+ export type RunActionsListAndFormatOnValueQueryVariables = Exact<{
5313
+ library: Scalars['ID'];
5314
+ value?: InputMaybe<ValueBatchInput>;
5315
+ version?: InputMaybe<Array<InputMaybe<ValueVersionInput>> | InputMaybe<ValueVersionInput>>;
5316
+ }>;
5317
+ export type RunActionsListAndFormatOnValueQuery = {
5318
+ runActionsListAndFormatOnValue: Array<{
5319
+ id_value?: string | null;
5320
+ isInherited?: boolean | null;
5321
+ isCalculated?: boolean | null;
5322
+ modified_at?: number | null;
5323
+ created_at?: number | null;
5324
+ payload?: any | null;
5325
+ raw_payload?: any | null;
5326
+ value?: any | null;
5327
+ raw_value?: any | null;
5328
+ modified_by?: {
5329
+ id: string;
5330
+ whoAmI: {
5331
+ id: string;
5332
+ label?: string | null;
5333
+ subLabel?: string | null;
5334
+ color?: string | null;
5335
+ preview?: IPreviewScalar | null;
5336
+ library: {
5337
+ id: string;
5338
+ label?: any | null;
5339
+ };
5340
+ };
5341
+ } | null;
5342
+ created_by?: {
5343
+ id: string;
5344
+ whoAmI: {
5345
+ id: string;
5346
+ label?: string | null;
5347
+ subLabel?: string | null;
5348
+ color?: string | null;
5349
+ preview?: IPreviewScalar | null;
5350
+ library: {
5351
+ id: string;
5352
+ label?: any | null;
5353
+ };
5354
+ };
5355
+ } | null;
5356
+ version?: Array<{
5357
+ treeId: string;
5358
+ treeNode?: {
5359
+ id: string;
5360
+ record: {
5361
+ id: string;
5362
+ whoAmI: {
5363
+ id: string;
5364
+ label?: string | null;
5365
+ library: {
5366
+ id: string;
5367
+ };
5368
+ };
5369
+ };
5370
+ } | null;
5371
+ } | null> | null;
5372
+ attribute: {
5373
+ id: string;
5374
+ format?: AttributeFormat | null;
5375
+ type: AttributeType;
5376
+ system: boolean;
5377
+ };
5378
+ metadata?: Array<{
5379
+ name: string;
5380
+ value?: {
5381
+ id_value?: string | null;
5382
+ modified_at?: number | null;
5383
+ created_at?: number | null;
5384
+ payload?: any | null;
5385
+ raw_payload?: any | null;
5386
+ modified_by?: {
5387
+ id: string;
5388
+ whoAmI: {
5389
+ id: string;
5390
+ label?: string | null;
5391
+ subLabel?: string | null;
5392
+ color?: string | null;
5393
+ preview?: IPreviewScalar | null;
5394
+ library: {
5395
+ id: string;
5396
+ label?: any | null;
5397
+ };
5398
+ };
5399
+ } | null;
5400
+ created_by?: {
5401
+ id: string;
5402
+ whoAmI: {
5403
+ id: string;
5404
+ label?: string | null;
5405
+ subLabel?: string | null;
5406
+ color?: string | null;
5407
+ preview?: IPreviewScalar | null;
5408
+ library: {
5409
+ id: string;
5410
+ label?: any | null;
5411
+ };
5412
+ };
5413
+ } | null;
5414
+ version?: Array<{
5415
+ treeId: string;
5416
+ treeNode?: {
5417
+ id: string;
5418
+ record: {
5419
+ id: string;
5420
+ whoAmI: {
5421
+ id: string;
5422
+ label?: string | null;
5423
+ library: {
5424
+ id: string;
5425
+ };
5426
+ };
5427
+ };
5428
+ } | null;
5429
+ } | null> | null;
5430
+ } | null;
5431
+ } | null> | null;
5432
+ }>;
5433
+ };
5183
5434
  export type SaveValueBatchMutationVariables = Exact<{
5184
5435
  library: Scalars['ID'];
5185
5436
  recordId: Scalars['ID'];
@@ -5599,7 +5850,7 @@ export type GetViewQuery = {
5599
5850
  description?: any | null;
5600
5851
  color?: string | null;
5601
5852
  display: {
5602
- size: ViewSizes;
5853
+ size?: ViewSizes | null;
5603
5854
  type: ViewTypes;
5604
5855
  };
5605
5856
  created_by: {
@@ -5622,10 +5873,10 @@ export type GetViewQuery = {
5622
5873
  label?: any | null;
5623
5874
  } | null;
5624
5875
  }> | null;
5625
- sort?: {
5876
+ sort?: Array<{
5626
5877
  field: string;
5627
5878
  order: SortOrder;
5628
- } | null;
5879
+ }> | null;
5629
5880
  valuesVersions?: Array<{
5630
5881
  treeId: string;
5631
5882
  treeNode: {
@@ -5646,9 +5897,8 @@ export type GetViewQuery = {
5646
5897
  };
5647
5898
  };
5648
5899
  }> | null;
5649
- settings?: Array<{
5650
- name: string;
5651
- value?: any | null;
5900
+ attributes?: Array<{
5901
+ id: string;
5652
5902
  }> | null;
5653
5903
  };
5654
5904
  };
@@ -5665,7 +5915,7 @@ export type GetViewsListQuery = {
5665
5915
  description?: any | null;
5666
5916
  color?: string | null;
5667
5917
  display: {
5668
- size: ViewSizes;
5918
+ size?: ViewSizes | null;
5669
5919
  type: ViewTypes;
5670
5920
  };
5671
5921
  created_by: {
@@ -5688,10 +5938,10 @@ export type GetViewsListQuery = {
5688
5938
  label?: any | null;
5689
5939
  } | null;
5690
5940
  }> | null;
5691
- sort?: {
5941
+ sort?: Array<{
5692
5942
  field: string;
5693
5943
  order: SortOrder;
5694
- } | null;
5944
+ }> | null;
5695
5945
  valuesVersions?: Array<{
5696
5946
  treeId: string;
5697
5947
  treeNode: {
@@ -5712,17 +5962,16 @@ export type GetViewsListQuery = {
5712
5962
  };
5713
5963
  };
5714
5964
  }> | null;
5715
- settings?: Array<{
5716
- name: string;
5717
- value?: any | null;
5965
+ attributes?: Array<{
5966
+ id: string;
5718
5967
  }> | null;
5719
5968
  }>;
5720
5969
  };
5721
5970
  };
5722
- export type AddViewMutationVariables = Exact<{
5971
+ export type SaveViewMutationVariables = Exact<{
5723
5972
  view: ViewInput;
5724
5973
  }>;
5725
- export type AddViewMutation = {
5974
+ export type SaveViewMutation = {
5726
5975
  saveView: {
5727
5976
  id: string;
5728
5977
  shared: boolean;
@@ -5730,7 +5979,7 @@ export type AddViewMutation = {
5730
5979
  description?: any | null;
5731
5980
  color?: string | null;
5732
5981
  display: {
5733
- size: ViewSizes;
5982
+ size?: ViewSizes | null;
5734
5983
  type: ViewTypes;
5735
5984
  };
5736
5985
  created_by: {
@@ -5753,10 +6002,10 @@ export type AddViewMutation = {
5753
6002
  label?: any | null;
5754
6003
  } | null;
5755
6004
  }> | null;
5756
- sort?: {
6005
+ sort?: Array<{
5757
6006
  field: string;
5758
6007
  order: SortOrder;
5759
- } | null;
6008
+ }> | null;
5760
6009
  valuesVersions?: Array<{
5761
6010
  treeId: string;
5762
6011
  treeNode: {
@@ -5777,19 +6026,53 @@ export type AddViewMutation = {
5777
6026
  };
5778
6027
  };
5779
6028
  }> | null;
5780
- settings?: Array<{
5781
- name: string;
5782
- value?: any | null;
6029
+ attributes?: Array<{
6030
+ id: string;
5783
6031
  }> | null;
5784
6032
  };
5785
6033
  };
5786
- export type ExplorerQueryVariables = Exact<{
6034
+ export type ExplorerAttributesQueryVariables = Exact<{
6035
+ ids?: InputMaybe<Array<Scalars['ID']> | Scalars['ID']>;
6036
+ }>;
6037
+ export type ExplorerAttributesQuery = {
6038
+ attributes?: {
6039
+ list: Array<{
6040
+ id: string;
6041
+ type: AttributeType;
6042
+ format?: AttributeFormat | null;
6043
+ label?: any | null;
6044
+ }>;
6045
+ } | null;
6046
+ };
6047
+ export type ExplorerLinkAttributeQueryVariables = Exact<{
6048
+ id: Scalars['ID'];
6049
+ }>;
6050
+ export type ExplorerLinkAttributeQuery = {
6051
+ attributes?: {
6052
+ list: Array<{
6053
+ label?: any | null;
6054
+ id: string;
6055
+ multiple_values: boolean;
6056
+ linked_library?: {
6057
+ id: string;
6058
+ } | null;
6059
+ } | {
6060
+ id: string;
6061
+ multiple_values: boolean;
6062
+ }>;
6063
+ } | null;
6064
+ };
6065
+ export type ExplorerLibraryDataQueryVariables = Exact<{
5787
6066
  libraryId: Scalars['ID'];
5788
6067
  attributeIds: Array<Scalars['ID']> | Scalars['ID'];
6068
+ pagination?: InputMaybe<RecordsPagination>;
5789
6069
  filters?: InputMaybe<Array<InputMaybe<RecordFilterInput>> | InputMaybe<RecordFilterInput>>;
6070
+ multipleSort?: InputMaybe<Array<RecordSortInput> | RecordSortInput>;
6071
+ searchQuery?: InputMaybe<Scalars['String']>;
5790
6072
  }>;
5791
- export type ExplorerQuery = {
6073
+ export type ExplorerLibraryDataQuery = {
5792
6074
  records: {
6075
+ totalCount?: number | null;
5793
6076
  list: Array<{
5794
6077
  id: string;
5795
6078
  whoAmI: {
@@ -5805,6 +6088,13 @@ export type ExplorerQuery = {
5805
6088
  };
5806
6089
  properties: Array<{
5807
6090
  attributeId: string;
6091
+ attributeProperties: {
6092
+ id: string;
6093
+ label?: any | null;
6094
+ type: AttributeType;
6095
+ format?: AttributeFormat | null;
6096
+ multiple_values: boolean;
6097
+ };
5808
6098
  values: Array<{
5809
6099
  linkPayload?: {
5810
6100
  id: string;
@@ -5820,9 +6110,6 @@ export type ExplorerQuery = {
5820
6110
  };
5821
6111
  };
5822
6112
  } | null;
5823
- attribute: {
5824
- type: AttributeType;
5825
- };
5826
6113
  } | {
5827
6114
  treePayload?: {
5828
6115
  record: {
@@ -5840,19 +6127,120 @@ export type ExplorerQuery = {
5840
6127
  };
5841
6128
  };
5842
6129
  } | null;
5843
- attribute: {
5844
- type: AttributeType;
5845
- };
5846
6130
  } | {
5847
6131
  valuePayload?: any | null;
5848
- attribute: {
5849
- type: AttributeType;
5850
- };
6132
+ valueRawPayload?: any | null;
5851
6133
  }>;
5852
6134
  }>;
5853
6135
  }>;
5854
6136
  };
5855
6137
  };
6138
+ export type ExplorerLinkDataQueryVariables = Exact<{
6139
+ attributeIds: Array<Scalars['ID']> | Scalars['ID'];
6140
+ parentLibraryId: Scalars['ID'];
6141
+ parentRecordId?: InputMaybe<Scalars['String']>;
6142
+ linkAttributeId: Scalars['ID'];
6143
+ }>;
6144
+ export type ExplorerLinkDataQuery = {
6145
+ records: {
6146
+ list: Array<{
6147
+ id: string;
6148
+ whoAmI: {
6149
+ id: string;
6150
+ library: {
6151
+ id: string;
6152
+ };
6153
+ };
6154
+ property: Array<{
6155
+ id_value?: string | null;
6156
+ payload?: {
6157
+ id: string;
6158
+ whoAmI: {
6159
+ id: string;
6160
+ label?: string | null;
6161
+ subLabel?: string | null;
6162
+ color?: string | null;
6163
+ preview?: IPreviewScalar | null;
6164
+ library: {
6165
+ id: string;
6166
+ label?: any | null;
6167
+ };
6168
+ };
6169
+ properties: Array<{
6170
+ attributeId: string;
6171
+ attributeProperties: {
6172
+ id: string;
6173
+ label?: any | null;
6174
+ type: AttributeType;
6175
+ format?: AttributeFormat | null;
6176
+ multiple_values: boolean;
6177
+ };
6178
+ values: Array<{
6179
+ linkPayload?: {
6180
+ id: string;
6181
+ whoAmI: {
6182
+ id: string;
6183
+ label?: string | null;
6184
+ subLabel?: string | null;
6185
+ color?: string | null;
6186
+ preview?: IPreviewScalar | null;
6187
+ library: {
6188
+ id: string;
6189
+ label?: any | null;
6190
+ };
6191
+ };
6192
+ } | null;
6193
+ } | {
6194
+ treePayload?: {
6195
+ record: {
6196
+ id: string;
6197
+ whoAmI: {
6198
+ id: string;
6199
+ label?: string | null;
6200
+ subLabel?: string | null;
6201
+ color?: string | null;
6202
+ preview?: IPreviewScalar | null;
6203
+ library: {
6204
+ id: string;
6205
+ label?: any | null;
6206
+ };
6207
+ };
6208
+ };
6209
+ } | null;
6210
+ } | {
6211
+ valuePayload?: any | null;
6212
+ valueRawPayload?: any | null;
6213
+ }>;
6214
+ }>;
6215
+ } | null;
6216
+ } | {
6217
+ id_value?: string | null;
6218
+ }>;
6219
+ }>;
6220
+ };
6221
+ };
6222
+ export type ExplorerLibraryDetailsQueryVariables = Exact<{
6223
+ libraryId: Scalars['ID'];
6224
+ }>;
6225
+ export type ExplorerLibraryDetailsQuery = {
6226
+ libraries?: {
6227
+ list: Array<{
6228
+ id: string;
6229
+ label?: any | null;
6230
+ }>;
6231
+ } | null;
6232
+ };
6233
+ export type TreeDataQueryQueryVariables = Exact<{
6234
+ treeId: Scalars['ID'];
6235
+ }>;
6236
+ export type TreeDataQueryQuery = {
6237
+ trees?: {
6238
+ list: Array<{
6239
+ id: string;
6240
+ label?: any | null;
6241
+ }>;
6242
+ } | null;
6243
+ };
5856
6244
  export declare const RecordIdentityFragmentDoc: Apollo.DocumentNode;
5857
6245
  export declare const DetailsApplicationFragmentDoc: Apollo.DocumentNode;
5858
6246
  export declare const AttributeDetailsFragmentDoc: Apollo.DocumentNode;
@@ -5870,8 +6258,12 @@ export declare const RecordFormElementFragmentDoc: Apollo.DocumentNode;
5870
6258
  export declare const TreeLightFragmentDoc: Apollo.DocumentNode;
5871
6259
  export declare const TreeDetailsFragmentDoc: Apollo.DocumentNode;
5872
6260
  export declare const TreeNodeChildFragmentDoc: Apollo.DocumentNode;
6261
+ export declare const ViewDetailsFilterFragmentDoc: Apollo.DocumentNode;
5873
6262
  export declare const ViewDetailsFragmentDoc: Apollo.DocumentNode;
6263
+ export declare const LinkAttributeDetailsFragmentDoc: Apollo.DocumentNode;
6264
+ export declare const AttributePropertiesFragmentDoc: Apollo.DocumentNode;
5874
6265
  export declare const PropertyValueFragmentDoc: Apollo.DocumentNode;
6266
+ export declare const LinkPropertyFragmentDoc: Apollo.DocumentNode;
5875
6267
  export declare const CheckApplicationExistenceDocument: Apollo.DocumentNode;
5876
6268
  /**
5877
6269
  * __useCheckApplicationExistenceQuery__
@@ -7115,6 +7507,38 @@ export declare function useDeleteValueMutation(baseOptions?: Apollo.MutationHook
7115
7507
  export type DeleteValueMutationHookResult = ReturnType<typeof useDeleteValueMutation>;
7116
7508
  export type DeleteValueMutationResult = Apollo.MutationResult<DeleteValueMutation>;
7117
7509
  export type DeleteValueMutationOptions = Apollo.BaseMutationOptions<DeleteValueMutation, DeleteValueMutationVariables>;
7510
+ export declare const RunActionsListAndFormatOnValueDocument: Apollo.DocumentNode;
7511
+ /**
7512
+ * __useRunActionsListAndFormatOnValueQuery__
7513
+ *
7514
+ * To run a query within a React component, call `useRunActionsListAndFormatOnValueQuery` and pass it any options that fit your needs.
7515
+ * When your component renders, `useRunActionsListAndFormatOnValueQuery` returns an object from Apollo Client that contains loading, error, and data properties
7516
+ * you can use to render your UI.
7517
+ *
7518
+ * @param baseOptions options that will be passed into the query, supported options are listed on: https://www.apollographql.com/docs/react/api/react-hooks/#options;
7519
+ *
7520
+ * @example
7521
+ * const { data, loading, error } = useRunActionsListAndFormatOnValueQuery({
7522
+ * variables: {
7523
+ * library: // value for 'library'
7524
+ * value: // value for 'value'
7525
+ * version: // value for 'version'
7526
+ * },
7527
+ * });
7528
+ */
7529
+ export declare function useRunActionsListAndFormatOnValueQuery(baseOptions: Apollo.QueryHookOptions<RunActionsListAndFormatOnValueQuery, RunActionsListAndFormatOnValueQueryVariables>): Apollo.QueryResult<RunActionsListAndFormatOnValueQuery, Exact<{
7530
+ library: Scalars["ID"];
7531
+ value?: InputMaybe<ValueBatchInput>;
7532
+ version?: InputMaybe<Array<InputMaybe<ValueVersionInput>> | InputMaybe<ValueVersionInput>>;
7533
+ }>>;
7534
+ export declare function useRunActionsListAndFormatOnValueLazyQuery(baseOptions?: Apollo.LazyQueryHookOptions<RunActionsListAndFormatOnValueQuery, RunActionsListAndFormatOnValueQueryVariables>): Apollo.LazyQueryResultTuple<RunActionsListAndFormatOnValueQuery, Exact<{
7535
+ library: Scalars["ID"];
7536
+ value?: InputMaybe<ValueBatchInput>;
7537
+ version?: InputMaybe<Array<InputMaybe<ValueVersionInput>> | InputMaybe<ValueVersionInput>>;
7538
+ }>>;
7539
+ export type RunActionsListAndFormatOnValueQueryHookResult = ReturnType<typeof useRunActionsListAndFormatOnValueQuery>;
7540
+ export type RunActionsListAndFormatOnValueLazyQueryHookResult = ReturnType<typeof useRunActionsListAndFormatOnValueLazyQuery>;
7541
+ export type RunActionsListAndFormatOnValueQueryResult = Apollo.QueryResult<RunActionsListAndFormatOnValueQuery, RunActionsListAndFormatOnValueQueryVariables>;
7118
7542
  export declare const SaveValueBatchDocument: Apollo.DocumentNode;
7119
7543
  export type SaveValueBatchMutationFn = Apollo.MutationFunction<SaveValueBatchMutation, SaveValueBatchMutationVariables>;
7120
7544
  /**
@@ -7225,60 +7649,208 @@ export declare function useGetViewsListLazyQuery(baseOptions?: Apollo.LazyQueryH
7225
7649
  export type GetViewsListQueryHookResult = ReturnType<typeof useGetViewsListQuery>;
7226
7650
  export type GetViewsListLazyQueryHookResult = ReturnType<typeof useGetViewsListLazyQuery>;
7227
7651
  export type GetViewsListQueryResult = Apollo.QueryResult<GetViewsListQuery, GetViewsListQueryVariables>;
7228
- export declare const AddViewDocument: Apollo.DocumentNode;
7229
- export type AddViewMutationFn = Apollo.MutationFunction<AddViewMutation, AddViewMutationVariables>;
7652
+ export declare const SaveViewDocument: Apollo.DocumentNode;
7653
+ export type SaveViewMutationFn = Apollo.MutationFunction<SaveViewMutation, SaveViewMutationVariables>;
7230
7654
  /**
7231
- * __useAddViewMutation__
7655
+ * __useSaveViewMutation__
7232
7656
  *
7233
- * To run a mutation, you first call `useAddViewMutation` within a React component and pass it any options that fit your needs.
7234
- * When your component renders, `useAddViewMutation` returns a tuple that includes:
7657
+ * To run a mutation, you first call `useSaveViewMutation` within a React component and pass it any options that fit your needs.
7658
+ * When your component renders, `useSaveViewMutation` returns a tuple that includes:
7235
7659
  * - A mutate function that you can call at any time to execute the mutation
7236
7660
  * - An object with fields that represent the current status of the mutation's execution
7237
7661
  *
7238
7662
  * @param baseOptions options that will be passed into the mutation, supported options are listed on: https://www.apollographql.com/docs/react/api/react-hooks/#options-2;
7239
7663
  *
7240
7664
  * @example
7241
- * const [addViewMutation, { data, loading, error }] = useAddViewMutation({
7665
+ * const [saveViewMutation, { data, loading, error }] = useSaveViewMutation({
7242
7666
  * variables: {
7243
7667
  * view: // value for 'view'
7244
7668
  * },
7245
7669
  * });
7246
7670
  */
7247
- export declare function useAddViewMutation(baseOptions?: Apollo.MutationHookOptions<AddViewMutation, AddViewMutationVariables>): Apollo.MutationTuple<AddViewMutation, Exact<{
7671
+ export declare function useSaveViewMutation(baseOptions?: Apollo.MutationHookOptions<SaveViewMutation, SaveViewMutationVariables>): Apollo.MutationTuple<SaveViewMutation, Exact<{
7248
7672
  view: ViewInput;
7249
7673
  }>, Apollo.DefaultContext, Apollo.ApolloCache<any>>;
7250
- export type AddViewMutationHookResult = ReturnType<typeof useAddViewMutation>;
7251
- export type AddViewMutationResult = Apollo.MutationResult<AddViewMutation>;
7252
- export type AddViewMutationOptions = Apollo.BaseMutationOptions<AddViewMutation, AddViewMutationVariables>;
7253
- export declare const ExplorerDocument: Apollo.DocumentNode;
7674
+ export type SaveViewMutationHookResult = ReturnType<typeof useSaveViewMutation>;
7675
+ export type SaveViewMutationResult = Apollo.MutationResult<SaveViewMutation>;
7676
+ export type SaveViewMutationOptions = Apollo.BaseMutationOptions<SaveViewMutation, SaveViewMutationVariables>;
7677
+ export declare const ExplorerAttributesDocument: Apollo.DocumentNode;
7678
+ /**
7679
+ * __useExplorerAttributesQuery__
7680
+ *
7681
+ * To run a query within a React component, call `useExplorerAttributesQuery` and pass it any options that fit your needs.
7682
+ * When your component renders, `useExplorerAttributesQuery` returns an object from Apollo Client that contains loading, error, and data properties
7683
+ * you can use to render your UI.
7684
+ *
7685
+ * @param baseOptions options that will be passed into the query, supported options are listed on: https://www.apollographql.com/docs/react/api/react-hooks/#options;
7686
+ *
7687
+ * @example
7688
+ * const { data, loading, error } = useExplorerAttributesQuery({
7689
+ * variables: {
7690
+ * ids: // value for 'ids'
7691
+ * },
7692
+ * });
7693
+ */
7694
+ export declare function useExplorerAttributesQuery(baseOptions?: Apollo.QueryHookOptions<ExplorerAttributesQuery, ExplorerAttributesQueryVariables>): Apollo.QueryResult<ExplorerAttributesQuery, Exact<{
7695
+ ids?: InputMaybe<Array<Scalars["ID"]> | Scalars["ID"]>;
7696
+ }>>;
7697
+ export declare function useExplorerAttributesLazyQuery(baseOptions?: Apollo.LazyQueryHookOptions<ExplorerAttributesQuery, ExplorerAttributesQueryVariables>): Apollo.LazyQueryResultTuple<ExplorerAttributesQuery, Exact<{
7698
+ ids?: InputMaybe<Array<Scalars["ID"]> | Scalars["ID"]>;
7699
+ }>>;
7700
+ export type ExplorerAttributesQueryHookResult = ReturnType<typeof useExplorerAttributesQuery>;
7701
+ export type ExplorerAttributesLazyQueryHookResult = ReturnType<typeof useExplorerAttributesLazyQuery>;
7702
+ export type ExplorerAttributesQueryResult = Apollo.QueryResult<ExplorerAttributesQuery, ExplorerAttributesQueryVariables>;
7703
+ export declare const ExplorerLinkAttributeDocument: Apollo.DocumentNode;
7704
+ /**
7705
+ * __useExplorerLinkAttributeQuery__
7706
+ *
7707
+ * To run a query within a React component, call `useExplorerLinkAttributeQuery` and pass it any options that fit your needs.
7708
+ * When your component renders, `useExplorerLinkAttributeQuery` returns an object from Apollo Client that contains loading, error, and data properties
7709
+ * you can use to render your UI.
7710
+ *
7711
+ * @param baseOptions options that will be passed into the query, supported options are listed on: https://www.apollographql.com/docs/react/api/react-hooks/#options;
7712
+ *
7713
+ * @example
7714
+ * const { data, loading, error } = useExplorerLinkAttributeQuery({
7715
+ * variables: {
7716
+ * id: // value for 'id'
7717
+ * },
7718
+ * });
7719
+ */
7720
+ export declare function useExplorerLinkAttributeQuery(baseOptions: Apollo.QueryHookOptions<ExplorerLinkAttributeQuery, ExplorerLinkAttributeQueryVariables>): Apollo.QueryResult<ExplorerLinkAttributeQuery, Exact<{
7721
+ id: Scalars["ID"];
7722
+ }>>;
7723
+ export declare function useExplorerLinkAttributeLazyQuery(baseOptions?: Apollo.LazyQueryHookOptions<ExplorerLinkAttributeQuery, ExplorerLinkAttributeQueryVariables>): Apollo.LazyQueryResultTuple<ExplorerLinkAttributeQuery, Exact<{
7724
+ id: Scalars["ID"];
7725
+ }>>;
7726
+ export type ExplorerLinkAttributeQueryHookResult = ReturnType<typeof useExplorerLinkAttributeQuery>;
7727
+ export type ExplorerLinkAttributeLazyQueryHookResult = ReturnType<typeof useExplorerLinkAttributeLazyQuery>;
7728
+ export type ExplorerLinkAttributeQueryResult = Apollo.QueryResult<ExplorerLinkAttributeQuery, ExplorerLinkAttributeQueryVariables>;
7729
+ export declare const ExplorerLibraryDataDocument: Apollo.DocumentNode;
7254
7730
  /**
7255
- * __useExplorerQuery__
7731
+ * __useExplorerLibraryDataQuery__
7256
7732
  *
7257
- * To run a query within a React component, call `useExplorerQuery` and pass it any options that fit your needs.
7258
- * When your component renders, `useExplorerQuery` returns an object from Apollo Client that contains loading, error, and data properties
7733
+ * To run a query within a React component, call `useExplorerLibraryDataQuery` and pass it any options that fit your needs.
7734
+ * When your component renders, `useExplorerLibraryDataQuery` returns an object from Apollo Client that contains loading, error, and data properties
7259
7735
  * you can use to render your UI.
7260
7736
  *
7261
7737
  * @param baseOptions options that will be passed into the query, supported options are listed on: https://www.apollographql.com/docs/react/api/react-hooks/#options;
7262
7738
  *
7263
7739
  * @example
7264
- * const { data, loading, error } = useExplorerQuery({
7740
+ * const { data, loading, error } = useExplorerLibraryDataQuery({
7265
7741
  * variables: {
7266
7742
  * libraryId: // value for 'libraryId'
7267
7743
  * attributeIds: // value for 'attributeIds'
7744
+ * pagination: // value for 'pagination'
7268
7745
  * filters: // value for 'filters'
7746
+ * multipleSort: // value for 'multipleSort'
7747
+ * searchQuery: // value for 'searchQuery'
7269
7748
  * },
7270
7749
  * });
7271
7750
  */
7272
- export declare function useExplorerQuery(baseOptions: Apollo.QueryHookOptions<ExplorerQuery, ExplorerQueryVariables>): Apollo.QueryResult<ExplorerQuery, Exact<{
7751
+ export declare function useExplorerLibraryDataQuery(baseOptions: Apollo.QueryHookOptions<ExplorerLibraryDataQuery, ExplorerLibraryDataQueryVariables>): Apollo.QueryResult<ExplorerLibraryDataQuery, Exact<{
7273
7752
  libraryId: Scalars["ID"];
7274
7753
  attributeIds: Array<Scalars["ID"]> | Scalars["ID"];
7754
+ pagination?: InputMaybe<RecordsPagination>;
7275
7755
  filters?: InputMaybe<Array<InputMaybe<RecordFilterInput>> | InputMaybe<RecordFilterInput>>;
7756
+ multipleSort?: InputMaybe<Array<RecordSortInput> | RecordSortInput>;
7757
+ searchQuery?: InputMaybe<Scalars["String"]>;
7276
7758
  }>>;
7277
- export declare function useExplorerLazyQuery(baseOptions?: Apollo.LazyQueryHookOptions<ExplorerQuery, ExplorerQueryVariables>): Apollo.LazyQueryResultTuple<ExplorerQuery, Exact<{
7759
+ export declare function useExplorerLibraryDataLazyQuery(baseOptions?: Apollo.LazyQueryHookOptions<ExplorerLibraryDataQuery, ExplorerLibraryDataQueryVariables>): Apollo.LazyQueryResultTuple<ExplorerLibraryDataQuery, Exact<{
7278
7760
  libraryId: Scalars["ID"];
7279
7761
  attributeIds: Array<Scalars["ID"]> | Scalars["ID"];
7762
+ pagination?: InputMaybe<RecordsPagination>;
7280
7763
  filters?: InputMaybe<Array<InputMaybe<RecordFilterInput>> | InputMaybe<RecordFilterInput>>;
7764
+ multipleSort?: InputMaybe<Array<RecordSortInput> | RecordSortInput>;
7765
+ searchQuery?: InputMaybe<Scalars["String"]>;
7766
+ }>>;
7767
+ export type ExplorerLibraryDataQueryHookResult = ReturnType<typeof useExplorerLibraryDataQuery>;
7768
+ export type ExplorerLibraryDataLazyQueryHookResult = ReturnType<typeof useExplorerLibraryDataLazyQuery>;
7769
+ export type ExplorerLibraryDataQueryResult = Apollo.QueryResult<ExplorerLibraryDataQuery, ExplorerLibraryDataQueryVariables>;
7770
+ export declare const ExplorerLinkDataDocument: Apollo.DocumentNode;
7771
+ /**
7772
+ * __useExplorerLinkDataQuery__
7773
+ *
7774
+ * To run a query within a React component, call `useExplorerLinkDataQuery` and pass it any options that fit your needs.
7775
+ * When your component renders, `useExplorerLinkDataQuery` returns an object from Apollo Client that contains loading, error, and data properties
7776
+ * you can use to render your UI.
7777
+ *
7778
+ * @param baseOptions options that will be passed into the query, supported options are listed on: https://www.apollographql.com/docs/react/api/react-hooks/#options;
7779
+ *
7780
+ * @example
7781
+ * const { data, loading, error } = useExplorerLinkDataQuery({
7782
+ * variables: {
7783
+ * attributeIds: // value for 'attributeIds'
7784
+ * parentLibraryId: // value for 'parentLibraryId'
7785
+ * parentRecordId: // value for 'parentRecordId'
7786
+ * linkAttributeId: // value for 'linkAttributeId'
7787
+ * },
7788
+ * });
7789
+ */
7790
+ export declare function useExplorerLinkDataQuery(baseOptions: Apollo.QueryHookOptions<ExplorerLinkDataQuery, ExplorerLinkDataQueryVariables>): Apollo.QueryResult<ExplorerLinkDataQuery, Exact<{
7791
+ attributeIds: Array<Scalars["ID"]> | Scalars["ID"];
7792
+ parentLibraryId: Scalars["ID"];
7793
+ parentRecordId?: InputMaybe<Scalars["String"]>;
7794
+ linkAttributeId: Scalars["ID"];
7795
+ }>>;
7796
+ export declare function useExplorerLinkDataLazyQuery(baseOptions?: Apollo.LazyQueryHookOptions<ExplorerLinkDataQuery, ExplorerLinkDataQueryVariables>): Apollo.LazyQueryResultTuple<ExplorerLinkDataQuery, Exact<{
7797
+ attributeIds: Array<Scalars["ID"]> | Scalars["ID"];
7798
+ parentLibraryId: Scalars["ID"];
7799
+ parentRecordId?: InputMaybe<Scalars["String"]>;
7800
+ linkAttributeId: Scalars["ID"];
7801
+ }>>;
7802
+ export type ExplorerLinkDataQueryHookResult = ReturnType<typeof useExplorerLinkDataQuery>;
7803
+ export type ExplorerLinkDataLazyQueryHookResult = ReturnType<typeof useExplorerLinkDataLazyQuery>;
7804
+ export type ExplorerLinkDataQueryResult = Apollo.QueryResult<ExplorerLinkDataQuery, ExplorerLinkDataQueryVariables>;
7805
+ export declare const ExplorerLibraryDetailsDocument: Apollo.DocumentNode;
7806
+ /**
7807
+ * __useExplorerLibraryDetailsQuery__
7808
+ *
7809
+ * To run a query within a React component, call `useExplorerLibraryDetailsQuery` and pass it any options that fit your needs.
7810
+ * When your component renders, `useExplorerLibraryDetailsQuery` returns an object from Apollo Client that contains loading, error, and data properties
7811
+ * you can use to render your UI.
7812
+ *
7813
+ * @param baseOptions options that will be passed into the query, supported options are listed on: https://www.apollographql.com/docs/react/api/react-hooks/#options;
7814
+ *
7815
+ * @example
7816
+ * const { data, loading, error } = useExplorerLibraryDetailsQuery({
7817
+ * variables: {
7818
+ * libraryId: // value for 'libraryId'
7819
+ * },
7820
+ * });
7821
+ */
7822
+ export declare function useExplorerLibraryDetailsQuery(baseOptions: Apollo.QueryHookOptions<ExplorerLibraryDetailsQuery, ExplorerLibraryDetailsQueryVariables>): Apollo.QueryResult<ExplorerLibraryDetailsQuery, Exact<{
7823
+ libraryId: Scalars["ID"];
7824
+ }>>;
7825
+ export declare function useExplorerLibraryDetailsLazyQuery(baseOptions?: Apollo.LazyQueryHookOptions<ExplorerLibraryDetailsQuery, ExplorerLibraryDetailsQueryVariables>): Apollo.LazyQueryResultTuple<ExplorerLibraryDetailsQuery, Exact<{
7826
+ libraryId: Scalars["ID"];
7827
+ }>>;
7828
+ export type ExplorerLibraryDetailsQueryHookResult = ReturnType<typeof useExplorerLibraryDetailsQuery>;
7829
+ export type ExplorerLibraryDetailsLazyQueryHookResult = ReturnType<typeof useExplorerLibraryDetailsLazyQuery>;
7830
+ export type ExplorerLibraryDetailsQueryResult = Apollo.QueryResult<ExplorerLibraryDetailsQuery, ExplorerLibraryDetailsQueryVariables>;
7831
+ export declare const TreeDataQueryDocument: Apollo.DocumentNode;
7832
+ /**
7833
+ * __useTreeDataQueryQuery__
7834
+ *
7835
+ * To run a query within a React component, call `useTreeDataQueryQuery` and pass it any options that fit your needs.
7836
+ * When your component renders, `useTreeDataQueryQuery` returns an object from Apollo Client that contains loading, error, and data properties
7837
+ * you can use to render your UI.
7838
+ *
7839
+ * @param baseOptions options that will be passed into the query, supported options are listed on: https://www.apollographql.com/docs/react/api/react-hooks/#options;
7840
+ *
7841
+ * @example
7842
+ * const { data, loading, error } = useTreeDataQueryQuery({
7843
+ * variables: {
7844
+ * treeId: // value for 'treeId'
7845
+ * },
7846
+ * });
7847
+ */
7848
+ export declare function useTreeDataQueryQuery(baseOptions: Apollo.QueryHookOptions<TreeDataQueryQuery, TreeDataQueryQueryVariables>): Apollo.QueryResult<TreeDataQueryQuery, Exact<{
7849
+ treeId: Scalars["ID"];
7850
+ }>>;
7851
+ export declare function useTreeDataQueryLazyQuery(baseOptions?: Apollo.LazyQueryHookOptions<TreeDataQueryQuery, TreeDataQueryQueryVariables>): Apollo.LazyQueryResultTuple<TreeDataQueryQuery, Exact<{
7852
+ treeId: Scalars["ID"];
7281
7853
  }>>;
7282
- export type ExplorerQueryHookResult = ReturnType<typeof useExplorerQuery>;
7283
- export type ExplorerLazyQueryHookResult = ReturnType<typeof useExplorerLazyQuery>;
7284
- export type ExplorerQueryResult = Apollo.QueryResult<ExplorerQuery, ExplorerQueryVariables>;
7854
+ export type TreeDataQueryQueryHookResult = ReturnType<typeof useTreeDataQueryQuery>;
7855
+ export type TreeDataQueryLazyQueryHookResult = ReturnType<typeof useTreeDataQueryLazyQuery>;
7856
+ export type TreeDataQueryQueryResult = Apollo.QueryResult<TreeDataQueryQuery, TreeDataQueryQueryVariables>;