@leav/ui 0.4.0-1354a3e → 0.4.0-1b1c8e71

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 (253) hide show
  1. package/README.md +1 -0
  2. package/dist/_gqlTypes/index.d.ts +1324 -235
  3. package/dist/_gqlTypes/index.js +343 -42
  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 -224
  88. package/dist/components/RecordEdition/EditRecord/EditRecord.js.map +1 -1
  89. package/dist/components/RecordEdition/EditRecordContent/EditRecordContent.d.ts +2 -2
  90. package/dist/components/RecordEdition/EditRecordContent/EditRecordContent.js +4 -11
  91. package/dist/components/RecordEdition/EditRecordContent/EditRecordContent.js.map +1 -1
  92. package/dist/components/RecordEdition/EditRecordContent/_types.d.ts +2 -5
  93. package/dist/components/RecordEdition/EditRecordContent/hooks/useCreateEmptyRecordMutation.d.ts +5 -0
  94. package/dist/components/RecordEdition/EditRecordContent/hooks/useCreateEmptyRecordMutation.js +28 -0
  95. package/dist/components/RecordEdition/EditRecordContent/hooks/useCreateEmptyRecordMutation.js.map +1 -0
  96. package/dist/components/RecordEdition/EditRecordContent/hooks/useTabManagement.d.ts +11 -0
  97. package/dist/components/RecordEdition/EditRecordContent/hooks/useTabManagement.js +35 -0
  98. package/dist/components/RecordEdition/EditRecordContent/hooks/useTabManagement.js.map +1 -0
  99. package/dist/components/RecordEdition/EditRecordContent/uiElements/Container/Container.d.ts +1 -1
  100. package/dist/components/RecordEdition/EditRecordContent/uiElements/Container/Container.js +2 -2
  101. package/dist/components/RecordEdition/EditRecordContent/uiElements/Container/Container.js.map +1 -1
  102. package/dist/components/RecordEdition/EditRecordContent/uiElements/FormDivider/FormDivider.js.map +1 -1
  103. package/dist/components/RecordEdition/EditRecordContent/uiElements/Frame/Frame.js +1 -1
  104. package/dist/components/RecordEdition/EditRecordContent/uiElements/Frame/Frame.js.map +1 -1
  105. package/dist/components/RecordEdition/EditRecordContent/uiElements/LinkField/LinkField.d.ts +2 -2
  106. package/dist/components/RecordEdition/EditRecordContent/uiElements/LinkField/LinkField.js +11 -35
  107. package/dist/components/RecordEdition/EditRecordContent/uiElements/LinkField/LinkField.js.map +1 -1
  108. package/dist/components/RecordEdition/EditRecordContent/uiElements/LinkField/link-record/ActionButton.d.ts +3 -0
  109. package/dist/components/RecordEdition/EditRecordContent/uiElements/LinkField/link-record/ActionButton.js +9 -0
  110. package/dist/components/RecordEdition/EditRecordContent/uiElements/LinkField/link-record/ActionButton.js.map +1 -0
  111. package/dist/components/RecordEdition/EditRecordContent/uiElements/LinkField/{link-record-in-edition/useLinkRecords.d.ts → link-record/useExplorerLinkRecords.d.ts} +2 -2
  112. package/dist/components/RecordEdition/EditRecordContent/uiElements/LinkField/{link-record-in-edition/useLinkRecords.js → link-record/useExplorerLinkRecords.js} +3 -3
  113. package/dist/components/RecordEdition/EditRecordContent/uiElements/LinkField/link-record/useExplorerLinkRecords.js.map +1 -0
  114. package/dist/components/RecordEdition/EditRecordContent/uiElements/LinkField/link-record/useLinkRecords.d.ts +24 -0
  115. package/dist/components/RecordEdition/EditRecordContent/uiElements/LinkField/{link-record-in-edition/useLinkRecordsInEdition.js → link-record/useLinkRecords.js} +18 -47
  116. package/dist/components/RecordEdition/EditRecordContent/uiElements/LinkField/link-record/useLinkRecords.js.map +1 -0
  117. package/dist/components/RecordEdition/EditRecordContent/uiElements/LinkField/shared/utils.js +1 -0
  118. package/dist/components/RecordEdition/EditRecordContent/uiElements/LinkField/shared/utils.js.map +1 -1
  119. package/dist/components/RecordEdition/EditRecordContent/uiElements/StandardField/StandardField.js +19 -15
  120. package/dist/components/RecordEdition/EditRecordContent/uiElements/StandardField/StandardField.js.map +1 -1
  121. package/dist/components/RecordEdition/EditRecordContent/uiElements/StandardField/StandardFieldValue/ValuesList/DSListSelect.js +3 -3
  122. package/dist/components/RecordEdition/EditRecordContent/uiElements/StandardField/StandardFieldValue/ValuesList/DSListSelect.js.map +1 -1
  123. package/dist/components/RecordEdition/EditRecordContent/uiElements/TextBlock/TextBlock.js.map +1 -1
  124. package/dist/components/RecordEdition/EditRecordContent/uiElements/TreeField/TreeField.d.ts +1 -1
  125. package/dist/components/RecordEdition/EditRecordContent/uiElements/TreeField/TreeField.js +19 -24
  126. package/dist/components/RecordEdition/EditRecordContent/uiElements/TreeField/TreeField.js.map +1 -1
  127. package/dist/components/RecordEdition/EditRecordContent/uiElements/TreeField/display-tree-node/TreeNodeItem.d.ts +2 -1
  128. package/dist/components/RecordEdition/EditRecordContent/uiElements/TreeField/display-tree-node/TreeNodeItem.js +2 -2
  129. package/dist/components/RecordEdition/EditRecordContent/uiElements/TreeField/display-tree-node/TreeNodeItem.js.map +1 -1
  130. package/dist/components/RecordEdition/EditRecordContent/uiElements/TreeField/display-tree-node/{useDisplayTreeNode.d.ts → TreeNodeList.d.ts} +4 -4
  131. package/dist/components/RecordEdition/EditRecordContent/uiElements/TreeField/display-tree-node/TreeNodeList.js +5 -0
  132. package/dist/components/RecordEdition/EditRecordContent/uiElements/TreeField/display-tree-node/TreeNodeList.js.map +1 -0
  133. package/dist/components/RecordEdition/EditRecordContent/uiElements/TreeField/manage-tree-node-selection/SelectTreeNodeModal.d.ts +16 -4
  134. package/dist/components/RecordEdition/EditRecordContent/uiElements/TreeField/manage-tree-node-selection/SelectTreeNodeModal.js +12 -13
  135. package/dist/components/RecordEdition/EditRecordContent/uiElements/TreeField/manage-tree-node-selection/SelectTreeNodeModal.js.map +1 -1
  136. package/dist/components/RecordEdition/EditRecordContent/uiElements/TreeField/manage-tree-node-selection/useManageTreeNodeSelection.d.ts +4 -2
  137. package/dist/components/RecordEdition/EditRecordContent/uiElements/TreeField/manage-tree-node-selection/useManageTreeNodeSelection.js +49 -62
  138. package/dist/components/RecordEdition/EditRecordContent/uiElements/TreeField/manage-tree-node-selection/useManageTreeNodeSelection.js.map +1 -1
  139. package/dist/components/RecordEdition/EditRecordContent/uiElements/shared/useOutsideInteractionDetector.d.ts +1 -3
  140. package/dist/components/RecordEdition/EditRecordContent/uiElements/shared/useOutsideInteractionDetector.js +6 -10
  141. package/dist/components/RecordEdition/EditRecordContent/uiElements/shared/useOutsideInteractionDetector.js.map +1 -1
  142. package/dist/components/RecordEdition/EditRecordModal/EditRecordModal.d.ts +1 -0
  143. package/dist/components/RecordEdition/EditRecordModal/EditRecordModal.js +24 -6
  144. package/dist/components/RecordEdition/EditRecordModal/EditRecordModal.js.map +1 -1
  145. package/dist/components/RecordEdition/EditRecordPage/EditRecordPage.js +23 -5
  146. package/dist/components/RecordEdition/EditRecordPage/EditRecordPage.js.map +1 -1
  147. package/dist/components/RecordEdition/index.d.ts +2 -1
  148. package/dist/components/RecordEdition/index.js +2 -1
  149. package/dist/components/RecordEdition/index.js.map +1 -1
  150. package/dist/components/SelectRecordForLinkModal/SelectRecordForLinkModal.d.ts +4 -1
  151. package/dist/components/SelectRecordForLinkModal/SelectRecordForLinkModal.js +6 -4
  152. package/dist/components/SelectRecordForLinkModal/SelectRecordForLinkModal.js.map +1 -1
  153. package/dist/components/SelectTreeNode/SelectTreeNode.d.ts +7 -3
  154. package/dist/components/SelectTreeNode/SelectTreeNode.js +2 -3
  155. package/dist/components/SelectTreeNode/SelectTreeNode.js.map +1 -1
  156. package/dist/components/SelectTreeNode/SelectTreeNodeContent.d.ts +5 -1
  157. package/dist/components/SelectTreeNode/SelectTreeNodeContent.js +70 -56
  158. package/dist/components/SelectTreeNode/SelectTreeNodeContent.js.map +1 -1
  159. package/dist/components/SelectTreeNode/_types.d.ts +18 -0
  160. package/dist/components/SelectTreeNode/_types.js +2 -0
  161. package/dist/components/SelectTreeNode/_types.js.map +1 -0
  162. package/dist/components/{SelectTreeNodeModal/SelectTreeNodeModal.d.ts → SelectTreeNodeModalOld/SelectTreeNodeModalOld.d.ts} +1 -1
  163. package/dist/components/{SelectTreeNodeModal/SelectTreeNodeModal.js → SelectTreeNodeModalOld/SelectTreeNodeModalOld.js} +4 -2
  164. package/dist/components/SelectTreeNodeModalOld/SelectTreeNodeModalOld.js.map +1 -0
  165. package/dist/components/SelectTreeNodeModalOld/index.d.ts +1 -0
  166. package/dist/components/{RecordEdition/EditRecordContent/uiElements/StandardField/StandardFieldValue/ValuesList → SelectTreeNodeModalOld}/index.js +1 -2
  167. package/dist/components/SelectTreeNodeModalOld/index.js.map +1 -0
  168. package/dist/components/ValuesVersionConfigurator/VersionTree/VersionTree.js +2 -2
  169. package/dist/components/ValuesVersionConfigurator/VersionTree/VersionTree.js.map +1 -1
  170. package/dist/components/index.d.ts +1 -2
  171. package/dist/components/index.js +1 -2
  172. package/dist/components/index.js.map +1 -1
  173. package/dist/contexts/LangContext/LangContext.d.ts +1 -2
  174. package/dist/contexts/LangContext/LangContext.js +2 -2
  175. package/dist/contexts/LangContext/LangContext.js.map +1 -1
  176. package/dist/hooks/index.d.ts +2 -0
  177. package/dist/hooks/index.js +2 -0
  178. package/dist/hooks/index.js.map +1 -1
  179. package/dist/hooks/useGetRecordForm/useGetRecordForm.js +1 -1
  180. package/dist/hooks/useGetRecordForm/useGetRecordForm.js.map +1 -1
  181. package/dist/hooks/useIFrameMessenger/messageHandlers.d.ts +4 -2
  182. package/dist/hooks/useIFrameMessenger/messageHandlers.js +15 -5
  183. package/dist/hooks/useIFrameMessenger/messageHandlers.js.map +1 -1
  184. package/dist/hooks/useIFrameMessenger/schema.d.ts +21 -0
  185. package/dist/hooks/useIFrameMessenger/schema.js +76 -0
  186. package/dist/hooks/useIFrameMessenger/schema.js.map +1 -0
  187. package/dist/hooks/useIFrameMessenger/types.d.ts +52 -10
  188. package/dist/hooks/useIFrameMessenger/types.js.map +1 -1
  189. package/dist/hooks/useIFrameMessenger/useIFrameMessenger.d.ts +11 -1
  190. package/dist/hooks/useIFrameMessenger/useIFrameMessenger.js +66 -11
  191. package/dist/hooks/useIFrameMessenger/useIFrameMessenger.js.map +1 -1
  192. package/dist/hooks/useIFrameMessengerClient/IFrameMessengerClient.d.ts +7 -0
  193. package/dist/hooks/useIFrameMessengerClient/IFrameMessengerClient.js +13 -0
  194. package/dist/hooks/useIFrameMessengerClient/IFrameMessengerClient.js.map +1 -0
  195. package/dist/hooks/useIFrameMessengerClient/iFrameMessengerClientContext.d.ts +13 -0
  196. package/dist/{components/RecordEdition/EditRecord/creationErrorContext.js → hooks/useIFrameMessengerClient/iFrameMessengerClientContext.js} +2 -3
  197. package/dist/hooks/useIFrameMessengerClient/iFrameMessengerClientContext.js.map +1 -0
  198. package/dist/hooks/useIFrameMessengerClient/useIFrameMessengerClient.d.ts +13 -0
  199. package/dist/hooks/useIFrameMessengerClient/useIFrameMessengerClient.js +13 -0
  200. package/dist/hooks/useIFrameMessengerClient/useIFrameMessengerClient.js.map +1 -0
  201. package/dist/hooks/useRedirectToLogin/useRedirectToLogin.js +1 -1
  202. package/dist/hooks/useRedirectToLogin/useRedirectToLogin.js.map +1 -1
  203. package/dist/locales/en/shared.json +7 -1
  204. package/dist/locales/fr/shared.json +6 -0
  205. package/dist/types/attributes.d.ts +2 -1
  206. package/package.json +22 -7
  207. package/dist/components/Explorer/actions-item/useRemoveItemAction.js.map +0 -1
  208. package/dist/components/RecordEdition/EditRecord/creationErrorContext.d.ts +0 -6
  209. package/dist/components/RecordEdition/EditRecord/creationErrorContext.js.map +0 -1
  210. package/dist/components/RecordEdition/EditRecordContent/hooks/useCreateRecordMutation.d.ts +0 -5
  211. package/dist/components/RecordEdition/EditRecordContent/hooks/useCreateRecordMutation.js +0 -28
  212. package/dist/components/RecordEdition/EditRecordContent/hooks/useCreateRecordMutation.js.map +0 -1
  213. package/dist/components/RecordEdition/EditRecordContent/hooks/useRunActionsListAndFormatOnValue.d.ts +0 -121
  214. package/dist/components/RecordEdition/EditRecordContent/hooks/useRunActionsListAndFormatOnValue.js +0 -31
  215. package/dist/components/RecordEdition/EditRecordContent/hooks/useRunActionsListAndFormatOnValue.js.map +0 -1
  216. package/dist/components/RecordEdition/EditRecordContent/uiElements/LinkField/action-item/useEditRecord.d.ts +0 -5
  217. package/dist/components/RecordEdition/EditRecordContent/uiElements/LinkField/action-item/useEditRecord.js +0 -39
  218. package/dist/components/RecordEdition/EditRecordContent/uiElements/LinkField/action-item/useEditRecord.js.map +0 -1
  219. package/dist/components/RecordEdition/EditRecordContent/uiElements/LinkField/action-item/useUnselectRecord.d.ts +0 -8
  220. package/dist/components/RecordEdition/EditRecordContent/uiElements/LinkField/action-item/useUnselectRecord.js +0 -23
  221. package/dist/components/RecordEdition/EditRecordContent/uiElements/LinkField/action-item/useUnselectRecord.js.map +0 -1
  222. package/dist/components/RecordEdition/EditRecordContent/uiElements/LinkField/action-mass/useUnselectAllRecords.d.ts +0 -9
  223. package/dist/components/RecordEdition/EditRecordContent/uiElements/LinkField/action-mass/useUnselectAllRecords.js +0 -23
  224. package/dist/components/RecordEdition/EditRecordContent/uiElements/LinkField/action-mass/useUnselectAllRecords.js.map +0 -1
  225. package/dist/components/RecordEdition/EditRecordContent/uiElements/LinkField/action-primary/useCreateRecord.d.ts +0 -8
  226. package/dist/components/RecordEdition/EditRecordContent/uiElements/LinkField/action-primary/useCreateRecord.js +0 -26
  227. package/dist/components/RecordEdition/EditRecordContent/uiElements/LinkField/action-primary/useCreateRecord.js.map +0 -1
  228. package/dist/components/RecordEdition/EditRecordContent/uiElements/LinkField/action-primary/useRecordSelector.d.ts +0 -12
  229. package/dist/components/RecordEdition/EditRecordContent/uiElements/LinkField/action-primary/useRecordSelector.js +0 -24
  230. package/dist/components/RecordEdition/EditRecordContent/uiElements/LinkField/action-primary/useRecordSelector.js.map +0 -1
  231. package/dist/components/RecordEdition/EditRecordContent/uiElements/LinkField/link-record-in-creation/useLinkRecords.d.ts +0 -19
  232. package/dist/components/RecordEdition/EditRecordContent/uiElements/LinkField/link-record-in-creation/useLinkRecords.js +0 -103
  233. package/dist/components/RecordEdition/EditRecordContent/uiElements/LinkField/link-record-in-creation/useLinkRecords.js.map +0 -1
  234. package/dist/components/RecordEdition/EditRecordContent/uiElements/LinkField/link-record-in-creation/useLinkRecordsInCreation.d.ts +0 -22
  235. package/dist/components/RecordEdition/EditRecordContent/uiElements/LinkField/link-record-in-creation/useLinkRecordsInCreation.js +0 -104
  236. package/dist/components/RecordEdition/EditRecordContent/uiElements/LinkField/link-record-in-creation/useLinkRecordsInCreation.js.map +0 -1
  237. package/dist/components/RecordEdition/EditRecordContent/uiElements/LinkField/link-record-in-edition/useLinkRecords.js.map +0 -1
  238. package/dist/components/RecordEdition/EditRecordContent/uiElements/LinkField/link-record-in-edition/useLinkRecordsInEdition.d.ts +0 -26
  239. package/dist/components/RecordEdition/EditRecordContent/uiElements/LinkField/link-record-in-edition/useLinkRecordsInEdition.js.map +0 -1
  240. package/dist/components/RecordEdition/EditRecordContent/uiElements/LinkField/shared/LinkActionsButtons.d.ts +0 -9
  241. package/dist/components/RecordEdition/EditRecordContent/uiElements/LinkField/shared/LinkActionsButtons.js +0 -15
  242. package/dist/components/RecordEdition/EditRecordContent/uiElements/LinkField/shared/LinkActionsButtons.js.map +0 -1
  243. package/dist/components/RecordEdition/EditRecordContent/uiElements/StandardField/StandardFieldValue/ValuesList/ValuesList.d.ts +0 -16
  244. package/dist/components/RecordEdition/EditRecordContent/uiElements/StandardField/StandardFieldValue/ValuesList/ValuesList.js +0 -35
  245. package/dist/components/RecordEdition/EditRecordContent/uiElements/StandardField/StandardFieldValue/ValuesList/ValuesList.js.map +0 -1
  246. package/dist/components/RecordEdition/EditRecordContent/uiElements/StandardField/StandardFieldValue/ValuesList/index.d.ts +0 -2
  247. package/dist/components/RecordEdition/EditRecordContent/uiElements/StandardField/StandardFieldValue/ValuesList/index.js.map +0 -1
  248. package/dist/components/RecordEdition/EditRecordContent/uiElements/TreeField/display-tree-node/useDisplayTreeNode.js +0 -8
  249. package/dist/components/RecordEdition/EditRecordContent/uiElements/TreeField/display-tree-node/useDisplayTreeNode.js.map +0 -1
  250. package/dist/components/SelectTreeNodeModal/SelectTreeNodeModal.js.map +0 -1
  251. package/dist/components/SelectTreeNodeModal/index.d.ts +0 -1
  252. package/dist/components/SelectTreeNodeModal/index.js +0 -5
  253. 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>>;
