@leav/ui 0.4.0-9b6d94c → 0.4.0-a04a265e

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 (317) hide show
  1. package/README.md +1 -0
  2. package/dist/__mocks__/common/form.js +5 -1
  3. package/dist/__mocks__/common/form.js.map +1 -1
  4. package/dist/_gqlTypes/index.d.ts +1495 -187
  5. package/dist/_gqlTypes/index.js +453 -43
  6. package/dist/_gqlTypes/index.js.map +1 -1
  7. package/dist/_queries/attributes/attributeDetailsFragment.js +1 -0
  8. package/dist/_queries/attributes/attributeDetailsFragment.js.map +1 -1
  9. package/dist/_queries/records/activateRecordsMutation.d.ts +1 -0
  10. package/dist/_queries/records/activateRecordsMutation.js +15 -0
  11. package/dist/_queries/records/activateRecordsMutation.js.map +1 -0
  12. package/dist/_queries/records/getRecordFormQuery.js +13 -0
  13. package/dist/_queries/records/getRecordFormQuery.js.map +1 -1
  14. package/dist/_queries/trees/treeNodeChildrenQuery.js +12 -2
  15. package/dist/_queries/trees/treeNodeChildrenQuery.js.map +1 -1
  16. package/dist/_utils/attributeType.d.ts +2 -1
  17. package/dist/_utils/attributeType.js +2 -1
  18. package/dist/_utils/attributeType.js.map +1 -1
  19. package/dist/components/CreateDirectory/CreateDirectory.js +3 -3
  20. package/dist/components/CreateDirectory/CreateDirectory.js.map +1 -1
  21. package/dist/components/EditLibraryModal/EditLibrary/EditLibraryAttributes/AttributesList/DeleteButton/DeleteButton.js +3 -2
  22. package/dist/components/EditLibraryModal/EditLibrary/EditLibraryAttributes/AttributesList/DeleteButton/DeleteButton.js.map +1 -1
  23. package/dist/components/EditTreeModal/EditTree/EditTreeInfo/EditTreeInfoForm/TreeLibrariesForm/TreeLibrariesForm.js +8 -1
  24. package/dist/components/EditTreeModal/EditTree/EditTreeInfo/EditTreeInfoForm/TreeLibrariesForm/TreeLibrariesForm.js.map +1 -1
  25. package/dist/components/Explorer/DataView.d.ts +2 -1
  26. package/dist/components/Explorer/DataView.js +15 -12
  27. package/dist/components/Explorer/DataView.js.map +1 -1
  28. package/dist/components/Explorer/Explorer.d.ts +9 -6
  29. package/dist/components/Explorer/Explorer.js +25 -11
  30. package/dist/components/Explorer/Explorer.js.map +1 -1
  31. package/dist/components/Explorer/ExplorerToolbar.d.ts +2 -1
  32. package/dist/components/Explorer/ExplorerToolbar.js +15 -5
  33. package/dist/components/Explorer/ExplorerToolbar.js.map +1 -1
  34. package/dist/components/Explorer/TableCell.js +22 -11
  35. package/dist/components/Explorer/TableCell.js.map +1 -1
  36. package/dist/components/Explorer/_queries/prepareFiltersForRequest.d.ts +1 -1
  37. package/dist/components/Explorer/_queries/prepareFiltersForRequest.js +99 -31
  38. package/dist/components/Explorer/_queries/prepareFiltersForRequest.js.map +1 -1
  39. package/dist/components/Explorer/_queries/useExplorerData.js +35 -26
  40. package/dist/components/Explorer/_queries/useExplorerData.js.map +1 -1
  41. package/dist/components/Explorer/_types.d.ts +75 -9
  42. package/dist/components/Explorer/_types.js +5 -0
  43. package/dist/components/Explorer/_types.js.map +1 -1
  44. package/dist/components/Explorer/actions-item/useEditItemAction.d.ts +2 -1
  45. package/dist/components/Explorer/actions-item/useEditItemAction.js +2 -1
  46. package/dist/components/Explorer/actions-item/useEditItemAction.js.map +1 -1
  47. package/dist/components/Explorer/actions-item/{useRemoveItemAction.d.ts → useEditStatusItemAction.d.ts} +2 -2
  48. package/dist/components/Explorer/actions-item/{useRemoveItemAction.js → useEditStatusItemAction.js} +71 -24
  49. package/dist/components/Explorer/actions-item/useEditStatusItemAction.js.map +1 -0
  50. package/dist/components/Explorer/actions-item/useReplaceItemAction.d.ts +2 -1
  51. package/dist/components/Explorer/actions-item/useReplaceItemAction.js +2 -2
  52. package/dist/components/Explorer/actions-item/useReplaceItemAction.js.map +1 -1
  53. package/dist/components/Explorer/actions-primary/useCreatePrimaryAction.d.ts +5 -1
  54. package/dist/components/Explorer/actions-primary/useCreatePrimaryAction.js +20 -22
  55. package/dist/components/Explorer/actions-primary/useCreatePrimaryAction.js.map +1 -1
  56. package/dist/components/Explorer/actions-primary/useLinkPrimaryAction.d.ts +6 -3
  57. package/dist/components/Explorer/actions-primary/useLinkPrimaryAction.js +5 -19
  58. package/dist/components/Explorer/actions-primary/useLinkPrimaryAction.js.map +1 -1
  59. package/dist/components/Explorer/link-item/LinkModal.d.ts +3 -0
  60. package/dist/components/Explorer/link-item/LinkModal.js +44 -4
  61. package/dist/components/Explorer/link-item/LinkModal.js.map +1 -1
  62. package/dist/components/Explorer/manage-view-settings/_shared/CommonFilterItem.js +4 -4
  63. package/dist/components/Explorer/manage-view-settings/_shared/CommonFilterItem.js.map +1 -1
  64. package/dist/components/Explorer/manage-view-settings/_shared/useTransformFilters.d.ts +9 -3
  65. package/dist/components/Explorer/manage-view-settings/_shared/useTransformFilters.js +81 -12
  66. package/dist/components/Explorer/manage-view-settings/_shared/useTransformFilters.js.map +1 -1
  67. package/dist/components/Explorer/manage-view-settings/filter-items/FilterItems.js +21 -8
  68. package/dist/components/Explorer/manage-view-settings/filter-items/FilterItems.js.map +1 -1
  69. package/dist/components/Explorer/manage-view-settings/filter-items/filter-type/FilterDropDown.js +2 -2
  70. package/dist/components/Explorer/manage-view-settings/filter-items/filter-type/FilterDropDown.js.map +1 -1
  71. package/dist/components/Explorer/manage-view-settings/filter-items/filter-type/FilterDropdownContent.js +9 -1
  72. package/dist/components/Explorer/manage-view-settings/filter-items/filter-type/FilterDropdownContent.js.map +1 -1
  73. package/dist/components/Explorer/manage-view-settings/filter-items/filter-type/FilterValueListDropDown.d.ts +9 -0
  74. package/dist/components/Explorer/manage-view-settings/filter-items/filter-type/FilterValueListDropDown.js +131 -0
  75. package/dist/components/Explorer/manage-view-settings/filter-items/filter-type/FilterValueListDropDown.js.map +1 -0
  76. package/dist/components/Explorer/manage-view-settings/filter-items/filter-type/TreeAttributeDropDown.d.ts +3 -0
  77. package/dist/components/Explorer/manage-view-settings/filter-items/filter-type/TreeAttributeDropDown.js +69 -0
  78. package/dist/components/Explorer/manage-view-settings/filter-items/filter-type/TreeAttributeDropDown.js.map +1 -0
  79. package/dist/components/Explorer/manage-view-settings/filter-items/filter-type/_types.d.ts +6 -1
  80. package/dist/components/Explorer/manage-view-settings/filter-items/filter-type/useConditionOptionsByType.d.ts +3 -0
  81. package/dist/components/Explorer/manage-view-settings/filter-items/filter-type/useConditionOptionsByType.js +43 -4
  82. package/dist/components/Explorer/manage-view-settings/filter-items/filter-type/useConditionOptionsByType.js.map +1 -1
  83. package/dist/components/Explorer/manage-view-settings/save-view/prepareViewForRequest.js +29 -8
  84. package/dist/components/Explorer/manage-view-settings/save-view/prepareViewForRequest.js.map +1 -1
  85. package/dist/components/Explorer/manage-view-settings/store-view-settings/viewSettingsInitialState.js +2 -1
  86. package/dist/components/Explorer/manage-view-settings/store-view-settings/viewSettingsInitialState.js.map +1 -1
  87. package/dist/components/Explorer/manage-view-settings/store-view-settings/viewSettingsReducer.d.ts +3 -2
  88. package/dist/components/Explorer/manage-view-settings/store-view-settings/viewSettingsReducer.js +57 -14
  89. package/dist/components/Explorer/manage-view-settings/store-view-settings/viewSettingsReducer.js.map +1 -1
  90. package/dist/components/Explorer/useLoadView.d.ts +1 -1
  91. package/dist/components/Explorer/useLoadView.js +32 -38
  92. package/dist/components/Explorer/useLoadView.js.map +1 -1
  93. package/dist/components/Explorer/usePagination.d.ts +2 -1
  94. package/dist/components/Explorer/usePagination.js.map +1 -1
  95. package/dist/components/Explorer/useSearchInput.d.ts +3 -1
  96. package/dist/components/Explorer/useSearchInput.js +4 -1
  97. package/dist/components/Explorer/useSearchInput.js.map +1 -1
  98. package/dist/components/Explorer/useViewSettingsReducer.d.ts +1 -1
  99. package/dist/components/Explorer/useViewSettingsReducer.js +31 -16
  100. package/dist/components/Explorer/useViewSettingsReducer.js.map +1 -1
  101. package/dist/components/ImportModal/ImportModalConfigStep/ImportModalConfigStep.js +1 -1
  102. package/dist/components/ImportModal/ImportModalConfigStep/ImportModalConfigStep.js.map +1 -1
  103. package/dist/components/LibraryItemsList/CreateNewRecordButton/CreateNewRecordButton.js +1 -0
  104. package/dist/components/LibraryItemsList/CreateNewRecordButton/CreateNewRecordButton.js.map +1 -1
  105. package/dist/components/LibraryItemsList/FiltersDropdown/FiltersDropdown.js +1 -12
  106. package/dist/components/LibraryItemsList/FiltersDropdown/FiltersDropdown.js.map +1 -1
  107. package/dist/components/LibraryItemsList/FiltersPanel/Filter/Filter.js +3 -3
  108. package/dist/components/LibraryItemsList/FiltersPanel/Filter/Filter.js.map +1 -1
  109. package/dist/components/LibraryItemsList/FiltersPanel/Filter/Filter.utils.js +2 -2
  110. package/dist/components/LibraryItemsList/FiltersPanel/Filter/Filter.utils.js.map +1 -1
  111. package/dist/components/LibraryItemsList/shared/DeactivateRecordBtn/DeactivateRecordBtn.js +3 -3
  112. package/dist/components/LibraryItemsList/shared/DeactivateRecordBtn/DeactivateRecordBtn.js.map +1 -1
  113. package/dist/components/RecordEdition/EditRecord/EditRecord.d.ts +3 -5
  114. package/dist/components/RecordEdition/EditRecord/EditRecord.js +45 -239
  115. package/dist/components/RecordEdition/EditRecord/EditRecord.js.map +1 -1
  116. package/dist/components/RecordEdition/EditRecordButtons/EditRecordButtons.d.ts +2 -0
  117. package/dist/components/RecordEdition/EditRecordButtons/EditRecordButtons.js +43 -0
  118. package/dist/components/RecordEdition/EditRecordButtons/EditRecordButtons.js.map +1 -0
  119. package/dist/components/RecordEdition/EditRecordButtons/SidebarButton.d.ts +2 -0
  120. package/dist/components/RecordEdition/EditRecordButtons/SidebarButton.js +25 -0
  121. package/dist/components/RecordEdition/EditRecordButtons/SidebarButton.js.map +1 -0
  122. package/dist/components/RecordEdition/EditRecordButtons/index.d.ts +2 -0
  123. package/dist/components/{SelectTreeNodeModal → RecordEdition/EditRecordButtons}/index.js +2 -1
  124. package/dist/components/RecordEdition/EditRecordButtons/index.js.map +1 -0
  125. package/dist/components/RecordEdition/EditRecordContent/EditRecordContent.d.ts +3 -3
  126. package/dist/components/RecordEdition/EditRecordContent/EditRecordContent.js +24 -22
  127. package/dist/components/RecordEdition/EditRecordContent/EditRecordContent.js.map +1 -1
  128. package/dist/components/RecordEdition/EditRecordContent/_types.d.ts +6 -16
  129. package/dist/components/RecordEdition/EditRecordContent/_types.js.map +1 -1
  130. package/dist/components/RecordEdition/EditRecordContent/hooks/useCreateEmptyRecordMutation.d.ts +5 -0
  131. package/dist/components/RecordEdition/EditRecordContent/hooks/useCreateEmptyRecordMutation.js +28 -0
  132. package/dist/components/RecordEdition/EditRecordContent/hooks/useCreateEmptyRecordMutation.js.map +1 -0
  133. package/dist/components/RecordEdition/EditRecordContent/hooks/useTabManagement.d.ts +11 -0
  134. package/dist/components/RecordEdition/EditRecordContent/hooks/useTabManagement.js +35 -0
  135. package/dist/components/RecordEdition/EditRecordContent/hooks/useTabManagement.js.map +1 -0
  136. package/dist/components/RecordEdition/EditRecordContent/uiElements/Container/Container.d.ts +1 -1
  137. package/dist/components/RecordEdition/EditRecordContent/uiElements/Container/Container.js +2 -2
  138. package/dist/components/RecordEdition/EditRecordContent/uiElements/Container/Container.js.map +1 -1
  139. package/dist/components/RecordEdition/EditRecordContent/uiElements/FormDivider/FormDivider.js.map +1 -1
  140. package/dist/components/RecordEdition/EditRecordContent/uiElements/FormTabs/FormTabs.d.ts +2 -1
  141. package/dist/components/RecordEdition/EditRecordContent/uiElements/FormTabs/FormTabs.js +6 -9
  142. package/dist/components/RecordEdition/EditRecordContent/uiElements/FormTabs/FormTabs.js.map +1 -1
  143. package/dist/components/RecordEdition/EditRecordContent/uiElements/Frame/Frame.js +1 -1
  144. package/dist/components/RecordEdition/EditRecordContent/uiElements/Frame/Frame.js.map +1 -1
  145. package/dist/components/RecordEdition/EditRecordContent/uiElements/LinkField/LinkField.d.ts +2 -2
  146. package/dist/components/RecordEdition/EditRecordContent/uiElements/LinkField/LinkField.js +11 -35
  147. package/dist/components/RecordEdition/EditRecordContent/uiElements/LinkField/LinkField.js.map +1 -1
  148. package/dist/components/RecordEdition/EditRecordContent/uiElements/LinkField/link-record/ActionButton.d.ts +3 -0
  149. package/dist/components/RecordEdition/EditRecordContent/uiElements/LinkField/link-record/ActionButton.js +9 -0
  150. package/dist/components/RecordEdition/EditRecordContent/uiElements/LinkField/link-record/ActionButton.js.map +1 -0
  151. package/dist/components/RecordEdition/EditRecordContent/uiElements/LinkField/{link-record-in-edition/useLinkRecords.d.ts → link-record/useExplorerLinkRecords.d.ts} +2 -2
  152. package/dist/components/RecordEdition/EditRecordContent/uiElements/LinkField/{link-record-in-edition/useLinkRecords.js → link-record/useExplorerLinkRecords.js} +3 -3
  153. package/dist/components/RecordEdition/EditRecordContent/uiElements/LinkField/link-record/useExplorerLinkRecords.js.map +1 -0
  154. package/dist/components/RecordEdition/EditRecordContent/uiElements/LinkField/link-record/useLinkRecords.d.ts +24 -0
  155. package/dist/components/RecordEdition/EditRecordContent/uiElements/LinkField/{link-record-in-edition/useLinkRecordsInEdition.js → link-record/useLinkRecords.js} +19 -49
  156. package/dist/components/RecordEdition/EditRecordContent/uiElements/LinkField/link-record/useLinkRecords.js.map +1 -0
  157. package/dist/components/RecordEdition/EditRecordContent/uiElements/StandardField/StandardField.js +27 -22
  158. package/dist/components/RecordEdition/EditRecordContent/uiElements/StandardField/StandardField.js.map +1 -1
  159. package/dist/components/RecordEdition/EditRecordContent/uiElements/StandardField/StandardFieldValue/ValuesList/DSListSelect.js +3 -3
  160. package/dist/components/RecordEdition/EditRecordContent/uiElements/StandardField/StandardFieldValue/ValuesList/DSListSelect.js.map +1 -1
  161. package/dist/components/RecordEdition/EditRecordContent/uiElements/TextBlock/TextBlock.js.map +1 -1
  162. package/dist/components/RecordEdition/EditRecordContent/uiElements/TreeField/TreeField.d.ts +1 -1
  163. package/dist/components/RecordEdition/EditRecordContent/uiElements/TreeField/TreeField.js +19 -24
  164. package/dist/components/RecordEdition/EditRecordContent/uiElements/TreeField/TreeField.js.map +1 -1
  165. package/dist/components/RecordEdition/EditRecordContent/uiElements/TreeField/display-tree-node/TreeNodeItem.d.ts +2 -1
  166. package/dist/components/RecordEdition/EditRecordContent/uiElements/TreeField/display-tree-node/TreeNodeItem.js +2 -2
  167. package/dist/components/RecordEdition/EditRecordContent/uiElements/TreeField/display-tree-node/TreeNodeItem.js.map +1 -1
  168. package/dist/components/RecordEdition/EditRecordContent/uiElements/TreeField/display-tree-node/{useDisplayTreeNode.d.ts → TreeNodeList.d.ts} +4 -4
  169. package/dist/components/RecordEdition/EditRecordContent/uiElements/TreeField/display-tree-node/TreeNodeList.js +5 -0
  170. package/dist/components/RecordEdition/EditRecordContent/uiElements/TreeField/display-tree-node/TreeNodeList.js.map +1 -0
  171. package/dist/components/RecordEdition/EditRecordContent/uiElements/TreeField/manage-tree-node-selection/SelectTreeNodeModal.d.ts +16 -4
  172. package/dist/components/RecordEdition/EditRecordContent/uiElements/TreeField/manage-tree-node-selection/SelectTreeNodeModal.js +12 -13
  173. package/dist/components/RecordEdition/EditRecordContent/uiElements/TreeField/manage-tree-node-selection/SelectTreeNodeModal.js.map +1 -1
  174. package/dist/components/RecordEdition/EditRecordContent/uiElements/TreeField/manage-tree-node-selection/useManageTreeNodeSelection.d.ts +4 -2
  175. package/dist/components/RecordEdition/EditRecordContent/uiElements/TreeField/manage-tree-node-selection/useManageTreeNodeSelection.js +51 -63
  176. package/dist/components/RecordEdition/EditRecordContent/uiElements/TreeField/manage-tree-node-selection/useManageTreeNodeSelection.js.map +1 -1
  177. package/dist/components/RecordEdition/EditRecordContent/uiElements/shared/useOutsideInteractionDetector.d.ts +1 -3
  178. package/dist/components/RecordEdition/EditRecordContent/uiElements/shared/useOutsideInteractionDetector.js +6 -10
  179. package/dist/components/RecordEdition/EditRecordContent/uiElements/shared/useOutsideInteractionDetector.js.map +1 -1
  180. package/dist/components/RecordEdition/EditRecordModal/EditRecordModal.d.ts +3 -0
  181. package/dist/components/RecordEdition/EditRecordModal/EditRecordModal.js +49 -16
  182. package/dist/components/RecordEdition/EditRecordModal/EditRecordModal.js.map +1 -1
  183. package/dist/components/RecordEdition/EditRecordPage/EditRecordPage.d.ts +1 -0
  184. package/dist/components/RecordEdition/EditRecordPage/EditRecordPage.js +49 -12
  185. package/dist/components/RecordEdition/EditRecordPage/EditRecordPage.js.map +1 -1
  186. package/dist/components/RecordEdition/EditRecordSidebar/Breacrumb/Breadcrumb.js +2 -2
  187. package/dist/components/RecordEdition/EditRecordSidebar/Breacrumb/Breadcrumb.js.map +1 -1
  188. package/dist/components/RecordEdition/EditRecordSidebar/EditRecordSidebar.d.ts +0 -1
  189. package/dist/components/RecordEdition/EditRecordSidebar/EditRecordSidebar.js +13 -12
  190. package/dist/components/RecordEdition/EditRecordSidebar/EditRecordSidebar.js.map +1 -1
  191. package/dist/components/RecordEdition/EditRecordSidebar/ValuesVersions/ValuesVersions.js +2 -2
  192. package/dist/components/RecordEdition/EditRecordSidebar/ValuesVersions/ValuesVersions.js.map +1 -1
  193. package/dist/components/RecordEdition/constants.d.ts +2 -0
  194. package/dist/components/RecordEdition/constants.js +6 -0
  195. package/dist/components/RecordEdition/constants.js.map +1 -0
  196. package/dist/components/RecordEdition/editRecordReducer/editRecordReducer.d.ts +28 -5
  197. package/dist/components/RecordEdition/editRecordReducer/editRecordReducer.js +44 -3
  198. package/dist/components/RecordEdition/editRecordReducer/editRecordReducer.js.map +1 -1
  199. package/dist/components/RecordEdition/index.d.ts +3 -0
  200. package/dist/components/RecordEdition/index.js +3 -0
  201. package/dist/components/RecordEdition/index.js.map +1 -1
  202. package/dist/components/SelectRecordForLinkModal/SelectRecordForLinkModal.d.ts +4 -1
  203. package/dist/components/SelectRecordForLinkModal/SelectRecordForLinkModal.js +6 -4
  204. package/dist/components/SelectRecordForLinkModal/SelectRecordForLinkModal.js.map +1 -1
  205. package/dist/components/SelectTreeNode/SelectTreeNode.d.ts +7 -3
  206. package/dist/components/SelectTreeNode/SelectTreeNode.js +2 -3
  207. package/dist/components/SelectTreeNode/SelectTreeNode.js.map +1 -1
  208. package/dist/components/SelectTreeNode/SelectTreeNodeContent.d.ts +5 -1
  209. package/dist/components/SelectTreeNode/SelectTreeNodeContent.js +70 -56
  210. package/dist/components/SelectTreeNode/SelectTreeNodeContent.js.map +1 -1
  211. package/dist/components/SelectTreeNode/_types.d.ts +18 -0
  212. package/dist/components/SelectTreeNode/_types.js +2 -0
  213. package/dist/components/SelectTreeNode/_types.js.map +1 -0
  214. package/dist/components/{SelectTreeNodeModal/SelectTreeNodeModal.d.ts → SelectTreeNodeModalOld/SelectTreeNodeModalOld.d.ts} +1 -1
  215. package/dist/components/{SelectTreeNodeModal/SelectTreeNodeModal.js → SelectTreeNodeModalOld/SelectTreeNodeModalOld.js} +4 -2
  216. package/dist/components/SelectTreeNodeModalOld/SelectTreeNodeModalOld.js.map +1 -0
  217. package/dist/components/SelectTreeNodeModalOld/index.d.ts +1 -0
  218. package/dist/components/{RecordEdition/EditRecordContent/uiElements/StandardField/StandardFieldValue/ValuesList → SelectTreeNodeModalOld}/index.js +1 -2
  219. package/dist/components/SelectTreeNodeModalOld/index.js.map +1 -0
  220. package/dist/components/SimpleErrorBoundary/SimpleErrorBoundary.d.ts +1 -1
  221. package/dist/components/SimpleErrorBoundary/SimpleErrorBoundary.js.map +1 -1
  222. package/dist/components/UploadFiles/UploadFiles.js +3 -3
  223. package/dist/components/UploadFiles/UploadFiles.js.map +1 -1
  224. package/dist/components/ValuesVersionConfigurator/VersionTree/VersionTree.js +2 -2
  225. package/dist/components/ValuesVersionConfigurator/VersionTree/VersionTree.js.map +1 -1
  226. package/dist/components/index.d.ts +1 -2
  227. package/dist/components/index.js +1 -2
  228. package/dist/components/index.js.map +1 -1
  229. package/dist/contexts/LangContext/LangContext.d.ts +1 -2
  230. package/dist/contexts/LangContext/LangContext.js +2 -2
  231. package/dist/contexts/LangContext/LangContext.js.map +1 -1
  232. package/dist/hooks/index.d.ts +3 -0
  233. package/dist/hooks/index.js +3 -0
  234. package/dist/hooks/index.js.map +1 -1
  235. package/dist/hooks/useAppLang/useAppLang.js.map +1 -1
  236. package/dist/hooks/useGetRecordForm/useGetRecordForm.d.ts +1 -1
  237. package/dist/hooks/useGetRecordForm/useGetRecordForm.js +3 -3
  238. package/dist/hooks/useGetRecordForm/useGetRecordForm.js.map +1 -1
  239. package/dist/hooks/useIFrameMessenger/messageHandlers.d.ts +15 -0
  240. package/dist/hooks/useIFrameMessenger/messageHandlers.js +121 -0
  241. package/dist/hooks/useIFrameMessenger/messageHandlers.js.map +1 -0
  242. package/dist/hooks/useIFrameMessenger/schema.d.ts +21 -0
  243. package/dist/hooks/useIFrameMessenger/schema.js +76 -0
  244. package/dist/hooks/useIFrameMessenger/schema.js.map +1 -0
  245. package/dist/hooks/useIFrameMessenger/types.d.ts +120 -0
  246. package/dist/hooks/useIFrameMessenger/types.js +2 -0
  247. package/dist/hooks/useIFrameMessenger/types.js.map +1 -0
  248. package/dist/hooks/useIFrameMessenger/useIFrameMessenger.d.ts +19 -0
  249. package/dist/hooks/useIFrameMessenger/useIFrameMessenger.js +108 -0
  250. package/dist/hooks/useIFrameMessenger/useIFrameMessenger.js.map +1 -0
  251. package/dist/hooks/useIFrameMessengerClient/IFrameMessengerClient.d.ts +7 -0
  252. package/dist/hooks/useIFrameMessengerClient/IFrameMessengerClient.js +13 -0
  253. package/dist/hooks/useIFrameMessengerClient/IFrameMessengerClient.js.map +1 -0
  254. package/dist/hooks/useIFrameMessengerClient/iFrameMessengerClientContext.d.ts +13 -0
  255. package/dist/{components/RecordEdition/EditRecord/creationErrorContext.js → hooks/useIFrameMessengerClient/iFrameMessengerClientContext.js} +2 -3
  256. package/dist/hooks/useIFrameMessengerClient/iFrameMessengerClientContext.js.map +1 -0
  257. package/dist/hooks/useIFrameMessengerClient/useIFrameMessengerClient.d.ts +13 -0
  258. package/dist/hooks/useIFrameMessengerClient/useIFrameMessengerClient.js +13 -0
  259. package/dist/hooks/useIFrameMessengerClient/useIFrameMessengerClient.js.map +1 -0
  260. package/dist/hooks/useRedirectToLogin/useRedirectToLogin.js +1 -1
  261. package/dist/hooks/useRedirectToLogin/useRedirectToLogin.js.map +1 -1
  262. package/dist/locales/en/shared.json +11 -2
  263. package/dist/locales/fr/shared.json +10 -1
  264. package/dist/types/attributes.d.ts +2 -1
  265. package/package.json +23 -8
  266. package/dist/components/Explorer/actions-item/useRemoveItemAction.js.map +0 -1
  267. package/dist/components/Explorer/manage-view-settings/filter-items/filter-type/FilterValueList.d.ts +0 -10
  268. package/dist/components/Explorer/manage-view-settings/filter-items/filter-type/FilterValueList.js +0 -75
  269. package/dist/components/Explorer/manage-view-settings/filter-items/filter-type/FilterValueList.js.map +0 -1
  270. package/dist/components/RecordEdition/EditRecord/creationErrorContext.d.ts +0 -6
  271. package/dist/components/RecordEdition/EditRecord/creationErrorContext.js.map +0 -1
  272. package/dist/components/RecordEdition/EditRecordContent/hooks/useCreateRecordMutation.d.ts +0 -5
  273. package/dist/components/RecordEdition/EditRecordContent/hooks/useCreateRecordMutation.js +0 -28
  274. package/dist/components/RecordEdition/EditRecordContent/hooks/useCreateRecordMutation.js.map +0 -1
  275. package/dist/components/RecordEdition/EditRecordContent/hooks/useRunActionsListAndFormatOnValue.d.ts +0 -121
  276. package/dist/components/RecordEdition/EditRecordContent/hooks/useRunActionsListAndFormatOnValue.js +0 -31
  277. package/dist/components/RecordEdition/EditRecordContent/hooks/useRunActionsListAndFormatOnValue.js.map +0 -1
  278. package/dist/components/RecordEdition/EditRecordContent/uiElements/LinkField/action-item/useEditRecord.d.ts +0 -5
  279. package/dist/components/RecordEdition/EditRecordContent/uiElements/LinkField/action-item/useEditRecord.js +0 -39
  280. package/dist/components/RecordEdition/EditRecordContent/uiElements/LinkField/action-item/useEditRecord.js.map +0 -1
  281. package/dist/components/RecordEdition/EditRecordContent/uiElements/LinkField/action-item/useUnselectRecord.d.ts +0 -8
  282. package/dist/components/RecordEdition/EditRecordContent/uiElements/LinkField/action-item/useUnselectRecord.js +0 -23
  283. package/dist/components/RecordEdition/EditRecordContent/uiElements/LinkField/action-item/useUnselectRecord.js.map +0 -1
  284. package/dist/components/RecordEdition/EditRecordContent/uiElements/LinkField/action-mass/useUnselectAllRecords.d.ts +0 -9
  285. package/dist/components/RecordEdition/EditRecordContent/uiElements/LinkField/action-mass/useUnselectAllRecords.js +0 -23
  286. package/dist/components/RecordEdition/EditRecordContent/uiElements/LinkField/action-mass/useUnselectAllRecords.js.map +0 -1
  287. package/dist/components/RecordEdition/EditRecordContent/uiElements/LinkField/action-primary/useCreateRecord.d.ts +0 -8
  288. package/dist/components/RecordEdition/EditRecordContent/uiElements/LinkField/action-primary/useCreateRecord.js +0 -26
  289. package/dist/components/RecordEdition/EditRecordContent/uiElements/LinkField/action-primary/useCreateRecord.js.map +0 -1
  290. package/dist/components/RecordEdition/EditRecordContent/uiElements/LinkField/action-primary/useRecordSelector.d.ts +0 -12
  291. package/dist/components/RecordEdition/EditRecordContent/uiElements/LinkField/action-primary/useRecordSelector.js +0 -24
  292. package/dist/components/RecordEdition/EditRecordContent/uiElements/LinkField/action-primary/useRecordSelector.js.map +0 -1
  293. package/dist/components/RecordEdition/EditRecordContent/uiElements/LinkField/link-record-in-creation/useLinkRecords.d.ts +0 -19
  294. package/dist/components/RecordEdition/EditRecordContent/uiElements/LinkField/link-record-in-creation/useLinkRecords.js +0 -103
  295. package/dist/components/RecordEdition/EditRecordContent/uiElements/LinkField/link-record-in-creation/useLinkRecords.js.map +0 -1
  296. package/dist/components/RecordEdition/EditRecordContent/uiElements/LinkField/link-record-in-creation/useLinkRecordsInCreation.d.ts +0 -22
  297. package/dist/components/RecordEdition/EditRecordContent/uiElements/LinkField/link-record-in-creation/useLinkRecordsInCreation.js +0 -104
  298. package/dist/components/RecordEdition/EditRecordContent/uiElements/LinkField/link-record-in-creation/useLinkRecordsInCreation.js.map +0 -1
  299. package/dist/components/RecordEdition/EditRecordContent/uiElements/LinkField/link-record-in-edition/useLinkRecords.js.map +0 -1
  300. package/dist/components/RecordEdition/EditRecordContent/uiElements/LinkField/link-record-in-edition/useLinkRecordsInEdition.d.ts +0 -26
  301. package/dist/components/RecordEdition/EditRecordContent/uiElements/LinkField/link-record-in-edition/useLinkRecordsInEdition.js.map +0 -1
  302. package/dist/components/RecordEdition/EditRecordContent/uiElements/LinkField/shared/LinkActionsButtons.d.ts +0 -9
  303. package/dist/components/RecordEdition/EditRecordContent/uiElements/LinkField/shared/LinkActionsButtons.js +0 -15
  304. package/dist/components/RecordEdition/EditRecordContent/uiElements/LinkField/shared/LinkActionsButtons.js.map +0 -1
  305. package/dist/components/RecordEdition/EditRecordContent/uiElements/LinkField/shared/utils.d.ts +0 -4
  306. package/dist/components/RecordEdition/EditRecordContent/uiElements/LinkField/shared/utils.js +0 -22
  307. package/dist/components/RecordEdition/EditRecordContent/uiElements/LinkField/shared/utils.js.map +0 -1
  308. package/dist/components/RecordEdition/EditRecordContent/uiElements/StandardField/StandardFieldValue/ValuesList/ValuesList.d.ts +0 -16
  309. package/dist/components/RecordEdition/EditRecordContent/uiElements/StandardField/StandardFieldValue/ValuesList/ValuesList.js +0 -35
  310. package/dist/components/RecordEdition/EditRecordContent/uiElements/StandardField/StandardFieldValue/ValuesList/ValuesList.js.map +0 -1
  311. package/dist/components/RecordEdition/EditRecordContent/uiElements/StandardField/StandardFieldValue/ValuesList/index.d.ts +0 -2
  312. package/dist/components/RecordEdition/EditRecordContent/uiElements/StandardField/StandardFieldValue/ValuesList/index.js.map +0 -1
  313. package/dist/components/RecordEdition/EditRecordContent/uiElements/TreeField/display-tree-node/useDisplayTreeNode.js +0 -8
  314. package/dist/components/RecordEdition/EditRecordContent/uiElements/TreeField/display-tree-node/useDisplayTreeNode.js.map +0 -1
  315. package/dist/components/SelectTreeNodeModal/SelectTreeNodeModal.js.map +0 -1
  316. package/dist/components/SelectTreeNodeModal/index.d.ts +0 -1
  317. package/dist/components/SelectTreeNodeModal/index.js.map +0 -1
