@leav/ui 0.4.0-8a31349 → 0.4.0-8a9f5492

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 (263) hide show
  1. package/README.md +1 -0
  2. package/dist/_gqlTypes/index.d.ts +1315 -238
  3. package/dist/_gqlTypes/index.js +332 -43
  4. package/dist/_gqlTypes/index.js.map +1 -1
  5. package/dist/_queries/attributes/attributeDetailsFragment.js +1 -0
  6. package/dist/_queries/attributes/attributeDetailsFragment.js.map +1 -1
  7. package/dist/_queries/records/activateRecordsMutation.d.ts +1 -0
  8. package/dist/_queries/records/activateRecordsMutation.js +15 -0
  9. package/dist/_queries/records/activateRecordsMutation.js.map +1 -0
  10. package/dist/_queries/records/getRecordFormQuery.js +9 -0
  11. package/dist/_queries/records/getRecordFormQuery.js.map +1 -1
  12. package/dist/_queries/trees/treeNodeChildrenQuery.js +12 -2
  13. package/dist/_queries/trees/treeNodeChildrenQuery.js.map +1 -1
  14. package/dist/_utils/attributeType.d.ts +2 -1
  15. package/dist/_utils/attributeType.js +2 -1
  16. package/dist/_utils/attributeType.js.map +1 -1
  17. package/dist/components/Explorer/DataView.d.ts +2 -1
  18. package/dist/components/Explorer/DataView.js +14 -11
  19. package/dist/components/Explorer/DataView.js.map +1 -1
  20. package/dist/components/Explorer/Explorer.d.ts +8 -6
  21. package/dist/components/Explorer/Explorer.js +18 -8
  22. package/dist/components/Explorer/Explorer.js.map +1 -1
  23. package/dist/components/Explorer/ExplorerToolbar.d.ts +2 -1
  24. package/dist/components/Explorer/ExplorerToolbar.js +5 -4
  25. package/dist/components/Explorer/ExplorerToolbar.js.map +1 -1
  26. package/dist/components/Explorer/TableCell.js +19 -8
  27. package/dist/components/Explorer/TableCell.js.map +1 -1
  28. package/dist/components/Explorer/_queries/prepareFiltersForRequest.d.ts +1 -1
  29. package/dist/components/Explorer/_queries/prepareFiltersForRequest.js +82 -31
  30. package/dist/components/Explorer/_queries/prepareFiltersForRequest.js.map +1 -1
  31. package/dist/components/Explorer/_queries/useExplorerData.js +35 -26
  32. package/dist/components/Explorer/_queries/useExplorerData.js.map +1 -1
  33. package/dist/components/Explorer/_types.d.ts +40 -5
  34. package/dist/components/Explorer/_types.js +1 -0
  35. package/dist/components/Explorer/_types.js.map +1 -1
  36. package/dist/components/Explorer/actions-item/{useRemoveItemAction.d.ts → useEditStatusItemAction.d.ts} +2 -2
  37. package/dist/components/Explorer/actions-item/{useRemoveItemAction.js → useEditStatusItemAction.js} +71 -24
  38. package/dist/components/Explorer/actions-item/useEditStatusItemAction.js.map +1 -0
  39. package/dist/components/Explorer/actions-item/useReplaceItemAction.d.ts +2 -1
  40. package/dist/components/Explorer/actions-item/useReplaceItemAction.js +2 -2
  41. package/dist/components/Explorer/actions-item/useReplaceItemAction.js.map +1 -1
  42. package/dist/components/Explorer/actions-primary/useCreatePrimaryAction.d.ts +5 -1
  43. package/dist/components/Explorer/actions-primary/useCreatePrimaryAction.js +20 -22
  44. package/dist/components/Explorer/actions-primary/useCreatePrimaryAction.js.map +1 -1
  45. package/dist/components/Explorer/actions-primary/useLinkPrimaryAction.d.ts +6 -3
  46. package/dist/components/Explorer/actions-primary/useLinkPrimaryAction.js +5 -19
  47. package/dist/components/Explorer/actions-primary/useLinkPrimaryAction.js.map +1 -1
  48. package/dist/components/Explorer/link-item/LinkModal.d.ts +3 -0
  49. package/dist/components/Explorer/link-item/LinkModal.js +44 -4
  50. package/dist/components/Explorer/link-item/LinkModal.js.map +1 -1
  51. package/dist/components/Explorer/manage-view-settings/_shared/CommonFilterItem.js +1 -1
  52. package/dist/components/Explorer/manage-view-settings/_shared/CommonFilterItem.js.map +1 -1
  53. package/dist/components/Explorer/manage-view-settings/_shared/useTransformFilters.js +26 -2
  54. package/dist/components/Explorer/manage-view-settings/_shared/useTransformFilters.js.map +1 -1
  55. package/dist/components/Explorer/manage-view-settings/filter-items/FilterItems.js +10 -7
  56. package/dist/components/Explorer/manage-view-settings/filter-items/FilterItems.js.map +1 -1
  57. package/dist/components/Explorer/manage-view-settings/filter-items/filter-type/FilterDropDown.js +2 -2
  58. package/dist/components/Explorer/manage-view-settings/filter-items/filter-type/FilterDropDown.js.map +1 -1
  59. package/dist/components/Explorer/manage-view-settings/filter-items/filter-type/FilterDropdownContent.js +5 -1
  60. package/dist/components/Explorer/manage-view-settings/filter-items/filter-type/FilterDropdownContent.js.map +1 -1
  61. package/dist/components/Explorer/manage-view-settings/filter-items/filter-type/TreeAttributeDropDown.d.ts +3 -0
  62. package/dist/components/Explorer/manage-view-settings/filter-items/filter-type/TreeAttributeDropDown.js +69 -0
  63. package/dist/components/Explorer/manage-view-settings/filter-items/filter-type/TreeAttributeDropDown.js.map +1 -0
  64. package/dist/components/Explorer/manage-view-settings/filter-items/filter-type/_types.d.ts +6 -1
  65. package/dist/components/Explorer/manage-view-settings/filter-items/filter-type/useConditionOptionsByType.d.ts +2 -0
  66. package/dist/components/Explorer/manage-view-settings/filter-items/filter-type/useConditionOptionsByType.js +31 -4
  67. package/dist/components/Explorer/manage-view-settings/filter-items/filter-type/useConditionOptionsByType.js.map +1 -1
  68. package/dist/components/Explorer/manage-view-settings/save-view/prepareViewForRequest.js +19 -8
  69. package/dist/components/Explorer/manage-view-settings/save-view/prepareViewForRequest.js.map +1 -1
  70. package/dist/components/Explorer/manage-view-settings/store-view-settings/viewSettingsInitialState.js +2 -1
  71. package/dist/components/Explorer/manage-view-settings/store-view-settings/viewSettingsInitialState.js.map +1 -1
  72. package/dist/components/Explorer/manage-view-settings/store-view-settings/viewSettingsReducer.d.ts +3 -2
  73. package/dist/components/Explorer/manage-view-settings/store-view-settings/viewSettingsReducer.js +38 -12
  74. package/dist/components/Explorer/manage-view-settings/store-view-settings/viewSettingsReducer.js.map +1 -1
  75. package/dist/components/Explorer/useLoadView.d.ts +1 -1
  76. package/dist/components/Explorer/useLoadView.js +32 -38
  77. package/dist/components/Explorer/useLoadView.js.map +1 -1
  78. package/dist/components/Explorer/useSearchInput.js +2 -0
  79. package/dist/components/Explorer/useSearchInput.js.map +1 -1
  80. package/dist/components/Explorer/useViewSettingsReducer.js +6 -2
  81. package/dist/components/Explorer/useViewSettingsReducer.js.map +1 -1
  82. package/dist/components/LibraryItemsList/FiltersPanel/Filter/Filter.js +2 -2
  83. package/dist/components/LibraryItemsList/FiltersPanel/Filter/Filter.js.map +1 -1
  84. package/dist/components/LibraryItemsList/FiltersPanel/Filter/Filter.utils.js +2 -2
  85. package/dist/components/LibraryItemsList/FiltersPanel/Filter/Filter.utils.js.map +1 -1
  86. package/dist/components/RecordEdition/EditRecord/EditRecord.d.ts +2 -1
  87. package/dist/components/RecordEdition/EditRecord/EditRecord.js +72 -225
  88. package/dist/components/RecordEdition/EditRecord/EditRecord.js.map +1 -1
  89. package/dist/components/RecordEdition/EditRecordContent/EditRecordContent.d.ts +3 -3
  90. package/dist/components/RecordEdition/EditRecordContent/EditRecordContent.js +15 -22
  91. package/dist/components/RecordEdition/EditRecordContent/EditRecordContent.js.map +1 -1
  92. package/dist/components/RecordEdition/EditRecordContent/_types.d.ts +6 -16
  93. package/dist/components/RecordEdition/EditRecordContent/_types.js.map +1 -1
  94. package/dist/components/RecordEdition/EditRecordContent/hooks/useCreateEmptyRecordMutation.d.ts +5 -0
  95. package/dist/components/RecordEdition/EditRecordContent/hooks/useCreateEmptyRecordMutation.js +28 -0
  96. package/dist/components/RecordEdition/EditRecordContent/hooks/useCreateEmptyRecordMutation.js.map +1 -0
  97. package/dist/components/RecordEdition/EditRecordContent/hooks/useTabManagement.d.ts +11 -0
  98. package/dist/components/RecordEdition/EditRecordContent/hooks/useTabManagement.js +35 -0
  99. package/dist/components/RecordEdition/EditRecordContent/hooks/useTabManagement.js.map +1 -0
  100. package/dist/components/RecordEdition/EditRecordContent/uiElements/Container/Container.d.ts +1 -1
  101. package/dist/components/RecordEdition/EditRecordContent/uiElements/Container/Container.js +2 -2
  102. package/dist/components/RecordEdition/EditRecordContent/uiElements/Container/Container.js.map +1 -1
  103. package/dist/components/RecordEdition/EditRecordContent/uiElements/FormDivider/FormDivider.js.map +1 -1
  104. package/dist/components/RecordEdition/EditRecordContent/uiElements/FormTabs/FormTabs.d.ts +2 -1
  105. package/dist/components/RecordEdition/EditRecordContent/uiElements/FormTabs/FormTabs.js +6 -9
  106. package/dist/components/RecordEdition/EditRecordContent/uiElements/FormTabs/FormTabs.js.map +1 -1
  107. package/dist/components/RecordEdition/EditRecordContent/uiElements/Frame/Frame.js +1 -1
  108. package/dist/components/RecordEdition/EditRecordContent/uiElements/Frame/Frame.js.map +1 -1
  109. package/dist/components/RecordEdition/EditRecordContent/uiElements/LinkField/LinkField.d.ts +2 -2
  110. package/dist/components/RecordEdition/EditRecordContent/uiElements/LinkField/LinkField.js +11 -35
  111. package/dist/components/RecordEdition/EditRecordContent/uiElements/LinkField/LinkField.js.map +1 -1
  112. package/dist/components/RecordEdition/EditRecordContent/uiElements/LinkField/link-record/ActionButton.d.ts +3 -0
  113. package/dist/components/RecordEdition/EditRecordContent/uiElements/LinkField/link-record/ActionButton.js +9 -0
  114. package/dist/components/RecordEdition/EditRecordContent/uiElements/LinkField/link-record/ActionButton.js.map +1 -0
  115. package/dist/components/RecordEdition/EditRecordContent/uiElements/LinkField/{link-record-in-edition/useLinkRecords.d.ts → link-record/useExplorerLinkRecords.d.ts} +2 -2
  116. package/dist/components/RecordEdition/EditRecordContent/uiElements/LinkField/{link-record-in-edition/useLinkRecords.js → link-record/useExplorerLinkRecords.js} +3 -3
  117. package/dist/components/RecordEdition/EditRecordContent/uiElements/LinkField/link-record/useExplorerLinkRecords.js.map +1 -0
  118. package/dist/components/RecordEdition/EditRecordContent/uiElements/LinkField/link-record/useLinkRecords.d.ts +24 -0
  119. package/dist/components/RecordEdition/EditRecordContent/uiElements/LinkField/{link-record-in-edition/useLinkRecordsInEdition.js → link-record/useLinkRecords.js} +18 -47
  120. package/dist/components/RecordEdition/EditRecordContent/uiElements/LinkField/link-record/useLinkRecords.js.map +1 -0
  121. package/dist/components/RecordEdition/EditRecordContent/uiElements/LinkField/shared/utils.js +1 -0
  122. package/dist/components/RecordEdition/EditRecordContent/uiElements/LinkField/shared/utils.js.map +1 -1
  123. package/dist/components/RecordEdition/EditRecordContent/uiElements/StandardField/StandardField.js +27 -22
  124. package/dist/components/RecordEdition/EditRecordContent/uiElements/StandardField/StandardField.js.map +1 -1
  125. package/dist/components/RecordEdition/EditRecordContent/uiElements/StandardField/StandardFieldValue/ValuesList/DSListSelect.js +3 -3
  126. package/dist/components/RecordEdition/EditRecordContent/uiElements/StandardField/StandardFieldValue/ValuesList/DSListSelect.js.map +1 -1
  127. package/dist/components/RecordEdition/EditRecordContent/uiElements/TextBlock/TextBlock.js.map +1 -1
  128. package/dist/components/RecordEdition/EditRecordContent/uiElements/TreeField/TreeField.d.ts +1 -1
  129. package/dist/components/RecordEdition/EditRecordContent/uiElements/TreeField/TreeField.js +19 -24
  130. package/dist/components/RecordEdition/EditRecordContent/uiElements/TreeField/TreeField.js.map +1 -1
  131. package/dist/components/RecordEdition/EditRecordContent/uiElements/TreeField/display-tree-node/TreeNodeItem.d.ts +2 -1
  132. package/dist/components/RecordEdition/EditRecordContent/uiElements/TreeField/display-tree-node/TreeNodeItem.js +2 -2
  133. package/dist/components/RecordEdition/EditRecordContent/uiElements/TreeField/display-tree-node/TreeNodeItem.js.map +1 -1
  134. package/dist/components/RecordEdition/EditRecordContent/uiElements/TreeField/display-tree-node/{useDisplayTreeNode.d.ts → TreeNodeList.d.ts} +4 -4
  135. package/dist/components/RecordEdition/EditRecordContent/uiElements/TreeField/display-tree-node/TreeNodeList.js +5 -0
  136. package/dist/components/RecordEdition/EditRecordContent/uiElements/TreeField/display-tree-node/TreeNodeList.js.map +1 -0
  137. package/dist/components/RecordEdition/EditRecordContent/uiElements/TreeField/manage-tree-node-selection/SelectTreeNodeModal.d.ts +16 -4
  138. package/dist/components/RecordEdition/EditRecordContent/uiElements/TreeField/manage-tree-node-selection/SelectTreeNodeModal.js +12 -13
  139. package/dist/components/RecordEdition/EditRecordContent/uiElements/TreeField/manage-tree-node-selection/SelectTreeNodeModal.js.map +1 -1
  140. package/dist/components/RecordEdition/EditRecordContent/uiElements/TreeField/manage-tree-node-selection/useManageTreeNodeSelection.d.ts +4 -2
  141. package/dist/components/RecordEdition/EditRecordContent/uiElements/TreeField/manage-tree-node-selection/useManageTreeNodeSelection.js +49 -62
  142. package/dist/components/RecordEdition/EditRecordContent/uiElements/TreeField/manage-tree-node-selection/useManageTreeNodeSelection.js.map +1 -1
  143. package/dist/components/RecordEdition/EditRecordContent/uiElements/shared/useOutsideInteractionDetector.d.ts +1 -3
  144. package/dist/components/RecordEdition/EditRecordContent/uiElements/shared/useOutsideInteractionDetector.js +6 -10
  145. package/dist/components/RecordEdition/EditRecordContent/uiElements/shared/useOutsideInteractionDetector.js.map +1 -1
  146. package/dist/components/RecordEdition/EditRecordModal/EditRecordModal.d.ts +1 -0
  147. package/dist/components/RecordEdition/EditRecordModal/EditRecordModal.js +24 -6
  148. package/dist/components/RecordEdition/EditRecordModal/EditRecordModal.js.map +1 -1
  149. package/dist/components/RecordEdition/EditRecordPage/EditRecordPage.d.ts +1 -0
  150. package/dist/components/RecordEdition/EditRecordPage/EditRecordPage.js +23 -5
  151. package/dist/components/RecordEdition/EditRecordPage/EditRecordPage.js.map +1 -1
  152. package/dist/components/RecordEdition/editRecordReducer/editRecordReducer.d.ts +2 -5
  153. package/dist/components/RecordEdition/editRecordReducer/editRecordReducer.js +1 -1
  154. package/dist/components/RecordEdition/editRecordReducer/editRecordReducer.js.map +1 -1
  155. package/dist/components/RecordEdition/index.d.ts +3 -0
  156. package/dist/components/RecordEdition/index.js +3 -0
  157. package/dist/components/RecordEdition/index.js.map +1 -1
  158. package/dist/components/SelectRecordForLinkModal/SelectRecordForLinkModal.d.ts +4 -1
  159. package/dist/components/SelectRecordForLinkModal/SelectRecordForLinkModal.js +6 -4
  160. package/dist/components/SelectRecordForLinkModal/SelectRecordForLinkModal.js.map +1 -1
  161. package/dist/components/SelectTreeNode/SelectTreeNode.d.ts +7 -3
  162. package/dist/components/SelectTreeNode/SelectTreeNode.js +2 -3
  163. package/dist/components/SelectTreeNode/SelectTreeNode.js.map +1 -1
  164. package/dist/components/SelectTreeNode/SelectTreeNodeContent.d.ts +5 -1
  165. package/dist/components/SelectTreeNode/SelectTreeNodeContent.js +70 -56
  166. package/dist/components/SelectTreeNode/SelectTreeNodeContent.js.map +1 -1
  167. package/dist/components/SelectTreeNode/_types.d.ts +18 -0
  168. package/dist/components/SelectTreeNode/_types.js +2 -0
  169. package/dist/components/SelectTreeNode/_types.js.map +1 -0
  170. package/dist/components/{SelectTreeNodeModal/SelectTreeNodeModal.d.ts → SelectTreeNodeModalOld/SelectTreeNodeModalOld.d.ts} +1 -1
  171. package/dist/components/{SelectTreeNodeModal/SelectTreeNodeModal.js → SelectTreeNodeModalOld/SelectTreeNodeModalOld.js} +4 -2
  172. package/dist/components/SelectTreeNodeModalOld/SelectTreeNodeModalOld.js.map +1 -0
  173. package/dist/components/SelectTreeNodeModalOld/index.d.ts +1 -0
  174. package/dist/components/{RecordEdition/EditRecordContent/uiElements/StandardField/StandardFieldValue/ValuesList → SelectTreeNodeModalOld}/index.js +1 -2
  175. package/dist/components/SelectTreeNodeModalOld/index.js.map +1 -0
  176. package/dist/components/ValuesVersionConfigurator/VersionTree/VersionTree.js +2 -2
  177. package/dist/components/ValuesVersionConfigurator/VersionTree/VersionTree.js.map +1 -1
  178. package/dist/components/index.d.ts +1 -2
  179. package/dist/components/index.js +1 -2
  180. package/dist/components/index.js.map +1 -1
  181. package/dist/contexts/LangContext/LangContext.d.ts +1 -2
  182. package/dist/contexts/LangContext/LangContext.js +2 -2
  183. package/dist/contexts/LangContext/LangContext.js.map +1 -1
  184. package/dist/hooks/index.d.ts +3 -0
  185. package/dist/hooks/index.js +3 -0
  186. package/dist/hooks/index.js.map +1 -1
  187. package/dist/hooks/useGetRecordForm/useGetRecordForm.d.ts +1 -1
  188. package/dist/hooks/useGetRecordForm/useGetRecordForm.js +3 -3
  189. package/dist/hooks/useGetRecordForm/useGetRecordForm.js.map +1 -1
  190. package/dist/hooks/useIFrameMessenger/messageHandlers.d.ts +15 -0
  191. package/dist/hooks/useIFrameMessenger/messageHandlers.js +121 -0
  192. package/dist/hooks/useIFrameMessenger/messageHandlers.js.map +1 -0
  193. package/dist/hooks/useIFrameMessenger/schema.d.ts +21 -0
  194. package/dist/hooks/useIFrameMessenger/schema.js +76 -0
  195. package/dist/hooks/useIFrameMessenger/schema.js.map +1 -0
  196. package/dist/hooks/useIFrameMessenger/types.d.ts +120 -0
  197. package/dist/hooks/useIFrameMessenger/types.js +2 -0
  198. package/dist/hooks/useIFrameMessenger/types.js.map +1 -0
  199. package/dist/hooks/useIFrameMessenger/useIFrameMessenger.d.ts +19 -0
  200. package/dist/hooks/useIFrameMessenger/useIFrameMessenger.js +108 -0
  201. package/dist/hooks/useIFrameMessenger/useIFrameMessenger.js.map +1 -0
  202. package/dist/hooks/useIFrameMessengerClient/IFrameMessengerClient.d.ts +7 -0
  203. package/dist/hooks/useIFrameMessengerClient/IFrameMessengerClient.js +13 -0
  204. package/dist/hooks/useIFrameMessengerClient/IFrameMessengerClient.js.map +1 -0
  205. package/dist/hooks/useIFrameMessengerClient/iFrameMessengerClientContext.d.ts +13 -0
  206. package/dist/{components/RecordEdition/EditRecord/creationErrorContext.js → hooks/useIFrameMessengerClient/iFrameMessengerClientContext.js} +2 -3
  207. package/dist/hooks/useIFrameMessengerClient/iFrameMessengerClientContext.js.map +1 -0
  208. package/dist/hooks/useIFrameMessengerClient/useIFrameMessengerClient.d.ts +13 -0
  209. package/dist/hooks/useIFrameMessengerClient/useIFrameMessengerClient.js +13 -0
  210. package/dist/hooks/useIFrameMessengerClient/useIFrameMessengerClient.js.map +1 -0
  211. package/dist/hooks/useRedirectToLogin/useRedirectToLogin.js +1 -1
  212. package/dist/hooks/useRedirectToLogin/useRedirectToLogin.js.map +1 -1
  213. package/dist/locales/en/shared.json +7 -1
  214. package/dist/locales/fr/shared.json +6 -0
  215. package/dist/types/attributes.d.ts +2 -1
  216. package/package.json +22 -7
  217. package/dist/components/Explorer/actions-item/useRemoveItemAction.js.map +0 -1
  218. package/dist/components/RecordEdition/EditRecord/creationErrorContext.d.ts +0 -6
  219. package/dist/components/RecordEdition/EditRecord/creationErrorContext.js.map +0 -1
  220. package/dist/components/RecordEdition/EditRecordContent/hooks/useCreateRecordMutation.d.ts +0 -5
  221. package/dist/components/RecordEdition/EditRecordContent/hooks/useCreateRecordMutation.js +0 -28
  222. package/dist/components/RecordEdition/EditRecordContent/hooks/useCreateRecordMutation.js.map +0 -1
  223. package/dist/components/RecordEdition/EditRecordContent/hooks/useRunActionsListAndFormatOnValue.d.ts +0 -121
  224. package/dist/components/RecordEdition/EditRecordContent/hooks/useRunActionsListAndFormatOnValue.js +0 -31
  225. package/dist/components/RecordEdition/EditRecordContent/hooks/useRunActionsListAndFormatOnValue.js.map +0 -1
  226. package/dist/components/RecordEdition/EditRecordContent/uiElements/LinkField/action-item/useEditRecord.d.ts +0 -5
  227. package/dist/components/RecordEdition/EditRecordContent/uiElements/LinkField/action-item/useEditRecord.js +0 -39
  228. package/dist/components/RecordEdition/EditRecordContent/uiElements/LinkField/action-item/useEditRecord.js.map +0 -1
  229. package/dist/components/RecordEdition/EditRecordContent/uiElements/LinkField/action-item/useUnselectRecord.d.ts +0 -8
  230. package/dist/components/RecordEdition/EditRecordContent/uiElements/LinkField/action-item/useUnselectRecord.js +0 -23
  231. package/dist/components/RecordEdition/EditRecordContent/uiElements/LinkField/action-item/useUnselectRecord.js.map +0 -1
  232. package/dist/components/RecordEdition/EditRecordContent/uiElements/LinkField/action-mass/useUnselectAllRecords.d.ts +0 -9
  233. package/dist/components/RecordEdition/EditRecordContent/uiElements/LinkField/action-mass/useUnselectAllRecords.js +0 -23
  234. package/dist/components/RecordEdition/EditRecordContent/uiElements/LinkField/action-mass/useUnselectAllRecords.js.map +0 -1
  235. package/dist/components/RecordEdition/EditRecordContent/uiElements/LinkField/action-primary/useCreateRecord.d.ts +0 -8
  236. package/dist/components/RecordEdition/EditRecordContent/uiElements/LinkField/action-primary/useCreateRecord.js +0 -26
  237. package/dist/components/RecordEdition/EditRecordContent/uiElements/LinkField/action-primary/useCreateRecord.js.map +0 -1
  238. package/dist/components/RecordEdition/EditRecordContent/uiElements/LinkField/action-primary/useRecordSelector.d.ts +0 -12
  239. package/dist/components/RecordEdition/EditRecordContent/uiElements/LinkField/action-primary/useRecordSelector.js +0 -24
  240. package/dist/components/RecordEdition/EditRecordContent/uiElements/LinkField/action-primary/useRecordSelector.js.map +0 -1
  241. package/dist/components/RecordEdition/EditRecordContent/uiElements/LinkField/link-record-in-creation/useLinkRecords.d.ts +0 -19
  242. package/dist/components/RecordEdition/EditRecordContent/uiElements/LinkField/link-record-in-creation/useLinkRecords.js +0 -103
  243. package/dist/components/RecordEdition/EditRecordContent/uiElements/LinkField/link-record-in-creation/useLinkRecords.js.map +0 -1
  244. package/dist/components/RecordEdition/EditRecordContent/uiElements/LinkField/link-record-in-creation/useLinkRecordsInCreation.d.ts +0 -22
  245. package/dist/components/RecordEdition/EditRecordContent/uiElements/LinkField/link-record-in-creation/useLinkRecordsInCreation.js +0 -104
  246. package/dist/components/RecordEdition/EditRecordContent/uiElements/LinkField/link-record-in-creation/useLinkRecordsInCreation.js.map +0 -1
  247. package/dist/components/RecordEdition/EditRecordContent/uiElements/LinkField/link-record-in-edition/useLinkRecords.js.map +0 -1
  248. package/dist/components/RecordEdition/EditRecordContent/uiElements/LinkField/link-record-in-edition/useLinkRecordsInEdition.d.ts +0 -26
  249. package/dist/components/RecordEdition/EditRecordContent/uiElements/LinkField/link-record-in-edition/useLinkRecordsInEdition.js.map +0 -1
  250. package/dist/components/RecordEdition/EditRecordContent/uiElements/LinkField/shared/LinkActionsButtons.d.ts +0 -9
  251. package/dist/components/RecordEdition/EditRecordContent/uiElements/LinkField/shared/LinkActionsButtons.js +0 -15
  252. package/dist/components/RecordEdition/EditRecordContent/uiElements/LinkField/shared/LinkActionsButtons.js.map +0 -1
  253. package/dist/components/RecordEdition/EditRecordContent/uiElements/StandardField/StandardFieldValue/ValuesList/ValuesList.d.ts +0 -16
  254. package/dist/components/RecordEdition/EditRecordContent/uiElements/StandardField/StandardFieldValue/ValuesList/ValuesList.js +0 -35
  255. package/dist/components/RecordEdition/EditRecordContent/uiElements/StandardField/StandardFieldValue/ValuesList/ValuesList.js.map +0 -1
  256. package/dist/components/RecordEdition/EditRecordContent/uiElements/StandardField/StandardFieldValue/ValuesList/index.d.ts +0 -2
  257. package/dist/components/RecordEdition/EditRecordContent/uiElements/StandardField/StandardFieldValue/ValuesList/index.js.map +0 -1
  258. package/dist/components/RecordEdition/EditRecordContent/uiElements/TreeField/display-tree-node/useDisplayTreeNode.js +0 -8
  259. package/dist/components/RecordEdition/EditRecordContent/uiElements/TreeField/display-tree-node/useDisplayTreeNode.js.map +0 -1
  260. package/dist/components/SelectTreeNodeModal/SelectTreeNodeModal.js.map +0 -1
  261. package/dist/components/SelectTreeNodeModal/index.d.ts +0 -1
  262. package/dist/components/SelectTreeNodeModal/index.js +0 -5
  263. package/dist/components/SelectTreeNodeModal/index.js.map +0 -1