@@ -258,6 +273,16 @@ export declare enum FormsSortableFields {
258
273
  library = "library",
259
274
  system = "system"
260
275
  }
276
+ export declare enum GenerationStatus {
277
+ DONE = "DONE",
278
+ GENERATION_FAILED = "GENERATION_FAILED",
279
+ GENERATION_IN_PROGRESS = "GENERATION_IN_PROGRESS",
280
+ GENERATION_IN_PROGRESS_WITH_FAILURE = "GENERATION_IN_PROGRESS_WITH_FAILURE",
281
+ PREPARATION_FAILED = "PREPARATION_FAILED",
282
+ PREPARATION_IN_PROGRESS = "PREPARATION_IN_PROGRESS",
283
+ TRANSMISSION_FAILED = "TRANSMISSION_FAILED",
284
+ TRANSMISSION_IN_PROGRESS = "TRANSMISSION_IN_PROGRESS"
285
+ }
261
286
  export type GlobalSettingsFileInput = {
262
287
  library: Scalars['String'];
263
288
  recordId: Scalars['String'];
@@ -309,12 +334,12 @@ export type LibraryIconInput = {
309
334
  export type LibraryInput = {
310
335
  attributes?: InputMaybe<Array<Scalars['ID']>>;
311
336
  behavior?: InputMaybe<LibraryBehavior>;
312
- mandatoryAttribute?: InputMaybe<Scalars['ID']>;
313
337
  defaultView?: InputMaybe<Scalars['ID']>;
314
338
  fullTextAttributes?: InputMaybe<Array<Scalars['ID']>>;
315
339
  icon?: InputMaybe<LibraryIconInput>;
316
340
  id: Scalars['ID'];
317
341
  label?: InputMaybe<Scalars['SystemTranslation']>;
342
+ mandatoryAttribute?: InputMaybe<Scalars['ID']>;
318
343
  permissions_conf?: InputMaybe<TreepermissionsConfInput>;
319
344
  previewsSettings?: InputMaybe<Array<LibraryPreviewsSettingsInput>>;
320
345
  recordIdentityConf?: InputMaybe<RecordIdentityConfInput>;
@@ -345,7 +370,9 @@ export declare enum LogAction {
345
370
  PERMISSION_SAVE = "PERMISSION_SAVE",
346
371
  RECORD_DELETE = "RECORD_DELETE",
347
372
  RECORD_SAVE = "RECORD_SAVE",
373
+ SDO_LOG_ERROR = "SDO_LOG_ERROR",
348
374
  SDO_LOG_EXPORT_RECORD = "SDO_LOG_EXPORT_RECORD",
375
+ SDO_LOG_IMPORT_RECORD = "SDO_LOG_IMPORT_RECORD",
349
376
  TASKS_DELETE = "TASKS_DELETE",
350
377
  TREE_ADD_ELEMENT = "TREE_ADD_ELEMENT",
351
378
  TREE_DELETE = "TREE_DELETE",
@@ -400,6 +427,11 @@ export type LogTopicRecordFilterInput = {
400
427
  id?: InputMaybe<Scalars['String']>;
401
428
  libraryId?: InputMaybe<Scalars['String']>;
402
429
  };
430
+ export declare enum MultiLinkDisplayOption {
431
+ avatar = "avatar",
432
+ badge_qty = "badge_qty",
433
+ tag = "tag"
434
+ }
403
435
  export type Pagination = {
404
436
  limit: Scalars['Int'];
405
437
  offset: Scalars['Int'];
@@ -442,6 +474,7 @@ export declare enum PermissionsActions {
442
474
  admin_access_applications = "admin_access_applications",
443
475
  admin_access_attributes = "admin_access_attributes",
444
476
  admin_access_libraries = "admin_access_libraries",
477
+ admin_access_logs = "admin_access_logs",
445
478
  admin_access_permissions = "admin_access_permissions",
446
479
  admin_access_tasks = "admin_access_tasks",
447
480
  admin_access_trees = "admin_access_trees",
@@ -548,6 +581,12 @@ export type RecordInput = {
548
581
  id: Scalars['ID'];
549
582
  library: Scalars['String'];
550
583
  };
584
+ export declare enum RecordPermissionsActions {
585
+ access_record = "access_record",
586
+ create_record = "create_record",
587
+ delete_record = "delete_record",
588
+ edit_record = "edit_record"
589
+ }
551
590
  export type RecordSortInput = {
552
591
  field: Scalars['String'];
553
592
  order: SortOrder;
@@ -837,6 +876,7 @@ export type AttributeDetailsLinkAttributeFragment = {
837
876
  label?: any | null;
838
877
  description?: any | null;
839
878
  multiple_values: boolean;
879
+ multi_link_display_option?: MultiLinkDisplayOption | null;
840
880
  linked_library?: {
841
881
  id: string;
842
882
  label?: any | null;
@@ -874,6 +914,7 @@ export type AttributeDetailsStandardAttributeFragment = {
874
914
  label?: any | null;
875
915
  description?: any | null;
876
916
  multiple_values: boolean;
917
+ multi_link_display_option?: MultiLinkDisplayOption | null;
877
918
  metadata_fields?: Array<{
878
919
  id: string;
879
920
  label?: any | null;
@@ -906,6 +947,7 @@ export type AttributeDetailsTreeAttributeFragment = {
906
947
  label?: any | null;
907
948
  description?: any | null;
908
949
  multiple_values: boolean;
950
+ multi_link_display_option?: MultiLinkDisplayOption | null;
909
951
  linked_tree?: {
910
952
  id: string;
911
953
  label?: any | null;
@@ -1764,6 +1806,261 @@ export type RecordFormElementFragment = {
1764
1806
  key: string;
1765
1807
  value: any;
1766
1808
  }>;
1809
+ joinLibraryContext?: {
1810
+ mandatoryAttribute: {
1811
+ id: string;
1812
+ label?: any | null;
1813
+ description?: any | null;
1814
+ type: AttributeType;
1815
+ format?: AttributeFormat | null;
1816
+ system: boolean;
1817
+ readonly: boolean;
1818
+ required: boolean;
1819
+ multiple_values: boolean;
1820
+ compute: boolean;
1821
+ linked_library?: {
1822
+ id: string;
1823
+ label?: any | null;
1824
+ behavior: LibraryBehavior;
1825
+ permissions?: {
1826
+ create_record: boolean;
1827
+ } | null;
1828
+ } | null;
1829
+ linkValuesList?: {
1830
+ enable: boolean;
1831
+ allowFreeEntry?: boolean | null;
1832
+ allowListUpdate?: boolean | null;
1833
+ values?: Array<{
1834
+ id: string;
1835
+ whoAmI: {
1836
+ id: string;
1837
+ label?: string | null;
1838
+ subLabel?: string | null;
1839
+ color?: string | null;
1840
+ preview?: IPreviewScalar | null;
1841
+ library: {
1842
+ id: string;
1843
+ label?: any | null;
1844
+ };
1845
+ };
1846
+ }> | null;
1847
+ } | null;
1848
+ permissions: {
1849
+ access_attribute: boolean;
1850
+ edit_value: boolean;
1851
+ };
1852
+ versions_conf?: {
1853
+ versionable: boolean;
1854
+ profile?: {
1855
+ id: string;
1856
+ trees: Array<{
1857
+ id: string;
1858
+ label?: any | null;
1859
+ }>;
1860
+ } | null;
1861
+ } | null;
1862
+ metadata_fields?: Array<{
1863
+ id: string;
1864
+ label?: any | null;
1865
+ description?: any | null;
1866
+ type: AttributeType;
1867
+ format?: AttributeFormat | null;
1868
+ system: boolean;
1869
+ readonly: boolean;
1870
+ multiple_values: boolean;
1871
+ permissions: {
1872
+ access_attribute: boolean;
1873
+ edit_value: boolean;
1874
+ };
1875
+ values_list?: {
1876
+ enable: boolean;
1877
+ allowFreeEntry?: boolean | null;
1878
+ allowListUpdate?: boolean | null;
1879
+ dateRangeValues?: Array<{
1880
+ from?: string | null;
1881
+ to?: string | null;
1882
+ }> | null;
1883
+ } | {
1884
+ enable: boolean;
1885
+ allowFreeEntry?: boolean | null;
1886
+ allowListUpdate?: boolean | null;
1887
+ values?: Array<string> | null;
1888
+ } | null;
1889
+ metadata_fields?: Array<{
1890
+ id: string;
1891
+ }> | null;
1892
+ }> | null;
1893
+ } | {
1894
+ character_limit?: number | null;
1895
+ id: string;
1896
+ label?: any | null;
1897
+ description?: any | null;
1898
+ type: AttributeType;
1899
+ format?: AttributeFormat | null;
1900
+ system: boolean;
1901
+ readonly: boolean;
1902
+ required: boolean;
1903
+ multiple_values: boolean;
1904
+ compute: boolean;
1905
+ values_list?: {
1906
+ enable: boolean;
1907
+ allowFreeEntry?: boolean | null;
1908
+ allowListUpdate?: boolean | null;
1909
+ dateRangeValues?: Array<{
1910
+ from?: string | null;
1911
+ to?: string | null;
1912
+ }> | null;
1913
+ } | {
1914
+ enable: boolean;
1915
+ allowFreeEntry?: boolean | null;
1916
+ allowListUpdate?: boolean | null;
1917
+ values?: Array<string> | null;
1918
+ } | null;
1919
+ permissions: {
1920
+ access_attribute: boolean;
1921
+ edit_value: boolean;
1922
+ };
1923
+ versions_conf?: {
1924
+ versionable: boolean;
1925
+ profile?: {
1926
+ id: string;
1927
+ trees: Array<{
1928
+ id: string;
1929
+ label?: any | null;
1930
+ }>;
1931
+ } | null;
1932
+ } | null;
1933
+ metadata_fields?: Array<{
1934
+ id: string;
1935
+ label?: any | null;
1936
+ description?: any | null;
1937
+ type: AttributeType;
1938
+ format?: AttributeFormat | null;
1939
+ system: boolean;
1940
+ readonly: boolean;
1941
+ multiple_values: boolean;
1942
+ permissions: {
1943
+ access_attribute: boolean;
1944
+ edit_value: boolean;
1945
+ };
1946
+ values_list?: {
1947
+ enable: boolean;
1948
+ allowFreeEntry?: boolean | null;
1949
+ allowListUpdate?: boolean | null;
1950
+ dateRangeValues?: Array<{
1951
+ from?: string | null;
1952
+ to?: string | null;
1953
+ }> | null;
1954
+ } | {
1955
+ enable: boolean;
1956
+ allowFreeEntry?: boolean | null;
1957
+ allowListUpdate?: boolean | null;
1958
+ values?: Array<string> | null;
1959
+ } | null;
1960
+ metadata_fields?: Array<{
1961
+ id: string;
1962
+ }> | null;
1963
+ }> | null;
1964
+ } | {
1965
+ id: string;
1966
+ label?: any | null;
1967
+ description?: any | null;
1968
+ type: AttributeType;
1969
+ format?: AttributeFormat | null;
1970
+ system: boolean;
1971
+ readonly: boolean;
1972
+ required: boolean;
1973
+ multiple_values: boolean;
1974
+ compute: boolean;
1975
+ linked_tree?: {
1976
+ id: string;
1977
+ label?: any | null;
1978
+ } | null;
1979
+ treeValuesList?: {
1980
+ enable: boolean;
1981
+ allowFreeEntry?: boolean | null;
1982
+ allowListUpdate?: boolean | null;
1983
+ values?: Array<{
1984
+ id: string;
1985
+ record: {
1986
+ id: string;
1987
+ whoAmI: {
1988
+ id: string;
1989
+ label?: string | null;
1990
+ subLabel?: string | null;
1991
+ color?: string | null;
1992
+ preview?: IPreviewScalar | null;
1993
+ library: {
1994
+ id: string;
1995
+ label?: any | null;
1996
+ };
1997
+ };
1998
+ };
1999
+ ancestors?: Array<{
2000
+ record: {
2001
+ id: string;
2002
+ whoAmI: {
2003
+ id: string;
2004
+ label?: string | null;
2005
+ subLabel?: string | null;
2006
+ color?: string | null;
2007
+ preview?: IPreviewScalar | null;
2008
+ library: {
2009
+ id: string;
2010
+ label?: any | null;
2011
+ };
2012
+ };
2013
+ };
2014
+ }> | null;
2015
+ }> | null;
2016
+ } | null;
2017
+ permissions: {
2018
+ access_attribute: boolean;
2019
+ edit_value: boolean;
2020
+ };
2021
+ versions_conf?: {
2022
+ versionable: boolean;
2023
+ profile?: {
2024
+ id: string;
2025
+ trees: Array<{
2026
+ id: string;
2027
+ label?: any | null;
2028
+ }>;
2029
+ } | null;
2030
+ } | null;
2031
+ metadata_fields?: Array<{
2032
+ id: string;
2033
+ label?: any | null;
2034
+ description?: any | null;
2035
+ type: AttributeType;
2036
+ format?: AttributeFormat | null;
2037
+ system: boolean;
2038
+ readonly: boolean;
2039
+ multiple_values: boolean;
2040
+ permissions: {
2041
+ access_attribute: boolean;
2042
+ edit_value: boolean;
2043
+ };
2044
+ values_list?: {
2045
+ enable: boolean;
2046
+ allowFreeEntry?: boolean | null;
2047
+ allowListUpdate?: boolean | null;
2048
+ dateRangeValues?: Array<{
2049
+ from?: string | null;
2050
+ to?: string | null;
2051
+ }> | null;
2052
+ } | {
2053
+ enable: boolean;
2054
+ allowFreeEntry?: boolean | null;
2055
+ allowListUpdate?: boolean | null;
2056
+ values?: Array<string> | null;
2057
+ } | null;
2058
+ metadata_fields?: Array<{
2059
+ id: string;
2060
+ }> | null;
2061
+ }> | null;
2062
+ };
2063
+ } | null;
1767
2064
  };
1768
2065
  export type ValueDetailsLinkValueFragment = {
1769
2066
  id_value?: string | null;
@@ -2438,8 +2735,263 @@ export type StandardValuesListFragmentStandardStringValuesListConfFragment = {
2438
2735
  values?: Array<string> | null;
2439
2736
  };
2440
2737
  export type StandardValuesListFragmentFragment = StandardValuesListFragmentStandardDateRangeValuesListConfFragment | StandardValuesListFragmentStandardStringValuesListConfFragment;
2441
- export type TreeDetailsFragment = {
2442
- id: string;
2738
+ export type JoinLibraryContextFragment = {
2739
+ mandatoryAttribute: {
2740
+ id: string;
2741
+ label?: any | null;
2742
+ description?: any | null;
2743
+ type: AttributeType;
2744
+ format?: AttributeFormat | null;
2745
+ system: boolean;
2746
+ readonly: boolean;
2747
+ required: boolean;
2748
+ multiple_values: boolean;
2749
+ compute: boolean;
2750
+ linked_library?: {
2751
+ id: string;
2752
+ label?: any | null;
2753
+ behavior: LibraryBehavior;
2754
+ permissions?: {
2755
+ create_record: boolean;
2756
+ } | null;
2757
+ } | null;
2758
+ linkValuesList?: {
2759
+ enable: boolean;
2760
+ allowFreeEntry?: boolean | null;
2761
+ allowListUpdate?: boolean | null;
2762
+ values?: Array<{
2763
+ id: string;
2764
+ whoAmI: {
2765
+ id: string;
2766
+ label?: string | null;
2767
+ subLabel?: string | null;
2768
+ color?: string | null;
2769
+ preview?: IPreviewScalar | null;
2770
+ library: {
2771
+ id: string;
2772
+ label?: any | null;
2773
+ };
2774
+ };
2775
+ }> | null;
2776
+ } | null;
2777
+ permissions: {
2778
+ access_attribute: boolean;
2779
+ edit_value: boolean;
2780
+ };
2781
+ versions_conf?: {
2782
+ versionable: boolean;
2783
+ profile?: {
2784
+ id: string;
2785
+ trees: Array<{
2786
+ id: string;
2787
+ label?: any | null;
2788
+ }>;
2789
+ } | null;
2790
+ } | null;
2791
+ metadata_fields?: Array<{
2792
+ id: string;
2793
+ label?: any | null;
2794
+ description?: any | null;
2795
+ type: AttributeType;
2796
+ format?: AttributeFormat | null;
2797
+ system: boolean;
2798
+ readonly: boolean;
2799
+ multiple_values: boolean;
2800
+ permissions: {
2801
+ access_attribute: boolean;
2802
+ edit_value: boolean;
2803
+ };
2804
+ values_list?: {
2805
+ enable: boolean;
2806
+ allowFreeEntry?: boolean | null;
2807
+ allowListUpdate?: boolean | null;
2808
+ dateRangeValues?: Array<{
2809
+ from?: string | null;
2810
+ to?: string | null;
2811
+ }> | null;
2812
+ } | {
2813
+ enable: boolean;
2814
+ allowFreeEntry?: boolean | null;
2815
+ allowListUpdate?: boolean | null;
2816
+ values?: Array<string> | null;
2817
+ } | null;
2818
+ metadata_fields?: Array<{
2819
+ id: string;
2820
+ }> | null;
2821
+ }> | null;
2822
+ } | {
2823
+ character_limit?: number | null;
2824
+ id: string;
2825
+ label?: any | null;
2826
+ description?: any | null;
2827
+ type: AttributeType;
2828
+ format?: AttributeFormat | null;
2829
+ system: boolean;
2830
+ readonly: boolean;
2831
+ required: boolean;
2832
+ multiple_values: boolean;
2833
+ compute: boolean;
2834
+ values_list?: {
2835
+ enable: boolean;
2836
+ allowFreeEntry?: boolean | null;
2837
+ allowListUpdate?: boolean | null;
2838
+ dateRangeValues?: Array<{
2839
+ from?: string | null;
2840
+ to?: string | null;
2841
+ }> | null;
2842
+ } | {
2843
+ enable: boolean;
2844
+ allowFreeEntry?: boolean | null;
2845
+ allowListUpdate?: boolean | null;
2846
+ values?: Array<string> | null;
2847
+ } | null;
2848
+ permissions: {
2849
+ access_attribute: boolean;
2850
+ edit_value: boolean;
2851
+ };
2852
+ versions_conf?: {
2853
+ versionable: boolean;
2854
+ profile?: {
2855
+ id: string;
2856
+ trees: Array<{
2857
+ id: string;
2858
+ label?: any | null;
2859
+ }>;
2860
+ } | null;
2861
+ } | null;
2862
+ metadata_fields?: Array<{
2863
+ id: string;
2864
+ label?: any | null;
2865
+ description?: any | null;
2866
+ type: AttributeType;
2867
+ format?: AttributeFormat | null;
2868
+ system: boolean;
2869
+ readonly: boolean;
2870
+ multiple_values: boolean;
2871
+ permissions: {
2872
+ access_attribute: boolean;
2873
+ edit_value: boolean;
2874
+ };
2875
+ values_list?: {
2876
+ enable: boolean;
2877
+ allowFreeEntry?: boolean | null;
2878
+ allowListUpdate?: boolean | null;
2879
+ dateRangeValues?: Array<{
2880
+ from?: string | null;
2881
+ to?: string | null;
2882
+ }> | null;
2883
+ } | {
2884
+ enable: boolean;
2885
+ allowFreeEntry?: boolean | null;
2886
+ allowListUpdate?: boolean | null;
2887
+ values?: Array<string> | null;
2888
+ } | null;
2889
+ metadata_fields?: Array<{
2890
+ id: string;
2891
+ }> | null;
2892
+ }> | null;
2893
+ } | {
2894
+ id: string;
2895
+ label?: any | null;
2896
+ description?: any | null;
2897
+ type: AttributeType;
2898
+ format?: AttributeFormat | null;
2899
+ system: boolean;
2900
+ readonly: boolean;
2901
+ required: boolean;
2902
+ multiple_values: boolean;
2903
+ compute: boolean;
2904
+ linked_tree?: {
2905
+ id: string;
2906
+ label?: any | null;
2907
+ } | null;
2908
+ treeValuesList?: {
2909
+ enable: boolean;
2910
+ allowFreeEntry?: boolean | null;
2911
+ allowListUpdate?: boolean | null;
2912
+ values?: Array<{
2913
+ id: string;
2914
+ record: {
2915
+ id: string;
2916
+ whoAmI: {
2917
+ id: string;
2918
+ label?: string | null;
2919
+ subLabel?: string | null;
2920
+ color?: string | null;
2921
+ preview?: IPreviewScalar | null;
2922
+ library: {
2923
+ id: string;
2924
+ label?: any | null;
2925
+ };
2926
+ };
2927
+ };
2928
+ ancestors?: Array<{
2929
+ record: {
2930
+ id: string;
2931
+ whoAmI: {
2932
+ id: string;
2933
+ label?: string | null;
2934
+ subLabel?: string | null;
2935
+ color?: string | null;
2936
+ preview?: IPreviewScalar | null;
2937
+ library: {
2938
+ id: string;
2939
+ label?: any | null;
2940
+ };
2941
+ };
2942
+ };
2943
+ }> | null;
2944
+ }> | null;
2945
+ } | null;
2946
+ permissions: {
2947
+ access_attribute: boolean;
2948
+ edit_value: boolean;
2949
+ };
2950
+ versions_conf?: {
2951
+ versionable: boolean;
2952
+ profile?: {
2953
+ id: string;
2954
+ trees: Array<{
2955
+ id: string;
2956
+ label?: any | null;
2957
+ }>;
2958
+ } | null;
2959
+ } | null;
2960
+ metadata_fields?: Array<{
2961
+ id: string;
2962
+ label?: any | null;
2963
+ description?: any | null;
2964
+ type: AttributeType;
2965
+ format?: AttributeFormat | null;
2966
+ system: boolean;
2967
+ readonly: boolean;
2968
+ multiple_values: boolean;
2969
+ permissions: {
2970
+ access_attribute: boolean;
2971
+ edit_value: boolean;
2972
+ };
2973
+ values_list?: {
2974
+ enable: boolean;
2975
+ allowFreeEntry?: boolean | null;
2976
+ allowListUpdate?: boolean | null;
2977
+ dateRangeValues?: Array<{
2978
+ from?: string | null;
2979
+ to?: string | null;
2980
+ }> | null;
2981
+ } | {
2982
+ enable: boolean;
2983
+ allowFreeEntry?: boolean | null;
2984
+ allowListUpdate?: boolean | null;
2985
+ values?: Array<string> | null;
2986
+ } | null;
2987
+ metadata_fields?: Array<{
2988
+ id: string;
2989
+ }> | null;
2990
+ }> | null;
2991
+ };
2992
+ };
2993
+ export type TreeDetailsFragment = {
2994
+ id: string;
2443
2995
  label?: any | null;
2444
2996
  behavior: TreeBehavior;
2445
2997
  system: boolean;
@@ -2641,6 +3193,27 @@ export type LinkAttributeDetailsFragment = {
2641
3193
  id: string;
2642
3194
  label?: any | null;
2643
3195
  } | null;
3196
+ values_list?: {
3197
+ allowFreeEntry?: boolean | null;
3198
+ enable: boolean;
3199
+ values?: Array<{
3200
+ id: string;
3201
+ whoAmI: {
3202
+ id: string;
3203
+ library: {
3204
+ id: string;
3205
+ };
3206
+ };
3207
+ }> | null;
3208
+ } | null;
3209
+ };
3210
+ export type TreeAttributeDetailsFragment = {
3211
+ id: string;
3212
+ label?: any | null;
3213
+ linked_tree?: {
3214
+ id: string;
3215
+ label?: any | null;
3216
+ } | null;
2644
3217
  };
2645
3218
  export type AttributePropertiesFragment = {
2646
3219
  id: string;
@@ -2648,6 +3221,7 @@ export type AttributePropertiesFragment = {
2648
3221
  type: AttributeType;
2649
3222
  format?: AttributeFormat | null;
2650
3223
  multiple_values: boolean;
3224
+ multi_link_display_option?: MultiLinkDisplayOption | null;
2651
3225
  };
2652
3226
  export type PropertyValueLinkValueFragment = {
2653
3227
  linkPayload?: {
@@ -2700,6 +3274,7 @@ export type LinkPropertyLinkValueFragment = {
2700
3274
  type: AttributeType;
2701
3275
  format?: AttributeFormat | null;
2702
3276
  multiple_values: boolean;
3277
+ multi_link_display_option?: MultiLinkDisplayOption | null;
2703
3278
  };
2704
3279
  values: Array<{
2705
3280
  linkPayload?: {
@@ -2923,6 +3498,7 @@ export type GetAttributeByIdQuery = {
2923
3498
  label?: any | null;
2924
3499
  description?: any | null;
2925
3500
  multiple_values: boolean;
3501
+ multi_link_display_option?: MultiLinkDisplayOption | null;
2926
3502
  linked_library?: {
2927
3503
  id: string;
2928
3504
  label?: any | null;
@@ -2959,6 +3535,7 @@ export type GetAttributeByIdQuery = {
2959
3535
  label?: any | null;
2960
3536
  description?: any | null;
2961
3537
  multiple_values: boolean;
3538
+ multi_link_display_option?: MultiLinkDisplayOption | null;
2962
3539
  metadata_fields?: Array<{
2963
3540
  id: string;
2964
3541
  label?: any | null;
@@ -2990,6 +3567,7 @@ export type GetAttributeByIdQuery = {
2990
3567
  label?: any | null;
2991
3568
  description?: any | null;
2992
3569
  multiple_values: boolean;
3570
+ multi_link_display_option?: MultiLinkDisplayOption | null;
2993
3571
  linked_tree?: {
2994
3572
  id: string;
2995
3573
  label?: any | null;
@@ -3132,6 +3710,7 @@ export type SaveAttributeMutation = {
3132
3710
  label?: any | null;
3133
3711
  description?: any | null;
3134
3712
  multiple_values: boolean;
3713
+ multi_link_display_option?: MultiLinkDisplayOption | null;
3135
3714
  linked_library?: {
3136
3715
  id: string;
3137
3716
  label?: any | null;
@@ -3168,6 +3747,7 @@ export type SaveAttributeMutation = {
3168
3747
  label?: any | null;
3169
3748
  description?: any | null;
3170
3749
  multiple_values: boolean;
3750
+ multi_link_display_option?: MultiLinkDisplayOption | null;
3171
3751
  metadata_fields?: Array<{
3172
3752
  id: string;
3173
3753
  label?: any | null;
@@ -3199,6 +3779,7 @@ export type SaveAttributeMutation = {
3199
3779
  label?: any | null;
3200
3780
  description?: any | null;
3201
3781
  multiple_values: boolean;
3782
+ multi_link_display_option?: MultiLinkDisplayOption | null;
3202
3783
  linked_tree?: {
3203
3784
  id: string;
3204
3785
  label?: any | null;
@@ -3652,6 +4233,54 @@ export type IsAllowedQuery = {
3652
4233
  allowed?: boolean | null;
3653
4234
  }> | null;
3654
4235
  };
4236
+ export type ActivateRecordsMutationVariables = Exact<{
4237
+ libraryId: Scalars['String'];
4238
+ recordsIds?: InputMaybe<Array<Scalars['String']> | Scalars['String']>;
4239
+ filters?: InputMaybe<Array<RecordFilterInput> | RecordFilterInput>;
4240
+ }>;
4241
+ export type ActivateRecordsMutation = {
4242
+ activateRecords: Array<{
4243
+ id: string;
4244
+ whoAmI: {
4245
+ id: string;
4246
+ label?: string | null;
4247
+ subLabel?: string | null;
4248
+ color?: string | null;
4249
+ preview?: IPreviewScalar | null;
4250
+ library: {
4251
+ id: string;
4252
+ label?: any | null;
4253
+ };
4254
+ };
4255
+ }>;
4256
+ };
4257
+ export type CreateEmptyRecordMutationVariables = Exact<{
4258
+ library: Scalars['ID'];
4259
+ }>;
4260
+ export type CreateEmptyRecordMutation = {
4261
+ createEmptyRecord: {
4262
+ record?: {
4263
+ id: string;
4264
+ whoAmI: {
4265
+ id: string;
4266
+ label?: string | null;
4267
+ subLabel?: string | null;
4268
+ color?: string | null;
4269
+ preview?: IPreviewScalar | null;
4270
+ library: {
4271
+ id: string;
4272
+ label?: any | null;
4273
+ };
4274
+ };
4275
+ } | null;
4276
+ valuesErrors?: Array<{
4277
+ type: string;
4278
+ attribute: string;
4279
+ input?: string | null;
4280
+ message: string;
4281
+ }> | null;
4282
+ };
4283
+ };
3655
4284
  export type CreateRecordMutationVariables = Exact<{
3656
4285
  library: Scalars['ID'];
3657
4286
  data?: InputMaybe<CreateRecordDataInput>;
@@ -4354,28 +4983,271 @@ export type RecordFormQuery = {
4354
4983
  linked_tree?: {
4355
4984
  id: string;
4356
4985
  label?: any | null;
4357
- } | null;
4358
- treeValuesList?: {
4359
- enable: boolean;
4360
- allowFreeEntry?: boolean | null;
4361
- allowListUpdate?: boolean | null;
4362
- values?: Array<{
4986
+ } | null;
4987
+ treeValuesList?: {
4988
+ enable: boolean;
4989
+ allowFreeEntry?: boolean | null;
4990
+ allowListUpdate?: boolean | null;
4991
+ values?: Array<{
4992
+ id: string;
4993
+ record: {
4994
+ id: string;
4995
+ whoAmI: {
4996
+ id: string;
4997
+ label?: string | null;
4998
+ subLabel?: string | null;
4999
+ color?: string | null;
5000
+ preview?: IPreviewScalar | null;
5001
+ library: {
5002
+ id: string;
5003
+ label?: any | null;
5004
+ };
5005
+ };
5006
+ };
5007
+ ancestors?: Array<{
5008
+ record: {
5009
+ id: string;
5010
+ whoAmI: {
5011
+ id: string;
5012
+ label?: string | null;
5013
+ subLabel?: string | null;
5014
+ color?: string | null;
5015
+ preview?: IPreviewScalar | null;
5016
+ library: {
5017
+ id: string;
5018
+ label?: any | null;
5019
+ };
5020
+ };
5021
+ };
5022
+ }> | null;
5023
+ }> | null;
5024
+ } | null;
5025
+ permissions: {
5026
+ access_attribute: boolean;
5027
+ edit_value: boolean;
5028
+ };
5029
+ versions_conf?: {
5030
+ versionable: boolean;
5031
+ profile?: {
5032
+ id: string;
5033
+ trees: Array<{
5034
+ id: string;
5035
+ label?: any | null;
5036
+ }>;
5037
+ } | null;
5038
+ } | null;
5039
+ metadata_fields?: Array<{
5040
+ id: string;
5041
+ label?: any | null;
5042
+ description?: any | null;
5043
+ type: AttributeType;
5044
+ format?: AttributeFormat | null;
5045
+ system: boolean;
5046
+ readonly: boolean;
5047
+ multiple_values: boolean;
5048
+ permissions: {
5049
+ access_attribute: boolean;
5050
+ edit_value: boolean;
5051
+ };
5052
+ values_list?: {
5053
+ enable: boolean;
5054
+ allowFreeEntry?: boolean | null;
5055
+ allowListUpdate?: boolean | null;
5056
+ dateRangeValues?: Array<{
5057
+ from?: string | null;
5058
+ to?: string | null;
5059
+ }> | null;
5060
+ } | {
5061
+ enable: boolean;
5062
+ allowFreeEntry?: boolean | null;
5063
+ allowListUpdate?: boolean | null;
5064
+ values?: Array<string> | null;
5065
+ } | null;
5066
+ metadata_fields?: Array<{
5067
+ id: string;
5068
+ }> | null;
5069
+ }> | null;
5070
+ } | null;
5071
+ settings: Array<{
5072
+ key: string;
5073
+ value: any;
5074
+ }>;
5075
+ joinLibraryContext?: {
5076
+ mandatoryAttribute: {
5077
+ id: string;
5078
+ label?: any | null;
5079
+ description?: any | null;
5080
+ type: AttributeType;
5081
+ format?: AttributeFormat | null;
5082
+ system: boolean;
5083
+ readonly: boolean;
5084
+ required: boolean;
5085
+ multiple_values: boolean;
5086
+ compute: boolean;
5087
+ linked_library?: {
5088
+ id: string;
5089
+ label?: any | null;
5090
+ behavior: LibraryBehavior;
5091
+ permissions?: {
5092
+ create_record: boolean;
5093
+ } | null;
5094
+ } | null;
5095
+ linkValuesList?: {
5096
+ enable: boolean;
5097
+ allowFreeEntry?: boolean | null;
5098
+ allowListUpdate?: boolean | null;
5099
+ values?: Array<{
5100
+ id: string;
5101
+ whoAmI: {
5102
+ id: string;
5103
+ label?: string | null;
5104
+ subLabel?: string | null;
5105
+ color?: string | null;
5106
+ preview?: IPreviewScalar | null;
5107
+ library: {
5108
+ id: string;
5109
+ label?: any | null;
5110
+ };
5111
+ };
5112
+ }> | null;
5113
+ } | null;
5114
+ permissions: {
5115
+ access_attribute: boolean;
5116
+ edit_value: boolean;
5117
+ };
5118
+ versions_conf?: {
5119
+ versionable: boolean;
5120
+ profile?: {
5121
+ id: string;
5122
+ trees: Array<{
5123
+ id: string;
5124
+ label?: any | null;
5125
+ }>;
5126
+ } | null;
5127
+ } | null;
5128
+ metadata_fields?: Array<{
5129
+ id: string;
5130
+ label?: any | null;
5131
+ description?: any | null;
5132
+ type: AttributeType;
5133
+ format?: AttributeFormat | null;
5134
+ system: boolean;
5135
+ readonly: boolean;
5136
+ multiple_values: boolean;
5137
+ permissions: {
5138
+ access_attribute: boolean;
5139
+ edit_value: boolean;
5140
+ };
5141
+ values_list?: {
5142
+ enable: boolean;
5143
+ allowFreeEntry?: boolean | null;
5144
+ allowListUpdate?: boolean | null;
5145
+ dateRangeValues?: Array<{
5146
+ from?: string | null;
5147
+ to?: string | null;
5148
+ }> | null;
5149
+ } | {
5150
+ enable: boolean;
5151
+ allowFreeEntry?: boolean | null;
5152
+ allowListUpdate?: boolean | null;
5153
+ values?: Array<string> | null;
5154
+ } | null;
5155
+ metadata_fields?: Array<{
5156
+ id: string;
5157
+ }> | null;
5158
+ }> | null;
5159
+ } | {
5160
+ character_limit?: number | null;
5161
+ id: string;
5162
+ label?: any | null;
5163
+ description?: any | null;
5164
+ type: AttributeType;
5165
+ format?: AttributeFormat | null;
5166
+ system: boolean;
5167
+ readonly: boolean;
5168
+ required: boolean;
5169
+ multiple_values: boolean;
5170
+ compute: boolean;
5171
+ values_list?: {
5172
+ enable: boolean;
5173
+ allowFreeEntry?: boolean | null;
5174
+ allowListUpdate?: boolean | null;
5175
+ dateRangeValues?: Array<{
5176
+ from?: string | null;
5177
+ to?: string | null;
5178
+ }> | null;
5179
+ } | {
5180
+ enable: boolean;
5181
+ allowFreeEntry?: boolean | null;
5182
+ allowListUpdate?: boolean | null;
5183
+ values?: Array<string> | null;
5184
+ } | null;
5185
+ permissions: {
5186
+ access_attribute: boolean;
5187
+ edit_value: boolean;
5188
+ };
5189
+ versions_conf?: {
5190
+ versionable: boolean;
5191
+ profile?: {
5192
+ id: string;
5193
+ trees: Array<{
5194
+ id: string;
5195
+ label?: any | null;
5196
+ }>;
5197
+ } | null;
5198
+ } | null;
5199
+ metadata_fields?: Array<{
5200
+ id: string;
5201
+ label?: any | null;
5202
+ description?: any | null;
5203
+ type: AttributeType;
5204
+ format?: AttributeFormat | null;
5205
+ system: boolean;
5206
+ readonly: boolean;
5207
+ multiple_values: boolean;
5208
+ permissions: {
5209
+ access_attribute: boolean;
5210
+ edit_value: boolean;
5211
+ };
5212
+ values_list?: {
5213
+ enable: boolean;
5214
+ allowFreeEntry?: boolean | null;
5215
+ allowListUpdate?: boolean | null;
5216
+ dateRangeValues?: Array<{
5217
+ from?: string | null;
5218
+ to?: string | null;
5219
+ }> | null;
5220
+ } | {
5221
+ enable: boolean;
5222
+ allowFreeEntry?: boolean | null;
5223
+ allowListUpdate?: boolean | null;
5224
+ values?: Array<string> | null;
5225
+ } | null;
5226
+ metadata_fields?: Array<{
5227
+ id: string;
5228
+ }> | null;
5229
+ }> | null;
5230
+ } | {
5231
+ id: string;
5232
+ label?: any | null;
5233
+ description?: any | null;
5234
+ type: AttributeType;
5235
+ format?: AttributeFormat | null;
5236
+ system: boolean;
5237
+ readonly: boolean;
5238
+ required: boolean;
5239
+ multiple_values: boolean;
5240
+ compute: boolean;
5241
+ linked_tree?: {
4363
5242
  id: string;
4364
- record: {
5243
+ label?: any | null;
5244
+ } | null;
5245
+ treeValuesList?: {
5246
+ enable: boolean;
5247
+ allowFreeEntry?: boolean | null;
5248
+ allowListUpdate?: boolean | null;
5249
+ values?: Array<{
4365
5250
  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
5251
  record: {
4380
5252
  id: string;
4381
5253
  whoAmI: {
@@ -4390,63 +5262,75 @@ export type RecordFormQuery = {
4390
5262
  };
4391
5263
  };
4392
5264
  };
5265
+ ancestors?: Array<{
5266
+ record: {
5267
+ id: string;
5268
+ whoAmI: {
5269
+ id: string;
5270
+ label?: string | null;
5271
+ subLabel?: string | null;
5272
+ color?: string | null;
5273
+ preview?: IPreviewScalar | null;
5274
+ library: {
5275
+ id: string;
5276
+ label?: any | null;
5277
+ };
5278
+ };
5279
+ };
5280
+ }> | null;
4393
5281
  }> | 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
5282
  } | 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
5283
  permissions: {
4420
5284
  access_attribute: boolean;
4421
5285
  edit_value: boolean;
4422
5286
  };
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;
5287
+ versions_conf?: {
5288
+ versionable: boolean;
5289
+ profile?: {
5290
+ id: string;
5291
+ trees: Array<{
5292
+ id: string;
5293
+ label?: any | null;
5294
+ }>;
5295
+ } | null;
4436
5296
  } | null;
4437
5297
  metadata_fields?: Array<{
4438
5298
  id: string;
5299
+ label?: any | null;
5300
+ description?: any | null;
5301
+ type: AttributeType;
5302
+ format?: AttributeFormat | null;
5303
+ system: boolean;
5304
+ readonly: boolean;
5305
+ multiple_values: boolean;
5306
+ permissions: {
5307
+ access_attribute: boolean;
5308
+ edit_value: boolean;
5309
+ };
5310
+ values_list?: {
5311
+ enable: boolean;
5312
+ allowFreeEntry?: boolean | null;
5313
+ allowListUpdate?: boolean | null;
5314
+ dateRangeValues?: Array<{
5315
+ from?: string | null;
5316
+ to?: string | null;
5317
+ }> | null;
5318
+ } | {
5319
+ enable: boolean;
5320
+ allowFreeEntry?: boolean | null;
5321
+ allowListUpdate?: boolean | null;
5322
+ values?: Array<string> | null;
5323
+ } | null;
5324
+ metadata_fields?: Array<{
5325
+ id: string;
5326
+ }> | null;
4439
5327
  }> | null;
4440
- }> | null;
5328
+ };
4441
5329
  } | null;
4442
- settings: Array<{
4443
- key: string;
4444
- value: any;
4445
- }>;
4446
5330
  }>;
4447
5331
  sidePanel?: {
4448
5332
  enable: boolean;
4449
- isOpenByDefault: boolean;
5333
+ isOpenByDefault?: boolean | null;
4450
5334
  } | null;
4451
5335
  } | null;
4452
5336
  };
@@ -4872,6 +5756,30 @@ export type RecordUpdateSubscription = {
4872
5756
  }>;
4873
5757
  };
4874
5758
  };
5759
+ export type GetRecordsFromLibraryQueryVariables = Exact<{
5760
+ libraryId: Scalars['ID'];
5761
+ pagination?: InputMaybe<RecordsPagination>;
5762
+ filters?: InputMaybe<Array<InputMaybe<RecordFilterInput>> | InputMaybe<RecordFilterInput>>;
5763
+ }>;
5764
+ export type GetRecordsFromLibraryQuery = {
5765
+ records: {
5766
+ totalCount?: number | null;
5767
+ list: Array<{
5768
+ id: string;
5769
+ whoAmI: {
5770
+ id: string;
5771
+ label?: string | null;
5772
+ subLabel?: string | null;
5773
+ color?: string | null;
5774
+ preview?: IPreviewScalar | null;
5775
+ library: {
5776
+ id: string;
5777
+ label?: any | null;
5778
+ };
5779
+ };
5780
+ }>;
5781
+ };
5782
+ };
4875
5783
  export type IndexRecordsMutationVariables = Exact<{
4876
5784
  libraryId: Scalars['String'];
4877
5785
  records?: InputMaybe<Array<Scalars['String']> | Scalars['String']>;
@@ -4989,6 +5897,7 @@ export type TreeNodeChildrenQueryVariables = Exact<{
4989
5897
  treeId: Scalars['ID'];
4990
5898
  node?: InputMaybe<Scalars['ID']>;
4991
5899
  pagination?: InputMaybe<Pagination>;
5900
+ childrenAsRecordValuePermissionFilter?: InputMaybe<ChildrenAsRecordValuePermissionFilterInput>;
4992
5901
  }>;
4993
5902
  export type TreeNodeChildrenQuery = {
4994
5903
  treeNodeChildren: {
@@ -5224,130 +6133,16 @@ export type DeleteValueMutation = {
5224
6133
  id: string;
5225
6134
  label?: string | null;
5226
6135
  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;
6136
+ color?: string | null;
6137
+ preview?: IPreviewScalar | null;
6138
+ library: {
6139
+ id: string;
6140
+ label?: any | null;
6141
+ };
6142
+ };
6143
+ };
6144
+ }> | null;
6145
+ } | null;
5351
6146
  modified_by?: {
5352
6147
  id: string;
5353
6148
  whoAmI: {
@@ -5452,24 +6247,16 @@ export type DeleteValueMutation = {
5452
6247
  } | null> | null;
5453
6248
  } | null;
5454
6249
  } | 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<{
6250
+ } | {
6251
+ payload?: any | null;
6252
+ raw_payload?: any | null;
6253
+ value?: any | null;
6254
+ raw_value?: any | null;
5464
6255
  id_value?: string | null;
5465
6256
  isInherited?: boolean | null;
5466
6257
  isCalculated?: boolean | null;
5467
6258
  modified_at?: number | null;
5468
6259
  created_at?: number | null;
5469
- payload?: any | null;
5470
- raw_payload?: any | null;
5471
- value?: any | null;
5472
- raw_value?: any | null;
5473
6260
  modified_by?: {
5474
6261
  id: string;
5475
6262
  whoAmI: {
@@ -6249,6 +7036,27 @@ export type ExplorerAttributesQuery = {
6249
7036
  id: string;
6250
7037
  label?: any | null;
6251
7038
  } | null;
7039
+ values_list?: {
7040
+ allowFreeEntry?: boolean | null;
7041
+ enable: boolean;
7042
+ values?: Array<{
7043
+ id: string;
7044
+ whoAmI: {
7045
+ id: string;
7046
+ library: {
7047
+ id: string;
7048
+ };
7049
+ };
7050
+ }> | null;
7051
+ } | null;
7052
+ permissions: {
7053
+ access_attribute: boolean;
7054
+ };
7055
+ } | {
7056
+ id: string;
7057
+ type: AttributeType;
7058
+ format?: AttributeFormat | null;
7059
+ label?: any | null;
6252
7060
  permissions: {
6253
7061
  access_attribute: boolean;
6254
7062
  };
@@ -6257,6 +7065,10 @@ export type ExplorerAttributesQuery = {
6257
7065
  type: AttributeType;
6258
7066
  format?: AttributeFormat | null;
6259
7067
  label?: any | null;
7068
+ linked_tree?: {
7069
+ id: string;
7070
+ label?: any | null;
7071
+ } | null;
6260
7072
  permissions: {
6261
7073
  access_attribute: boolean;
6262
7074
  };
@@ -6276,13 +7088,38 @@ export type ExplorerLinkAttributeQuery = {
6276
7088
  id: string;
6277
7089
  label?: any | null;
6278
7090
  } | null;
7091
+ values_list?: {
7092
+ allowFreeEntry?: boolean | null;
7093
+ enable: boolean;
7094
+ values?: Array<{
7095
+ id: string;
7096
+ whoAmI: {
7097
+ id: string;
7098
+ library: {
7099
+ id: string;
7100
+ };
7101
+ };
7102
+ }> | null;
7103
+ } | null;
7104
+ permissions: {
7105
+ access_attribute: boolean;
7106
+ edit_value: boolean;
7107
+ };
7108
+ } | {
7109
+ id: string;
7110
+ multiple_values: boolean;
6279
7111
  permissions: {
6280
7112
  access_attribute: boolean;
6281
7113
  edit_value: boolean;
6282
7114
  };
6283
7115
  } | {
7116
+ label?: any | null;
6284
7117
  id: string;
6285
7118
  multiple_values: boolean;
7119
+ linked_tree?: {
7120
+ id: string;
7121
+ label?: any | null;
7122
+ } | null;
6286
7123
  permissions: {
6287
7124
  access_attribute: boolean;
6288
7125
  edit_value: boolean;
@@ -6303,6 +7140,7 @@ export type ExplorerLibraryDataQuery = {
6303
7140
  totalCount?: number | null;
6304
7141
  list: Array<{
6305
7142
  id: string;
7143
+ active: boolean;
6306
7144
  whoAmI: {
6307
7145
  id: string;
6308
7146
  label?: string | null;
@@ -6315,6 +7153,7 @@ export type ExplorerLibraryDataQuery = {
6315
7153
  };
6316
7154
  };
6317
7155
  permissions: {
7156
+ create_record: boolean;
6318
7157
  delete_record: boolean;
6319
7158
  };
6320
7159
  properties: Array<{
@@ -6325,6 +7164,7 @@ export type ExplorerLibraryDataQuery = {
6325
7164
  type: AttributeType;
6326
7165
  format?: AttributeFormat | null;
6327
7166
  multiple_values: boolean;
7167
+ multi_link_display_option?: MultiLinkDisplayOption | null;
6328
7168
  };
6329
7169
  values: Array<{
6330
7170
  linkPayload?: {
@@ -6405,6 +7245,7 @@ export type ExplorerLinkDataQuery = {
6405
7245
  type: AttributeType;
6406
7246
  format?: AttributeFormat | null;
6407
7247
  multiple_values: boolean;
7248
+ multi_link_display_option?: MultiLinkDisplayOption | null;
6408
7249
  };
6409
7250
  values: Array<{
6410
7251
  linkPayload?: {
@@ -6618,6 +7459,7 @@ export declare const ValuesVersionDetailsFragmentDoc: Apollo.DocumentNode;
6618
7459
  export declare const ValueDetailsFragmentDoc: Apollo.DocumentNode;
6619
7460
  export declare const StandardValuesListFragmentFragmentDoc: Apollo.DocumentNode;
6620
7461
  export declare const RecordFormAttributeFragmentDoc: Apollo.DocumentNode;
7462
+ export declare const JoinLibraryContextFragmentDoc: Apollo.DocumentNode;
6621
7463
  export declare const RecordFormElementFragmentDoc: Apollo.DocumentNode;
6622
7464
  export declare const TreeLightFragmentDoc: Apollo.DocumentNode;
6623
7465
  export declare const TreeDetailsFragmentDoc: Apollo.DocumentNode;
@@ -6627,6 +7469,7 @@ export declare const ViewDetailsFragmentDoc: Apollo.DocumentNode;
6627
7469
  export declare const AttributesByLibLinkAttributeWithPermissionsFragmentDoc: Apollo.DocumentNode;
6628
7470
  export declare const AttributesByLibAttributeWithPermissionsFragmentDoc: Apollo.DocumentNode;
6629
7471
  export declare const LinkAttributeDetailsFragmentDoc: Apollo.DocumentNode;
7472
+ export declare const TreeAttributeDetailsFragmentDoc: Apollo.DocumentNode;
6630
7473
  export declare const AttributePropertiesFragmentDoc: Apollo.DocumentNode;
6631
7474
  export declare const PropertyValueFragmentDoc: Apollo.DocumentNode;
6632
7475
  export declare const LinkPropertyFragmentDoc: Apollo.DocumentNode;
@@ -6658,8 +7501,13 @@ export declare function useCheckApplicationExistenceLazyQuery(baseOptions?: Apol
6658
7501
  id?: InputMaybe<Scalars["ID"]>;
6659
7502
  endpoint?: InputMaybe<Scalars["String"]>;
6660
7503
  }>>;
7504
+ export declare function useCheckApplicationExistenceSuspenseQuery(baseOptions?: Apollo.SuspenseQueryHookOptions<CheckApplicationExistenceQuery, CheckApplicationExistenceQueryVariables>): Apollo.UseSuspenseQueryResult<CheckApplicationExistenceQuery, Exact<{
7505
+ id?: InputMaybe<Scalars["ID"]>;
7506
+ endpoint?: InputMaybe<Scalars["String"]>;
7507
+ }>>;
6661
7508
  export type CheckApplicationExistenceQueryHookResult = ReturnType<typeof useCheckApplicationExistenceQuery>;
6662
7509
  export type CheckApplicationExistenceLazyQueryHookResult = ReturnType<typeof useCheckApplicationExistenceLazyQuery>;
7510
+ export type CheckApplicationExistenceSuspenseQueryHookResult = ReturnType<typeof useCheckApplicationExistenceSuspenseQuery>;
6663
7511
  export type CheckApplicationExistenceQueryResult = Apollo.QueryResult<CheckApplicationExistenceQuery, CheckApplicationExistenceQueryVariables>;
6664
7512
  export declare const GetApplicationByIdDocument: Apollo.DocumentNode;
6665
7513
  /**
@@ -6684,8 +7532,12 @@ export declare function useGetApplicationByIdQuery(baseOptions: Apollo.QueryHook
6684
7532
  export declare function useGetApplicationByIdLazyQuery(baseOptions?: Apollo.LazyQueryHookOptions<GetApplicationByIdQuery, GetApplicationByIdQueryVariables>): Apollo.LazyQueryResultTuple<GetApplicationByIdQuery, Exact<{
6685
7533
  id: Scalars["ID"];
6686
7534
  }>>;
7535
+ export declare function useGetApplicationByIdSuspenseQuery(baseOptions?: Apollo.SuspenseQueryHookOptions<GetApplicationByIdQuery, GetApplicationByIdQueryVariables>): Apollo.UseSuspenseQueryResult<GetApplicationByIdQuery, Exact<{
7536
+ id: Scalars["ID"];
7537
+ }>>;
6687
7538
  export type GetApplicationByIdQueryHookResult = ReturnType<typeof useGetApplicationByIdQuery>;
6688
7539
  export type GetApplicationByIdLazyQueryHookResult = ReturnType<typeof useGetApplicationByIdLazyQuery>;
7540
+ export type GetApplicationByIdSuspenseQueryHookResult = ReturnType<typeof useGetApplicationByIdSuspenseQuery>;
6689
7541
  export type GetApplicationByIdQueryResult = Apollo.QueryResult<GetApplicationByIdQuery, GetApplicationByIdQueryVariables>;
6690
7542
  export declare const GetApplicationModulesDocument: Apollo.DocumentNode;
6691
7543
  /**
@@ -6709,8 +7561,12 @@ export declare function useGetApplicationModulesQuery(baseOptions?: Apollo.Query
6709
7561
  export declare function useGetApplicationModulesLazyQuery(baseOptions?: Apollo.LazyQueryHookOptions<GetApplicationModulesQuery, GetApplicationModulesQueryVariables>): Apollo.LazyQueryResultTuple<GetApplicationModulesQuery, Exact<{
6710
7562
  [key: string]: never;
6711
7563
  }>>;
7564
+ export declare function useGetApplicationModulesSuspenseQuery(baseOptions?: Apollo.SuspenseQueryHookOptions<GetApplicationModulesQuery, GetApplicationModulesQueryVariables>): Apollo.UseSuspenseQueryResult<GetApplicationModulesQuery, Exact<{
7565
+ [key: string]: never;
7566
+ }>>;
6712
7567
  export type GetApplicationModulesQueryHookResult = ReturnType<typeof useGetApplicationModulesQuery>;
6713
7568
  export type GetApplicationModulesLazyQueryHookResult = ReturnType<typeof useGetApplicationModulesLazyQuery>;
7569
+ export type GetApplicationModulesSuspenseQueryHookResult = ReturnType<typeof useGetApplicationModulesSuspenseQuery>;
6714
7570
  export type GetApplicationModulesQueryResult = Apollo.QueryResult<GetApplicationModulesQuery, GetApplicationModulesQueryVariables>;
6715
7571
  export declare const SaveApplicationDocument: Apollo.DocumentNode;
6716
7572
  export type SaveApplicationMutationFn = Apollo.MutationFunction<SaveApplicationMutation, SaveApplicationMutationVariables>;
@@ -6760,8 +7616,12 @@ export declare function useCheckAttributeExistenceQuery(baseOptions: Apollo.Quer
6760
7616
  export declare function useCheckAttributeExistenceLazyQuery(baseOptions?: Apollo.LazyQueryHookOptions<CheckAttributeExistenceQuery, CheckAttributeExistenceQueryVariables>): Apollo.LazyQueryResultTuple<CheckAttributeExistenceQuery, Exact<{
6761
7617
  id: Scalars["ID"];
6762
7618
  }>>;
7619
+ export declare function useCheckAttributeExistenceSuspenseQuery(baseOptions?: Apollo.SuspenseQueryHookOptions<CheckAttributeExistenceQuery, CheckAttributeExistenceQueryVariables>): Apollo.UseSuspenseQueryResult<CheckAttributeExistenceQuery, Exact<{
7620
+ id: Scalars["ID"];
7621
+ }>>;
6763
7622
  export type CheckAttributeExistenceQueryHookResult = ReturnType<typeof useCheckAttributeExistenceQuery>;
6764
7623
  export type CheckAttributeExistenceLazyQueryHookResult = ReturnType<typeof useCheckAttributeExistenceLazyQuery>;
7624
+ export type CheckAttributeExistenceSuspenseQueryHookResult = ReturnType<typeof useCheckAttributeExistenceSuspenseQuery>;
6765
7625
  export type CheckAttributeExistenceQueryResult = Apollo.QueryResult<CheckAttributeExistenceQuery, CheckAttributeExistenceQueryVariables>;
6766
7626
  export declare const DeleteAttributeDocument: Apollo.DocumentNode;
6767
7627
  export type DeleteAttributeMutationFn = Apollo.MutationFunction<DeleteAttributeMutation, DeleteAttributeMutationVariables>;
@@ -6811,8 +7671,12 @@ export declare function useGetAttributeByIdQuery(baseOptions?: Apollo.QueryHookO
6811
7671
  export declare function useGetAttributeByIdLazyQuery(baseOptions?: Apollo.LazyQueryHookOptions<GetAttributeByIdQuery, GetAttributeByIdQueryVariables>): Apollo.LazyQueryResultTuple<GetAttributeByIdQuery, Exact<{
6812
7672
  id?: InputMaybe<Scalars["ID"]>;
6813
7673
  }>>;
7674
+ export declare function useGetAttributeByIdSuspenseQuery(baseOptions?: Apollo.SuspenseQueryHookOptions<GetAttributeByIdQuery, GetAttributeByIdQueryVariables>): Apollo.UseSuspenseQueryResult<GetAttributeByIdQuery, Exact<{
7675
+ id?: InputMaybe<Scalars["ID"]>;
7676
+ }>>;
6814
7677
  export type GetAttributeByIdQueryHookResult = ReturnType<typeof useGetAttributeByIdQuery>;
6815
7678
  export type GetAttributeByIdLazyQueryHookResult = ReturnType<typeof useGetAttributeByIdLazyQuery>;
7679
+ export type GetAttributeByIdSuspenseQueryHookResult = ReturnType<typeof useGetAttributeByIdSuspenseQuery>;
6816
7680
  export type GetAttributeByIdQueryResult = Apollo.QueryResult<GetAttributeByIdQuery, GetAttributeByIdQueryVariables>;
6817
7681
  export declare const GetAttributesByLibDocument: Apollo.DocumentNode;
6818
7682
  /**
@@ -6837,8 +7701,12 @@ export declare function useGetAttributesByLibQuery(baseOptions: Apollo.QueryHook
6837
7701
  export declare function useGetAttributesByLibLazyQuery(baseOptions?: Apollo.LazyQueryHookOptions<GetAttributesByLibQuery, GetAttributesByLibQueryVariables>): Apollo.LazyQueryResultTuple<GetAttributesByLibQuery, Exact<{
6838
7702
  library: Scalars["String"];
6839
7703
  }>>;
7704
+ export declare function useGetAttributesByLibSuspenseQuery(baseOptions?: Apollo.SuspenseQueryHookOptions<GetAttributesByLibQuery, GetAttributesByLibQueryVariables>): Apollo.UseSuspenseQueryResult<GetAttributesByLibQuery, Exact<{
7705
+ library: Scalars["String"];
7706
+ }>>;
6840
7707
  export type GetAttributesByLibQueryHookResult = ReturnType<typeof useGetAttributesByLibQuery>;
6841
7708
  export type GetAttributesByLibLazyQueryHookResult = ReturnType<typeof useGetAttributesByLibLazyQuery>;
7709
+ export type GetAttributesByLibSuspenseQueryHookResult = ReturnType<typeof useGetAttributesByLibSuspenseQuery>;
6842
7710
  export type GetAttributesByLibQueryResult = Apollo.QueryResult<GetAttributesByLibQuery, GetAttributesByLibQueryVariables>;
6843
7711
  export declare const GetAttributesDocument: Apollo.DocumentNode;
6844
7712
  /**
@@ -6869,8 +7737,14 @@ export declare function useGetAttributesLazyQuery(baseOptions?: Apollo.LazyQuery
6869
7737
  sort?: InputMaybe<SortAttributes>;
6870
7738
  filters?: InputMaybe<AttributesFiltersInput>;
6871
7739
  }>>;
7740
+ export declare function useGetAttributesSuspenseQuery(baseOptions?: Apollo.SuspenseQueryHookOptions<GetAttributesQuery, GetAttributesQueryVariables>): Apollo.UseSuspenseQueryResult<GetAttributesQuery, Exact<{
7741
+ pagination?: InputMaybe<Pagination>;
7742
+ sort?: InputMaybe<SortAttributes>;
7743
+ filters?: InputMaybe<AttributesFiltersInput>;
7744
+ }>>;
6872
7745
  export type GetAttributesQueryHookResult = ReturnType<typeof useGetAttributesQuery>;
6873
7746
  export type GetAttributesLazyQueryHookResult = ReturnType<typeof useGetAttributesLazyQuery>;
7747
+ export type GetAttributesSuspenseQueryHookResult = ReturnType<typeof useGetAttributesSuspenseQuery>;
6874
7748
  export type GetAttributesQueryResult = Apollo.QueryResult<GetAttributesQuery, GetAttributesQueryVariables>;
6875
7749
  export declare const GetVersionProfilesDocument: Apollo.DocumentNode;
6876
7750
  /**
@@ -6898,8 +7772,13 @@ export declare function useGetVersionProfilesLazyQuery(baseOptions?: Apollo.Lazy
6898
7772
  filters?: InputMaybe<VersionProfilesFiltersInput>;
6899
7773
  sort?: InputMaybe<SortVersionProfilesInput>;
6900
7774
  }>>;
7775
+ export declare function useGetVersionProfilesSuspenseQuery(baseOptions?: Apollo.SuspenseQueryHookOptions<GetVersionProfilesQuery, GetVersionProfilesQueryVariables>): Apollo.UseSuspenseQueryResult<GetVersionProfilesQuery, Exact<{
7776
+ filters?: InputMaybe<VersionProfilesFiltersInput>;
7777
+ sort?: InputMaybe<SortVersionProfilesInput>;
7778
+ }>>;
6901
7779
  export type GetVersionProfilesQueryHookResult = ReturnType<typeof useGetVersionProfilesQuery>;
6902
7780
  export type GetVersionProfilesLazyQueryHookResult = ReturnType<typeof useGetVersionProfilesLazyQuery>;
7781
+ export type GetVersionProfilesSuspenseQueryHookResult = ReturnType<typeof useGetVersionProfilesSuspenseQuery>;
6903
7782
  export type GetVersionProfilesQueryResult = Apollo.QueryResult<GetVersionProfilesQuery, GetVersionProfilesQueryVariables>;
6904
7783
  export declare const GetVersionableAttributesByLibraryDocument: Apollo.DocumentNode;
6905
7784
  /**
@@ -6924,8 +7803,12 @@ export declare function useGetVersionableAttributesByLibraryQuery(baseOptions: A
6924
7803
  export declare function useGetVersionableAttributesByLibraryLazyQuery(baseOptions?: Apollo.LazyQueryHookOptions<GetVersionableAttributesByLibraryQuery, GetVersionableAttributesByLibraryQueryVariables>): Apollo.LazyQueryResultTuple<GetVersionableAttributesByLibraryQuery, Exact<{
6925
7804
  libraryId: Scalars["String"];
6926
7805
  }>>;
7806
+ export declare function useGetVersionableAttributesByLibrarySuspenseQuery(baseOptions?: Apollo.SuspenseQueryHookOptions<GetVersionableAttributesByLibraryQuery, GetVersionableAttributesByLibraryQueryVariables>): Apollo.UseSuspenseQueryResult<GetVersionableAttributesByLibraryQuery, Exact<{
7807
+ libraryId: Scalars["String"];
7808
+ }>>;
6927
7809
  export type GetVersionableAttributesByLibraryQueryHookResult = ReturnType<typeof useGetVersionableAttributesByLibraryQuery>;
6928
7810
  export type GetVersionableAttributesByLibraryLazyQueryHookResult = ReturnType<typeof useGetVersionableAttributesByLibraryLazyQuery>;
7811
+ export type GetVersionableAttributesByLibrarySuspenseQueryHookResult = ReturnType<typeof useGetVersionableAttributesByLibrarySuspenseQuery>;
6929
7812
  export type GetVersionableAttributesByLibraryQueryResult = Apollo.QueryResult<GetVersionableAttributesByLibraryQuery, GetVersionableAttributesByLibraryQueryVariables>;
6930
7813
  export declare const SaveAttributeDocument: Apollo.DocumentNode;
6931
7814
  export type SaveAttributeMutationFn = Apollo.MutationFunction<SaveAttributeMutation, SaveAttributeMutationVariables>;
@@ -6981,8 +7864,14 @@ export declare function useExportLazyQuery(baseOptions?: Apollo.LazyQueryHookOpt
6981
7864
  attributes?: InputMaybe<Array<Scalars["ID"]> | Scalars["ID"]>;
6982
7865
  filters?: InputMaybe<Array<RecordFilterInput> | RecordFilterInput>;
6983
7866
  }>>;
7867
+ export declare function useExportSuspenseQuery(baseOptions?: Apollo.SuspenseQueryHookOptions<ExportQuery, ExportQueryVariables>): Apollo.UseSuspenseQueryResult<ExportQuery, Exact<{
7868
+ library: Scalars["ID"];
7869
+ attributes?: InputMaybe<Array<Scalars["ID"]> | Scalars["ID"]>;
7870
+ filters?: InputMaybe<Array<RecordFilterInput> | RecordFilterInput>;
7871
+ }>>;
6984
7872
  export type ExportQueryHookResult = ReturnType<typeof useExportQuery>;
6985
7873
  export type ExportLazyQueryHookResult = ReturnType<typeof useExportLazyQuery>;
7874
+ export type ExportSuspenseQueryHookResult = ReturnType<typeof useExportSuspenseQuery>;
6986
7875
  export type ExportQueryResult = Apollo.QueryResult<ExportQuery, ExportQueryVariables>;
6987
7876
  export declare const CreateDirectoryDocument: Apollo.DocumentNode;
6988
7877
  export type CreateDirectoryMutationFn = Apollo.MutationFunction<CreateDirectoryMutation, CreateDirectoryMutationVariables>;
@@ -7072,8 +7961,13 @@ export declare function useGetDirectoryDataLazyQuery(baseOptions?: Apollo.LazyQu
7072
7961
  library: Scalars["ID"];
7073
7962
  directoryId: Scalars["String"];
7074
7963
  }>>;
7964
+ export declare function useGetDirectoryDataSuspenseQuery(baseOptions?: Apollo.SuspenseQueryHookOptions<GetDirectoryDataQuery, GetDirectoryDataQueryVariables>): Apollo.UseSuspenseQueryResult<GetDirectoryDataQuery, Exact<{
7965
+ library: Scalars["ID"];
7966
+ directoryId: Scalars["String"];
7967
+ }>>;
7075
7968
  export type GetDirectoryDataQueryHookResult = ReturnType<typeof useGetDirectoryDataQuery>;
7076
7969
  export type GetDirectoryDataLazyQueryHookResult = ReturnType<typeof useGetDirectoryDataLazyQuery>;
7970
+ export type GetDirectoryDataSuspenseQueryHookResult = ReturnType<typeof useGetDirectoryDataSuspenseQuery>;
7077
7971
  export type GetDirectoryDataQueryResult = Apollo.QueryResult<GetDirectoryDataQuery, GetDirectoryDataQueryVariables>;
7078
7972
  export declare const UploadUpdateDocument: Apollo.DocumentNode;
7079
7973
  /**
@@ -7178,8 +8072,12 @@ export declare function useCheckLibraryExistenceQuery(baseOptions?: Apollo.Query
7178
8072
  export declare function useCheckLibraryExistenceLazyQuery(baseOptions?: Apollo.LazyQueryHookOptions<CheckLibraryExistenceQuery, CheckLibraryExistenceQueryVariables>): Apollo.LazyQueryResultTuple<CheckLibraryExistenceQuery, Exact<{
7179
8073
  id?: InputMaybe<Array<Scalars["ID"]> | Scalars["ID"]>;
7180
8074
  }>>;
8075
+ export declare function useCheckLibraryExistenceSuspenseQuery(baseOptions?: Apollo.SuspenseQueryHookOptions<CheckLibraryExistenceQuery, CheckLibraryExistenceQueryVariables>): Apollo.UseSuspenseQueryResult<CheckLibraryExistenceQuery, Exact<{
8076
+ id?: InputMaybe<Array<Scalars["ID"]> | Scalars["ID"]>;
8077
+ }>>;
7181
8078
  export type CheckLibraryExistenceQueryHookResult = ReturnType<typeof useCheckLibraryExistenceQuery>;
7182
8079
  export type CheckLibraryExistenceLazyQueryHookResult = ReturnType<typeof useCheckLibraryExistenceLazyQuery>;
8080
+ export type CheckLibraryExistenceSuspenseQueryHookResult = ReturnType<typeof useCheckLibraryExistenceSuspenseQuery>;
7183
8081
  export type CheckLibraryExistenceQueryResult = Apollo.QueryResult<CheckLibraryExistenceQuery, CheckLibraryExistenceQueryVariables>;
7184
8082
  export declare const DeleteLibraryDocument: Apollo.DocumentNode;
7185
8083
  export type DeleteLibraryMutationFn = Apollo.MutationFunction<DeleteLibraryMutation, DeleteLibraryMutationVariables>;
@@ -7228,8 +8126,12 @@ export declare function useGetLibrariesQuery(baseOptions?: Apollo.QueryHookOptio
7228
8126
  export declare function useGetLibrariesLazyQuery(baseOptions?: Apollo.LazyQueryHookOptions<GetLibrariesQuery, GetLibrariesQueryVariables>): Apollo.LazyQueryResultTuple<GetLibrariesQuery, Exact<{
7229
8127
  [key: string]: never;
7230
8128
  }>>;
8129
+ export declare function useGetLibrariesSuspenseQuery(baseOptions?: Apollo.SuspenseQueryHookOptions<GetLibrariesQuery, GetLibrariesQueryVariables>): Apollo.UseSuspenseQueryResult<GetLibrariesQuery, Exact<{
8130
+ [key: string]: never;
8131
+ }>>;
7231
8132
  export type GetLibrariesQueryHookResult = ReturnType<typeof useGetLibrariesQuery>;
7232
8133
  export type GetLibrariesLazyQueryHookResult = ReturnType<typeof useGetLibrariesLazyQuery>;
8134
+ export type GetLibrariesSuspenseQueryHookResult = ReturnType<typeof useGetLibrariesSuspenseQuery>;
7233
8135
  export type GetLibrariesQueryResult = Apollo.QueryResult<GetLibrariesQuery, GetLibrariesQueryVariables>;
7234
8136
  export declare const GetLibraryByIdDocument: Apollo.DocumentNode;
7235
8137
  /**
@@ -7254,8 +8156,12 @@ export declare function useGetLibraryByIdQuery(baseOptions?: Apollo.QueryHookOpt
7254
8156
  export declare function useGetLibraryByIdLazyQuery(baseOptions?: Apollo.LazyQueryHookOptions<GetLibraryByIdQuery, GetLibraryByIdQueryVariables>): Apollo.LazyQueryResultTuple<GetLibraryByIdQuery, Exact<{
7255
8157
  id?: InputMaybe<Array<Scalars["ID"]> | Scalars["ID"]>;
7256
8158
  }>>;
8159
+ export declare function useGetLibraryByIdSuspenseQuery(baseOptions?: Apollo.SuspenseQueryHookOptions<GetLibraryByIdQuery, GetLibraryByIdQueryVariables>): Apollo.UseSuspenseQueryResult<GetLibraryByIdQuery, Exact<{
8160
+ id?: InputMaybe<Array<Scalars["ID"]> | Scalars["ID"]>;
8161
+ }>>;
7257
8162
  export type GetLibraryByIdQueryHookResult = ReturnType<typeof useGetLibraryByIdQuery>;
7258
8163
  export type GetLibraryByIdLazyQueryHookResult = ReturnType<typeof useGetLibraryByIdLazyQuery>;
8164
+ export type GetLibraryByIdSuspenseQueryHookResult = ReturnType<typeof useGetLibraryByIdSuspenseQuery>;
7259
8165
  export type GetLibraryByIdQueryResult = Apollo.QueryResult<GetLibraryByIdQuery, GetLibraryByIdQueryVariables>;
7260
8166
  export declare const GetLibraryPermissionsDocument: Apollo.DocumentNode;
7261
8167
  /**
@@ -7280,8 +8186,12 @@ export declare function useGetLibraryPermissionsQuery(baseOptions?: Apollo.Query
7280
8186
  export declare function useGetLibraryPermissionsLazyQuery(baseOptions?: Apollo.LazyQueryHookOptions<GetLibraryPermissionsQuery, GetLibraryPermissionsQueryVariables>): Apollo.LazyQueryResultTuple<GetLibraryPermissionsQuery, Exact<{
7281
8187
  libraryId?: InputMaybe<Array<Scalars["ID"]> | Scalars["ID"]>;
7282
8188
  }>>;
8189
+ export declare function useGetLibraryPermissionsSuspenseQuery(baseOptions?: Apollo.SuspenseQueryHookOptions<GetLibraryPermissionsQuery, GetLibraryPermissionsQueryVariables>): Apollo.UseSuspenseQueryResult<GetLibraryPermissionsQuery, Exact<{
8190
+ libraryId?: InputMaybe<Array<Scalars["ID"]> | Scalars["ID"]>;
8191
+ }>>;
7283
8192
  export type GetLibraryPermissionsQueryHookResult = ReturnType<typeof useGetLibraryPermissionsQuery>;
7284
8193
  export type GetLibraryPermissionsLazyQueryHookResult = ReturnType<typeof useGetLibraryPermissionsLazyQuery>;
8194
+ export type GetLibraryPermissionsSuspenseQueryHookResult = ReturnType<typeof useGetLibraryPermissionsSuspenseQuery>;
7285
8195
  export type GetLibraryPermissionsQueryResult = Apollo.QueryResult<GetLibraryPermissionsQuery, GetLibraryPermissionsQueryVariables>;
7286
8196
  export declare const GetLibraryPreviewsSettingsDocument: Apollo.DocumentNode;
7287
8197
  /**
@@ -7306,8 +8216,12 @@ export declare function useGetLibraryPreviewsSettingsQuery(baseOptions: Apollo.Q
7306
8216
  export declare function useGetLibraryPreviewsSettingsLazyQuery(baseOptions?: Apollo.LazyQueryHookOptions<GetLibraryPreviewsSettingsQuery, GetLibraryPreviewsSettingsQueryVariables>): Apollo.LazyQueryResultTuple<GetLibraryPreviewsSettingsQuery, Exact<{
7307
8217
  id: Scalars["ID"];
7308
8218
  }>>;
8219
+ export declare function useGetLibraryPreviewsSettingsSuspenseQuery(baseOptions?: Apollo.SuspenseQueryHookOptions<GetLibraryPreviewsSettingsQuery, GetLibraryPreviewsSettingsQueryVariables>): Apollo.UseSuspenseQueryResult<GetLibraryPreviewsSettingsQuery, Exact<{
8220
+ id: Scalars["ID"];
8221
+ }>>;
7309
8222
  export type GetLibraryPreviewsSettingsQueryHookResult = ReturnType<typeof useGetLibraryPreviewsSettingsQuery>;
7310
8223
  export type GetLibraryPreviewsSettingsLazyQueryHookResult = ReturnType<typeof useGetLibraryPreviewsSettingsLazyQuery>;
8224
+ export type GetLibraryPreviewsSettingsSuspenseQueryHookResult = ReturnType<typeof useGetLibraryPreviewsSettingsSuspenseQuery>;
7311
8225
  export type GetLibraryPreviewsSettingsQueryResult = Apollo.QueryResult<GetLibraryPreviewsSettingsQuery, GetLibraryPreviewsSettingsQueryVariables>;
7312
8226
  export declare const SaveLibraryDocument: Apollo.DocumentNode;
7313
8227
  export type SaveLibraryMutationFn = Apollo.MutationFunction<SaveLibraryMutation, SaveLibraryMutationVariables>;
@@ -7366,9 +8280,70 @@ export declare function useIsAllowedLazyQuery(baseOptions?: Apollo.LazyQueryHook
7366
8280
  applyTo?: InputMaybe<Scalars["ID"]>;
7367
8281
  target?: InputMaybe<PermissionTarget>;
7368
8282
  }>>;
8283
+ export declare function useIsAllowedSuspenseQuery(baseOptions?: Apollo.SuspenseQueryHookOptions<IsAllowedQuery, IsAllowedQueryVariables>): Apollo.UseSuspenseQueryResult<IsAllowedQuery, Exact<{
8284
+ type: PermissionTypes;
8285
+ actions: Array<PermissionsActions> | PermissionsActions;
8286
+ applyTo?: InputMaybe<Scalars["ID"]>;
8287
+ target?: InputMaybe<PermissionTarget>;
8288
+ }>>;
7369
8289
  export type IsAllowedQueryHookResult = ReturnType<typeof useIsAllowedQuery>;
7370
8290
  export type IsAllowedLazyQueryHookResult = ReturnType<typeof useIsAllowedLazyQuery>;
8291
+ export type IsAllowedSuspenseQueryHookResult = ReturnType<typeof useIsAllowedSuspenseQuery>;
7371
8292
  export type IsAllowedQueryResult = Apollo.QueryResult<IsAllowedQuery, IsAllowedQueryVariables>;
8293
+ export declare const ActivateRecordsDocument: Apollo.DocumentNode;
8294
+ export type ActivateRecordsMutationFn = Apollo.MutationFunction<ActivateRecordsMutation, ActivateRecordsMutationVariables>;
8295
+ /**
8296
+ * __useActivateRecordsMutation__
8297
+ *
8298
+ * To run a mutation, you first call `useActivateRecordsMutation` within a React component and pass it any options that fit your needs.
8299
+ * When your component renders, `useActivateRecordsMutation` returns a tuple that includes:
8300
+ * - A mutate function that you can call at any time to execute the mutation
8301
+ * - An object with fields that represent the current status of the mutation's execution
8302
+ *
8303
+ * @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;
8304
+ *
8305
+ * @example
8306
+ * const [activateRecordsMutation, { data, loading, error }] = useActivateRecordsMutation({
8307
+ * variables: {
8308
+ * libraryId: // value for 'libraryId'
8309
+ * recordsIds: // value for 'recordsIds'
8310
+ * filters: // value for 'filters'
8311
+ * },
8312
+ * });
8313
+ */
8314
+ export declare function useActivateRecordsMutation(baseOptions?: Apollo.MutationHookOptions<ActivateRecordsMutation, ActivateRecordsMutationVariables>): Apollo.MutationTuple<ActivateRecordsMutation, Exact<{
8315
+ libraryId: Scalars["String"];
8316
+ recordsIds?: InputMaybe<Array<Scalars["String"]> | Scalars["String"]>;
8317
+ filters?: InputMaybe<Array<RecordFilterInput> | RecordFilterInput>;
8318
+ }>, Apollo.DefaultContext, Apollo.ApolloCache<any>>;
8319
+ export type ActivateRecordsMutationHookResult = ReturnType<typeof useActivateRecordsMutation>;
8320
+ export type ActivateRecordsMutationResult = Apollo.MutationResult<ActivateRecordsMutation>;
8321
+ export type ActivateRecordsMutationOptions = Apollo.BaseMutationOptions<ActivateRecordsMutation, ActivateRecordsMutationVariables>;
8322
+ export declare const CreateEmptyRecordDocument: Apollo.DocumentNode;
8323
+ export type CreateEmptyRecordMutationFn = Apollo.MutationFunction<CreateEmptyRecordMutation, CreateEmptyRecordMutationVariables>;
8324
+ /**
8325
+ * __useCreateEmptyRecordMutation__
8326
+ *
8327
+ * To run a mutation, you first call `useCreateEmptyRecordMutation` within a React component and pass it any options that fit your needs.
8328
+ * When your component renders, `useCreateEmptyRecordMutation` returns a tuple that includes:
8329
+ * - A mutate function that you can call at any time to execute the mutation
8330
+ * - An object with fields that represent the current status of the mutation's execution
8331
+ *
8332
+ * @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;
8333
+ *
8334
+ * @example
8335
+ * const [createEmptyRecordMutation, { data, loading, error }] = useCreateEmptyRecordMutation({
8336
+ * variables: {
8337
+ * library: // value for 'library'
8338
+ * },
8339
+ * });
8340
+ */
8341
+ export declare function useCreateEmptyRecordMutation(baseOptions?: Apollo.MutationHookOptions<CreateEmptyRecordMutation, CreateEmptyRecordMutationVariables>): Apollo.MutationTuple<CreateEmptyRecordMutation, Exact<{
8342
+ library: Scalars["ID"];
8343
+ }>, Apollo.DefaultContext, Apollo.ApolloCache<any>>;
8344
+ export type CreateEmptyRecordMutationHookResult = ReturnType<typeof useCreateEmptyRecordMutation>;
8345
+ export type CreateEmptyRecordMutationResult = Apollo.MutationResult<CreateEmptyRecordMutation>;
8346
+ export type CreateEmptyRecordMutationOptions = Apollo.BaseMutationOptions<CreateEmptyRecordMutation, CreateEmptyRecordMutationVariables>;
7372
8347
  export declare const CreateRecordDocument: Apollo.DocumentNode;
7373
8348
  export type CreateRecordMutationFn = Apollo.MutationFunction<CreateRecordMutation, CreateRecordMutationVariables>;
7374
8349
  /**
@@ -7454,8 +8429,14 @@ export declare function useDoesFileExistAsChildLazyQuery(baseOptions?: Apollo.La
7454
8429
  treeId: Scalars["ID"];
7455
8430
  filename: Scalars["String"];
7456
8431
  }>>;
8432
+ export declare function useDoesFileExistAsChildSuspenseQuery(baseOptions?: Apollo.SuspenseQueryHookOptions<DoesFileExistAsChildQuery, DoesFileExistAsChildQueryVariables>): Apollo.UseSuspenseQueryResult<DoesFileExistAsChildQuery, Exact<{
8433
+ parentNode?: InputMaybe<Scalars["ID"]>;
8434
+ treeId: Scalars["ID"];
8435
+ filename: Scalars["String"];
8436
+ }>>;
7457
8437
  export type DoesFileExistAsChildQueryHookResult = ReturnType<typeof useDoesFileExistAsChildQuery>;
7458
8438
  export type DoesFileExistAsChildLazyQueryHookResult = ReturnType<typeof useDoesFileExistAsChildLazyQuery>;
8439
+ export type DoesFileExistAsChildSuspenseQueryHookResult = ReturnType<typeof useDoesFileExistAsChildSuspenseQuery>;
7459
8440
  export type DoesFileExistAsChildQueryResult = Apollo.QueryResult<DoesFileExistAsChildQuery, DoesFileExistAsChildQueryVariables>;
7460
8441
  export declare const GetFileDataDocument: Apollo.DocumentNode;
7461
8442
  /**
@@ -7486,8 +8467,14 @@ export declare function useGetFileDataLazyQuery(baseOptions?: Apollo.LazyQueryHo
7486
8467
  fileId: Scalars["String"];
7487
8468
  previewsStatusAttribute: Scalars["ID"];
7488
8469
  }>>;
8470
+ export declare function useGetFileDataSuspenseQuery(baseOptions?: Apollo.SuspenseQueryHookOptions<GetFileDataQuery, GetFileDataQueryVariables>): Apollo.UseSuspenseQueryResult<GetFileDataQuery, Exact<{
8471
+ library: Scalars["ID"];
8472
+ fileId: Scalars["String"];
8473
+ previewsStatusAttribute: Scalars["ID"];
8474
+ }>>;
7489
8475
  export type GetFileDataQueryHookResult = ReturnType<typeof useGetFileDataQuery>;
7490
8476
  export type GetFileDataLazyQueryHookResult = ReturnType<typeof useGetFileDataLazyQuery>;
8477
+ export type GetFileDataSuspenseQueryHookResult = ReturnType<typeof useGetFileDataSuspenseQuery>;
7491
8478
  export type GetFileDataQueryResult = Apollo.QueryResult<GetFileDataQuery, GetFileDataQueryVariables>;
7492
8479
  export declare const RecordFormDocument: Apollo.DocumentNode;
7493
8480
  /**
@@ -7521,8 +8508,15 @@ export declare function useRecordFormLazyQuery(baseOptions?: Apollo.LazyQueryHoo
7521
8508
  recordId?: InputMaybe<Scalars["String"]>;
7522
8509
  version?: InputMaybe<Array<ValueVersionInput> | ValueVersionInput>;
7523
8510
  }>>;
8511
+ export declare function useRecordFormSuspenseQuery(baseOptions?: Apollo.SuspenseQueryHookOptions<RecordFormQuery, RecordFormQueryVariables>): Apollo.UseSuspenseQueryResult<RecordFormQuery, Exact<{
8512
+ libraryId: Scalars["String"];
8513
+ formId: Scalars["String"];
8514
+ recordId?: InputMaybe<Scalars["String"]>;
8515
+ version?: InputMaybe<Array<ValueVersionInput> | ValueVersionInput>;
8516
+ }>>;
7524
8517
  export type RecordFormQueryHookResult = ReturnType<typeof useRecordFormQuery>;
7525
8518
  export type RecordFormLazyQueryHookResult = ReturnType<typeof useRecordFormLazyQuery>;
8519
+ export type RecordFormSuspenseQueryHookResult = ReturnType<typeof useRecordFormSuspenseQuery>;
7526
8520
  export type RecordFormQueryResult = Apollo.QueryResult<RecordFormQuery, RecordFormQueryVariables>;
7527
8521
  export declare const RecordUpdateDocument: Apollo.DocumentNode;
7528
8522
  /**
@@ -7546,6 +8540,44 @@ export declare function useRecordUpdateSubscription(baseOptions?: Apollo.Subscri
7546
8540
  }>>;
7547
8541
  export type RecordUpdateSubscriptionHookResult = ReturnType<typeof useRecordUpdateSubscription>;
7548
8542
  export type RecordUpdateSubscriptionResult = Apollo.SubscriptionResult<RecordUpdateSubscription>;
8543
+ export declare const GetRecordsFromLibraryDocument: Apollo.DocumentNode;
8544
+ /**
8545
+ * __useGetRecordsFromLibraryQuery__
8546
+ *
8547
+ * To run a query within a React component, call `useGetRecordsFromLibraryQuery` and pass it any options that fit your needs.
8548
+ * When your component renders, `useGetRecordsFromLibraryQuery` returns an object from Apollo Client that contains loading, error, and data properties
8549
+ * you can use to render your UI.
8550
+ *
8551
+ * @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;
8552
+ *
8553
+ * @example
8554
+ * const { data, loading, error } = useGetRecordsFromLibraryQuery({
8555
+ * variables: {
8556
+ * libraryId: // value for 'libraryId'
8557
+ * pagination: // value for 'pagination'
8558
+ * filters: // value for 'filters'
8559
+ * },
8560
+ * });
8561
+ */
8562
+ export declare function useGetRecordsFromLibraryQuery(baseOptions: Apollo.QueryHookOptions<GetRecordsFromLibraryQuery, GetRecordsFromLibraryQueryVariables>): Apollo.QueryResult<GetRecordsFromLibraryQuery, Exact<{
8563
+ libraryId: Scalars["ID"];
8564
+ pagination?: InputMaybe<RecordsPagination>;
8565
+ filters?: InputMaybe<Array<InputMaybe<RecordFilterInput>> | InputMaybe<RecordFilterInput>>;
8566
+ }>>;
8567
+ export declare function useGetRecordsFromLibraryLazyQuery(baseOptions?: Apollo.LazyQueryHookOptions<GetRecordsFromLibraryQuery, GetRecordsFromLibraryQueryVariables>): Apollo.LazyQueryResultTuple<GetRecordsFromLibraryQuery, Exact<{
8568
+ libraryId: Scalars["ID"];
8569
+ pagination?: InputMaybe<RecordsPagination>;
8570
+ filters?: InputMaybe<Array<InputMaybe<RecordFilterInput>> | InputMaybe<RecordFilterInput>>;
8571
+ }>>;
8572
+ export declare function useGetRecordsFromLibrarySuspenseQuery(baseOptions?: Apollo.SuspenseQueryHookOptions<GetRecordsFromLibraryQuery, GetRecordsFromLibraryQueryVariables>): Apollo.UseSuspenseQueryResult<GetRecordsFromLibraryQuery, Exact<{
8573
+ libraryId: Scalars["ID"];
8574
+ pagination?: InputMaybe<RecordsPagination>;
8575
+ filters?: InputMaybe<Array<InputMaybe<RecordFilterInput>> | InputMaybe<RecordFilterInput>>;
8576
+ }>>;
8577
+ export type GetRecordsFromLibraryQueryHookResult = ReturnType<typeof useGetRecordsFromLibraryQuery>;
8578
+ export type GetRecordsFromLibraryLazyQueryHookResult = ReturnType<typeof useGetRecordsFromLibraryLazyQuery>;
8579
+ export type GetRecordsFromLibrarySuspenseQueryHookResult = ReturnType<typeof useGetRecordsFromLibrarySuspenseQuery>;
8580
+ export type GetRecordsFromLibraryQueryResult = Apollo.QueryResult<GetRecordsFromLibraryQuery, GetRecordsFromLibraryQueryVariables>;
7549
8581
  export declare const IndexRecordsDocument: Apollo.DocumentNode;
7550
8582
  export type IndexRecordsMutationFn = Apollo.MutationFunction<IndexRecordsMutation, IndexRecordsMutationVariables>;
7551
8583
  /**
@@ -7621,8 +8653,12 @@ export declare function useCheckTreeExistenceQuery(baseOptions?: Apollo.QueryHoo
7621
8653
  export declare function useCheckTreeExistenceLazyQuery(baseOptions?: Apollo.LazyQueryHookOptions<CheckTreeExistenceQuery, CheckTreeExistenceQueryVariables>): Apollo.LazyQueryResultTuple<CheckTreeExistenceQuery, Exact<{
7622
8654
  id?: InputMaybe<Array<Scalars["ID"]> | Scalars["ID"]>;
7623
8655
  }>>;
8656
+ export declare function useCheckTreeExistenceSuspenseQuery(baseOptions?: Apollo.SuspenseQueryHookOptions<CheckTreeExistenceQuery, CheckTreeExistenceQueryVariables>): Apollo.UseSuspenseQueryResult<CheckTreeExistenceQuery, Exact<{
8657
+ id?: InputMaybe<Array<Scalars["ID"]> | Scalars["ID"]>;
8658
+ }>>;
7624
8659
  export type CheckTreeExistenceQueryHookResult = ReturnType<typeof useCheckTreeExistenceQuery>;
7625
8660
  export type CheckTreeExistenceLazyQueryHookResult = ReturnType<typeof useCheckTreeExistenceLazyQuery>;
8661
+ export type CheckTreeExistenceSuspenseQueryHookResult = ReturnType<typeof useCheckTreeExistenceSuspenseQuery>;
7626
8662
  export type CheckTreeExistenceQueryResult = Apollo.QueryResult<CheckTreeExistenceQuery, CheckTreeExistenceQueryVariables>;
7627
8663
  export declare const DeleteTreeDocument: Apollo.DocumentNode;
7628
8664
  export type DeleteTreeMutationFn = Apollo.MutationFunction<DeleteTreeMutation, DeleteTreeMutationVariables>;
@@ -7672,8 +8708,12 @@ export declare function useGetTreeByIdQuery(baseOptions?: Apollo.QueryHookOption
7672
8708
  export declare function useGetTreeByIdLazyQuery(baseOptions?: Apollo.LazyQueryHookOptions<GetTreeByIdQuery, GetTreeByIdQueryVariables>): Apollo.LazyQueryResultTuple<GetTreeByIdQuery, Exact<{
7673
8709
  id?: InputMaybe<Array<Scalars["ID"]> | Scalars["ID"]>;
7674
8710
  }>>;
8711
+ export declare function useGetTreeByIdSuspenseQuery(baseOptions?: Apollo.SuspenseQueryHookOptions<GetTreeByIdQuery, GetTreeByIdQueryVariables>): Apollo.UseSuspenseQueryResult<GetTreeByIdQuery, Exact<{
8712
+ id?: InputMaybe<Array<Scalars["ID"]> | Scalars["ID"]>;
8713
+ }>>;
7675
8714
  export type GetTreeByIdQueryHookResult = ReturnType<typeof useGetTreeByIdQuery>;
7676
8715
  export type GetTreeByIdLazyQueryHookResult = ReturnType<typeof useGetTreeByIdLazyQuery>;
8716
+ export type GetTreeByIdSuspenseQueryHookResult = ReturnType<typeof useGetTreeByIdSuspenseQuery>;
7677
8717
  export type GetTreeByIdQueryResult = Apollo.QueryResult<GetTreeByIdQuery, GetTreeByIdQueryVariables>;
7678
8718
  export declare const GetTreeLibrariesDocument: Apollo.DocumentNode;
7679
8719
  /**
@@ -7701,8 +8741,13 @@ export declare function useGetTreeLibrariesLazyQuery(baseOptions?: Apollo.LazyQu
7701
8741
  treeId?: InputMaybe<Array<Scalars["ID"]> | Scalars["ID"]>;
7702
8742
  library?: InputMaybe<Scalars["String"]>;
7703
8743
  }>>;
8744
+ export declare function useGetTreeLibrariesSuspenseQuery(baseOptions?: Apollo.SuspenseQueryHookOptions<GetTreeLibrariesQuery, GetTreeLibrariesQueryVariables>): Apollo.UseSuspenseQueryResult<GetTreeLibrariesQuery, Exact<{
8745
+ treeId?: InputMaybe<Array<Scalars["ID"]> | Scalars["ID"]>;
8746
+ library?: InputMaybe<Scalars["String"]>;
8747
+ }>>;
7704
8748
  export type GetTreeLibrariesQueryHookResult = ReturnType<typeof useGetTreeLibrariesQuery>;
7705
8749
  export type GetTreeLibrariesLazyQueryHookResult = ReturnType<typeof useGetTreeLibrariesLazyQuery>;
8750
+ export type GetTreeLibrariesSuspenseQueryHookResult = ReturnType<typeof useGetTreeLibrariesSuspenseQuery>;
7706
8751
  export type GetTreeLibrariesQueryResult = Apollo.QueryResult<GetTreeLibrariesQuery, GetTreeLibrariesQueryVariables>;
7707
8752
  export declare const GetTreesDocument: Apollo.DocumentNode;
7708
8753
  /**
@@ -7726,8 +8771,12 @@ export declare function useGetTreesQuery(baseOptions?: Apollo.QueryHookOptions<G
7726
8771
  export declare function useGetTreesLazyQuery(baseOptions?: Apollo.LazyQueryHookOptions<GetTreesQuery, GetTreesQueryVariables>): Apollo.LazyQueryResultTuple<GetTreesQuery, Exact<{
7727
8772
  [key: string]: never;
7728
8773
  }>>;
8774
+ export declare function useGetTreesSuspenseQuery(baseOptions?: Apollo.SuspenseQueryHookOptions<GetTreesQuery, GetTreesQueryVariables>): Apollo.UseSuspenseQueryResult<GetTreesQuery, Exact<{
8775
+ [key: string]: never;
8776
+ }>>;
7729
8777
  export type GetTreesQueryHookResult = ReturnType<typeof useGetTreesQuery>;
7730
8778
  export type GetTreesLazyQueryHookResult = ReturnType<typeof useGetTreesLazyQuery>;
8779
+ export type GetTreesSuspenseQueryHookResult = ReturnType<typeof useGetTreesSuspenseQuery>;
7731
8780
  export type GetTreesQueryResult = Apollo.QueryResult<GetTreesQuery, GetTreesQueryVariables>;
7732
8781
  export declare const SaveTreeDocument: Apollo.DocumentNode;
7733
8782
  export type SaveTreeMutationFn = Apollo.MutationFunction<SaveTreeMutation, SaveTreeMutationVariables>;
@@ -7770,6 +8819,7 @@ export declare const TreeNodeChildrenDocument: Apollo.DocumentNode;
7770
8819
  * treeId: // value for 'treeId'
7771
8820
  * node: // value for 'node'
7772
8821
  * pagination: // value for 'pagination'
8822
+ * childrenAsRecordValuePermissionFilter: // value for 'childrenAsRecordValuePermissionFilter'
7773
8823
  * },
7774
8824
  * });
7775
8825
  */
@@ -7777,14 +8827,23 @@ export declare function useTreeNodeChildrenQuery(baseOptions: Apollo.QueryHookOp
7777
8827
  treeId: Scalars["ID"];
7778
8828
  node?: InputMaybe<Scalars["ID"]>;
7779
8829
  pagination?: InputMaybe<Pagination>;
8830
+ childrenAsRecordValuePermissionFilter?: InputMaybe<ChildrenAsRecordValuePermissionFilterInput>;
7780
8831
  }>>;
7781
8832
  export declare function useTreeNodeChildrenLazyQuery(baseOptions?: Apollo.LazyQueryHookOptions<TreeNodeChildrenQuery, TreeNodeChildrenQueryVariables>): Apollo.LazyQueryResultTuple<TreeNodeChildrenQuery, Exact<{
7782
8833
  treeId: Scalars["ID"];
7783
8834
  node?: InputMaybe<Scalars["ID"]>;
7784
8835
  pagination?: InputMaybe<Pagination>;
8836
+ childrenAsRecordValuePermissionFilter?: InputMaybe<ChildrenAsRecordValuePermissionFilterInput>;
8837
+ }>>;
8838
+ export declare function useTreeNodeChildrenSuspenseQuery(baseOptions?: Apollo.SuspenseQueryHookOptions<TreeNodeChildrenQuery, TreeNodeChildrenQueryVariables>): Apollo.UseSuspenseQueryResult<TreeNodeChildrenQuery, Exact<{
8839
+ treeId: Scalars["ID"];
8840
+ node?: InputMaybe<Scalars["ID"]>;
8841
+ pagination?: InputMaybe<Pagination>;
8842
+ childrenAsRecordValuePermissionFilter?: InputMaybe<ChildrenAsRecordValuePermissionFilterInput>;
7785
8843
  }>>;
7786
8844
  export type TreeNodeChildrenQueryHookResult = ReturnType<typeof useTreeNodeChildrenQuery>;
7787
8845
  export type TreeNodeChildrenLazyQueryHookResult = ReturnType<typeof useTreeNodeChildrenLazyQuery>;
8846
+ export type TreeNodeChildrenSuspenseQueryHookResult = ReturnType<typeof useTreeNodeChildrenSuspenseQuery>;
7788
8847
  export type TreeNodeChildrenQueryResult = Apollo.QueryResult<TreeNodeChildrenQuery, TreeNodeChildrenQueryVariables>;
7789
8848
  export declare const GetUserDataDocument: Apollo.DocumentNode;
7790
8849
  /**
@@ -7812,8 +8871,13 @@ export declare function useGetUserDataLazyQuery(baseOptions?: Apollo.LazyQueryHo
7812
8871
  keys: Array<Scalars["String"]> | Scalars["String"];
7813
8872
  global?: InputMaybe<Scalars["Boolean"]>;
7814
8873
  }>>;
8874
+ export declare function useGetUserDataSuspenseQuery(baseOptions?: Apollo.SuspenseQueryHookOptions<GetUserDataQuery, GetUserDataQueryVariables>): Apollo.UseSuspenseQueryResult<GetUserDataQuery, Exact<{
8875
+ keys: Array<Scalars["String"]> | Scalars["String"];
8876
+ global?: InputMaybe<Scalars["Boolean"]>;
8877
+ }>>;
7815
8878
  export type GetUserDataQueryHookResult = ReturnType<typeof useGetUserDataQuery>;
7816
8879
  export type GetUserDataLazyQueryHookResult = ReturnType<typeof useGetUserDataLazyQuery>;
8880
+ export type GetUserDataSuspenseQueryHookResult = ReturnType<typeof useGetUserDataSuspenseQuery>;
7817
8881
  export type GetUserDataQueryResult = Apollo.QueryResult<GetUserDataQuery, GetUserDataQueryVariables>;
7818
8882
  export declare const SaveUserDataDocument: Apollo.DocumentNode;
7819
8883
  export type SaveUserDataMutationFn = Apollo.MutationFunction<SaveUserDataMutation, SaveUserDataMutationVariables>;
@@ -7875,38 +8939,6 @@ export declare function useDeleteValueMutation(baseOptions?: Apollo.MutationHook
7875
8939
  export type DeleteValueMutationHookResult = ReturnType<typeof useDeleteValueMutation>;
7876
8940
  export type DeleteValueMutationResult = Apollo.MutationResult<DeleteValueMutation>;
7877
8941
  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
8942
  export declare const SaveValueBatchDocument: Apollo.DocumentNode;
7911
8943
  export type SaveValueBatchMutationFn = Apollo.MutationFunction<SaveValueBatchMutation, SaveValueBatchMutationVariables>;
7912
8944
  /**
@@ -7988,8 +9020,12 @@ export declare function useGetViewQuery(baseOptions: Apollo.QueryHookOptions<Get
7988
9020
  export declare function useGetViewLazyQuery(baseOptions?: Apollo.LazyQueryHookOptions<GetViewQuery, GetViewQueryVariables>): Apollo.LazyQueryResultTuple<GetViewQuery, Exact<{
7989
9021
  viewId: Scalars["String"];
7990
9022
  }>>;
9023
+ export declare function useGetViewSuspenseQuery(baseOptions?: Apollo.SuspenseQueryHookOptions<GetViewQuery, GetViewQueryVariables>): Apollo.UseSuspenseQueryResult<GetViewQuery, Exact<{
9024
+ viewId: Scalars["String"];
9025
+ }>>;
7991
9026
  export type GetViewQueryHookResult = ReturnType<typeof useGetViewQuery>;
7992
9027
  export type GetViewLazyQueryHookResult = ReturnType<typeof useGetViewLazyQuery>;
9028
+ export type GetViewSuspenseQueryHookResult = ReturnType<typeof useGetViewSuspenseQuery>;
7993
9029
  export type GetViewQueryResult = Apollo.QueryResult<GetViewQuery, GetViewQueryVariables>;
7994
9030
  export declare const GetViewsListDocument: Apollo.DocumentNode;
7995
9031
  /**
@@ -8014,8 +9050,12 @@ export declare function useGetViewsListQuery(baseOptions: Apollo.QueryHookOption
8014
9050
  export declare function useGetViewsListLazyQuery(baseOptions?: Apollo.LazyQueryHookOptions<GetViewsListQuery, GetViewsListQueryVariables>): Apollo.LazyQueryResultTuple<GetViewsListQuery, Exact<{
8015
9051
  libraryId: Scalars["String"];
8016
9052
  }>>;
9053
+ export declare function useGetViewsListSuspenseQuery(baseOptions?: Apollo.SuspenseQueryHookOptions<GetViewsListQuery, GetViewsListQueryVariables>): Apollo.UseSuspenseQueryResult<GetViewsListQuery, Exact<{
9054
+ libraryId: Scalars["String"];
9055
+ }>>;
8017
9056
  export type GetViewsListQueryHookResult = ReturnType<typeof useGetViewsListQuery>;
8018
9057
  export type GetViewsListLazyQueryHookResult = ReturnType<typeof useGetViewsListLazyQuery>;
9058
+ export type GetViewsListSuspenseQueryHookResult = ReturnType<typeof useGetViewsListSuspenseQuery>;
8019
9059
  export type GetViewsListQueryResult = Apollo.QueryResult<GetViewsListQuery, GetViewsListQueryVariables>;
8020
9060
  export declare const SaveViewDocument: Apollo.DocumentNode;
8021
9061
  export type SaveViewMutationFn = Apollo.MutationFunction<SaveViewMutation, SaveViewMutationVariables>;
@@ -8065,8 +9105,12 @@ export declare function useGetAttributesByLibWithPermissionsQuery(baseOptions: A
8065
9105
  export declare function useGetAttributesByLibWithPermissionsLazyQuery(baseOptions?: Apollo.LazyQueryHookOptions<GetAttributesByLibWithPermissionsQuery, GetAttributesByLibWithPermissionsQueryVariables>): Apollo.LazyQueryResultTuple<GetAttributesByLibWithPermissionsQuery, Exact<{
8066
9106
  library: Scalars["String"];
8067
9107
  }>>;
9108
+ export declare function useGetAttributesByLibWithPermissionsSuspenseQuery(baseOptions?: Apollo.SuspenseQueryHookOptions<GetAttributesByLibWithPermissionsQuery, GetAttributesByLibWithPermissionsQueryVariables>): Apollo.UseSuspenseQueryResult<GetAttributesByLibWithPermissionsQuery, Exact<{
9109
+ library: Scalars["String"];
9110
+ }>>;
8068
9111
  export type GetAttributesByLibWithPermissionsQueryHookResult = ReturnType<typeof useGetAttributesByLibWithPermissionsQuery>;
8069
9112
  export type GetAttributesByLibWithPermissionsLazyQueryHookResult = ReturnType<typeof useGetAttributesByLibWithPermissionsLazyQuery>;
9113
+ export type GetAttributesByLibWithPermissionsSuspenseQueryHookResult = ReturnType<typeof useGetAttributesByLibWithPermissionsSuspenseQuery>;
8070
9114
  export type GetAttributesByLibWithPermissionsQueryResult = Apollo.QueryResult<GetAttributesByLibWithPermissionsQuery, GetAttributesByLibWithPermissionsQueryVariables>;
8071
9115
  export declare const ExplorerAttributesDocument: Apollo.DocumentNode;
8072
9116
  /**
@@ -8091,8 +9135,12 @@ export declare function useExplorerAttributesQuery(baseOptions?: Apollo.QueryHoo
8091
9135
  export declare function useExplorerAttributesLazyQuery(baseOptions?: Apollo.LazyQueryHookOptions<ExplorerAttributesQuery, ExplorerAttributesQueryVariables>): Apollo.LazyQueryResultTuple<ExplorerAttributesQuery, Exact<{
8092
9136
  ids?: InputMaybe<Array<Scalars["ID"]> | Scalars["ID"]>;
8093
9137
  }>>;
9138
+ export declare function useExplorerAttributesSuspenseQuery(baseOptions?: Apollo.SuspenseQueryHookOptions<ExplorerAttributesQuery, ExplorerAttributesQueryVariables>): Apollo.UseSuspenseQueryResult<ExplorerAttributesQuery, Exact<{
9139
+ ids?: InputMaybe<Array<Scalars["ID"]> | Scalars["ID"]>;
9140
+ }>>;
8094
9141
  export type ExplorerAttributesQueryHookResult = ReturnType<typeof useExplorerAttributesQuery>;
8095
9142
  export type ExplorerAttributesLazyQueryHookResult = ReturnType<typeof useExplorerAttributesLazyQuery>;
9143
+ export type ExplorerAttributesSuspenseQueryHookResult = ReturnType<typeof useExplorerAttributesSuspenseQuery>;
8096
9144
  export type ExplorerAttributesQueryResult = Apollo.QueryResult<ExplorerAttributesQuery, ExplorerAttributesQueryVariables>;
8097
9145
  export declare const ExplorerLinkAttributeDocument: Apollo.DocumentNode;
8098
9146
  /**
@@ -8117,8 +9165,12 @@ export declare function useExplorerLinkAttributeQuery(baseOptions: Apollo.QueryH
8117
9165
  export declare function useExplorerLinkAttributeLazyQuery(baseOptions?: Apollo.LazyQueryHookOptions<ExplorerLinkAttributeQuery, ExplorerLinkAttributeQueryVariables>): Apollo.LazyQueryResultTuple<ExplorerLinkAttributeQuery, Exact<{
8118
9166
  id: Scalars["ID"];
8119
9167
  }>>;
9168
+ export declare function useExplorerLinkAttributeSuspenseQuery(baseOptions?: Apollo.SuspenseQueryHookOptions<ExplorerLinkAttributeQuery, ExplorerLinkAttributeQueryVariables>): Apollo.UseSuspenseQueryResult<ExplorerLinkAttributeQuery, Exact<{
9169
+ id: Scalars["ID"];
9170
+ }>>;
8120
9171
  export type ExplorerLinkAttributeQueryHookResult = ReturnType<typeof useExplorerLinkAttributeQuery>;
8121
9172
  export type ExplorerLinkAttributeLazyQueryHookResult = ReturnType<typeof useExplorerLinkAttributeLazyQuery>;
9173
+ export type ExplorerLinkAttributeSuspenseQueryHookResult = ReturnType<typeof useExplorerLinkAttributeSuspenseQuery>;
8122
9174
  export type ExplorerLinkAttributeQueryResult = Apollo.QueryResult<ExplorerLinkAttributeQuery, ExplorerLinkAttributeQueryVariables>;
8123
9175
  export declare const ExplorerLibraryDataDocument: Apollo.DocumentNode;
8124
9176
  /**
@@ -8158,8 +9210,17 @@ export declare function useExplorerLibraryDataLazyQuery(baseOptions?: Apollo.Laz
8158
9210
  multipleSort?: InputMaybe<Array<RecordSortInput> | RecordSortInput>;
8159
9211
  searchQuery?: InputMaybe<Scalars["String"]>;
8160
9212
  }>>;
9213
+ export declare function useExplorerLibraryDataSuspenseQuery(baseOptions?: Apollo.SuspenseQueryHookOptions<ExplorerLibraryDataQuery, ExplorerLibraryDataQueryVariables>): Apollo.UseSuspenseQueryResult<ExplorerLibraryDataQuery, Exact<{
9214
+ libraryId: Scalars["ID"];
9215
+ attributeIds: Array<Scalars["ID"]> | Scalars["ID"];
9216
+ pagination?: InputMaybe<RecordsPagination>;
9217
+ filters?: InputMaybe<Array<InputMaybe<RecordFilterInput>> | InputMaybe<RecordFilterInput>>;
9218
+ multipleSort?: InputMaybe<Array<RecordSortInput> | RecordSortInput>;
9219
+ searchQuery?: InputMaybe<Scalars["String"]>;
9220
+ }>>;
8161
9221
  export type ExplorerLibraryDataQueryHookResult = ReturnType<typeof useExplorerLibraryDataQuery>;
8162
9222
  export type ExplorerLibraryDataLazyQueryHookResult = ReturnType<typeof useExplorerLibraryDataLazyQuery>;
9223
+ export type ExplorerLibraryDataSuspenseQueryHookResult = ReturnType<typeof useExplorerLibraryDataSuspenseQuery>;
8163
9224
  export type ExplorerLibraryDataQueryResult = Apollo.QueryResult<ExplorerLibraryDataQuery, ExplorerLibraryDataQueryVariables>;
8164
9225
  export declare const ExplorerLinkDataDocument: Apollo.DocumentNode;
8165
9226
  /**
@@ -8193,8 +9254,15 @@ export declare function useExplorerLinkDataLazyQuery(baseOptions?: Apollo.LazyQu
8193
9254
  parentRecordId?: InputMaybe<Scalars["String"]>;
8194
9255
  linkAttributeId: Scalars["ID"];
8195
9256
  }>>;
9257
+ export declare function useExplorerLinkDataSuspenseQuery(baseOptions?: Apollo.SuspenseQueryHookOptions<ExplorerLinkDataQuery, ExplorerLinkDataQueryVariables>): Apollo.UseSuspenseQueryResult<ExplorerLinkDataQuery, Exact<{
9258
+ attributeIds: Array<Scalars["ID"]> | Scalars["ID"];
9259
+ parentLibraryId: Scalars["ID"];
9260
+ parentRecordId?: InputMaybe<Scalars["String"]>;
9261
+ linkAttributeId: Scalars["ID"];
9262
+ }>>;
8196
9263
  export type ExplorerLinkDataQueryHookResult = ReturnType<typeof useExplorerLinkDataQuery>;
8197
9264
  export type ExplorerLinkDataLazyQueryHookResult = ReturnType<typeof useExplorerLinkDataLazyQuery>;
9265
+ export type ExplorerLinkDataSuspenseQueryHookResult = ReturnType<typeof useExplorerLinkDataSuspenseQuery>;
8198
9266
  export type ExplorerLinkDataQueryResult = Apollo.QueryResult<ExplorerLinkDataQuery, ExplorerLinkDataQueryVariables>;
8199
9267
  export declare const GetLibraryAttributesDocument: Apollo.DocumentNode;
8200
9268
  /**
@@ -8219,8 +9287,12 @@ export declare function useGetLibraryAttributesQuery(baseOptions: Apollo.QueryHo
8219
9287
  export declare function useGetLibraryAttributesLazyQuery(baseOptions?: Apollo.LazyQueryHookOptions<GetLibraryAttributesQuery, GetLibraryAttributesQueryVariables>): Apollo.LazyQueryResultTuple<GetLibraryAttributesQuery, Exact<{
8220
9288
  libraryId: Scalars["ID"];
8221
9289
  }>>;
9290
+ export declare function useGetLibraryAttributesSuspenseQuery(baseOptions?: Apollo.SuspenseQueryHookOptions<GetLibraryAttributesQuery, GetLibraryAttributesQueryVariables>): Apollo.UseSuspenseQueryResult<GetLibraryAttributesQuery, Exact<{
9291
+ libraryId: Scalars["ID"];
9292
+ }>>;
8222
9293
  export type GetLibraryAttributesQueryHookResult = ReturnType<typeof useGetLibraryAttributesQuery>;
8223
9294
  export type GetLibraryAttributesLazyQueryHookResult = ReturnType<typeof useGetLibraryAttributesLazyQuery>;
9295
+ export type GetLibraryAttributesSuspenseQueryHookResult = ReturnType<typeof useGetLibraryAttributesSuspenseQuery>;
8224
9296
  export type GetLibraryAttributesQueryResult = Apollo.QueryResult<GetLibraryAttributesQuery, GetLibraryAttributesQueryVariables>;
8225
9297
  export declare const ExplorerLibraryDetailsDocument: Apollo.DocumentNode;
8226
9298
  /**
@@ -8245,8 +9317,12 @@ export declare function useExplorerLibraryDetailsQuery(baseOptions: Apollo.Query
8245
9317
  export declare function useExplorerLibraryDetailsLazyQuery(baseOptions?: Apollo.LazyQueryHookOptions<ExplorerLibraryDetailsQuery, ExplorerLibraryDetailsQueryVariables>): Apollo.LazyQueryResultTuple<ExplorerLibraryDetailsQuery, Exact<{
8246
9318
  libraryId: Scalars["ID"];
8247
9319
  }>>;
9320
+ export declare function useExplorerLibraryDetailsSuspenseQuery(baseOptions?: Apollo.SuspenseQueryHookOptions<ExplorerLibraryDetailsQuery, ExplorerLibraryDetailsQueryVariables>): Apollo.UseSuspenseQueryResult<ExplorerLibraryDetailsQuery, Exact<{
9321
+ libraryId: Scalars["ID"];
9322
+ }>>;
8248
9323
  export type ExplorerLibraryDetailsQueryHookResult = ReturnType<typeof useExplorerLibraryDetailsQuery>;
8249
9324
  export type ExplorerLibraryDetailsLazyQueryHookResult = ReturnType<typeof useExplorerLibraryDetailsLazyQuery>;
9325
+ export type ExplorerLibraryDetailsSuspenseQueryHookResult = ReturnType<typeof useExplorerLibraryDetailsSuspenseQuery>;
8250
9326
  export type ExplorerLibraryDetailsQueryResult = Apollo.QueryResult<ExplorerLibraryDetailsQuery, ExplorerLibraryDetailsQueryVariables>;
8251
9327
  export declare const ExplorerSelectionIdsDocument: Apollo.DocumentNode;
8252
9328
  /**
@@ -8274,8 +9350,13 @@ export declare function useExplorerSelectionIdsLazyQuery(baseOptions?: Apollo.La
8274
9350
  libraryId: Scalars["ID"];
8275
9351
  filters?: InputMaybe<Array<InputMaybe<RecordFilterInput>> | InputMaybe<RecordFilterInput>>;
8276
9352
  }>>;
9353
+ export declare function useExplorerSelectionIdsSuspenseQuery(baseOptions?: Apollo.SuspenseQueryHookOptions<ExplorerSelectionIdsQuery, ExplorerSelectionIdsQueryVariables>): Apollo.UseSuspenseQueryResult<ExplorerSelectionIdsQuery, Exact<{
9354
+ libraryId: Scalars["ID"];
9355
+ filters?: InputMaybe<Array<InputMaybe<RecordFilterInput>> | InputMaybe<RecordFilterInput>>;
9356
+ }>>;
8277
9357
  export type ExplorerSelectionIdsQueryHookResult = ReturnType<typeof useExplorerSelectionIdsQuery>;
8278
9358
  export type ExplorerSelectionIdsLazyQueryHookResult = ReturnType<typeof useExplorerSelectionIdsLazyQuery>;
9359
+ export type ExplorerSelectionIdsSuspenseQueryHookResult = ReturnType<typeof useExplorerSelectionIdsSuspenseQuery>;
8279
9360
  export type ExplorerSelectionIdsQueryResult = Apollo.QueryResult<ExplorerSelectionIdsQuery, ExplorerSelectionIdsQueryVariables>;
8280
9361
  export declare const MeDocument: Apollo.DocumentNode;
8281
9362
  /**
@@ -8299,8 +9380,12 @@ export declare function useMeQuery(baseOptions?: Apollo.QueryHookOptions<MeQuery
8299
9380
  export declare function useMeLazyQuery(baseOptions?: Apollo.LazyQueryHookOptions<MeQuery, MeQueryVariables>): Apollo.LazyQueryResultTuple<MeQuery, Exact<{
8300
9381
  [key: string]: never;
8301
9382
  }>>;
9383
+ export declare function useMeSuspenseQuery(baseOptions?: Apollo.SuspenseQueryHookOptions<MeQuery, MeQueryVariables>): Apollo.UseSuspenseQueryResult<MeQuery, Exact<{
9384
+ [key: string]: never;
9385
+ }>>;
8302
9386
  export type MeQueryHookResult = ReturnType<typeof useMeQuery>;
8303
9387
  export type MeLazyQueryHookResult = ReturnType<typeof useMeLazyQuery>;
9388
+ export type MeSuspenseQueryHookResult = ReturnType<typeof useMeSuspenseQuery>;
8304
9389
  export type MeQueryResult = Apollo.QueryResult<MeQuery, MeQueryVariables>;
8305
9390
  export declare const UpdateViewDocument: Apollo.DocumentNode;
8306
9391
  export type UpdateViewMutationFn = Apollo.MutationFunction<UpdateViewMutation, UpdateViewMutationVariables>;
@@ -8350,6 +9435,10 @@ export declare function useTreeDataQueryQuery(baseOptions: Apollo.QueryHookOptio
8350
9435
  export declare function useTreeDataQueryLazyQuery(baseOptions?: Apollo.LazyQueryHookOptions<TreeDataQueryQuery, TreeDataQueryQueryVariables>): Apollo.LazyQueryResultTuple<TreeDataQueryQuery, Exact<{
8351
9436
  treeId: Scalars["ID"];
8352
9437
  }>>;
9438
+ export declare function useTreeDataQuerySuspenseQuery(baseOptions?: Apollo.SuspenseQueryHookOptions<TreeDataQueryQuery, TreeDataQueryQueryVariables>): Apollo.UseSuspenseQueryResult<TreeDataQueryQuery, Exact<{
9439
+ treeId: Scalars["ID"];
9440
+ }>>;
8353
9441
  export type TreeDataQueryQueryHookResult = ReturnType<typeof useTreeDataQueryQuery>;
8354
9442
  export type TreeDataQueryLazyQueryHookResult = ReturnType<typeof useTreeDataQueryLazyQuery>;
9443
+ export type TreeDataQuerySuspenseQueryHookResult = ReturnType<typeof useTreeDataQuerySuspenseQuery>;
8355
9444
  export type TreeDataQueryQueryResult = Apollo.QueryResult<TreeDataQueryQuery, TreeDataQueryQueryVariables>;