@@ -136,11 +136,13 @@ export type AttributeInput = {
136
136
  linked_library?: InputMaybe<Scalars['String']>;
137
137
  linked_tree?: InputMaybe<Scalars['String']>;
138
138
  metadata_fields?: InputMaybe<Array<Scalars['String']>>;
139
+ multi_link_display_option?: InputMaybe<MultiLinkDisplayOption>;
139
140
  multiple_values?: InputMaybe<Scalars['Boolean']>;
140
141
  permissions_conf?: InputMaybe<TreepermissionsConfInput>;
141
142
  readonly?: InputMaybe<Scalars['Boolean']>;
142
143
  required?: InputMaybe<Scalars['Boolean']>;
143
144
  reverse_link?: InputMaybe<Scalars['String']>;
145
+ settings?: InputMaybe<Scalars['JSONObject']>;
144
146
  type?: InputMaybe<AttributeType>;
145
147
  unique?: InputMaybe<Scalars['Boolean']>;
146
148
  values_list?: InputMaybe<ValuesListConfInput>;
@@ -181,6 +183,11 @@ export declare enum AvailableLanguage {
181
183
  en = "en",
182
184
  fr = "fr"
183
185
  }
186
+ export type ChildrenAsRecordValuePermissionFilterInput = {
187
+ action: RecordPermissionsActions;
188
+ attributeId: Scalars['ID'];
189
+ libraryId: Scalars['ID'];
190
+ };
184
191
  export type CreateRecordDataInput = {
185
192
  values?: InputMaybe<Array<ValueBatchInput>>;
186
193
  version?: InputMaybe<Array<ValueVersionInput>>;
@@ -246,6 +253,11 @@ export type FormInput = {
246
253
  id: Scalars['ID'];
247
254
  label?: InputMaybe<Scalars['SystemTranslation']>;
248
255
  library: Scalars['ID'];
256
+ sidePanel?: InputMaybe<FormSidePanelInput>;
257
+ };
258
+ export type FormSidePanelInput = {
259
+ enable: Scalars['Boolean'];
260
+ isOpenByDefault: Scalars['Boolean'];
249
261
  };
250
262
  export declare enum FormsSortableFields {
251
263
  id = "id",
@@ -261,6 +273,7 @@ export type GlobalSettingsInput = {
261
273
  favicon?: InputMaybe<GlobalSettingsFileInput>;
262
274
  icon?: InputMaybe<GlobalSettingsFileInput>;
263
275
  name?: InputMaybe<Scalars['String']>;
276
+ settings?: InputMaybe<Scalars['JSONObject']>;
264
277
  };
265
278
  export declare enum IoTypes {
266
279
  boolean = "boolean",
@@ -292,6 +305,7 @@ export declare enum LibrariesSortableFields {
292
305
  export declare enum LibraryBehavior {
293
306
  directories = "directories",
294
307
  files = "files",
308
+ join = "join",
295
309
  standard = "standard"
296
310
  }
297
311
  export type LibraryIconInput = {
@@ -306,9 +320,11 @@ export type LibraryInput = {
306
320
  icon?: InputMaybe<LibraryIconInput>;
307
321
  id: Scalars['ID'];
308
322
  label?: InputMaybe<Scalars['SystemTranslation']>;
323
+ mandatoryAttribute?: InputMaybe<Scalars['ID']>;
309
324
  permissions_conf?: InputMaybe<TreepermissionsConfInput>;
310
325
  previewsSettings?: InputMaybe<Array<LibraryPreviewsSettingsInput>>;
311
326
  recordIdentityConf?: InputMaybe<RecordIdentityConfInput>;
327
+ settings?: InputMaybe<Scalars['JSONObject']>;
312
328
  };
313
329
  export type LibraryPreviewsSettingsInput = {
314
330
  description?: InputMaybe<Scalars['SystemTranslationOptional']>;
@@ -389,6 +405,11 @@ export type LogTopicRecordFilterInput = {
389
405
  id?: InputMaybe<Scalars['String']>;
390
406
  libraryId?: InputMaybe<Scalars['String']>;
391
407
  };
408
+ export declare enum MultiLinkDisplayOption {
409
+ avatar = "avatar",
410
+ badge_qty = "badge_qty",
411
+ tag = "tag"
412
+ }
392
413
  export type Pagination = {
393
414
  limit: Scalars['Int'];
394
415
  offset: Scalars['Int'];
@@ -431,6 +452,7 @@ export declare enum PermissionsActions {
431
452
  admin_access_applications = "admin_access_applications",
432
453
  admin_access_attributes = "admin_access_attributes",
433
454
  admin_access_libraries = "admin_access_libraries",
455
+ admin_access_logs = "admin_access_logs",
434
456
  admin_access_permissions = "admin_access_permissions",
435
457
  admin_access_tasks = "admin_access_tasks",
436
458
  admin_access_trees = "admin_access_trees",
@@ -458,6 +480,7 @@ export declare enum PermissionsActions {
458
480
  admin_edit_permission = "admin_edit_permission",
459
481
  admin_edit_tree = "admin_edit_tree",
460
482
  admin_edit_version_profile = "admin_edit_version_profile",
483
+ admin_import_config_clear_database = "admin_import_config_clear_database",
461
484
  admin_library = "admin_library",
462
485
  admin_manage_global_preferences = "admin_manage_global_preferences",
463
486
  create_record = "create_record",
@@ -537,6 +560,12 @@ export type RecordInput = {
537
560
  id: Scalars['ID'];
538
561
  library: Scalars['String'];
539
562
  };
563
+ export declare enum RecordPermissionsActions {
564
+ access_record = "access_record",
565
+ create_record = "create_record",
566
+ delete_record = "delete_record",
567
+ edit_record = "edit_record"
568
+ }
540
569
  export type RecordSortInput = {
541
570
  field: Scalars['String'];
542
571
  order: SortOrder;
@@ -640,6 +669,7 @@ export type TreeInput = {
640
669
  label?: InputMaybe<Scalars['SystemTranslation']>;
641
670
  libraries?: InputMaybe<Array<TreeLibraryInput>>;
642
671
  permissions_conf?: InputMaybe<Array<TreeNodePermissionsConfInput>>;
672
+ settings?: InputMaybe<Scalars['JSONObject']>;
643
673
  };
644
674
  export type TreeLibraryInput = {
645
675
  library: Scalars['ID'];
@@ -681,11 +711,13 @@ export type ValueBatchInput = {
681
711
  attribute?: InputMaybe<Scalars['ID']>;
682
712
  id_value?: InputMaybe<Scalars['ID']>;
683
713
  metadata?: InputMaybe<Array<InputMaybe<ValueMetadataInput>>>;
714
+ /** Use "\__empty_value__" to set an empty value */
684
715
  payload?: InputMaybe<Scalars['String']>;
685
716
  };
686
717
  export type ValueInput = {
687
718
  id_value?: InputMaybe<Scalars['ID']>;
688
719
  metadata?: InputMaybe<Array<InputMaybe<ValueMetadataInput>>>;
720
+ /** Use "\__empty_value__" to set an empty value */
689
721
  payload?: InputMaybe<Scalars['String']>;
690
722
  version?: InputMaybe<Array<InputMaybe<ValueVersionInput>>>;
691
723
  };
@@ -823,6 +855,7 @@ export type AttributeDetailsLinkAttributeFragment = {
823
855
  label?: any | null;
824
856
  description?: any | null;
825
857
  multiple_values: boolean;
858
+ multi_link_display_option?: MultiLinkDisplayOption | null;
826
859
  linked_library?: {
827
860
  id: string;
828
861
  label?: any | null;
@@ -860,6 +893,7 @@ export type AttributeDetailsStandardAttributeFragment = {
860
893
  label?: any | null;
861
894
  description?: any | null;
862
895
  multiple_values: boolean;
896
+ multi_link_display_option?: MultiLinkDisplayOption | null;
863
897
  metadata_fields?: Array<{
864
898
  id: string;
865
899
  label?: any | null;
@@ -892,6 +926,7 @@ export type AttributeDetailsTreeAttributeFragment = {
892
926
  label?: any | null;
893
927
  description?: any | null;
894
928
  multiple_values: boolean;
929
+ multi_link_display_option?: MultiLinkDisplayOption | null;
895
930
  linked_tree?: {
896
931
  id: string;
897
932
  label?: any | null;
@@ -1750,6 +1785,261 @@ export type RecordFormElementFragment = {
1750
1785
  key: string;
1751
1786
  value: any;
1752
1787
  }>;
1788
+ joinLibraryContext?: {
1789
+ mandatoryAttribute: {
1790
+ id: string;
1791
+ label?: any | null;
1792
+ description?: any | null;
1793
+ type: AttributeType;
1794
+ format?: AttributeFormat | null;
1795
+ system: boolean;
1796
+ readonly: boolean;
1797
+ required: boolean;
1798
+ multiple_values: boolean;
1799
+ compute: boolean;
1800
+ linked_library?: {
1801
+ id: string;
1802
+ label?: any | null;
1803
+ behavior: LibraryBehavior;
1804
+ permissions?: {
1805
+ create_record: boolean;
1806
+ } | null;
1807
+ } | null;
1808
+ linkValuesList?: {
1809
+ enable: boolean;
1810
+ allowFreeEntry?: boolean | null;
1811
+ allowListUpdate?: boolean | null;
1812
+ values?: Array<{
1813
+ id: string;
1814
+ whoAmI: {
1815
+ id: string;
1816
+ label?: string | null;
1817
+ subLabel?: string | null;
1818
+ color?: string | null;
1819
+ preview?: IPreviewScalar | null;
1820
+ library: {
1821
+ id: string;
1822
+ label?: any | null;
1823
+ };
1824
+ };
1825
+ }> | null;
1826
+ } | null;
1827
+ permissions: {
1828
+ access_attribute: boolean;
1829
+ edit_value: boolean;
1830
+ };
1831
+ versions_conf?: {
1832
+ versionable: boolean;
1833
+ profile?: {
1834
+ id: string;
1835
+ trees: Array<{
1836
+ id: string;
1837
+ label?: any | null;
1838
+ }>;
1839
+ } | null;
1840
+ } | null;
1841
+ metadata_fields?: Array<{
1842
+ id: string;
1843
+ label?: any | null;
1844
+ description?: any | null;
1845
+ type: AttributeType;
1846
+ format?: AttributeFormat | null;
1847
+ system: boolean;
1848
+ readonly: boolean;
1849
+ multiple_values: boolean;
1850
+ permissions: {
1851
+ access_attribute: boolean;
1852
+ edit_value: boolean;
1853
+ };
1854
+ values_list?: {
1855
+ enable: boolean;
1856
+ allowFreeEntry?: boolean | null;
1857
+ allowListUpdate?: boolean | null;
1858
+ dateRangeValues?: Array<{
1859
+ from?: string | null;
1860
+ to?: string | null;
1861
+ }> | null;
1862
+ } | {
1863
+ enable: boolean;
1864
+ allowFreeEntry?: boolean | null;
1865
+ allowListUpdate?: boolean | null;
1866
+ values?: Array<string> | null;
1867
+ } | null;
1868
+ metadata_fields?: Array<{
1869
+ id: string;
1870
+ }> | null;
1871
+ }> | null;
1872
+ } | {
1873
+ character_limit?: number | null;
1874
+ id: string;
1875
+ label?: any | null;
1876
+ description?: any | null;
1877
+ type: AttributeType;
1878
+ format?: AttributeFormat | null;
1879
+ system: boolean;
1880
+ readonly: boolean;
1881
+ required: boolean;
1882
+ multiple_values: boolean;
1883
+ compute: boolean;
1884
+ values_list?: {
1885
+ enable: boolean;
1886
+ allowFreeEntry?: boolean | null;
1887
+ allowListUpdate?: boolean | null;
1888
+ dateRangeValues?: Array<{
1889
+ from?: string | null;
1890
+ to?: string | null;
1891
+ }> | null;
1892
+ } | {
1893
+ enable: boolean;
1894
+ allowFreeEntry?: boolean | null;
1895
+ allowListUpdate?: boolean | null;
1896
+ values?: Array<string> | null;
1897
+ } | null;
1898
+ permissions: {
1899
+ access_attribute: boolean;
1900
+ edit_value: boolean;
1901
+ };
1902
+ versions_conf?: {
1903
+ versionable: boolean;
1904
+ profile?: {
1905
+ id: string;
1906
+ trees: Array<{
1907
+ id: string;
1908
+ label?: any | null;
1909
+ }>;
1910
+ } | null;
1911
+ } | null;
1912
+ metadata_fields?: Array<{
1913
+ id: string;
1914
+ label?: any | null;
1915
+ description?: any | null;
1916
+ type: AttributeType;
1917
+ format?: AttributeFormat | null;
1918
+ system: boolean;
1919
+ readonly: boolean;
1920
+ multiple_values: boolean;
1921
+ permissions: {
1922
+ access_attribute: boolean;
1923
+ edit_value: boolean;
1924
+ };
1925
+ values_list?: {
1926
+ enable: boolean;
1927
+ allowFreeEntry?: boolean | null;
1928
+ allowListUpdate?: boolean | null;
1929
+ dateRangeValues?: Array<{
1930
+ from?: string | null;
1931
+ to?: string | null;
1932
+ }> | null;
1933
+ } | {
1934
+ enable: boolean;
1935
+ allowFreeEntry?: boolean | null;
1936
+ allowListUpdate?: boolean | null;
1937
+ values?: Array<string> | null;
1938
+ } | null;
1939
+ metadata_fields?: Array<{
1940
+ id: string;
1941
+ }> | null;
1942
+ }> | null;
1943
+ } | {
1944
+ id: string;
1945
+ label?: any | null;
1946
+ description?: any | null;
1947
+ type: AttributeType;
1948
+ format?: AttributeFormat | null;
1949
+ system: boolean;
1950
+ readonly: boolean;
1951
+ required: boolean;
1952
+ multiple_values: boolean;
1953
+ compute: boolean;
1954
+ linked_tree?: {
1955
+ id: string;
1956
+ label?: any | null;
1957
+ } | null;
1958
+ treeValuesList?: {
1959
+ enable: boolean;
1960
+ allowFreeEntry?: boolean | null;
1961
+ allowListUpdate?: boolean | null;
1962
+ values?: Array<{
1963
+ id: string;
1964
+ record: {
1965
+ id: string;
1966
+ whoAmI: {
1967
+ id: string;
1968
+ label?: string | null;
1969
+ subLabel?: string | null;
1970
+ color?: string | null;
1971
+ preview?: IPreviewScalar | null;
1972
+ library: {
1973
+ id: string;
1974
+ label?: any | null;
1975
+ };
1976
+ };
1977
+ };
1978
+ ancestors?: Array<{
1979
+ record: {
1980
+ id: string;
1981
+ whoAmI: {
1982
+ id: string;
1983
+ label?: string | null;
1984
+ subLabel?: string | null;
1985
+ color?: string | null;
1986
+ preview?: IPreviewScalar | null;
1987
+ library: {
1988
+ id: string;
1989
+ label?: any | null;
1990
+ };
1991
+ };
1992
+ };
1993
+ }> | null;
1994
+ }> | null;
1995
+ } | null;
1996
+ permissions: {
1997
+ access_attribute: boolean;
1998
+ edit_value: boolean;
1999
+ };
2000
+ versions_conf?: {
2001
+ versionable: boolean;
2002
+ profile?: {
2003
+ id: string;
2004
+ trees: Array<{
2005
+ id: string;
2006
+ label?: any | null;
2007
+ }>;
2008
+ } | null;
2009
+ } | null;
2010
+ metadata_fields?: Array<{
2011
+ id: string;
2012
+ label?: any | null;
2013
+ description?: any | null;
2014
+ type: AttributeType;
2015
+ format?: AttributeFormat | null;
2016
+ system: boolean;
2017
+ readonly: boolean;
2018
+ multiple_values: boolean;
2019
+ permissions: {
2020
+ access_attribute: boolean;
2021
+ edit_value: boolean;
2022
+ };
2023
+ values_list?: {
2024
+ enable: boolean;
2025
+ allowFreeEntry?: boolean | null;
2026
+ allowListUpdate?: boolean | null;
2027
+ dateRangeValues?: Array<{
2028
+ from?: string | null;
2029
+ to?: string | null;
2030
+ }> | null;
2031
+ } | {
2032
+ enable: boolean;
2033
+ allowFreeEntry?: boolean | null;
2034
+ allowListUpdate?: boolean | null;
2035
+ values?: Array<string> | null;
2036
+ } | null;
2037
+ metadata_fields?: Array<{
2038
+ id: string;
2039
+ }> | null;
2040
+ }> | null;
2041
+ };
2042
+ } | null;
1753
2043
  };
1754
2044
  export type ValueDetailsLinkValueFragment = {
1755
2045
  id_value?: string | null;
@@ -2424,9 +2714,264 @@ export type StandardValuesListFragmentStandardStringValuesListConfFragment = {
2424
2714
  values?: Array<string> | null;
2425
2715
  };
2426
2716
  export type StandardValuesListFragmentFragment = StandardValuesListFragmentStandardDateRangeValuesListConfFragment | StandardValuesListFragmentStandardStringValuesListConfFragment;
2427
- export type TreeDetailsFragment = {
2428
- id: string;
2429
- label?: any | null;
2717
+ export type JoinLibraryContextFragment = {
2718
+ mandatoryAttribute: {
2719
+ id: string;
2720
+ label?: any | null;
2721
+ description?: any | null;
2722
+ type: AttributeType;
2723
+ format?: AttributeFormat | null;
2724
+ system: boolean;
2725
+ readonly: boolean;
2726
+ required: boolean;
2727
+ multiple_values: boolean;
2728
+ compute: boolean;
2729
+ linked_library?: {
2730
+ id: string;
2731
+ label?: any | null;
2732
+ behavior: LibraryBehavior;
2733
+ permissions?: {
2734
+ create_record: boolean;
2735
+ } | null;
2736
+ } | null;
2737
+ linkValuesList?: {
2738
+ enable: boolean;
2739
+ allowFreeEntry?: boolean | null;
2740
+ allowListUpdate?: boolean | null;
2741
+ values?: Array<{
2742
+ id: string;
2743
+ whoAmI: {
2744
+ id: string;
2745
+ label?: string | null;
2746
+ subLabel?: string | null;
2747
+ color?: string | null;
2748
+ preview?: IPreviewScalar | null;
2749
+ library: {
2750
+ id: string;
2751
+ label?: any | null;
2752
+ };
2753
+ };
2754
+ }> | null;
2755
+ } | null;
2756
+ permissions: {
2757
+ access_attribute: boolean;
2758
+ edit_value: boolean;
2759
+ };
2760
+ versions_conf?: {
2761
+ versionable: boolean;
2762
+ profile?: {
2763
+ id: string;
2764
+ trees: Array<{
2765
+ id: string;
2766
+ label?: any | null;
2767
+ }>;
2768
+ } | null;
2769
+ } | null;
2770
+ metadata_fields?: Array<{
2771
+ id: string;
2772
+ label?: any | null;
2773
+ description?: any | null;
2774
+ type: AttributeType;
2775
+ format?: AttributeFormat | null;
2776
+ system: boolean;
2777
+ readonly: boolean;
2778
+ multiple_values: boolean;
2779
+ permissions: {
2780
+ access_attribute: boolean;
2781
+ edit_value: boolean;
2782
+ };
2783
+ values_list?: {
2784
+ enable: boolean;
2785
+ allowFreeEntry?: boolean | null;
2786
+ allowListUpdate?: boolean | null;
2787
+ dateRangeValues?: Array<{
2788
+ from?: string | null;
2789
+ to?: string | null;
2790
+ }> | null;
2791
+ } | {
2792
+ enable: boolean;
2793
+ allowFreeEntry?: boolean | null;
2794
+ allowListUpdate?: boolean | null;
2795
+ values?: Array<string> | null;
2796
+ } | null;
2797
+ metadata_fields?: Array<{
2798
+ id: string;
2799
+ }> | null;
2800
+ }> | null;
2801
+ } | {
2802
+ character_limit?: number | null;
2803
+ id: string;
2804
+ label?: any | null;
2805
+ description?: any | null;
2806
+ type: AttributeType;
2807
+ format?: AttributeFormat | null;
2808
+ system: boolean;
2809
+ readonly: boolean;
2810
+ required: boolean;
2811
+ multiple_values: boolean;
2812
+ compute: boolean;
2813
+ values_list?: {
2814
+ enable: boolean;
2815
+ allowFreeEntry?: boolean | null;
2816
+ allowListUpdate?: boolean | null;
2817
+ dateRangeValues?: Array<{
2818
+ from?: string | null;
2819
+ to?: string | null;
2820
+ }> | null;
2821
+ } | {
2822
+ enable: boolean;
2823
+ allowFreeEntry?: boolean | null;
2824
+ allowListUpdate?: boolean | null;
2825
+ values?: Array<string> | null;
2826
+ } | null;
2827
+ permissions: {
2828
+ access_attribute: boolean;
2829
+ edit_value: boolean;
2830
+ };
2831
+ versions_conf?: {
2832
+ versionable: boolean;
2833
+ profile?: {
2834
+ id: string;
2835
+ trees: Array<{
2836
+ id: string;
2837
+ label?: any | null;
2838
+ }>;
2839
+ } | null;
2840
+ } | null;
2841
+ metadata_fields?: Array<{
2842
+ id: string;
2843
+ label?: any | null;
2844
+ description?: any | null;
2845
+ type: AttributeType;
2846
+ format?: AttributeFormat | null;
2847
+ system: boolean;
2848
+ readonly: boolean;
2849
+ multiple_values: boolean;
2850
+ permissions: {
2851
+ access_attribute: boolean;
2852
+ edit_value: boolean;
2853
+ };
2854
+ values_list?: {
2855
+ enable: boolean;
2856
+ allowFreeEntry?: boolean | null;
2857
+ allowListUpdate?: boolean | null;
2858
+ dateRangeValues?: Array<{
2859
+ from?: string | null;
2860
+ to?: string | null;
2861
+ }> | null;
2862
+ } | {
2863
+ enable: boolean;
2864
+ allowFreeEntry?: boolean | null;
2865
+ allowListUpdate?: boolean | null;
2866
+ values?: Array<string> | null;
2867
+ } | null;
2868
+ metadata_fields?: Array<{
2869
+ id: string;
2870
+ }> | null;
2871
+ }> | null;
2872
+ } | {
2873
+ id: string;
2874
+ label?: any | null;
2875
+ description?: any | null;
2876
+ type: AttributeType;
2877
+ format?: AttributeFormat | null;
2878
+ system: boolean;
2879
+ readonly: boolean;
2880
+ required: boolean;
2881
+ multiple_values: boolean;
2882
+ compute: boolean;
2883
+ linked_tree?: {
2884
+ id: string;
2885
+ label?: any | null;
2886
+ } | null;
2887
+ treeValuesList?: {
2888
+ enable: boolean;
2889
+ allowFreeEntry?: boolean | null;
2890
+ allowListUpdate?: boolean | null;
2891
+ values?: Array<{
2892
+ id: string;
2893
+ record: {
2894
+ id: string;
2895
+ whoAmI: {
2896
+ id: string;
2897
+ label?: string | null;
2898
+ subLabel?: string | null;
2899
+ color?: string | null;
2900
+ preview?: IPreviewScalar | null;
2901
+ library: {
2902
+ id: string;
2903
+ label?: any | null;
2904
+ };
2905
+ };
2906
+ };
2907
+ ancestors?: Array<{
2908
+ record: {
2909
+ id: string;
2910
+ whoAmI: {
2911
+ id: string;
2912
+ label?: string | null;
2913
+ subLabel?: string | null;
2914
+ color?: string | null;
2915
+ preview?: IPreviewScalar | null;
2916
+ library: {
2917
+ id: string;
2918
+ label?: any | null;
2919
+ };
2920
+ };
2921
+ };
2922
+ }> | null;
2923
+ }> | null;
2924
+ } | null;
2925
+ permissions: {
2926
+ access_attribute: boolean;
2927
+ edit_value: boolean;
2928
+ };
2929
+ versions_conf?: {
2930
+ versionable: boolean;
2931
+ profile?: {
2932
+ id: string;
2933
+ trees: Array<{
2934
+ id: string;
2935
+ label?: any | null;
2936
+ }>;
2937
+ } | null;
2938
+ } | null;
2939
+ metadata_fields?: Array<{
2940
+ id: string;
2941
+ label?: any | null;
2942
+ description?: any | null;
2943
+ type: AttributeType;
2944
+ format?: AttributeFormat | null;
2945
+ system: boolean;
2946
+ readonly: boolean;
2947
+ multiple_values: boolean;
2948
+ permissions: {
2949
+ access_attribute: boolean;
2950
+ edit_value: boolean;
2951
+ };
2952
+ values_list?: {
2953
+ enable: boolean;
2954
+ allowFreeEntry?: boolean | null;
2955
+ allowListUpdate?: boolean | null;
2956
+ dateRangeValues?: Array<{
2957
+ from?: string | null;
2958
+ to?: string | null;
2959
+ }> | null;
2960
+ } | {
2961
+ enable: boolean;
2962
+ allowFreeEntry?: boolean | null;
2963
+ allowListUpdate?: boolean | null;
2964
+ values?: Array<string> | null;
2965
+ } | null;
2966
+ metadata_fields?: Array<{
2967
+ id: string;
2968
+ }> | null;
2969
+ }> | null;
2970
+ };
2971
+ };
2972
+ export type TreeDetailsFragment = {
2973
+ id: string;
2974
+ label?: any | null;
2430
2975
  behavior: TreeBehavior;
2431
2976
  system: boolean;
2432
2977
  libraries: Array<{
@@ -2572,6 +3117,25 @@ export type AttributesByLibAttributeWithPermissionsLinkAttributeFragment = {
2572
3117
  permissions: {
2573
3118
  access_attribute: boolean;
2574
3119
  };
3120
+ valuesList?: {
3121
+ enable: boolean;
3122
+ allowFreeEntry?: boolean | null;
3123
+ allowListUpdate?: boolean | null;
3124
+ linkedValues?: Array<{
3125
+ id: string;
3126
+ whoAmI: {
3127
+ id: string;
3128
+ label?: string | null;
3129
+ subLabel?: string | null;
3130
+ color?: string | null;
3131
+ preview?: IPreviewScalar | null;
3132
+ library: {
3133
+ id: string;
3134
+ label?: any | null;
3135
+ };
3136
+ };
3137
+ }> | null;
3138
+ } | null;
2575
3139
  linked_library?: {
2576
3140
  id: string;
2577
3141
  } | null;
@@ -2589,6 +3153,20 @@ export type AttributesByLibAttributeWithPermissionsStandardAttributeFragment = {
2589
3153
  format?: AttributeFormat | null;
2590
3154
  label?: any | null;
2591
3155
  } | null> | null;
3156
+ valuesList?: {
3157
+ enable: boolean;
3158
+ allowFreeEntry?: boolean | null;
3159
+ allowListUpdate?: boolean | null;
3160
+ dateRangeValues?: Array<{
3161
+ from?: string | null;
3162
+ to?: string | null;
3163
+ }> | null;
3164
+ } | {
3165
+ enable: boolean;
3166
+ allowFreeEntry?: boolean | null;
3167
+ allowListUpdate?: boolean | null;
3168
+ values?: Array<string> | null;
3169
+ } | null;
2592
3170
  permissions: {
2593
3171
  access_attribute: boolean;
2594
3172
  };
@@ -2617,13 +3195,70 @@ export type AttributesByLibAttributeWithPermissionsTreeAttributeFragment = {
2617
3195
  };
2618
3196
  export type AttributesByLibAttributeWithPermissionsFragment = AttributesByLibAttributeWithPermissionsLinkAttributeFragment | AttributesByLibAttributeWithPermissionsStandardAttributeFragment | AttributesByLibAttributeWithPermissionsTreeAttributeFragment;
2619
3197
  export type AttributesByLibLinkAttributeWithPermissionsFragment = {
3198
+ valuesList?: {
3199
+ enable: boolean;
3200
+ allowFreeEntry?: boolean | null;
3201
+ allowListUpdate?: boolean | null;
3202
+ linkedValues?: Array<{
3203
+ id: string;
3204
+ whoAmI: {
3205
+ id: string;
3206
+ label?: string | null;
3207
+ subLabel?: string | null;
3208
+ color?: string | null;
3209
+ preview?: IPreviewScalar | null;
3210
+ library: {
3211
+ id: string;
3212
+ label?: any | null;
3213
+ };
3214
+ };
3215
+ }> | null;
3216
+ } | null;
3217
+ linked_library?: {
3218
+ id: string;
3219
+ } | null;
3220
+ };
3221
+ export type StandardAttributeDetailsFragment = {
3222
+ id: string;
3223
+ type: AttributeType;
3224
+ embedded_fields?: Array<{
3225
+ id: string;
3226
+ format?: AttributeFormat | null;
3227
+ label?: any | null;
3228
+ } | null> | null;
3229
+ valuesList?: {
3230
+ enable: boolean;
3231
+ allowFreeEntry?: boolean | null;
3232
+ allowListUpdate?: boolean | null;
3233
+ values?: Array<string> | null;
3234
+ } | null;
3235
+ };
3236
+ export type LinkAttributeDetailsFragment = {
3237
+ label?: any | null;
3238
+ type: AttributeType;
2620
3239
  linked_library?: {
2621
3240
  id: string;
3241
+ label?: any | null;
3242
+ } | null;
3243
+ valuesList?: {
3244
+ allowFreeEntry?: boolean | null;
3245
+ enable: boolean;
3246
+ linkedValues?: Array<{
3247
+ id: string;
3248
+ whoAmI: {
3249
+ id: string;
3250
+ label?: string | null;
3251
+ library: {
3252
+ id: string;
3253
+ };
3254
+ };
3255
+ }> | null;
2622
3256
  } | null;
2623
3257
  };
2624
- export type LinkAttributeDetailsFragment = {
3258
+ export type TreeAttributeDetailsFragment = {
3259
+ id: string;
2625
3260
  label?: any | null;
2626
- linked_library?: {
3261
+ linked_tree?: {
2627
3262
  id: string;
2628
3263
  label?: any | null;
2629
3264
  } | null;
@@ -2634,6 +3269,7 @@ export type AttributePropertiesFragment = {
2634
3269
  type: AttributeType;
2635
3270
  format?: AttributeFormat | null;
2636
3271
  multiple_values: boolean;
3272
+ multi_link_display_option?: MultiLinkDisplayOption | null;
2637
3273
  };
2638
3274
  export type PropertyValueLinkValueFragment = {
2639
3275
  linkPayload?: {
@@ -2686,6 +3322,7 @@ export type LinkPropertyLinkValueFragment = {
2686
3322
  type: AttributeType;
2687
3323
  format?: AttributeFormat | null;
2688
3324
  multiple_values: boolean;
3325
+ multi_link_display_option?: MultiLinkDisplayOption | null;
2689
3326
  };
2690
3327
  values: Array<{
2691
3328
  linkPayload?: {
@@ -2909,6 +3546,7 @@ export type GetAttributeByIdQuery = {
2909
3546
  label?: any | null;
2910
3547
  description?: any | null;
2911
3548
  multiple_values: boolean;
3549
+ multi_link_display_option?: MultiLinkDisplayOption | null;
2912
3550
  linked_library?: {
2913
3551
  id: string;
2914
3552
  label?: any | null;
@@ -2945,6 +3583,7 @@ export type GetAttributeByIdQuery = {
2945
3583
  label?: any | null;
2946
3584
  description?: any | null;
2947
3585
  multiple_values: boolean;
3586
+ multi_link_display_option?: MultiLinkDisplayOption | null;
2948
3587
  metadata_fields?: Array<{
2949
3588
  id: string;
2950
3589
  label?: any | null;
@@ -2976,6 +3615,7 @@ export type GetAttributeByIdQuery = {
2976
3615
  label?: any | null;
2977
3616
  description?: any | null;
2978
3617
  multiple_values: boolean;
3618
+ multi_link_display_option?: MultiLinkDisplayOption | null;
2979
3619
  linked_tree?: {
2980
3620
  id: string;
2981
3621
  label?: any | null;
@@ -3118,6 +3758,7 @@ export type SaveAttributeMutation = {
3118
3758
  label?: any | null;
3119
3759
  description?: any | null;
3120
3760
  multiple_values: boolean;
3761
+ multi_link_display_option?: MultiLinkDisplayOption | null;
3121
3762
  linked_library?: {
3122
3763
  id: string;
3123
3764
  label?: any | null;
@@ -3154,6 +3795,7 @@ export type SaveAttributeMutation = {
3154
3795
  label?: any | null;
3155
3796
  description?: any | null;
3156
3797
  multiple_values: boolean;
3798
+ multi_link_display_option?: MultiLinkDisplayOption | null;
3157
3799
  metadata_fields?: Array<{
3158
3800
  id: string;
3159
3801
  label?: any | null;
@@ -3185,6 +3827,7 @@ export type SaveAttributeMutation = {
3185
3827
  label?: any | null;
3186
3828
  description?: any | null;
3187
3829
  multiple_values: boolean;
3830
+ multi_link_display_option?: MultiLinkDisplayOption | null;
3188
3831
  linked_tree?: {
3189
3832
  id: string;
3190
3833
  label?: any | null;
@@ -3638,6 +4281,83 @@ export type IsAllowedQuery = {
3638
4281
  allowed?: boolean | null;
3639
4282
  }> | null;
3640
4283
  };
4284
+ export type ActivateNewRecordMutationVariables = Exact<{
4285
+ libraryId: Scalars['ID'];
4286
+ recordId: Scalars['ID'];
4287
+ formId?: InputMaybe<Scalars['String']>;
4288
+ }>;
4289
+ export type ActivateNewRecordMutation = {
4290
+ activateNewRecord: {
4291
+ record?: {
4292
+ id: string;
4293
+ whoAmI: {
4294
+ id: string;
4295
+ label?: string | null;
4296
+ subLabel?: string | null;
4297
+ color?: string | null;
4298
+ preview?: IPreviewScalar | null;
4299
+ library: {
4300
+ id: string;
4301
+ label?: any | null;
4302
+ };
4303
+ };
4304
+ } | null;
4305
+ valuesErrors?: Array<{
4306
+ type: string;
4307
+ attribute: string;
4308
+ input?: string | null;
4309
+ message: string;
4310
+ }> | null;
4311
+ };
4312
+ };
4313
+ export type ActivateRecordsMutationVariables = Exact<{
4314
+ libraryId: Scalars['String'];
4315
+ recordsIds?: InputMaybe<Array<Scalars['String']> | Scalars['String']>;
4316
+ filters?: InputMaybe<Array<RecordFilterInput> | RecordFilterInput>;
4317
+ }>;
4318
+ export type ActivateRecordsMutation = {
4319
+ activateRecords: Array<{
4320
+ id: string;
4321
+ whoAmI: {
4322
+ id: string;
4323
+ label?: string | null;
4324
+ subLabel?: string | null;
4325
+ color?: string | null;
4326
+ preview?: IPreviewScalar | null;
4327
+ library: {
4328
+ id: string;
4329
+ label?: any | null;
4330
+ };
4331
+ };
4332
+ }>;
4333
+ };
4334
+ export type CreateEmptyRecordMutationVariables = Exact<{
4335
+ library: Scalars['ID'];
4336
+ }>;
4337
+ export type CreateEmptyRecordMutation = {
4338
+ createEmptyRecord: {
4339
+ record?: {
4340
+ id: string;
4341
+ whoAmI: {
4342
+ id: string;
4343
+ label?: string | null;
4344
+ subLabel?: string | null;
4345
+ color?: string | null;
4346
+ preview?: IPreviewScalar | null;
4347
+ library: {
4348
+ id: string;
4349
+ label?: any | null;
4350
+ };
4351
+ };
4352
+ } | null;
4353
+ valuesErrors?: Array<{
4354
+ type: string;
4355
+ attribute: string;
4356
+ input?: string | null;
4357
+ message: string;
4358
+ }> | null;
4359
+ };
4360
+ };
3641
4361
  export type CreateRecordMutationVariables = Exact<{
3642
4362
  library: Scalars['ID'];
3643
4363
  data?: InputMaybe<CreateRecordDataInput>;
@@ -4392,44 +5112,303 @@ export type RecordFormQuery = {
4392
5112
  label?: any | null;
4393
5113
  }>;
4394
5114
  } | null;
4395
- } | null;
4396
- metadata_fields?: Array<{
4397
- id: string;
4398
- label?: any | null;
4399
- description?: any | null;
4400
- type: AttributeType;
4401
- format?: AttributeFormat | null;
4402
- system: boolean;
4403
- readonly: boolean;
4404
- multiple_values: boolean;
5115
+ } | null;
5116
+ metadata_fields?: Array<{
5117
+ id: string;
5118
+ label?: any | null;
5119
+ description?: any | null;
5120
+ type: AttributeType;
5121
+ format?: AttributeFormat | null;
5122
+ system: boolean;
5123
+ readonly: boolean;
5124
+ multiple_values: boolean;
5125
+ permissions: {
5126
+ access_attribute: boolean;
5127
+ edit_value: boolean;
5128
+ };
5129
+ values_list?: {
5130
+ enable: boolean;
5131
+ allowFreeEntry?: boolean | null;
5132
+ allowListUpdate?: boolean | null;
5133
+ dateRangeValues?: Array<{
5134
+ from?: string | null;
5135
+ to?: string | null;
5136
+ }> | null;
5137
+ } | {
5138
+ enable: boolean;
5139
+ allowFreeEntry?: boolean | null;
5140
+ allowListUpdate?: boolean | null;
5141
+ values?: Array<string> | null;
5142
+ } | null;
5143
+ metadata_fields?: Array<{
5144
+ id: string;
5145
+ }> | null;
5146
+ }> | null;
5147
+ } | null;
5148
+ settings: Array<{
5149
+ key: string;
5150
+ value: any;
5151
+ }>;
5152
+ joinLibraryContext?: {
5153
+ mandatoryAttribute: {
5154
+ id: string;
5155
+ label?: any | null;
5156
+ description?: any | null;
5157
+ type: AttributeType;
5158
+ format?: AttributeFormat | null;
5159
+ system: boolean;
5160
+ readonly: boolean;
5161
+ required: boolean;
5162
+ multiple_values: boolean;
5163
+ compute: boolean;
5164
+ linked_library?: {
5165
+ id: string;
5166
+ label?: any | null;
5167
+ behavior: LibraryBehavior;
5168
+ permissions?: {
5169
+ create_record: boolean;
5170
+ } | null;
5171
+ } | null;
5172
+ linkValuesList?: {
5173
+ enable: boolean;
5174
+ allowFreeEntry?: boolean | null;
5175
+ allowListUpdate?: boolean | null;
5176
+ values?: Array<{
5177
+ id: string;
5178
+ whoAmI: {
5179
+ id: string;
5180
+ label?: string | null;
5181
+ subLabel?: string | null;
5182
+ color?: string | null;
5183
+ preview?: IPreviewScalar | null;
5184
+ library: {
5185
+ id: string;
5186
+ label?: any | null;
5187
+ };
5188
+ };
5189
+ }> | null;
5190
+ } | null;
5191
+ permissions: {
5192
+ access_attribute: boolean;
5193
+ edit_value: boolean;
5194
+ };
5195
+ versions_conf?: {
5196
+ versionable: boolean;
5197
+ profile?: {
5198
+ id: string;
5199
+ trees: Array<{
5200
+ id: string;
5201
+ label?: any | null;
5202
+ }>;
5203
+ } | null;
5204
+ } | null;
5205
+ metadata_fields?: Array<{
5206
+ id: string;
5207
+ label?: any | null;
5208
+ description?: any | null;
5209
+ type: AttributeType;
5210
+ format?: AttributeFormat | null;
5211
+ system: boolean;
5212
+ readonly: boolean;
5213
+ multiple_values: boolean;
5214
+ permissions: {
5215
+ access_attribute: boolean;
5216
+ edit_value: boolean;
5217
+ };
5218
+ values_list?: {
5219
+ enable: boolean;
5220
+ allowFreeEntry?: boolean | null;
5221
+ allowListUpdate?: boolean | null;
5222
+ dateRangeValues?: Array<{
5223
+ from?: string | null;
5224
+ to?: string | null;
5225
+ }> | null;
5226
+ } | {
5227
+ enable: boolean;
5228
+ allowFreeEntry?: boolean | null;
5229
+ allowListUpdate?: boolean | null;
5230
+ values?: Array<string> | null;
5231
+ } | null;
5232
+ metadata_fields?: Array<{
5233
+ id: string;
5234
+ }> | null;
5235
+ }> | null;
5236
+ } | {
5237
+ character_limit?: number | null;
5238
+ id: string;
5239
+ label?: any | null;
5240
+ description?: any | null;
5241
+ type: AttributeType;
5242
+ format?: AttributeFormat | null;
5243
+ system: boolean;
5244
+ readonly: boolean;
5245
+ required: boolean;
5246
+ multiple_values: boolean;
5247
+ compute: boolean;
5248
+ values_list?: {
5249
+ enable: boolean;
5250
+ allowFreeEntry?: boolean | null;
5251
+ allowListUpdate?: boolean | null;
5252
+ dateRangeValues?: Array<{
5253
+ from?: string | null;
5254
+ to?: string | null;
5255
+ }> | null;
5256
+ } | {
5257
+ enable: boolean;
5258
+ allowFreeEntry?: boolean | null;
5259
+ allowListUpdate?: boolean | null;
5260
+ values?: Array<string> | null;
5261
+ } | null;
5262
+ permissions: {
5263
+ access_attribute: boolean;
5264
+ edit_value: boolean;
5265
+ };
5266
+ versions_conf?: {
5267
+ versionable: boolean;
5268
+ profile?: {
5269
+ id: string;
5270
+ trees: Array<{
5271
+ id: string;
5272
+ label?: any | null;
5273
+ }>;
5274
+ } | null;
5275
+ } | null;
5276
+ metadata_fields?: Array<{
5277
+ id: string;
5278
+ label?: any | null;
5279
+ description?: any | null;
5280
+ type: AttributeType;
5281
+ format?: AttributeFormat | null;
5282
+ system: boolean;
5283
+ readonly: boolean;
5284
+ multiple_values: boolean;
5285
+ permissions: {
5286
+ access_attribute: boolean;
5287
+ edit_value: boolean;
5288
+ };
5289
+ values_list?: {
5290
+ enable: boolean;
5291
+ allowFreeEntry?: boolean | null;
5292
+ allowListUpdate?: boolean | null;
5293
+ dateRangeValues?: Array<{
5294
+ from?: string | null;
5295
+ to?: string | null;
5296
+ }> | null;
5297
+ } | {
5298
+ enable: boolean;
5299
+ allowFreeEntry?: boolean | null;
5300
+ allowListUpdate?: boolean | null;
5301
+ values?: Array<string> | null;
5302
+ } | null;
5303
+ metadata_fields?: Array<{
5304
+ id: string;
5305
+ }> | null;
5306
+ }> | null;
5307
+ } | {
5308
+ id: string;
5309
+ label?: any | null;
5310
+ description?: any | null;
5311
+ type: AttributeType;
5312
+ format?: AttributeFormat | null;
5313
+ system: boolean;
5314
+ readonly: boolean;
5315
+ required: boolean;
5316
+ multiple_values: boolean;
5317
+ compute: boolean;
5318
+ linked_tree?: {
5319
+ id: string;
5320
+ label?: any | null;
5321
+ } | null;
5322
+ treeValuesList?: {
5323
+ enable: boolean;
5324
+ allowFreeEntry?: boolean | null;
5325
+ allowListUpdate?: boolean | null;
5326
+ values?: Array<{
5327
+ id: string;
5328
+ record: {
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
+ };
5342
+ ancestors?: Array<{
5343
+ record: {
5344
+ id: string;
5345
+ whoAmI: {
5346
+ id: string;
5347
+ label?: string | null;
5348
+ subLabel?: string | null;
5349
+ color?: string | null;
5350
+ preview?: IPreviewScalar | null;
5351
+ library: {
5352
+ id: string;
5353
+ label?: any | null;
5354
+ };
5355
+ };
5356
+ };
5357
+ }> | null;
5358
+ }> | null;
5359
+ } | null;
4405
5360
  permissions: {
4406
5361
  access_attribute: boolean;
4407
5362
  edit_value: boolean;
4408
5363
  };
4409
- values_list?: {
4410
- enable: boolean;
4411
- allowFreeEntry?: boolean | null;
4412
- allowListUpdate?: boolean | null;
4413
- dateRangeValues?: Array<{
4414
- from?: string | null;
4415
- to?: string | null;
4416
- }> | null;
4417
- } | {
4418
- enable: boolean;
4419
- allowFreeEntry?: boolean | null;
4420
- allowListUpdate?: boolean | null;
4421
- values?: Array<string> | null;
5364
+ versions_conf?: {
5365
+ versionable: boolean;
5366
+ profile?: {
5367
+ id: string;
5368
+ trees: Array<{
5369
+ id: string;
5370
+ label?: any | null;
5371
+ }>;
5372
+ } | null;
4422
5373
  } | null;
4423
5374
  metadata_fields?: Array<{
4424
5375
  id: string;
5376
+ label?: any | null;
5377
+ description?: any | null;
5378
+ type: AttributeType;
5379
+ format?: AttributeFormat | null;
5380
+ system: boolean;
5381
+ readonly: boolean;
5382
+ multiple_values: boolean;
5383
+ permissions: {
5384
+ access_attribute: boolean;
5385
+ edit_value: boolean;
5386
+ };
5387
+ values_list?: {
5388
+ enable: boolean;
5389
+ allowFreeEntry?: boolean | null;
5390
+ allowListUpdate?: boolean | null;
5391
+ dateRangeValues?: Array<{
5392
+ from?: string | null;
5393
+ to?: string | null;
5394
+ }> | null;
5395
+ } | {
5396
+ enable: boolean;
5397
+ allowFreeEntry?: boolean | null;
5398
+ allowListUpdate?: boolean | null;
5399
+ values?: Array<string> | null;
5400
+ } | null;
5401
+ metadata_fields?: Array<{
5402
+ id: string;
5403
+ }> | null;
4425
5404
  }> | null;
4426
- }> | null;
5405
+ };
4427
5406
  } | null;
4428
- settings: Array<{
4429
- key: string;
4430
- value: any;
4431
- }>;
4432
5407
  }>;
5408
+ sidePanel?: {
5409
+ enable: boolean;
5410
+ isOpenByDefault?: boolean | null;
5411
+ } | null;
4433
5412
  } | null;
4434
5413
  };
4435
5414
  export type RecordUpdateSubscriptionVariables = Exact<{
@@ -4854,6 +5833,30 @@ export type RecordUpdateSubscription = {
4854
5833
  }>;
4855
5834
  };
4856
5835
  };
5836
+ export type GetRecordsFromLibraryQueryVariables = Exact<{
5837
+ libraryId: Scalars['ID'];
5838
+ pagination?: InputMaybe<RecordsPagination>;
5839
+ filters?: InputMaybe<Array<InputMaybe<RecordFilterInput>> | InputMaybe<RecordFilterInput>>;
5840
+ }>;
5841
+ export type GetRecordsFromLibraryQuery = {
5842
+ records: {
5843
+ totalCount?: number | null;
5844
+ list: Array<{
5845
+ id: string;
5846
+ whoAmI: {
5847
+ id: string;
5848
+ label?: string | null;
5849
+ subLabel?: string | null;
5850
+ color?: string | null;
5851
+ preview?: IPreviewScalar | null;
5852
+ library: {
5853
+ id: string;
5854
+ label?: any | null;
5855
+ };
5856
+ };
5857
+ }>;
5858
+ };
5859
+ };
4857
5860
  export type IndexRecordsMutationVariables = Exact<{
4858
5861
  libraryId: Scalars['String'];
4859
5862
  records?: InputMaybe<Array<Scalars['String']> | Scalars['String']>;
@@ -4861,6 +5864,26 @@ export type IndexRecordsMutationVariables = Exact<{
4861
5864
  export type IndexRecordsMutation = {
4862
5865
  indexRecords: boolean;
4863
5866
  };
5867
+ export type PurgeRecordMutationVariables = Exact<{
5868
+ libraryId: Scalars['ID'];
5869
+ recordId: Scalars['ID'];
5870
+ }>;
5871
+ export type PurgeRecordMutation = {
5872
+ purgeRecord: {
5873
+ id: string;
5874
+ whoAmI: {
5875
+ id: string;
5876
+ label?: string | null;
5877
+ subLabel?: string | null;
5878
+ color?: string | null;
5879
+ preview?: IPreviewScalar | null;
5880
+ library: {
5881
+ id: string;
5882
+ label?: any | null;
5883
+ };
5884
+ };
5885
+ };
5886
+ };
4864
5887
  export type CancelTaskMutationVariables = Exact<{
4865
5888
  taskId: Scalars['ID'];
4866
5889
  }>;
@@ -4971,6 +5994,7 @@ export type TreeNodeChildrenQueryVariables = Exact<{
4971
5994
  treeId: Scalars['ID'];
4972
5995
  node?: InputMaybe<Scalars['ID']>;
4973
5996
  pagination?: InputMaybe<Pagination>;
5997
+ childrenAsRecordValuePermissionFilter?: InputMaybe<ChildrenAsRecordValuePermissionFilterInput>;
4974
5998
  }>;
4975
5999
  export type TreeNodeChildrenQuery = {
4976
6000
  treeNodeChildren: {
@@ -5436,128 +6460,6 @@ export type DeleteValueMutation = {
5436
6460
  } | null> | null;
5437
6461
  }>;
5438
6462
  };
5439
- export type RunActionsListAndFormatOnValueQueryVariables = Exact<{
5440
- library: Scalars['ID'];
5441
- value?: InputMaybe<ValueBatchInput>;
5442
- version?: InputMaybe<Array<InputMaybe<ValueVersionInput>> | InputMaybe<ValueVersionInput>>;
5443
- }>;
5444
- export type RunActionsListAndFormatOnValueQuery = {
5445
- runActionsListAndFormatOnValue: Array<{
5446
- id_value?: string | null;
5447
- isInherited?: boolean | null;
5448
- isCalculated?: boolean | null;
5449
- modified_at?: number | null;
5450
- created_at?: number | null;
5451
- payload?: any | null;
5452
- raw_payload?: any | null;
5453
- value?: any | null;
5454
- raw_value?: any | null;
5455
- modified_by?: {
5456
- id: string;
5457
- whoAmI: {
5458
- id: string;
5459
- label?: string | null;
5460
- subLabel?: string | null;
5461
- color?: string | null;
5462
- preview?: IPreviewScalar | null;
5463
- library: {
5464
- id: string;
5465
- label?: any | null;
5466
- };
5467
- };
5468
- } | null;
5469
- created_by?: {
5470
- id: string;
5471
- whoAmI: {
5472
- id: string;
5473
- label?: string | null;
5474
- subLabel?: string | null;
5475
- color?: string | null;
5476
- preview?: IPreviewScalar | null;
5477
- library: {
5478
- id: string;
5479
- label?: any | null;
5480
- };
5481
- };
5482
- } | null;
5483
- version?: Array<{
5484
- treeId: string;
5485
- treeNode?: {
5486
- id: string;
5487
- record: {
5488
- id: string;
5489
- whoAmI: {
5490
- id: string;
5491
- label?: string | null;
5492
- library: {
5493
- id: string;
5494
- };
5495
- };
5496
- };
5497
- } | null;
5498
- } | null> | null;
5499
- attribute: {
5500
- id: string;
5501
- format?: AttributeFormat | null;
5502
- type: AttributeType;
5503
- system: boolean;
5504
- };
5505
- metadata?: Array<{
5506
- name: string;
5507
- value?: {
5508
- id_value?: string | null;
5509
- modified_at?: number | null;
5510
- created_at?: number | null;
5511
- payload?: any | null;
5512
- raw_payload?: any | null;
5513
- modified_by?: {
5514
- id: string;
5515
- whoAmI: {
5516
- id: string;
5517
- label?: string | null;
5518
- subLabel?: string | null;
5519
- color?: string | null;
5520
- preview?: IPreviewScalar | null;
5521
- library: {
5522
- id: string;
5523
- label?: any | null;
5524
- };
5525
- };
5526
- } | null;
5527
- created_by?: {
5528
- id: string;
5529
- whoAmI: {
5530
- id: string;
5531
- label?: string | null;
5532
- subLabel?: string | null;
5533
- color?: string | null;
5534
- preview?: IPreviewScalar | null;
5535
- library: {
5536
- id: string;
5537
- label?: any | null;
5538
- };
5539
- };
5540
- } | null;
5541
- version?: Array<{
5542
- treeId: string;
5543
- treeNode?: {
5544
- id: string;
5545
- record: {
5546
- id: string;
5547
- whoAmI: {
5548
- id: string;
5549
- label?: string | null;
5550
- library: {
5551
- id: string;
5552
- };
5553
- };
5554
- };
5555
- } | null;
5556
- } | null> | null;
5557
- } | null;
5558
- } | null> | null;
5559
- }>;
5560
- };
5561
6463
  export type SaveValueBatchMutationVariables = Exact<{
5562
6464
  library: Scalars['ID'];
5563
6465
  recordId: Scalars['ID'];
@@ -6171,6 +7073,25 @@ export type GetAttributesByLibWithPermissionsQuery = {
6171
7073
  multiple_values: boolean;
6172
7074
  system: boolean;
6173
7075
  readonly: boolean;
7076
+ valuesList?: {
7077
+ enable: boolean;
7078
+ allowFreeEntry?: boolean | null;
7079
+ allowListUpdate?: boolean | null;
7080
+ linkedValues?: Array<{
7081
+ id: string;
7082
+ whoAmI: {
7083
+ id: string;
7084
+ label?: string | null;
7085
+ subLabel?: string | null;
7086
+ color?: string | null;
7087
+ preview?: IPreviewScalar | null;
7088
+ library: {
7089
+ id: string;
7090
+ label?: any | null;
7091
+ };
7092
+ };
7093
+ }> | null;
7094
+ } | null;
6174
7095
  linked_library?: {
6175
7096
  id: string;
6176
7097
  } | null;
@@ -6190,6 +7111,20 @@ export type GetAttributesByLibWithPermissionsQuery = {
6190
7111
  format?: AttributeFormat | null;
6191
7112
  label?: any | null;
6192
7113
  } | null> | null;
7114
+ valuesList?: {
7115
+ enable: boolean;
7116
+ allowFreeEntry?: boolean | null;
7117
+ allowListUpdate?: boolean | null;
7118
+ dateRangeValues?: Array<{
7119
+ from?: string | null;
7120
+ to?: string | null;
7121
+ }> | null;
7122
+ } | {
7123
+ enable: boolean;
7124
+ allowFreeEntry?: boolean | null;
7125
+ allowListUpdate?: boolean | null;
7126
+ values?: Array<string> | null;
7127
+ } | null;
6193
7128
  permissions: {
6194
7129
  access_attribute: boolean;
6195
7130
  };
@@ -6231,6 +7166,39 @@ export type ExplorerAttributesQuery = {
6231
7166
  id: string;
6232
7167
  label?: any | null;
6233
7168
  } | null;
7169
+ valuesList?: {
7170
+ allowFreeEntry?: boolean | null;
7171
+ enable: boolean;
7172
+ linkedValues?: Array<{
7173
+ id: string;
7174
+ whoAmI: {
7175
+ id: string;
7176
+ label?: string | null;
7177
+ library: {
7178
+ id: string;
7179
+ };
7180
+ };
7181
+ }> | null;
7182
+ } | null;
7183
+ permissions: {
7184
+ access_attribute: boolean;
7185
+ };
7186
+ } | {
7187
+ id: string;
7188
+ type: AttributeType;
7189
+ format?: AttributeFormat | null;
7190
+ label?: any | null;
7191
+ embedded_fields?: Array<{
7192
+ id: string;
7193
+ format?: AttributeFormat | null;
7194
+ label?: any | null;
7195
+ } | null> | null;
7196
+ valuesList?: {
7197
+ enable: boolean;
7198
+ allowFreeEntry?: boolean | null;
7199
+ allowListUpdate?: boolean | null;
7200
+ values?: Array<string> | null;
7201
+ } | null;
6234
7202
  permissions: {
6235
7203
  access_attribute: boolean;
6236
7204
  };
@@ -6239,6 +7207,10 @@ export type ExplorerAttributesQuery = {
6239
7207
  type: AttributeType;
6240
7208
  format?: AttributeFormat | null;
6241
7209
  label?: any | null;
7210
+ linked_tree?: {
7211
+ id: string;
7212
+ label?: any | null;
7213
+ } | null;
6242
7214
  permissions: {
6243
7215
  access_attribute: boolean;
6244
7216
  };
@@ -6252,12 +7224,27 @@ export type ExplorerLinkAttributeQuery = {
6252
7224
  attributes?: {
6253
7225
  list: Array<{
6254
7226
  label?: any | null;
7227
+ type: AttributeType;
6255
7228
  id: string;
6256
7229
  multiple_values: boolean;
6257
7230
  linked_library?: {
6258
7231
  id: string;
6259
7232
  label?: any | null;
6260
7233
  } | null;
7234
+ valuesList?: {
7235
+ allowFreeEntry?: boolean | null;
7236
+ enable: boolean;
7237
+ linkedValues?: Array<{
7238
+ id: string;
7239
+ whoAmI: {
7240
+ id: string;
7241
+ label?: string | null;
7242
+ library: {
7243
+ id: string;
7244
+ };
7245
+ };
7246
+ }> | null;
7247
+ } | null;
6261
7248
  permissions: {
6262
7249
  access_attribute: boolean;
6263
7250
  edit_value: boolean;
@@ -6269,6 +7256,18 @@ export type ExplorerLinkAttributeQuery = {
6269
7256
  access_attribute: boolean;
6270
7257
  edit_value: boolean;
6271
7258
  };
7259
+ } | {
7260
+ label?: any | null;
7261
+ id: string;
7262
+ multiple_values: boolean;
7263
+ linked_tree?: {
7264
+ id: string;
7265
+ label?: any | null;
7266
+ } | null;
7267
+ permissions: {
7268
+ access_attribute: boolean;
7269
+ edit_value: boolean;
7270
+ };
6272
7271
  }>;
6273
7272
  } | null;
6274
7273
  };
@@ -6285,6 +7284,7 @@ export type ExplorerLibraryDataQuery = {
6285
7284
  totalCount?: number | null;
6286
7285
  list: Array<{
6287
7286
  id: string;
7287
+ active: boolean;
6288
7288
  whoAmI: {
6289
7289
  id: string;
6290
7290
  label?: string | null;
@@ -6297,6 +7297,7 @@ export type ExplorerLibraryDataQuery = {
6297
7297
  };
6298
7298
  };
6299
7299
  permissions: {
7300
+ create_record: boolean;
6300
7301
  delete_record: boolean;
6301
7302
  };
6302
7303
  properties: Array<{
@@ -6307,6 +7308,7 @@ export type ExplorerLibraryDataQuery = {
6307
7308
  type: AttributeType;
6308
7309
  format?: AttributeFormat | null;
6309
7310
  multiple_values: boolean;
7311
+ multi_link_display_option?: MultiLinkDisplayOption | null;
6310
7312
  };
6311
7313
  values: Array<{
6312
7314
  linkPayload?: {
@@ -6387,6 +7389,7 @@ export type ExplorerLinkDataQuery = {
6387
7389
  type: AttributeType;
6388
7390
  format?: AttributeFormat | null;
6389
7391
  multiple_values: boolean;
7392
+ multi_link_display_option?: MultiLinkDisplayOption | null;
6390
7393
  };
6391
7394
  values: Array<{
6392
7395
  linkPayload?: {
@@ -6600,6 +7603,7 @@ export declare const ValuesVersionDetailsFragmentDoc: Apollo.DocumentNode;
6600
7603
  export declare const ValueDetailsFragmentDoc: Apollo.DocumentNode;
6601
7604
  export declare const StandardValuesListFragmentFragmentDoc: Apollo.DocumentNode;
6602
7605
  export declare const RecordFormAttributeFragmentDoc: Apollo.DocumentNode;
7606
+ export declare const JoinLibraryContextFragmentDoc: Apollo.DocumentNode;
6603
7607
  export declare const RecordFormElementFragmentDoc: Apollo.DocumentNode;
6604
7608
  export declare const TreeLightFragmentDoc: Apollo.DocumentNode;
6605
7609
  export declare const TreeDetailsFragmentDoc: Apollo.DocumentNode;
@@ -6609,6 +7613,8 @@ export declare const ViewDetailsFragmentDoc: Apollo.DocumentNode;
6609
7613
  export declare const AttributesByLibLinkAttributeWithPermissionsFragmentDoc: Apollo.DocumentNode;
6610
7614
  export declare const AttributesByLibAttributeWithPermissionsFragmentDoc: Apollo.DocumentNode;
6611
7615
  export declare const LinkAttributeDetailsFragmentDoc: Apollo.DocumentNode;
7616
+ export declare const TreeAttributeDetailsFragmentDoc: Apollo.DocumentNode;
7617
+ export declare const StandardAttributeDetailsFragmentDoc: Apollo.DocumentNode;
6612
7618
  export declare const AttributePropertiesFragmentDoc: Apollo.DocumentNode;
6613
7619
  export declare const PropertyValueFragmentDoc: Apollo.DocumentNode;
6614
7620
  export declare const LinkPropertyFragmentDoc: Apollo.DocumentNode;
@@ -6640,8 +7646,13 @@ export declare function useCheckApplicationExistenceLazyQuery(baseOptions?: Apol
6640
7646
  id?: InputMaybe<Scalars["ID"]>;
6641
7647
  endpoint?: InputMaybe<Scalars["String"]>;
6642
7648
  }>>;
7649
+ export declare function useCheckApplicationExistenceSuspenseQuery(baseOptions?: Apollo.SuspenseQueryHookOptions<CheckApplicationExistenceQuery, CheckApplicationExistenceQueryVariables>): Apollo.UseSuspenseQueryResult<CheckApplicationExistenceQuery, Exact<{
7650
+ id?: InputMaybe<Scalars["ID"]>;
7651
+ endpoint?: InputMaybe<Scalars["String"]>;
7652
+ }>>;
6643
7653
  export type CheckApplicationExistenceQueryHookResult = ReturnType<typeof useCheckApplicationExistenceQuery>;
6644
7654
  export type CheckApplicationExistenceLazyQueryHookResult = ReturnType<typeof useCheckApplicationExistenceLazyQuery>;
7655
+ export type CheckApplicationExistenceSuspenseQueryHookResult = ReturnType<typeof useCheckApplicationExistenceSuspenseQuery>;
6645
7656
  export type CheckApplicationExistenceQueryResult = Apollo.QueryResult<CheckApplicationExistenceQuery, CheckApplicationExistenceQueryVariables>;
6646
7657
  export declare const GetApplicationByIdDocument: Apollo.DocumentNode;
6647
7658
  /**
@@ -6666,8 +7677,12 @@ export declare function useGetApplicationByIdQuery(baseOptions: Apollo.QueryHook
6666
7677
  export declare function useGetApplicationByIdLazyQuery(baseOptions?: Apollo.LazyQueryHookOptions<GetApplicationByIdQuery, GetApplicationByIdQueryVariables>): Apollo.LazyQueryResultTuple<GetApplicationByIdQuery, Exact<{
6667
7678
  id: Scalars["ID"];
6668
7679
  }>>;
7680
+ export declare function useGetApplicationByIdSuspenseQuery(baseOptions?: Apollo.SuspenseQueryHookOptions<GetApplicationByIdQuery, GetApplicationByIdQueryVariables>): Apollo.UseSuspenseQueryResult<GetApplicationByIdQuery, Exact<{
7681
+ id: Scalars["ID"];
7682
+ }>>;
6669
7683
  export type GetApplicationByIdQueryHookResult = ReturnType<typeof useGetApplicationByIdQuery>;
6670
7684
  export type GetApplicationByIdLazyQueryHookResult = ReturnType<typeof useGetApplicationByIdLazyQuery>;
7685
+ export type GetApplicationByIdSuspenseQueryHookResult = ReturnType<typeof useGetApplicationByIdSuspenseQuery>;
6671
7686
  export type GetApplicationByIdQueryResult = Apollo.QueryResult<GetApplicationByIdQuery, GetApplicationByIdQueryVariables>;
6672
7687
  export declare const GetApplicationModulesDocument: Apollo.DocumentNode;
6673
7688
  /**
@@ -6691,8 +7706,12 @@ export declare function useGetApplicationModulesQuery(baseOptions?: Apollo.Query
6691
7706
  export declare function useGetApplicationModulesLazyQuery(baseOptions?: Apollo.LazyQueryHookOptions<GetApplicationModulesQuery, GetApplicationModulesQueryVariables>): Apollo.LazyQueryResultTuple<GetApplicationModulesQuery, Exact<{
6692
7707
  [key: string]: never;
6693
7708
  }>>;
7709
+ export declare function useGetApplicationModulesSuspenseQuery(baseOptions?: Apollo.SuspenseQueryHookOptions<GetApplicationModulesQuery, GetApplicationModulesQueryVariables>): Apollo.UseSuspenseQueryResult<GetApplicationModulesQuery, Exact<{
7710
+ [key: string]: never;
7711
+ }>>;
6694
7712
  export type GetApplicationModulesQueryHookResult = ReturnType<typeof useGetApplicationModulesQuery>;
6695
7713
  export type GetApplicationModulesLazyQueryHookResult = ReturnType<typeof useGetApplicationModulesLazyQuery>;
7714
+ export type GetApplicationModulesSuspenseQueryHookResult = ReturnType<typeof useGetApplicationModulesSuspenseQuery>;
6696
7715
  export type GetApplicationModulesQueryResult = Apollo.QueryResult<GetApplicationModulesQuery, GetApplicationModulesQueryVariables>;
6697
7716
  export declare const SaveApplicationDocument: Apollo.DocumentNode;
6698
7717
  export type SaveApplicationMutationFn = Apollo.MutationFunction<SaveApplicationMutation, SaveApplicationMutationVariables>;
@@ -6742,8 +7761,12 @@ export declare function useCheckAttributeExistenceQuery(baseOptions: Apollo.Quer
6742
7761
  export declare function useCheckAttributeExistenceLazyQuery(baseOptions?: Apollo.LazyQueryHookOptions<CheckAttributeExistenceQuery, CheckAttributeExistenceQueryVariables>): Apollo.LazyQueryResultTuple<CheckAttributeExistenceQuery, Exact<{
6743
7762
  id: Scalars["ID"];
6744
7763
  }>>;
7764
+ export declare function useCheckAttributeExistenceSuspenseQuery(baseOptions?: Apollo.SuspenseQueryHookOptions<CheckAttributeExistenceQuery, CheckAttributeExistenceQueryVariables>): Apollo.UseSuspenseQueryResult<CheckAttributeExistenceQuery, Exact<{
7765
+ id: Scalars["ID"];
7766
+ }>>;
6745
7767
  export type CheckAttributeExistenceQueryHookResult = ReturnType<typeof useCheckAttributeExistenceQuery>;
6746
7768
  export type CheckAttributeExistenceLazyQueryHookResult = ReturnType<typeof useCheckAttributeExistenceLazyQuery>;
7769
+ export type CheckAttributeExistenceSuspenseQueryHookResult = ReturnType<typeof useCheckAttributeExistenceSuspenseQuery>;
6747
7770
  export type CheckAttributeExistenceQueryResult = Apollo.QueryResult<CheckAttributeExistenceQuery, CheckAttributeExistenceQueryVariables>;
6748
7771
  export declare const DeleteAttributeDocument: Apollo.DocumentNode;
6749
7772
  export type DeleteAttributeMutationFn = Apollo.MutationFunction<DeleteAttributeMutation, DeleteAttributeMutationVariables>;
@@ -6793,8 +7816,12 @@ export declare function useGetAttributeByIdQuery(baseOptions?: Apollo.QueryHookO
6793
7816
  export declare function useGetAttributeByIdLazyQuery(baseOptions?: Apollo.LazyQueryHookOptions<GetAttributeByIdQuery, GetAttributeByIdQueryVariables>): Apollo.LazyQueryResultTuple<GetAttributeByIdQuery, Exact<{
6794
7817
  id?: InputMaybe<Scalars["ID"]>;
6795
7818
  }>>;
7819
+ export declare function useGetAttributeByIdSuspenseQuery(baseOptions?: Apollo.SuspenseQueryHookOptions<GetAttributeByIdQuery, GetAttributeByIdQueryVariables>): Apollo.UseSuspenseQueryResult<GetAttributeByIdQuery, Exact<{
7820
+ id?: InputMaybe<Scalars["ID"]>;
7821
+ }>>;
6796
7822
  export type GetAttributeByIdQueryHookResult = ReturnType<typeof useGetAttributeByIdQuery>;
6797
7823
  export type GetAttributeByIdLazyQueryHookResult = ReturnType<typeof useGetAttributeByIdLazyQuery>;
7824
+ export type GetAttributeByIdSuspenseQueryHookResult = ReturnType<typeof useGetAttributeByIdSuspenseQuery>;
6798
7825
  export type GetAttributeByIdQueryResult = Apollo.QueryResult<GetAttributeByIdQuery, GetAttributeByIdQueryVariables>;
6799
7826
  export declare const GetAttributesByLibDocument: Apollo.DocumentNode;
6800
7827
  /**
@@ -6819,8 +7846,12 @@ export declare function useGetAttributesByLibQuery(baseOptions: Apollo.QueryHook
6819
7846
  export declare function useGetAttributesByLibLazyQuery(baseOptions?: Apollo.LazyQueryHookOptions<GetAttributesByLibQuery, GetAttributesByLibQueryVariables>): Apollo.LazyQueryResultTuple<GetAttributesByLibQuery, Exact<{
6820
7847
  library: Scalars["String"];
6821
7848
  }>>;
7849
+ export declare function useGetAttributesByLibSuspenseQuery(baseOptions?: Apollo.SuspenseQueryHookOptions<GetAttributesByLibQuery, GetAttributesByLibQueryVariables>): Apollo.UseSuspenseQueryResult<GetAttributesByLibQuery, Exact<{
7850
+ library: Scalars["String"];
7851
+ }>>;
6822
7852
  export type GetAttributesByLibQueryHookResult = ReturnType<typeof useGetAttributesByLibQuery>;
6823
7853
  export type GetAttributesByLibLazyQueryHookResult = ReturnType<typeof useGetAttributesByLibLazyQuery>;
7854
+ export type GetAttributesByLibSuspenseQueryHookResult = ReturnType<typeof useGetAttributesByLibSuspenseQuery>;
6824
7855
  export type GetAttributesByLibQueryResult = Apollo.QueryResult<GetAttributesByLibQuery, GetAttributesByLibQueryVariables>;
6825
7856
  export declare const GetAttributesDocument: Apollo.DocumentNode;
6826
7857
  /**
@@ -6851,8 +7882,14 @@ export declare function useGetAttributesLazyQuery(baseOptions?: Apollo.LazyQuery
6851
7882
  sort?: InputMaybe<SortAttributes>;
6852
7883
  filters?: InputMaybe<AttributesFiltersInput>;
6853
7884
  }>>;
7885
+ export declare function useGetAttributesSuspenseQuery(baseOptions?: Apollo.SuspenseQueryHookOptions<GetAttributesQuery, GetAttributesQueryVariables>): Apollo.UseSuspenseQueryResult<GetAttributesQuery, Exact<{
7886
+ pagination?: InputMaybe<Pagination>;
7887
+ sort?: InputMaybe<SortAttributes>;
7888
+ filters?: InputMaybe<AttributesFiltersInput>;
7889
+ }>>;
6854
7890
  export type GetAttributesQueryHookResult = ReturnType<typeof useGetAttributesQuery>;
6855
7891
  export type GetAttributesLazyQueryHookResult = ReturnType<typeof useGetAttributesLazyQuery>;
7892
+ export type GetAttributesSuspenseQueryHookResult = ReturnType<typeof useGetAttributesSuspenseQuery>;
6856
7893
  export type GetAttributesQueryResult = Apollo.QueryResult<GetAttributesQuery, GetAttributesQueryVariables>;
6857
7894
  export declare const GetVersionProfilesDocument: Apollo.DocumentNode;
6858
7895
  /**
@@ -6880,8 +7917,13 @@ export declare function useGetVersionProfilesLazyQuery(baseOptions?: Apollo.Lazy
6880
7917
  filters?: InputMaybe<VersionProfilesFiltersInput>;
6881
7918
  sort?: InputMaybe<SortVersionProfilesInput>;
6882
7919
  }>>;
7920
+ export declare function useGetVersionProfilesSuspenseQuery(baseOptions?: Apollo.SuspenseQueryHookOptions<GetVersionProfilesQuery, GetVersionProfilesQueryVariables>): Apollo.UseSuspenseQueryResult<GetVersionProfilesQuery, Exact<{
7921
+ filters?: InputMaybe<VersionProfilesFiltersInput>;
7922
+ sort?: InputMaybe<SortVersionProfilesInput>;
7923
+ }>>;
6883
7924
  export type GetVersionProfilesQueryHookResult = ReturnType<typeof useGetVersionProfilesQuery>;
6884
7925
  export type GetVersionProfilesLazyQueryHookResult = ReturnType<typeof useGetVersionProfilesLazyQuery>;
7926
+ export type GetVersionProfilesSuspenseQueryHookResult = ReturnType<typeof useGetVersionProfilesSuspenseQuery>;
6885
7927
  export type GetVersionProfilesQueryResult = Apollo.QueryResult<GetVersionProfilesQuery, GetVersionProfilesQueryVariables>;
6886
7928
  export declare const GetVersionableAttributesByLibraryDocument: Apollo.DocumentNode;
6887
7929
  /**
@@ -6906,8 +7948,12 @@ export declare function useGetVersionableAttributesByLibraryQuery(baseOptions: A
6906
7948
  export declare function useGetVersionableAttributesByLibraryLazyQuery(baseOptions?: Apollo.LazyQueryHookOptions<GetVersionableAttributesByLibraryQuery, GetVersionableAttributesByLibraryQueryVariables>): Apollo.LazyQueryResultTuple<GetVersionableAttributesByLibraryQuery, Exact<{
6907
7949
  libraryId: Scalars["String"];
6908
7950
  }>>;
7951
+ export declare function useGetVersionableAttributesByLibrarySuspenseQuery(baseOptions?: Apollo.SuspenseQueryHookOptions<GetVersionableAttributesByLibraryQuery, GetVersionableAttributesByLibraryQueryVariables>): Apollo.UseSuspenseQueryResult<GetVersionableAttributesByLibraryQuery, Exact<{
7952
+ libraryId: Scalars["String"];
7953
+ }>>;
6909
7954
  export type GetVersionableAttributesByLibraryQueryHookResult = ReturnType<typeof useGetVersionableAttributesByLibraryQuery>;
6910
7955
  export type GetVersionableAttributesByLibraryLazyQueryHookResult = ReturnType<typeof useGetVersionableAttributesByLibraryLazyQuery>;
7956
+ export type GetVersionableAttributesByLibrarySuspenseQueryHookResult = ReturnType<typeof useGetVersionableAttributesByLibrarySuspenseQuery>;
6911
7957
  export type GetVersionableAttributesByLibraryQueryResult = Apollo.QueryResult<GetVersionableAttributesByLibraryQuery, GetVersionableAttributesByLibraryQueryVariables>;
6912
7958
  export declare const SaveAttributeDocument: Apollo.DocumentNode;
6913
7959
  export type SaveAttributeMutationFn = Apollo.MutationFunction<SaveAttributeMutation, SaveAttributeMutationVariables>;
@@ -6963,8 +8009,14 @@ export declare function useExportLazyQuery(baseOptions?: Apollo.LazyQueryHookOpt
6963
8009
  attributes?: InputMaybe<Array<Scalars["ID"]> | Scalars["ID"]>;
6964
8010
  filters?: InputMaybe<Array<RecordFilterInput> | RecordFilterInput>;
6965
8011
  }>>;
8012
+ export declare function useExportSuspenseQuery(baseOptions?: Apollo.SuspenseQueryHookOptions<ExportQuery, ExportQueryVariables>): Apollo.UseSuspenseQueryResult<ExportQuery, Exact<{
8013
+ library: Scalars["ID"];
8014
+ attributes?: InputMaybe<Array<Scalars["ID"]> | Scalars["ID"]>;
8015
+ filters?: InputMaybe<Array<RecordFilterInput> | RecordFilterInput>;
8016
+ }>>;
6966
8017
  export type ExportQueryHookResult = ReturnType<typeof useExportQuery>;
6967
8018
  export type ExportLazyQueryHookResult = ReturnType<typeof useExportLazyQuery>;
8019
+ export type ExportSuspenseQueryHookResult = ReturnType<typeof useExportSuspenseQuery>;
6968
8020
  export type ExportQueryResult = Apollo.QueryResult<ExportQuery, ExportQueryVariables>;
6969
8021
  export declare const CreateDirectoryDocument: Apollo.DocumentNode;
6970
8022
  export type CreateDirectoryMutationFn = Apollo.MutationFunction<CreateDirectoryMutation, CreateDirectoryMutationVariables>;
@@ -7054,8 +8106,13 @@ export declare function useGetDirectoryDataLazyQuery(baseOptions?: Apollo.LazyQu
7054
8106
  library: Scalars["ID"];
7055
8107
  directoryId: Scalars["String"];
7056
8108
  }>>;
8109
+ export declare function useGetDirectoryDataSuspenseQuery(baseOptions?: Apollo.SuspenseQueryHookOptions<GetDirectoryDataQuery, GetDirectoryDataQueryVariables>): Apollo.UseSuspenseQueryResult<GetDirectoryDataQuery, Exact<{
8110
+ library: Scalars["ID"];
8111
+ directoryId: Scalars["String"];
8112
+ }>>;
7057
8113
  export type GetDirectoryDataQueryHookResult = ReturnType<typeof useGetDirectoryDataQuery>;
7058
8114
  export type GetDirectoryDataLazyQueryHookResult = ReturnType<typeof useGetDirectoryDataLazyQuery>;
8115
+ export type GetDirectoryDataSuspenseQueryHookResult = ReturnType<typeof useGetDirectoryDataSuspenseQuery>;
7059
8116
  export type GetDirectoryDataQueryResult = Apollo.QueryResult<GetDirectoryDataQuery, GetDirectoryDataQueryVariables>;
7060
8117
  export declare const UploadUpdateDocument: Apollo.DocumentNode;
7061
8118
  /**
@@ -7160,8 +8217,12 @@ export declare function useCheckLibraryExistenceQuery(baseOptions?: Apollo.Query
7160
8217
  export declare function useCheckLibraryExistenceLazyQuery(baseOptions?: Apollo.LazyQueryHookOptions<CheckLibraryExistenceQuery, CheckLibraryExistenceQueryVariables>): Apollo.LazyQueryResultTuple<CheckLibraryExistenceQuery, Exact<{
7161
8218
  id?: InputMaybe<Array<Scalars["ID"]> | Scalars["ID"]>;
7162
8219
  }>>;
8220
+ export declare function useCheckLibraryExistenceSuspenseQuery(baseOptions?: Apollo.SuspenseQueryHookOptions<CheckLibraryExistenceQuery, CheckLibraryExistenceQueryVariables>): Apollo.UseSuspenseQueryResult<CheckLibraryExistenceQuery, Exact<{
8221
+ id?: InputMaybe<Array<Scalars["ID"]> | Scalars["ID"]>;
8222
+ }>>;
7163
8223
  export type CheckLibraryExistenceQueryHookResult = ReturnType<typeof useCheckLibraryExistenceQuery>;
7164
8224
  export type CheckLibraryExistenceLazyQueryHookResult = ReturnType<typeof useCheckLibraryExistenceLazyQuery>;
8225
+ export type CheckLibraryExistenceSuspenseQueryHookResult = ReturnType<typeof useCheckLibraryExistenceSuspenseQuery>;
7165
8226
  export type CheckLibraryExistenceQueryResult = Apollo.QueryResult<CheckLibraryExistenceQuery, CheckLibraryExistenceQueryVariables>;
7166
8227
  export declare const DeleteLibraryDocument: Apollo.DocumentNode;
7167
8228
  export type DeleteLibraryMutationFn = Apollo.MutationFunction<DeleteLibraryMutation, DeleteLibraryMutationVariables>;
@@ -7210,8 +8271,12 @@ export declare function useGetLibrariesQuery(baseOptions?: Apollo.QueryHookOptio
7210
8271
  export declare function useGetLibrariesLazyQuery(baseOptions?: Apollo.LazyQueryHookOptions<GetLibrariesQuery, GetLibrariesQueryVariables>): Apollo.LazyQueryResultTuple<GetLibrariesQuery, Exact<{
7211
8272
  [key: string]: never;
7212
8273
  }>>;
8274
+ export declare function useGetLibrariesSuspenseQuery(baseOptions?: Apollo.SuspenseQueryHookOptions<GetLibrariesQuery, GetLibrariesQueryVariables>): Apollo.UseSuspenseQueryResult<GetLibrariesQuery, Exact<{
8275
+ [key: string]: never;
8276
+ }>>;
7213
8277
  export type GetLibrariesQueryHookResult = ReturnType<typeof useGetLibrariesQuery>;
7214
8278
  export type GetLibrariesLazyQueryHookResult = ReturnType<typeof useGetLibrariesLazyQuery>;
8279
+ export type GetLibrariesSuspenseQueryHookResult = ReturnType<typeof useGetLibrariesSuspenseQuery>;
7215
8280
  export type GetLibrariesQueryResult = Apollo.QueryResult<GetLibrariesQuery, GetLibrariesQueryVariables>;
7216
8281
  export declare const GetLibraryByIdDocument: Apollo.DocumentNode;
7217
8282
  /**
@@ -7236,8 +8301,12 @@ export declare function useGetLibraryByIdQuery(baseOptions?: Apollo.QueryHookOpt
7236
8301
  export declare function useGetLibraryByIdLazyQuery(baseOptions?: Apollo.LazyQueryHookOptions<GetLibraryByIdQuery, GetLibraryByIdQueryVariables>): Apollo.LazyQueryResultTuple<GetLibraryByIdQuery, Exact<{
7237
8302
  id?: InputMaybe<Array<Scalars["ID"]> | Scalars["ID"]>;
7238
8303
  }>>;
8304
+ export declare function useGetLibraryByIdSuspenseQuery(baseOptions?: Apollo.SuspenseQueryHookOptions<GetLibraryByIdQuery, GetLibraryByIdQueryVariables>): Apollo.UseSuspenseQueryResult<GetLibraryByIdQuery, Exact<{
8305
+ id?: InputMaybe<Array<Scalars["ID"]> | Scalars["ID"]>;
8306
+ }>>;
7239
8307
  export type GetLibraryByIdQueryHookResult = ReturnType<typeof useGetLibraryByIdQuery>;
7240
8308
  export type GetLibraryByIdLazyQueryHookResult = ReturnType<typeof useGetLibraryByIdLazyQuery>;
8309
+ export type GetLibraryByIdSuspenseQueryHookResult = ReturnType<typeof useGetLibraryByIdSuspenseQuery>;
7241
8310
  export type GetLibraryByIdQueryResult = Apollo.QueryResult<GetLibraryByIdQuery, GetLibraryByIdQueryVariables>;
7242
8311
  export declare const GetLibraryPermissionsDocument: Apollo.DocumentNode;
7243
8312
  /**
@@ -7262,8 +8331,12 @@ export declare function useGetLibraryPermissionsQuery(baseOptions?: Apollo.Query
7262
8331
  export declare function useGetLibraryPermissionsLazyQuery(baseOptions?: Apollo.LazyQueryHookOptions<GetLibraryPermissionsQuery, GetLibraryPermissionsQueryVariables>): Apollo.LazyQueryResultTuple<GetLibraryPermissionsQuery, Exact<{
7263
8332
  libraryId?: InputMaybe<Array<Scalars["ID"]> | Scalars["ID"]>;
7264
8333
  }>>;
8334
+ export declare function useGetLibraryPermissionsSuspenseQuery(baseOptions?: Apollo.SuspenseQueryHookOptions<GetLibraryPermissionsQuery, GetLibraryPermissionsQueryVariables>): Apollo.UseSuspenseQueryResult<GetLibraryPermissionsQuery, Exact<{
8335
+ libraryId?: InputMaybe<Array<Scalars["ID"]> | Scalars["ID"]>;
8336
+ }>>;
7265
8337
  export type GetLibraryPermissionsQueryHookResult = ReturnType<typeof useGetLibraryPermissionsQuery>;
7266
8338
  export type GetLibraryPermissionsLazyQueryHookResult = ReturnType<typeof useGetLibraryPermissionsLazyQuery>;
8339
+ export type GetLibraryPermissionsSuspenseQueryHookResult = ReturnType<typeof useGetLibraryPermissionsSuspenseQuery>;
7267
8340
  export type GetLibraryPermissionsQueryResult = Apollo.QueryResult<GetLibraryPermissionsQuery, GetLibraryPermissionsQueryVariables>;
7268
8341
  export declare const GetLibraryPreviewsSettingsDocument: Apollo.DocumentNode;
7269
8342
  /**
@@ -7288,8 +8361,12 @@ export declare function useGetLibraryPreviewsSettingsQuery(baseOptions: Apollo.Q
7288
8361
  export declare function useGetLibraryPreviewsSettingsLazyQuery(baseOptions?: Apollo.LazyQueryHookOptions<GetLibraryPreviewsSettingsQuery, GetLibraryPreviewsSettingsQueryVariables>): Apollo.LazyQueryResultTuple<GetLibraryPreviewsSettingsQuery, Exact<{
7289
8362
  id: Scalars["ID"];
7290
8363
  }>>;
8364
+ export declare function useGetLibraryPreviewsSettingsSuspenseQuery(baseOptions?: Apollo.SuspenseQueryHookOptions<GetLibraryPreviewsSettingsQuery, GetLibraryPreviewsSettingsQueryVariables>): Apollo.UseSuspenseQueryResult<GetLibraryPreviewsSettingsQuery, Exact<{
8365
+ id: Scalars["ID"];
8366
+ }>>;
7291
8367
  export type GetLibraryPreviewsSettingsQueryHookResult = ReturnType<typeof useGetLibraryPreviewsSettingsQuery>;
7292
8368
  export type GetLibraryPreviewsSettingsLazyQueryHookResult = ReturnType<typeof useGetLibraryPreviewsSettingsLazyQuery>;
8369
+ export type GetLibraryPreviewsSettingsSuspenseQueryHookResult = ReturnType<typeof useGetLibraryPreviewsSettingsSuspenseQuery>;
7293
8370
  export type GetLibraryPreviewsSettingsQueryResult = Apollo.QueryResult<GetLibraryPreviewsSettingsQuery, GetLibraryPreviewsSettingsQueryVariables>;
7294
8371
  export declare const SaveLibraryDocument: Apollo.DocumentNode;
7295
8372
  export type SaveLibraryMutationFn = Apollo.MutationFunction<SaveLibraryMutation, SaveLibraryMutationVariables>;
@@ -7348,9 +8425,99 @@ export declare function useIsAllowedLazyQuery(baseOptions?: Apollo.LazyQueryHook
7348
8425
  applyTo?: InputMaybe<Scalars["ID"]>;
7349
8426
  target?: InputMaybe<PermissionTarget>;
7350
8427
  }>>;
8428
+ export declare function useIsAllowedSuspenseQuery(baseOptions?: Apollo.SuspenseQueryHookOptions<IsAllowedQuery, IsAllowedQueryVariables>): Apollo.UseSuspenseQueryResult<IsAllowedQuery, Exact<{
8429
+ type: PermissionTypes;
8430
+ actions: Array<PermissionsActions> | PermissionsActions;
8431
+ applyTo?: InputMaybe<Scalars["ID"]>;
8432
+ target?: InputMaybe<PermissionTarget>;
8433
+ }>>;
7351
8434
  export type IsAllowedQueryHookResult = ReturnType<typeof useIsAllowedQuery>;
7352
8435
  export type IsAllowedLazyQueryHookResult = ReturnType<typeof useIsAllowedLazyQuery>;
8436
+ export type IsAllowedSuspenseQueryHookResult = ReturnType<typeof useIsAllowedSuspenseQuery>;
7353
8437
  export type IsAllowedQueryResult = Apollo.QueryResult<IsAllowedQuery, IsAllowedQueryVariables>;
8438
+ export declare const ActivateNewRecordDocument: Apollo.DocumentNode;
8439
+ export type ActivateNewRecordMutationFn = Apollo.MutationFunction<ActivateNewRecordMutation, ActivateNewRecordMutationVariables>;
8440
+ /**
8441
+ * __useActivateNewRecordMutation__
8442
+ *
8443
+ * To run a mutation, you first call `useActivateNewRecordMutation` within a React component and pass it any options that fit your needs.
8444
+ * When your component renders, `useActivateNewRecordMutation` returns a tuple that includes:
8445
+ * - A mutate function that you can call at any time to execute the mutation
8446
+ * - An object with fields that represent the current status of the mutation's execution
8447
+ *
8448
+ * @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;
8449
+ *
8450
+ * @example
8451
+ * const [activateNewRecordMutation, { data, loading, error }] = useActivateNewRecordMutation({
8452
+ * variables: {
8453
+ * libraryId: // value for 'libraryId'
8454
+ * recordId: // value for 'recordId'
8455
+ * formId: // value for 'formId'
8456
+ * },
8457
+ * });
8458
+ */
8459
+ export declare function useActivateNewRecordMutation(baseOptions?: Apollo.MutationHookOptions<ActivateNewRecordMutation, ActivateNewRecordMutationVariables>): Apollo.MutationTuple<ActivateNewRecordMutation, Exact<{
8460
+ libraryId: Scalars["ID"];
8461
+ recordId: Scalars["ID"];
8462
+ formId?: InputMaybe<Scalars["String"]>;
8463
+ }>, Apollo.DefaultContext, Apollo.ApolloCache<any>>;
8464
+ export type ActivateNewRecordMutationHookResult = ReturnType<typeof useActivateNewRecordMutation>;
8465
+ export type ActivateNewRecordMutationResult = Apollo.MutationResult<ActivateNewRecordMutation>;
8466
+ export type ActivateNewRecordMutationOptions = Apollo.BaseMutationOptions<ActivateNewRecordMutation, ActivateNewRecordMutationVariables>;
8467
+ export declare const ActivateRecordsDocument: Apollo.DocumentNode;
8468
+ export type ActivateRecordsMutationFn = Apollo.MutationFunction<ActivateRecordsMutation, ActivateRecordsMutationVariables>;
8469
+ /**
8470
+ * __useActivateRecordsMutation__
8471
+ *
8472
+ * To run a mutation, you first call `useActivateRecordsMutation` within a React component and pass it any options that fit your needs.
8473
+ * When your component renders, `useActivateRecordsMutation` returns a tuple that includes:
8474
+ * - A mutate function that you can call at any time to execute the mutation
8475
+ * - An object with fields that represent the current status of the mutation's execution
8476
+ *
8477
+ * @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;
8478
+ *
8479
+ * @example
8480
+ * const [activateRecordsMutation, { data, loading, error }] = useActivateRecordsMutation({
8481
+ * variables: {
8482
+ * libraryId: // value for 'libraryId'
8483
+ * recordsIds: // value for 'recordsIds'
8484
+ * filters: // value for 'filters'
8485
+ * },
8486
+ * });
8487
+ */
8488
+ export declare function useActivateRecordsMutation(baseOptions?: Apollo.MutationHookOptions<ActivateRecordsMutation, ActivateRecordsMutationVariables>): Apollo.MutationTuple<ActivateRecordsMutation, Exact<{
8489
+ libraryId: Scalars["String"];
8490
+ recordsIds?: InputMaybe<Array<Scalars["String"]> | Scalars["String"]>;
8491
+ filters?: InputMaybe<Array<RecordFilterInput> | RecordFilterInput>;
8492
+ }>, Apollo.DefaultContext, Apollo.ApolloCache<any>>;
8493
+ export type ActivateRecordsMutationHookResult = ReturnType<typeof useActivateRecordsMutation>;
8494
+ export type ActivateRecordsMutationResult = Apollo.MutationResult<ActivateRecordsMutation>;
8495
+ export type ActivateRecordsMutationOptions = Apollo.BaseMutationOptions<ActivateRecordsMutation, ActivateRecordsMutationVariables>;
8496
+ export declare const CreateEmptyRecordDocument: Apollo.DocumentNode;
8497
+ export type CreateEmptyRecordMutationFn = Apollo.MutationFunction<CreateEmptyRecordMutation, CreateEmptyRecordMutationVariables>;
8498
+ /**
8499
+ * __useCreateEmptyRecordMutation__
8500
+ *
8501
+ * To run a mutation, you first call `useCreateEmptyRecordMutation` within a React component and pass it any options that fit your needs.
8502
+ * When your component renders, `useCreateEmptyRecordMutation` returns a tuple that includes:
8503
+ * - A mutate function that you can call at any time to execute the mutation
8504
+ * - An object with fields that represent the current status of the mutation's execution
8505
+ *
8506
+ * @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;
8507
+ *
8508
+ * @example
8509
+ * const [createEmptyRecordMutation, { data, loading, error }] = useCreateEmptyRecordMutation({
8510
+ * variables: {
8511
+ * library: // value for 'library'
8512
+ * },
8513
+ * });
8514
+ */
8515
+ export declare function useCreateEmptyRecordMutation(baseOptions?: Apollo.MutationHookOptions<CreateEmptyRecordMutation, CreateEmptyRecordMutationVariables>): Apollo.MutationTuple<CreateEmptyRecordMutation, Exact<{
8516
+ library: Scalars["ID"];
8517
+ }>, Apollo.DefaultContext, Apollo.ApolloCache<any>>;
8518
+ export type CreateEmptyRecordMutationHookResult = ReturnType<typeof useCreateEmptyRecordMutation>;
8519
+ export type CreateEmptyRecordMutationResult = Apollo.MutationResult<CreateEmptyRecordMutation>;
8520
+ export type CreateEmptyRecordMutationOptions = Apollo.BaseMutationOptions<CreateEmptyRecordMutation, CreateEmptyRecordMutationVariables>;
7354
8521
  export declare const CreateRecordDocument: Apollo.DocumentNode;
7355
8522
  export type CreateRecordMutationFn = Apollo.MutationFunction<CreateRecordMutation, CreateRecordMutationVariables>;
7356
8523
  /**
@@ -7436,8 +8603,14 @@ export declare function useDoesFileExistAsChildLazyQuery(baseOptions?: Apollo.La
7436
8603
  treeId: Scalars["ID"];
7437
8604
  filename: Scalars["String"];
7438
8605
  }>>;
8606
+ export declare function useDoesFileExistAsChildSuspenseQuery(baseOptions?: Apollo.SuspenseQueryHookOptions<DoesFileExistAsChildQuery, DoesFileExistAsChildQueryVariables>): Apollo.UseSuspenseQueryResult<DoesFileExistAsChildQuery, Exact<{
8607
+ parentNode?: InputMaybe<Scalars["ID"]>;
8608
+ treeId: Scalars["ID"];
8609
+ filename: Scalars["String"];
8610
+ }>>;
7439
8611
  export type DoesFileExistAsChildQueryHookResult = ReturnType<typeof useDoesFileExistAsChildQuery>;
7440
8612
  export type DoesFileExistAsChildLazyQueryHookResult = ReturnType<typeof useDoesFileExistAsChildLazyQuery>;
8613
+ export type DoesFileExistAsChildSuspenseQueryHookResult = ReturnType<typeof useDoesFileExistAsChildSuspenseQuery>;
7441
8614
  export type DoesFileExistAsChildQueryResult = Apollo.QueryResult<DoesFileExistAsChildQuery, DoesFileExistAsChildQueryVariables>;
7442
8615
  export declare const GetFileDataDocument: Apollo.DocumentNode;
7443
8616
  /**
@@ -7468,8 +8641,14 @@ export declare function useGetFileDataLazyQuery(baseOptions?: Apollo.LazyQueryHo
7468
8641
  fileId: Scalars["String"];
7469
8642
  previewsStatusAttribute: Scalars["ID"];
7470
8643
  }>>;
8644
+ export declare function useGetFileDataSuspenseQuery(baseOptions?: Apollo.SuspenseQueryHookOptions<GetFileDataQuery, GetFileDataQueryVariables>): Apollo.UseSuspenseQueryResult<GetFileDataQuery, Exact<{
8645
+ library: Scalars["ID"];
8646
+ fileId: Scalars["String"];
8647
+ previewsStatusAttribute: Scalars["ID"];
8648
+ }>>;
7471
8649
  export type GetFileDataQueryHookResult = ReturnType<typeof useGetFileDataQuery>;
7472
8650
  export type GetFileDataLazyQueryHookResult = ReturnType<typeof useGetFileDataLazyQuery>;
8651
+ export type GetFileDataSuspenseQueryHookResult = ReturnType<typeof useGetFileDataSuspenseQuery>;
7473
8652
  export type GetFileDataQueryResult = Apollo.QueryResult<GetFileDataQuery, GetFileDataQueryVariables>;
7474
8653
  export declare const RecordFormDocument: Apollo.DocumentNode;
7475
8654
  /**
@@ -7503,8 +8682,15 @@ export declare function useRecordFormLazyQuery(baseOptions?: Apollo.LazyQueryHoo
7503
8682
  recordId?: InputMaybe<Scalars["String"]>;
7504
8683
  version?: InputMaybe<Array<ValueVersionInput> | ValueVersionInput>;
7505
8684
  }>>;
8685
+ export declare function useRecordFormSuspenseQuery(baseOptions?: Apollo.SuspenseQueryHookOptions<RecordFormQuery, RecordFormQueryVariables>): Apollo.UseSuspenseQueryResult<RecordFormQuery, Exact<{
8686
+ libraryId: Scalars["String"];
8687
+ formId: Scalars["String"];
8688
+ recordId?: InputMaybe<Scalars["String"]>;
8689
+ version?: InputMaybe<Array<ValueVersionInput> | ValueVersionInput>;
8690
+ }>>;
7506
8691
  export type RecordFormQueryHookResult = ReturnType<typeof useRecordFormQuery>;
7507
8692
  export type RecordFormLazyQueryHookResult = ReturnType<typeof useRecordFormLazyQuery>;
8693
+ export type RecordFormSuspenseQueryHookResult = ReturnType<typeof useRecordFormSuspenseQuery>;
7508
8694
  export type RecordFormQueryResult = Apollo.QueryResult<RecordFormQuery, RecordFormQueryVariables>;
7509
8695
  export declare const RecordUpdateDocument: Apollo.DocumentNode;
7510
8696
  /**
@@ -7528,6 +8714,44 @@ export declare function useRecordUpdateSubscription(baseOptions?: Apollo.Subscri
7528
8714
  }>>;
7529
8715
  export type RecordUpdateSubscriptionHookResult = ReturnType<typeof useRecordUpdateSubscription>;
7530
8716
  export type RecordUpdateSubscriptionResult = Apollo.SubscriptionResult<RecordUpdateSubscription>;
8717
+ export declare const GetRecordsFromLibraryDocument: Apollo.DocumentNode;
8718
+ /**
8719
+ * __useGetRecordsFromLibraryQuery__
8720
+ *
8721
+ * To run a query within a React component, call `useGetRecordsFromLibraryQuery` and pass it any options that fit your needs.
8722
+ * When your component renders, `useGetRecordsFromLibraryQuery` returns an object from Apollo Client that contains loading, error, and data properties
8723
+ * you can use to render your UI.
8724
+ *
8725
+ * @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;
8726
+ *
8727
+ * @example
8728
+ * const { data, loading, error } = useGetRecordsFromLibraryQuery({
8729
+ * variables: {
8730
+ * libraryId: // value for 'libraryId'
8731
+ * pagination: // value for 'pagination'
8732
+ * filters: // value for 'filters'
8733
+ * },
8734
+ * });
8735
+ */
8736
+ export declare function useGetRecordsFromLibraryQuery(baseOptions: Apollo.QueryHookOptions<GetRecordsFromLibraryQuery, GetRecordsFromLibraryQueryVariables>): Apollo.QueryResult<GetRecordsFromLibraryQuery, Exact<{
8737
+ libraryId: Scalars["ID"];
8738
+ pagination?: InputMaybe<RecordsPagination>;
8739
+ filters?: InputMaybe<Array<InputMaybe<RecordFilterInput>> | InputMaybe<RecordFilterInput>>;
8740
+ }>>;
8741
+ export declare function useGetRecordsFromLibraryLazyQuery(baseOptions?: Apollo.LazyQueryHookOptions<GetRecordsFromLibraryQuery, GetRecordsFromLibraryQueryVariables>): Apollo.LazyQueryResultTuple<GetRecordsFromLibraryQuery, Exact<{
8742
+ libraryId: Scalars["ID"];
8743
+ pagination?: InputMaybe<RecordsPagination>;
8744
+ filters?: InputMaybe<Array<InputMaybe<RecordFilterInput>> | InputMaybe<RecordFilterInput>>;
8745
+ }>>;
8746
+ export declare function useGetRecordsFromLibrarySuspenseQuery(baseOptions?: Apollo.SuspenseQueryHookOptions<GetRecordsFromLibraryQuery, GetRecordsFromLibraryQueryVariables>): Apollo.UseSuspenseQueryResult<GetRecordsFromLibraryQuery, Exact<{
8747
+ libraryId: Scalars["ID"];
8748
+ pagination?: InputMaybe<RecordsPagination>;
8749
+ filters?: InputMaybe<Array<InputMaybe<RecordFilterInput>> | InputMaybe<RecordFilterInput>>;
8750
+ }>>;
8751
+ export type GetRecordsFromLibraryQueryHookResult = ReturnType<typeof useGetRecordsFromLibraryQuery>;
8752
+ export type GetRecordsFromLibraryLazyQueryHookResult = ReturnType<typeof useGetRecordsFromLibraryLazyQuery>;
8753
+ export type GetRecordsFromLibrarySuspenseQueryHookResult = ReturnType<typeof useGetRecordsFromLibrarySuspenseQuery>;
8754
+ export type GetRecordsFromLibraryQueryResult = Apollo.QueryResult<GetRecordsFromLibraryQuery, GetRecordsFromLibraryQueryVariables>;
7531
8755
  export declare const IndexRecordsDocument: Apollo.DocumentNode;
7532
8756
  export type IndexRecordsMutationFn = Apollo.MutationFunction<IndexRecordsMutation, IndexRecordsMutationVariables>;
7533
8757
  /**
@@ -7555,6 +8779,33 @@ export declare function useIndexRecordsMutation(baseOptions?: Apollo.MutationHoo
7555
8779
  export type IndexRecordsMutationHookResult = ReturnType<typeof useIndexRecordsMutation>;
7556
8780
  export type IndexRecordsMutationResult = Apollo.MutationResult<IndexRecordsMutation>;
7557
8781
  export type IndexRecordsMutationOptions = Apollo.BaseMutationOptions<IndexRecordsMutation, IndexRecordsMutationVariables>;
8782
+ export declare const PurgeRecordDocument: Apollo.DocumentNode;
8783
+ export type PurgeRecordMutationFn = Apollo.MutationFunction<PurgeRecordMutation, PurgeRecordMutationVariables>;
8784
+ /**
8785
+ * __usePurgeRecordMutation__
8786
+ *
8787
+ * To run a mutation, you first call `usePurgeRecordMutation` within a React component and pass it any options that fit your needs.
8788
+ * When your component renders, `usePurgeRecordMutation` returns a tuple that includes:
8789
+ * - A mutate function that you can call at any time to execute the mutation
8790
+ * - An object with fields that represent the current status of the mutation's execution
8791
+ *
8792
+ * @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;
8793
+ *
8794
+ * @example
8795
+ * const [purgeRecordMutation, { data, loading, error }] = usePurgeRecordMutation({
8796
+ * variables: {
8797
+ * libraryId: // value for 'libraryId'
8798
+ * recordId: // value for 'recordId'
8799
+ * },
8800
+ * });
8801
+ */
8802
+ export declare function usePurgeRecordMutation(baseOptions?: Apollo.MutationHookOptions<PurgeRecordMutation, PurgeRecordMutationVariables>): Apollo.MutationTuple<PurgeRecordMutation, Exact<{
8803
+ libraryId: Scalars["ID"];
8804
+ recordId: Scalars["ID"];
8805
+ }>, Apollo.DefaultContext, Apollo.ApolloCache<any>>;
8806
+ export type PurgeRecordMutationHookResult = ReturnType<typeof usePurgeRecordMutation>;
8807
+ export type PurgeRecordMutationResult = Apollo.MutationResult<PurgeRecordMutation>;
8808
+ export type PurgeRecordMutationOptions = Apollo.BaseMutationOptions<PurgeRecordMutation, PurgeRecordMutationVariables>;
7558
8809
  export declare const CancelTaskDocument: Apollo.DocumentNode;
7559
8810
  export type CancelTaskMutationFn = Apollo.MutationFunction<CancelTaskMutation, CancelTaskMutationVariables>;
7560
8811
  /**
@@ -7603,8 +8854,12 @@ export declare function useCheckTreeExistenceQuery(baseOptions?: Apollo.QueryHoo
7603
8854
  export declare function useCheckTreeExistenceLazyQuery(baseOptions?: Apollo.LazyQueryHookOptions<CheckTreeExistenceQuery, CheckTreeExistenceQueryVariables>): Apollo.LazyQueryResultTuple<CheckTreeExistenceQuery, Exact<{
7604
8855
  id?: InputMaybe<Array<Scalars["ID"]> | Scalars["ID"]>;
7605
8856
  }>>;
8857
+ export declare function useCheckTreeExistenceSuspenseQuery(baseOptions?: Apollo.SuspenseQueryHookOptions<CheckTreeExistenceQuery, CheckTreeExistenceQueryVariables>): Apollo.UseSuspenseQueryResult<CheckTreeExistenceQuery, Exact<{
8858
+ id?: InputMaybe<Array<Scalars["ID"]> | Scalars["ID"]>;
8859
+ }>>;
7606
8860
  export type CheckTreeExistenceQueryHookResult = ReturnType<typeof useCheckTreeExistenceQuery>;
7607
8861
  export type CheckTreeExistenceLazyQueryHookResult = ReturnType<typeof useCheckTreeExistenceLazyQuery>;
8862
+ export type CheckTreeExistenceSuspenseQueryHookResult = ReturnType<typeof useCheckTreeExistenceSuspenseQuery>;
7608
8863
  export type CheckTreeExistenceQueryResult = Apollo.QueryResult<CheckTreeExistenceQuery, CheckTreeExistenceQueryVariables>;
7609
8864
  export declare const DeleteTreeDocument: Apollo.DocumentNode;
7610
8865
  export type DeleteTreeMutationFn = Apollo.MutationFunction<DeleteTreeMutation, DeleteTreeMutationVariables>;
@@ -7654,8 +8909,12 @@ export declare function useGetTreeByIdQuery(baseOptions?: Apollo.QueryHookOption
7654
8909
  export declare function useGetTreeByIdLazyQuery(baseOptions?: Apollo.LazyQueryHookOptions<GetTreeByIdQuery, GetTreeByIdQueryVariables>): Apollo.LazyQueryResultTuple<GetTreeByIdQuery, Exact<{
7655
8910
  id?: InputMaybe<Array<Scalars["ID"]> | Scalars["ID"]>;
7656
8911
  }>>;
8912
+ export declare function useGetTreeByIdSuspenseQuery(baseOptions?: Apollo.SuspenseQueryHookOptions<GetTreeByIdQuery, GetTreeByIdQueryVariables>): Apollo.UseSuspenseQueryResult<GetTreeByIdQuery, Exact<{
8913
+ id?: InputMaybe<Array<Scalars["ID"]> | Scalars["ID"]>;
8914
+ }>>;
7657
8915
  export type GetTreeByIdQueryHookResult = ReturnType<typeof useGetTreeByIdQuery>;
7658
8916
  export type GetTreeByIdLazyQueryHookResult = ReturnType<typeof useGetTreeByIdLazyQuery>;
8917
+ export type GetTreeByIdSuspenseQueryHookResult = ReturnType<typeof useGetTreeByIdSuspenseQuery>;
7659
8918
  export type GetTreeByIdQueryResult = Apollo.QueryResult<GetTreeByIdQuery, GetTreeByIdQueryVariables>;
7660
8919
  export declare const GetTreeLibrariesDocument: Apollo.DocumentNode;
7661
8920
  /**
@@ -7683,8 +8942,13 @@ export declare function useGetTreeLibrariesLazyQuery(baseOptions?: Apollo.LazyQu
7683
8942
  treeId?: InputMaybe<Array<Scalars["ID"]> | Scalars["ID"]>;
7684
8943
  library?: InputMaybe<Scalars["String"]>;
7685
8944
  }>>;
8945
+ export declare function useGetTreeLibrariesSuspenseQuery(baseOptions?: Apollo.SuspenseQueryHookOptions<GetTreeLibrariesQuery, GetTreeLibrariesQueryVariables>): Apollo.UseSuspenseQueryResult<GetTreeLibrariesQuery, Exact<{
8946
+ treeId?: InputMaybe<Array<Scalars["ID"]> | Scalars["ID"]>;
8947
+ library?: InputMaybe<Scalars["String"]>;
8948
+ }>>;
7686
8949
  export type GetTreeLibrariesQueryHookResult = ReturnType<typeof useGetTreeLibrariesQuery>;
7687
8950
  export type GetTreeLibrariesLazyQueryHookResult = ReturnType<typeof useGetTreeLibrariesLazyQuery>;
8951
+ export type GetTreeLibrariesSuspenseQueryHookResult = ReturnType<typeof useGetTreeLibrariesSuspenseQuery>;
7688
8952
  export type GetTreeLibrariesQueryResult = Apollo.QueryResult<GetTreeLibrariesQuery, GetTreeLibrariesQueryVariables>;
7689
8953
  export declare const GetTreesDocument: Apollo.DocumentNode;
7690
8954
  /**
@@ -7708,8 +8972,12 @@ export declare function useGetTreesQuery(baseOptions?: Apollo.QueryHookOptions<G
7708
8972
  export declare function useGetTreesLazyQuery(baseOptions?: Apollo.LazyQueryHookOptions<GetTreesQuery, GetTreesQueryVariables>): Apollo.LazyQueryResultTuple<GetTreesQuery, Exact<{
7709
8973
  [key: string]: never;
7710
8974
  }>>;
8975
+ export declare function useGetTreesSuspenseQuery(baseOptions?: Apollo.SuspenseQueryHookOptions<GetTreesQuery, GetTreesQueryVariables>): Apollo.UseSuspenseQueryResult<GetTreesQuery, Exact<{
8976
+ [key: string]: never;
8977
+ }>>;
7711
8978
  export type GetTreesQueryHookResult = ReturnType<typeof useGetTreesQuery>;
7712
8979
  export type GetTreesLazyQueryHookResult = ReturnType<typeof useGetTreesLazyQuery>;
8980
+ export type GetTreesSuspenseQueryHookResult = ReturnType<typeof useGetTreesSuspenseQuery>;
7713
8981
  export type GetTreesQueryResult = Apollo.QueryResult<GetTreesQuery, GetTreesQueryVariables>;
7714
8982
  export declare const SaveTreeDocument: Apollo.DocumentNode;
7715
8983
  export type SaveTreeMutationFn = Apollo.MutationFunction<SaveTreeMutation, SaveTreeMutationVariables>;
@@ -7752,6 +9020,7 @@ export declare const TreeNodeChildrenDocument: Apollo.DocumentNode;
7752
9020
  * treeId: // value for 'treeId'
7753
9021
  * node: // value for 'node'
7754
9022
  * pagination: // value for 'pagination'
9023
+ * childrenAsRecordValuePermissionFilter: // value for 'childrenAsRecordValuePermissionFilter'
7755
9024
  * },
7756
9025
  * });
7757
9026
  */
@@ -7759,14 +9028,23 @@ export declare function useTreeNodeChildrenQuery(baseOptions: Apollo.QueryHookOp
7759
9028
  treeId: Scalars["ID"];
7760
9029
  node?: InputMaybe<Scalars["ID"]>;
7761
9030
  pagination?: InputMaybe<Pagination>;
9031
+ childrenAsRecordValuePermissionFilter?: InputMaybe<ChildrenAsRecordValuePermissionFilterInput>;
7762
9032
  }>>;
7763
9033
  export declare function useTreeNodeChildrenLazyQuery(baseOptions?: Apollo.LazyQueryHookOptions<TreeNodeChildrenQuery, TreeNodeChildrenQueryVariables>): Apollo.LazyQueryResultTuple<TreeNodeChildrenQuery, Exact<{
7764
9034
  treeId: Scalars["ID"];
7765
9035
  node?: InputMaybe<Scalars["ID"]>;
7766
9036
  pagination?: InputMaybe<Pagination>;
9037
+ childrenAsRecordValuePermissionFilter?: InputMaybe<ChildrenAsRecordValuePermissionFilterInput>;
9038
+ }>>;
9039
+ export declare function useTreeNodeChildrenSuspenseQuery(baseOptions?: Apollo.SuspenseQueryHookOptions<TreeNodeChildrenQuery, TreeNodeChildrenQueryVariables>): Apollo.UseSuspenseQueryResult<TreeNodeChildrenQuery, Exact<{
9040
+ treeId: Scalars["ID"];
9041
+ node?: InputMaybe<Scalars["ID"]>;
9042
+ pagination?: InputMaybe<Pagination>;
9043
+ childrenAsRecordValuePermissionFilter?: InputMaybe<ChildrenAsRecordValuePermissionFilterInput>;
7767
9044
  }>>;
7768
9045
  export type TreeNodeChildrenQueryHookResult = ReturnType<typeof useTreeNodeChildrenQuery>;
7769
9046
  export type TreeNodeChildrenLazyQueryHookResult = ReturnType<typeof useTreeNodeChildrenLazyQuery>;
9047
+ export type TreeNodeChildrenSuspenseQueryHookResult = ReturnType<typeof useTreeNodeChildrenSuspenseQuery>;
7770
9048
  export type TreeNodeChildrenQueryResult = Apollo.QueryResult<TreeNodeChildrenQuery, TreeNodeChildrenQueryVariables>;
7771
9049
  export declare const GetUserDataDocument: Apollo.DocumentNode;
7772
9050
  /**
@@ -7794,8 +9072,13 @@ export declare function useGetUserDataLazyQuery(baseOptions?: Apollo.LazyQueryHo
7794
9072
  keys: Array<Scalars["String"]> | Scalars["String"];
7795
9073
  global?: InputMaybe<Scalars["Boolean"]>;
7796
9074
  }>>;
9075
+ export declare function useGetUserDataSuspenseQuery(baseOptions?: Apollo.SuspenseQueryHookOptions<GetUserDataQuery, GetUserDataQueryVariables>): Apollo.UseSuspenseQueryResult<GetUserDataQuery, Exact<{
9076
+ keys: Array<Scalars["String"]> | Scalars["String"];
9077
+ global?: InputMaybe<Scalars["Boolean"]>;
9078
+ }>>;
7797
9079
  export type GetUserDataQueryHookResult = ReturnType<typeof useGetUserDataQuery>;
7798
9080
  export type GetUserDataLazyQueryHookResult = ReturnType<typeof useGetUserDataLazyQuery>;
9081
+ export type GetUserDataSuspenseQueryHookResult = ReturnType<typeof useGetUserDataSuspenseQuery>;
7799
9082
  export type GetUserDataQueryResult = Apollo.QueryResult<GetUserDataQuery, GetUserDataQueryVariables>;
7800
9083
  export declare const SaveUserDataDocument: Apollo.DocumentNode;
7801
9084
  export type SaveUserDataMutationFn = Apollo.MutationFunction<SaveUserDataMutation, SaveUserDataMutationVariables>;
@@ -7857,38 +9140,6 @@ export declare function useDeleteValueMutation(baseOptions?: Apollo.MutationHook
7857
9140
  export type DeleteValueMutationHookResult = ReturnType<typeof useDeleteValueMutation>;
7858
9141
  export type DeleteValueMutationResult = Apollo.MutationResult<DeleteValueMutation>;
7859
9142
  export type DeleteValueMutationOptions = Apollo.BaseMutationOptions<DeleteValueMutation, DeleteValueMutationVariables>;
7860
- export declare const RunActionsListAndFormatOnValueDocument: Apollo.DocumentNode;
7861
- /**
7862
- * __useRunActionsListAndFormatOnValueQuery__
7863
- *
7864
- * To run a query within a React component, call `useRunActionsListAndFormatOnValueQuery` and pass it any options that fit your needs.
7865
- * When your component renders, `useRunActionsListAndFormatOnValueQuery` returns an object from Apollo Client that contains loading, error, and data properties
7866
- * you can use to render your UI.
7867
- *
7868
- * @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;
7869
- *
7870
- * @example
7871
- * const { data, loading, error } = useRunActionsListAndFormatOnValueQuery({
7872
- * variables: {
7873
- * library: // value for 'library'
7874
- * value: // value for 'value'
7875
- * version: // value for 'version'
7876
- * },
7877
- * });
7878
- */
7879
- export declare function useRunActionsListAndFormatOnValueQuery(baseOptions: Apollo.QueryHookOptions<RunActionsListAndFormatOnValueQuery, RunActionsListAndFormatOnValueQueryVariables>): Apollo.QueryResult<RunActionsListAndFormatOnValueQuery, Exact<{
7880
- library: Scalars["ID"];
7881
- value?: InputMaybe<ValueBatchInput>;
7882
- version?: InputMaybe<Array<InputMaybe<ValueVersionInput>> | InputMaybe<ValueVersionInput>>;
7883
- }>>;
7884
- export declare function useRunActionsListAndFormatOnValueLazyQuery(baseOptions?: Apollo.LazyQueryHookOptions<RunActionsListAndFormatOnValueQuery, RunActionsListAndFormatOnValueQueryVariables>): Apollo.LazyQueryResultTuple<RunActionsListAndFormatOnValueQuery, Exact<{
7885
- library: Scalars["ID"];
7886
- value?: InputMaybe<ValueBatchInput>;
7887
- version?: InputMaybe<Array<InputMaybe<ValueVersionInput>> | InputMaybe<ValueVersionInput>>;
7888
- }>>;
7889
- export type RunActionsListAndFormatOnValueQueryHookResult = ReturnType<typeof useRunActionsListAndFormatOnValueQuery>;
7890
- export type RunActionsListAndFormatOnValueLazyQueryHookResult = ReturnType<typeof useRunActionsListAndFormatOnValueLazyQuery>;
7891
- export type RunActionsListAndFormatOnValueQueryResult = Apollo.QueryResult<RunActionsListAndFormatOnValueQuery, RunActionsListAndFormatOnValueQueryVariables>;
7892
9143
  export declare const SaveValueBatchDocument: Apollo.DocumentNode;
7893
9144
  export type SaveValueBatchMutationFn = Apollo.MutationFunction<SaveValueBatchMutation, SaveValueBatchMutationVariables>;
7894
9145
  /**
@@ -7970,8 +9221,12 @@ export declare function useGetViewQuery(baseOptions: Apollo.QueryHookOptions<Get
7970
9221
  export declare function useGetViewLazyQuery(baseOptions?: Apollo.LazyQueryHookOptions<GetViewQuery, GetViewQueryVariables>): Apollo.LazyQueryResultTuple<GetViewQuery, Exact<{
7971
9222
  viewId: Scalars["String"];
7972
9223
  }>>;
9224
+ export declare function useGetViewSuspenseQuery(baseOptions?: Apollo.SuspenseQueryHookOptions<GetViewQuery, GetViewQueryVariables>): Apollo.UseSuspenseQueryResult<GetViewQuery, Exact<{
9225
+ viewId: Scalars["String"];
9226
+ }>>;
7973
9227
  export type GetViewQueryHookResult = ReturnType<typeof useGetViewQuery>;
7974
9228
  export type GetViewLazyQueryHookResult = ReturnType<typeof useGetViewLazyQuery>;
9229
+ export type GetViewSuspenseQueryHookResult = ReturnType<typeof useGetViewSuspenseQuery>;
7975
9230
  export type GetViewQueryResult = Apollo.QueryResult<GetViewQuery, GetViewQueryVariables>;
7976
9231
  export declare const GetViewsListDocument: Apollo.DocumentNode;
7977
9232
  /**
@@ -7996,8 +9251,12 @@ export declare function useGetViewsListQuery(baseOptions: Apollo.QueryHookOption
7996
9251
  export declare function useGetViewsListLazyQuery(baseOptions?: Apollo.LazyQueryHookOptions<GetViewsListQuery, GetViewsListQueryVariables>): Apollo.LazyQueryResultTuple<GetViewsListQuery, Exact<{
7997
9252
  libraryId: Scalars["String"];
7998
9253
  }>>;
9254
+ export declare function useGetViewsListSuspenseQuery(baseOptions?: Apollo.SuspenseQueryHookOptions<GetViewsListQuery, GetViewsListQueryVariables>): Apollo.UseSuspenseQueryResult<GetViewsListQuery, Exact<{
9255
+ libraryId: Scalars["String"];
9256
+ }>>;
7999
9257
  export type GetViewsListQueryHookResult = ReturnType<typeof useGetViewsListQuery>;
8000
9258
  export type GetViewsListLazyQueryHookResult = ReturnType<typeof useGetViewsListLazyQuery>;
9259
+ export type GetViewsListSuspenseQueryHookResult = ReturnType<typeof useGetViewsListSuspenseQuery>;
8001
9260
  export type GetViewsListQueryResult = Apollo.QueryResult<GetViewsListQuery, GetViewsListQueryVariables>;
8002
9261
  export declare const SaveViewDocument: Apollo.DocumentNode;
8003
9262
  export type SaveViewMutationFn = Apollo.MutationFunction<SaveViewMutation, SaveViewMutationVariables>;
@@ -8047,8 +9306,12 @@ export declare function useGetAttributesByLibWithPermissionsQuery(baseOptions: A
8047
9306
  export declare function useGetAttributesByLibWithPermissionsLazyQuery(baseOptions?: Apollo.LazyQueryHookOptions<GetAttributesByLibWithPermissionsQuery, GetAttributesByLibWithPermissionsQueryVariables>): Apollo.LazyQueryResultTuple<GetAttributesByLibWithPermissionsQuery, Exact<{
8048
9307
  library: Scalars["String"];
8049
9308
  }>>;
9309
+ export declare function useGetAttributesByLibWithPermissionsSuspenseQuery(baseOptions?: Apollo.SuspenseQueryHookOptions<GetAttributesByLibWithPermissionsQuery, GetAttributesByLibWithPermissionsQueryVariables>): Apollo.UseSuspenseQueryResult<GetAttributesByLibWithPermissionsQuery, Exact<{
9310
+ library: Scalars["String"];
9311
+ }>>;
8050
9312
  export type GetAttributesByLibWithPermissionsQueryHookResult = ReturnType<typeof useGetAttributesByLibWithPermissionsQuery>;
8051
9313
  export type GetAttributesByLibWithPermissionsLazyQueryHookResult = ReturnType<typeof useGetAttributesByLibWithPermissionsLazyQuery>;
9314
+ export type GetAttributesByLibWithPermissionsSuspenseQueryHookResult = ReturnType<typeof useGetAttributesByLibWithPermissionsSuspenseQuery>;
8052
9315
  export type GetAttributesByLibWithPermissionsQueryResult = Apollo.QueryResult<GetAttributesByLibWithPermissionsQuery, GetAttributesByLibWithPermissionsQueryVariables>;
8053
9316
  export declare const ExplorerAttributesDocument: Apollo.DocumentNode;
8054
9317
  /**
@@ -8073,8 +9336,12 @@ export declare function useExplorerAttributesQuery(baseOptions?: Apollo.QueryHoo
8073
9336
  export declare function useExplorerAttributesLazyQuery(baseOptions?: Apollo.LazyQueryHookOptions<ExplorerAttributesQuery, ExplorerAttributesQueryVariables>): Apollo.LazyQueryResultTuple<ExplorerAttributesQuery, Exact<{
8074
9337
  ids?: InputMaybe<Array<Scalars["ID"]> | Scalars["ID"]>;
8075
9338
  }>>;
9339
+ export declare function useExplorerAttributesSuspenseQuery(baseOptions?: Apollo.SuspenseQueryHookOptions<ExplorerAttributesQuery, ExplorerAttributesQueryVariables>): Apollo.UseSuspenseQueryResult<ExplorerAttributesQuery, Exact<{
9340
+ ids?: InputMaybe<Array<Scalars["ID"]> | Scalars["ID"]>;
9341
+ }>>;
8076
9342
  export type ExplorerAttributesQueryHookResult = ReturnType<typeof useExplorerAttributesQuery>;
8077
9343
  export type ExplorerAttributesLazyQueryHookResult = ReturnType<typeof useExplorerAttributesLazyQuery>;
9344
+ export type ExplorerAttributesSuspenseQueryHookResult = ReturnType<typeof useExplorerAttributesSuspenseQuery>;
8078
9345
  export type ExplorerAttributesQueryResult = Apollo.QueryResult<ExplorerAttributesQuery, ExplorerAttributesQueryVariables>;
8079
9346
  export declare const ExplorerLinkAttributeDocument: Apollo.DocumentNode;
8080
9347
  /**
@@ -8099,8 +9366,12 @@ export declare function useExplorerLinkAttributeQuery(baseOptions: Apollo.QueryH
8099
9366
  export declare function useExplorerLinkAttributeLazyQuery(baseOptions?: Apollo.LazyQueryHookOptions<ExplorerLinkAttributeQuery, ExplorerLinkAttributeQueryVariables>): Apollo.LazyQueryResultTuple<ExplorerLinkAttributeQuery, Exact<{
8100
9367
  id: Scalars["ID"];
8101
9368
  }>>;
9369
+ export declare function useExplorerLinkAttributeSuspenseQuery(baseOptions?: Apollo.SuspenseQueryHookOptions<ExplorerLinkAttributeQuery, ExplorerLinkAttributeQueryVariables>): Apollo.UseSuspenseQueryResult<ExplorerLinkAttributeQuery, Exact<{
9370
+ id: Scalars["ID"];
9371
+ }>>;
8102
9372
  export type ExplorerLinkAttributeQueryHookResult = ReturnType<typeof useExplorerLinkAttributeQuery>;
8103
9373
  export type ExplorerLinkAttributeLazyQueryHookResult = ReturnType<typeof useExplorerLinkAttributeLazyQuery>;
9374
+ export type ExplorerLinkAttributeSuspenseQueryHookResult = ReturnType<typeof useExplorerLinkAttributeSuspenseQuery>;
8104
9375
  export type ExplorerLinkAttributeQueryResult = Apollo.QueryResult<ExplorerLinkAttributeQuery, ExplorerLinkAttributeQueryVariables>;
8105
9376
  export declare const ExplorerLibraryDataDocument: Apollo.DocumentNode;
8106
9377
  /**
@@ -8140,8 +9411,17 @@ export declare function useExplorerLibraryDataLazyQuery(baseOptions?: Apollo.Laz
8140
9411
  multipleSort?: InputMaybe<Array<RecordSortInput> | RecordSortInput>;
8141
9412
  searchQuery?: InputMaybe<Scalars["String"]>;
8142
9413
  }>>;
9414
+ export declare function useExplorerLibraryDataSuspenseQuery(baseOptions?: Apollo.SuspenseQueryHookOptions<ExplorerLibraryDataQuery, ExplorerLibraryDataQueryVariables>): Apollo.UseSuspenseQueryResult<ExplorerLibraryDataQuery, Exact<{
9415
+ libraryId: Scalars["ID"];
9416
+ attributeIds: Array<Scalars["ID"]> | Scalars["ID"];
9417
+ pagination?: InputMaybe<RecordsPagination>;
9418
+ filters?: InputMaybe<Array<InputMaybe<RecordFilterInput>> | InputMaybe<RecordFilterInput>>;
9419
+ multipleSort?: InputMaybe<Array<RecordSortInput> | RecordSortInput>;
9420
+ searchQuery?: InputMaybe<Scalars["String"]>;
9421
+ }>>;
8143
9422
  export type ExplorerLibraryDataQueryHookResult = ReturnType<typeof useExplorerLibraryDataQuery>;
8144
9423
  export type ExplorerLibraryDataLazyQueryHookResult = ReturnType<typeof useExplorerLibraryDataLazyQuery>;
9424
+ export type ExplorerLibraryDataSuspenseQueryHookResult = ReturnType<typeof useExplorerLibraryDataSuspenseQuery>;
8145
9425
  export type ExplorerLibraryDataQueryResult = Apollo.QueryResult<ExplorerLibraryDataQuery, ExplorerLibraryDataQueryVariables>;
8146
9426
  export declare const ExplorerLinkDataDocument: Apollo.DocumentNode;
8147
9427
  /**
@@ -8175,8 +9455,15 @@ export declare function useExplorerLinkDataLazyQuery(baseOptions?: Apollo.LazyQu
8175
9455
  parentRecordId?: InputMaybe<Scalars["String"]>;
8176
9456
  linkAttributeId: Scalars["ID"];
8177
9457
  }>>;
9458
+ export declare function useExplorerLinkDataSuspenseQuery(baseOptions?: Apollo.SuspenseQueryHookOptions<ExplorerLinkDataQuery, ExplorerLinkDataQueryVariables>): Apollo.UseSuspenseQueryResult<ExplorerLinkDataQuery, Exact<{
9459
+ attributeIds: Array<Scalars["ID"]> | Scalars["ID"];
9460
+ parentLibraryId: Scalars["ID"];
9461
+ parentRecordId?: InputMaybe<Scalars["String"]>;
9462
+ linkAttributeId: Scalars["ID"];
9463
+ }>>;
8178
9464
  export type ExplorerLinkDataQueryHookResult = ReturnType<typeof useExplorerLinkDataQuery>;
8179
9465
  export type ExplorerLinkDataLazyQueryHookResult = ReturnType<typeof useExplorerLinkDataLazyQuery>;
9466
+ export type ExplorerLinkDataSuspenseQueryHookResult = ReturnType<typeof useExplorerLinkDataSuspenseQuery>;
8180
9467
  export type ExplorerLinkDataQueryResult = Apollo.QueryResult<ExplorerLinkDataQuery, ExplorerLinkDataQueryVariables>;
8181
9468
  export declare const GetLibraryAttributesDocument: Apollo.DocumentNode;
8182
9469
  /**
@@ -8201,8 +9488,12 @@ export declare function useGetLibraryAttributesQuery(baseOptions: Apollo.QueryHo
8201
9488
  export declare function useGetLibraryAttributesLazyQuery(baseOptions?: Apollo.LazyQueryHookOptions<GetLibraryAttributesQuery, GetLibraryAttributesQueryVariables>): Apollo.LazyQueryResultTuple<GetLibraryAttributesQuery, Exact<{
8202
9489
  libraryId: Scalars["ID"];
8203
9490
  }>>;
9491
+ export declare function useGetLibraryAttributesSuspenseQuery(baseOptions?: Apollo.SuspenseQueryHookOptions<GetLibraryAttributesQuery, GetLibraryAttributesQueryVariables>): Apollo.UseSuspenseQueryResult<GetLibraryAttributesQuery, Exact<{
9492
+ libraryId: Scalars["ID"];
9493
+ }>>;
8204
9494
  export type GetLibraryAttributesQueryHookResult = ReturnType<typeof useGetLibraryAttributesQuery>;
8205
9495
  export type GetLibraryAttributesLazyQueryHookResult = ReturnType<typeof useGetLibraryAttributesLazyQuery>;
9496
+ export type GetLibraryAttributesSuspenseQueryHookResult = ReturnType<typeof useGetLibraryAttributesSuspenseQuery>;
8206
9497
  export type GetLibraryAttributesQueryResult = Apollo.QueryResult<GetLibraryAttributesQuery, GetLibraryAttributesQueryVariables>;
8207
9498
  export declare const ExplorerLibraryDetailsDocument: Apollo.DocumentNode;
8208
9499
  /**
@@ -8227,8 +9518,12 @@ export declare function useExplorerLibraryDetailsQuery(baseOptions: Apollo.Query
8227
9518
  export declare function useExplorerLibraryDetailsLazyQuery(baseOptions?: Apollo.LazyQueryHookOptions<ExplorerLibraryDetailsQuery, ExplorerLibraryDetailsQueryVariables>): Apollo.LazyQueryResultTuple<ExplorerLibraryDetailsQuery, Exact<{
8228
9519
  libraryId: Scalars["ID"];
8229
9520
  }>>;
9521
+ export declare function useExplorerLibraryDetailsSuspenseQuery(baseOptions?: Apollo.SuspenseQueryHookOptions<ExplorerLibraryDetailsQuery, ExplorerLibraryDetailsQueryVariables>): Apollo.UseSuspenseQueryResult<ExplorerLibraryDetailsQuery, Exact<{
9522
+ libraryId: Scalars["ID"];
9523
+ }>>;
8230
9524
  export type ExplorerLibraryDetailsQueryHookResult = ReturnType<typeof useExplorerLibraryDetailsQuery>;
8231
9525
  export type ExplorerLibraryDetailsLazyQueryHookResult = ReturnType<typeof useExplorerLibraryDetailsLazyQuery>;
9526
+ export type ExplorerLibraryDetailsSuspenseQueryHookResult = ReturnType<typeof useExplorerLibraryDetailsSuspenseQuery>;
8232
9527
  export type ExplorerLibraryDetailsQueryResult = Apollo.QueryResult<ExplorerLibraryDetailsQuery, ExplorerLibraryDetailsQueryVariables>;
8233
9528
  export declare const ExplorerSelectionIdsDocument: Apollo.DocumentNode;
8234
9529
  /**
@@ -8256,8 +9551,13 @@ export declare function useExplorerSelectionIdsLazyQuery(baseOptions?: Apollo.La
8256
9551
  libraryId: Scalars["ID"];
8257
9552
  filters?: InputMaybe<Array<InputMaybe<RecordFilterInput>> | InputMaybe<RecordFilterInput>>;
8258
9553
  }>>;
9554
+ export declare function useExplorerSelectionIdsSuspenseQuery(baseOptions?: Apollo.SuspenseQueryHookOptions<ExplorerSelectionIdsQuery, ExplorerSelectionIdsQueryVariables>): Apollo.UseSuspenseQueryResult<ExplorerSelectionIdsQuery, Exact<{
9555
+ libraryId: Scalars["ID"];
9556
+ filters?: InputMaybe<Array<InputMaybe<RecordFilterInput>> | InputMaybe<RecordFilterInput>>;
9557
+ }>>;
8259
9558
  export type ExplorerSelectionIdsQueryHookResult = ReturnType<typeof useExplorerSelectionIdsQuery>;
8260
9559
  export type ExplorerSelectionIdsLazyQueryHookResult = ReturnType<typeof useExplorerSelectionIdsLazyQuery>;
9560
+ export type ExplorerSelectionIdsSuspenseQueryHookResult = ReturnType<typeof useExplorerSelectionIdsSuspenseQuery>;
8261
9561
  export type ExplorerSelectionIdsQueryResult = Apollo.QueryResult<ExplorerSelectionIdsQuery, ExplorerSelectionIdsQueryVariables>;
8262
9562
  export declare const MeDocument: Apollo.DocumentNode;
8263
9563
  /**
@@ -8281,8 +9581,12 @@ export declare function useMeQuery(baseOptions?: Apollo.QueryHookOptions<MeQuery
8281
9581
  export declare function useMeLazyQuery(baseOptions?: Apollo.LazyQueryHookOptions<MeQuery, MeQueryVariables>): Apollo.LazyQueryResultTuple<MeQuery, Exact<{
8282
9582
  [key: string]: never;
8283
9583
  }>>;
9584
+ export declare function useMeSuspenseQuery(baseOptions?: Apollo.SuspenseQueryHookOptions<MeQuery, MeQueryVariables>): Apollo.UseSuspenseQueryResult<MeQuery, Exact<{
9585
+ [key: string]: never;
9586
+ }>>;
8284
9587
  export type MeQueryHookResult = ReturnType<typeof useMeQuery>;
8285
9588
  export type MeLazyQueryHookResult = ReturnType<typeof useMeLazyQuery>;
9589
+ export type MeSuspenseQueryHookResult = ReturnType<typeof useMeSuspenseQuery>;
8286
9590
  export type MeQueryResult = Apollo.QueryResult<MeQuery, MeQueryVariables>;
8287
9591
  export declare const UpdateViewDocument: Apollo.DocumentNode;
8288
9592
  export type UpdateViewMutationFn = Apollo.MutationFunction<UpdateViewMutation, UpdateViewMutationVariables>;
@@ -8332,6 +9636,10 @@ export declare function useTreeDataQueryQuery(baseOptions: Apollo.QueryHookOptio
8332
9636
  export declare function useTreeDataQueryLazyQuery(baseOptions?: Apollo.LazyQueryHookOptions<TreeDataQueryQuery, TreeDataQueryQueryVariables>): Apollo.LazyQueryResultTuple<TreeDataQueryQuery, Exact<{
8333
9637
  treeId: Scalars["ID"];
8334
9638
  }>>;
9639
+ export declare function useTreeDataQuerySuspenseQuery(baseOptions?: Apollo.SuspenseQueryHookOptions<TreeDataQueryQuery, TreeDataQueryQueryVariables>): Apollo.UseSuspenseQueryResult<TreeDataQueryQuery, Exact<{
9640
+ treeId: Scalars["ID"];
9641
+ }>>;
8335
9642
  export type TreeDataQueryQueryHookResult = ReturnType<typeof useTreeDataQueryQuery>;
8336
9643
  export type TreeDataQueryLazyQueryHookResult = ReturnType<typeof useTreeDataQueryLazyQuery>;
9644
+ export type TreeDataQuerySuspenseQueryHookResult = ReturnType<typeof useTreeDataQuerySuspenseQuery>;
8337
9645
  export type TreeDataQueryQueryResult = Apollo.QueryResult<TreeDataQueryQuery, TreeDataQueryQueryVariables>;