@@ -136,6 +136,7 @@ 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']>;
@@ -182,6 +183,20 @@ export declare enum AvailableLanguage {
182
183
  en = "en",
183
184
  fr = "fr"
184
185
  }
186
+ export type CampaignToRenew = {
187
+ category: Scalars['String'];
188
+ endDate: Scalars['String'];
189
+ id: Scalars['String'];
190
+ label: Scalars['String'];
191
+ startDate: Scalars['String'];
192
+ thematics: Array<InputMaybe<Scalars['String']>>;
193
+ type: Scalars['String'];
194
+ };
195
+ export type ChildrenAsRecordValuePermissionFilterInput = {
196
+ action: RecordPermissionsActions;
197
+ attributeId: Scalars['ID'];
198
+ libraryId: Scalars['ID'];
199
+ };
185
200
  export type CreateRecordDataInput = {
186
201
  values?: InputMaybe<Array<ValueBatchInput>>;
187
202
  version?: InputMaybe<Array<ValueVersionInput>>;
@@ -309,12 +324,12 @@ export type LibraryIconInput = {
309
324
  export type LibraryInput = {
310
325
  attributes?: InputMaybe<Array<Scalars['ID']>>;
311
326
  behavior?: InputMaybe<LibraryBehavior>;
312
- mandatoryAttribute?: InputMaybe<Scalars['ID']>;
313
327
  defaultView?: InputMaybe<Scalars['ID']>;
314
328
  fullTextAttributes?: InputMaybe<Array<Scalars['ID']>>;
315
329
  icon?: InputMaybe<LibraryIconInput>;
316
330
  id: Scalars['ID'];
317
331
  label?: InputMaybe<Scalars['SystemTranslation']>;
332
+ mandatoryAttribute?: InputMaybe<Scalars['ID']>;
318
333
  permissions_conf?: InputMaybe<TreepermissionsConfInput>;
319
334
  previewsSettings?: InputMaybe<Array<LibraryPreviewsSettingsInput>>;
320
335
  recordIdentityConf?: InputMaybe<RecordIdentityConfInput>;
@@ -345,7 +360,6 @@ export declare enum LogAction {
345
360
  PERMISSION_SAVE = "PERMISSION_SAVE",
346
361
  RECORD_DELETE = "RECORD_DELETE",
347
362
  RECORD_SAVE = "RECORD_SAVE",
348
- SDO_LOG_EXPORT_RECORD = "SDO_LOG_EXPORT_RECORD",
349
363
  TASKS_DELETE = "TASKS_DELETE",
350
364
  TREE_ADD_ELEMENT = "TREE_ADD_ELEMENT",
351
365
  TREE_DELETE = "TREE_DELETE",
@@ -400,6 +414,11 @@ export type LogTopicRecordFilterInput = {
400
414
  id?: InputMaybe<Scalars['String']>;
401
415
  libraryId?: InputMaybe<Scalars['String']>;
402
416
  };
417
+ export declare enum MultiLinkDisplayOption {
418
+ avatar = "avatar",
419
+ badge_qty = "badge_qty",
420
+ tag = "tag"
421
+ }
403
422
  export type Pagination = {
404
423
  limit: Scalars['Int'];
405
424
  offset: Scalars['Int'];
@@ -442,6 +461,7 @@ export declare enum PermissionsActions {
442
461
  admin_access_applications = "admin_access_applications",
443
462
  admin_access_attributes = "admin_access_attributes",
444
463
  admin_access_libraries = "admin_access_libraries",
464
+ admin_access_logs = "admin_access_logs",
445
465
  admin_access_permissions = "admin_access_permissions",
446
466
  admin_access_tasks = "admin_access_tasks",
447
467
  admin_access_trees = "admin_access_trees",
@@ -469,6 +489,7 @@ export declare enum PermissionsActions {
469
489
  admin_edit_permission = "admin_edit_permission",
470
490
  admin_edit_tree = "admin_edit_tree",
471
491
  admin_edit_version_profile = "admin_edit_version_profile",
492
+ admin_import_config_clear_database = "admin_import_config_clear_database",
472
493
  admin_library = "admin_library",
473
494
  admin_manage_global_preferences = "admin_manage_global_preferences",
474
495
  create_record = "create_record",
@@ -548,6 +569,12 @@ export type RecordInput = {
548
569
  id: Scalars['ID'];
549
570
  library: Scalars['String'];
550
571
  };
572
+ export declare enum RecordPermissionsActions {
573
+ access_record = "access_record",
574
+ create_record = "create_record",
575
+ delete_record = "delete_record",
576
+ edit_record = "edit_record"
577
+ }
551
578
  export type RecordSortInput = {
552
579
  field: Scalars['String'];
553
580
  order: SortOrder;
@@ -837,6 +864,7 @@ export type AttributeDetailsLinkAttributeFragment = {
837
864
  label?: any | null;
838
865
  description?: any | null;
839
866
  multiple_values: boolean;
867
+ multi_link_display_option?: MultiLinkDisplayOption | null;
840
868
  linked_library?: {
841
869
  id: string;
842
870
  label?: any | null;
@@ -874,6 +902,7 @@ export type AttributeDetailsStandardAttributeFragment = {
874
902
  label?: any | null;
875
903
  description?: any | null;
876
904
  multiple_values: boolean;
905
+ multi_link_display_option?: MultiLinkDisplayOption | null;
877
906
  metadata_fields?: Array<{
878
907
  id: string;
879
908
  label?: any | null;
@@ -906,6 +935,7 @@ export type AttributeDetailsTreeAttributeFragment = {
906
935
  label?: any | null;
907
936
  description?: any | null;
908
937
  multiple_values: boolean;
938
+ multi_link_display_option?: MultiLinkDisplayOption | null;
909
939
  linked_tree?: {
910
940
  id: string;
911
941
  label?: any | null;
@@ -1764,6 +1794,261 @@ export type RecordFormElementFragment = {
1764
1794
  key: string;
1765
1795
  value: any;
1766
1796
  }>;
1797
+ joinLibraryContext?: {
1798
+ mandatoryAttribute: {
1799
+ id: string;
1800
+ label?: any | null;
1801
+ description?: any | null;
1802
+ type: AttributeType;
1803
+ format?: AttributeFormat | null;
1804
+ system: boolean;
1805
+ readonly: boolean;
1806
+ required: boolean;
1807
+ multiple_values: boolean;
1808
+ compute: boolean;
1809
+ linked_library?: {
1810
+ id: string;
1811
+ label?: any | null;
1812
+ behavior: LibraryBehavior;
1813
+ permissions?: {
1814
+ create_record: boolean;
1815
+ } | null;
1816
+ } | null;
1817
+ linkValuesList?: {
1818
+ enable: boolean;
1819
+ allowFreeEntry?: boolean | null;
1820
+ allowListUpdate?: boolean | null;
1821
+ values?: Array<{
1822
+ id: string;
1823
+ whoAmI: {
1824
+ id: string;
1825
+ label?: string | null;
1826
+ subLabel?: string | null;
1827
+ color?: string | null;
1828
+ preview?: IPreviewScalar | null;
1829
+ library: {
1830
+ id: string;
1831
+ label?: any | null;
1832
+ };
1833
+ };
1834
+ }> | null;
1835
+ } | null;
1836
+ permissions: {
1837
+ access_attribute: boolean;
1838
+ edit_value: boolean;
1839
+ };
1840
+ versions_conf?: {
1841
+ versionable: boolean;
1842
+ profile?: {
1843
+ id: string;
1844
+ trees: Array<{
1845
+ id: string;
1846
+ label?: any | null;
1847
+ }>;
1848
+ } | null;
1849
+ } | null;
1850
+ metadata_fields?: Array<{
1851
+ id: string;
1852
+ label?: any | null;
1853
+ description?: any | null;
1854
+ type: AttributeType;
1855
+ format?: AttributeFormat | null;
1856
+ system: boolean;
1857
+ readonly: boolean;
1858
+ multiple_values: boolean;
1859
+ permissions: {
1860
+ access_attribute: boolean;
1861
+ edit_value: boolean;
1862
+ };
1863
+ values_list?: {
1864
+ enable: boolean;
1865
+ allowFreeEntry?: boolean | null;
1866
+ allowListUpdate?: boolean | null;
1867
+ dateRangeValues?: Array<{
1868
+ from?: string | null;
1869
+ to?: string | null;
1870
+ }> | null;
1871
+ } | {
1872
+ enable: boolean;
1873
+ allowFreeEntry?: boolean | null;
1874
+ allowListUpdate?: boolean | null;
1875
+ values?: Array<string> | null;
1876
+ } | null;
1877
+ metadata_fields?: Array<{
1878
+ id: string;
1879
+ }> | null;
1880
+ }> | null;
1881
+ } | {
1882
+ character_limit?: number | null;
1883
+ id: string;
1884
+ label?: any | null;
1885
+ description?: any | null;
1886
+ type: AttributeType;
1887
+ format?: AttributeFormat | null;
1888
+ system: boolean;
1889
+ readonly: boolean;
1890
+ required: boolean;
1891
+ multiple_values: boolean;
1892
+ compute: boolean;
1893
+ values_list?: {
1894
+ enable: boolean;
1895
+ allowFreeEntry?: boolean | null;
1896
+ allowListUpdate?: boolean | null;
1897
+ dateRangeValues?: Array<{
1898
+ from?: string | null;
1899
+ to?: string | null;
1900
+ }> | null;
1901
+ } | {
1902
+ enable: boolean;
1903
+ allowFreeEntry?: boolean | null;
1904
+ allowListUpdate?: boolean | null;
1905
+ values?: Array<string> | null;
1906
+ } | null;
1907
+ permissions: {
1908
+ access_attribute: boolean;
1909
+ edit_value: boolean;
1910
+ };
1911
+ versions_conf?: {
1912
+ versionable: boolean;
1913
+ profile?: {
1914
+ id: string;
1915
+ trees: Array<{
1916
+ id: string;
1917
+ label?: any | null;
1918
+ }>;
1919
+ } | null;
1920
+ } | null;
1921
+ metadata_fields?: Array<{
1922
+ id: string;
1923
+ label?: any | null;
1924
+ description?: any | null;
1925
+ type: AttributeType;
1926
+ format?: AttributeFormat | null;
1927
+ system: boolean;
1928
+ readonly: boolean;
1929
+ multiple_values: boolean;
1930
+ permissions: {
1931
+ access_attribute: boolean;
1932
+ edit_value: boolean;
1933
+ };
1934
+ values_list?: {
1935
+ enable: boolean;
1936
+ allowFreeEntry?: boolean | null;
1937
+ allowListUpdate?: boolean | null;
1938
+ dateRangeValues?: Array<{
1939
+ from?: string | null;
1940
+ to?: string | null;
1941
+ }> | null;
1942
+ } | {
1943
+ enable: boolean;
1944
+ allowFreeEntry?: boolean | null;
1945
+ allowListUpdate?: boolean | null;
1946
+ values?: Array<string> | null;
1947
+ } | null;
1948
+ metadata_fields?: Array<{
1949
+ id: string;
1950
+ }> | null;
1951
+ }> | null;
1952
+ } | {
1953
+ id: string;
1954
+ label?: any | null;
1955
+ description?: any | null;
1956
+ type: AttributeType;
1957
+ format?: AttributeFormat | null;
1958
+ system: boolean;
1959
+ readonly: boolean;
1960
+ required: boolean;
1961
+ multiple_values: boolean;
1962
+ compute: boolean;
1963
+ linked_tree?: {
1964
+ id: string;
1965
+ label?: any | null;
1966
+ } | null;
1967
+ treeValuesList?: {
1968
+ enable: boolean;
1969
+ allowFreeEntry?: boolean | null;
1970
+ allowListUpdate?: boolean | null;
1971
+ values?: Array<{
1972
+ id: string;
1973
+ record: {
1974
+ id: string;
1975
+ whoAmI: {
1976
+ id: string;
1977
+ label?: string | null;
1978
+ subLabel?: string | null;
1979
+ color?: string | null;
1980
+ preview?: IPreviewScalar | null;
1981
+ library: {
1982
+ id: string;
1983
+ label?: any | null;
1984
+ };
1985
+ };
1986
+ };
1987
+ ancestors?: Array<{
1988
+ record: {
1989
+ id: string;
1990
+ whoAmI: {
1991
+ id: string;
1992
+ label?: string | null;
1993
+ subLabel?: string | null;
1994
+ color?: string | null;
1995
+ preview?: IPreviewScalar | null;
1996
+ library: {
1997
+ id: string;
1998
+ label?: any | null;
1999
+ };
2000
+ };
2001
+ };
2002
+ }> | null;
2003
+ }> | null;
2004
+ } | null;
2005
+ permissions: {
2006
+ access_attribute: boolean;
2007
+ edit_value: boolean;
2008
+ };
2009
+ versions_conf?: {
2010
+ versionable: boolean;
2011
+ profile?: {
2012
+ id: string;
2013
+ trees: Array<{
2014
+ id: string;
2015
+ label?: any | null;
2016
+ }>;
2017
+ } | null;
2018
+ } | null;
2019
+ metadata_fields?: Array<{
2020
+ id: string;
2021
+ label?: any | null;
2022
+ description?: any | null;
2023
+ type: AttributeType;
2024
+ format?: AttributeFormat | null;
2025
+ system: boolean;
2026
+ readonly: boolean;
2027
+ multiple_values: boolean;
2028
+ permissions: {
2029
+ access_attribute: boolean;
2030
+ edit_value: boolean;
2031
+ };
2032
+ values_list?: {
2033
+ enable: boolean;
2034
+ allowFreeEntry?: boolean | null;
2035
+ allowListUpdate?: boolean | null;
2036
+ dateRangeValues?: Array<{
2037
+ from?: string | null;
2038
+ to?: string | null;
2039
+ }> | null;
2040
+ } | {
2041
+ enable: boolean;
2042
+ allowFreeEntry?: boolean | null;
2043
+ allowListUpdate?: boolean | null;
2044
+ values?: Array<string> | null;
2045
+ } | null;
2046
+ metadata_fields?: Array<{
2047
+ id: string;
2048
+ }> | null;
2049
+ }> | null;
2050
+ };
2051
+ } | null;
1767
2052
  };
1768
2053
  export type ValueDetailsLinkValueFragment = {
1769
2054
  id_value?: string | null;
@@ -2438,10 +2723,265 @@ export type StandardValuesListFragmentStandardStringValuesListConfFragment = {
2438
2723
  values?: Array<string> | null;
2439
2724
  };
2440
2725
  export type StandardValuesListFragmentFragment = StandardValuesListFragmentStandardDateRangeValuesListConfFragment | StandardValuesListFragmentStandardStringValuesListConfFragment;
2441
- export type TreeDetailsFragment = {
2442
- id: string;
2443
- label?: any | null;
2444
- behavior: TreeBehavior;
2726
+ export type JoinLibraryContextFragment = {
2727
+ mandatoryAttribute: {
2728
+ id: string;
2729
+ label?: any | null;
2730
+ description?: any | null;
2731
+ type: AttributeType;
2732
+ format?: AttributeFormat | null;
2733
+ system: boolean;
2734
+ readonly: boolean;
2735
+ required: boolean;
2736
+ multiple_values: boolean;
2737
+ compute: boolean;
2738
+ linked_library?: {
2739
+ id: string;
2740
+ label?: any | null;
2741
+ behavior: LibraryBehavior;
2742
+ permissions?: {
2743
+ create_record: boolean;
2744
+ } | null;
2745
+ } | null;
2746
+ linkValuesList?: {
2747
+ enable: boolean;
2748
+ allowFreeEntry?: boolean | null;
2749
+ allowListUpdate?: boolean | null;
2750
+ values?: Array<{
2751
+ id: string;
2752
+ whoAmI: {
2753
+ id: string;
2754
+ label?: string | null;
2755
+ subLabel?: string | null;
2756
+ color?: string | null;
2757
+ preview?: IPreviewScalar | null;
2758
+ library: {
2759
+ id: string;
2760
+ label?: any | null;
2761
+ };
2762
+ };
2763
+ }> | null;
2764
+ } | null;
2765
+ permissions: {
2766
+ access_attribute: boolean;
2767
+ edit_value: boolean;
2768
+ };
2769
+ versions_conf?: {
2770
+ versionable: boolean;
2771
+ profile?: {
2772
+ id: string;
2773
+ trees: Array<{
2774
+ id: string;
2775
+ label?: any | null;
2776
+ }>;
2777
+ } | null;
2778
+ } | null;
2779
+ metadata_fields?: Array<{
2780
+ id: string;
2781
+ label?: any | null;
2782
+ description?: any | null;
2783
+ type: AttributeType;
2784
+ format?: AttributeFormat | null;
2785
+ system: boolean;
2786
+ readonly: boolean;
2787
+ multiple_values: boolean;
2788
+ permissions: {
2789
+ access_attribute: boolean;
2790
+ edit_value: boolean;
2791
+ };
2792
+ values_list?: {
2793
+ enable: boolean;
2794
+ allowFreeEntry?: boolean | null;
2795
+ allowListUpdate?: boolean | null;
2796
+ dateRangeValues?: Array<{
2797
+ from?: string | null;
2798
+ to?: string | null;
2799
+ }> | null;
2800
+ } | {
2801
+ enable: boolean;
2802
+ allowFreeEntry?: boolean | null;
2803
+ allowListUpdate?: boolean | null;
2804
+ values?: Array<string> | null;
2805
+ } | null;
2806
+ metadata_fields?: Array<{
2807
+ id: string;
2808
+ }> | null;
2809
+ }> | null;
2810
+ } | {
2811
+ character_limit?: number | null;
2812
+ id: string;
2813
+ label?: any | null;
2814
+ description?: any | null;
2815
+ type: AttributeType;
2816
+ format?: AttributeFormat | null;
2817
+ system: boolean;
2818
+ readonly: boolean;
2819
+ required: boolean;
2820
+ multiple_values: boolean;
2821
+ compute: boolean;
2822
+ values_list?: {
2823
+ enable: boolean;
2824
+ allowFreeEntry?: boolean | null;
2825
+ allowListUpdate?: boolean | null;
2826
+ dateRangeValues?: Array<{
2827
+ from?: string | null;
2828
+ to?: string | null;
2829
+ }> | null;
2830
+ } | {
2831
+ enable: boolean;
2832
+ allowFreeEntry?: boolean | null;
2833
+ allowListUpdate?: boolean | null;
2834
+ values?: Array<string> | null;
2835
+ } | null;
2836
+ permissions: {
2837
+ access_attribute: boolean;
2838
+ edit_value: boolean;
2839
+ };
2840
+ versions_conf?: {
2841
+ versionable: boolean;
2842
+ profile?: {
2843
+ id: string;
2844
+ trees: Array<{
2845
+ id: string;
2846
+ label?: any | null;
2847
+ }>;
2848
+ } | null;
2849
+ } | null;
2850
+ metadata_fields?: Array<{
2851
+ id: string;
2852
+ label?: any | null;
2853
+ description?: any | null;
2854
+ type: AttributeType;
2855
+ format?: AttributeFormat | null;
2856
+ system: boolean;
2857
+ readonly: boolean;
2858
+ multiple_values: boolean;
2859
+ permissions: {
2860
+ access_attribute: boolean;
2861
+ edit_value: boolean;
2862
+ };
2863
+ values_list?: {
2864
+ enable: boolean;
2865
+ allowFreeEntry?: boolean | null;
2866
+ allowListUpdate?: boolean | null;
2867
+ dateRangeValues?: Array<{
2868
+ from?: string | null;
2869
+ to?: string | null;
2870
+ }> | null;
2871
+ } | {
2872
+ enable: boolean;
2873
+ allowFreeEntry?: boolean | null;
2874
+ allowListUpdate?: boolean | null;
2875
+ values?: Array<string> | null;
2876
+ } | null;
2877
+ metadata_fields?: Array<{
2878
+ id: string;
2879
+ }> | null;
2880
+ }> | null;
2881
+ } | {
2882
+ id: string;
2883
+ label?: any | null;
2884
+ description?: any | null;
2885
+ type: AttributeType;
2886
+ format?: AttributeFormat | null;
2887
+ system: boolean;
2888
+ readonly: boolean;
2889
+ required: boolean;
2890
+ multiple_values: boolean;
2891
+ compute: boolean;
2892
+ linked_tree?: {
2893
+ id: string;
2894
+ label?: any | null;
2895
+ } | null;
2896
+ treeValuesList?: {
2897
+ enable: boolean;
2898
+ allowFreeEntry?: boolean | null;
2899
+ allowListUpdate?: boolean | null;
2900
+ values?: Array<{
2901
+ id: string;
2902
+ record: {
2903
+ id: string;
2904
+ whoAmI: {
2905
+ id: string;
2906
+ label?: string | null;
2907
+ subLabel?: string | null;
2908
+ color?: string | null;
2909
+ preview?: IPreviewScalar | null;
2910
+ library: {
2911
+ id: string;
2912
+ label?: any | null;
2913
+ };
2914
+ };
2915
+ };
2916
+ ancestors?: Array<{
2917
+ record: {
2918
+ id: string;
2919
+ whoAmI: {
2920
+ id: string;
2921
+ label?: string | null;
2922
+ subLabel?: string | null;
2923
+ color?: string | null;
2924
+ preview?: IPreviewScalar | null;
2925
+ library: {
2926
+ id: string;
2927
+ label?: any | null;
2928
+ };
2929
+ };
2930
+ };
2931
+ }> | null;
2932
+ }> | null;
2933
+ } | null;
2934
+ permissions: {
2935
+ access_attribute: boolean;
2936
+ edit_value: boolean;
2937
+ };
2938
+ versions_conf?: {
2939
+ versionable: boolean;
2940
+ profile?: {
2941
+ id: string;
2942
+ trees: Array<{
2943
+ id: string;
2944
+ label?: any | null;
2945
+ }>;
2946
+ } | null;
2947
+ } | null;
2948
+ metadata_fields?: Array<{
2949
+ id: string;
2950
+ label?: any | null;
2951
+ description?: any | null;
2952
+ type: AttributeType;
2953
+ format?: AttributeFormat | null;
2954
+ system: boolean;
2955
+ readonly: boolean;
2956
+ multiple_values: boolean;
2957
+ permissions: {
2958
+ access_attribute: boolean;
2959
+ edit_value: boolean;
2960
+ };
2961
+ values_list?: {
2962
+ enable: boolean;
2963
+ allowFreeEntry?: boolean | null;
2964
+ allowListUpdate?: boolean | null;
2965
+ dateRangeValues?: Array<{
2966
+ from?: string | null;
2967
+ to?: string | null;
2968
+ }> | null;
2969
+ } | {
2970
+ enable: boolean;
2971
+ allowFreeEntry?: boolean | null;
2972
+ allowListUpdate?: boolean | null;
2973
+ values?: Array<string> | null;
2974
+ } | null;
2975
+ metadata_fields?: Array<{
2976
+ id: string;
2977
+ }> | null;
2978
+ }> | null;
2979
+ };
2980
+ };
2981
+ export type TreeDetailsFragment = {
2982
+ id: string;
2983
+ label?: any | null;
2984
+ behavior: TreeBehavior;
2445
2985
  system: boolean;
2446
2986
  libraries: Array<{
2447
2987
  library: {
@@ -2641,6 +3181,27 @@ export type LinkAttributeDetailsFragment = {
2641
3181
  id: string;
2642
3182
  label?: any | null;
2643
3183
  } | null;
3184
+ values_list?: {
3185
+ allowFreeEntry?: boolean | null;
3186
+ enable: boolean;
3187
+ values?: Array<{
3188
+ id: string;
3189
+ whoAmI: {
3190
+ id: string;
3191
+ library: {
3192
+ id: string;
3193
+ };
3194
+ };
3195
+ }> | null;
3196
+ } | null;
3197
+ };
3198
+ export type TreeAttributeDetailsFragment = {
3199
+ id: string;
3200
+ label?: any | null;
3201
+ linked_tree?: {
3202
+ id: string;
3203
+ label?: any | null;
3204
+ } | null;
2644
3205
  };
2645
3206
  export type AttributePropertiesFragment = {
2646
3207
  id: string;
@@ -2648,6 +3209,7 @@ export type AttributePropertiesFragment = {
2648
3209
  type: AttributeType;
2649
3210
  format?: AttributeFormat | null;
2650
3211
  multiple_values: boolean;
3212
+ multi_link_display_option?: MultiLinkDisplayOption | null;
2651
3213
  };
2652
3214
  export type PropertyValueLinkValueFragment = {
2653
3215
  linkPayload?: {
@@ -2700,6 +3262,7 @@ export type LinkPropertyLinkValueFragment = {
2700
3262
  type: AttributeType;
2701
3263
  format?: AttributeFormat | null;
2702
3264
  multiple_values: boolean;
3265
+ multi_link_display_option?: MultiLinkDisplayOption | null;
2703
3266
  };
2704
3267
  values: Array<{
2705
3268
  linkPayload?: {
@@ -2923,6 +3486,7 @@ export type GetAttributeByIdQuery = {
2923
3486
  label?: any | null;
2924
3487
  description?: any | null;
2925
3488
  multiple_values: boolean;
3489
+ multi_link_display_option?: MultiLinkDisplayOption | null;
2926
3490
  linked_library?: {
2927
3491
  id: string;
2928
3492
  label?: any | null;
@@ -2959,6 +3523,7 @@ export type GetAttributeByIdQuery = {
2959
3523
  label?: any | null;
2960
3524
  description?: any | null;
2961
3525
  multiple_values: boolean;
3526
+ multi_link_display_option?: MultiLinkDisplayOption | null;
2962
3527
  metadata_fields?: Array<{
2963
3528
  id: string;
2964
3529
  label?: any | null;
@@ -2990,6 +3555,7 @@ export type GetAttributeByIdQuery = {
2990
3555
  label?: any | null;
2991
3556
  description?: any | null;
2992
3557
  multiple_values: boolean;
3558
+ multi_link_display_option?: MultiLinkDisplayOption | null;
2993
3559
  linked_tree?: {
2994
3560
  id: string;
2995
3561
  label?: any | null;
@@ -3132,6 +3698,7 @@ export type SaveAttributeMutation = {
3132
3698
  label?: any | null;
3133
3699
  description?: any | null;
3134
3700
  multiple_values: boolean;
3701
+ multi_link_display_option?: MultiLinkDisplayOption | null;
3135
3702
  linked_library?: {
3136
3703
  id: string;
3137
3704
  label?: any | null;
@@ -3168,6 +3735,7 @@ export type SaveAttributeMutation = {
3168
3735
  label?: any | null;
3169
3736
  description?: any | null;
3170
3737
  multiple_values: boolean;
3738
+ multi_link_display_option?: MultiLinkDisplayOption | null;
3171
3739
  metadata_fields?: Array<{
3172
3740
  id: string;
3173
3741
  label?: any | null;
@@ -3199,6 +3767,7 @@ export type SaveAttributeMutation = {
3199
3767
  label?: any | null;
3200
3768
  description?: any | null;
3201
3769
  multiple_values: boolean;
3770
+ multi_link_display_option?: MultiLinkDisplayOption | null;
3202
3771
  linked_tree?: {
3203
3772
  id: string;
3204
3773
  label?: any | null;
@@ -3652,6 +4221,54 @@ export type IsAllowedQuery = {
3652
4221
  allowed?: boolean | null;
3653
4222
  }> | null;
3654
4223
  };
4224
+ export type ActivateRecordsMutationVariables = Exact<{
4225
+ libraryId: Scalars['String'];
4226
+ recordsIds?: InputMaybe<Array<Scalars['String']> | Scalars['String']>;
4227
+ filters?: InputMaybe<Array<RecordFilterInput> | RecordFilterInput>;
4228
+ }>;
4229
+ export type ActivateRecordsMutation = {
4230
+ activateRecords: Array<{
4231
+ id: string;
4232
+ whoAmI: {
4233
+ id: string;
4234
+ label?: string | null;
4235
+ subLabel?: string | null;
4236
+ color?: string | null;
4237
+ preview?: IPreviewScalar | null;
4238
+ library: {
4239
+ id: string;
4240
+ label?: any | null;
4241
+ };
4242
+ };
4243
+ }>;
4244
+ };
4245
+ export type CreateEmptyRecordMutationVariables = Exact<{
4246
+ library: Scalars['ID'];
4247
+ }>;
4248
+ export type CreateEmptyRecordMutation = {
4249
+ createEmptyRecord: {
4250
+ record?: {
4251
+ id: string;
4252
+ whoAmI: {
4253
+ id: string;
4254
+ label?: string | null;
4255
+ subLabel?: string | null;
4256
+ color?: string | null;
4257
+ preview?: IPreviewScalar | null;
4258
+ library: {
4259
+ id: string;
4260
+ label?: any | null;
4261
+ };
4262
+ };
4263
+ } | null;
4264
+ valuesErrors?: Array<{
4265
+ type: string;
4266
+ attribute: string;
4267
+ input?: string | null;
4268
+ message: string;
4269
+ }> | null;
4270
+ };
4271
+ };
3655
4272
  export type CreateRecordMutationVariables = Exact<{
3656
4273
  library: Scalars['ID'];
3657
4274
  data?: InputMaybe<CreateRecordDataInput>;
@@ -4354,28 +4971,271 @@ export type RecordFormQuery = {
4354
4971
  linked_tree?: {
4355
4972
  id: string;
4356
4973
  label?: any | null;
4357
- } | null;
4358
- treeValuesList?: {
4359
- enable: boolean;
4360
- allowFreeEntry?: boolean | null;
4361
- allowListUpdate?: boolean | null;
4362
- values?: Array<{
4974
+ } | null;
4975
+ treeValuesList?: {
4976
+ enable: boolean;
4977
+ allowFreeEntry?: boolean | null;
4978
+ allowListUpdate?: boolean | null;
4979
+ values?: Array<{
4980
+ id: string;
4981
+ record: {
4982
+ id: string;
4983
+ whoAmI: {
4984
+ id: string;
4985
+ label?: string | null;
4986
+ subLabel?: string | null;
4987
+ color?: string | null;
4988
+ preview?: IPreviewScalar | null;
4989
+ library: {
4990
+ id: string;
4991
+ label?: any | null;
4992
+ };
4993
+ };
4994
+ };
4995
+ ancestors?: Array<{
4996
+ record: {
4997
+ id: string;
4998
+ whoAmI: {
4999
+ id: string;
5000
+ label?: string | null;
5001
+ subLabel?: string | null;
5002
+ color?: string | null;
5003
+ preview?: IPreviewScalar | null;
5004
+ library: {
5005
+ id: string;
5006
+ label?: any | null;
5007
+ };
5008
+ };
5009
+ };
5010
+ }> | null;
5011
+ }> | null;
5012
+ } | null;
5013
+ permissions: {
5014
+ access_attribute: boolean;
5015
+ edit_value: boolean;
5016
+ };
5017
+ versions_conf?: {
5018
+ versionable: boolean;
5019
+ profile?: {
5020
+ id: string;
5021
+ trees: Array<{
5022
+ id: string;
5023
+ label?: any | null;
5024
+ }>;
5025
+ } | null;
5026
+ } | null;
5027
+ metadata_fields?: Array<{
5028
+ id: string;
5029
+ label?: any | null;
5030
+ description?: any | null;
5031
+ type: AttributeType;
5032
+ format?: AttributeFormat | null;
5033
+ system: boolean;
5034
+ readonly: boolean;
5035
+ multiple_values: boolean;
5036
+ permissions: {
5037
+ access_attribute: boolean;
5038
+ edit_value: boolean;
5039
+ };
5040
+ values_list?: {
5041
+ enable: boolean;
5042
+ allowFreeEntry?: boolean | null;
5043
+ allowListUpdate?: boolean | null;
5044
+ dateRangeValues?: Array<{
5045
+ from?: string | null;
5046
+ to?: string | null;
5047
+ }> | null;
5048
+ } | {
5049
+ enable: boolean;
5050
+ allowFreeEntry?: boolean | null;
5051
+ allowListUpdate?: boolean | null;
5052
+ values?: Array<string> | null;
5053
+ } | null;
5054
+ metadata_fields?: Array<{
5055
+ id: string;
5056
+ }> | null;
5057
+ }> | null;
5058
+ } | null;
5059
+ settings: Array<{
5060
+ key: string;
5061
+ value: any;
5062
+ }>;
5063
+ joinLibraryContext?: {
5064
+ mandatoryAttribute: {
5065
+ id: string;
5066
+ label?: any | null;
5067
+ description?: any | null;
5068
+ type: AttributeType;
5069
+ format?: AttributeFormat | null;
5070
+ system: boolean;
5071
+ readonly: boolean;
5072
+ required: boolean;
5073
+ multiple_values: boolean;
5074
+ compute: boolean;
5075
+ linked_library?: {
5076
+ id: string;
5077
+ label?: any | null;
5078
+ behavior: LibraryBehavior;
5079
+ permissions?: {
5080
+ create_record: boolean;
5081
+ } | null;
5082
+ } | null;
5083
+ linkValuesList?: {
5084
+ enable: boolean;
5085
+ allowFreeEntry?: boolean | null;
5086
+ allowListUpdate?: boolean | null;
5087
+ values?: Array<{
5088
+ id: string;
5089
+ whoAmI: {
5090
+ id: string;
5091
+ label?: string | null;
5092
+ subLabel?: string | null;
5093
+ color?: string | null;
5094
+ preview?: IPreviewScalar | null;
5095
+ library: {
5096
+ id: string;
5097
+ label?: any | null;
5098
+ };
5099
+ };
5100
+ }> | null;
5101
+ } | null;
5102
+ permissions: {
5103
+ access_attribute: boolean;
5104
+ edit_value: boolean;
5105
+ };
5106
+ versions_conf?: {
5107
+ versionable: boolean;
5108
+ profile?: {
5109
+ id: string;
5110
+ trees: Array<{
5111
+ id: string;
5112
+ label?: any | null;
5113
+ }>;
5114
+ } | null;
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
+ } | {
5148
+ character_limit?: number | null;
5149
+ id: string;
5150
+ label?: any | null;
5151
+ description?: any | null;
5152
+ type: AttributeType;
5153
+ format?: AttributeFormat | null;
5154
+ system: boolean;
5155
+ readonly: boolean;
5156
+ required: boolean;
5157
+ multiple_values: boolean;
5158
+ compute: boolean;
5159
+ values_list?: {
5160
+ enable: boolean;
5161
+ allowFreeEntry?: boolean | null;
5162
+ allowListUpdate?: boolean | null;
5163
+ dateRangeValues?: Array<{
5164
+ from?: string | null;
5165
+ to?: string | null;
5166
+ }> | null;
5167
+ } | {
5168
+ enable: boolean;
5169
+ allowFreeEntry?: boolean | null;
5170
+ allowListUpdate?: boolean | null;
5171
+ values?: Array<string> | null;
5172
+ } | null;
5173
+ permissions: {
5174
+ access_attribute: boolean;
5175
+ edit_value: boolean;
5176
+ };
5177
+ versions_conf?: {
5178
+ versionable: boolean;
5179
+ profile?: {
5180
+ id: string;
5181
+ trees: Array<{
5182
+ id: string;
5183
+ label?: any | null;
5184
+ }>;
5185
+ } | null;
5186
+ } | null;
5187
+ metadata_fields?: Array<{
5188
+ id: string;
5189
+ label?: any | null;
5190
+ description?: any | null;
5191
+ type: AttributeType;
5192
+ format?: AttributeFormat | null;
5193
+ system: boolean;
5194
+ readonly: boolean;
5195
+ multiple_values: boolean;
5196
+ permissions: {
5197
+ access_attribute: boolean;
5198
+ edit_value: boolean;
5199
+ };
5200
+ values_list?: {
5201
+ enable: boolean;
5202
+ allowFreeEntry?: boolean | null;
5203
+ allowListUpdate?: boolean | null;
5204
+ dateRangeValues?: Array<{
5205
+ from?: string | null;
5206
+ to?: string | null;
5207
+ }> | null;
5208
+ } | {
5209
+ enable: boolean;
5210
+ allowFreeEntry?: boolean | null;
5211
+ allowListUpdate?: boolean | null;
5212
+ values?: Array<string> | null;
5213
+ } | null;
5214
+ metadata_fields?: Array<{
5215
+ id: string;
5216
+ }> | null;
5217
+ }> | null;
5218
+ } | {
5219
+ id: string;
5220
+ label?: any | null;
5221
+ description?: any | null;
5222
+ type: AttributeType;
5223
+ format?: AttributeFormat | null;
5224
+ system: boolean;
5225
+ readonly: boolean;
5226
+ required: boolean;
5227
+ multiple_values: boolean;
5228
+ compute: boolean;
5229
+ linked_tree?: {
4363
5230
  id: string;
4364
- record: {
5231
+ label?: any | null;
5232
+ } | null;
5233
+ treeValuesList?: {
5234
+ enable: boolean;
5235
+ allowFreeEntry?: boolean | null;
5236
+ allowListUpdate?: boolean | null;
5237
+ values?: Array<{
4365
5238
  id: string;
4366
- whoAmI: {
4367
- id: string;
4368
- label?: string | null;
4369
- subLabel?: string | null;
4370
- color?: string | null;
4371
- preview?: IPreviewScalar | null;
4372
- library: {
4373
- id: string;
4374
- label?: any | null;
4375
- };
4376
- };
4377
- };
4378
- ancestors?: Array<{
4379
5239
  record: {
4380
5240
  id: string;
4381
5241
  whoAmI: {
@@ -4390,63 +5250,75 @@ export type RecordFormQuery = {
4390
5250
  };
4391
5251
  };
4392
5252
  };
5253
+ ancestors?: Array<{
5254
+ record: {
5255
+ id: string;
5256
+ whoAmI: {
5257
+ id: string;
5258
+ label?: string | null;
5259
+ subLabel?: string | null;
5260
+ color?: string | null;
5261
+ preview?: IPreviewScalar | null;
5262
+ library: {
5263
+ id: string;
5264
+ label?: any | null;
5265
+ };
5266
+ };
5267
+ };
5268
+ }> | null;
4393
5269
  }> | null;
4394
- }> | null;
4395
- } | null;
4396
- permissions: {
4397
- access_attribute: boolean;
4398
- edit_value: boolean;
4399
- };
4400
- versions_conf?: {
4401
- versionable: boolean;
4402
- profile?: {
4403
- id: string;
4404
- trees: Array<{
4405
- id: string;
4406
- label?: any | null;
4407
- }>;
4408
5270
  } | null;
4409
- } | null;
4410
- metadata_fields?: Array<{
4411
- id: string;
4412
- label?: any | null;
4413
- description?: any | null;
4414
- type: AttributeType;
4415
- format?: AttributeFormat | null;
4416
- system: boolean;
4417
- readonly: boolean;
4418
- multiple_values: boolean;
4419
5271
  permissions: {
4420
5272
  access_attribute: boolean;
4421
5273
  edit_value: boolean;
4422
5274
  };
4423
- values_list?: {
4424
- enable: boolean;
4425
- allowFreeEntry?: boolean | null;
4426
- allowListUpdate?: boolean | null;
4427
- dateRangeValues?: Array<{
4428
- from?: string | null;
4429
- to?: string | null;
4430
- }> | null;
4431
- } | {
4432
- enable: boolean;
4433
- allowFreeEntry?: boolean | null;
4434
- allowListUpdate?: boolean | null;
4435
- values?: Array<string> | null;
5275
+ versions_conf?: {
5276
+ versionable: boolean;
5277
+ profile?: {
5278
+ id: string;
5279
+ trees: Array<{
5280
+ id: string;
5281
+ label?: any | null;
5282
+ }>;
5283
+ } | null;
4436
5284
  } | null;
4437
5285
  metadata_fields?: Array<{
4438
5286
  id: string;
5287
+ label?: any | null;
5288
+ description?: any | null;
5289
+ type: AttributeType;
5290
+ format?: AttributeFormat | null;
5291
+ system: boolean;
5292
+ readonly: boolean;
5293
+ multiple_values: boolean;
5294
+ permissions: {
5295
+ access_attribute: boolean;
5296
+ edit_value: boolean;
5297
+ };
5298
+ values_list?: {
5299
+ enable: boolean;
5300
+ allowFreeEntry?: boolean | null;
5301
+ allowListUpdate?: boolean | null;
5302
+ dateRangeValues?: Array<{
5303
+ from?: string | null;
5304
+ to?: string | null;
5305
+ }> | null;
5306
+ } | {
5307
+ enable: boolean;
5308
+ allowFreeEntry?: boolean | null;
5309
+ allowListUpdate?: boolean | null;
5310
+ values?: Array<string> | null;
5311
+ } | null;
5312
+ metadata_fields?: Array<{
5313
+ id: string;
5314
+ }> | null;
4439
5315
  }> | null;
4440
- }> | null;
5316
+ };
4441
5317
  } | null;
4442
- settings: Array<{
4443
- key: string;
4444
- value: any;
4445
- }>;
4446
5318
  }>;
4447
5319
  sidePanel?: {
4448
5320
  enable: boolean;
4449
- isOpenByDefault: boolean;
5321
+ isOpenByDefault?: boolean | null;
4450
5322
  } | null;
4451
5323
  } | null;
4452
5324
  };
@@ -4872,6 +5744,30 @@ export type RecordUpdateSubscription = {
4872
5744
  }>;
4873
5745
  };
4874
5746
  };
5747
+ export type GetRecordsFromLibraryQueryVariables = Exact<{
5748
+ libraryId: Scalars['ID'];
5749
+ pagination?: InputMaybe<RecordsPagination>;
5750
+ filters?: InputMaybe<Array<InputMaybe<RecordFilterInput>> | InputMaybe<RecordFilterInput>>;
5751
+ }>;
5752
+ export type GetRecordsFromLibraryQuery = {
5753
+ records: {
5754
+ totalCount?: number | null;
5755
+ list: Array<{
5756
+ id: string;
5757
+ whoAmI: {
5758
+ id: string;
5759
+ label?: string | null;
5760
+ subLabel?: string | null;
5761
+ color?: string | null;
5762
+ preview?: IPreviewScalar | null;
5763
+ library: {
5764
+ id: string;
5765
+ label?: any | null;
5766
+ };
5767
+ };
5768
+ }>;
5769
+ };
5770
+ };
4875
5771
  export type IndexRecordsMutationVariables = Exact<{
4876
5772
  libraryId: Scalars['String'];
4877
5773
  records?: InputMaybe<Array<Scalars['String']> | Scalars['String']>;
@@ -4989,6 +5885,7 @@ export type TreeNodeChildrenQueryVariables = Exact<{
4989
5885
  treeId: Scalars['ID'];
4990
5886
  node?: InputMaybe<Scalars['ID']>;
4991
5887
  pagination?: InputMaybe<Pagination>;
5888
+ childrenAsRecordValuePermissionFilter?: InputMaybe<ChildrenAsRecordValuePermissionFilterInput>;
4992
5889
  }>;
4993
5890
  export type TreeNodeChildrenQuery = {
4994
5891
  treeNodeChildren: {
@@ -5224,130 +6121,16 @@ export type DeleteValueMutation = {
5224
6121
  id: string;
5225
6122
  label?: string | null;
5226
6123
  subLabel?: string | null;
5227
- color?: string | null;
5228
- preview?: IPreviewScalar | null;
5229
- library: {
5230
- id: string;
5231
- label?: any | null;
5232
- };
5233
- };
5234
- };
5235
- }> | null;
5236
- } | null;
5237
- modified_by?: {
5238
- id: string;
5239
- whoAmI: {
5240
- id: string;
5241
- label?: string | null;
5242
- subLabel?: string | null;
5243
- color?: string | null;
5244
- preview?: IPreviewScalar | null;
5245
- library: {
5246
- id: string;
5247
- label?: any | null;
5248
- };
5249
- };
5250
- } | null;
5251
- created_by?: {
5252
- id: string;
5253
- whoAmI: {
5254
- id: string;
5255
- label?: string | null;
5256
- subLabel?: string | null;
5257
- color?: string | null;
5258
- preview?: IPreviewScalar | null;
5259
- library: {
5260
- id: string;
5261
- label?: any | null;
5262
- };
5263
- };
5264
- } | null;
5265
- version?: Array<{
5266
- treeId: string;
5267
- treeNode?: {
5268
- id: string;
5269
- record: {
5270
- id: string;
5271
- whoAmI: {
5272
- id: string;
5273
- label?: string | null;
5274
- library: {
5275
- id: string;
5276
- };
5277
- };
5278
- };
5279
- } | null;
5280
- } | null> | null;
5281
- attribute: {
5282
- id: string;
5283
- format?: AttributeFormat | null;
5284
- type: AttributeType;
5285
- system: boolean;
5286
- };
5287
- metadata?: Array<{
5288
- name: string;
5289
- value?: {
5290
- id_value?: string | null;
5291
- modified_at?: number | null;
5292
- created_at?: number | null;
5293
- payload?: any | null;
5294
- raw_payload?: any | null;
5295
- modified_by?: {
5296
- id: string;
5297
- whoAmI: {
5298
- id: string;
5299
- label?: string | null;
5300
- subLabel?: string | null;
5301
- color?: string | null;
5302
- preview?: IPreviewScalar | null;
5303
- library: {
5304
- id: string;
5305
- label?: any | null;
5306
- };
5307
- };
5308
- } | null;
5309
- created_by?: {
5310
- id: string;
5311
- whoAmI: {
5312
- id: string;
5313
- label?: string | null;
5314
- subLabel?: string | null;
5315
- color?: string | null;
5316
- preview?: IPreviewScalar | null;
5317
- library: {
5318
- id: string;
5319
- label?: any | null;
5320
- };
5321
- };
5322
- } | null;
5323
- version?: Array<{
5324
- treeId: string;
5325
- treeNode?: {
5326
- id: string;
5327
- record: {
5328
- id: string;
5329
- whoAmI: {
5330
- id: string;
5331
- label?: string | null;
5332
- library: {
5333
- id: string;
5334
- };
5335
- };
5336
- };
5337
- } | null;
5338
- } | null> | null;
5339
- } | null;
5340
- } | null> | null;
5341
- } | {
5342
- payload?: any | null;
5343
- raw_payload?: any | null;
5344
- value?: any | null;
5345
- raw_value?: any | null;
5346
- id_value?: string | null;
5347
- isInherited?: boolean | null;
5348
- isCalculated?: boolean | null;
5349
- modified_at?: number | null;
5350
- created_at?: number | null;
6124
+ color?: string | null;
6125
+ preview?: IPreviewScalar | null;
6126
+ library: {
6127
+ id: string;
6128
+ label?: any | null;
6129
+ };
6130
+ };
6131
+ };
6132
+ }> | null;
6133
+ } | null;
5351
6134
  modified_by?: {
5352
6135
  id: string;
5353
6136
  whoAmI: {
@@ -5452,24 +6235,16 @@ export type DeleteValueMutation = {
5452
6235
  } | null> | null;
5453
6236
  } | null;
5454
6237
  } | null> | null;
5455
- }>;
5456
- };
5457
- export type RunActionsListAndFormatOnValueQueryVariables = Exact<{
5458
- library: Scalars['ID'];
5459
- value?: InputMaybe<ValueBatchInput>;
5460
- version?: InputMaybe<Array<InputMaybe<ValueVersionInput>> | InputMaybe<ValueVersionInput>>;
5461
- }>;
5462
- export type RunActionsListAndFormatOnValueQuery = {
5463
- runActionsListAndFormatOnValue: Array<{
6238
+ } | {
6239
+ payload?: any | null;
6240
+ raw_payload?: any | null;
6241
+ value?: any | null;
6242
+ raw_value?: any | null;
5464
6243
  id_value?: string | null;
5465
6244
  isInherited?: boolean | null;
5466
6245
  isCalculated?: boolean | null;
5467
6246
  modified_at?: number | null;
5468
6247
  created_at?: number | null;
5469
- payload?: any | null;
5470
- raw_payload?: any | null;
5471
- value?: any | null;
5472
- raw_value?: any | null;
5473
6248
  modified_by?: {
5474
6249
  id: string;
5475
6250
  whoAmI: {
@@ -6249,6 +7024,27 @@ export type ExplorerAttributesQuery = {
6249
7024
  id: string;
6250
7025
  label?: any | null;
6251
7026
  } | null;
7027
+ values_list?: {
7028
+ allowFreeEntry?: boolean | null;
7029
+ enable: boolean;
7030
+ values?: Array<{
7031
+ id: string;
7032
+ whoAmI: {
7033
+ id: string;
7034
+ library: {
7035
+ id: string;
7036
+ };
7037
+ };
7038
+ }> | null;
7039
+ } | null;
7040
+ permissions: {
7041
+ access_attribute: boolean;
7042
+ };
7043
+ } | {
7044
+ id: string;
7045
+ type: AttributeType;
7046
+ format?: AttributeFormat | null;
7047
+ label?: any | null;
6252
7048
  permissions: {
6253
7049
  access_attribute: boolean;
6254
7050
  };
@@ -6257,6 +7053,10 @@ export type ExplorerAttributesQuery = {
6257
7053
  type: AttributeType;
6258
7054
  format?: AttributeFormat | null;
6259
7055
  label?: any | null;
7056
+ linked_tree?: {
7057
+ id: string;
7058
+ label?: any | null;
7059
+ } | null;
6260
7060
  permissions: {
6261
7061
  access_attribute: boolean;
6262
7062
  };
@@ -6276,13 +7076,38 @@ export type ExplorerLinkAttributeQuery = {
6276
7076
  id: string;
6277
7077
  label?: any | null;
6278
7078
  } | null;
7079
+ values_list?: {
7080
+ allowFreeEntry?: boolean | null;
7081
+ enable: boolean;
7082
+ values?: Array<{
7083
+ id: string;
7084
+ whoAmI: {
7085
+ id: string;
7086
+ library: {
7087
+ id: string;
7088
+ };
7089
+ };
7090
+ }> | null;
7091
+ } | null;
7092
+ permissions: {
7093
+ access_attribute: boolean;
7094
+ edit_value: boolean;
7095
+ };
7096
+ } | {
7097
+ id: string;
7098
+ multiple_values: boolean;
6279
7099
  permissions: {
6280
7100
  access_attribute: boolean;
6281
7101
  edit_value: boolean;
6282
7102
  };
6283
7103
  } | {
7104
+ label?: any | null;
6284
7105
  id: string;
6285
7106
  multiple_values: boolean;
7107
+ linked_tree?: {
7108
+ id: string;
7109
+ label?: any | null;
7110
+ } | null;
6286
7111
  permissions: {
6287
7112
  access_attribute: boolean;
6288
7113
  edit_value: boolean;
@@ -6303,6 +7128,7 @@ export type ExplorerLibraryDataQuery = {
6303
7128
  totalCount?: number | null;
6304
7129
  list: Array<{
6305
7130
  id: string;
7131
+ active: boolean;
6306
7132
  whoAmI: {
6307
7133
  id: string;
6308
7134
  label?: string | null;
@@ -6315,6 +7141,7 @@ export type ExplorerLibraryDataQuery = {
6315
7141
  };
6316
7142
  };
6317
7143
  permissions: {
7144
+ create_record: boolean;
6318
7145
  delete_record: boolean;
6319
7146
  };
6320
7147
  properties: Array<{
@@ -6325,6 +7152,7 @@ export type ExplorerLibraryDataQuery = {
6325
7152
  type: AttributeType;
6326
7153
  format?: AttributeFormat | null;
6327
7154
  multiple_values: boolean;
7155
+ multi_link_display_option?: MultiLinkDisplayOption | null;
6328
7156
  };
6329
7157
  values: Array<{
6330
7158
  linkPayload?: {
@@ -6405,6 +7233,7 @@ export type ExplorerLinkDataQuery = {
6405
7233
  type: AttributeType;
6406
7234
  format?: AttributeFormat | null;
6407
7235
  multiple_values: boolean;
7236
+ multi_link_display_option?: MultiLinkDisplayOption | null;
6408
7237
  };
6409
7238
  values: Array<{
6410
7239
  linkPayload?: {
@@ -6618,6 +7447,7 @@ export declare const ValuesVersionDetailsFragmentDoc: Apollo.DocumentNode;
6618
7447
  export declare const ValueDetailsFragmentDoc: Apollo.DocumentNode;
6619
7448
  export declare const StandardValuesListFragmentFragmentDoc: Apollo.DocumentNode;
6620
7449
  export declare const RecordFormAttributeFragmentDoc: Apollo.DocumentNode;
7450
+ export declare const JoinLibraryContextFragmentDoc: Apollo.DocumentNode;
6621
7451
  export declare const RecordFormElementFragmentDoc: Apollo.DocumentNode;
6622
7452
  export declare const TreeLightFragmentDoc: Apollo.DocumentNode;
6623
7453
  export declare const TreeDetailsFragmentDoc: Apollo.DocumentNode;
@@ -6627,6 +7457,7 @@ export declare const ViewDetailsFragmentDoc: Apollo.DocumentNode;
6627
7457
  export declare const AttributesByLibLinkAttributeWithPermissionsFragmentDoc: Apollo.DocumentNode;
6628
7458
  export declare const AttributesByLibAttributeWithPermissionsFragmentDoc: Apollo.DocumentNode;
6629
7459
  export declare const LinkAttributeDetailsFragmentDoc: Apollo.DocumentNode;
7460
+ export declare const TreeAttributeDetailsFragmentDoc: Apollo.DocumentNode;
6630
7461
  export declare const AttributePropertiesFragmentDoc: Apollo.DocumentNode;
6631
7462
  export declare const PropertyValueFragmentDoc: Apollo.DocumentNode;
6632
7463
  export declare const LinkPropertyFragmentDoc: Apollo.DocumentNode;
@@ -6658,8 +7489,13 @@ export declare function useCheckApplicationExistenceLazyQuery(baseOptions?: Apol
6658
7489
  id?: InputMaybe<Scalars["ID"]>;
6659
7490
  endpoint?: InputMaybe<Scalars["String"]>;
6660
7491
  }>>;
7492
+ export declare function useCheckApplicationExistenceSuspenseQuery(baseOptions?: Apollo.SuspenseQueryHookOptions<CheckApplicationExistenceQuery, CheckApplicationExistenceQueryVariables>): Apollo.UseSuspenseQueryResult<CheckApplicationExistenceQuery, Exact<{
7493
+ id?: InputMaybe<Scalars["ID"]>;
7494
+ endpoint?: InputMaybe<Scalars["String"]>;
7495
+ }>>;
6661
7496
  export type CheckApplicationExistenceQueryHookResult = ReturnType<typeof useCheckApplicationExistenceQuery>;
6662
7497
  export type CheckApplicationExistenceLazyQueryHookResult = ReturnType<typeof useCheckApplicationExistenceLazyQuery>;
7498
+ export type CheckApplicationExistenceSuspenseQueryHookResult = ReturnType<typeof useCheckApplicationExistenceSuspenseQuery>;
6663
7499
  export type CheckApplicationExistenceQueryResult = Apollo.QueryResult<CheckApplicationExistenceQuery, CheckApplicationExistenceQueryVariables>;
6664
7500
  export declare const GetApplicationByIdDocument: Apollo.DocumentNode;
6665
7501
  /**
@@ -6684,8 +7520,12 @@ export declare function useGetApplicationByIdQuery(baseOptions: Apollo.QueryHook
6684
7520
  export declare function useGetApplicationByIdLazyQuery(baseOptions?: Apollo.LazyQueryHookOptions<GetApplicationByIdQuery, GetApplicationByIdQueryVariables>): Apollo.LazyQueryResultTuple<GetApplicationByIdQuery, Exact<{
6685
7521
  id: Scalars["ID"];
6686
7522
  }>>;
7523
+ export declare function useGetApplicationByIdSuspenseQuery(baseOptions?: Apollo.SuspenseQueryHookOptions<GetApplicationByIdQuery, GetApplicationByIdQueryVariables>): Apollo.UseSuspenseQueryResult<GetApplicationByIdQuery, Exact<{
7524
+ id: Scalars["ID"];
7525
+ }>>;
6687
7526
  export type GetApplicationByIdQueryHookResult = ReturnType<typeof useGetApplicationByIdQuery>;
6688
7527
  export type GetApplicationByIdLazyQueryHookResult = ReturnType<typeof useGetApplicationByIdLazyQuery>;
7528
+ export type GetApplicationByIdSuspenseQueryHookResult = ReturnType<typeof useGetApplicationByIdSuspenseQuery>;
6689
7529
  export type GetApplicationByIdQueryResult = Apollo.QueryResult<GetApplicationByIdQuery, GetApplicationByIdQueryVariables>;
6690
7530
  export declare const GetApplicationModulesDocument: Apollo.DocumentNode;
6691
7531
  /**
@@ -6709,8 +7549,12 @@ export declare function useGetApplicationModulesQuery(baseOptions?: Apollo.Query
6709
7549
  export declare function useGetApplicationModulesLazyQuery(baseOptions?: Apollo.LazyQueryHookOptions<GetApplicationModulesQuery, GetApplicationModulesQueryVariables>): Apollo.LazyQueryResultTuple<GetApplicationModulesQuery, Exact<{
6710
7550
  [key: string]: never;
6711
7551
  }>>;
7552
+ export declare function useGetApplicationModulesSuspenseQuery(baseOptions?: Apollo.SuspenseQueryHookOptions<GetApplicationModulesQuery, GetApplicationModulesQueryVariables>): Apollo.UseSuspenseQueryResult<GetApplicationModulesQuery, Exact<{
7553
+ [key: string]: never;
7554
+ }>>;
6712
7555
  export type GetApplicationModulesQueryHookResult = ReturnType<typeof useGetApplicationModulesQuery>;
6713
7556
  export type GetApplicationModulesLazyQueryHookResult = ReturnType<typeof useGetApplicationModulesLazyQuery>;
7557
+ export type GetApplicationModulesSuspenseQueryHookResult = ReturnType<typeof useGetApplicationModulesSuspenseQuery>;
6714
7558
  export type GetApplicationModulesQueryResult = Apollo.QueryResult<GetApplicationModulesQuery, GetApplicationModulesQueryVariables>;
6715
7559
  export declare const SaveApplicationDocument: Apollo.DocumentNode;
6716
7560
  export type SaveApplicationMutationFn = Apollo.MutationFunction<SaveApplicationMutation, SaveApplicationMutationVariables>;
@@ -6760,8 +7604,12 @@ export declare function useCheckAttributeExistenceQuery(baseOptions: Apollo.Quer
6760
7604
  export declare function useCheckAttributeExistenceLazyQuery(baseOptions?: Apollo.LazyQueryHookOptions<CheckAttributeExistenceQuery, CheckAttributeExistenceQueryVariables>): Apollo.LazyQueryResultTuple<CheckAttributeExistenceQuery, Exact<{
6761
7605
  id: Scalars["ID"];
6762
7606
  }>>;
7607
+ export declare function useCheckAttributeExistenceSuspenseQuery(baseOptions?: Apollo.SuspenseQueryHookOptions<CheckAttributeExistenceQuery, CheckAttributeExistenceQueryVariables>): Apollo.UseSuspenseQueryResult<CheckAttributeExistenceQuery, Exact<{
7608
+ id: Scalars["ID"];
7609
+ }>>;
6763
7610
  export type CheckAttributeExistenceQueryHookResult = ReturnType<typeof useCheckAttributeExistenceQuery>;
6764
7611
  export type CheckAttributeExistenceLazyQueryHookResult = ReturnType<typeof useCheckAttributeExistenceLazyQuery>;
7612
+ export type CheckAttributeExistenceSuspenseQueryHookResult = ReturnType<typeof useCheckAttributeExistenceSuspenseQuery>;
6765
7613
  export type CheckAttributeExistenceQueryResult = Apollo.QueryResult<CheckAttributeExistenceQuery, CheckAttributeExistenceQueryVariables>;
6766
7614
  export declare const DeleteAttributeDocument: Apollo.DocumentNode;
6767
7615
  export type DeleteAttributeMutationFn = Apollo.MutationFunction<DeleteAttributeMutation, DeleteAttributeMutationVariables>;
@@ -6811,8 +7659,12 @@ export declare function useGetAttributeByIdQuery(baseOptions?: Apollo.QueryHookO
6811
7659
  export declare function useGetAttributeByIdLazyQuery(baseOptions?: Apollo.LazyQueryHookOptions<GetAttributeByIdQuery, GetAttributeByIdQueryVariables>): Apollo.LazyQueryResultTuple<GetAttributeByIdQuery, Exact<{
6812
7660
  id?: InputMaybe<Scalars["ID"]>;
6813
7661
  }>>;
7662
+ export declare function useGetAttributeByIdSuspenseQuery(baseOptions?: Apollo.SuspenseQueryHookOptions<GetAttributeByIdQuery, GetAttributeByIdQueryVariables>): Apollo.UseSuspenseQueryResult<GetAttributeByIdQuery, Exact<{
7663
+ id?: InputMaybe<Scalars["ID"]>;
7664
+ }>>;
6814
7665
  export type GetAttributeByIdQueryHookResult = ReturnType<typeof useGetAttributeByIdQuery>;
6815
7666
  export type GetAttributeByIdLazyQueryHookResult = ReturnType<typeof useGetAttributeByIdLazyQuery>;
7667
+ export type GetAttributeByIdSuspenseQueryHookResult = ReturnType<typeof useGetAttributeByIdSuspenseQuery>;
6816
7668
  export type GetAttributeByIdQueryResult = Apollo.QueryResult<GetAttributeByIdQuery, GetAttributeByIdQueryVariables>;
6817
7669
  export declare const GetAttributesByLibDocument: Apollo.DocumentNode;
6818
7670
  /**
@@ -6837,8 +7689,12 @@ export declare function useGetAttributesByLibQuery(baseOptions: Apollo.QueryHook
6837
7689
  export declare function useGetAttributesByLibLazyQuery(baseOptions?: Apollo.LazyQueryHookOptions<GetAttributesByLibQuery, GetAttributesByLibQueryVariables>): Apollo.LazyQueryResultTuple<GetAttributesByLibQuery, Exact<{
6838
7690
  library: Scalars["String"];
6839
7691
  }>>;
7692
+ export declare function useGetAttributesByLibSuspenseQuery(baseOptions?: Apollo.SuspenseQueryHookOptions<GetAttributesByLibQuery, GetAttributesByLibQueryVariables>): Apollo.UseSuspenseQueryResult<GetAttributesByLibQuery, Exact<{
7693
+ library: Scalars["String"];
7694
+ }>>;
6840
7695
  export type GetAttributesByLibQueryHookResult = ReturnType<typeof useGetAttributesByLibQuery>;
6841
7696
  export type GetAttributesByLibLazyQueryHookResult = ReturnType<typeof useGetAttributesByLibLazyQuery>;
7697
+ export type GetAttributesByLibSuspenseQueryHookResult = ReturnType<typeof useGetAttributesByLibSuspenseQuery>;
6842
7698
  export type GetAttributesByLibQueryResult = Apollo.QueryResult<GetAttributesByLibQuery, GetAttributesByLibQueryVariables>;
6843
7699
  export declare const GetAttributesDocument: Apollo.DocumentNode;
6844
7700
  /**
@@ -6869,8 +7725,14 @@ export declare function useGetAttributesLazyQuery(baseOptions?: Apollo.LazyQuery
6869
7725
  sort?: InputMaybe<SortAttributes>;
6870
7726
  filters?: InputMaybe<AttributesFiltersInput>;
6871
7727
  }>>;
7728
+ export declare function useGetAttributesSuspenseQuery(baseOptions?: Apollo.SuspenseQueryHookOptions<GetAttributesQuery, GetAttributesQueryVariables>): Apollo.UseSuspenseQueryResult<GetAttributesQuery, Exact<{
7729
+ pagination?: InputMaybe<Pagination>;
7730
+ sort?: InputMaybe<SortAttributes>;
7731
+ filters?: InputMaybe<AttributesFiltersInput>;
7732
+ }>>;
6872
7733
  export type GetAttributesQueryHookResult = ReturnType<typeof useGetAttributesQuery>;
6873
7734
  export type GetAttributesLazyQueryHookResult = ReturnType<typeof useGetAttributesLazyQuery>;
7735
+ export type GetAttributesSuspenseQueryHookResult = ReturnType<typeof useGetAttributesSuspenseQuery>;
6874
7736
  export type GetAttributesQueryResult = Apollo.QueryResult<GetAttributesQuery, GetAttributesQueryVariables>;
6875
7737
  export declare const GetVersionProfilesDocument: Apollo.DocumentNode;
6876
7738
  /**
@@ -6898,8 +7760,13 @@ export declare function useGetVersionProfilesLazyQuery(baseOptions?: Apollo.Lazy
6898
7760
  filters?: InputMaybe<VersionProfilesFiltersInput>;
6899
7761
  sort?: InputMaybe<SortVersionProfilesInput>;
6900
7762
  }>>;
7763
+ export declare function useGetVersionProfilesSuspenseQuery(baseOptions?: Apollo.SuspenseQueryHookOptions<GetVersionProfilesQuery, GetVersionProfilesQueryVariables>): Apollo.UseSuspenseQueryResult<GetVersionProfilesQuery, Exact<{
7764
+ filters?: InputMaybe<VersionProfilesFiltersInput>;
7765
+ sort?: InputMaybe<SortVersionProfilesInput>;
7766
+ }>>;
6901
7767
  export type GetVersionProfilesQueryHookResult = ReturnType<typeof useGetVersionProfilesQuery>;
6902
7768
  export type GetVersionProfilesLazyQueryHookResult = ReturnType<typeof useGetVersionProfilesLazyQuery>;
7769
+ export type GetVersionProfilesSuspenseQueryHookResult = ReturnType<typeof useGetVersionProfilesSuspenseQuery>;
6903
7770
  export type GetVersionProfilesQueryResult = Apollo.QueryResult<GetVersionProfilesQuery, GetVersionProfilesQueryVariables>;
6904
7771
  export declare const GetVersionableAttributesByLibraryDocument: Apollo.DocumentNode;
6905
7772
  /**
@@ -6924,8 +7791,12 @@ export declare function useGetVersionableAttributesByLibraryQuery(baseOptions: A
6924
7791
  export declare function useGetVersionableAttributesByLibraryLazyQuery(baseOptions?: Apollo.LazyQueryHookOptions<GetVersionableAttributesByLibraryQuery, GetVersionableAttributesByLibraryQueryVariables>): Apollo.LazyQueryResultTuple<GetVersionableAttributesByLibraryQuery, Exact<{
6925
7792
  libraryId: Scalars["String"];
6926
7793
  }>>;
7794
+ export declare function useGetVersionableAttributesByLibrarySuspenseQuery(baseOptions?: Apollo.SuspenseQueryHookOptions<GetVersionableAttributesByLibraryQuery, GetVersionableAttributesByLibraryQueryVariables>): Apollo.UseSuspenseQueryResult<GetVersionableAttributesByLibraryQuery, Exact<{
7795
+ libraryId: Scalars["String"];
7796
+ }>>;
6927
7797
  export type GetVersionableAttributesByLibraryQueryHookResult = ReturnType<typeof useGetVersionableAttributesByLibraryQuery>;
6928
7798
  export type GetVersionableAttributesByLibraryLazyQueryHookResult = ReturnType<typeof useGetVersionableAttributesByLibraryLazyQuery>;
7799
+ export type GetVersionableAttributesByLibrarySuspenseQueryHookResult = ReturnType<typeof useGetVersionableAttributesByLibrarySuspenseQuery>;
6929
7800
  export type GetVersionableAttributesByLibraryQueryResult = Apollo.QueryResult<GetVersionableAttributesByLibraryQuery, GetVersionableAttributesByLibraryQueryVariables>;
6930
7801
  export declare const SaveAttributeDocument: Apollo.DocumentNode;
6931
7802
  export type SaveAttributeMutationFn = Apollo.MutationFunction<SaveAttributeMutation, SaveAttributeMutationVariables>;
@@ -6981,8 +7852,14 @@ export declare function useExportLazyQuery(baseOptions?: Apollo.LazyQueryHookOpt
6981
7852
  attributes?: InputMaybe<Array<Scalars["ID"]> | Scalars["ID"]>;
6982
7853
  filters?: InputMaybe<Array<RecordFilterInput> | RecordFilterInput>;
6983
7854
  }>>;
7855
+ export declare function useExportSuspenseQuery(baseOptions?: Apollo.SuspenseQueryHookOptions<ExportQuery, ExportQueryVariables>): Apollo.UseSuspenseQueryResult<ExportQuery, Exact<{
7856
+ library: Scalars["ID"];
7857
+ attributes?: InputMaybe<Array<Scalars["ID"]> | Scalars["ID"]>;
7858
+ filters?: InputMaybe<Array<RecordFilterInput> | RecordFilterInput>;
7859
+ }>>;
6984
7860
  export type ExportQueryHookResult = ReturnType<typeof useExportQuery>;
6985
7861
  export type ExportLazyQueryHookResult = ReturnType<typeof useExportLazyQuery>;
7862
+ export type ExportSuspenseQueryHookResult = ReturnType<typeof useExportSuspenseQuery>;
6986
7863
  export type ExportQueryResult = Apollo.QueryResult<ExportQuery, ExportQueryVariables>;
6987
7864
  export declare const CreateDirectoryDocument: Apollo.DocumentNode;
6988
7865
  export type CreateDirectoryMutationFn = Apollo.MutationFunction<CreateDirectoryMutation, CreateDirectoryMutationVariables>;
@@ -7072,8 +7949,13 @@ export declare function useGetDirectoryDataLazyQuery(baseOptions?: Apollo.LazyQu
7072
7949
  library: Scalars["ID"];
7073
7950
  directoryId: Scalars["String"];
7074
7951
  }>>;
7952
+ export declare function useGetDirectoryDataSuspenseQuery(baseOptions?: Apollo.SuspenseQueryHookOptions<GetDirectoryDataQuery, GetDirectoryDataQueryVariables>): Apollo.UseSuspenseQueryResult<GetDirectoryDataQuery, Exact<{
7953
+ library: Scalars["ID"];
7954
+ directoryId: Scalars["String"];
7955
+ }>>;
7075
7956
  export type GetDirectoryDataQueryHookResult = ReturnType<typeof useGetDirectoryDataQuery>;
7076
7957
  export type GetDirectoryDataLazyQueryHookResult = ReturnType<typeof useGetDirectoryDataLazyQuery>;
7958
+ export type GetDirectoryDataSuspenseQueryHookResult = ReturnType<typeof useGetDirectoryDataSuspenseQuery>;
7077
7959
  export type GetDirectoryDataQueryResult = Apollo.QueryResult<GetDirectoryDataQuery, GetDirectoryDataQueryVariables>;
7078
7960
  export declare const UploadUpdateDocument: Apollo.DocumentNode;
7079
7961
  /**
@@ -7178,8 +8060,12 @@ export declare function useCheckLibraryExistenceQuery(baseOptions?: Apollo.Query
7178
8060
  export declare function useCheckLibraryExistenceLazyQuery(baseOptions?: Apollo.LazyQueryHookOptions<CheckLibraryExistenceQuery, CheckLibraryExistenceQueryVariables>): Apollo.LazyQueryResultTuple<CheckLibraryExistenceQuery, Exact<{
7179
8061
  id?: InputMaybe<Array<Scalars["ID"]> | Scalars["ID"]>;
7180
8062
  }>>;
8063
+ export declare function useCheckLibraryExistenceSuspenseQuery(baseOptions?: Apollo.SuspenseQueryHookOptions<CheckLibraryExistenceQuery, CheckLibraryExistenceQueryVariables>): Apollo.UseSuspenseQueryResult<CheckLibraryExistenceQuery, Exact<{
8064
+ id?: InputMaybe<Array<Scalars["ID"]> | Scalars["ID"]>;
8065
+ }>>;
7181
8066
  export type CheckLibraryExistenceQueryHookResult = ReturnType<typeof useCheckLibraryExistenceQuery>;
7182
8067
  export type CheckLibraryExistenceLazyQueryHookResult = ReturnType<typeof useCheckLibraryExistenceLazyQuery>;
8068
+ export type CheckLibraryExistenceSuspenseQueryHookResult = ReturnType<typeof useCheckLibraryExistenceSuspenseQuery>;
7183
8069
  export type CheckLibraryExistenceQueryResult = Apollo.QueryResult<CheckLibraryExistenceQuery, CheckLibraryExistenceQueryVariables>;
7184
8070
  export declare const DeleteLibraryDocument: Apollo.DocumentNode;
7185
8071
  export type DeleteLibraryMutationFn = Apollo.MutationFunction<DeleteLibraryMutation, DeleteLibraryMutationVariables>;
@@ -7228,8 +8114,12 @@ export declare function useGetLibrariesQuery(baseOptions?: Apollo.QueryHookOptio
7228
8114
  export declare function useGetLibrariesLazyQuery(baseOptions?: Apollo.LazyQueryHookOptions<GetLibrariesQuery, GetLibrariesQueryVariables>): Apollo.LazyQueryResultTuple<GetLibrariesQuery, Exact<{
7229
8115
  [key: string]: never;
7230
8116
  }>>;
8117
+ export declare function useGetLibrariesSuspenseQuery(baseOptions?: Apollo.SuspenseQueryHookOptions<GetLibrariesQuery, GetLibrariesQueryVariables>): Apollo.UseSuspenseQueryResult<GetLibrariesQuery, Exact<{
8118
+ [key: string]: never;
8119
+ }>>;
7231
8120
  export type GetLibrariesQueryHookResult = ReturnType<typeof useGetLibrariesQuery>;
7232
8121
  export type GetLibrariesLazyQueryHookResult = ReturnType<typeof useGetLibrariesLazyQuery>;
8122
+ export type GetLibrariesSuspenseQueryHookResult = ReturnType<typeof useGetLibrariesSuspenseQuery>;
7233
8123
  export type GetLibrariesQueryResult = Apollo.QueryResult<GetLibrariesQuery, GetLibrariesQueryVariables>;
7234
8124
  export declare const GetLibraryByIdDocument: Apollo.DocumentNode;
7235
8125
  /**
@@ -7254,8 +8144,12 @@ export declare function useGetLibraryByIdQuery(baseOptions?: Apollo.QueryHookOpt
7254
8144
  export declare function useGetLibraryByIdLazyQuery(baseOptions?: Apollo.LazyQueryHookOptions<GetLibraryByIdQuery, GetLibraryByIdQueryVariables>): Apollo.LazyQueryResultTuple<GetLibraryByIdQuery, Exact<{
7255
8145
  id?: InputMaybe<Array<Scalars["ID"]> | Scalars["ID"]>;
7256
8146
  }>>;
8147
+ export declare function useGetLibraryByIdSuspenseQuery(baseOptions?: Apollo.SuspenseQueryHookOptions<GetLibraryByIdQuery, GetLibraryByIdQueryVariables>): Apollo.UseSuspenseQueryResult<GetLibraryByIdQuery, Exact<{
8148
+ id?: InputMaybe<Array<Scalars["ID"]> | Scalars["ID"]>;
8149
+ }>>;
7257
8150
  export type GetLibraryByIdQueryHookResult = ReturnType<typeof useGetLibraryByIdQuery>;
7258
8151
  export type GetLibraryByIdLazyQueryHookResult = ReturnType<typeof useGetLibraryByIdLazyQuery>;
8152
+ export type GetLibraryByIdSuspenseQueryHookResult = ReturnType<typeof useGetLibraryByIdSuspenseQuery>;
7259
8153
  export type GetLibraryByIdQueryResult = Apollo.QueryResult<GetLibraryByIdQuery, GetLibraryByIdQueryVariables>;
7260
8154
  export declare const GetLibraryPermissionsDocument: Apollo.DocumentNode;
7261
8155
  /**
@@ -7280,8 +8174,12 @@ export declare function useGetLibraryPermissionsQuery(baseOptions?: Apollo.Query
7280
8174
  export declare function useGetLibraryPermissionsLazyQuery(baseOptions?: Apollo.LazyQueryHookOptions<GetLibraryPermissionsQuery, GetLibraryPermissionsQueryVariables>): Apollo.LazyQueryResultTuple<GetLibraryPermissionsQuery, Exact<{
7281
8175
  libraryId?: InputMaybe<Array<Scalars["ID"]> | Scalars["ID"]>;
7282
8176
  }>>;
8177
+ export declare function useGetLibraryPermissionsSuspenseQuery(baseOptions?: Apollo.SuspenseQueryHookOptions<GetLibraryPermissionsQuery, GetLibraryPermissionsQueryVariables>): Apollo.UseSuspenseQueryResult<GetLibraryPermissionsQuery, Exact<{
8178
+ libraryId?: InputMaybe<Array<Scalars["ID"]> | Scalars["ID"]>;
8179
+ }>>;
7283
8180
  export type GetLibraryPermissionsQueryHookResult = ReturnType<typeof useGetLibraryPermissionsQuery>;
7284
8181
  export type GetLibraryPermissionsLazyQueryHookResult = ReturnType<typeof useGetLibraryPermissionsLazyQuery>;
8182
+ export type GetLibraryPermissionsSuspenseQueryHookResult = ReturnType<typeof useGetLibraryPermissionsSuspenseQuery>;
7285
8183
  export type GetLibraryPermissionsQueryResult = Apollo.QueryResult<GetLibraryPermissionsQuery, GetLibraryPermissionsQueryVariables>;
7286
8184
  export declare const GetLibraryPreviewsSettingsDocument: Apollo.DocumentNode;
7287
8185
  /**
@@ -7306,8 +8204,12 @@ export declare function useGetLibraryPreviewsSettingsQuery(baseOptions: Apollo.Q
7306
8204
  export declare function useGetLibraryPreviewsSettingsLazyQuery(baseOptions?: Apollo.LazyQueryHookOptions<GetLibraryPreviewsSettingsQuery, GetLibraryPreviewsSettingsQueryVariables>): Apollo.LazyQueryResultTuple<GetLibraryPreviewsSettingsQuery, Exact<{
7307
8205
  id: Scalars["ID"];
7308
8206
  }>>;
8207
+ export declare function useGetLibraryPreviewsSettingsSuspenseQuery(baseOptions?: Apollo.SuspenseQueryHookOptions<GetLibraryPreviewsSettingsQuery, GetLibraryPreviewsSettingsQueryVariables>): Apollo.UseSuspenseQueryResult<GetLibraryPreviewsSettingsQuery, Exact<{
8208
+ id: Scalars["ID"];
8209
+ }>>;
7309
8210
  export type GetLibraryPreviewsSettingsQueryHookResult = ReturnType<typeof useGetLibraryPreviewsSettingsQuery>;
7310
8211
  export type GetLibraryPreviewsSettingsLazyQueryHookResult = ReturnType<typeof useGetLibraryPreviewsSettingsLazyQuery>;
8212
+ export type GetLibraryPreviewsSettingsSuspenseQueryHookResult = ReturnType<typeof useGetLibraryPreviewsSettingsSuspenseQuery>;
7311
8213
  export type GetLibraryPreviewsSettingsQueryResult = Apollo.QueryResult<GetLibraryPreviewsSettingsQuery, GetLibraryPreviewsSettingsQueryVariables>;
7312
8214
  export declare const SaveLibraryDocument: Apollo.DocumentNode;
7313
8215
  export type SaveLibraryMutationFn = Apollo.MutationFunction<SaveLibraryMutation, SaveLibraryMutationVariables>;
@@ -7366,9 +8268,70 @@ export declare function useIsAllowedLazyQuery(baseOptions?: Apollo.LazyQueryHook
7366
8268
  applyTo?: InputMaybe<Scalars["ID"]>;
7367
8269
  target?: InputMaybe<PermissionTarget>;
7368
8270
  }>>;
8271
+ export declare function useIsAllowedSuspenseQuery(baseOptions?: Apollo.SuspenseQueryHookOptions<IsAllowedQuery, IsAllowedQueryVariables>): Apollo.UseSuspenseQueryResult<IsAllowedQuery, Exact<{
8272
+ type: PermissionTypes;
8273
+ actions: Array<PermissionsActions> | PermissionsActions;
8274
+ applyTo?: InputMaybe<Scalars["ID"]>;
8275
+ target?: InputMaybe<PermissionTarget>;
8276
+ }>>;
7369
8277
  export type IsAllowedQueryHookResult = ReturnType<typeof useIsAllowedQuery>;
7370
8278
  export type IsAllowedLazyQueryHookResult = ReturnType<typeof useIsAllowedLazyQuery>;
8279
+ export type IsAllowedSuspenseQueryHookResult = ReturnType<typeof useIsAllowedSuspenseQuery>;
7371
8280
  export type IsAllowedQueryResult = Apollo.QueryResult<IsAllowedQuery, IsAllowedQueryVariables>;
8281
+ export declare const ActivateRecordsDocument: Apollo.DocumentNode;
8282
+ export type ActivateRecordsMutationFn = Apollo.MutationFunction<ActivateRecordsMutation, ActivateRecordsMutationVariables>;
8283
+ /**
8284
+ * __useActivateRecordsMutation__
8285
+ *
8286
+ * To run a mutation, you first call `useActivateRecordsMutation` within a React component and pass it any options that fit your needs.
8287
+ * When your component renders, `useActivateRecordsMutation` returns a tuple that includes:
8288
+ * - A mutate function that you can call at any time to execute the mutation
8289
+ * - An object with fields that represent the current status of the mutation's execution
8290
+ *
8291
+ * @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;
8292
+ *
8293
+ * @example
8294
+ * const [activateRecordsMutation, { data, loading, error }] = useActivateRecordsMutation({
8295
+ * variables: {
8296
+ * libraryId: // value for 'libraryId'
8297
+ * recordsIds: // value for 'recordsIds'
8298
+ * filters: // value for 'filters'
8299
+ * },
8300
+ * });
8301
+ */
8302
+ export declare function useActivateRecordsMutation(baseOptions?: Apollo.MutationHookOptions<ActivateRecordsMutation, ActivateRecordsMutationVariables>): Apollo.MutationTuple<ActivateRecordsMutation, Exact<{
8303
+ libraryId: Scalars["String"];
8304
+ recordsIds?: InputMaybe<Array<Scalars["String"]> | Scalars["String"]>;
8305
+ filters?: InputMaybe<Array<RecordFilterInput> | RecordFilterInput>;
8306
+ }>, Apollo.DefaultContext, Apollo.ApolloCache<any>>;
8307
+ export type ActivateRecordsMutationHookResult = ReturnType<typeof useActivateRecordsMutation>;
8308
+ export type ActivateRecordsMutationResult = Apollo.MutationResult<ActivateRecordsMutation>;
8309
+ export type ActivateRecordsMutationOptions = Apollo.BaseMutationOptions<ActivateRecordsMutation, ActivateRecordsMutationVariables>;
8310
+ export declare const CreateEmptyRecordDocument: Apollo.DocumentNode;
8311
+ export type CreateEmptyRecordMutationFn = Apollo.MutationFunction<CreateEmptyRecordMutation, CreateEmptyRecordMutationVariables>;
8312
+ /**
8313
+ * __useCreateEmptyRecordMutation__
8314
+ *
8315
+ * To run a mutation, you first call `useCreateEmptyRecordMutation` within a React component and pass it any options that fit your needs.
8316
+ * When your component renders, `useCreateEmptyRecordMutation` returns a tuple that includes:
8317
+ * - A mutate function that you can call at any time to execute the mutation
8318
+ * - An object with fields that represent the current status of the mutation's execution
8319
+ *
8320
+ * @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;
8321
+ *
8322
+ * @example
8323
+ * const [createEmptyRecordMutation, { data, loading, error }] = useCreateEmptyRecordMutation({
8324
+ * variables: {
8325
+ * library: // value for 'library'
8326
+ * },
8327
+ * });
8328
+ */
8329
+ export declare function useCreateEmptyRecordMutation(baseOptions?: Apollo.MutationHookOptions<CreateEmptyRecordMutation, CreateEmptyRecordMutationVariables>): Apollo.MutationTuple<CreateEmptyRecordMutation, Exact<{
8330
+ library: Scalars["ID"];
8331
+ }>, Apollo.DefaultContext, Apollo.ApolloCache<any>>;
8332
+ export type CreateEmptyRecordMutationHookResult = ReturnType<typeof useCreateEmptyRecordMutation>;
8333
+ export type CreateEmptyRecordMutationResult = Apollo.MutationResult<CreateEmptyRecordMutation>;
8334
+ export type CreateEmptyRecordMutationOptions = Apollo.BaseMutationOptions<CreateEmptyRecordMutation, CreateEmptyRecordMutationVariables>;
7372
8335
  export declare const CreateRecordDocument: Apollo.DocumentNode;
7373
8336
  export type CreateRecordMutationFn = Apollo.MutationFunction<CreateRecordMutation, CreateRecordMutationVariables>;
7374
8337
  /**
@@ -7454,8 +8417,14 @@ export declare function useDoesFileExistAsChildLazyQuery(baseOptions?: Apollo.La
7454
8417
  treeId: Scalars["ID"];
7455
8418
  filename: Scalars["String"];
7456
8419
  }>>;
8420
+ export declare function useDoesFileExistAsChildSuspenseQuery(baseOptions?: Apollo.SuspenseQueryHookOptions<DoesFileExistAsChildQuery, DoesFileExistAsChildQueryVariables>): Apollo.UseSuspenseQueryResult<DoesFileExistAsChildQuery, Exact<{
8421
+ parentNode?: InputMaybe<Scalars["ID"]>;
8422
+ treeId: Scalars["ID"];
8423
+ filename: Scalars["String"];
8424
+ }>>;
7457
8425
  export type DoesFileExistAsChildQueryHookResult = ReturnType<typeof useDoesFileExistAsChildQuery>;
7458
8426
  export type DoesFileExistAsChildLazyQueryHookResult = ReturnType<typeof useDoesFileExistAsChildLazyQuery>;
8427
+ export type DoesFileExistAsChildSuspenseQueryHookResult = ReturnType<typeof useDoesFileExistAsChildSuspenseQuery>;
7459
8428
  export type DoesFileExistAsChildQueryResult = Apollo.QueryResult<DoesFileExistAsChildQuery, DoesFileExistAsChildQueryVariables>;
7460
8429
  export declare const GetFileDataDocument: Apollo.DocumentNode;
7461
8430
  /**
@@ -7486,8 +8455,14 @@ export declare function useGetFileDataLazyQuery(baseOptions?: Apollo.LazyQueryHo
7486
8455
  fileId: Scalars["String"];
7487
8456
  previewsStatusAttribute: Scalars["ID"];
7488
8457
  }>>;
8458
+ export declare function useGetFileDataSuspenseQuery(baseOptions?: Apollo.SuspenseQueryHookOptions<GetFileDataQuery, GetFileDataQueryVariables>): Apollo.UseSuspenseQueryResult<GetFileDataQuery, Exact<{
8459
+ library: Scalars["ID"];
8460
+ fileId: Scalars["String"];
8461
+ previewsStatusAttribute: Scalars["ID"];
8462
+ }>>;
7489
8463
  export type GetFileDataQueryHookResult = ReturnType<typeof useGetFileDataQuery>;
7490
8464
  export type GetFileDataLazyQueryHookResult = ReturnType<typeof useGetFileDataLazyQuery>;
8465
+ export type GetFileDataSuspenseQueryHookResult = ReturnType<typeof useGetFileDataSuspenseQuery>;
7491
8466
  export type GetFileDataQueryResult = Apollo.QueryResult<GetFileDataQuery, GetFileDataQueryVariables>;
7492
8467
  export declare const RecordFormDocument: Apollo.DocumentNode;
7493
8468
  /**
@@ -7521,8 +8496,15 @@ export declare function useRecordFormLazyQuery(baseOptions?: Apollo.LazyQueryHoo
7521
8496
  recordId?: InputMaybe<Scalars["String"]>;
7522
8497
  version?: InputMaybe<Array<ValueVersionInput> | ValueVersionInput>;
7523
8498
  }>>;
8499
+ export declare function useRecordFormSuspenseQuery(baseOptions?: Apollo.SuspenseQueryHookOptions<RecordFormQuery, RecordFormQueryVariables>): Apollo.UseSuspenseQueryResult<RecordFormQuery, Exact<{
8500
+ libraryId: Scalars["String"];
8501
+ formId: Scalars["String"];
8502
+ recordId?: InputMaybe<Scalars["String"]>;
8503
+ version?: InputMaybe<Array<ValueVersionInput> | ValueVersionInput>;
8504
+ }>>;
7524
8505
  export type RecordFormQueryHookResult = ReturnType<typeof useRecordFormQuery>;
7525
8506
  export type RecordFormLazyQueryHookResult = ReturnType<typeof useRecordFormLazyQuery>;
8507
+ export type RecordFormSuspenseQueryHookResult = ReturnType<typeof useRecordFormSuspenseQuery>;
7526
8508
  export type RecordFormQueryResult = Apollo.QueryResult<RecordFormQuery, RecordFormQueryVariables>;
7527
8509
  export declare const RecordUpdateDocument: Apollo.DocumentNode;
7528
8510
  /**
@@ -7546,6 +8528,44 @@ export declare function useRecordUpdateSubscription(baseOptions?: Apollo.Subscri
7546
8528
  }>>;
7547
8529
  export type RecordUpdateSubscriptionHookResult = ReturnType<typeof useRecordUpdateSubscription>;
7548
8530
  export type RecordUpdateSubscriptionResult = Apollo.SubscriptionResult<RecordUpdateSubscription>;
8531
+ export declare const GetRecordsFromLibraryDocument: Apollo.DocumentNode;
8532
+ /**
8533
+ * __useGetRecordsFromLibraryQuery__
8534
+ *
8535
+ * To run a query within a React component, call `useGetRecordsFromLibraryQuery` and pass it any options that fit your needs.
8536
+ * When your component renders, `useGetRecordsFromLibraryQuery` returns an object from Apollo Client that contains loading, error, and data properties
8537
+ * you can use to render your UI.
8538
+ *
8539
+ * @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;
8540
+ *
8541
+ * @example
8542
+ * const { data, loading, error } = useGetRecordsFromLibraryQuery({
8543
+ * variables: {
8544
+ * libraryId: // value for 'libraryId'
8545
+ * pagination: // value for 'pagination'
8546
+ * filters: // value for 'filters'
8547
+ * },
8548
+ * });
8549
+ */
8550
+ export declare function useGetRecordsFromLibraryQuery(baseOptions: Apollo.QueryHookOptions<GetRecordsFromLibraryQuery, GetRecordsFromLibraryQueryVariables>): Apollo.QueryResult<GetRecordsFromLibraryQuery, Exact<{
8551
+ libraryId: Scalars["ID"];
8552
+ pagination?: InputMaybe<RecordsPagination>;
8553
+ filters?: InputMaybe<Array<InputMaybe<RecordFilterInput>> | InputMaybe<RecordFilterInput>>;
8554
+ }>>;
8555
+ export declare function useGetRecordsFromLibraryLazyQuery(baseOptions?: Apollo.LazyQueryHookOptions<GetRecordsFromLibraryQuery, GetRecordsFromLibraryQueryVariables>): Apollo.LazyQueryResultTuple<GetRecordsFromLibraryQuery, Exact<{
8556
+ libraryId: Scalars["ID"];
8557
+ pagination?: InputMaybe<RecordsPagination>;
8558
+ filters?: InputMaybe<Array<InputMaybe<RecordFilterInput>> | InputMaybe<RecordFilterInput>>;
8559
+ }>>;
8560
+ export declare function useGetRecordsFromLibrarySuspenseQuery(baseOptions?: Apollo.SuspenseQueryHookOptions<GetRecordsFromLibraryQuery, GetRecordsFromLibraryQueryVariables>): Apollo.UseSuspenseQueryResult<GetRecordsFromLibraryQuery, Exact<{
8561
+ libraryId: Scalars["ID"];
8562
+ pagination?: InputMaybe<RecordsPagination>;
8563
+ filters?: InputMaybe<Array<InputMaybe<RecordFilterInput>> | InputMaybe<RecordFilterInput>>;
8564
+ }>>;
8565
+ export type GetRecordsFromLibraryQueryHookResult = ReturnType<typeof useGetRecordsFromLibraryQuery>;
8566
+ export type GetRecordsFromLibraryLazyQueryHookResult = ReturnType<typeof useGetRecordsFromLibraryLazyQuery>;
8567
+ export type GetRecordsFromLibrarySuspenseQueryHookResult = ReturnType<typeof useGetRecordsFromLibrarySuspenseQuery>;
8568
+ export type GetRecordsFromLibraryQueryResult = Apollo.QueryResult<GetRecordsFromLibraryQuery, GetRecordsFromLibraryQueryVariables>;
7549
8569
  export declare const IndexRecordsDocument: Apollo.DocumentNode;
7550
8570
  export type IndexRecordsMutationFn = Apollo.MutationFunction<IndexRecordsMutation, IndexRecordsMutationVariables>;
7551
8571
  /**
@@ -7621,8 +8641,12 @@ export declare function useCheckTreeExistenceQuery(baseOptions?: Apollo.QueryHoo
7621
8641
  export declare function useCheckTreeExistenceLazyQuery(baseOptions?: Apollo.LazyQueryHookOptions<CheckTreeExistenceQuery, CheckTreeExistenceQueryVariables>): Apollo.LazyQueryResultTuple<CheckTreeExistenceQuery, Exact<{
7622
8642
  id?: InputMaybe<Array<Scalars["ID"]> | Scalars["ID"]>;
7623
8643
  }>>;
8644
+ export declare function useCheckTreeExistenceSuspenseQuery(baseOptions?: Apollo.SuspenseQueryHookOptions<CheckTreeExistenceQuery, CheckTreeExistenceQueryVariables>): Apollo.UseSuspenseQueryResult<CheckTreeExistenceQuery, Exact<{
8645
+ id?: InputMaybe<Array<Scalars["ID"]> | Scalars["ID"]>;
8646
+ }>>;
7624
8647
  export type CheckTreeExistenceQueryHookResult = ReturnType<typeof useCheckTreeExistenceQuery>;
7625
8648
  export type CheckTreeExistenceLazyQueryHookResult = ReturnType<typeof useCheckTreeExistenceLazyQuery>;
8649
+ export type CheckTreeExistenceSuspenseQueryHookResult = ReturnType<typeof useCheckTreeExistenceSuspenseQuery>;
7626
8650
  export type CheckTreeExistenceQueryResult = Apollo.QueryResult<CheckTreeExistenceQuery, CheckTreeExistenceQueryVariables>;
7627
8651
  export declare const DeleteTreeDocument: Apollo.DocumentNode;
7628
8652
  export type DeleteTreeMutationFn = Apollo.MutationFunction<DeleteTreeMutation, DeleteTreeMutationVariables>;
@@ -7672,8 +8696,12 @@ export declare function useGetTreeByIdQuery(baseOptions?: Apollo.QueryHookOption
7672
8696
  export declare function useGetTreeByIdLazyQuery(baseOptions?: Apollo.LazyQueryHookOptions<GetTreeByIdQuery, GetTreeByIdQueryVariables>): Apollo.LazyQueryResultTuple<GetTreeByIdQuery, Exact<{
7673
8697
  id?: InputMaybe<Array<Scalars["ID"]> | Scalars["ID"]>;
7674
8698
  }>>;
8699
+ export declare function useGetTreeByIdSuspenseQuery(baseOptions?: Apollo.SuspenseQueryHookOptions<GetTreeByIdQuery, GetTreeByIdQueryVariables>): Apollo.UseSuspenseQueryResult<GetTreeByIdQuery, Exact<{
8700
+ id?: InputMaybe<Array<Scalars["ID"]> | Scalars["ID"]>;
8701
+ }>>;
7675
8702
  export type GetTreeByIdQueryHookResult = ReturnType<typeof useGetTreeByIdQuery>;
7676
8703
  export type GetTreeByIdLazyQueryHookResult = ReturnType<typeof useGetTreeByIdLazyQuery>;
8704
+ export type GetTreeByIdSuspenseQueryHookResult = ReturnType<typeof useGetTreeByIdSuspenseQuery>;
7677
8705
  export type GetTreeByIdQueryResult = Apollo.QueryResult<GetTreeByIdQuery, GetTreeByIdQueryVariables>;
7678
8706
  export declare const GetTreeLibrariesDocument: Apollo.DocumentNode;
7679
8707
  /**
@@ -7701,8 +8729,13 @@ export declare function useGetTreeLibrariesLazyQuery(baseOptions?: Apollo.LazyQu
7701
8729
  treeId?: InputMaybe<Array<Scalars["ID"]> | Scalars["ID"]>;
7702
8730
  library?: InputMaybe<Scalars["String"]>;
7703
8731
  }>>;
8732
+ export declare function useGetTreeLibrariesSuspenseQuery(baseOptions?: Apollo.SuspenseQueryHookOptions<GetTreeLibrariesQuery, GetTreeLibrariesQueryVariables>): Apollo.UseSuspenseQueryResult<GetTreeLibrariesQuery, Exact<{
8733
+ treeId?: InputMaybe<Array<Scalars["ID"]> | Scalars["ID"]>;
8734
+ library?: InputMaybe<Scalars["String"]>;
8735
+ }>>;
7704
8736
  export type GetTreeLibrariesQueryHookResult = ReturnType<typeof useGetTreeLibrariesQuery>;
7705
8737
  export type GetTreeLibrariesLazyQueryHookResult = ReturnType<typeof useGetTreeLibrariesLazyQuery>;
8738
+ export type GetTreeLibrariesSuspenseQueryHookResult = ReturnType<typeof useGetTreeLibrariesSuspenseQuery>;
7706
8739
  export type GetTreeLibrariesQueryResult = Apollo.QueryResult<GetTreeLibrariesQuery, GetTreeLibrariesQueryVariables>;
7707
8740
  export declare const GetTreesDocument: Apollo.DocumentNode;
7708
8741
  /**
@@ -7726,8 +8759,12 @@ export declare function useGetTreesQuery(baseOptions?: Apollo.QueryHookOptions<G
7726
8759
  export declare function useGetTreesLazyQuery(baseOptions?: Apollo.LazyQueryHookOptions<GetTreesQuery, GetTreesQueryVariables>): Apollo.LazyQueryResultTuple<GetTreesQuery, Exact<{
7727
8760
  [key: string]: never;
7728
8761
  }>>;
8762
+ export declare function useGetTreesSuspenseQuery(baseOptions?: Apollo.SuspenseQueryHookOptions<GetTreesQuery, GetTreesQueryVariables>): Apollo.UseSuspenseQueryResult<GetTreesQuery, Exact<{
8763
+ [key: string]: never;
8764
+ }>>;
7729
8765
  export type GetTreesQueryHookResult = ReturnType<typeof useGetTreesQuery>;
7730
8766
  export type GetTreesLazyQueryHookResult = ReturnType<typeof useGetTreesLazyQuery>;
8767
+ export type GetTreesSuspenseQueryHookResult = ReturnType<typeof useGetTreesSuspenseQuery>;
7731
8768
  export type GetTreesQueryResult = Apollo.QueryResult<GetTreesQuery, GetTreesQueryVariables>;
7732
8769
  export declare const SaveTreeDocument: Apollo.DocumentNode;
7733
8770
  export type SaveTreeMutationFn = Apollo.MutationFunction<SaveTreeMutation, SaveTreeMutationVariables>;
@@ -7770,6 +8807,7 @@ export declare const TreeNodeChildrenDocument: Apollo.DocumentNode;
7770
8807
  * treeId: // value for 'treeId'
7771
8808
  * node: // value for 'node'
7772
8809
  * pagination: // value for 'pagination'
8810
+ * childrenAsRecordValuePermissionFilter: // value for 'childrenAsRecordValuePermissionFilter'
7773
8811
  * },
7774
8812
  * });
7775
8813
  */
@@ -7777,14 +8815,23 @@ export declare function useTreeNodeChildrenQuery(baseOptions: Apollo.QueryHookOp
7777
8815
  treeId: Scalars["ID"];
7778
8816
  node?: InputMaybe<Scalars["ID"]>;
7779
8817
  pagination?: InputMaybe<Pagination>;
8818
+ childrenAsRecordValuePermissionFilter?: InputMaybe<ChildrenAsRecordValuePermissionFilterInput>;
7780
8819
  }>>;
7781
8820
  export declare function useTreeNodeChildrenLazyQuery(baseOptions?: Apollo.LazyQueryHookOptions<TreeNodeChildrenQuery, TreeNodeChildrenQueryVariables>): Apollo.LazyQueryResultTuple<TreeNodeChildrenQuery, Exact<{
7782
8821
  treeId: Scalars["ID"];
7783
8822
  node?: InputMaybe<Scalars["ID"]>;
7784
8823
  pagination?: InputMaybe<Pagination>;
8824
+ childrenAsRecordValuePermissionFilter?: InputMaybe<ChildrenAsRecordValuePermissionFilterInput>;
8825
+ }>>;
8826
+ export declare function useTreeNodeChildrenSuspenseQuery(baseOptions?: Apollo.SuspenseQueryHookOptions<TreeNodeChildrenQuery, TreeNodeChildrenQueryVariables>): Apollo.UseSuspenseQueryResult<TreeNodeChildrenQuery, Exact<{
8827
+ treeId: Scalars["ID"];
8828
+ node?: InputMaybe<Scalars["ID"]>;
8829
+ pagination?: InputMaybe<Pagination>;
8830
+ childrenAsRecordValuePermissionFilter?: InputMaybe<ChildrenAsRecordValuePermissionFilterInput>;
7785
8831
  }>>;
7786
8832
  export type TreeNodeChildrenQueryHookResult = ReturnType<typeof useTreeNodeChildrenQuery>;
7787
8833
  export type TreeNodeChildrenLazyQueryHookResult = ReturnType<typeof useTreeNodeChildrenLazyQuery>;
8834
+ export type TreeNodeChildrenSuspenseQueryHookResult = ReturnType<typeof useTreeNodeChildrenSuspenseQuery>;
7788
8835
  export type TreeNodeChildrenQueryResult = Apollo.QueryResult<TreeNodeChildrenQuery, TreeNodeChildrenQueryVariables>;
7789
8836
  export declare const GetUserDataDocument: Apollo.DocumentNode;
7790
8837
  /**
@@ -7812,8 +8859,13 @@ export declare function useGetUserDataLazyQuery(baseOptions?: Apollo.LazyQueryHo
7812
8859
  keys: Array<Scalars["String"]> | Scalars["String"];
7813
8860
  global?: InputMaybe<Scalars["Boolean"]>;
7814
8861
  }>>;
8862
+ export declare function useGetUserDataSuspenseQuery(baseOptions?: Apollo.SuspenseQueryHookOptions<GetUserDataQuery, GetUserDataQueryVariables>): Apollo.UseSuspenseQueryResult<GetUserDataQuery, Exact<{
8863
+ keys: Array<Scalars["String"]> | Scalars["String"];
8864
+ global?: InputMaybe<Scalars["Boolean"]>;
8865
+ }>>;
7815
8866
  export type GetUserDataQueryHookResult = ReturnType<typeof useGetUserDataQuery>;
7816
8867
  export type GetUserDataLazyQueryHookResult = ReturnType<typeof useGetUserDataLazyQuery>;
8868
+ export type GetUserDataSuspenseQueryHookResult = ReturnType<typeof useGetUserDataSuspenseQuery>;
7817
8869
  export type GetUserDataQueryResult = Apollo.QueryResult<GetUserDataQuery, GetUserDataQueryVariables>;
7818
8870
  export declare const SaveUserDataDocument: Apollo.DocumentNode;
7819
8871
  export type SaveUserDataMutationFn = Apollo.MutationFunction<SaveUserDataMutation, SaveUserDataMutationVariables>;
@@ -7875,38 +8927,6 @@ export declare function useDeleteValueMutation(baseOptions?: Apollo.MutationHook
7875
8927
  export type DeleteValueMutationHookResult = ReturnType<typeof useDeleteValueMutation>;
7876
8928
  export type DeleteValueMutationResult = Apollo.MutationResult<DeleteValueMutation>;
7877
8929
  export type DeleteValueMutationOptions = Apollo.BaseMutationOptions<DeleteValueMutation, DeleteValueMutationVariables>;
7878
- export declare const RunActionsListAndFormatOnValueDocument: Apollo.DocumentNode;
7879
- /**
7880
- * __useRunActionsListAndFormatOnValueQuery__
7881
- *
7882
- * To run a query within a React component, call `useRunActionsListAndFormatOnValueQuery` and pass it any options that fit your needs.
7883
- * When your component renders, `useRunActionsListAndFormatOnValueQuery` returns an object from Apollo Client that contains loading, error, and data properties
7884
- * you can use to render your UI.
7885
- *
7886
- * @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;
7887
- *
7888
- * @example
7889
- * const { data, loading, error } = useRunActionsListAndFormatOnValueQuery({
7890
- * variables: {
7891
- * library: // value for 'library'
7892
- * value: // value for 'value'
7893
- * version: // value for 'version'
7894
- * },
7895
- * });
7896
- */
7897
- export declare function useRunActionsListAndFormatOnValueQuery(baseOptions: Apollo.QueryHookOptions<RunActionsListAndFormatOnValueQuery, RunActionsListAndFormatOnValueQueryVariables>): Apollo.QueryResult<RunActionsListAndFormatOnValueQuery, Exact<{
7898
- library: Scalars["ID"];
7899
- value?: InputMaybe<ValueBatchInput>;
7900
- version?: InputMaybe<Array<InputMaybe<ValueVersionInput>> | InputMaybe<ValueVersionInput>>;
7901
- }>>;
7902
- export declare function useRunActionsListAndFormatOnValueLazyQuery(baseOptions?: Apollo.LazyQueryHookOptions<RunActionsListAndFormatOnValueQuery, RunActionsListAndFormatOnValueQueryVariables>): Apollo.LazyQueryResultTuple<RunActionsListAndFormatOnValueQuery, Exact<{
7903
- library: Scalars["ID"];
7904
- value?: InputMaybe<ValueBatchInput>;
7905
- version?: InputMaybe<Array<InputMaybe<ValueVersionInput>> | InputMaybe<ValueVersionInput>>;
7906
- }>>;
7907
- export type RunActionsListAndFormatOnValueQueryHookResult = ReturnType<typeof useRunActionsListAndFormatOnValueQuery>;
7908
- export type RunActionsListAndFormatOnValueLazyQueryHookResult = ReturnType<typeof useRunActionsListAndFormatOnValueLazyQuery>;
7909
- export type RunActionsListAndFormatOnValueQueryResult = Apollo.QueryResult<RunActionsListAndFormatOnValueQuery, RunActionsListAndFormatOnValueQueryVariables>;
7910
8930
  export declare const SaveValueBatchDocument: Apollo.DocumentNode;
7911
8931
  export type SaveValueBatchMutationFn = Apollo.MutationFunction<SaveValueBatchMutation, SaveValueBatchMutationVariables>;
7912
8932
  /**
@@ -7988,8 +9008,12 @@ export declare function useGetViewQuery(baseOptions: Apollo.QueryHookOptions<Get
7988
9008
  export declare function useGetViewLazyQuery(baseOptions?: Apollo.LazyQueryHookOptions<GetViewQuery, GetViewQueryVariables>): Apollo.LazyQueryResultTuple<GetViewQuery, Exact<{
7989
9009
  viewId: Scalars["String"];
7990
9010
  }>>;
9011
+ export declare function useGetViewSuspenseQuery(baseOptions?: Apollo.SuspenseQueryHookOptions<GetViewQuery, GetViewQueryVariables>): Apollo.UseSuspenseQueryResult<GetViewQuery, Exact<{
9012
+ viewId: Scalars["String"];
9013
+ }>>;
7991
9014
  export type GetViewQueryHookResult = ReturnType<typeof useGetViewQuery>;
7992
9015
  export type GetViewLazyQueryHookResult = ReturnType<typeof useGetViewLazyQuery>;
9016
+ export type GetViewSuspenseQueryHookResult = ReturnType<typeof useGetViewSuspenseQuery>;
7993
9017
  export type GetViewQueryResult = Apollo.QueryResult<GetViewQuery, GetViewQueryVariables>;
7994
9018
  export declare const GetViewsListDocument: Apollo.DocumentNode;
7995
9019
  /**
@@ -8014,8 +9038,12 @@ export declare function useGetViewsListQuery(baseOptions: Apollo.QueryHookOption
8014
9038
  export declare function useGetViewsListLazyQuery(baseOptions?: Apollo.LazyQueryHookOptions<GetViewsListQuery, GetViewsListQueryVariables>): Apollo.LazyQueryResultTuple<GetViewsListQuery, Exact<{
8015
9039
  libraryId: Scalars["String"];
8016
9040
  }>>;
9041
+ export declare function useGetViewsListSuspenseQuery(baseOptions?: Apollo.SuspenseQueryHookOptions<GetViewsListQuery, GetViewsListQueryVariables>): Apollo.UseSuspenseQueryResult<GetViewsListQuery, Exact<{
9042
+ libraryId: Scalars["String"];
9043
+ }>>;
8017
9044
  export type GetViewsListQueryHookResult = ReturnType<typeof useGetViewsListQuery>;
8018
9045
  export type GetViewsListLazyQueryHookResult = ReturnType<typeof useGetViewsListLazyQuery>;
9046
+ export type GetViewsListSuspenseQueryHookResult = ReturnType<typeof useGetViewsListSuspenseQuery>;
8019
9047
  export type GetViewsListQueryResult = Apollo.QueryResult<GetViewsListQuery, GetViewsListQueryVariables>;
8020
9048
  export declare const SaveViewDocument: Apollo.DocumentNode;
8021
9049
  export type SaveViewMutationFn = Apollo.MutationFunction<SaveViewMutation, SaveViewMutationVariables>;
@@ -8065,8 +9093,12 @@ export declare function useGetAttributesByLibWithPermissionsQuery(baseOptions: A
8065
9093
  export declare function useGetAttributesByLibWithPermissionsLazyQuery(baseOptions?: Apollo.LazyQueryHookOptions<GetAttributesByLibWithPermissionsQuery, GetAttributesByLibWithPermissionsQueryVariables>): Apollo.LazyQueryResultTuple<GetAttributesByLibWithPermissionsQuery, Exact<{
8066
9094
  library: Scalars["String"];
8067
9095
  }>>;
9096
+ export declare function useGetAttributesByLibWithPermissionsSuspenseQuery(baseOptions?: Apollo.SuspenseQueryHookOptions<GetAttributesByLibWithPermissionsQuery, GetAttributesByLibWithPermissionsQueryVariables>): Apollo.UseSuspenseQueryResult<GetAttributesByLibWithPermissionsQuery, Exact<{
9097
+ library: Scalars["String"];
9098
+ }>>;
8068
9099
  export type GetAttributesByLibWithPermissionsQueryHookResult = ReturnType<typeof useGetAttributesByLibWithPermissionsQuery>;
8069
9100
  export type GetAttributesByLibWithPermissionsLazyQueryHookResult = ReturnType<typeof useGetAttributesByLibWithPermissionsLazyQuery>;
9101
+ export type GetAttributesByLibWithPermissionsSuspenseQueryHookResult = ReturnType<typeof useGetAttributesByLibWithPermissionsSuspenseQuery>;
8070
9102
  export type GetAttributesByLibWithPermissionsQueryResult = Apollo.QueryResult<GetAttributesByLibWithPermissionsQuery, GetAttributesByLibWithPermissionsQueryVariables>;
8071
9103
  export declare const ExplorerAttributesDocument: Apollo.DocumentNode;
8072
9104
  /**
@@ -8091,8 +9123,12 @@ export declare function useExplorerAttributesQuery(baseOptions?: Apollo.QueryHoo
8091
9123
  export declare function useExplorerAttributesLazyQuery(baseOptions?: Apollo.LazyQueryHookOptions<ExplorerAttributesQuery, ExplorerAttributesQueryVariables>): Apollo.LazyQueryResultTuple<ExplorerAttributesQuery, Exact<{
8092
9124
  ids?: InputMaybe<Array<Scalars["ID"]> | Scalars["ID"]>;
8093
9125
  }>>;
9126
+ export declare function useExplorerAttributesSuspenseQuery(baseOptions?: Apollo.SuspenseQueryHookOptions<ExplorerAttributesQuery, ExplorerAttributesQueryVariables>): Apollo.UseSuspenseQueryResult<ExplorerAttributesQuery, Exact<{
9127
+ ids?: InputMaybe<Array<Scalars["ID"]> | Scalars["ID"]>;
9128
+ }>>;
8094
9129
  export type ExplorerAttributesQueryHookResult = ReturnType<typeof useExplorerAttributesQuery>;
8095
9130
  export type ExplorerAttributesLazyQueryHookResult = ReturnType<typeof useExplorerAttributesLazyQuery>;
9131
+ export type ExplorerAttributesSuspenseQueryHookResult = ReturnType<typeof useExplorerAttributesSuspenseQuery>;
8096
9132
  export type ExplorerAttributesQueryResult = Apollo.QueryResult<ExplorerAttributesQuery, ExplorerAttributesQueryVariables>;
8097
9133
  export declare const ExplorerLinkAttributeDocument: Apollo.DocumentNode;
8098
9134
  /**
@@ -8117,8 +9153,12 @@ export declare function useExplorerLinkAttributeQuery(baseOptions: Apollo.QueryH
8117
9153
  export declare function useExplorerLinkAttributeLazyQuery(baseOptions?: Apollo.LazyQueryHookOptions<ExplorerLinkAttributeQuery, ExplorerLinkAttributeQueryVariables>): Apollo.LazyQueryResultTuple<ExplorerLinkAttributeQuery, Exact<{
8118
9154
  id: Scalars["ID"];
8119
9155
  }>>;
9156
+ export declare function useExplorerLinkAttributeSuspenseQuery(baseOptions?: Apollo.SuspenseQueryHookOptions<ExplorerLinkAttributeQuery, ExplorerLinkAttributeQueryVariables>): Apollo.UseSuspenseQueryResult<ExplorerLinkAttributeQuery, Exact<{
9157
+ id: Scalars["ID"];
9158
+ }>>;
8120
9159
  export type ExplorerLinkAttributeQueryHookResult = ReturnType<typeof useExplorerLinkAttributeQuery>;
8121
9160
  export type ExplorerLinkAttributeLazyQueryHookResult = ReturnType<typeof useExplorerLinkAttributeLazyQuery>;
9161
+ export type ExplorerLinkAttributeSuspenseQueryHookResult = ReturnType<typeof useExplorerLinkAttributeSuspenseQuery>;
8122
9162
  export type ExplorerLinkAttributeQueryResult = Apollo.QueryResult<ExplorerLinkAttributeQuery, ExplorerLinkAttributeQueryVariables>;
8123
9163
  export declare const ExplorerLibraryDataDocument: Apollo.DocumentNode;
8124
9164
  /**
@@ -8158,8 +9198,17 @@ export declare function useExplorerLibraryDataLazyQuery(baseOptions?: Apollo.Laz
8158
9198
  multipleSort?: InputMaybe<Array<RecordSortInput> | RecordSortInput>;
8159
9199
  searchQuery?: InputMaybe<Scalars["String"]>;
8160
9200
  }>>;
9201
+ export declare function useExplorerLibraryDataSuspenseQuery(baseOptions?: Apollo.SuspenseQueryHookOptions<ExplorerLibraryDataQuery, ExplorerLibraryDataQueryVariables>): Apollo.UseSuspenseQueryResult<ExplorerLibraryDataQuery, Exact<{
9202
+ libraryId: Scalars["ID"];
9203
+ attributeIds: Array<Scalars["ID"]> | Scalars["ID"];
9204
+ pagination?: InputMaybe<RecordsPagination>;
9205
+ filters?: InputMaybe<Array<InputMaybe<RecordFilterInput>> | InputMaybe<RecordFilterInput>>;
9206
+ multipleSort?: InputMaybe<Array<RecordSortInput> | RecordSortInput>;
9207
+ searchQuery?: InputMaybe<Scalars["String"]>;
9208
+ }>>;
8161
9209
  export type ExplorerLibraryDataQueryHookResult = ReturnType<typeof useExplorerLibraryDataQuery>;
8162
9210
  export type ExplorerLibraryDataLazyQueryHookResult = ReturnType<typeof useExplorerLibraryDataLazyQuery>;
9211
+ export type ExplorerLibraryDataSuspenseQueryHookResult = ReturnType<typeof useExplorerLibraryDataSuspenseQuery>;
8163
9212
  export type ExplorerLibraryDataQueryResult = Apollo.QueryResult<ExplorerLibraryDataQuery, ExplorerLibraryDataQueryVariables>;
8164
9213
  export declare const ExplorerLinkDataDocument: Apollo.DocumentNode;
8165
9214
  /**
@@ -8193,8 +9242,15 @@ export declare function useExplorerLinkDataLazyQuery(baseOptions?: Apollo.LazyQu
8193
9242
  parentRecordId?: InputMaybe<Scalars["String"]>;
8194
9243
  linkAttributeId: Scalars["ID"];
8195
9244
  }>>;
9245
+ export declare function useExplorerLinkDataSuspenseQuery(baseOptions?: Apollo.SuspenseQueryHookOptions<ExplorerLinkDataQuery, ExplorerLinkDataQueryVariables>): Apollo.UseSuspenseQueryResult<ExplorerLinkDataQuery, Exact<{
9246
+ attributeIds: Array<Scalars["ID"]> | Scalars["ID"];
9247
+ parentLibraryId: Scalars["ID"];
9248
+ parentRecordId?: InputMaybe<Scalars["String"]>;
9249
+ linkAttributeId: Scalars["ID"];
9250
+ }>>;
8196
9251
  export type ExplorerLinkDataQueryHookResult = ReturnType<typeof useExplorerLinkDataQuery>;
8197
9252
  export type ExplorerLinkDataLazyQueryHookResult = ReturnType<typeof useExplorerLinkDataLazyQuery>;
9253
+ export type ExplorerLinkDataSuspenseQueryHookResult = ReturnType<typeof useExplorerLinkDataSuspenseQuery>;
8198
9254
  export type ExplorerLinkDataQueryResult = Apollo.QueryResult<ExplorerLinkDataQuery, ExplorerLinkDataQueryVariables>;
8199
9255
  export declare const GetLibraryAttributesDocument: Apollo.DocumentNode;
8200
9256
  /**
@@ -8219,8 +9275,12 @@ export declare function useGetLibraryAttributesQuery(baseOptions: Apollo.QueryHo
8219
9275
  export declare function useGetLibraryAttributesLazyQuery(baseOptions?: Apollo.LazyQueryHookOptions<GetLibraryAttributesQuery, GetLibraryAttributesQueryVariables>): Apollo.LazyQueryResultTuple<GetLibraryAttributesQuery, Exact<{
8220
9276
  libraryId: Scalars["ID"];
8221
9277
  }>>;
9278
+ export declare function useGetLibraryAttributesSuspenseQuery(baseOptions?: Apollo.SuspenseQueryHookOptions<GetLibraryAttributesQuery, GetLibraryAttributesQueryVariables>): Apollo.UseSuspenseQueryResult<GetLibraryAttributesQuery, Exact<{
9279
+ libraryId: Scalars["ID"];
9280
+ }>>;
8222
9281
  export type GetLibraryAttributesQueryHookResult = ReturnType<typeof useGetLibraryAttributesQuery>;
8223
9282
  export type GetLibraryAttributesLazyQueryHookResult = ReturnType<typeof useGetLibraryAttributesLazyQuery>;
9283
+ export type GetLibraryAttributesSuspenseQueryHookResult = ReturnType<typeof useGetLibraryAttributesSuspenseQuery>;
8224
9284
  export type GetLibraryAttributesQueryResult = Apollo.QueryResult<GetLibraryAttributesQuery, GetLibraryAttributesQueryVariables>;
8225
9285
  export declare const ExplorerLibraryDetailsDocument: Apollo.DocumentNode;
8226
9286
  /**
@@ -8245,8 +9305,12 @@ export declare function useExplorerLibraryDetailsQuery(baseOptions: Apollo.Query
8245
9305
  export declare function useExplorerLibraryDetailsLazyQuery(baseOptions?: Apollo.LazyQueryHookOptions<ExplorerLibraryDetailsQuery, ExplorerLibraryDetailsQueryVariables>): Apollo.LazyQueryResultTuple<ExplorerLibraryDetailsQuery, Exact<{
8246
9306
  libraryId: Scalars["ID"];
8247
9307
  }>>;
9308
+ export declare function useExplorerLibraryDetailsSuspenseQuery(baseOptions?: Apollo.SuspenseQueryHookOptions<ExplorerLibraryDetailsQuery, ExplorerLibraryDetailsQueryVariables>): Apollo.UseSuspenseQueryResult<ExplorerLibraryDetailsQuery, Exact<{
9309
+ libraryId: Scalars["ID"];
9310
+ }>>;
8248
9311
  export type ExplorerLibraryDetailsQueryHookResult = ReturnType<typeof useExplorerLibraryDetailsQuery>;
8249
9312
  export type ExplorerLibraryDetailsLazyQueryHookResult = ReturnType<typeof useExplorerLibraryDetailsLazyQuery>;
9313
+ export type ExplorerLibraryDetailsSuspenseQueryHookResult = ReturnType<typeof useExplorerLibraryDetailsSuspenseQuery>;
8250
9314
  export type ExplorerLibraryDetailsQueryResult = Apollo.QueryResult<ExplorerLibraryDetailsQuery, ExplorerLibraryDetailsQueryVariables>;
8251
9315
  export declare const ExplorerSelectionIdsDocument: Apollo.DocumentNode;
8252
9316
  /**
@@ -8274,8 +9338,13 @@ export declare function useExplorerSelectionIdsLazyQuery(baseOptions?: Apollo.La
8274
9338
  libraryId: Scalars["ID"];
8275
9339
  filters?: InputMaybe<Array<InputMaybe<RecordFilterInput>> | InputMaybe<RecordFilterInput>>;
8276
9340
  }>>;
9341
+ export declare function useExplorerSelectionIdsSuspenseQuery(baseOptions?: Apollo.SuspenseQueryHookOptions<ExplorerSelectionIdsQuery, ExplorerSelectionIdsQueryVariables>): Apollo.UseSuspenseQueryResult<ExplorerSelectionIdsQuery, Exact<{
9342
+ libraryId: Scalars["ID"];
9343
+ filters?: InputMaybe<Array<InputMaybe<RecordFilterInput>> | InputMaybe<RecordFilterInput>>;
9344
+ }>>;
8277
9345
  export type ExplorerSelectionIdsQueryHookResult = ReturnType<typeof useExplorerSelectionIdsQuery>;
8278
9346
  export type ExplorerSelectionIdsLazyQueryHookResult = ReturnType<typeof useExplorerSelectionIdsLazyQuery>;
9347
+ export type ExplorerSelectionIdsSuspenseQueryHookResult = ReturnType<typeof useExplorerSelectionIdsSuspenseQuery>;
8279
9348
  export type ExplorerSelectionIdsQueryResult = Apollo.QueryResult<ExplorerSelectionIdsQuery, ExplorerSelectionIdsQueryVariables>;
8280
9349
  export declare const MeDocument: Apollo.DocumentNode;
8281
9350
  /**
@@ -8299,8 +9368,12 @@ export declare function useMeQuery(baseOptions?: Apollo.QueryHookOptions<MeQuery
8299
9368
  export declare function useMeLazyQuery(baseOptions?: Apollo.LazyQueryHookOptions<MeQuery, MeQueryVariables>): Apollo.LazyQueryResultTuple<MeQuery, Exact<{
8300
9369
  [key: string]: never;
8301
9370
  }>>;
9371
+ export declare function useMeSuspenseQuery(baseOptions?: Apollo.SuspenseQueryHookOptions<MeQuery, MeQueryVariables>): Apollo.UseSuspenseQueryResult<MeQuery, Exact<{
9372
+ [key: string]: never;
9373
+ }>>;
8302
9374
  export type MeQueryHookResult = ReturnType<typeof useMeQuery>;
8303
9375
  export type MeLazyQueryHookResult = ReturnType<typeof useMeLazyQuery>;
9376
+ export type MeSuspenseQueryHookResult = ReturnType<typeof useMeSuspenseQuery>;
8304
9377
  export type MeQueryResult = Apollo.QueryResult<MeQuery, MeQueryVariables>;
8305
9378
  export declare const UpdateViewDocument: Apollo.DocumentNode;
8306
9379
  export type UpdateViewMutationFn = Apollo.MutationFunction<UpdateViewMutation, UpdateViewMutationVariables>;
@@ -8350,6 +9423,10 @@ export declare function useTreeDataQueryQuery(baseOptions: Apollo.QueryHookOptio
8350
9423
  export declare function useTreeDataQueryLazyQuery(baseOptions?: Apollo.LazyQueryHookOptions<TreeDataQueryQuery, TreeDataQueryQueryVariables>): Apollo.LazyQueryResultTuple<TreeDataQueryQuery, Exact<{
8351
9424
  treeId: Scalars["ID"];
8352
9425
  }>>;
9426
+ export declare function useTreeDataQuerySuspenseQuery(baseOptions?: Apollo.SuspenseQueryHookOptions<TreeDataQueryQuery, TreeDataQueryQueryVariables>): Apollo.UseSuspenseQueryResult<TreeDataQueryQuery, Exact<{
9427
+ treeId: Scalars["ID"];
9428
+ }>>;
8353
9429
  export type TreeDataQueryQueryHookResult = ReturnType<typeof useTreeDataQueryQuery>;
8354
9430
  export type TreeDataQueryLazyQueryHookResult = ReturnType<typeof useTreeDataQueryLazyQuery>;
9431
+ export type TreeDataQuerySuspenseQueryHookResult = ReturnType<typeof useTreeDataQuerySuspenseQuery>;
8355
9432
  export type TreeDataQueryQueryResult = Apollo.QueryResult<TreeDataQueryQuery, TreeDataQueryQueryVariables>;