@leav/ui 0.4.0-2c820e6 → 0.4.0-33efeeca

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 (267) hide show
  1. package/README.md +1 -0
  2. package/dist/_gqlTypes/index.d.ts +1479 -257
  3. package/dist/_gqlTypes/index.js +411 -45
  4. package/dist/_gqlTypes/index.js.map +1 -1
  5. package/dist/_queries/records/activateRecordsMutation.d.ts +1 -0
  6. package/dist/_queries/records/activateRecordsMutation.js +15 -0
  7. package/dist/_queries/records/activateRecordsMutation.js.map +1 -0
  8. package/dist/_queries/records/getRecordFormQuery.js +9 -0
  9. package/dist/_queries/records/getRecordFormQuery.js.map +1 -1
  10. package/dist/_queries/trees/treeNodeChildrenQuery.js +12 -2
  11. package/dist/_queries/trees/treeNodeChildrenQuery.js.map +1 -1
  12. package/dist/_utils/attributeType.d.ts +2 -1
  13. package/dist/_utils/attributeType.js +2 -1
  14. package/dist/_utils/attributeType.js.map +1 -1
  15. package/dist/components/Explorer/DataView.d.ts +2 -1
  16. package/dist/components/Explorer/DataView.js +14 -11
  17. package/dist/components/Explorer/DataView.js.map +1 -1
  18. package/dist/components/Explorer/Explorer.d.ts +8 -6
  19. package/dist/components/Explorer/Explorer.js +21 -8
  20. package/dist/components/Explorer/Explorer.js.map +1 -1
  21. package/dist/components/Explorer/ExplorerToolbar.d.ts +2 -1
  22. package/dist/components/Explorer/ExplorerToolbar.js +15 -5
  23. package/dist/components/Explorer/ExplorerToolbar.js.map +1 -1
  24. package/dist/components/Explorer/_queries/prepareFiltersForRequest.d.ts +1 -1
  25. package/dist/components/Explorer/_queries/prepareFiltersForRequest.js +99 -31
  26. package/dist/components/Explorer/_queries/prepareFiltersForRequest.js.map +1 -1
  27. package/dist/components/Explorer/_queries/useExplorerData.js +35 -26
  28. package/dist/components/Explorer/_queries/useExplorerData.js.map +1 -1
  29. package/dist/components/Explorer/_types.d.ts +74 -9
  30. package/dist/components/Explorer/_types.js +5 -0
  31. package/dist/components/Explorer/_types.js.map +1 -1
  32. package/dist/components/Explorer/actions-item/{useRemoveItemAction.d.ts → useEditStatusItemAction.d.ts} +2 -2
  33. package/dist/components/Explorer/actions-item/{useRemoveItemAction.js → useEditStatusItemAction.js} +71 -24
  34. package/dist/components/Explorer/actions-item/useEditStatusItemAction.js.map +1 -0
  35. package/dist/components/Explorer/actions-item/useReplaceItemAction.d.ts +2 -1
  36. package/dist/components/Explorer/actions-item/useReplaceItemAction.js +2 -2
  37. package/dist/components/Explorer/actions-item/useReplaceItemAction.js.map +1 -1
  38. package/dist/components/Explorer/actions-primary/useCreatePrimaryAction.d.ts +5 -1
  39. package/dist/components/Explorer/actions-primary/useCreatePrimaryAction.js +20 -22
  40. package/dist/components/Explorer/actions-primary/useCreatePrimaryAction.js.map +1 -1
  41. package/dist/components/Explorer/actions-primary/useLinkPrimaryAction.d.ts +6 -3
  42. package/dist/components/Explorer/actions-primary/useLinkPrimaryAction.js +5 -19
  43. package/dist/components/Explorer/actions-primary/useLinkPrimaryAction.js.map +1 -1
  44. package/dist/components/Explorer/link-item/LinkModal.d.ts +3 -0
  45. package/dist/components/Explorer/link-item/LinkModal.js +44 -4
  46. package/dist/components/Explorer/link-item/LinkModal.js.map +1 -1
  47. package/dist/components/Explorer/manage-view-settings/_shared/CommonFilterItem.js +4 -4
  48. package/dist/components/Explorer/manage-view-settings/_shared/CommonFilterItem.js.map +1 -1
  49. package/dist/components/Explorer/manage-view-settings/_shared/useTransformFilters.d.ts +9 -3
  50. package/dist/components/Explorer/manage-view-settings/_shared/useTransformFilters.js +81 -12
  51. package/dist/components/Explorer/manage-view-settings/_shared/useTransformFilters.js.map +1 -1
  52. package/dist/components/Explorer/manage-view-settings/filter-items/FilterItems.js +21 -8
  53. package/dist/components/Explorer/manage-view-settings/filter-items/FilterItems.js.map +1 -1
  54. package/dist/components/Explorer/manage-view-settings/filter-items/filter-type/FilterDropDown.js +2 -2
  55. package/dist/components/Explorer/manage-view-settings/filter-items/filter-type/FilterDropDown.js.map +1 -1
  56. package/dist/components/Explorer/manage-view-settings/filter-items/filter-type/FilterDropdownContent.js +9 -1
  57. package/dist/components/Explorer/manage-view-settings/filter-items/filter-type/FilterDropdownContent.js.map +1 -1
  58. package/dist/components/Explorer/manage-view-settings/filter-items/filter-type/FilterValueListDropDown.d.ts +9 -0
  59. package/dist/components/Explorer/manage-view-settings/filter-items/filter-type/FilterValueListDropDown.js +131 -0
  60. package/dist/components/Explorer/manage-view-settings/filter-items/filter-type/FilterValueListDropDown.js.map +1 -0
  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 +3 -0
  66. package/dist/components/Explorer/manage-view-settings/filter-items/filter-type/useConditionOptionsByType.js +43 -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 +29 -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 +57 -14
  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/FiltersDropdown/FiltersDropdown.js +1 -12
  83. package/dist/components/LibraryItemsList/FiltersDropdown/FiltersDropdown.js.map +1 -1
  84. package/dist/components/LibraryItemsList/FiltersPanel/Filter/Filter.js +2 -2
  85. package/dist/components/LibraryItemsList/FiltersPanel/Filter/Filter.js.map +1 -1
  86. package/dist/components/LibraryItemsList/FiltersPanel/Filter/Filter.utils.js +2 -2
  87. package/dist/components/LibraryItemsList/FiltersPanel/Filter/Filter.utils.js.map +1 -1
  88. package/dist/components/RecordEdition/EditRecord/EditRecord.d.ts +2 -1
  89. package/dist/components/RecordEdition/EditRecord/EditRecord.js +33 -214
  90. package/dist/components/RecordEdition/EditRecord/EditRecord.js.map +1 -1
  91. package/dist/components/RecordEdition/EditRecordContent/EditRecordContent.d.ts +3 -3
  92. package/dist/components/RecordEdition/EditRecordContent/EditRecordContent.js +15 -22
  93. package/dist/components/RecordEdition/EditRecordContent/EditRecordContent.js.map +1 -1
  94. package/dist/components/RecordEdition/EditRecordContent/_types.d.ts +6 -16
  95. package/dist/components/RecordEdition/EditRecordContent/_types.js.map +1 -1
  96. package/dist/components/RecordEdition/EditRecordContent/hooks/useCreateEmptyRecordMutation.d.ts +5 -0
  97. package/dist/components/RecordEdition/EditRecordContent/hooks/useCreateEmptyRecordMutation.js +28 -0
  98. package/dist/components/RecordEdition/EditRecordContent/hooks/useCreateEmptyRecordMutation.js.map +1 -0
  99. package/dist/components/RecordEdition/EditRecordContent/hooks/useTabManagement.d.ts +11 -0
  100. package/dist/components/RecordEdition/EditRecordContent/hooks/useTabManagement.js +35 -0
  101. package/dist/components/RecordEdition/EditRecordContent/hooks/useTabManagement.js.map +1 -0
  102. package/dist/components/RecordEdition/EditRecordContent/uiElements/Container/Container.d.ts +1 -1
  103. package/dist/components/RecordEdition/EditRecordContent/uiElements/Container/Container.js +2 -2
  104. package/dist/components/RecordEdition/EditRecordContent/uiElements/Container/Container.js.map +1 -1
  105. package/dist/components/RecordEdition/EditRecordContent/uiElements/FormDivider/FormDivider.js.map +1 -1
  106. package/dist/components/RecordEdition/EditRecordContent/uiElements/FormTabs/FormTabs.d.ts +2 -1
  107. package/dist/components/RecordEdition/EditRecordContent/uiElements/FormTabs/FormTabs.js +6 -9
  108. package/dist/components/RecordEdition/EditRecordContent/uiElements/FormTabs/FormTabs.js.map +1 -1
  109. package/dist/components/RecordEdition/EditRecordContent/uiElements/Frame/Frame.js +1 -1
  110. package/dist/components/RecordEdition/EditRecordContent/uiElements/Frame/Frame.js.map +1 -1
  111. package/dist/components/RecordEdition/EditRecordContent/uiElements/LinkField/LinkField.d.ts +2 -2
  112. package/dist/components/RecordEdition/EditRecordContent/uiElements/LinkField/LinkField.js +11 -35
  113. package/dist/components/RecordEdition/EditRecordContent/uiElements/LinkField/LinkField.js.map +1 -1
  114. package/dist/components/RecordEdition/EditRecordContent/uiElements/LinkField/link-record/ActionButton.d.ts +3 -0
  115. package/dist/components/RecordEdition/EditRecordContent/uiElements/LinkField/link-record/ActionButton.js +9 -0
  116. package/dist/components/RecordEdition/EditRecordContent/uiElements/LinkField/link-record/ActionButton.js.map +1 -0
  117. package/dist/components/RecordEdition/EditRecordContent/uiElements/LinkField/{link-record-in-edition/useLinkRecords.d.ts → link-record/useExplorerLinkRecords.d.ts} +2 -2
  118. package/dist/components/RecordEdition/EditRecordContent/uiElements/LinkField/{link-record-in-edition/useLinkRecords.js → link-record/useExplorerLinkRecords.js} +3 -3
  119. package/dist/components/RecordEdition/EditRecordContent/uiElements/LinkField/link-record/useExplorerLinkRecords.js.map +1 -0
  120. package/dist/components/RecordEdition/EditRecordContent/uiElements/LinkField/link-record/useLinkRecords.d.ts +24 -0
  121. package/dist/components/RecordEdition/EditRecordContent/uiElements/LinkField/{link-record-in-edition/useLinkRecordsInEdition.js → link-record/useLinkRecords.js} +18 -47
  122. package/dist/components/RecordEdition/EditRecordContent/uiElements/LinkField/link-record/useLinkRecords.js.map +1 -0
  123. package/dist/components/RecordEdition/EditRecordContent/uiElements/StandardField/StandardField.js +27 -22
  124. package/dist/components/RecordEdition/EditRecordContent/uiElements/StandardField/StandardField.js.map +1 -1
  125. package/dist/components/RecordEdition/EditRecordContent/uiElements/StandardField/StandardFieldValue/ValuesList/DSListSelect.js +3 -3
  126. package/dist/components/RecordEdition/EditRecordContent/uiElements/StandardField/StandardFieldValue/ValuesList/DSListSelect.js.map +1 -1
  127. package/dist/components/RecordEdition/EditRecordContent/uiElements/TextBlock/TextBlock.js.map +1 -1
  128. package/dist/components/RecordEdition/EditRecordContent/uiElements/TreeField/TreeField.d.ts +1 -1
  129. package/dist/components/RecordEdition/EditRecordContent/uiElements/TreeField/TreeField.js +19 -24
  130. package/dist/components/RecordEdition/EditRecordContent/uiElements/TreeField/TreeField.js.map +1 -1
  131. package/dist/components/RecordEdition/EditRecordContent/uiElements/TreeField/display-tree-node/TreeNodeItem.d.ts +2 -1
  132. package/dist/components/RecordEdition/EditRecordContent/uiElements/TreeField/display-tree-node/TreeNodeItem.js +2 -2
  133. package/dist/components/RecordEdition/EditRecordContent/uiElements/TreeField/display-tree-node/TreeNodeItem.js.map +1 -1
  134. package/dist/components/RecordEdition/EditRecordContent/uiElements/TreeField/display-tree-node/{useDisplayTreeNode.d.ts → TreeNodeList.d.ts} +4 -4
  135. package/dist/components/RecordEdition/EditRecordContent/uiElements/TreeField/display-tree-node/TreeNodeList.js +5 -0
  136. package/dist/components/RecordEdition/EditRecordContent/uiElements/TreeField/display-tree-node/TreeNodeList.js.map +1 -0
  137. package/dist/components/RecordEdition/EditRecordContent/uiElements/TreeField/manage-tree-node-selection/SelectTreeNodeModal.d.ts +16 -4
  138. package/dist/components/RecordEdition/EditRecordContent/uiElements/TreeField/manage-tree-node-selection/SelectTreeNodeModal.js +12 -13
  139. package/dist/components/RecordEdition/EditRecordContent/uiElements/TreeField/manage-tree-node-selection/SelectTreeNodeModal.js.map +1 -1
  140. package/dist/components/RecordEdition/EditRecordContent/uiElements/TreeField/manage-tree-node-selection/useManageTreeNodeSelection.d.ts +4 -2
  141. package/dist/components/RecordEdition/EditRecordContent/uiElements/TreeField/manage-tree-node-selection/useManageTreeNodeSelection.js +49 -62
  142. package/dist/components/RecordEdition/EditRecordContent/uiElements/TreeField/manage-tree-node-selection/useManageTreeNodeSelection.js.map +1 -1
  143. package/dist/components/RecordEdition/EditRecordContent/uiElements/shared/useOutsideInteractionDetector.d.ts +1 -3
  144. package/dist/components/RecordEdition/EditRecordContent/uiElements/shared/useOutsideInteractionDetector.js +6 -10
  145. package/dist/components/RecordEdition/EditRecordContent/uiElements/shared/useOutsideInteractionDetector.js.map +1 -1
  146. package/dist/components/RecordEdition/EditRecordModal/EditRecordModal.d.ts +1 -0
  147. package/dist/components/RecordEdition/EditRecordModal/EditRecordModal.js +24 -6
  148. package/dist/components/RecordEdition/EditRecordModal/EditRecordModal.js.map +1 -1
  149. package/dist/components/RecordEdition/EditRecordPage/EditRecordPage.js +23 -5
  150. package/dist/components/RecordEdition/EditRecordPage/EditRecordPage.js.map +1 -1
  151. package/dist/components/RecordEdition/editRecordReducer/editRecordReducer.d.ts +2 -5
  152. package/dist/components/RecordEdition/editRecordReducer/editRecordReducer.js +1 -1
  153. package/dist/components/RecordEdition/editRecordReducer/editRecordReducer.js.map +1 -1
  154. package/dist/components/RecordEdition/index.d.ts +2 -1
  155. package/dist/components/RecordEdition/index.js +2 -1
  156. package/dist/components/RecordEdition/index.js.map +1 -1
  157. package/dist/components/SelectRecordForLinkModal/SelectRecordForLinkModal.d.ts +4 -1
  158. package/dist/components/SelectRecordForLinkModal/SelectRecordForLinkModal.js +6 -4
  159. package/dist/components/SelectRecordForLinkModal/SelectRecordForLinkModal.js.map +1 -1
  160. package/dist/components/SelectTreeNode/SelectTreeNode.d.ts +7 -3
  161. package/dist/components/SelectTreeNode/SelectTreeNode.js +2 -3
  162. package/dist/components/SelectTreeNode/SelectTreeNode.js.map +1 -1
  163. package/dist/components/SelectTreeNode/SelectTreeNodeContent.d.ts +5 -1
  164. package/dist/components/SelectTreeNode/SelectTreeNodeContent.js +70 -56
  165. package/dist/components/SelectTreeNode/SelectTreeNodeContent.js.map +1 -1
  166. package/dist/components/SelectTreeNode/_types.d.ts +18 -0
  167. package/dist/components/SelectTreeNode/_types.js +2 -0
  168. package/dist/components/SelectTreeNode/_types.js.map +1 -0
  169. package/dist/components/{SelectTreeNodeModal/SelectTreeNodeModal.d.ts → SelectTreeNodeModalOld/SelectTreeNodeModalOld.d.ts} +1 -1
  170. package/dist/components/{SelectTreeNodeModal/SelectTreeNodeModal.js → SelectTreeNodeModalOld/SelectTreeNodeModalOld.js} +4 -2
  171. package/dist/components/SelectTreeNodeModalOld/SelectTreeNodeModalOld.js.map +1 -0
  172. package/dist/components/SelectTreeNodeModalOld/index.d.ts +1 -0
  173. package/dist/components/{RecordEdition/EditRecordContent/uiElements/StandardField/StandardFieldValue/ValuesList → SelectTreeNodeModalOld}/index.js +1 -2
  174. package/dist/components/SelectTreeNodeModalOld/index.js.map +1 -0
  175. package/dist/components/ValuesVersionConfigurator/VersionTree/VersionTree.js +2 -2
  176. package/dist/components/ValuesVersionConfigurator/VersionTree/VersionTree.js.map +1 -1
  177. package/dist/components/index.d.ts +1 -2
  178. package/dist/components/index.js +1 -2
  179. package/dist/components/index.js.map +1 -1
  180. package/dist/contexts/LangContext/LangContext.d.ts +1 -2
  181. package/dist/contexts/LangContext/LangContext.js +2 -2
  182. package/dist/contexts/LangContext/LangContext.js.map +1 -1
  183. package/dist/hooks/index.d.ts +2 -0
  184. package/dist/hooks/index.js +2 -0
  185. package/dist/hooks/index.js.map +1 -1
  186. package/dist/hooks/useGetRecordForm/useGetRecordForm.d.ts +1 -1
  187. package/dist/hooks/useGetRecordForm/useGetRecordForm.js +3 -3
  188. package/dist/hooks/useGetRecordForm/useGetRecordForm.js.map +1 -1
  189. package/dist/hooks/useIFrameMessenger/messageHandlers.d.ts +4 -2
  190. package/dist/hooks/useIFrameMessenger/messageHandlers.js +15 -5
  191. package/dist/hooks/useIFrameMessenger/messageHandlers.js.map +1 -1
  192. package/dist/hooks/useIFrameMessenger/schema.d.ts +21 -0
  193. package/dist/hooks/useIFrameMessenger/schema.js +76 -0
  194. package/dist/hooks/useIFrameMessenger/schema.js.map +1 -0
  195. package/dist/hooks/useIFrameMessenger/types.d.ts +52 -10
  196. package/dist/hooks/useIFrameMessenger/types.js.map +1 -1
  197. package/dist/hooks/useIFrameMessenger/useIFrameMessenger.d.ts +11 -1
  198. package/dist/hooks/useIFrameMessenger/useIFrameMessenger.js +66 -11
  199. package/dist/hooks/useIFrameMessenger/useIFrameMessenger.js.map +1 -1
  200. package/dist/hooks/useIFrameMessengerClient/IFrameMessengerClient.d.ts +7 -0
  201. package/dist/hooks/useIFrameMessengerClient/IFrameMessengerClient.js +13 -0
  202. package/dist/hooks/useIFrameMessengerClient/IFrameMessengerClient.js.map +1 -0
  203. package/dist/hooks/useIFrameMessengerClient/iFrameMessengerClientContext.d.ts +13 -0
  204. package/dist/{components/RecordEdition/EditRecord/creationErrorContext.js → hooks/useIFrameMessengerClient/iFrameMessengerClientContext.js} +2 -3
  205. package/dist/hooks/useIFrameMessengerClient/iFrameMessengerClientContext.js.map +1 -0
  206. package/dist/hooks/useIFrameMessengerClient/useIFrameMessengerClient.d.ts +13 -0
  207. package/dist/hooks/useIFrameMessengerClient/useIFrameMessengerClient.js +13 -0
  208. package/dist/hooks/useIFrameMessengerClient/useIFrameMessengerClient.js.map +1 -0
  209. package/dist/hooks/useRedirectToLogin/useRedirectToLogin.js +1 -1
  210. package/dist/hooks/useRedirectToLogin/useRedirectToLogin.js.map +1 -1
  211. package/dist/locales/en/shared.json +7 -1
  212. package/dist/locales/fr/shared.json +6 -0
  213. package/dist/types/attributes.d.ts +2 -1
  214. package/package.json +22 -7
  215. package/dist/components/Explorer/actions-item/useRemoveItemAction.js.map +0 -1
  216. package/dist/components/Explorer/manage-view-settings/filter-items/filter-type/FilterValueList.d.ts +0 -10
  217. package/dist/components/Explorer/manage-view-settings/filter-items/filter-type/FilterValueList.js +0 -75
  218. package/dist/components/Explorer/manage-view-settings/filter-items/filter-type/FilterValueList.js.map +0 -1
  219. package/dist/components/RecordEdition/EditRecord/creationErrorContext.d.ts +0 -6
  220. package/dist/components/RecordEdition/EditRecord/creationErrorContext.js.map +0 -1
  221. package/dist/components/RecordEdition/EditRecordContent/hooks/useCreateRecordMutation.d.ts +0 -5
  222. package/dist/components/RecordEdition/EditRecordContent/hooks/useCreateRecordMutation.js +0 -28
  223. package/dist/components/RecordEdition/EditRecordContent/hooks/useCreateRecordMutation.js.map +0 -1
  224. package/dist/components/RecordEdition/EditRecordContent/hooks/useRunActionsListAndFormatOnValue.d.ts +0 -121
  225. package/dist/components/RecordEdition/EditRecordContent/hooks/useRunActionsListAndFormatOnValue.js +0 -31
  226. package/dist/components/RecordEdition/EditRecordContent/hooks/useRunActionsListAndFormatOnValue.js.map +0 -1
  227. package/dist/components/RecordEdition/EditRecordContent/uiElements/LinkField/action-item/useEditRecord.d.ts +0 -5
  228. package/dist/components/RecordEdition/EditRecordContent/uiElements/LinkField/action-item/useEditRecord.js +0 -39
  229. package/dist/components/RecordEdition/EditRecordContent/uiElements/LinkField/action-item/useEditRecord.js.map +0 -1
  230. package/dist/components/RecordEdition/EditRecordContent/uiElements/LinkField/action-item/useUnselectRecord.d.ts +0 -8
  231. package/dist/components/RecordEdition/EditRecordContent/uiElements/LinkField/action-item/useUnselectRecord.js +0 -23
  232. package/dist/components/RecordEdition/EditRecordContent/uiElements/LinkField/action-item/useUnselectRecord.js.map +0 -1
  233. package/dist/components/RecordEdition/EditRecordContent/uiElements/LinkField/action-mass/useUnselectAllRecords.d.ts +0 -9
  234. package/dist/components/RecordEdition/EditRecordContent/uiElements/LinkField/action-mass/useUnselectAllRecords.js +0 -23
  235. package/dist/components/RecordEdition/EditRecordContent/uiElements/LinkField/action-mass/useUnselectAllRecords.js.map +0 -1
  236. package/dist/components/RecordEdition/EditRecordContent/uiElements/LinkField/action-primary/useCreateRecord.d.ts +0 -8
  237. package/dist/components/RecordEdition/EditRecordContent/uiElements/LinkField/action-primary/useCreateRecord.js +0 -26
  238. package/dist/components/RecordEdition/EditRecordContent/uiElements/LinkField/action-primary/useCreateRecord.js.map +0 -1
  239. package/dist/components/RecordEdition/EditRecordContent/uiElements/LinkField/action-primary/useRecordSelector.d.ts +0 -12
  240. package/dist/components/RecordEdition/EditRecordContent/uiElements/LinkField/action-primary/useRecordSelector.js +0 -24
  241. package/dist/components/RecordEdition/EditRecordContent/uiElements/LinkField/action-primary/useRecordSelector.js.map +0 -1
  242. package/dist/components/RecordEdition/EditRecordContent/uiElements/LinkField/link-record-in-creation/useLinkRecords.d.ts +0 -19
  243. package/dist/components/RecordEdition/EditRecordContent/uiElements/LinkField/link-record-in-creation/useLinkRecords.js +0 -103
  244. package/dist/components/RecordEdition/EditRecordContent/uiElements/LinkField/link-record-in-creation/useLinkRecords.js.map +0 -1
  245. package/dist/components/RecordEdition/EditRecordContent/uiElements/LinkField/link-record-in-creation/useLinkRecordsInCreation.d.ts +0 -22
  246. package/dist/components/RecordEdition/EditRecordContent/uiElements/LinkField/link-record-in-creation/useLinkRecordsInCreation.js +0 -104
  247. package/dist/components/RecordEdition/EditRecordContent/uiElements/LinkField/link-record-in-creation/useLinkRecordsInCreation.js.map +0 -1
  248. package/dist/components/RecordEdition/EditRecordContent/uiElements/LinkField/link-record-in-edition/useLinkRecords.js.map +0 -1
  249. package/dist/components/RecordEdition/EditRecordContent/uiElements/LinkField/link-record-in-edition/useLinkRecordsInEdition.d.ts +0 -26
  250. package/dist/components/RecordEdition/EditRecordContent/uiElements/LinkField/link-record-in-edition/useLinkRecordsInEdition.js.map +0 -1
  251. package/dist/components/RecordEdition/EditRecordContent/uiElements/LinkField/shared/LinkActionsButtons.d.ts +0 -9
  252. package/dist/components/RecordEdition/EditRecordContent/uiElements/LinkField/shared/LinkActionsButtons.js +0 -15
  253. package/dist/components/RecordEdition/EditRecordContent/uiElements/LinkField/shared/LinkActionsButtons.js.map +0 -1
  254. package/dist/components/RecordEdition/EditRecordContent/uiElements/LinkField/shared/utils.d.ts +0 -4
  255. package/dist/components/RecordEdition/EditRecordContent/uiElements/LinkField/shared/utils.js +0 -22
  256. package/dist/components/RecordEdition/EditRecordContent/uiElements/LinkField/shared/utils.js.map +0 -1
  257. package/dist/components/RecordEdition/EditRecordContent/uiElements/StandardField/StandardFieldValue/ValuesList/ValuesList.d.ts +0 -16
  258. package/dist/components/RecordEdition/EditRecordContent/uiElements/StandardField/StandardFieldValue/ValuesList/ValuesList.js +0 -35
  259. package/dist/components/RecordEdition/EditRecordContent/uiElements/StandardField/StandardFieldValue/ValuesList/ValuesList.js.map +0 -1
  260. package/dist/components/RecordEdition/EditRecordContent/uiElements/StandardField/StandardFieldValue/ValuesList/index.d.ts +0 -2
  261. package/dist/components/RecordEdition/EditRecordContent/uiElements/StandardField/StandardFieldValue/ValuesList/index.js.map +0 -1
  262. package/dist/components/RecordEdition/EditRecordContent/uiElements/TreeField/display-tree-node/useDisplayTreeNode.js +0 -8
  263. package/dist/components/RecordEdition/EditRecordContent/uiElements/TreeField/display-tree-node/useDisplayTreeNode.js.map +0 -1
  264. package/dist/components/SelectTreeNodeModal/SelectTreeNodeModal.js.map +0 -1
  265. package/dist/components/SelectTreeNodeModal/index.d.ts +0 -1
  266. package/dist/components/SelectTreeNodeModal/index.js +0 -5
  267. package/dist/components/SelectTreeNodeModal/index.js.map +0 -1
@@ -183,6 +183,11 @@ export declare enum AvailableLanguage {
183
183
  en = "en",
184
184
  fr = "fr"
185
185
  }
186
+ export type ChildrenAsRecordValuePermissionFilterInput = {
187
+ action: RecordPermissionsActions;
188
+ attributeId: Scalars['ID'];
189
+ libraryId: Scalars['ID'];
190
+ };
186
191
  export type CreateRecordDataInput = {
187
192
  values?: InputMaybe<Array<ValueBatchInput>>;
188
193
  version?: InputMaybe<Array<ValueVersionInput>>;
@@ -310,12 +315,12 @@ export type LibraryIconInput = {
310
315
  export type LibraryInput = {
311
316
  attributes?: InputMaybe<Array<Scalars['ID']>>;
312
317
  behavior?: InputMaybe<LibraryBehavior>;
313
- mandatoryAttribute?: InputMaybe<Scalars['ID']>;
314
318
  defaultView?: InputMaybe<Scalars['ID']>;
315
319
  fullTextAttributes?: InputMaybe<Array<Scalars['ID']>>;
316
320
  icon?: InputMaybe<LibraryIconInput>;
317
321
  id: Scalars['ID'];
318
322
  label?: InputMaybe<Scalars['SystemTranslation']>;
323
+ mandatoryAttribute?: InputMaybe<Scalars['ID']>;
319
324
  permissions_conf?: InputMaybe<TreepermissionsConfInput>;
320
325
  previewsSettings?: InputMaybe<Array<LibraryPreviewsSettingsInput>>;
321
326
  recordIdentityConf?: InputMaybe<RecordIdentityConfInput>;
@@ -346,7 +351,6 @@ export declare enum LogAction {
346
351
  PERMISSION_SAVE = "PERMISSION_SAVE",
347
352
  RECORD_DELETE = "RECORD_DELETE",
348
353
  RECORD_SAVE = "RECORD_SAVE",
349
- SDO_LOG_EXPORT_RECORD = "SDO_LOG_EXPORT_RECORD",
350
354
  TASKS_DELETE = "TASKS_DELETE",
351
355
  TREE_ADD_ELEMENT = "TREE_ADD_ELEMENT",
352
356
  TREE_DELETE = "TREE_DELETE",
@@ -448,6 +452,7 @@ export declare enum PermissionsActions {
448
452
  admin_access_applications = "admin_access_applications",
449
453
  admin_access_attributes = "admin_access_attributes",
450
454
  admin_access_libraries = "admin_access_libraries",
455
+ admin_access_logs = "admin_access_logs",
451
456
  admin_access_permissions = "admin_access_permissions",
452
457
  admin_access_tasks = "admin_access_tasks",
453
458
  admin_access_trees = "admin_access_trees",
@@ -475,6 +480,7 @@ export declare enum PermissionsActions {
475
480
  admin_edit_permission = "admin_edit_permission",
476
481
  admin_edit_tree = "admin_edit_tree",
477
482
  admin_edit_version_profile = "admin_edit_version_profile",
483
+ admin_import_config_clear_database = "admin_import_config_clear_database",
478
484
  admin_library = "admin_library",
479
485
  admin_manage_global_preferences = "admin_manage_global_preferences",
480
486
  create_record = "create_record",
@@ -554,6 +560,12 @@ export type RecordInput = {
554
560
  id: Scalars['ID'];
555
561
  library: Scalars['String'];
556
562
  };
563
+ export declare enum RecordPermissionsActions {
564
+ access_record = "access_record",
565
+ create_record = "create_record",
566
+ delete_record = "delete_record",
567
+ edit_record = "edit_record"
568
+ }
557
569
  export type RecordSortInput = {
558
570
  field: Scalars['String'];
559
571
  order: SortOrder;
@@ -1773,6 +1785,261 @@ export type RecordFormElementFragment = {
1773
1785
  key: string;
1774
1786
  value: any;
1775
1787
  }>;
1788
+ joinLibraryContext?: {
1789
+ mandatoryAttribute: {
1790
+ id: string;
1791
+ label?: any | null;
1792
+ description?: any | null;
1793
+ type: AttributeType;
1794
+ format?: AttributeFormat | null;
1795
+ system: boolean;
1796
+ readonly: boolean;
1797
+ required: boolean;
1798
+ multiple_values: boolean;
1799
+ compute: boolean;
1800
+ linked_library?: {
1801
+ id: string;
1802
+ label?: any | null;
1803
+ behavior: LibraryBehavior;
1804
+ permissions?: {
1805
+ create_record: boolean;
1806
+ } | null;
1807
+ } | null;
1808
+ linkValuesList?: {
1809
+ enable: boolean;
1810
+ allowFreeEntry?: boolean | null;
1811
+ allowListUpdate?: boolean | null;
1812
+ values?: Array<{
1813
+ id: string;
1814
+ whoAmI: {
1815
+ id: string;
1816
+ label?: string | null;
1817
+ subLabel?: string | null;
1818
+ color?: string | null;
1819
+ preview?: IPreviewScalar | null;
1820
+ library: {
1821
+ id: string;
1822
+ label?: any | null;
1823
+ };
1824
+ };
1825
+ }> | null;
1826
+ } | null;
1827
+ permissions: {
1828
+ access_attribute: boolean;
1829
+ edit_value: boolean;
1830
+ };
1831
+ versions_conf?: {
1832
+ versionable: boolean;
1833
+ profile?: {
1834
+ id: string;
1835
+ trees: Array<{
1836
+ id: string;
1837
+ label?: any | null;
1838
+ }>;
1839
+ } | null;
1840
+ } | null;
1841
+ metadata_fields?: Array<{
1842
+ id: string;
1843
+ label?: any | null;
1844
+ description?: any | null;
1845
+ type: AttributeType;
1846
+ format?: AttributeFormat | null;
1847
+ system: boolean;
1848
+ readonly: boolean;
1849
+ multiple_values: boolean;
1850
+ permissions: {
1851
+ access_attribute: boolean;
1852
+ edit_value: boolean;
1853
+ };
1854
+ values_list?: {
1855
+ enable: boolean;
1856
+ allowFreeEntry?: boolean | null;
1857
+ allowListUpdate?: boolean | null;
1858
+ dateRangeValues?: Array<{
1859
+ from?: string | null;
1860
+ to?: string | null;
1861
+ }> | null;
1862
+ } | {
1863
+ enable: boolean;
1864
+ allowFreeEntry?: boolean | null;
1865
+ allowListUpdate?: boolean | null;
1866
+ values?: Array<string> | null;
1867
+ } | null;
1868
+ metadata_fields?: Array<{
1869
+ id: string;
1870
+ }> | null;
1871
+ }> | null;
1872
+ } | {
1873
+ character_limit?: number | null;
1874
+ id: string;
1875
+ label?: any | null;
1876
+ description?: any | null;
1877
+ type: AttributeType;
1878
+ format?: AttributeFormat | null;
1879
+ system: boolean;
1880
+ readonly: boolean;
1881
+ required: boolean;
1882
+ multiple_values: boolean;
1883
+ compute: boolean;
1884
+ values_list?: {
1885
+ enable: boolean;
1886
+ allowFreeEntry?: boolean | null;
1887
+ allowListUpdate?: boolean | null;
1888
+ dateRangeValues?: Array<{
1889
+ from?: string | null;
1890
+ to?: string | null;
1891
+ }> | null;
1892
+ } | {
1893
+ enable: boolean;
1894
+ allowFreeEntry?: boolean | null;
1895
+ allowListUpdate?: boolean | null;
1896
+ values?: Array<string> | null;
1897
+ } | null;
1898
+ permissions: {
1899
+ access_attribute: boolean;
1900
+ edit_value: boolean;
1901
+ };
1902
+ versions_conf?: {
1903
+ versionable: boolean;
1904
+ profile?: {
1905
+ id: string;
1906
+ trees: Array<{
1907
+ id: string;
1908
+ label?: any | null;
1909
+ }>;
1910
+ } | null;
1911
+ } | null;
1912
+ metadata_fields?: Array<{
1913
+ id: string;
1914
+ label?: any | null;
1915
+ description?: any | null;
1916
+ type: AttributeType;
1917
+ format?: AttributeFormat | null;
1918
+ system: boolean;
1919
+ readonly: boolean;
1920
+ multiple_values: boolean;
1921
+ permissions: {
1922
+ access_attribute: boolean;
1923
+ edit_value: boolean;
1924
+ };
1925
+ values_list?: {
1926
+ enable: boolean;
1927
+ allowFreeEntry?: boolean | null;
1928
+ allowListUpdate?: boolean | null;
1929
+ dateRangeValues?: Array<{
1930
+ from?: string | null;
1931
+ to?: string | null;
1932
+ }> | null;
1933
+ } | {
1934
+ enable: boolean;
1935
+ allowFreeEntry?: boolean | null;
1936
+ allowListUpdate?: boolean | null;
1937
+ values?: Array<string> | null;
1938
+ } | null;
1939
+ metadata_fields?: Array<{
1940
+ id: string;
1941
+ }> | null;
1942
+ }> | null;
1943
+ } | {
1944
+ id: string;
1945
+ label?: any | null;
1946
+ description?: any | null;
1947
+ type: AttributeType;
1948
+ format?: AttributeFormat | null;
1949
+ system: boolean;
1950
+ readonly: boolean;
1951
+ required: boolean;
1952
+ multiple_values: boolean;
1953
+ compute: boolean;
1954
+ linked_tree?: {
1955
+ id: string;
1956
+ label?: any | null;
1957
+ } | null;
1958
+ treeValuesList?: {
1959
+ enable: boolean;
1960
+ allowFreeEntry?: boolean | null;
1961
+ allowListUpdate?: boolean | null;
1962
+ values?: Array<{
1963
+ id: string;
1964
+ record: {
1965
+ id: string;
1966
+ whoAmI: {
1967
+ id: string;
1968
+ label?: string | null;
1969
+ subLabel?: string | null;
1970
+ color?: string | null;
1971
+ preview?: IPreviewScalar | null;
1972
+ library: {
1973
+ id: string;
1974
+ label?: any | null;
1975
+ };
1976
+ };
1977
+ };
1978
+ ancestors?: Array<{
1979
+ record: {
1980
+ id: string;
1981
+ whoAmI: {
1982
+ id: string;
1983
+ label?: string | null;
1984
+ subLabel?: string | null;
1985
+ color?: string | null;
1986
+ preview?: IPreviewScalar | null;
1987
+ library: {
1988
+ id: string;
1989
+ label?: any | null;
1990
+ };
1991
+ };
1992
+ };
1993
+ }> | null;
1994
+ }> | null;
1995
+ } | null;
1996
+ permissions: {
1997
+ access_attribute: boolean;
1998
+ edit_value: boolean;
1999
+ };
2000
+ versions_conf?: {
2001
+ versionable: boolean;
2002
+ profile?: {
2003
+ id: string;
2004
+ trees: Array<{
2005
+ id: string;
2006
+ label?: any | null;
2007
+ }>;
2008
+ } | null;
2009
+ } | null;
2010
+ metadata_fields?: Array<{
2011
+ id: string;
2012
+ label?: any | null;
2013
+ description?: any | null;
2014
+ type: AttributeType;
2015
+ format?: AttributeFormat | null;
2016
+ system: boolean;
2017
+ readonly: boolean;
2018
+ multiple_values: boolean;
2019
+ permissions: {
2020
+ access_attribute: boolean;
2021
+ edit_value: boolean;
2022
+ };
2023
+ values_list?: {
2024
+ enable: boolean;
2025
+ allowFreeEntry?: boolean | null;
2026
+ allowListUpdate?: boolean | null;
2027
+ dateRangeValues?: Array<{
2028
+ from?: string | null;
2029
+ to?: string | null;
2030
+ }> | null;
2031
+ } | {
2032
+ enable: boolean;
2033
+ allowFreeEntry?: boolean | null;
2034
+ allowListUpdate?: boolean | null;
2035
+ values?: Array<string> | null;
2036
+ } | null;
2037
+ metadata_fields?: Array<{
2038
+ id: string;
2039
+ }> | null;
2040
+ }> | null;
2041
+ };
2042
+ } | null;
1776
2043
  };
1777
2044
  export type ValueDetailsLinkValueFragment = {
1778
2045
  id_value?: string | null;
@@ -2447,14 +2714,269 @@ export type StandardValuesListFragmentStandardStringValuesListConfFragment = {
2447
2714
  values?: Array<string> | null;
2448
2715
  };
2449
2716
  export type StandardValuesListFragmentFragment = StandardValuesListFragmentStandardDateRangeValuesListConfFragment | StandardValuesListFragmentStandardStringValuesListConfFragment;
2450
- export type TreeDetailsFragment = {
2451
- id: string;
2452
- label?: any | null;
2453
- behavior: TreeBehavior;
2454
- system: boolean;
2455
- libraries: Array<{
2456
- library: {
2457
- id: string;
2717
+ export type JoinLibraryContextFragment = {
2718
+ mandatoryAttribute: {
2719
+ id: string;
2720
+ label?: any | null;
2721
+ description?: any | null;
2722
+ type: AttributeType;
2723
+ format?: AttributeFormat | null;
2724
+ system: boolean;
2725
+ readonly: boolean;
2726
+ required: boolean;
2727
+ multiple_values: boolean;
2728
+ compute: boolean;
2729
+ linked_library?: {
2730
+ id: string;
2731
+ label?: any | null;
2732
+ behavior: LibraryBehavior;
2733
+ permissions?: {
2734
+ create_record: boolean;
2735
+ } | null;
2736
+ } | null;
2737
+ linkValuesList?: {
2738
+ enable: boolean;
2739
+ allowFreeEntry?: boolean | null;
2740
+ allowListUpdate?: boolean | null;
2741
+ values?: Array<{
2742
+ id: string;
2743
+ whoAmI: {
2744
+ id: string;
2745
+ label?: string | null;
2746
+ subLabel?: string | null;
2747
+ color?: string | null;
2748
+ preview?: IPreviewScalar | null;
2749
+ library: {
2750
+ id: string;
2751
+ label?: any | null;
2752
+ };
2753
+ };
2754
+ }> | null;
2755
+ } | null;
2756
+ permissions: {
2757
+ access_attribute: boolean;
2758
+ edit_value: boolean;
2759
+ };
2760
+ versions_conf?: {
2761
+ versionable: boolean;
2762
+ profile?: {
2763
+ id: string;
2764
+ trees: Array<{
2765
+ id: string;
2766
+ label?: any | null;
2767
+ }>;
2768
+ } | null;
2769
+ } | null;
2770
+ metadata_fields?: Array<{
2771
+ id: string;
2772
+ label?: any | null;
2773
+ description?: any | null;
2774
+ type: AttributeType;
2775
+ format?: AttributeFormat | null;
2776
+ system: boolean;
2777
+ readonly: boolean;
2778
+ multiple_values: boolean;
2779
+ permissions: {
2780
+ access_attribute: boolean;
2781
+ edit_value: boolean;
2782
+ };
2783
+ values_list?: {
2784
+ enable: boolean;
2785
+ allowFreeEntry?: boolean | null;
2786
+ allowListUpdate?: boolean | null;
2787
+ dateRangeValues?: Array<{
2788
+ from?: string | null;
2789
+ to?: string | null;
2790
+ }> | null;
2791
+ } | {
2792
+ enable: boolean;
2793
+ allowFreeEntry?: boolean | null;
2794
+ allowListUpdate?: boolean | null;
2795
+ values?: Array<string> | null;
2796
+ } | null;
2797
+ metadata_fields?: Array<{
2798
+ id: string;
2799
+ }> | null;
2800
+ }> | null;
2801
+ } | {
2802
+ character_limit?: number | null;
2803
+ id: string;
2804
+ label?: any | null;
2805
+ description?: any | null;
2806
+ type: AttributeType;
2807
+ format?: AttributeFormat | null;
2808
+ system: boolean;
2809
+ readonly: boolean;
2810
+ required: boolean;
2811
+ multiple_values: boolean;
2812
+ compute: boolean;
2813
+ values_list?: {
2814
+ enable: boolean;
2815
+ allowFreeEntry?: boolean | null;
2816
+ allowListUpdate?: boolean | null;
2817
+ dateRangeValues?: Array<{
2818
+ from?: string | null;
2819
+ to?: string | null;
2820
+ }> | null;
2821
+ } | {
2822
+ enable: boolean;
2823
+ allowFreeEntry?: boolean | null;
2824
+ allowListUpdate?: boolean | null;
2825
+ values?: Array<string> | null;
2826
+ } | null;
2827
+ permissions: {
2828
+ access_attribute: boolean;
2829
+ edit_value: boolean;
2830
+ };
2831
+ versions_conf?: {
2832
+ versionable: boolean;
2833
+ profile?: {
2834
+ id: string;
2835
+ trees: Array<{
2836
+ id: string;
2837
+ label?: any | null;
2838
+ }>;
2839
+ } | null;
2840
+ } | null;
2841
+ metadata_fields?: Array<{
2842
+ id: string;
2843
+ label?: any | null;
2844
+ description?: any | null;
2845
+ type: AttributeType;
2846
+ format?: AttributeFormat | null;
2847
+ system: boolean;
2848
+ readonly: boolean;
2849
+ multiple_values: boolean;
2850
+ permissions: {
2851
+ access_attribute: boolean;
2852
+ edit_value: boolean;
2853
+ };
2854
+ values_list?: {
2855
+ enable: boolean;
2856
+ allowFreeEntry?: boolean | null;
2857
+ allowListUpdate?: boolean | null;
2858
+ dateRangeValues?: Array<{
2859
+ from?: string | null;
2860
+ to?: string | null;
2861
+ }> | null;
2862
+ } | {
2863
+ enable: boolean;
2864
+ allowFreeEntry?: boolean | null;
2865
+ allowListUpdate?: boolean | null;
2866
+ values?: Array<string> | null;
2867
+ } | null;
2868
+ metadata_fields?: Array<{
2869
+ id: string;
2870
+ }> | null;
2871
+ }> | null;
2872
+ } | {
2873
+ id: string;
2874
+ label?: any | null;
2875
+ description?: any | null;
2876
+ type: AttributeType;
2877
+ format?: AttributeFormat | null;
2878
+ system: boolean;
2879
+ readonly: boolean;
2880
+ required: boolean;
2881
+ multiple_values: boolean;
2882
+ compute: boolean;
2883
+ linked_tree?: {
2884
+ id: string;
2885
+ label?: any | null;
2886
+ } | null;
2887
+ treeValuesList?: {
2888
+ enable: boolean;
2889
+ allowFreeEntry?: boolean | null;
2890
+ allowListUpdate?: boolean | null;
2891
+ values?: Array<{
2892
+ id: string;
2893
+ record: {
2894
+ id: string;
2895
+ whoAmI: {
2896
+ id: string;
2897
+ label?: string | null;
2898
+ subLabel?: string | null;
2899
+ color?: string | null;
2900
+ preview?: IPreviewScalar | null;
2901
+ library: {
2902
+ id: string;
2903
+ label?: any | null;
2904
+ };
2905
+ };
2906
+ };
2907
+ ancestors?: Array<{
2908
+ record: {
2909
+ id: string;
2910
+ whoAmI: {
2911
+ id: string;
2912
+ label?: string | null;
2913
+ subLabel?: string | null;
2914
+ color?: string | null;
2915
+ preview?: IPreviewScalar | null;
2916
+ library: {
2917
+ id: string;
2918
+ label?: any | null;
2919
+ };
2920
+ };
2921
+ };
2922
+ }> | null;
2923
+ }> | null;
2924
+ } | null;
2925
+ permissions: {
2926
+ access_attribute: boolean;
2927
+ edit_value: boolean;
2928
+ };
2929
+ versions_conf?: {
2930
+ versionable: boolean;
2931
+ profile?: {
2932
+ id: string;
2933
+ trees: Array<{
2934
+ id: string;
2935
+ label?: any | null;
2936
+ }>;
2937
+ } | null;
2938
+ } | null;
2939
+ metadata_fields?: Array<{
2940
+ id: string;
2941
+ label?: any | null;
2942
+ description?: any | null;
2943
+ type: AttributeType;
2944
+ format?: AttributeFormat | null;
2945
+ system: boolean;
2946
+ readonly: boolean;
2947
+ multiple_values: boolean;
2948
+ permissions: {
2949
+ access_attribute: boolean;
2950
+ edit_value: boolean;
2951
+ };
2952
+ values_list?: {
2953
+ enable: boolean;
2954
+ allowFreeEntry?: boolean | null;
2955
+ allowListUpdate?: boolean | null;
2956
+ dateRangeValues?: Array<{
2957
+ from?: string | null;
2958
+ to?: string | null;
2959
+ }> | null;
2960
+ } | {
2961
+ enable: boolean;
2962
+ allowFreeEntry?: boolean | null;
2963
+ allowListUpdate?: boolean | null;
2964
+ values?: Array<string> | null;
2965
+ } | null;
2966
+ metadata_fields?: Array<{
2967
+ id: string;
2968
+ }> | null;
2969
+ }> | null;
2970
+ };
2971
+ };
2972
+ export type TreeDetailsFragment = {
2973
+ id: string;
2974
+ label?: any | null;
2975
+ behavior: TreeBehavior;
2976
+ system: boolean;
2977
+ libraries: Array<{
2978
+ library: {
2979
+ id: string;
2458
2980
  label?: any | null;
2459
2981
  };
2460
2982
  settings: {
@@ -2595,6 +3117,25 @@ export type AttributesByLibAttributeWithPermissionsLinkAttributeFragment = {
2595
3117
  permissions: {
2596
3118
  access_attribute: boolean;
2597
3119
  };
3120
+ valuesList?: {
3121
+ enable: boolean;
3122
+ allowFreeEntry?: boolean | null;
3123
+ allowListUpdate?: boolean | null;
3124
+ linkedValues?: Array<{
3125
+ id: string;
3126
+ whoAmI: {
3127
+ id: string;
3128
+ label?: string | null;
3129
+ subLabel?: string | null;
3130
+ color?: string | null;
3131
+ preview?: IPreviewScalar | null;
3132
+ library: {
3133
+ id: string;
3134
+ label?: any | null;
3135
+ };
3136
+ };
3137
+ }> | null;
3138
+ } | null;
2598
3139
  linked_library?: {
2599
3140
  id: string;
2600
3141
  } | null;
@@ -2612,6 +3153,20 @@ export type AttributesByLibAttributeWithPermissionsStandardAttributeFragment = {
2612
3153
  format?: AttributeFormat | null;
2613
3154
  label?: any | null;
2614
3155
  } | null> | null;
3156
+ valuesList?: {
3157
+ enable: boolean;
3158
+ allowFreeEntry?: boolean | null;
3159
+ allowListUpdate?: boolean | null;
3160
+ dateRangeValues?: Array<{
3161
+ from?: string | null;
3162
+ to?: string | null;
3163
+ }> | null;
3164
+ } | {
3165
+ enable: boolean;
3166
+ allowFreeEntry?: boolean | null;
3167
+ allowListUpdate?: boolean | null;
3168
+ values?: Array<string> | null;
3169
+ } | null;
2615
3170
  permissions: {
2616
3171
  access_attribute: boolean;
2617
3172
  };
@@ -2640,16 +3195,73 @@ export type AttributesByLibAttributeWithPermissionsTreeAttributeFragment = {
2640
3195
  };
2641
3196
  export type AttributesByLibAttributeWithPermissionsFragment = AttributesByLibAttributeWithPermissionsLinkAttributeFragment | AttributesByLibAttributeWithPermissionsStandardAttributeFragment | AttributesByLibAttributeWithPermissionsTreeAttributeFragment;
2642
3197
  export type AttributesByLibLinkAttributeWithPermissionsFragment = {
3198
+ valuesList?: {
3199
+ enable: boolean;
3200
+ allowFreeEntry?: boolean | null;
3201
+ allowListUpdate?: boolean | null;
3202
+ linkedValues?: Array<{
3203
+ id: string;
3204
+ whoAmI: {
3205
+ id: string;
3206
+ label?: string | null;
3207
+ subLabel?: string | null;
3208
+ color?: string | null;
3209
+ preview?: IPreviewScalar | null;
3210
+ library: {
3211
+ id: string;
3212
+ label?: any | null;
3213
+ };
3214
+ };
3215
+ }> | null;
3216
+ } | null;
2643
3217
  linked_library?: {
2644
3218
  id: string;
2645
3219
  } | null;
2646
3220
  };
3221
+ export type StandardAttributeDetailsFragment = {
3222
+ id: string;
3223
+ type: AttributeType;
3224
+ embedded_fields?: Array<{
3225
+ id: string;
3226
+ format?: AttributeFormat | null;
3227
+ label?: any | null;
3228
+ } | null> | null;
3229
+ valuesList?: {
3230
+ enable: boolean;
3231
+ allowFreeEntry?: boolean | null;
3232
+ allowListUpdate?: boolean | null;
3233
+ values?: Array<string> | null;
3234
+ } | null;
3235
+ };
2647
3236
  export type LinkAttributeDetailsFragment = {
2648
3237
  label?: any | null;
3238
+ type: AttributeType;
2649
3239
  linked_library?: {
2650
3240
  id: string;
2651
3241
  label?: any | null;
2652
3242
  } | null;
3243
+ valuesList?: {
3244
+ allowFreeEntry?: boolean | null;
3245
+ enable: boolean;
3246
+ linkedValues?: Array<{
3247
+ id: string;
3248
+ whoAmI: {
3249
+ id: string;
3250
+ label?: string | null;
3251
+ library: {
3252
+ id: string;
3253
+ };
3254
+ };
3255
+ }> | null;
3256
+ } | null;
3257
+ };
3258
+ export type TreeAttributeDetailsFragment = {
3259
+ id: string;
3260
+ label?: any | null;
3261
+ linked_tree?: {
3262
+ id: string;
3263
+ label?: any | null;
3264
+ } | null;
2653
3265
  };
2654
3266
  export type AttributePropertiesFragment = {
2655
3267
  id: string;
@@ -3617,18 +4229,114 @@ export type SaveLibraryMutation = {
3617
4229
  label?: string | null;
3618
4230
  subLabel?: string | null;
3619
4231
  color?: string | null;
3620
- preview?: string | null;
3621
- treeColorPreview?: string | null;
3622
- } | null;
3623
- permissions?: {
3624
- admin_library: boolean;
3625
- access_library: boolean;
3626
- access_record: boolean;
3627
- create_record: boolean;
3628
- edit_record: boolean;
3629
- delete_record: boolean;
3630
- } | null;
3631
- icon?: {
4232
+ preview?: string | null;
4233
+ treeColorPreview?: string | null;
4234
+ } | null;
4235
+ permissions?: {
4236
+ admin_library: boolean;
4237
+ access_library: boolean;
4238
+ access_record: boolean;
4239
+ create_record: boolean;
4240
+ edit_record: boolean;
4241
+ delete_record: boolean;
4242
+ } | null;
4243
+ icon?: {
4244
+ id: string;
4245
+ whoAmI: {
4246
+ id: string;
4247
+ label?: string | null;
4248
+ subLabel?: string | null;
4249
+ color?: string | null;
4250
+ preview?: IPreviewScalar | null;
4251
+ library: {
4252
+ id: string;
4253
+ label?: any | null;
4254
+ };
4255
+ };
4256
+ } | null;
4257
+ previewsSettings?: Array<{
4258
+ label: any;
4259
+ description?: any | null;
4260
+ system: boolean;
4261
+ versions: {
4262
+ background: string;
4263
+ density: number;
4264
+ sizes: Array<{
4265
+ name: string;
4266
+ size: number;
4267
+ }>;
4268
+ };
4269
+ }> | null;
4270
+ };
4271
+ };
4272
+ export type IsAllowedQueryVariables = Exact<{
4273
+ type: PermissionTypes;
4274
+ actions: Array<PermissionsActions> | PermissionsActions;
4275
+ applyTo?: InputMaybe<Scalars['ID']>;
4276
+ target?: InputMaybe<PermissionTarget>;
4277
+ }>;
4278
+ export type IsAllowedQuery = {
4279
+ isAllowed?: Array<{
4280
+ name: PermissionsActions;
4281
+ allowed?: boolean | null;
4282
+ }> | null;
4283
+ };
4284
+ export type ActivateNewRecordMutationVariables = Exact<{
4285
+ libraryId: Scalars['ID'];
4286
+ recordId: Scalars['ID'];
4287
+ formId?: InputMaybe<Scalars['String']>;
4288
+ }>;
4289
+ export type ActivateNewRecordMutation = {
4290
+ activateNewRecord: {
4291
+ record?: {
4292
+ id: string;
4293
+ whoAmI: {
4294
+ id: string;
4295
+ label?: string | null;
4296
+ subLabel?: string | null;
4297
+ color?: string | null;
4298
+ preview?: IPreviewScalar | null;
4299
+ library: {
4300
+ id: string;
4301
+ label?: any | null;
4302
+ };
4303
+ };
4304
+ } | null;
4305
+ valuesErrors?: Array<{
4306
+ type: string;
4307
+ attribute: string;
4308
+ input?: string | null;
4309
+ message: string;
4310
+ }> | null;
4311
+ };
4312
+ };
4313
+ export type ActivateRecordsMutationVariables = Exact<{
4314
+ libraryId: Scalars['String'];
4315
+ recordsIds?: InputMaybe<Array<Scalars['String']> | Scalars['String']>;
4316
+ filters?: InputMaybe<Array<RecordFilterInput> | RecordFilterInput>;
4317
+ }>;
4318
+ export type ActivateRecordsMutation = {
4319
+ activateRecords: Array<{
4320
+ id: string;
4321
+ whoAmI: {
4322
+ id: string;
4323
+ label?: string | null;
4324
+ subLabel?: string | null;
4325
+ color?: string | null;
4326
+ preview?: IPreviewScalar | null;
4327
+ library: {
4328
+ id: string;
4329
+ label?: any | null;
4330
+ };
4331
+ };
4332
+ }>;
4333
+ };
4334
+ export type CreateEmptyRecordMutationVariables = Exact<{
4335
+ library: Scalars['ID'];
4336
+ }>;
4337
+ export type CreateEmptyRecordMutation = {
4338
+ createEmptyRecord: {
4339
+ record?: {
3632
4340
  id: string;
3633
4341
  whoAmI: {
3634
4342
  id: string;
@@ -3642,33 +4350,14 @@ export type SaveLibraryMutation = {
3642
4350
  };
3643
4351
  };
3644
4352
  } | null;
3645
- previewsSettings?: Array<{
3646
- label: any;
3647
- description?: any | null;
3648
- system: boolean;
3649
- versions: {
3650
- background: string;
3651
- density: number;
3652
- sizes: Array<{
3653
- name: string;
3654
- size: number;
3655
- }>;
3656
- };
4353
+ valuesErrors?: Array<{
4354
+ type: string;
4355
+ attribute: string;
4356
+ input?: string | null;
4357
+ message: string;
3657
4358
  }> | null;
3658
4359
  };
3659
4360
  };
3660
- export type IsAllowedQueryVariables = Exact<{
3661
- type: PermissionTypes;
3662
- actions: Array<PermissionsActions> | PermissionsActions;
3663
- applyTo?: InputMaybe<Scalars['ID']>;
3664
- target?: InputMaybe<PermissionTarget>;
3665
- }>;
3666
- export type IsAllowedQuery = {
3667
- isAllowed?: Array<{
3668
- name: PermissionsActions;
3669
- allowed?: boolean | null;
3670
- }> | null;
3671
- };
3672
4361
  export type CreateRecordMutationVariables = Exact<{
3673
4362
  library: Scalars['ID'];
3674
4363
  data?: InputMaybe<CreateRecordDataInput>;
@@ -4406,64 +5095,319 @@ export type RecordFormQuery = {
4406
5095
  label?: any | null;
4407
5096
  };
4408
5097
  };
4409
- };
5098
+ };
5099
+ }> | null;
5100
+ }> | null;
5101
+ } | null;
5102
+ permissions: {
5103
+ access_attribute: boolean;
5104
+ edit_value: boolean;
5105
+ };
5106
+ versions_conf?: {
5107
+ versionable: boolean;
5108
+ profile?: {
5109
+ id: string;
5110
+ trees: Array<{
5111
+ id: string;
5112
+ label?: any | null;
5113
+ }>;
5114
+ } | null;
5115
+ } | null;
5116
+ metadata_fields?: Array<{
5117
+ id: string;
5118
+ label?: any | null;
5119
+ description?: any | null;
5120
+ type: AttributeType;
5121
+ format?: AttributeFormat | null;
5122
+ system: boolean;
5123
+ readonly: boolean;
5124
+ multiple_values: boolean;
5125
+ permissions: {
5126
+ access_attribute: boolean;
5127
+ edit_value: boolean;
5128
+ };
5129
+ values_list?: {
5130
+ enable: boolean;
5131
+ allowFreeEntry?: boolean | null;
5132
+ allowListUpdate?: boolean | null;
5133
+ dateRangeValues?: Array<{
5134
+ from?: string | null;
5135
+ to?: string | null;
5136
+ }> | null;
5137
+ } | {
5138
+ enable: boolean;
5139
+ allowFreeEntry?: boolean | null;
5140
+ allowListUpdate?: boolean | null;
5141
+ values?: Array<string> | null;
5142
+ } | null;
5143
+ metadata_fields?: Array<{
5144
+ id: string;
5145
+ }> | null;
5146
+ }> | null;
5147
+ } | null;
5148
+ settings: Array<{
5149
+ key: string;
5150
+ value: any;
5151
+ }>;
5152
+ joinLibraryContext?: {
5153
+ mandatoryAttribute: {
5154
+ id: string;
5155
+ label?: any | null;
5156
+ description?: any | null;
5157
+ type: AttributeType;
5158
+ format?: AttributeFormat | null;
5159
+ system: boolean;
5160
+ readonly: boolean;
5161
+ required: boolean;
5162
+ multiple_values: boolean;
5163
+ compute: boolean;
5164
+ linked_library?: {
5165
+ id: string;
5166
+ label?: any | null;
5167
+ behavior: LibraryBehavior;
5168
+ permissions?: {
5169
+ create_record: boolean;
5170
+ } | null;
5171
+ } | null;
5172
+ linkValuesList?: {
5173
+ enable: boolean;
5174
+ allowFreeEntry?: boolean | null;
5175
+ allowListUpdate?: boolean | null;
5176
+ values?: Array<{
5177
+ id: string;
5178
+ whoAmI: {
5179
+ id: string;
5180
+ label?: string | null;
5181
+ subLabel?: string | null;
5182
+ color?: string | null;
5183
+ preview?: IPreviewScalar | null;
5184
+ library: {
5185
+ id: string;
5186
+ label?: any | null;
5187
+ };
5188
+ };
5189
+ }> | null;
5190
+ } | null;
5191
+ permissions: {
5192
+ access_attribute: boolean;
5193
+ edit_value: boolean;
5194
+ };
5195
+ versions_conf?: {
5196
+ versionable: boolean;
5197
+ profile?: {
5198
+ id: string;
5199
+ trees: Array<{
5200
+ id: string;
5201
+ label?: any | null;
5202
+ }>;
5203
+ } | null;
5204
+ } | null;
5205
+ metadata_fields?: Array<{
5206
+ id: string;
5207
+ label?: any | null;
5208
+ description?: any | null;
5209
+ type: AttributeType;
5210
+ format?: AttributeFormat | null;
5211
+ system: boolean;
5212
+ readonly: boolean;
5213
+ multiple_values: boolean;
5214
+ permissions: {
5215
+ access_attribute: boolean;
5216
+ edit_value: boolean;
5217
+ };
5218
+ values_list?: {
5219
+ enable: boolean;
5220
+ allowFreeEntry?: boolean | null;
5221
+ allowListUpdate?: boolean | null;
5222
+ dateRangeValues?: Array<{
5223
+ from?: string | null;
5224
+ to?: string | null;
5225
+ }> | null;
5226
+ } | {
5227
+ enable: boolean;
5228
+ allowFreeEntry?: boolean | null;
5229
+ allowListUpdate?: boolean | null;
5230
+ values?: Array<string> | null;
5231
+ } | null;
5232
+ metadata_fields?: Array<{
5233
+ id: string;
5234
+ }> | null;
5235
+ }> | null;
5236
+ } | {
5237
+ character_limit?: number | null;
5238
+ id: string;
5239
+ label?: any | null;
5240
+ description?: any | null;
5241
+ type: AttributeType;
5242
+ format?: AttributeFormat | null;
5243
+ system: boolean;
5244
+ readonly: boolean;
5245
+ required: boolean;
5246
+ multiple_values: boolean;
5247
+ compute: boolean;
5248
+ values_list?: {
5249
+ enable: boolean;
5250
+ allowFreeEntry?: boolean | null;
5251
+ allowListUpdate?: boolean | null;
5252
+ dateRangeValues?: Array<{
5253
+ from?: string | null;
5254
+ to?: string | null;
5255
+ }> | null;
5256
+ } | {
5257
+ enable: boolean;
5258
+ allowFreeEntry?: boolean | null;
5259
+ allowListUpdate?: boolean | null;
5260
+ values?: Array<string> | null;
5261
+ } | null;
5262
+ permissions: {
5263
+ access_attribute: boolean;
5264
+ edit_value: boolean;
5265
+ };
5266
+ versions_conf?: {
5267
+ versionable: boolean;
5268
+ profile?: {
5269
+ id: string;
5270
+ trees: Array<{
5271
+ id: string;
5272
+ label?: any | null;
5273
+ }>;
5274
+ } | null;
5275
+ } | null;
5276
+ metadata_fields?: Array<{
5277
+ id: string;
5278
+ label?: any | null;
5279
+ description?: any | null;
5280
+ type: AttributeType;
5281
+ format?: AttributeFormat | null;
5282
+ system: boolean;
5283
+ readonly: boolean;
5284
+ multiple_values: boolean;
5285
+ permissions: {
5286
+ access_attribute: boolean;
5287
+ edit_value: boolean;
5288
+ };
5289
+ values_list?: {
5290
+ enable: boolean;
5291
+ allowFreeEntry?: boolean | null;
5292
+ allowListUpdate?: boolean | null;
5293
+ dateRangeValues?: Array<{
5294
+ from?: string | null;
5295
+ to?: string | null;
5296
+ }> | null;
5297
+ } | {
5298
+ enable: boolean;
5299
+ allowFreeEntry?: boolean | null;
5300
+ allowListUpdate?: boolean | null;
5301
+ values?: Array<string> | null;
5302
+ } | null;
5303
+ metadata_fields?: Array<{
5304
+ id: string;
5305
+ }> | null;
5306
+ }> | null;
5307
+ } | {
5308
+ id: string;
5309
+ label?: any | null;
5310
+ description?: any | null;
5311
+ type: AttributeType;
5312
+ format?: AttributeFormat | null;
5313
+ system: boolean;
5314
+ readonly: boolean;
5315
+ required: boolean;
5316
+ multiple_values: boolean;
5317
+ compute: boolean;
5318
+ linked_tree?: {
5319
+ id: string;
5320
+ label?: any | null;
5321
+ } | null;
5322
+ treeValuesList?: {
5323
+ enable: boolean;
5324
+ allowFreeEntry?: boolean | null;
5325
+ allowListUpdate?: boolean | null;
5326
+ values?: Array<{
5327
+ id: string;
5328
+ record: {
5329
+ id: string;
5330
+ whoAmI: {
5331
+ id: string;
5332
+ label?: string | null;
5333
+ subLabel?: string | null;
5334
+ color?: string | null;
5335
+ preview?: IPreviewScalar | null;
5336
+ library: {
5337
+ id: string;
5338
+ label?: any | null;
5339
+ };
5340
+ };
5341
+ };
5342
+ ancestors?: Array<{
5343
+ record: {
5344
+ id: string;
5345
+ whoAmI: {
5346
+ id: string;
5347
+ label?: string | null;
5348
+ subLabel?: string | null;
5349
+ color?: string | null;
5350
+ preview?: IPreviewScalar | null;
5351
+ library: {
5352
+ id: string;
5353
+ label?: any | null;
5354
+ };
5355
+ };
5356
+ };
5357
+ }> | null;
4410
5358
  }> | null;
4411
- }> | null;
4412
- } | null;
4413
- permissions: {
4414
- access_attribute: boolean;
4415
- edit_value: boolean;
4416
- };
4417
- versions_conf?: {
4418
- versionable: boolean;
4419
- profile?: {
4420
- id: string;
4421
- trees: Array<{
4422
- id: string;
4423
- label?: any | null;
4424
- }>;
4425
5359
  } | null;
4426
- } | null;
4427
- metadata_fields?: Array<{
4428
- id: string;
4429
- label?: any | null;
4430
- description?: any | null;
4431
- type: AttributeType;
4432
- format?: AttributeFormat | null;
4433
- system: boolean;
4434
- readonly: boolean;
4435
- multiple_values: boolean;
4436
5360
  permissions: {
4437
5361
  access_attribute: boolean;
4438
5362
  edit_value: boolean;
4439
5363
  };
4440
- values_list?: {
4441
- enable: boolean;
4442
- allowFreeEntry?: boolean | null;
4443
- allowListUpdate?: boolean | null;
4444
- dateRangeValues?: Array<{
4445
- from?: string | null;
4446
- to?: string | null;
4447
- }> | null;
4448
- } | {
4449
- enable: boolean;
4450
- allowFreeEntry?: boolean | null;
4451
- allowListUpdate?: boolean | null;
4452
- values?: Array<string> | null;
5364
+ versions_conf?: {
5365
+ versionable: boolean;
5366
+ profile?: {
5367
+ id: string;
5368
+ trees: Array<{
5369
+ id: string;
5370
+ label?: any | null;
5371
+ }>;
5372
+ } | null;
4453
5373
  } | null;
4454
5374
  metadata_fields?: Array<{
4455
5375
  id: string;
5376
+ label?: any | null;
5377
+ description?: any | null;
5378
+ type: AttributeType;
5379
+ format?: AttributeFormat | null;
5380
+ system: boolean;
5381
+ readonly: boolean;
5382
+ multiple_values: boolean;
5383
+ permissions: {
5384
+ access_attribute: boolean;
5385
+ edit_value: boolean;
5386
+ };
5387
+ values_list?: {
5388
+ enable: boolean;
5389
+ allowFreeEntry?: boolean | null;
5390
+ allowListUpdate?: boolean | null;
5391
+ dateRangeValues?: Array<{
5392
+ from?: string | null;
5393
+ to?: string | null;
5394
+ }> | null;
5395
+ } | {
5396
+ enable: boolean;
5397
+ allowFreeEntry?: boolean | null;
5398
+ allowListUpdate?: boolean | null;
5399
+ values?: Array<string> | null;
5400
+ } | null;
5401
+ metadata_fields?: Array<{
5402
+ id: string;
5403
+ }> | null;
4456
5404
  }> | null;
4457
- }> | null;
5405
+ };
4458
5406
  } | null;
4459
- settings: Array<{
4460
- key: string;
4461
- value: any;
4462
- }>;
4463
5407
  }>;
4464
5408
  sidePanel?: {
4465
5409
  enable: boolean;
4466
- isOpenByDefault: boolean;
5410
+ isOpenByDefault?: boolean | null;
4467
5411
  } | null;
4468
5412
  } | null;
4469
5413
  };
@@ -4889,6 +5833,30 @@ export type RecordUpdateSubscription = {
4889
5833
  }>;
4890
5834
  };
4891
5835
  };
5836
+ export type GetRecordsFromLibraryQueryVariables = Exact<{
5837
+ libraryId: Scalars['ID'];
5838
+ pagination?: InputMaybe<RecordsPagination>;
5839
+ filters?: InputMaybe<Array<InputMaybe<RecordFilterInput>> | InputMaybe<RecordFilterInput>>;
5840
+ }>;
5841
+ export type GetRecordsFromLibraryQuery = {
5842
+ records: {
5843
+ totalCount?: number | null;
5844
+ list: Array<{
5845
+ id: string;
5846
+ whoAmI: {
5847
+ id: string;
5848
+ label?: string | null;
5849
+ subLabel?: string | null;
5850
+ color?: string | null;
5851
+ preview?: IPreviewScalar | null;
5852
+ library: {
5853
+ id: string;
5854
+ label?: any | null;
5855
+ };
5856
+ };
5857
+ }>;
5858
+ };
5859
+ };
4892
5860
  export type IndexRecordsMutationVariables = Exact<{
4893
5861
  libraryId: Scalars['String'];
4894
5862
  records?: InputMaybe<Array<Scalars['String']> | Scalars['String']>;
@@ -5006,6 +5974,7 @@ export type TreeNodeChildrenQueryVariables = Exact<{
5006
5974
  treeId: Scalars['ID'];
5007
5975
  node?: InputMaybe<Scalars['ID']>;
5008
5976
  pagination?: InputMaybe<Pagination>;
5977
+ childrenAsRecordValuePermissionFilter?: InputMaybe<ChildrenAsRecordValuePermissionFilterInput>;
5009
5978
  }>;
5010
5979
  export type TreeNodeChildrenQuery = {
5011
5980
  treeNodeChildren: {
@@ -5471,128 +6440,6 @@ export type DeleteValueMutation = {
5471
6440
  } | null> | null;
5472
6441
  }>;
5473
6442
  };
5474
- export type RunActionsListAndFormatOnValueQueryVariables = Exact<{
5475
- library: Scalars['ID'];
5476
- value?: InputMaybe<ValueBatchInput>;
5477
- version?: InputMaybe<Array<InputMaybe<ValueVersionInput>> | InputMaybe<ValueVersionInput>>;
5478
- }>;
5479
- export type RunActionsListAndFormatOnValueQuery = {
5480
- runActionsListAndFormatOnValue: Array<{
5481
- id_value?: string | null;
5482
- isInherited?: boolean | null;
5483
- isCalculated?: boolean | null;
5484
- modified_at?: number | null;
5485
- created_at?: number | null;
5486
- payload?: any | null;
5487
- raw_payload?: any | null;
5488
- value?: any | null;
5489
- raw_value?: any | null;
5490
- modified_by?: {
5491
- id: string;
5492
- whoAmI: {
5493
- id: string;
5494
- label?: string | null;
5495
- subLabel?: string | null;
5496
- color?: string | null;
5497
- preview?: IPreviewScalar | null;
5498
- library: {
5499
- id: string;
5500
- label?: any | null;
5501
- };
5502
- };
5503
- } | null;
5504
- created_by?: {
5505
- id: string;
5506
- whoAmI: {
5507
- id: string;
5508
- label?: string | null;
5509
- subLabel?: string | null;
5510
- color?: string | null;
5511
- preview?: IPreviewScalar | null;
5512
- library: {
5513
- id: string;
5514
- label?: any | null;
5515
- };
5516
- };
5517
- } | null;
5518
- version?: Array<{
5519
- treeId: string;
5520
- treeNode?: {
5521
- id: string;
5522
- record: {
5523
- id: string;
5524
- whoAmI: {
5525
- id: string;
5526
- label?: string | null;
5527
- library: {
5528
- id: string;
5529
- };
5530
- };
5531
- };
5532
- } | null;
5533
- } | null> | null;
5534
- attribute: {
5535
- id: string;
5536
- format?: AttributeFormat | null;
5537
- type: AttributeType;
5538
- system: boolean;
5539
- };
5540
- metadata?: Array<{
5541
- name: string;
5542
- value?: {
5543
- id_value?: string | null;
5544
- modified_at?: number | null;
5545
- created_at?: number | null;
5546
- payload?: any | null;
5547
- raw_payload?: any | null;
5548
- modified_by?: {
5549
- id: string;
5550
- whoAmI: {
5551
- id: string;
5552
- label?: string | null;
5553
- subLabel?: string | null;
5554
- color?: string | null;
5555
- preview?: IPreviewScalar | null;
5556
- library: {
5557
- id: string;
5558
- label?: any | null;
5559
- };
5560
- };
5561
- } | null;
5562
- created_by?: {
5563
- id: string;
5564
- whoAmI: {
5565
- id: string;
5566
- label?: string | null;
5567
- subLabel?: string | null;
5568
- color?: string | null;
5569
- preview?: IPreviewScalar | null;
5570
- library: {
5571
- id: string;
5572
- label?: any | null;
5573
- };
5574
- };
5575
- } | null;
5576
- version?: Array<{
5577
- treeId: string;
5578
- treeNode?: {
5579
- id: string;
5580
- record: {
5581
- id: string;
5582
- whoAmI: {
5583
- id: string;
5584
- label?: string | null;
5585
- library: {
5586
- id: string;
5587
- };
5588
- };
5589
- };
5590
- } | null;
5591
- } | null> | null;
5592
- } | null;
5593
- } | null> | null;
5594
- }>;
5595
- };
5596
6443
  export type SaveValueBatchMutationVariables = Exact<{
5597
6444
  library: Scalars['ID'];
5598
6445
  recordId: Scalars['ID'];
@@ -6206,6 +7053,25 @@ export type GetAttributesByLibWithPermissionsQuery = {
6206
7053
  multiple_values: boolean;
6207
7054
  system: boolean;
6208
7055
  readonly: boolean;
7056
+ valuesList?: {
7057
+ enable: boolean;
7058
+ allowFreeEntry?: boolean | null;
7059
+ allowListUpdate?: boolean | null;
7060
+ linkedValues?: Array<{
7061
+ id: string;
7062
+ whoAmI: {
7063
+ id: string;
7064
+ label?: string | null;
7065
+ subLabel?: string | null;
7066
+ color?: string | null;
7067
+ preview?: IPreviewScalar | null;
7068
+ library: {
7069
+ id: string;
7070
+ label?: any | null;
7071
+ };
7072
+ };
7073
+ }> | null;
7074
+ } | null;
6209
7075
  linked_library?: {
6210
7076
  id: string;
6211
7077
  } | null;
@@ -6225,6 +7091,20 @@ export type GetAttributesByLibWithPermissionsQuery = {
6225
7091
  format?: AttributeFormat | null;
6226
7092
  label?: any | null;
6227
7093
  } | null> | null;
7094
+ valuesList?: {
7095
+ enable: boolean;
7096
+ allowFreeEntry?: boolean | null;
7097
+ allowListUpdate?: boolean | null;
7098
+ dateRangeValues?: Array<{
7099
+ from?: string | null;
7100
+ to?: string | null;
7101
+ }> | null;
7102
+ } | {
7103
+ enable: boolean;
7104
+ allowFreeEntry?: boolean | null;
7105
+ allowListUpdate?: boolean | null;
7106
+ values?: Array<string> | null;
7107
+ } | null;
6228
7108
  permissions: {
6229
7109
  access_attribute: boolean;
6230
7110
  };
@@ -6244,27 +7124,60 @@ export type GetAttributesByLibWithPermissionsQuery = {
6244
7124
  id: string;
6245
7125
  label?: any | null;
6246
7126
  };
6247
- }>;
7127
+ }>;
7128
+ } | null;
7129
+ permissions: {
7130
+ access_attribute: boolean;
7131
+ };
7132
+ }>;
7133
+ } | null;
7134
+ };
7135
+ export type ExplorerAttributesQueryVariables = Exact<{
7136
+ ids?: InputMaybe<Array<Scalars['ID']> | Scalars['ID']>;
7137
+ }>;
7138
+ export type ExplorerAttributesQuery = {
7139
+ attributes?: {
7140
+ list: Array<{
7141
+ id: string;
7142
+ type: AttributeType;
7143
+ format?: AttributeFormat | null;
7144
+ label?: any | null;
7145
+ linked_library?: {
7146
+ id: string;
7147
+ label?: any | null;
7148
+ } | null;
7149
+ valuesList?: {
7150
+ allowFreeEntry?: boolean | null;
7151
+ enable: boolean;
7152
+ linkedValues?: Array<{
7153
+ id: string;
7154
+ whoAmI: {
7155
+ id: string;
7156
+ label?: string | null;
7157
+ library: {
7158
+ id: string;
7159
+ };
7160
+ };
7161
+ }> | null;
6248
7162
  } | null;
6249
7163
  permissions: {
6250
7164
  access_attribute: boolean;
6251
7165
  };
6252
- }>;
6253
- } | null;
6254
- };
6255
- export type ExplorerAttributesQueryVariables = Exact<{
6256
- ids?: InputMaybe<Array<Scalars['ID']> | Scalars['ID']>;
6257
- }>;
6258
- export type ExplorerAttributesQuery = {
6259
- attributes?: {
6260
- list: Array<{
7166
+ } | {
6261
7167
  id: string;
6262
7168
  type: AttributeType;
6263
7169
  format?: AttributeFormat | null;
6264
7170
  label?: any | null;
6265
- linked_library?: {
7171
+ embedded_fields?: Array<{
6266
7172
  id: string;
7173
+ format?: AttributeFormat | null;
6267
7174
  label?: any | null;
7175
+ } | null> | null;
7176
+ valuesList?: {
7177
+ enable: boolean;
7178
+ allowFreeEntry?: boolean | null;
7179
+ allowListUpdate?: boolean | null;
7180
+ values?: Array<string> | null;
6268
7181
  } | null;
6269
7182
  permissions: {
6270
7183
  access_attribute: boolean;
@@ -6274,6 +7187,10 @@ export type ExplorerAttributesQuery = {
6274
7187
  type: AttributeType;
6275
7188
  format?: AttributeFormat | null;
6276
7189
  label?: any | null;
7190
+ linked_tree?: {
7191
+ id: string;
7192
+ label?: any | null;
7193
+ } | null;
6277
7194
  permissions: {
6278
7195
  access_attribute: boolean;
6279
7196
  };
@@ -6287,13 +7204,27 @@ export type ExplorerLinkAttributeQuery = {
6287
7204
  attributes?: {
6288
7205
  list: Array<{
6289
7206
  label?: any | null;
7207
+ type: AttributeType;
6290
7208
  id: string;
6291
7209
  multiple_values: boolean;
6292
- multi_link_display_option?: MultiLinkDisplayOption | null;
6293
7210
  linked_library?: {
6294
7211
  id: string;
6295
7212
  label?: any | null;
6296
7213
  } | null;
7214
+ valuesList?: {
7215
+ allowFreeEntry?: boolean | null;
7216
+ enable: boolean;
7217
+ linkedValues?: Array<{
7218
+ id: string;
7219
+ whoAmI: {
7220
+ id: string;
7221
+ label?: string | null;
7222
+ library: {
7223
+ id: string;
7224
+ };
7225
+ };
7226
+ }> | null;
7227
+ } | null;
6297
7228
  permissions: {
6298
7229
  access_attribute: boolean;
6299
7230
  edit_value: boolean;
@@ -6301,7 +7232,18 @@ export type ExplorerLinkAttributeQuery = {
6301
7232
  } | {
6302
7233
  id: string;
6303
7234
  multiple_values: boolean;
6304
- multi_link_display_option?: MultiLinkDisplayOption | null;
7235
+ permissions: {
7236
+ access_attribute: boolean;
7237
+ edit_value: boolean;
7238
+ };
7239
+ } | {
7240
+ label?: any | null;
7241
+ id: string;
7242
+ multiple_values: boolean;
7243
+ linked_tree?: {
7244
+ id: string;
7245
+ label?: any | null;
7246
+ } | null;
6305
7247
  permissions: {
6306
7248
  access_attribute: boolean;
6307
7249
  edit_value: boolean;
@@ -6322,6 +7264,7 @@ export type ExplorerLibraryDataQuery = {
6322
7264
  totalCount?: number | null;
6323
7265
  list: Array<{
6324
7266
  id: string;
7267
+ active: boolean;
6325
7268
  whoAmI: {
6326
7269
  id: string;
6327
7270
  label?: string | null;
@@ -6334,6 +7277,7 @@ export type ExplorerLibraryDataQuery = {
6334
7277
  };
6335
7278
  };
6336
7279
  permissions: {
7280
+ create_record: boolean;
6337
7281
  delete_record: boolean;
6338
7282
  };
6339
7283
  properties: Array<{
@@ -6639,6 +7583,7 @@ export declare const ValuesVersionDetailsFragmentDoc: Apollo.DocumentNode;
6639
7583
  export declare const ValueDetailsFragmentDoc: Apollo.DocumentNode;
6640
7584
  export declare const StandardValuesListFragmentFragmentDoc: Apollo.DocumentNode;
6641
7585
  export declare const RecordFormAttributeFragmentDoc: Apollo.DocumentNode;
7586
+ export declare const JoinLibraryContextFragmentDoc: Apollo.DocumentNode;
6642
7587
  export declare const RecordFormElementFragmentDoc: Apollo.DocumentNode;
6643
7588
  export declare const TreeLightFragmentDoc: Apollo.DocumentNode;
6644
7589
  export declare const TreeDetailsFragmentDoc: Apollo.DocumentNode;
@@ -6648,6 +7593,8 @@ export declare const ViewDetailsFragmentDoc: Apollo.DocumentNode;
6648
7593
  export declare const AttributesByLibLinkAttributeWithPermissionsFragmentDoc: Apollo.DocumentNode;
6649
7594
  export declare const AttributesByLibAttributeWithPermissionsFragmentDoc: Apollo.DocumentNode;
6650
7595
  export declare const LinkAttributeDetailsFragmentDoc: Apollo.DocumentNode;
7596
+ export declare const TreeAttributeDetailsFragmentDoc: Apollo.DocumentNode;
7597
+ export declare const StandardAttributeDetailsFragmentDoc: Apollo.DocumentNode;
6651
7598
  export declare const AttributePropertiesFragmentDoc: Apollo.DocumentNode;
6652
7599
  export declare const PropertyValueFragmentDoc: Apollo.DocumentNode;
6653
7600
  export declare const LinkPropertyFragmentDoc: Apollo.DocumentNode;
@@ -6679,8 +7626,13 @@ export declare function useCheckApplicationExistenceLazyQuery(baseOptions?: Apol
6679
7626
  id?: InputMaybe<Scalars["ID"]>;
6680
7627
  endpoint?: InputMaybe<Scalars["String"]>;
6681
7628
  }>>;
7629
+ export declare function useCheckApplicationExistenceSuspenseQuery(baseOptions?: Apollo.SuspenseQueryHookOptions<CheckApplicationExistenceQuery, CheckApplicationExistenceQueryVariables>): Apollo.UseSuspenseQueryResult<CheckApplicationExistenceQuery, Exact<{
7630
+ id?: InputMaybe<Scalars["ID"]>;
7631
+ endpoint?: InputMaybe<Scalars["String"]>;
7632
+ }>>;
6682
7633
  export type CheckApplicationExistenceQueryHookResult = ReturnType<typeof useCheckApplicationExistenceQuery>;
6683
7634
  export type CheckApplicationExistenceLazyQueryHookResult = ReturnType<typeof useCheckApplicationExistenceLazyQuery>;
7635
+ export type CheckApplicationExistenceSuspenseQueryHookResult = ReturnType<typeof useCheckApplicationExistenceSuspenseQuery>;
6684
7636
  export type CheckApplicationExistenceQueryResult = Apollo.QueryResult<CheckApplicationExistenceQuery, CheckApplicationExistenceQueryVariables>;
6685
7637
  export declare const GetApplicationByIdDocument: Apollo.DocumentNode;
6686
7638
  /**
@@ -6705,8 +7657,12 @@ export declare function useGetApplicationByIdQuery(baseOptions: Apollo.QueryHook
6705
7657
  export declare function useGetApplicationByIdLazyQuery(baseOptions?: Apollo.LazyQueryHookOptions<GetApplicationByIdQuery, GetApplicationByIdQueryVariables>): Apollo.LazyQueryResultTuple<GetApplicationByIdQuery, Exact<{
6706
7658
  id: Scalars["ID"];
6707
7659
  }>>;
7660
+ export declare function useGetApplicationByIdSuspenseQuery(baseOptions?: Apollo.SuspenseQueryHookOptions<GetApplicationByIdQuery, GetApplicationByIdQueryVariables>): Apollo.UseSuspenseQueryResult<GetApplicationByIdQuery, Exact<{
7661
+ id: Scalars["ID"];
7662
+ }>>;
6708
7663
  export type GetApplicationByIdQueryHookResult = ReturnType<typeof useGetApplicationByIdQuery>;
6709
7664
  export type GetApplicationByIdLazyQueryHookResult = ReturnType<typeof useGetApplicationByIdLazyQuery>;
7665
+ export type GetApplicationByIdSuspenseQueryHookResult = ReturnType<typeof useGetApplicationByIdSuspenseQuery>;
6710
7666
  export type GetApplicationByIdQueryResult = Apollo.QueryResult<GetApplicationByIdQuery, GetApplicationByIdQueryVariables>;
6711
7667
  export declare const GetApplicationModulesDocument: Apollo.DocumentNode;
6712
7668
  /**
@@ -6730,8 +7686,12 @@ export declare function useGetApplicationModulesQuery(baseOptions?: Apollo.Query
6730
7686
  export declare function useGetApplicationModulesLazyQuery(baseOptions?: Apollo.LazyQueryHookOptions<GetApplicationModulesQuery, GetApplicationModulesQueryVariables>): Apollo.LazyQueryResultTuple<GetApplicationModulesQuery, Exact<{
6731
7687
  [key: string]: never;
6732
7688
  }>>;
7689
+ export declare function useGetApplicationModulesSuspenseQuery(baseOptions?: Apollo.SuspenseQueryHookOptions<GetApplicationModulesQuery, GetApplicationModulesQueryVariables>): Apollo.UseSuspenseQueryResult<GetApplicationModulesQuery, Exact<{
7690
+ [key: string]: never;
7691
+ }>>;
6733
7692
  export type GetApplicationModulesQueryHookResult = ReturnType<typeof useGetApplicationModulesQuery>;
6734
7693
  export type GetApplicationModulesLazyQueryHookResult = ReturnType<typeof useGetApplicationModulesLazyQuery>;
7694
+ export type GetApplicationModulesSuspenseQueryHookResult = ReturnType<typeof useGetApplicationModulesSuspenseQuery>;
6735
7695
  export type GetApplicationModulesQueryResult = Apollo.QueryResult<GetApplicationModulesQuery, GetApplicationModulesQueryVariables>;
6736
7696
  export declare const SaveApplicationDocument: Apollo.DocumentNode;
6737
7697
  export type SaveApplicationMutationFn = Apollo.MutationFunction<SaveApplicationMutation, SaveApplicationMutationVariables>;
@@ -6781,8 +7741,12 @@ export declare function useCheckAttributeExistenceQuery(baseOptions: Apollo.Quer
6781
7741
  export declare function useCheckAttributeExistenceLazyQuery(baseOptions?: Apollo.LazyQueryHookOptions<CheckAttributeExistenceQuery, CheckAttributeExistenceQueryVariables>): Apollo.LazyQueryResultTuple<CheckAttributeExistenceQuery, Exact<{
6782
7742
  id: Scalars["ID"];
6783
7743
  }>>;
7744
+ export declare function useCheckAttributeExistenceSuspenseQuery(baseOptions?: Apollo.SuspenseQueryHookOptions<CheckAttributeExistenceQuery, CheckAttributeExistenceQueryVariables>): Apollo.UseSuspenseQueryResult<CheckAttributeExistenceQuery, Exact<{
7745
+ id: Scalars["ID"];
7746
+ }>>;
6784
7747
  export type CheckAttributeExistenceQueryHookResult = ReturnType<typeof useCheckAttributeExistenceQuery>;
6785
7748
  export type CheckAttributeExistenceLazyQueryHookResult = ReturnType<typeof useCheckAttributeExistenceLazyQuery>;
7749
+ export type CheckAttributeExistenceSuspenseQueryHookResult = ReturnType<typeof useCheckAttributeExistenceSuspenseQuery>;
6786
7750
  export type CheckAttributeExistenceQueryResult = Apollo.QueryResult<CheckAttributeExistenceQuery, CheckAttributeExistenceQueryVariables>;
6787
7751
  export declare const DeleteAttributeDocument: Apollo.DocumentNode;
6788
7752
  export type DeleteAttributeMutationFn = Apollo.MutationFunction<DeleteAttributeMutation, DeleteAttributeMutationVariables>;
@@ -6832,8 +7796,12 @@ export declare function useGetAttributeByIdQuery(baseOptions?: Apollo.QueryHookO
6832
7796
  export declare function useGetAttributeByIdLazyQuery(baseOptions?: Apollo.LazyQueryHookOptions<GetAttributeByIdQuery, GetAttributeByIdQueryVariables>): Apollo.LazyQueryResultTuple<GetAttributeByIdQuery, Exact<{
6833
7797
  id?: InputMaybe<Scalars["ID"]>;
6834
7798
  }>>;
7799
+ export declare function useGetAttributeByIdSuspenseQuery(baseOptions?: Apollo.SuspenseQueryHookOptions<GetAttributeByIdQuery, GetAttributeByIdQueryVariables>): Apollo.UseSuspenseQueryResult<GetAttributeByIdQuery, Exact<{
7800
+ id?: InputMaybe<Scalars["ID"]>;
7801
+ }>>;
6835
7802
  export type GetAttributeByIdQueryHookResult = ReturnType<typeof useGetAttributeByIdQuery>;
6836
7803
  export type GetAttributeByIdLazyQueryHookResult = ReturnType<typeof useGetAttributeByIdLazyQuery>;
7804
+ export type GetAttributeByIdSuspenseQueryHookResult = ReturnType<typeof useGetAttributeByIdSuspenseQuery>;
6837
7805
  export type GetAttributeByIdQueryResult = Apollo.QueryResult<GetAttributeByIdQuery, GetAttributeByIdQueryVariables>;
6838
7806
  export declare const GetAttributesByLibDocument: Apollo.DocumentNode;
6839
7807
  /**
@@ -6858,8 +7826,12 @@ export declare function useGetAttributesByLibQuery(baseOptions: Apollo.QueryHook
6858
7826
  export declare function useGetAttributesByLibLazyQuery(baseOptions?: Apollo.LazyQueryHookOptions<GetAttributesByLibQuery, GetAttributesByLibQueryVariables>): Apollo.LazyQueryResultTuple<GetAttributesByLibQuery, Exact<{
6859
7827
  library: Scalars["String"];
6860
7828
  }>>;
7829
+ export declare function useGetAttributesByLibSuspenseQuery(baseOptions?: Apollo.SuspenseQueryHookOptions<GetAttributesByLibQuery, GetAttributesByLibQueryVariables>): Apollo.UseSuspenseQueryResult<GetAttributesByLibQuery, Exact<{
7830
+ library: Scalars["String"];
7831
+ }>>;
6861
7832
  export type GetAttributesByLibQueryHookResult = ReturnType<typeof useGetAttributesByLibQuery>;
6862
7833
  export type GetAttributesByLibLazyQueryHookResult = ReturnType<typeof useGetAttributesByLibLazyQuery>;
7834
+ export type GetAttributesByLibSuspenseQueryHookResult = ReturnType<typeof useGetAttributesByLibSuspenseQuery>;
6863
7835
  export type GetAttributesByLibQueryResult = Apollo.QueryResult<GetAttributesByLibQuery, GetAttributesByLibQueryVariables>;
6864
7836
  export declare const GetAttributesDocument: Apollo.DocumentNode;
6865
7837
  /**
@@ -6890,8 +7862,14 @@ export declare function useGetAttributesLazyQuery(baseOptions?: Apollo.LazyQuery
6890
7862
  sort?: InputMaybe<SortAttributes>;
6891
7863
  filters?: InputMaybe<AttributesFiltersInput>;
6892
7864
  }>>;
7865
+ export declare function useGetAttributesSuspenseQuery(baseOptions?: Apollo.SuspenseQueryHookOptions<GetAttributesQuery, GetAttributesQueryVariables>): Apollo.UseSuspenseQueryResult<GetAttributesQuery, Exact<{
7866
+ pagination?: InputMaybe<Pagination>;
7867
+ sort?: InputMaybe<SortAttributes>;
7868
+ filters?: InputMaybe<AttributesFiltersInput>;
7869
+ }>>;
6893
7870
  export type GetAttributesQueryHookResult = ReturnType<typeof useGetAttributesQuery>;
6894
7871
  export type GetAttributesLazyQueryHookResult = ReturnType<typeof useGetAttributesLazyQuery>;
7872
+ export type GetAttributesSuspenseQueryHookResult = ReturnType<typeof useGetAttributesSuspenseQuery>;
6895
7873
  export type GetAttributesQueryResult = Apollo.QueryResult<GetAttributesQuery, GetAttributesQueryVariables>;
6896
7874
  export declare const GetVersionProfilesDocument: Apollo.DocumentNode;
6897
7875
  /**
@@ -6919,8 +7897,13 @@ export declare function useGetVersionProfilesLazyQuery(baseOptions?: Apollo.Lazy
6919
7897
  filters?: InputMaybe<VersionProfilesFiltersInput>;
6920
7898
  sort?: InputMaybe<SortVersionProfilesInput>;
6921
7899
  }>>;
7900
+ export declare function useGetVersionProfilesSuspenseQuery(baseOptions?: Apollo.SuspenseQueryHookOptions<GetVersionProfilesQuery, GetVersionProfilesQueryVariables>): Apollo.UseSuspenseQueryResult<GetVersionProfilesQuery, Exact<{
7901
+ filters?: InputMaybe<VersionProfilesFiltersInput>;
7902
+ sort?: InputMaybe<SortVersionProfilesInput>;
7903
+ }>>;
6922
7904
  export type GetVersionProfilesQueryHookResult = ReturnType<typeof useGetVersionProfilesQuery>;
6923
7905
  export type GetVersionProfilesLazyQueryHookResult = ReturnType<typeof useGetVersionProfilesLazyQuery>;
7906
+ export type GetVersionProfilesSuspenseQueryHookResult = ReturnType<typeof useGetVersionProfilesSuspenseQuery>;
6924
7907
  export type GetVersionProfilesQueryResult = Apollo.QueryResult<GetVersionProfilesQuery, GetVersionProfilesQueryVariables>;
6925
7908
  export declare const GetVersionableAttributesByLibraryDocument: Apollo.DocumentNode;
6926
7909
  /**
@@ -6945,8 +7928,12 @@ export declare function useGetVersionableAttributesByLibraryQuery(baseOptions: A
6945
7928
  export declare function useGetVersionableAttributesByLibraryLazyQuery(baseOptions?: Apollo.LazyQueryHookOptions<GetVersionableAttributesByLibraryQuery, GetVersionableAttributesByLibraryQueryVariables>): Apollo.LazyQueryResultTuple<GetVersionableAttributesByLibraryQuery, Exact<{
6946
7929
  libraryId: Scalars["String"];
6947
7930
  }>>;
7931
+ export declare function useGetVersionableAttributesByLibrarySuspenseQuery(baseOptions?: Apollo.SuspenseQueryHookOptions<GetVersionableAttributesByLibraryQuery, GetVersionableAttributesByLibraryQueryVariables>): Apollo.UseSuspenseQueryResult<GetVersionableAttributesByLibraryQuery, Exact<{
7932
+ libraryId: Scalars["String"];
7933
+ }>>;
6948
7934
  export type GetVersionableAttributesByLibraryQueryHookResult = ReturnType<typeof useGetVersionableAttributesByLibraryQuery>;
6949
7935
  export type GetVersionableAttributesByLibraryLazyQueryHookResult = ReturnType<typeof useGetVersionableAttributesByLibraryLazyQuery>;
7936
+ export type GetVersionableAttributesByLibrarySuspenseQueryHookResult = ReturnType<typeof useGetVersionableAttributesByLibrarySuspenseQuery>;
6950
7937
  export type GetVersionableAttributesByLibraryQueryResult = Apollo.QueryResult<GetVersionableAttributesByLibraryQuery, GetVersionableAttributesByLibraryQueryVariables>;
6951
7938
  export declare const SaveAttributeDocument: Apollo.DocumentNode;
6952
7939
  export type SaveAttributeMutationFn = Apollo.MutationFunction<SaveAttributeMutation, SaveAttributeMutationVariables>;
@@ -7002,8 +7989,14 @@ export declare function useExportLazyQuery(baseOptions?: Apollo.LazyQueryHookOpt
7002
7989
  attributes?: InputMaybe<Array<Scalars["ID"]> | Scalars["ID"]>;
7003
7990
  filters?: InputMaybe<Array<RecordFilterInput> | RecordFilterInput>;
7004
7991
  }>>;
7992
+ export declare function useExportSuspenseQuery(baseOptions?: Apollo.SuspenseQueryHookOptions<ExportQuery, ExportQueryVariables>): Apollo.UseSuspenseQueryResult<ExportQuery, Exact<{
7993
+ library: Scalars["ID"];
7994
+ attributes?: InputMaybe<Array<Scalars["ID"]> | Scalars["ID"]>;
7995
+ filters?: InputMaybe<Array<RecordFilterInput> | RecordFilterInput>;
7996
+ }>>;
7005
7997
  export type ExportQueryHookResult = ReturnType<typeof useExportQuery>;
7006
7998
  export type ExportLazyQueryHookResult = ReturnType<typeof useExportLazyQuery>;
7999
+ export type ExportSuspenseQueryHookResult = ReturnType<typeof useExportSuspenseQuery>;
7007
8000
  export type ExportQueryResult = Apollo.QueryResult<ExportQuery, ExportQueryVariables>;
7008
8001
  export declare const CreateDirectoryDocument: Apollo.DocumentNode;
7009
8002
  export type CreateDirectoryMutationFn = Apollo.MutationFunction<CreateDirectoryMutation, CreateDirectoryMutationVariables>;
@@ -7093,8 +8086,13 @@ export declare function useGetDirectoryDataLazyQuery(baseOptions?: Apollo.LazyQu
7093
8086
  library: Scalars["ID"];
7094
8087
  directoryId: Scalars["String"];
7095
8088
  }>>;
8089
+ export declare function useGetDirectoryDataSuspenseQuery(baseOptions?: Apollo.SuspenseQueryHookOptions<GetDirectoryDataQuery, GetDirectoryDataQueryVariables>): Apollo.UseSuspenseQueryResult<GetDirectoryDataQuery, Exact<{
8090
+ library: Scalars["ID"];
8091
+ directoryId: Scalars["String"];
8092
+ }>>;
7096
8093
  export type GetDirectoryDataQueryHookResult = ReturnType<typeof useGetDirectoryDataQuery>;
7097
8094
  export type GetDirectoryDataLazyQueryHookResult = ReturnType<typeof useGetDirectoryDataLazyQuery>;
8095
+ export type GetDirectoryDataSuspenseQueryHookResult = ReturnType<typeof useGetDirectoryDataSuspenseQuery>;
7098
8096
  export type GetDirectoryDataQueryResult = Apollo.QueryResult<GetDirectoryDataQuery, GetDirectoryDataQueryVariables>;
7099
8097
  export declare const UploadUpdateDocument: Apollo.DocumentNode;
7100
8098
  /**
@@ -7199,8 +8197,12 @@ export declare function useCheckLibraryExistenceQuery(baseOptions?: Apollo.Query
7199
8197
  export declare function useCheckLibraryExistenceLazyQuery(baseOptions?: Apollo.LazyQueryHookOptions<CheckLibraryExistenceQuery, CheckLibraryExistenceQueryVariables>): Apollo.LazyQueryResultTuple<CheckLibraryExistenceQuery, Exact<{
7200
8198
  id?: InputMaybe<Array<Scalars["ID"]> | Scalars["ID"]>;
7201
8199
  }>>;
8200
+ export declare function useCheckLibraryExistenceSuspenseQuery(baseOptions?: Apollo.SuspenseQueryHookOptions<CheckLibraryExistenceQuery, CheckLibraryExistenceQueryVariables>): Apollo.UseSuspenseQueryResult<CheckLibraryExistenceQuery, Exact<{
8201
+ id?: InputMaybe<Array<Scalars["ID"]> | Scalars["ID"]>;
8202
+ }>>;
7202
8203
  export type CheckLibraryExistenceQueryHookResult = ReturnType<typeof useCheckLibraryExistenceQuery>;
7203
8204
  export type CheckLibraryExistenceLazyQueryHookResult = ReturnType<typeof useCheckLibraryExistenceLazyQuery>;
8205
+ export type CheckLibraryExistenceSuspenseQueryHookResult = ReturnType<typeof useCheckLibraryExistenceSuspenseQuery>;
7204
8206
  export type CheckLibraryExistenceQueryResult = Apollo.QueryResult<CheckLibraryExistenceQuery, CheckLibraryExistenceQueryVariables>;
7205
8207
  export declare const DeleteLibraryDocument: Apollo.DocumentNode;
7206
8208
  export type DeleteLibraryMutationFn = Apollo.MutationFunction<DeleteLibraryMutation, DeleteLibraryMutationVariables>;
@@ -7249,8 +8251,12 @@ export declare function useGetLibrariesQuery(baseOptions?: Apollo.QueryHookOptio
7249
8251
  export declare function useGetLibrariesLazyQuery(baseOptions?: Apollo.LazyQueryHookOptions<GetLibrariesQuery, GetLibrariesQueryVariables>): Apollo.LazyQueryResultTuple<GetLibrariesQuery, Exact<{
7250
8252
  [key: string]: never;
7251
8253
  }>>;
8254
+ export declare function useGetLibrariesSuspenseQuery(baseOptions?: Apollo.SuspenseQueryHookOptions<GetLibrariesQuery, GetLibrariesQueryVariables>): Apollo.UseSuspenseQueryResult<GetLibrariesQuery, Exact<{
8255
+ [key: string]: never;
8256
+ }>>;
7252
8257
  export type GetLibrariesQueryHookResult = ReturnType<typeof useGetLibrariesQuery>;
7253
8258
  export type GetLibrariesLazyQueryHookResult = ReturnType<typeof useGetLibrariesLazyQuery>;
8259
+ export type GetLibrariesSuspenseQueryHookResult = ReturnType<typeof useGetLibrariesSuspenseQuery>;
7254
8260
  export type GetLibrariesQueryResult = Apollo.QueryResult<GetLibrariesQuery, GetLibrariesQueryVariables>;
7255
8261
  export declare const GetLibraryByIdDocument: Apollo.DocumentNode;
7256
8262
  /**
@@ -7275,8 +8281,12 @@ export declare function useGetLibraryByIdQuery(baseOptions?: Apollo.QueryHookOpt
7275
8281
  export declare function useGetLibraryByIdLazyQuery(baseOptions?: Apollo.LazyQueryHookOptions<GetLibraryByIdQuery, GetLibraryByIdQueryVariables>): Apollo.LazyQueryResultTuple<GetLibraryByIdQuery, Exact<{
7276
8282
  id?: InputMaybe<Array<Scalars["ID"]> | Scalars["ID"]>;
7277
8283
  }>>;
8284
+ export declare function useGetLibraryByIdSuspenseQuery(baseOptions?: Apollo.SuspenseQueryHookOptions<GetLibraryByIdQuery, GetLibraryByIdQueryVariables>): Apollo.UseSuspenseQueryResult<GetLibraryByIdQuery, Exact<{
8285
+ id?: InputMaybe<Array<Scalars["ID"]> | Scalars["ID"]>;
8286
+ }>>;
7278
8287
  export type GetLibraryByIdQueryHookResult = ReturnType<typeof useGetLibraryByIdQuery>;
7279
8288
  export type GetLibraryByIdLazyQueryHookResult = ReturnType<typeof useGetLibraryByIdLazyQuery>;
8289
+ export type GetLibraryByIdSuspenseQueryHookResult = ReturnType<typeof useGetLibraryByIdSuspenseQuery>;
7280
8290
  export type GetLibraryByIdQueryResult = Apollo.QueryResult<GetLibraryByIdQuery, GetLibraryByIdQueryVariables>;
7281
8291
  export declare const GetLibraryPermissionsDocument: Apollo.DocumentNode;
7282
8292
  /**
@@ -7301,8 +8311,12 @@ export declare function useGetLibraryPermissionsQuery(baseOptions?: Apollo.Query
7301
8311
  export declare function useGetLibraryPermissionsLazyQuery(baseOptions?: Apollo.LazyQueryHookOptions<GetLibraryPermissionsQuery, GetLibraryPermissionsQueryVariables>): Apollo.LazyQueryResultTuple<GetLibraryPermissionsQuery, Exact<{
7302
8312
  libraryId?: InputMaybe<Array<Scalars["ID"]> | Scalars["ID"]>;
7303
8313
  }>>;
8314
+ export declare function useGetLibraryPermissionsSuspenseQuery(baseOptions?: Apollo.SuspenseQueryHookOptions<GetLibraryPermissionsQuery, GetLibraryPermissionsQueryVariables>): Apollo.UseSuspenseQueryResult<GetLibraryPermissionsQuery, Exact<{
8315
+ libraryId?: InputMaybe<Array<Scalars["ID"]> | Scalars["ID"]>;
8316
+ }>>;
7304
8317
  export type GetLibraryPermissionsQueryHookResult = ReturnType<typeof useGetLibraryPermissionsQuery>;
7305
8318
  export type GetLibraryPermissionsLazyQueryHookResult = ReturnType<typeof useGetLibraryPermissionsLazyQuery>;
8319
+ export type GetLibraryPermissionsSuspenseQueryHookResult = ReturnType<typeof useGetLibraryPermissionsSuspenseQuery>;
7306
8320
  export type GetLibraryPermissionsQueryResult = Apollo.QueryResult<GetLibraryPermissionsQuery, GetLibraryPermissionsQueryVariables>;
7307
8321
  export declare const GetLibraryPreviewsSettingsDocument: Apollo.DocumentNode;
7308
8322
  /**
@@ -7327,8 +8341,12 @@ export declare function useGetLibraryPreviewsSettingsQuery(baseOptions: Apollo.Q
7327
8341
  export declare function useGetLibraryPreviewsSettingsLazyQuery(baseOptions?: Apollo.LazyQueryHookOptions<GetLibraryPreviewsSettingsQuery, GetLibraryPreviewsSettingsQueryVariables>): Apollo.LazyQueryResultTuple<GetLibraryPreviewsSettingsQuery, Exact<{
7328
8342
  id: Scalars["ID"];
7329
8343
  }>>;
8344
+ export declare function useGetLibraryPreviewsSettingsSuspenseQuery(baseOptions?: Apollo.SuspenseQueryHookOptions<GetLibraryPreviewsSettingsQuery, GetLibraryPreviewsSettingsQueryVariables>): Apollo.UseSuspenseQueryResult<GetLibraryPreviewsSettingsQuery, Exact<{
8345
+ id: Scalars["ID"];
8346
+ }>>;
7330
8347
  export type GetLibraryPreviewsSettingsQueryHookResult = ReturnType<typeof useGetLibraryPreviewsSettingsQuery>;
7331
8348
  export type GetLibraryPreviewsSettingsLazyQueryHookResult = ReturnType<typeof useGetLibraryPreviewsSettingsLazyQuery>;
8349
+ export type GetLibraryPreviewsSettingsSuspenseQueryHookResult = ReturnType<typeof useGetLibraryPreviewsSettingsSuspenseQuery>;
7332
8350
  export type GetLibraryPreviewsSettingsQueryResult = Apollo.QueryResult<GetLibraryPreviewsSettingsQuery, GetLibraryPreviewsSettingsQueryVariables>;
7333
8351
  export declare const SaveLibraryDocument: Apollo.DocumentNode;
7334
8352
  export type SaveLibraryMutationFn = Apollo.MutationFunction<SaveLibraryMutation, SaveLibraryMutationVariables>;
@@ -7387,9 +8405,99 @@ export declare function useIsAllowedLazyQuery(baseOptions?: Apollo.LazyQueryHook
7387
8405
  applyTo?: InputMaybe<Scalars["ID"]>;
7388
8406
  target?: InputMaybe<PermissionTarget>;
7389
8407
  }>>;
8408
+ export declare function useIsAllowedSuspenseQuery(baseOptions?: Apollo.SuspenseQueryHookOptions<IsAllowedQuery, IsAllowedQueryVariables>): Apollo.UseSuspenseQueryResult<IsAllowedQuery, Exact<{
8409
+ type: PermissionTypes;
8410
+ actions: Array<PermissionsActions> | PermissionsActions;
8411
+ applyTo?: InputMaybe<Scalars["ID"]>;
8412
+ target?: InputMaybe<PermissionTarget>;
8413
+ }>>;
7390
8414
  export type IsAllowedQueryHookResult = ReturnType<typeof useIsAllowedQuery>;
7391
8415
  export type IsAllowedLazyQueryHookResult = ReturnType<typeof useIsAllowedLazyQuery>;
8416
+ export type IsAllowedSuspenseQueryHookResult = ReturnType<typeof useIsAllowedSuspenseQuery>;
7392
8417
  export type IsAllowedQueryResult = Apollo.QueryResult<IsAllowedQuery, IsAllowedQueryVariables>;
8418
+ export declare const ActivateNewRecordDocument: Apollo.DocumentNode;
8419
+ export type ActivateNewRecordMutationFn = Apollo.MutationFunction<ActivateNewRecordMutation, ActivateNewRecordMutationVariables>;
8420
+ /**
8421
+ * __useActivateNewRecordMutation__
8422
+ *
8423
+ * To run a mutation, you first call `useActivateNewRecordMutation` within a React component and pass it any options that fit your needs.
8424
+ * When your component renders, `useActivateNewRecordMutation` returns a tuple that includes:
8425
+ * - A mutate function that you can call at any time to execute the mutation
8426
+ * - An object with fields that represent the current status of the mutation's execution
8427
+ *
8428
+ * @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;
8429
+ *
8430
+ * @example
8431
+ * const [activateNewRecordMutation, { data, loading, error }] = useActivateNewRecordMutation({
8432
+ * variables: {
8433
+ * libraryId: // value for 'libraryId'
8434
+ * recordId: // value for 'recordId'
8435
+ * formId: // value for 'formId'
8436
+ * },
8437
+ * });
8438
+ */
8439
+ export declare function useActivateNewRecordMutation(baseOptions?: Apollo.MutationHookOptions<ActivateNewRecordMutation, ActivateNewRecordMutationVariables>): Apollo.MutationTuple<ActivateNewRecordMutation, Exact<{
8440
+ libraryId: Scalars["ID"];
8441
+ recordId: Scalars["ID"];
8442
+ formId?: InputMaybe<Scalars["String"]>;
8443
+ }>, Apollo.DefaultContext, Apollo.ApolloCache<any>>;
8444
+ export type ActivateNewRecordMutationHookResult = ReturnType<typeof useActivateNewRecordMutation>;
8445
+ export type ActivateNewRecordMutationResult = Apollo.MutationResult<ActivateNewRecordMutation>;
8446
+ export type ActivateNewRecordMutationOptions = Apollo.BaseMutationOptions<ActivateNewRecordMutation, ActivateNewRecordMutationVariables>;
8447
+ export declare const ActivateRecordsDocument: Apollo.DocumentNode;
8448
+ export type ActivateRecordsMutationFn = Apollo.MutationFunction<ActivateRecordsMutation, ActivateRecordsMutationVariables>;
8449
+ /**
8450
+ * __useActivateRecordsMutation__
8451
+ *
8452
+ * To run a mutation, you first call `useActivateRecordsMutation` within a React component and pass it any options that fit your needs.
8453
+ * When your component renders, `useActivateRecordsMutation` returns a tuple that includes:
8454
+ * - A mutate function that you can call at any time to execute the mutation
8455
+ * - An object with fields that represent the current status of the mutation's execution
8456
+ *
8457
+ * @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;
8458
+ *
8459
+ * @example
8460
+ * const [activateRecordsMutation, { data, loading, error }] = useActivateRecordsMutation({
8461
+ * variables: {
8462
+ * libraryId: // value for 'libraryId'
8463
+ * recordsIds: // value for 'recordsIds'
8464
+ * filters: // value for 'filters'
8465
+ * },
8466
+ * });
8467
+ */
8468
+ export declare function useActivateRecordsMutation(baseOptions?: Apollo.MutationHookOptions<ActivateRecordsMutation, ActivateRecordsMutationVariables>): Apollo.MutationTuple<ActivateRecordsMutation, Exact<{
8469
+ libraryId: Scalars["String"];
8470
+ recordsIds?: InputMaybe<Array<Scalars["String"]> | Scalars["String"]>;
8471
+ filters?: InputMaybe<Array<RecordFilterInput> | RecordFilterInput>;
8472
+ }>, Apollo.DefaultContext, Apollo.ApolloCache<any>>;
8473
+ export type ActivateRecordsMutationHookResult = ReturnType<typeof useActivateRecordsMutation>;
8474
+ export type ActivateRecordsMutationResult = Apollo.MutationResult<ActivateRecordsMutation>;
8475
+ export type ActivateRecordsMutationOptions = Apollo.BaseMutationOptions<ActivateRecordsMutation, ActivateRecordsMutationVariables>;
8476
+ export declare const CreateEmptyRecordDocument: Apollo.DocumentNode;
8477
+ export type CreateEmptyRecordMutationFn = Apollo.MutationFunction<CreateEmptyRecordMutation, CreateEmptyRecordMutationVariables>;
8478
+ /**
8479
+ * __useCreateEmptyRecordMutation__
8480
+ *
8481
+ * To run a mutation, you first call `useCreateEmptyRecordMutation` within a React component and pass it any options that fit your needs.
8482
+ * When your component renders, `useCreateEmptyRecordMutation` returns a tuple that includes:
8483
+ * - A mutate function that you can call at any time to execute the mutation
8484
+ * - An object with fields that represent the current status of the mutation's execution
8485
+ *
8486
+ * @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;
8487
+ *
8488
+ * @example
8489
+ * const [createEmptyRecordMutation, { data, loading, error }] = useCreateEmptyRecordMutation({
8490
+ * variables: {
8491
+ * library: // value for 'library'
8492
+ * },
8493
+ * });
8494
+ */
8495
+ export declare function useCreateEmptyRecordMutation(baseOptions?: Apollo.MutationHookOptions<CreateEmptyRecordMutation, CreateEmptyRecordMutationVariables>): Apollo.MutationTuple<CreateEmptyRecordMutation, Exact<{
8496
+ library: Scalars["ID"];
8497
+ }>, Apollo.DefaultContext, Apollo.ApolloCache<any>>;
8498
+ export type CreateEmptyRecordMutationHookResult = ReturnType<typeof useCreateEmptyRecordMutation>;
8499
+ export type CreateEmptyRecordMutationResult = Apollo.MutationResult<CreateEmptyRecordMutation>;
8500
+ export type CreateEmptyRecordMutationOptions = Apollo.BaseMutationOptions<CreateEmptyRecordMutation, CreateEmptyRecordMutationVariables>;
7393
8501
  export declare const CreateRecordDocument: Apollo.DocumentNode;
7394
8502
  export type CreateRecordMutationFn = Apollo.MutationFunction<CreateRecordMutation, CreateRecordMutationVariables>;
7395
8503
  /**
@@ -7475,8 +8583,14 @@ export declare function useDoesFileExistAsChildLazyQuery(baseOptions?: Apollo.La
7475
8583
  treeId: Scalars["ID"];
7476
8584
  filename: Scalars["String"];
7477
8585
  }>>;
8586
+ export declare function useDoesFileExistAsChildSuspenseQuery(baseOptions?: Apollo.SuspenseQueryHookOptions<DoesFileExistAsChildQuery, DoesFileExistAsChildQueryVariables>): Apollo.UseSuspenseQueryResult<DoesFileExistAsChildQuery, Exact<{
8587
+ parentNode?: InputMaybe<Scalars["ID"]>;
8588
+ treeId: Scalars["ID"];
8589
+ filename: Scalars["String"];
8590
+ }>>;
7478
8591
  export type DoesFileExistAsChildQueryHookResult = ReturnType<typeof useDoesFileExistAsChildQuery>;
7479
8592
  export type DoesFileExistAsChildLazyQueryHookResult = ReturnType<typeof useDoesFileExistAsChildLazyQuery>;
8593
+ export type DoesFileExistAsChildSuspenseQueryHookResult = ReturnType<typeof useDoesFileExistAsChildSuspenseQuery>;
7480
8594
  export type DoesFileExistAsChildQueryResult = Apollo.QueryResult<DoesFileExistAsChildQuery, DoesFileExistAsChildQueryVariables>;
7481
8595
  export declare const GetFileDataDocument: Apollo.DocumentNode;
7482
8596
  /**
@@ -7507,8 +8621,14 @@ export declare function useGetFileDataLazyQuery(baseOptions?: Apollo.LazyQueryHo
7507
8621
  fileId: Scalars["String"];
7508
8622
  previewsStatusAttribute: Scalars["ID"];
7509
8623
  }>>;
8624
+ export declare function useGetFileDataSuspenseQuery(baseOptions?: Apollo.SuspenseQueryHookOptions<GetFileDataQuery, GetFileDataQueryVariables>): Apollo.UseSuspenseQueryResult<GetFileDataQuery, Exact<{
8625
+ library: Scalars["ID"];
8626
+ fileId: Scalars["String"];
8627
+ previewsStatusAttribute: Scalars["ID"];
8628
+ }>>;
7510
8629
  export type GetFileDataQueryHookResult = ReturnType<typeof useGetFileDataQuery>;
7511
8630
  export type GetFileDataLazyQueryHookResult = ReturnType<typeof useGetFileDataLazyQuery>;
8631
+ export type GetFileDataSuspenseQueryHookResult = ReturnType<typeof useGetFileDataSuspenseQuery>;
7512
8632
  export type GetFileDataQueryResult = Apollo.QueryResult<GetFileDataQuery, GetFileDataQueryVariables>;
7513
8633
  export declare const RecordFormDocument: Apollo.DocumentNode;
7514
8634
  /**
@@ -7542,8 +8662,15 @@ export declare function useRecordFormLazyQuery(baseOptions?: Apollo.LazyQueryHoo
7542
8662
  recordId?: InputMaybe<Scalars["String"]>;
7543
8663
  version?: InputMaybe<Array<ValueVersionInput> | ValueVersionInput>;
7544
8664
  }>>;
8665
+ export declare function useRecordFormSuspenseQuery(baseOptions?: Apollo.SuspenseQueryHookOptions<RecordFormQuery, RecordFormQueryVariables>): Apollo.UseSuspenseQueryResult<RecordFormQuery, Exact<{
8666
+ libraryId: Scalars["String"];
8667
+ formId: Scalars["String"];
8668
+ recordId?: InputMaybe<Scalars["String"]>;
8669
+ version?: InputMaybe<Array<ValueVersionInput> | ValueVersionInput>;
8670
+ }>>;
7545
8671
  export type RecordFormQueryHookResult = ReturnType<typeof useRecordFormQuery>;
7546
8672
  export type RecordFormLazyQueryHookResult = ReturnType<typeof useRecordFormLazyQuery>;
8673
+ export type RecordFormSuspenseQueryHookResult = ReturnType<typeof useRecordFormSuspenseQuery>;
7547
8674
  export type RecordFormQueryResult = Apollo.QueryResult<RecordFormQuery, RecordFormQueryVariables>;
7548
8675
  export declare const RecordUpdateDocument: Apollo.DocumentNode;
7549
8676
  /**
@@ -7567,6 +8694,44 @@ export declare function useRecordUpdateSubscription(baseOptions?: Apollo.Subscri
7567
8694
  }>>;
7568
8695
  export type RecordUpdateSubscriptionHookResult = ReturnType<typeof useRecordUpdateSubscription>;
7569
8696
  export type RecordUpdateSubscriptionResult = Apollo.SubscriptionResult<RecordUpdateSubscription>;
8697
+ export declare const GetRecordsFromLibraryDocument: Apollo.DocumentNode;
8698
+ /**
8699
+ * __useGetRecordsFromLibraryQuery__
8700
+ *
8701
+ * To run a query within a React component, call `useGetRecordsFromLibraryQuery` and pass it any options that fit your needs.
8702
+ * When your component renders, `useGetRecordsFromLibraryQuery` returns an object from Apollo Client that contains loading, error, and data properties
8703
+ * you can use to render your UI.
8704
+ *
8705
+ * @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;
8706
+ *
8707
+ * @example
8708
+ * const { data, loading, error } = useGetRecordsFromLibraryQuery({
8709
+ * variables: {
8710
+ * libraryId: // value for 'libraryId'
8711
+ * pagination: // value for 'pagination'
8712
+ * filters: // value for 'filters'
8713
+ * },
8714
+ * });
8715
+ */
8716
+ export declare function useGetRecordsFromLibraryQuery(baseOptions: Apollo.QueryHookOptions<GetRecordsFromLibraryQuery, GetRecordsFromLibraryQueryVariables>): Apollo.QueryResult<GetRecordsFromLibraryQuery, Exact<{
8717
+ libraryId: Scalars["ID"];
8718
+ pagination?: InputMaybe<RecordsPagination>;
8719
+ filters?: InputMaybe<Array<InputMaybe<RecordFilterInput>> | InputMaybe<RecordFilterInput>>;
8720
+ }>>;
8721
+ export declare function useGetRecordsFromLibraryLazyQuery(baseOptions?: Apollo.LazyQueryHookOptions<GetRecordsFromLibraryQuery, GetRecordsFromLibraryQueryVariables>): Apollo.LazyQueryResultTuple<GetRecordsFromLibraryQuery, Exact<{
8722
+ libraryId: Scalars["ID"];
8723
+ pagination?: InputMaybe<RecordsPagination>;
8724
+ filters?: InputMaybe<Array<InputMaybe<RecordFilterInput>> | InputMaybe<RecordFilterInput>>;
8725
+ }>>;
8726
+ export declare function useGetRecordsFromLibrarySuspenseQuery(baseOptions?: Apollo.SuspenseQueryHookOptions<GetRecordsFromLibraryQuery, GetRecordsFromLibraryQueryVariables>): Apollo.UseSuspenseQueryResult<GetRecordsFromLibraryQuery, Exact<{
8727
+ libraryId: Scalars["ID"];
8728
+ pagination?: InputMaybe<RecordsPagination>;
8729
+ filters?: InputMaybe<Array<InputMaybe<RecordFilterInput>> | InputMaybe<RecordFilterInput>>;
8730
+ }>>;
8731
+ export type GetRecordsFromLibraryQueryHookResult = ReturnType<typeof useGetRecordsFromLibraryQuery>;
8732
+ export type GetRecordsFromLibraryLazyQueryHookResult = ReturnType<typeof useGetRecordsFromLibraryLazyQuery>;
8733
+ export type GetRecordsFromLibrarySuspenseQueryHookResult = ReturnType<typeof useGetRecordsFromLibrarySuspenseQuery>;
8734
+ export type GetRecordsFromLibraryQueryResult = Apollo.QueryResult<GetRecordsFromLibraryQuery, GetRecordsFromLibraryQueryVariables>;
7570
8735
  export declare const IndexRecordsDocument: Apollo.DocumentNode;
7571
8736
  export type IndexRecordsMutationFn = Apollo.MutationFunction<IndexRecordsMutation, IndexRecordsMutationVariables>;
7572
8737
  /**
@@ -7642,8 +8807,12 @@ export declare function useCheckTreeExistenceQuery(baseOptions?: Apollo.QueryHoo
7642
8807
  export declare function useCheckTreeExistenceLazyQuery(baseOptions?: Apollo.LazyQueryHookOptions<CheckTreeExistenceQuery, CheckTreeExistenceQueryVariables>): Apollo.LazyQueryResultTuple<CheckTreeExistenceQuery, Exact<{
7643
8808
  id?: InputMaybe<Array<Scalars["ID"]> | Scalars["ID"]>;
7644
8809
  }>>;
8810
+ export declare function useCheckTreeExistenceSuspenseQuery(baseOptions?: Apollo.SuspenseQueryHookOptions<CheckTreeExistenceQuery, CheckTreeExistenceQueryVariables>): Apollo.UseSuspenseQueryResult<CheckTreeExistenceQuery, Exact<{
8811
+ id?: InputMaybe<Array<Scalars["ID"]> | Scalars["ID"]>;
8812
+ }>>;
7645
8813
  export type CheckTreeExistenceQueryHookResult = ReturnType<typeof useCheckTreeExistenceQuery>;
7646
8814
  export type CheckTreeExistenceLazyQueryHookResult = ReturnType<typeof useCheckTreeExistenceLazyQuery>;
8815
+ export type CheckTreeExistenceSuspenseQueryHookResult = ReturnType<typeof useCheckTreeExistenceSuspenseQuery>;
7647
8816
  export type CheckTreeExistenceQueryResult = Apollo.QueryResult<CheckTreeExistenceQuery, CheckTreeExistenceQueryVariables>;
7648
8817
  export declare const DeleteTreeDocument: Apollo.DocumentNode;
7649
8818
  export type DeleteTreeMutationFn = Apollo.MutationFunction<DeleteTreeMutation, DeleteTreeMutationVariables>;
@@ -7693,8 +8862,12 @@ export declare function useGetTreeByIdQuery(baseOptions?: Apollo.QueryHookOption
7693
8862
  export declare function useGetTreeByIdLazyQuery(baseOptions?: Apollo.LazyQueryHookOptions<GetTreeByIdQuery, GetTreeByIdQueryVariables>): Apollo.LazyQueryResultTuple<GetTreeByIdQuery, Exact<{
7694
8863
  id?: InputMaybe<Array<Scalars["ID"]> | Scalars["ID"]>;
7695
8864
  }>>;
8865
+ export declare function useGetTreeByIdSuspenseQuery(baseOptions?: Apollo.SuspenseQueryHookOptions<GetTreeByIdQuery, GetTreeByIdQueryVariables>): Apollo.UseSuspenseQueryResult<GetTreeByIdQuery, Exact<{
8866
+ id?: InputMaybe<Array<Scalars["ID"]> | Scalars["ID"]>;
8867
+ }>>;
7696
8868
  export type GetTreeByIdQueryHookResult = ReturnType<typeof useGetTreeByIdQuery>;
7697
8869
  export type GetTreeByIdLazyQueryHookResult = ReturnType<typeof useGetTreeByIdLazyQuery>;
8870
+ export type GetTreeByIdSuspenseQueryHookResult = ReturnType<typeof useGetTreeByIdSuspenseQuery>;
7698
8871
  export type GetTreeByIdQueryResult = Apollo.QueryResult<GetTreeByIdQuery, GetTreeByIdQueryVariables>;
7699
8872
  export declare const GetTreeLibrariesDocument: Apollo.DocumentNode;
7700
8873
  /**
@@ -7722,8 +8895,13 @@ export declare function useGetTreeLibrariesLazyQuery(baseOptions?: Apollo.LazyQu
7722
8895
  treeId?: InputMaybe<Array<Scalars["ID"]> | Scalars["ID"]>;
7723
8896
  library?: InputMaybe<Scalars["String"]>;
7724
8897
  }>>;
8898
+ export declare function useGetTreeLibrariesSuspenseQuery(baseOptions?: Apollo.SuspenseQueryHookOptions<GetTreeLibrariesQuery, GetTreeLibrariesQueryVariables>): Apollo.UseSuspenseQueryResult<GetTreeLibrariesQuery, Exact<{
8899
+ treeId?: InputMaybe<Array<Scalars["ID"]> | Scalars["ID"]>;
8900
+ library?: InputMaybe<Scalars["String"]>;
8901
+ }>>;
7725
8902
  export type GetTreeLibrariesQueryHookResult = ReturnType<typeof useGetTreeLibrariesQuery>;
7726
8903
  export type GetTreeLibrariesLazyQueryHookResult = ReturnType<typeof useGetTreeLibrariesLazyQuery>;
8904
+ export type GetTreeLibrariesSuspenseQueryHookResult = ReturnType<typeof useGetTreeLibrariesSuspenseQuery>;
7727
8905
  export type GetTreeLibrariesQueryResult = Apollo.QueryResult<GetTreeLibrariesQuery, GetTreeLibrariesQueryVariables>;
7728
8906
  export declare const GetTreesDocument: Apollo.DocumentNode;
7729
8907
  /**
@@ -7747,8 +8925,12 @@ export declare function useGetTreesQuery(baseOptions?: Apollo.QueryHookOptions<G
7747
8925
  export declare function useGetTreesLazyQuery(baseOptions?: Apollo.LazyQueryHookOptions<GetTreesQuery, GetTreesQueryVariables>): Apollo.LazyQueryResultTuple<GetTreesQuery, Exact<{
7748
8926
  [key: string]: never;
7749
8927
  }>>;
8928
+ export declare function useGetTreesSuspenseQuery(baseOptions?: Apollo.SuspenseQueryHookOptions<GetTreesQuery, GetTreesQueryVariables>): Apollo.UseSuspenseQueryResult<GetTreesQuery, Exact<{
8929
+ [key: string]: never;
8930
+ }>>;
7750
8931
  export type GetTreesQueryHookResult = ReturnType<typeof useGetTreesQuery>;
7751
8932
  export type GetTreesLazyQueryHookResult = ReturnType<typeof useGetTreesLazyQuery>;
8933
+ export type GetTreesSuspenseQueryHookResult = ReturnType<typeof useGetTreesSuspenseQuery>;
7752
8934
  export type GetTreesQueryResult = Apollo.QueryResult<GetTreesQuery, GetTreesQueryVariables>;
7753
8935
  export declare const SaveTreeDocument: Apollo.DocumentNode;
7754
8936
  export type SaveTreeMutationFn = Apollo.MutationFunction<SaveTreeMutation, SaveTreeMutationVariables>;
@@ -7791,6 +8973,7 @@ export declare const TreeNodeChildrenDocument: Apollo.DocumentNode;
7791
8973
  * treeId: // value for 'treeId'
7792
8974
  * node: // value for 'node'
7793
8975
  * pagination: // value for 'pagination'
8976
+ * childrenAsRecordValuePermissionFilter: // value for 'childrenAsRecordValuePermissionFilter'
7794
8977
  * },
7795
8978
  * });
7796
8979
  */
@@ -7798,14 +8981,23 @@ export declare function useTreeNodeChildrenQuery(baseOptions: Apollo.QueryHookOp
7798
8981
  treeId: Scalars["ID"];
7799
8982
  node?: InputMaybe<Scalars["ID"]>;
7800
8983
  pagination?: InputMaybe<Pagination>;
8984
+ childrenAsRecordValuePermissionFilter?: InputMaybe<ChildrenAsRecordValuePermissionFilterInput>;
7801
8985
  }>>;
7802
8986
  export declare function useTreeNodeChildrenLazyQuery(baseOptions?: Apollo.LazyQueryHookOptions<TreeNodeChildrenQuery, TreeNodeChildrenQueryVariables>): Apollo.LazyQueryResultTuple<TreeNodeChildrenQuery, Exact<{
7803
8987
  treeId: Scalars["ID"];
7804
8988
  node?: InputMaybe<Scalars["ID"]>;
7805
8989
  pagination?: InputMaybe<Pagination>;
8990
+ childrenAsRecordValuePermissionFilter?: InputMaybe<ChildrenAsRecordValuePermissionFilterInput>;
8991
+ }>>;
8992
+ export declare function useTreeNodeChildrenSuspenseQuery(baseOptions?: Apollo.SuspenseQueryHookOptions<TreeNodeChildrenQuery, TreeNodeChildrenQueryVariables>): Apollo.UseSuspenseQueryResult<TreeNodeChildrenQuery, Exact<{
8993
+ treeId: Scalars["ID"];
8994
+ node?: InputMaybe<Scalars["ID"]>;
8995
+ pagination?: InputMaybe<Pagination>;
8996
+ childrenAsRecordValuePermissionFilter?: InputMaybe<ChildrenAsRecordValuePermissionFilterInput>;
7806
8997
  }>>;
7807
8998
  export type TreeNodeChildrenQueryHookResult = ReturnType<typeof useTreeNodeChildrenQuery>;
7808
8999
  export type TreeNodeChildrenLazyQueryHookResult = ReturnType<typeof useTreeNodeChildrenLazyQuery>;
9000
+ export type TreeNodeChildrenSuspenseQueryHookResult = ReturnType<typeof useTreeNodeChildrenSuspenseQuery>;
7809
9001
  export type TreeNodeChildrenQueryResult = Apollo.QueryResult<TreeNodeChildrenQuery, TreeNodeChildrenQueryVariables>;
7810
9002
  export declare const GetUserDataDocument: Apollo.DocumentNode;
7811
9003
  /**
@@ -7833,8 +9025,13 @@ export declare function useGetUserDataLazyQuery(baseOptions?: Apollo.LazyQueryHo
7833
9025
  keys: Array<Scalars["String"]> | Scalars["String"];
7834
9026
  global?: InputMaybe<Scalars["Boolean"]>;
7835
9027
  }>>;
9028
+ export declare function useGetUserDataSuspenseQuery(baseOptions?: Apollo.SuspenseQueryHookOptions<GetUserDataQuery, GetUserDataQueryVariables>): Apollo.UseSuspenseQueryResult<GetUserDataQuery, Exact<{
9029
+ keys: Array<Scalars["String"]> | Scalars["String"];
9030
+ global?: InputMaybe<Scalars["Boolean"]>;
9031
+ }>>;
7836
9032
  export type GetUserDataQueryHookResult = ReturnType<typeof useGetUserDataQuery>;
7837
9033
  export type GetUserDataLazyQueryHookResult = ReturnType<typeof useGetUserDataLazyQuery>;
9034
+ export type GetUserDataSuspenseQueryHookResult = ReturnType<typeof useGetUserDataSuspenseQuery>;
7838
9035
  export type GetUserDataQueryResult = Apollo.QueryResult<GetUserDataQuery, GetUserDataQueryVariables>;
7839
9036
  export declare const SaveUserDataDocument: Apollo.DocumentNode;
7840
9037
  export type SaveUserDataMutationFn = Apollo.MutationFunction<SaveUserDataMutation, SaveUserDataMutationVariables>;
@@ -7896,38 +9093,6 @@ export declare function useDeleteValueMutation(baseOptions?: Apollo.MutationHook
7896
9093
  export type DeleteValueMutationHookResult = ReturnType<typeof useDeleteValueMutation>;
7897
9094
  export type DeleteValueMutationResult = Apollo.MutationResult<DeleteValueMutation>;
7898
9095
  export type DeleteValueMutationOptions = Apollo.BaseMutationOptions<DeleteValueMutation, DeleteValueMutationVariables>;
7899
- export declare const RunActionsListAndFormatOnValueDocument: Apollo.DocumentNode;
7900
- /**
7901
- * __useRunActionsListAndFormatOnValueQuery__
7902
- *
7903
- * To run a query within a React component, call `useRunActionsListAndFormatOnValueQuery` and pass it any options that fit your needs.
7904
- * When your component renders, `useRunActionsListAndFormatOnValueQuery` returns an object from Apollo Client that contains loading, error, and data properties
7905
- * you can use to render your UI.
7906
- *
7907
- * @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;
7908
- *
7909
- * @example
7910
- * const { data, loading, error } = useRunActionsListAndFormatOnValueQuery({
7911
- * variables: {
7912
- * library: // value for 'library'
7913
- * value: // value for 'value'
7914
- * version: // value for 'version'
7915
- * },
7916
- * });
7917
- */
7918
- export declare function useRunActionsListAndFormatOnValueQuery(baseOptions: Apollo.QueryHookOptions<RunActionsListAndFormatOnValueQuery, RunActionsListAndFormatOnValueQueryVariables>): Apollo.QueryResult<RunActionsListAndFormatOnValueQuery, Exact<{
7919
- library: Scalars["ID"];
7920
- value?: InputMaybe<ValueBatchInput>;
7921
- version?: InputMaybe<Array<InputMaybe<ValueVersionInput>> | InputMaybe<ValueVersionInput>>;
7922
- }>>;
7923
- export declare function useRunActionsListAndFormatOnValueLazyQuery(baseOptions?: Apollo.LazyQueryHookOptions<RunActionsListAndFormatOnValueQuery, RunActionsListAndFormatOnValueQueryVariables>): Apollo.LazyQueryResultTuple<RunActionsListAndFormatOnValueQuery, Exact<{
7924
- library: Scalars["ID"];
7925
- value?: InputMaybe<ValueBatchInput>;
7926
- version?: InputMaybe<Array<InputMaybe<ValueVersionInput>> | InputMaybe<ValueVersionInput>>;
7927
- }>>;
7928
- export type RunActionsListAndFormatOnValueQueryHookResult = ReturnType<typeof useRunActionsListAndFormatOnValueQuery>;
7929
- export type RunActionsListAndFormatOnValueLazyQueryHookResult = ReturnType<typeof useRunActionsListAndFormatOnValueLazyQuery>;
7930
- export type RunActionsListAndFormatOnValueQueryResult = Apollo.QueryResult<RunActionsListAndFormatOnValueQuery, RunActionsListAndFormatOnValueQueryVariables>;
7931
9096
  export declare const SaveValueBatchDocument: Apollo.DocumentNode;
7932
9097
  export type SaveValueBatchMutationFn = Apollo.MutationFunction<SaveValueBatchMutation, SaveValueBatchMutationVariables>;
7933
9098
  /**
@@ -8009,8 +9174,12 @@ export declare function useGetViewQuery(baseOptions: Apollo.QueryHookOptions<Get
8009
9174
  export declare function useGetViewLazyQuery(baseOptions?: Apollo.LazyQueryHookOptions<GetViewQuery, GetViewQueryVariables>): Apollo.LazyQueryResultTuple<GetViewQuery, Exact<{
8010
9175
  viewId: Scalars["String"];
8011
9176
  }>>;
9177
+ export declare function useGetViewSuspenseQuery(baseOptions?: Apollo.SuspenseQueryHookOptions<GetViewQuery, GetViewQueryVariables>): Apollo.UseSuspenseQueryResult<GetViewQuery, Exact<{
9178
+ viewId: Scalars["String"];
9179
+ }>>;
8012
9180
  export type GetViewQueryHookResult = ReturnType<typeof useGetViewQuery>;
8013
9181
  export type GetViewLazyQueryHookResult = ReturnType<typeof useGetViewLazyQuery>;
9182
+ export type GetViewSuspenseQueryHookResult = ReturnType<typeof useGetViewSuspenseQuery>;
8014
9183
  export type GetViewQueryResult = Apollo.QueryResult<GetViewQuery, GetViewQueryVariables>;
8015
9184
  export declare const GetViewsListDocument: Apollo.DocumentNode;
8016
9185
  /**
@@ -8035,8 +9204,12 @@ export declare function useGetViewsListQuery(baseOptions: Apollo.QueryHookOption
8035
9204
  export declare function useGetViewsListLazyQuery(baseOptions?: Apollo.LazyQueryHookOptions<GetViewsListQuery, GetViewsListQueryVariables>): Apollo.LazyQueryResultTuple<GetViewsListQuery, Exact<{
8036
9205
  libraryId: Scalars["String"];
8037
9206
  }>>;
9207
+ export declare function useGetViewsListSuspenseQuery(baseOptions?: Apollo.SuspenseQueryHookOptions<GetViewsListQuery, GetViewsListQueryVariables>): Apollo.UseSuspenseQueryResult<GetViewsListQuery, Exact<{
9208
+ libraryId: Scalars["String"];
9209
+ }>>;
8038
9210
  export type GetViewsListQueryHookResult = ReturnType<typeof useGetViewsListQuery>;
8039
9211
  export type GetViewsListLazyQueryHookResult = ReturnType<typeof useGetViewsListLazyQuery>;
9212
+ export type GetViewsListSuspenseQueryHookResult = ReturnType<typeof useGetViewsListSuspenseQuery>;
8040
9213
  export type GetViewsListQueryResult = Apollo.QueryResult<GetViewsListQuery, GetViewsListQueryVariables>;
8041
9214
  export declare const SaveViewDocument: Apollo.DocumentNode;
8042
9215
  export type SaveViewMutationFn = Apollo.MutationFunction<SaveViewMutation, SaveViewMutationVariables>;
@@ -8086,8 +9259,12 @@ export declare function useGetAttributesByLibWithPermissionsQuery(baseOptions: A
8086
9259
  export declare function useGetAttributesByLibWithPermissionsLazyQuery(baseOptions?: Apollo.LazyQueryHookOptions<GetAttributesByLibWithPermissionsQuery, GetAttributesByLibWithPermissionsQueryVariables>): Apollo.LazyQueryResultTuple<GetAttributesByLibWithPermissionsQuery, Exact<{
8087
9260
  library: Scalars["String"];
8088
9261
  }>>;
9262
+ export declare function useGetAttributesByLibWithPermissionsSuspenseQuery(baseOptions?: Apollo.SuspenseQueryHookOptions<GetAttributesByLibWithPermissionsQuery, GetAttributesByLibWithPermissionsQueryVariables>): Apollo.UseSuspenseQueryResult<GetAttributesByLibWithPermissionsQuery, Exact<{
9263
+ library: Scalars["String"];
9264
+ }>>;
8089
9265
  export type GetAttributesByLibWithPermissionsQueryHookResult = ReturnType<typeof useGetAttributesByLibWithPermissionsQuery>;
8090
9266
  export type GetAttributesByLibWithPermissionsLazyQueryHookResult = ReturnType<typeof useGetAttributesByLibWithPermissionsLazyQuery>;
9267
+ export type GetAttributesByLibWithPermissionsSuspenseQueryHookResult = ReturnType<typeof useGetAttributesByLibWithPermissionsSuspenseQuery>;
8091
9268
  export type GetAttributesByLibWithPermissionsQueryResult = Apollo.QueryResult<GetAttributesByLibWithPermissionsQuery, GetAttributesByLibWithPermissionsQueryVariables>;
8092
9269
  export declare const ExplorerAttributesDocument: Apollo.DocumentNode;
8093
9270
  /**
@@ -8112,8 +9289,12 @@ export declare function useExplorerAttributesQuery(baseOptions?: Apollo.QueryHoo
8112
9289
  export declare function useExplorerAttributesLazyQuery(baseOptions?: Apollo.LazyQueryHookOptions<ExplorerAttributesQuery, ExplorerAttributesQueryVariables>): Apollo.LazyQueryResultTuple<ExplorerAttributesQuery, Exact<{
8113
9290
  ids?: InputMaybe<Array<Scalars["ID"]> | Scalars["ID"]>;
8114
9291
  }>>;
9292
+ export declare function useExplorerAttributesSuspenseQuery(baseOptions?: Apollo.SuspenseQueryHookOptions<ExplorerAttributesQuery, ExplorerAttributesQueryVariables>): Apollo.UseSuspenseQueryResult<ExplorerAttributesQuery, Exact<{
9293
+ ids?: InputMaybe<Array<Scalars["ID"]> | Scalars["ID"]>;
9294
+ }>>;
8115
9295
  export type ExplorerAttributesQueryHookResult = ReturnType<typeof useExplorerAttributesQuery>;
8116
9296
  export type ExplorerAttributesLazyQueryHookResult = ReturnType<typeof useExplorerAttributesLazyQuery>;
9297
+ export type ExplorerAttributesSuspenseQueryHookResult = ReturnType<typeof useExplorerAttributesSuspenseQuery>;
8117
9298
  export type ExplorerAttributesQueryResult = Apollo.QueryResult<ExplorerAttributesQuery, ExplorerAttributesQueryVariables>;
8118
9299
  export declare const ExplorerLinkAttributeDocument: Apollo.DocumentNode;
8119
9300
  /**
@@ -8138,8 +9319,12 @@ export declare function useExplorerLinkAttributeQuery(baseOptions: Apollo.QueryH
8138
9319
  export declare function useExplorerLinkAttributeLazyQuery(baseOptions?: Apollo.LazyQueryHookOptions<ExplorerLinkAttributeQuery, ExplorerLinkAttributeQueryVariables>): Apollo.LazyQueryResultTuple<ExplorerLinkAttributeQuery, Exact<{
8139
9320
  id: Scalars["ID"];
8140
9321
  }>>;
9322
+ export declare function useExplorerLinkAttributeSuspenseQuery(baseOptions?: Apollo.SuspenseQueryHookOptions<ExplorerLinkAttributeQuery, ExplorerLinkAttributeQueryVariables>): Apollo.UseSuspenseQueryResult<ExplorerLinkAttributeQuery, Exact<{
9323
+ id: Scalars["ID"];
9324
+ }>>;
8141
9325
  export type ExplorerLinkAttributeQueryHookResult = ReturnType<typeof useExplorerLinkAttributeQuery>;
8142
9326
  export type ExplorerLinkAttributeLazyQueryHookResult = ReturnType<typeof useExplorerLinkAttributeLazyQuery>;
9327
+ export type ExplorerLinkAttributeSuspenseQueryHookResult = ReturnType<typeof useExplorerLinkAttributeSuspenseQuery>;
8143
9328
  export type ExplorerLinkAttributeQueryResult = Apollo.QueryResult<ExplorerLinkAttributeQuery, ExplorerLinkAttributeQueryVariables>;
8144
9329
  export declare const ExplorerLibraryDataDocument: Apollo.DocumentNode;
8145
9330
  /**
@@ -8179,8 +9364,17 @@ export declare function useExplorerLibraryDataLazyQuery(baseOptions?: Apollo.Laz
8179
9364
  multipleSort?: InputMaybe<Array<RecordSortInput> | RecordSortInput>;
8180
9365
  searchQuery?: InputMaybe<Scalars["String"]>;
8181
9366
  }>>;
9367
+ export declare function useExplorerLibraryDataSuspenseQuery(baseOptions?: Apollo.SuspenseQueryHookOptions<ExplorerLibraryDataQuery, ExplorerLibraryDataQueryVariables>): Apollo.UseSuspenseQueryResult<ExplorerLibraryDataQuery, Exact<{
9368
+ libraryId: Scalars["ID"];
9369
+ attributeIds: Array<Scalars["ID"]> | Scalars["ID"];
9370
+ pagination?: InputMaybe<RecordsPagination>;
9371
+ filters?: InputMaybe<Array<InputMaybe<RecordFilterInput>> | InputMaybe<RecordFilterInput>>;
9372
+ multipleSort?: InputMaybe<Array<RecordSortInput> | RecordSortInput>;
9373
+ searchQuery?: InputMaybe<Scalars["String"]>;
9374
+ }>>;
8182
9375
  export type ExplorerLibraryDataQueryHookResult = ReturnType<typeof useExplorerLibraryDataQuery>;
8183
9376
  export type ExplorerLibraryDataLazyQueryHookResult = ReturnType<typeof useExplorerLibraryDataLazyQuery>;
9377
+ export type ExplorerLibraryDataSuspenseQueryHookResult = ReturnType<typeof useExplorerLibraryDataSuspenseQuery>;
8184
9378
  export type ExplorerLibraryDataQueryResult = Apollo.QueryResult<ExplorerLibraryDataQuery, ExplorerLibraryDataQueryVariables>;
8185
9379
  export declare const ExplorerLinkDataDocument: Apollo.DocumentNode;
8186
9380
  /**
@@ -8214,8 +9408,15 @@ export declare function useExplorerLinkDataLazyQuery(baseOptions?: Apollo.LazyQu
8214
9408
  parentRecordId?: InputMaybe<Scalars["String"]>;
8215
9409
  linkAttributeId: Scalars["ID"];
8216
9410
  }>>;
9411
+ export declare function useExplorerLinkDataSuspenseQuery(baseOptions?: Apollo.SuspenseQueryHookOptions<ExplorerLinkDataQuery, ExplorerLinkDataQueryVariables>): Apollo.UseSuspenseQueryResult<ExplorerLinkDataQuery, Exact<{
9412
+ attributeIds: Array<Scalars["ID"]> | Scalars["ID"];
9413
+ parentLibraryId: Scalars["ID"];
9414
+ parentRecordId?: InputMaybe<Scalars["String"]>;
9415
+ linkAttributeId: Scalars["ID"];
9416
+ }>>;
8217
9417
  export type ExplorerLinkDataQueryHookResult = ReturnType<typeof useExplorerLinkDataQuery>;
8218
9418
  export type ExplorerLinkDataLazyQueryHookResult = ReturnType<typeof useExplorerLinkDataLazyQuery>;
9419
+ export type ExplorerLinkDataSuspenseQueryHookResult = ReturnType<typeof useExplorerLinkDataSuspenseQuery>;
8219
9420
  export type ExplorerLinkDataQueryResult = Apollo.QueryResult<ExplorerLinkDataQuery, ExplorerLinkDataQueryVariables>;
8220
9421
  export declare const GetLibraryAttributesDocument: Apollo.DocumentNode;
8221
9422
  /**
@@ -8240,8 +9441,12 @@ export declare function useGetLibraryAttributesQuery(baseOptions: Apollo.QueryHo
8240
9441
  export declare function useGetLibraryAttributesLazyQuery(baseOptions?: Apollo.LazyQueryHookOptions<GetLibraryAttributesQuery, GetLibraryAttributesQueryVariables>): Apollo.LazyQueryResultTuple<GetLibraryAttributesQuery, Exact<{
8241
9442
  libraryId: Scalars["ID"];
8242
9443
  }>>;
9444
+ export declare function useGetLibraryAttributesSuspenseQuery(baseOptions?: Apollo.SuspenseQueryHookOptions<GetLibraryAttributesQuery, GetLibraryAttributesQueryVariables>): Apollo.UseSuspenseQueryResult<GetLibraryAttributesQuery, Exact<{
9445
+ libraryId: Scalars["ID"];
9446
+ }>>;
8243
9447
  export type GetLibraryAttributesQueryHookResult = ReturnType<typeof useGetLibraryAttributesQuery>;
8244
9448
  export type GetLibraryAttributesLazyQueryHookResult = ReturnType<typeof useGetLibraryAttributesLazyQuery>;
9449
+ export type GetLibraryAttributesSuspenseQueryHookResult = ReturnType<typeof useGetLibraryAttributesSuspenseQuery>;
8245
9450
  export type GetLibraryAttributesQueryResult = Apollo.QueryResult<GetLibraryAttributesQuery, GetLibraryAttributesQueryVariables>;
8246
9451
  export declare const ExplorerLibraryDetailsDocument: Apollo.DocumentNode;
8247
9452
  /**
@@ -8266,8 +9471,12 @@ export declare function useExplorerLibraryDetailsQuery(baseOptions: Apollo.Query
8266
9471
  export declare function useExplorerLibraryDetailsLazyQuery(baseOptions?: Apollo.LazyQueryHookOptions<ExplorerLibraryDetailsQuery, ExplorerLibraryDetailsQueryVariables>): Apollo.LazyQueryResultTuple<ExplorerLibraryDetailsQuery, Exact<{
8267
9472
  libraryId: Scalars["ID"];
8268
9473
  }>>;
9474
+ export declare function useExplorerLibraryDetailsSuspenseQuery(baseOptions?: Apollo.SuspenseQueryHookOptions<ExplorerLibraryDetailsQuery, ExplorerLibraryDetailsQueryVariables>): Apollo.UseSuspenseQueryResult<ExplorerLibraryDetailsQuery, Exact<{
9475
+ libraryId: Scalars["ID"];
9476
+ }>>;
8269
9477
  export type ExplorerLibraryDetailsQueryHookResult = ReturnType<typeof useExplorerLibraryDetailsQuery>;
8270
9478
  export type ExplorerLibraryDetailsLazyQueryHookResult = ReturnType<typeof useExplorerLibraryDetailsLazyQuery>;
9479
+ export type ExplorerLibraryDetailsSuspenseQueryHookResult = ReturnType<typeof useExplorerLibraryDetailsSuspenseQuery>;
8271
9480
  export type ExplorerLibraryDetailsQueryResult = Apollo.QueryResult<ExplorerLibraryDetailsQuery, ExplorerLibraryDetailsQueryVariables>;
8272
9481
  export declare const ExplorerSelectionIdsDocument: Apollo.DocumentNode;
8273
9482
  /**
@@ -8295,8 +9504,13 @@ export declare function useExplorerSelectionIdsLazyQuery(baseOptions?: Apollo.La
8295
9504
  libraryId: Scalars["ID"];
8296
9505
  filters?: InputMaybe<Array<InputMaybe<RecordFilterInput>> | InputMaybe<RecordFilterInput>>;
8297
9506
  }>>;
9507
+ export declare function useExplorerSelectionIdsSuspenseQuery(baseOptions?: Apollo.SuspenseQueryHookOptions<ExplorerSelectionIdsQuery, ExplorerSelectionIdsQueryVariables>): Apollo.UseSuspenseQueryResult<ExplorerSelectionIdsQuery, Exact<{
9508
+ libraryId: Scalars["ID"];
9509
+ filters?: InputMaybe<Array<InputMaybe<RecordFilterInput>> | InputMaybe<RecordFilterInput>>;
9510
+ }>>;
8298
9511
  export type ExplorerSelectionIdsQueryHookResult = ReturnType<typeof useExplorerSelectionIdsQuery>;
8299
9512
  export type ExplorerSelectionIdsLazyQueryHookResult = ReturnType<typeof useExplorerSelectionIdsLazyQuery>;
9513
+ export type ExplorerSelectionIdsSuspenseQueryHookResult = ReturnType<typeof useExplorerSelectionIdsSuspenseQuery>;
8300
9514
  export type ExplorerSelectionIdsQueryResult = Apollo.QueryResult<ExplorerSelectionIdsQuery, ExplorerSelectionIdsQueryVariables>;
8301
9515
  export declare const MeDocument: Apollo.DocumentNode;
8302
9516
  /**
@@ -8320,8 +9534,12 @@ export declare function useMeQuery(baseOptions?: Apollo.QueryHookOptions<MeQuery
8320
9534
  export declare function useMeLazyQuery(baseOptions?: Apollo.LazyQueryHookOptions<MeQuery, MeQueryVariables>): Apollo.LazyQueryResultTuple<MeQuery, Exact<{
8321
9535
  [key: string]: never;
8322
9536
  }>>;
9537
+ export declare function useMeSuspenseQuery(baseOptions?: Apollo.SuspenseQueryHookOptions<MeQuery, MeQueryVariables>): Apollo.UseSuspenseQueryResult<MeQuery, Exact<{
9538
+ [key: string]: never;
9539
+ }>>;
8323
9540
  export type MeQueryHookResult = ReturnType<typeof useMeQuery>;
8324
9541
  export type MeLazyQueryHookResult = ReturnType<typeof useMeLazyQuery>;
9542
+ export type MeSuspenseQueryHookResult = ReturnType<typeof useMeSuspenseQuery>;
8325
9543
  export type MeQueryResult = Apollo.QueryResult<MeQuery, MeQueryVariables>;
8326
9544
  export declare const UpdateViewDocument: Apollo.DocumentNode;
8327
9545
  export type UpdateViewMutationFn = Apollo.MutationFunction<UpdateViewMutation, UpdateViewMutationVariables>;
@@ -8371,6 +9589,10 @@ export declare function useTreeDataQueryQuery(baseOptions: Apollo.QueryHookOptio
8371
9589
  export declare function useTreeDataQueryLazyQuery(baseOptions?: Apollo.LazyQueryHookOptions<TreeDataQueryQuery, TreeDataQueryQueryVariables>): Apollo.LazyQueryResultTuple<TreeDataQueryQuery, Exact<{
8372
9590
  treeId: Scalars["ID"];
8373
9591
  }>>;
9592
+ export declare function useTreeDataQuerySuspenseQuery(baseOptions?: Apollo.SuspenseQueryHookOptions<TreeDataQueryQuery, TreeDataQueryQueryVariables>): Apollo.UseSuspenseQueryResult<TreeDataQueryQuery, Exact<{
9593
+ treeId: Scalars["ID"];
9594
+ }>>;
8374
9595
  export type TreeDataQueryQueryHookResult = ReturnType<typeof useTreeDataQueryQuery>;
8375
9596
  export type TreeDataQueryLazyQueryHookResult = ReturnType<typeof useTreeDataQueryLazyQuery>;
9597
+ export type TreeDataQuerySuspenseQueryHookResult = ReturnType<typeof useTreeDataQuerySuspenseQuery>;
8376
9598
  export type TreeDataQueryQueryResult = Apollo.QueryResult<TreeDataQueryQuery, TreeDataQueryQueryVariables>;