@leav/ui 0.4.0-68337df → 0.4.0-698ea537

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 (233) hide show
  1. package/README.md +1 -0
  2. package/dist/_gqlTypes/index.d.ts +1255 -261
  3. package/dist/_gqlTypes/index.js +287 -56
  4. package/dist/_gqlTypes/index.js.map +1 -1
  5. package/dist/_queries/records/getRecordFormQuery.js +9 -0
  6. package/dist/_queries/records/getRecordFormQuery.js.map +1 -1
  7. package/dist/_queries/trees/treeNodeChildrenQuery.js +12 -2
  8. package/dist/_queries/trees/treeNodeChildrenQuery.js.map +1 -1
  9. package/dist/_utils/attributeType.d.ts +2 -1
  10. package/dist/_utils/attributeType.js +2 -1
  11. package/dist/_utils/attributeType.js.map +1 -1
  12. package/dist/components/Explorer/DataView.js +4 -4
  13. package/dist/components/Explorer/DataView.js.map +1 -1
  14. package/dist/components/Explorer/Explorer.d.ts +5 -2
  15. package/dist/components/Explorer/Explorer.js +13 -4
  16. package/dist/components/Explorer/Explorer.js.map +1 -1
  17. package/dist/components/Explorer/ExplorerToolbar.d.ts +2 -1
  18. package/dist/components/Explorer/ExplorerToolbar.js +5 -4
  19. package/dist/components/Explorer/ExplorerToolbar.js.map +1 -1
  20. package/dist/components/Explorer/_queries/prepareFiltersForRequest.d.ts +1 -1
  21. package/dist/components/Explorer/_queries/prepareFiltersForRequest.js +82 -31
  22. package/dist/components/Explorer/_queries/prepareFiltersForRequest.js.map +1 -1
  23. package/dist/components/Explorer/_queries/useExplorerData.js +32 -27
  24. package/dist/components/Explorer/_queries/useExplorerData.js.map +1 -1
  25. package/dist/components/Explorer/_types.d.ts +36 -3
  26. package/dist/components/Explorer/_types.js +1 -0
  27. package/dist/components/Explorer/_types.js.map +1 -1
  28. package/dist/components/Explorer/actions-item/useReplaceItemAction.d.ts +2 -1
  29. package/dist/components/Explorer/actions-item/useReplaceItemAction.js +2 -2
  30. package/dist/components/Explorer/actions-item/useReplaceItemAction.js.map +1 -1
  31. package/dist/components/Explorer/actions-primary/useCreatePrimaryAction.d.ts +5 -1
  32. package/dist/components/Explorer/actions-primary/useCreatePrimaryAction.js +19 -22
  33. package/dist/components/Explorer/actions-primary/useCreatePrimaryAction.js.map +1 -1
  34. package/dist/components/Explorer/actions-primary/useLinkPrimaryAction.d.ts +6 -3
  35. package/dist/components/Explorer/actions-primary/useLinkPrimaryAction.js +5 -19
  36. package/dist/components/Explorer/actions-primary/useLinkPrimaryAction.js.map +1 -1
  37. package/dist/components/Explorer/link-item/LinkModal.d.ts +3 -0
  38. package/dist/components/Explorer/link-item/LinkModal.js +44 -4
  39. package/dist/components/Explorer/link-item/LinkModal.js.map +1 -1
  40. package/dist/components/Explorer/manage-view-settings/_shared/CommonFilterItem.js +1 -1
  41. package/dist/components/Explorer/manage-view-settings/_shared/CommonFilterItem.js.map +1 -1
  42. package/dist/components/Explorer/manage-view-settings/_shared/useTransformFilters.js +26 -2
  43. package/dist/components/Explorer/manage-view-settings/_shared/useTransformFilters.js.map +1 -1
  44. package/dist/components/Explorer/manage-view-settings/filter-items/FilterItems.js +10 -7
  45. package/dist/components/Explorer/manage-view-settings/filter-items/FilterItems.js.map +1 -1
  46. package/dist/components/Explorer/manage-view-settings/filter-items/filter-type/FilterDropDown.js +2 -2
  47. package/dist/components/Explorer/manage-view-settings/filter-items/filter-type/FilterDropDown.js.map +1 -1
  48. package/dist/components/Explorer/manage-view-settings/filter-items/filter-type/FilterDropdownContent.js +5 -1
  49. package/dist/components/Explorer/manage-view-settings/filter-items/filter-type/FilterDropdownContent.js.map +1 -1
  50. package/dist/components/Explorer/manage-view-settings/filter-items/filter-type/TreeAttributeDropDown.d.ts +3 -0
  51. package/dist/components/Explorer/manage-view-settings/filter-items/filter-type/TreeAttributeDropDown.js +69 -0
  52. package/dist/components/Explorer/manage-view-settings/filter-items/filter-type/TreeAttributeDropDown.js.map +1 -0
  53. package/dist/components/Explorer/manage-view-settings/filter-items/filter-type/_types.d.ts +6 -1
  54. package/dist/components/Explorer/manage-view-settings/filter-items/filter-type/useConditionOptionsByType.d.ts +2 -0
  55. package/dist/components/Explorer/manage-view-settings/filter-items/filter-type/useConditionOptionsByType.js +31 -4
  56. package/dist/components/Explorer/manage-view-settings/filter-items/filter-type/useConditionOptionsByType.js.map +1 -1
  57. package/dist/components/Explorer/manage-view-settings/save-view/prepareViewForRequest.js +19 -8
  58. package/dist/components/Explorer/manage-view-settings/save-view/prepareViewForRequest.js.map +1 -1
  59. package/dist/components/Explorer/manage-view-settings/store-view-settings/viewSettingsInitialState.js +2 -1
  60. package/dist/components/Explorer/manage-view-settings/store-view-settings/viewSettingsInitialState.js.map +1 -1
  61. package/dist/components/Explorer/manage-view-settings/store-view-settings/viewSettingsReducer.d.ts +3 -2
  62. package/dist/components/Explorer/manage-view-settings/store-view-settings/viewSettingsReducer.js +38 -12
  63. package/dist/components/Explorer/manage-view-settings/store-view-settings/viewSettingsReducer.js.map +1 -1
  64. package/dist/components/Explorer/useLoadView.d.ts +1 -1
  65. package/dist/components/Explorer/useLoadView.js +32 -38
  66. package/dist/components/Explorer/useLoadView.js.map +1 -1
  67. package/dist/components/Explorer/useSearchInput.js +2 -0
  68. package/dist/components/Explorer/useSearchInput.js.map +1 -1
  69. package/dist/components/LibraryItemsList/FiltersPanel/Filter/Filter.js +2 -2
  70. package/dist/components/LibraryItemsList/FiltersPanel/Filter/Filter.js.map +1 -1
  71. package/dist/components/RecordEdition/EditRecord/EditRecord.d.ts +2 -1
  72. package/dist/components/RecordEdition/EditRecord/EditRecord.js +72 -224
  73. package/dist/components/RecordEdition/EditRecord/EditRecord.js.map +1 -1
  74. package/dist/components/RecordEdition/EditRecordContent/EditRecordContent.d.ts +2 -2
  75. package/dist/components/RecordEdition/EditRecordContent/EditRecordContent.js +4 -11
  76. package/dist/components/RecordEdition/EditRecordContent/EditRecordContent.js.map +1 -1
  77. package/dist/components/RecordEdition/EditRecordContent/_types.d.ts +2 -5
  78. package/dist/components/RecordEdition/EditRecordContent/hooks/useCreateEmptyRecordMutation.d.ts +5 -0
  79. package/dist/components/RecordEdition/EditRecordContent/hooks/useCreateEmptyRecordMutation.js +28 -0
  80. package/dist/components/RecordEdition/EditRecordContent/hooks/useCreateEmptyRecordMutation.js.map +1 -0
  81. package/dist/components/RecordEdition/EditRecordContent/hooks/useTabManagement.d.ts +11 -0
  82. package/dist/components/RecordEdition/EditRecordContent/hooks/useTabManagement.js +35 -0
  83. package/dist/components/RecordEdition/EditRecordContent/hooks/useTabManagement.js.map +1 -0
  84. package/dist/components/RecordEdition/EditRecordContent/uiElements/Container/Container.d.ts +1 -1
  85. package/dist/components/RecordEdition/EditRecordContent/uiElements/Container/Container.js +2 -2
  86. package/dist/components/RecordEdition/EditRecordContent/uiElements/Container/Container.js.map +1 -1
  87. package/dist/components/RecordEdition/EditRecordContent/uiElements/FormDivider/FormDivider.js.map +1 -1
  88. package/dist/components/RecordEdition/EditRecordContent/uiElements/Frame/Frame.js +1 -1
  89. package/dist/components/RecordEdition/EditRecordContent/uiElements/Frame/Frame.js.map +1 -1
  90. package/dist/components/RecordEdition/EditRecordContent/uiElements/LinkField/LinkField.js +11 -36
  91. package/dist/components/RecordEdition/EditRecordContent/uiElements/LinkField/LinkField.js.map +1 -1
  92. package/dist/components/RecordEdition/EditRecordContent/uiElements/LinkField/link-record/ActionButton.d.ts +3 -0
  93. package/dist/components/RecordEdition/EditRecordContent/uiElements/LinkField/link-record/ActionButton.js +9 -0
  94. package/dist/components/RecordEdition/EditRecordContent/uiElements/LinkField/link-record/ActionButton.js.map +1 -0
  95. package/dist/components/RecordEdition/EditRecordContent/uiElements/LinkField/{link-record-in-edition/useLinkRecords.d.ts → link-record/useExplorerLinkRecords.d.ts} +2 -2
  96. package/dist/components/RecordEdition/EditRecordContent/uiElements/LinkField/{link-record-in-edition/useLinkRecords.js → link-record/useExplorerLinkRecords.js} +3 -3
  97. package/dist/components/RecordEdition/EditRecordContent/uiElements/LinkField/link-record/useExplorerLinkRecords.js.map +1 -0
  98. package/dist/components/RecordEdition/EditRecordContent/uiElements/LinkField/link-record/useLinkRecords.d.ts +24 -0
  99. package/dist/components/RecordEdition/EditRecordContent/uiElements/LinkField/link-record/useLinkRecords.js +76 -0
  100. package/dist/components/RecordEdition/EditRecordContent/uiElements/LinkField/link-record/useLinkRecords.js.map +1 -0
  101. package/dist/components/RecordEdition/EditRecordContent/uiElements/LinkField/shared/utils.js +1 -0
  102. package/dist/components/RecordEdition/EditRecordContent/uiElements/LinkField/shared/utils.js.map +1 -1
  103. package/dist/components/RecordEdition/EditRecordContent/uiElements/StandardField/StandardField.js +27 -22
  104. package/dist/components/RecordEdition/EditRecordContent/uiElements/StandardField/StandardField.js.map +1 -1
  105. package/dist/components/RecordEdition/EditRecordContent/uiElements/TextBlock/TextBlock.js.map +1 -1
  106. package/dist/components/RecordEdition/EditRecordContent/uiElements/TreeField/TreeField.d.ts +1 -1
  107. package/dist/components/RecordEdition/EditRecordContent/uiElements/TreeField/TreeField.js +19 -24
  108. package/dist/components/RecordEdition/EditRecordContent/uiElements/TreeField/TreeField.js.map +1 -1
  109. package/dist/components/RecordEdition/EditRecordContent/uiElements/TreeField/display-tree-node/TreeNodeItem.d.ts +2 -1
  110. package/dist/components/RecordEdition/EditRecordContent/uiElements/TreeField/display-tree-node/TreeNodeItem.js +2 -2
  111. package/dist/components/RecordEdition/EditRecordContent/uiElements/TreeField/display-tree-node/TreeNodeItem.js.map +1 -1
  112. package/dist/components/RecordEdition/EditRecordContent/uiElements/TreeField/display-tree-node/{useDisplayTreeNode.d.ts → TreeNodeList.d.ts} +4 -4
  113. package/dist/components/RecordEdition/EditRecordContent/uiElements/TreeField/display-tree-node/TreeNodeList.js +5 -0
  114. package/dist/components/RecordEdition/EditRecordContent/uiElements/TreeField/display-tree-node/TreeNodeList.js.map +1 -0
  115. package/dist/components/RecordEdition/EditRecordContent/uiElements/TreeField/manage-tree-node-selection/SelectTreeNodeModal.d.ts +16 -4
  116. package/dist/components/RecordEdition/EditRecordContent/uiElements/TreeField/manage-tree-node-selection/SelectTreeNodeModal.js +12 -13
  117. package/dist/components/RecordEdition/EditRecordContent/uiElements/TreeField/manage-tree-node-selection/SelectTreeNodeModal.js.map +1 -1
  118. package/dist/components/RecordEdition/EditRecordContent/uiElements/TreeField/manage-tree-node-selection/useManageTreeNodeSelection.d.ts +4 -2
  119. package/dist/components/RecordEdition/EditRecordContent/uiElements/TreeField/manage-tree-node-selection/useManageTreeNodeSelection.js +49 -62
  120. package/dist/components/RecordEdition/EditRecordContent/uiElements/TreeField/manage-tree-node-selection/useManageTreeNodeSelection.js.map +1 -1
  121. package/dist/components/RecordEdition/EditRecordContent/uiElements/shared/useOutsideInteractionDetector.d.ts +1 -3
  122. package/dist/components/RecordEdition/EditRecordContent/uiElements/shared/useOutsideInteractionDetector.js +6 -10
  123. package/dist/components/RecordEdition/EditRecordContent/uiElements/shared/useOutsideInteractionDetector.js.map +1 -1
  124. package/dist/components/RecordEdition/EditRecordModal/EditRecordModal.js +22 -4
  125. package/dist/components/RecordEdition/EditRecordModal/EditRecordModal.js.map +1 -1
  126. package/dist/components/RecordEdition/EditRecordPage/EditRecordPage.js +23 -5
  127. package/dist/components/RecordEdition/EditRecordPage/EditRecordPage.js.map +1 -1
  128. package/dist/components/RecordEdition/index.d.ts +2 -1
  129. package/dist/components/RecordEdition/index.js +2 -1
  130. package/dist/components/RecordEdition/index.js.map +1 -1
  131. package/dist/components/SelectRecordForLinkModal/SelectRecordForLinkModal.d.ts +4 -1
  132. package/dist/components/SelectRecordForLinkModal/SelectRecordForLinkModal.js +6 -4
  133. package/dist/components/SelectRecordForLinkModal/SelectRecordForLinkModal.js.map +1 -1
  134. package/dist/components/SelectTreeNode/SelectTreeNode.d.ts +7 -3
  135. package/dist/components/SelectTreeNode/SelectTreeNode.js +2 -3
  136. package/dist/components/SelectTreeNode/SelectTreeNode.js.map +1 -1
  137. package/dist/components/SelectTreeNode/SelectTreeNodeContent.d.ts +5 -1
  138. package/dist/components/SelectTreeNode/SelectTreeNodeContent.js +70 -56
  139. package/dist/components/SelectTreeNode/SelectTreeNodeContent.js.map +1 -1
  140. package/dist/components/SelectTreeNode/_types.d.ts +18 -0
  141. package/dist/components/SelectTreeNode/_types.js +2 -0
  142. package/dist/components/SelectTreeNode/_types.js.map +1 -0
  143. package/dist/components/{SelectTreeNodeModal/SelectTreeNodeModal.d.ts → SelectTreeNodeModalOld/SelectTreeNodeModalOld.d.ts} +1 -1
  144. package/dist/components/{SelectTreeNodeModal/SelectTreeNodeModal.js → SelectTreeNodeModalOld/SelectTreeNodeModalOld.js} +4 -2
  145. package/dist/components/SelectTreeNodeModalOld/SelectTreeNodeModalOld.js.map +1 -0
  146. package/dist/components/SelectTreeNodeModalOld/index.d.ts +1 -0
  147. package/dist/components/{LinkSelect → SelectTreeNodeModalOld}/index.js +1 -2
  148. package/dist/components/SelectTreeNodeModalOld/index.js.map +1 -0
  149. package/dist/components/ValuesVersionConfigurator/VersionTree/VersionTree.js +2 -2
  150. package/dist/components/ValuesVersionConfigurator/VersionTree/VersionTree.js.map +1 -1
  151. package/dist/components/index.d.ts +1 -1
  152. package/dist/components/index.js +1 -1
  153. package/dist/components/index.js.map +1 -1
  154. package/dist/hooks/index.d.ts +2 -0
  155. package/dist/hooks/index.js +2 -0
  156. package/dist/hooks/index.js.map +1 -1
  157. package/dist/hooks/useIFrameMessenger/messageHandlers.d.ts +2 -1
  158. package/dist/hooks/useIFrameMessenger/messageHandlers.js +3 -0
  159. package/dist/hooks/useIFrameMessenger/messageHandlers.js.map +1 -1
  160. package/dist/hooks/useIFrameMessenger/schema.d.ts +21 -0
  161. package/dist/hooks/useIFrameMessenger/schema.js +76 -0
  162. package/dist/hooks/useIFrameMessenger/schema.js.map +1 -0
  163. package/dist/hooks/useIFrameMessenger/types.d.ts +33 -5
  164. package/dist/hooks/useIFrameMessenger/types.js.map +1 -1
  165. package/dist/hooks/useIFrameMessenger/useIFrameMessenger.d.ts +9 -1
  166. package/dist/hooks/useIFrameMessenger/useIFrameMessenger.js +55 -20
  167. package/dist/hooks/useIFrameMessenger/useIFrameMessenger.js.map +1 -1
  168. package/dist/hooks/useIFrameMessengerClient/IFrameMessengerClient.d.ts +7 -0
  169. package/dist/hooks/useIFrameMessengerClient/IFrameMessengerClient.js +13 -0
  170. package/dist/hooks/useIFrameMessengerClient/IFrameMessengerClient.js.map +1 -0
  171. package/dist/hooks/useIFrameMessengerClient/iFrameMessengerClientContext.d.ts +13 -0
  172. package/dist/{components/RecordEdition/EditRecord/creationErrorContext.js → hooks/useIFrameMessengerClient/iFrameMessengerClientContext.js} +2 -3
  173. package/dist/hooks/useIFrameMessengerClient/iFrameMessengerClientContext.js.map +1 -0
  174. package/dist/hooks/useIFrameMessengerClient/useIFrameMessengerClient.d.ts +13 -0
  175. package/dist/hooks/useIFrameMessengerClient/useIFrameMessengerClient.js +13 -0
  176. package/dist/hooks/useIFrameMessengerClient/useIFrameMessengerClient.js.map +1 -0
  177. package/dist/locales/en/shared.json +2 -1
  178. package/dist/locales/fr/shared.json +1 -0
  179. package/dist/types/attributes.d.ts +2 -1
  180. package/package.json +22 -6
  181. package/dist/components/LinkSelect/LinkSelect.d.ts +0 -12
  182. package/dist/components/LinkSelect/LinkSelect.js +0 -44
  183. package/dist/components/LinkSelect/LinkSelect.js.map +0 -1
  184. package/dist/components/LinkSelect/index.d.ts +0 -2
  185. package/dist/components/LinkSelect/index.js.map +0 -1
  186. package/dist/components/RecordEdition/EditRecord/creationErrorContext.d.ts +0 -6
  187. package/dist/components/RecordEdition/EditRecord/creationErrorContext.js.map +0 -1
  188. package/dist/components/RecordEdition/EditRecordContent/hooks/useCreateRecordMutation.d.ts +0 -5
  189. package/dist/components/RecordEdition/EditRecordContent/hooks/useCreateRecordMutation.js +0 -28
  190. package/dist/components/RecordEdition/EditRecordContent/hooks/useCreateRecordMutation.js.map +0 -1
  191. package/dist/components/RecordEdition/EditRecordContent/hooks/useRunActionsListAndFormatOnValue.d.ts +0 -121
  192. package/dist/components/RecordEdition/EditRecordContent/hooks/useRunActionsListAndFormatOnValue.js +0 -31
  193. package/dist/components/RecordEdition/EditRecordContent/hooks/useRunActionsListAndFormatOnValue.js.map +0 -1
  194. package/dist/components/RecordEdition/EditRecordContent/uiElements/LinkField/action-item/useEditRecord.d.ts +0 -5
  195. package/dist/components/RecordEdition/EditRecordContent/uiElements/LinkField/action-item/useEditRecord.js +0 -39
  196. package/dist/components/RecordEdition/EditRecordContent/uiElements/LinkField/action-item/useEditRecord.js.map +0 -1
  197. package/dist/components/RecordEdition/EditRecordContent/uiElements/LinkField/action-item/useUnselectRecord.d.ts +0 -8
  198. package/dist/components/RecordEdition/EditRecordContent/uiElements/LinkField/action-item/useUnselectRecord.js +0 -23
  199. package/dist/components/RecordEdition/EditRecordContent/uiElements/LinkField/action-item/useUnselectRecord.js.map +0 -1
  200. package/dist/components/RecordEdition/EditRecordContent/uiElements/LinkField/action-mass/useUnselectAllRecords.d.ts +0 -9
  201. package/dist/components/RecordEdition/EditRecordContent/uiElements/LinkField/action-mass/useUnselectAllRecords.js +0 -23
  202. package/dist/components/RecordEdition/EditRecordContent/uiElements/LinkField/action-mass/useUnselectAllRecords.js.map +0 -1
  203. package/dist/components/RecordEdition/EditRecordContent/uiElements/LinkField/action-primary/useCreateRecord.d.ts +0 -8
  204. package/dist/components/RecordEdition/EditRecordContent/uiElements/LinkField/action-primary/useCreateRecord.js +0 -26
  205. package/dist/components/RecordEdition/EditRecordContent/uiElements/LinkField/action-primary/useCreateRecord.js.map +0 -1
  206. package/dist/components/RecordEdition/EditRecordContent/uiElements/LinkField/action-primary/useRecordSelector.d.ts +0 -12
  207. package/dist/components/RecordEdition/EditRecordContent/uiElements/LinkField/action-primary/useRecordSelector.js +0 -24
  208. package/dist/components/RecordEdition/EditRecordContent/uiElements/LinkField/action-primary/useRecordSelector.js.map +0 -1
  209. package/dist/components/RecordEdition/EditRecordContent/uiElements/LinkField/link-record-in-creation/useLinkRecords.d.ts +0 -19
  210. package/dist/components/RecordEdition/EditRecordContent/uiElements/LinkField/link-record-in-creation/useLinkRecords.js +0 -103
  211. package/dist/components/RecordEdition/EditRecordContent/uiElements/LinkField/link-record-in-creation/useLinkRecords.js.map +0 -1
  212. package/dist/components/RecordEdition/EditRecordContent/uiElements/LinkField/link-record-in-creation/useLinkRecordsInCreation.d.ts +0 -22
  213. package/dist/components/RecordEdition/EditRecordContent/uiElements/LinkField/link-record-in-creation/useLinkRecordsInCreation.js +0 -104
  214. package/dist/components/RecordEdition/EditRecordContent/uiElements/LinkField/link-record-in-creation/useLinkRecordsInCreation.js.map +0 -1
  215. package/dist/components/RecordEdition/EditRecordContent/uiElements/LinkField/link-record-in-edition/useLinkRecords.js.map +0 -1
  216. package/dist/components/RecordEdition/EditRecordContent/uiElements/LinkField/link-record-in-edition/useLinkRecordsInEdition.d.ts +0 -27
  217. package/dist/components/RecordEdition/EditRecordContent/uiElements/LinkField/link-record-in-edition/useLinkRecordsInEdition.js +0 -124
  218. package/dist/components/RecordEdition/EditRecordContent/uiElements/LinkField/link-record-in-edition/useLinkRecordsInEdition.js.map +0 -1
  219. package/dist/components/RecordEdition/EditRecordContent/uiElements/LinkField/shared/LinkActionsButtons.d.ts +0 -9
  220. package/dist/components/RecordEdition/EditRecordContent/uiElements/LinkField/shared/LinkActionsButtons.js +0 -15
  221. package/dist/components/RecordEdition/EditRecordContent/uiElements/LinkField/shared/LinkActionsButtons.js.map +0 -1
  222. package/dist/components/RecordEdition/EditRecordContent/uiElements/StandardField/StandardFieldValue/ValuesList/ValuesList.d.ts +0 -16
  223. package/dist/components/RecordEdition/EditRecordContent/uiElements/StandardField/StandardFieldValue/ValuesList/ValuesList.js +0 -35
  224. package/dist/components/RecordEdition/EditRecordContent/uiElements/StandardField/StandardFieldValue/ValuesList/ValuesList.js.map +0 -1
  225. package/dist/components/RecordEdition/EditRecordContent/uiElements/StandardField/StandardFieldValue/ValuesList/index.d.ts +0 -2
  226. package/dist/components/RecordEdition/EditRecordContent/uiElements/StandardField/StandardFieldValue/ValuesList/index.js +0 -6
  227. package/dist/components/RecordEdition/EditRecordContent/uiElements/StandardField/StandardFieldValue/ValuesList/index.js.map +0 -1
  228. package/dist/components/RecordEdition/EditRecordContent/uiElements/TreeField/display-tree-node/useDisplayTreeNode.js +0 -8
  229. package/dist/components/RecordEdition/EditRecordContent/uiElements/TreeField/display-tree-node/useDisplayTreeNode.js.map +0 -1
  230. package/dist/components/SelectTreeNodeModal/SelectTreeNodeModal.js.map +0 -1
  231. package/dist/components/SelectTreeNodeModal/index.d.ts +0 -1
  232. package/dist/components/SelectTreeNodeModal/index.js +0 -5
  233. package/dist/components/SelectTreeNodeModal/index.js.map +0 -1
@@ -183,6 +183,20 @@ export declare enum AvailableLanguage {
183
183
  en = "en",
184
184
  fr = "fr"
185
185
  }
186
+ export type CampaignToRenew = {
187
+ category: Scalars['String'];
188
+ endDate: Scalars['String'];
189
+ id: Scalars['String'];
190
+ label: Scalars['String'];
191
+ startDate: Scalars['String'];
192
+ thematics: Array<InputMaybe<Scalars['String']>>;
193
+ type: Scalars['String'];
194
+ };
195
+ export type ChildrenAsRecordValuePermissionFilterInput = {
196
+ action: RecordPermissionsActions;
197
+ attributeId: Scalars['ID'];
198
+ libraryId: Scalars['ID'];
199
+ };
186
200
  export type CreateRecordDataInput = {
187
201
  values?: InputMaybe<Array<ValueBatchInput>>;
188
202
  version?: InputMaybe<Array<ValueVersionInput>>;
@@ -259,16 +273,6 @@ export declare enum FormsSortableFields {
259
273
  library = "library",
260
274
  system = "system"
261
275
  }
262
- export declare enum GenerationStatus {
263
- DONE = "DONE",
264
- GENERATION_FAILED = "GENERATION_FAILED",
265
- GENERATION_IN_PROGRESS = "GENERATION_IN_PROGRESS",
266
- GENERATION_IN_PROGRESS_WITH_FAILURE = "GENERATION_IN_PROGRESS_WITH_FAILURE",
267
- PREPARATION_FAILED = "PREPARATION_FAILED",
268
- PREPARATION_IN_PROGRESS = "PREPARATION_IN_PROGRESS",
269
- TRANSMISSION_FAILED = "TRANSMISSION_FAILED",
270
- TRANSMISSION_IN_PROGRESS = "TRANSMISSION_IN_PROGRESS"
271
- }
272
276
  export type GlobalSettingsFileInput = {
273
277
  library: Scalars['String'];
274
278
  recordId: Scalars['String'];
@@ -356,9 +360,6 @@ export declare enum LogAction {
356
360
  PERMISSION_SAVE = "PERMISSION_SAVE",
357
361
  RECORD_DELETE = "RECORD_DELETE",
358
362
  RECORD_SAVE = "RECORD_SAVE",
359
- SDO_LOG_ERROR = "SDO_LOG_ERROR",
360
- SDO_LOG_EXPORT_RECORD = "SDO_LOG_EXPORT_RECORD",
361
- SDO_LOG_IMPORT_RECORD = "SDO_LOG_IMPORT_RECORD",
362
363
  TASKS_DELETE = "TASKS_DELETE",
363
364
  TREE_ADD_ELEMENT = "TREE_ADD_ELEMENT",
364
365
  TREE_DELETE = "TREE_DELETE",
@@ -460,6 +461,7 @@ export declare enum PermissionsActions {
460
461
  admin_access_applications = "admin_access_applications",
461
462
  admin_access_attributes = "admin_access_attributes",
462
463
  admin_access_libraries = "admin_access_libraries",
464
+ admin_access_logs = "admin_access_logs",
463
465
  admin_access_permissions = "admin_access_permissions",
464
466
  admin_access_tasks = "admin_access_tasks",
465
467
  admin_access_trees = "admin_access_trees",
@@ -487,6 +489,7 @@ export declare enum PermissionsActions {
487
489
  admin_edit_permission = "admin_edit_permission",
488
490
  admin_edit_tree = "admin_edit_tree",
489
491
  admin_edit_version_profile = "admin_edit_version_profile",
492
+ admin_import_config_clear_database = "admin_import_config_clear_database",
490
493
  admin_library = "admin_library",
491
494
  admin_manage_global_preferences = "admin_manage_global_preferences",
492
495
  create_record = "create_record",
@@ -566,6 +569,12 @@ export type RecordInput = {
566
569
  id: Scalars['ID'];
567
570
  library: Scalars['String'];
568
571
  };
572
+ export declare enum RecordPermissionsActions {
573
+ access_record = "access_record",
574
+ create_record = "create_record",
575
+ delete_record = "delete_record",
576
+ edit_record = "edit_record"
577
+ }
569
578
  export type RecordSortInput = {
570
579
  field: Scalars['String'];
571
580
  order: SortOrder;
@@ -1785,6 +1794,261 @@ export type RecordFormElementFragment = {
1785
1794
  key: string;
1786
1795
  value: any;
1787
1796
  }>;
1797
+ joinLibraryContext?: {
1798
+ mandatoryAttribute: {
1799
+ id: string;
1800
+ label?: any | null;
1801
+ description?: any | null;
1802
+ type: AttributeType;
1803
+ format?: AttributeFormat | null;
1804
+ system: boolean;
1805
+ readonly: boolean;
1806
+ required: boolean;
1807
+ multiple_values: boolean;
1808
+ compute: boolean;
1809
+ linked_library?: {
1810
+ id: string;
1811
+ label?: any | null;
1812
+ behavior: LibraryBehavior;
1813
+ permissions?: {
1814
+ create_record: boolean;
1815
+ } | null;
1816
+ } | null;
1817
+ linkValuesList?: {
1818
+ enable: boolean;
1819
+ allowFreeEntry?: boolean | null;
1820
+ allowListUpdate?: boolean | null;
1821
+ values?: Array<{
1822
+ id: string;
1823
+ whoAmI: {
1824
+ id: string;
1825
+ label?: string | null;
1826
+ subLabel?: string | null;
1827
+ color?: string | null;
1828
+ preview?: IPreviewScalar | null;
1829
+ library: {
1830
+ id: string;
1831
+ label?: any | null;
1832
+ };
1833
+ };
1834
+ }> | null;
1835
+ } | null;
1836
+ permissions: {
1837
+ access_attribute: boolean;
1838
+ edit_value: boolean;
1839
+ };
1840
+ versions_conf?: {
1841
+ versionable: boolean;
1842
+ profile?: {
1843
+ id: string;
1844
+ trees: Array<{
1845
+ id: string;
1846
+ label?: any | null;
1847
+ }>;
1848
+ } | null;
1849
+ } | null;
1850
+ metadata_fields?: Array<{
1851
+ id: string;
1852
+ label?: any | null;
1853
+ description?: any | null;
1854
+ type: AttributeType;
1855
+ format?: AttributeFormat | null;
1856
+ system: boolean;
1857
+ readonly: boolean;
1858
+ multiple_values: boolean;
1859
+ permissions: {
1860
+ access_attribute: boolean;
1861
+ edit_value: boolean;
1862
+ };
1863
+ values_list?: {
1864
+ enable: boolean;
1865
+ allowFreeEntry?: boolean | null;
1866
+ allowListUpdate?: boolean | null;
1867
+ dateRangeValues?: Array<{
1868
+ from?: string | null;
1869
+ to?: string | null;
1870
+ }> | null;
1871
+ } | {
1872
+ enable: boolean;
1873
+ allowFreeEntry?: boolean | null;
1874
+ allowListUpdate?: boolean | null;
1875
+ values?: Array<string> | null;
1876
+ } | null;
1877
+ metadata_fields?: Array<{
1878
+ id: string;
1879
+ }> | null;
1880
+ }> | null;
1881
+ } | {
1882
+ character_limit?: number | null;
1883
+ id: string;
1884
+ label?: any | null;
1885
+ description?: any | null;
1886
+ type: AttributeType;
1887
+ format?: AttributeFormat | null;
1888
+ system: boolean;
1889
+ readonly: boolean;
1890
+ required: boolean;
1891
+ multiple_values: boolean;
1892
+ compute: boolean;
1893
+ values_list?: {
1894
+ enable: boolean;
1895
+ allowFreeEntry?: boolean | null;
1896
+ allowListUpdate?: boolean | null;
1897
+ dateRangeValues?: Array<{
1898
+ from?: string | null;
1899
+ to?: string | null;
1900
+ }> | null;
1901
+ } | {
1902
+ enable: boolean;
1903
+ allowFreeEntry?: boolean | null;
1904
+ allowListUpdate?: boolean | null;
1905
+ values?: Array<string> | null;
1906
+ } | null;
1907
+ permissions: {
1908
+ access_attribute: boolean;
1909
+ edit_value: boolean;
1910
+ };
1911
+ versions_conf?: {
1912
+ versionable: boolean;
1913
+ profile?: {
1914
+ id: string;
1915
+ trees: Array<{
1916
+ id: string;
1917
+ label?: any | null;
1918
+ }>;
1919
+ } | null;
1920
+ } | null;
1921
+ metadata_fields?: Array<{
1922
+ id: string;
1923
+ label?: any | null;
1924
+ description?: any | null;
1925
+ type: AttributeType;
1926
+ format?: AttributeFormat | null;
1927
+ system: boolean;
1928
+ readonly: boolean;
1929
+ multiple_values: boolean;
1930
+ permissions: {
1931
+ access_attribute: boolean;
1932
+ edit_value: boolean;
1933
+ };
1934
+ values_list?: {
1935
+ enable: boolean;
1936
+ allowFreeEntry?: boolean | null;
1937
+ allowListUpdate?: boolean | null;
1938
+ dateRangeValues?: Array<{
1939
+ from?: string | null;
1940
+ to?: string | null;
1941
+ }> | null;
1942
+ } | {
1943
+ enable: boolean;
1944
+ allowFreeEntry?: boolean | null;
1945
+ allowListUpdate?: boolean | null;
1946
+ values?: Array<string> | null;
1947
+ } | null;
1948
+ metadata_fields?: Array<{
1949
+ id: string;
1950
+ }> | null;
1951
+ }> | null;
1952
+ } | {
1953
+ id: string;
1954
+ label?: any | null;
1955
+ description?: any | null;
1956
+ type: AttributeType;
1957
+ format?: AttributeFormat | null;
1958
+ system: boolean;
1959
+ readonly: boolean;
1960
+ required: boolean;
1961
+ multiple_values: boolean;
1962
+ compute: boolean;
1963
+ linked_tree?: {
1964
+ id: string;
1965
+ label?: any | null;
1966
+ } | null;
1967
+ treeValuesList?: {
1968
+ enable: boolean;
1969
+ allowFreeEntry?: boolean | null;
1970
+ allowListUpdate?: boolean | null;
1971
+ values?: Array<{
1972
+ id: string;
1973
+ record: {
1974
+ id: string;
1975
+ whoAmI: {
1976
+ id: string;
1977
+ label?: string | null;
1978
+ subLabel?: string | null;
1979
+ color?: string | null;
1980
+ preview?: IPreviewScalar | null;
1981
+ library: {
1982
+ id: string;
1983
+ label?: any | null;
1984
+ };
1985
+ };
1986
+ };
1987
+ ancestors?: Array<{
1988
+ record: {
1989
+ id: string;
1990
+ whoAmI: {
1991
+ id: string;
1992
+ label?: string | null;
1993
+ subLabel?: string | null;
1994
+ color?: string | null;
1995
+ preview?: IPreviewScalar | null;
1996
+ library: {
1997
+ id: string;
1998
+ label?: any | null;
1999
+ };
2000
+ };
2001
+ };
2002
+ }> | null;
2003
+ }> | null;
2004
+ } | null;
2005
+ permissions: {
2006
+ access_attribute: boolean;
2007
+ edit_value: boolean;
2008
+ };
2009
+ versions_conf?: {
2010
+ versionable: boolean;
2011
+ profile?: {
2012
+ id: string;
2013
+ trees: Array<{
2014
+ id: string;
2015
+ label?: any | null;
2016
+ }>;
2017
+ } | null;
2018
+ } | null;
2019
+ metadata_fields?: Array<{
2020
+ id: string;
2021
+ label?: any | null;
2022
+ description?: any | null;
2023
+ type: AttributeType;
2024
+ format?: AttributeFormat | null;
2025
+ system: boolean;
2026
+ readonly: boolean;
2027
+ multiple_values: boolean;
2028
+ permissions: {
2029
+ access_attribute: boolean;
2030
+ edit_value: boolean;
2031
+ };
2032
+ values_list?: {
2033
+ enable: boolean;
2034
+ allowFreeEntry?: boolean | null;
2035
+ allowListUpdate?: boolean | null;
2036
+ dateRangeValues?: Array<{
2037
+ from?: string | null;
2038
+ to?: string | null;
2039
+ }> | null;
2040
+ } | {
2041
+ enable: boolean;
2042
+ allowFreeEntry?: boolean | null;
2043
+ allowListUpdate?: boolean | null;
2044
+ values?: Array<string> | null;
2045
+ } | null;
2046
+ metadata_fields?: Array<{
2047
+ id: string;
2048
+ }> | null;
2049
+ }> | null;
2050
+ };
2051
+ } | null;
1788
2052
  };
1789
2053
  export type ValueDetailsLinkValueFragment = {
1790
2054
  id_value?: string | null;
@@ -2459,11 +2723,266 @@ export type StandardValuesListFragmentStandardStringValuesListConfFragment = {
2459
2723
  values?: Array<string> | null;
2460
2724
  };
2461
2725
  export type StandardValuesListFragmentFragment = StandardValuesListFragmentStandardDateRangeValuesListConfFragment | StandardValuesListFragmentStandardStringValuesListConfFragment;
2462
- export type TreeDetailsFragment = {
2463
- id: string;
2464
- label?: any | null;
2465
- behavior: TreeBehavior;
2466
- system: boolean;
2726
+ export type JoinLibraryContextFragment = {
2727
+ mandatoryAttribute: {
2728
+ id: string;
2729
+ label?: any | null;
2730
+ description?: any | null;
2731
+ type: AttributeType;
2732
+ format?: AttributeFormat | null;
2733
+ system: boolean;
2734
+ readonly: boolean;
2735
+ required: boolean;
2736
+ multiple_values: boolean;
2737
+ compute: boolean;
2738
+ linked_library?: {
2739
+ id: string;
2740
+ label?: any | null;
2741
+ behavior: LibraryBehavior;
2742
+ permissions?: {
2743
+ create_record: boolean;
2744
+ } | null;
2745
+ } | null;
2746
+ linkValuesList?: {
2747
+ enable: boolean;
2748
+ allowFreeEntry?: boolean | null;
2749
+ allowListUpdate?: boolean | null;
2750
+ values?: Array<{
2751
+ id: string;
2752
+ whoAmI: {
2753
+ id: string;
2754
+ label?: string | null;
2755
+ subLabel?: string | null;
2756
+ color?: string | null;
2757
+ preview?: IPreviewScalar | null;
2758
+ library: {
2759
+ id: string;
2760
+ label?: any | null;
2761
+ };
2762
+ };
2763
+ }> | null;
2764
+ } | null;
2765
+ permissions: {
2766
+ access_attribute: boolean;
2767
+ edit_value: boolean;
2768
+ };
2769
+ versions_conf?: {
2770
+ versionable: boolean;
2771
+ profile?: {
2772
+ id: string;
2773
+ trees: Array<{
2774
+ id: string;
2775
+ label?: any | null;
2776
+ }>;
2777
+ } | null;
2778
+ } | null;
2779
+ metadata_fields?: Array<{
2780
+ id: string;
2781
+ label?: any | null;
2782
+ description?: any | null;
2783
+ type: AttributeType;
2784
+ format?: AttributeFormat | null;
2785
+ system: boolean;
2786
+ readonly: boolean;
2787
+ multiple_values: boolean;
2788
+ permissions: {
2789
+ access_attribute: boolean;
2790
+ edit_value: boolean;
2791
+ };
2792
+ values_list?: {
2793
+ enable: boolean;
2794
+ allowFreeEntry?: boolean | null;
2795
+ allowListUpdate?: boolean | null;
2796
+ dateRangeValues?: Array<{
2797
+ from?: string | null;
2798
+ to?: string | null;
2799
+ }> | null;
2800
+ } | {
2801
+ enable: boolean;
2802
+ allowFreeEntry?: boolean | null;
2803
+ allowListUpdate?: boolean | null;
2804
+ values?: Array<string> | null;
2805
+ } | null;
2806
+ metadata_fields?: Array<{
2807
+ id: string;
2808
+ }> | null;
2809
+ }> | null;
2810
+ } | {
2811
+ character_limit?: number | null;
2812
+ id: string;
2813
+ label?: any | null;
2814
+ description?: any | null;
2815
+ type: AttributeType;
2816
+ format?: AttributeFormat | null;
2817
+ system: boolean;
2818
+ readonly: boolean;
2819
+ required: boolean;
2820
+ multiple_values: boolean;
2821
+ compute: boolean;
2822
+ values_list?: {
2823
+ enable: boolean;
2824
+ allowFreeEntry?: boolean | null;
2825
+ allowListUpdate?: boolean | null;
2826
+ dateRangeValues?: Array<{
2827
+ from?: string | null;
2828
+ to?: string | null;
2829
+ }> | null;
2830
+ } | {
2831
+ enable: boolean;
2832
+ allowFreeEntry?: boolean | null;
2833
+ allowListUpdate?: boolean | null;
2834
+ values?: Array<string> | null;
2835
+ } | null;
2836
+ permissions: {
2837
+ access_attribute: boolean;
2838
+ edit_value: boolean;
2839
+ };
2840
+ versions_conf?: {
2841
+ versionable: boolean;
2842
+ profile?: {
2843
+ id: string;
2844
+ trees: Array<{
2845
+ id: string;
2846
+ label?: any | null;
2847
+ }>;
2848
+ } | null;
2849
+ } | null;
2850
+ metadata_fields?: Array<{
2851
+ id: string;
2852
+ label?: any | null;
2853
+ description?: any | null;
2854
+ type: AttributeType;
2855
+ format?: AttributeFormat | null;
2856
+ system: boolean;
2857
+ readonly: boolean;
2858
+ multiple_values: boolean;
2859
+ permissions: {
2860
+ access_attribute: boolean;
2861
+ edit_value: boolean;
2862
+ };
2863
+ values_list?: {
2864
+ enable: boolean;
2865
+ allowFreeEntry?: boolean | null;
2866
+ allowListUpdate?: boolean | null;
2867
+ dateRangeValues?: Array<{
2868
+ from?: string | null;
2869
+ to?: string | null;
2870
+ }> | null;
2871
+ } | {
2872
+ enable: boolean;
2873
+ allowFreeEntry?: boolean | null;
2874
+ allowListUpdate?: boolean | null;
2875
+ values?: Array<string> | null;
2876
+ } | null;
2877
+ metadata_fields?: Array<{
2878
+ id: string;
2879
+ }> | null;
2880
+ }> | null;
2881
+ } | {
2882
+ id: string;
2883
+ label?: any | null;
2884
+ description?: any | null;
2885
+ type: AttributeType;
2886
+ format?: AttributeFormat | null;
2887
+ system: boolean;
2888
+ readonly: boolean;
2889
+ required: boolean;
2890
+ multiple_values: boolean;
2891
+ compute: boolean;
2892
+ linked_tree?: {
2893
+ id: string;
2894
+ label?: any | null;
2895
+ } | null;
2896
+ treeValuesList?: {
2897
+ enable: boolean;
2898
+ allowFreeEntry?: boolean | null;
2899
+ allowListUpdate?: boolean | null;
2900
+ values?: Array<{
2901
+ id: string;
2902
+ record: {
2903
+ id: string;
2904
+ whoAmI: {
2905
+ id: string;
2906
+ label?: string | null;
2907
+ subLabel?: string | null;
2908
+ color?: string | null;
2909
+ preview?: IPreviewScalar | null;
2910
+ library: {
2911
+ id: string;
2912
+ label?: any | null;
2913
+ };
2914
+ };
2915
+ };
2916
+ ancestors?: Array<{
2917
+ record: {
2918
+ id: string;
2919
+ whoAmI: {
2920
+ id: string;
2921
+ label?: string | null;
2922
+ subLabel?: string | null;
2923
+ color?: string | null;
2924
+ preview?: IPreviewScalar | null;
2925
+ library: {
2926
+ id: string;
2927
+ label?: any | null;
2928
+ };
2929
+ };
2930
+ };
2931
+ }> | null;
2932
+ }> | null;
2933
+ } | null;
2934
+ permissions: {
2935
+ access_attribute: boolean;
2936
+ edit_value: boolean;
2937
+ };
2938
+ versions_conf?: {
2939
+ versionable: boolean;
2940
+ profile?: {
2941
+ id: string;
2942
+ trees: Array<{
2943
+ id: string;
2944
+ label?: any | null;
2945
+ }>;
2946
+ } | null;
2947
+ } | null;
2948
+ metadata_fields?: Array<{
2949
+ id: string;
2950
+ label?: any | null;
2951
+ description?: any | null;
2952
+ type: AttributeType;
2953
+ format?: AttributeFormat | null;
2954
+ system: boolean;
2955
+ readonly: boolean;
2956
+ multiple_values: boolean;
2957
+ permissions: {
2958
+ access_attribute: boolean;
2959
+ edit_value: boolean;
2960
+ };
2961
+ values_list?: {
2962
+ enable: boolean;
2963
+ allowFreeEntry?: boolean | null;
2964
+ allowListUpdate?: boolean | null;
2965
+ dateRangeValues?: Array<{
2966
+ from?: string | null;
2967
+ to?: string | null;
2968
+ }> | null;
2969
+ } | {
2970
+ enable: boolean;
2971
+ allowFreeEntry?: boolean | null;
2972
+ allowListUpdate?: boolean | null;
2973
+ values?: Array<string> | null;
2974
+ } | null;
2975
+ metadata_fields?: Array<{
2976
+ id: string;
2977
+ }> | null;
2978
+ }> | null;
2979
+ };
2980
+ };
2981
+ export type TreeDetailsFragment = {
2982
+ id: string;
2983
+ label?: any | null;
2984
+ behavior: TreeBehavior;
2985
+ system: boolean;
2467
2986
  libraries: Array<{
2468
2987
  library: {
2469
2988
  id: string;
@@ -2662,6 +3181,27 @@ export type LinkAttributeDetailsFragment = {
2662
3181
  id: string;
2663
3182
  label?: any | null;
2664
3183
  } | null;
3184
+ values_list?: {
3185
+ allowFreeEntry?: boolean | null;
3186
+ enable: boolean;
3187
+ values?: Array<{
3188
+ id: string;
3189
+ whoAmI: {
3190
+ id: string;
3191
+ library: {
3192
+ id: string;
3193
+ };
3194
+ };
3195
+ }> | null;
3196
+ } | null;
3197
+ };
3198
+ export type TreeAttributeDetailsFragment = {
3199
+ id: string;
3200
+ label?: any | null;
3201
+ linked_tree?: {
3202
+ id: string;
3203
+ label?: any | null;
3204
+ } | null;
2665
3205
  };
2666
3206
  export type AttributePropertiesFragment = {
2667
3207
  id: string;
@@ -3702,6 +4242,33 @@ export type ActivateRecordsMutation = {
3702
4242
  };
3703
4243
  }>;
3704
4244
  };
4245
+ export type CreateEmptyRecordMutationVariables = Exact<{
4246
+ library: Scalars['ID'];
4247
+ }>;
4248
+ export type CreateEmptyRecordMutation = {
4249
+ createEmptyRecord: {
4250
+ record?: {
4251
+ id: string;
4252
+ whoAmI: {
4253
+ id: string;
4254
+ label?: string | null;
4255
+ subLabel?: string | null;
4256
+ color?: string | null;
4257
+ preview?: IPreviewScalar | null;
4258
+ library: {
4259
+ id: string;
4260
+ label?: any | null;
4261
+ };
4262
+ };
4263
+ } | null;
4264
+ valuesErrors?: Array<{
4265
+ type: string;
4266
+ attribute: string;
4267
+ input?: string | null;
4268
+ message: string;
4269
+ }> | null;
4270
+ };
4271
+ };
3705
4272
  export type CreateRecordMutationVariables = Exact<{
3706
4273
  library: Scalars['ID'];
3707
4274
  data?: InputMaybe<CreateRecordDataInput>;
@@ -4389,43 +4956,286 @@ export type RecordFormQuery = {
4389
4956
  metadata_fields?: Array<{
4390
4957
  id: string;
4391
4958
  }> | null;
4392
- }> | null;
4393
- } | {
4394
- id: string;
4395
- label?: any | null;
4396
- description?: any | null;
4397
- type: AttributeType;
4398
- format?: AttributeFormat | null;
4399
- system: boolean;
4400
- readonly: boolean;
4401
- required: boolean;
4402
- multiple_values: boolean;
4403
- compute: boolean;
4404
- linked_tree?: {
4959
+ }> | null;
4960
+ } | {
4961
+ id: string;
4962
+ label?: any | null;
4963
+ description?: any | null;
4964
+ type: AttributeType;
4965
+ format?: AttributeFormat | null;
4966
+ system: boolean;
4967
+ readonly: boolean;
4968
+ required: boolean;
4969
+ multiple_values: boolean;
4970
+ compute: boolean;
4971
+ linked_tree?: {
4972
+ id: string;
4973
+ label?: any | null;
4974
+ } | null;
4975
+ treeValuesList?: {
4976
+ enable: boolean;
4977
+ allowFreeEntry?: boolean | null;
4978
+ allowListUpdate?: boolean | null;
4979
+ values?: Array<{
4980
+ id: string;
4981
+ record: {
4982
+ id: string;
4983
+ whoAmI: {
4984
+ id: string;
4985
+ label?: string | null;
4986
+ subLabel?: string | null;
4987
+ color?: string | null;
4988
+ preview?: IPreviewScalar | null;
4989
+ library: {
4990
+ id: string;
4991
+ label?: any | null;
4992
+ };
4993
+ };
4994
+ };
4995
+ ancestors?: Array<{
4996
+ record: {
4997
+ id: string;
4998
+ whoAmI: {
4999
+ id: string;
5000
+ label?: string | null;
5001
+ subLabel?: string | null;
5002
+ color?: string | null;
5003
+ preview?: IPreviewScalar | null;
5004
+ library: {
5005
+ id: string;
5006
+ label?: any | null;
5007
+ };
5008
+ };
5009
+ };
5010
+ }> | null;
5011
+ }> | null;
5012
+ } | null;
5013
+ permissions: {
5014
+ access_attribute: boolean;
5015
+ edit_value: boolean;
5016
+ };
5017
+ versions_conf?: {
5018
+ versionable: boolean;
5019
+ profile?: {
5020
+ id: string;
5021
+ trees: Array<{
5022
+ id: string;
5023
+ label?: any | null;
5024
+ }>;
5025
+ } | null;
5026
+ } | null;
5027
+ metadata_fields?: Array<{
5028
+ id: string;
5029
+ label?: any | null;
5030
+ description?: any | null;
5031
+ type: AttributeType;
5032
+ format?: AttributeFormat | null;
5033
+ system: boolean;
5034
+ readonly: boolean;
5035
+ multiple_values: boolean;
5036
+ permissions: {
5037
+ access_attribute: boolean;
5038
+ edit_value: boolean;
5039
+ };
5040
+ values_list?: {
5041
+ enable: boolean;
5042
+ allowFreeEntry?: boolean | null;
5043
+ allowListUpdate?: boolean | null;
5044
+ dateRangeValues?: Array<{
5045
+ from?: string | null;
5046
+ to?: string | null;
5047
+ }> | null;
5048
+ } | {
5049
+ enable: boolean;
5050
+ allowFreeEntry?: boolean | null;
5051
+ allowListUpdate?: boolean | null;
5052
+ values?: Array<string> | null;
5053
+ } | null;
5054
+ metadata_fields?: Array<{
5055
+ id: string;
5056
+ }> | null;
5057
+ }> | null;
5058
+ } | null;
5059
+ settings: Array<{
5060
+ key: string;
5061
+ value: any;
5062
+ }>;
5063
+ joinLibraryContext?: {
5064
+ mandatoryAttribute: {
5065
+ id: string;
5066
+ label?: any | null;
5067
+ description?: any | null;
5068
+ type: AttributeType;
5069
+ format?: AttributeFormat | null;
5070
+ system: boolean;
5071
+ readonly: boolean;
5072
+ required: boolean;
5073
+ multiple_values: boolean;
5074
+ compute: boolean;
5075
+ linked_library?: {
5076
+ id: string;
5077
+ label?: any | null;
5078
+ behavior: LibraryBehavior;
5079
+ permissions?: {
5080
+ create_record: boolean;
5081
+ } | null;
5082
+ } | null;
5083
+ linkValuesList?: {
5084
+ enable: boolean;
5085
+ allowFreeEntry?: boolean | null;
5086
+ allowListUpdate?: boolean | null;
5087
+ values?: Array<{
5088
+ id: string;
5089
+ whoAmI: {
5090
+ id: string;
5091
+ label?: string | null;
5092
+ subLabel?: string | null;
5093
+ color?: string | null;
5094
+ preview?: IPreviewScalar | null;
5095
+ library: {
5096
+ id: string;
5097
+ label?: any | null;
5098
+ };
5099
+ };
5100
+ }> | null;
5101
+ } | null;
5102
+ permissions: {
5103
+ access_attribute: boolean;
5104
+ edit_value: boolean;
5105
+ };
5106
+ versions_conf?: {
5107
+ versionable: boolean;
5108
+ profile?: {
5109
+ id: string;
5110
+ trees: Array<{
5111
+ id: string;
5112
+ label?: any | null;
5113
+ }>;
5114
+ } | null;
5115
+ } | null;
5116
+ metadata_fields?: Array<{
5117
+ id: string;
5118
+ label?: any | null;
5119
+ description?: any | null;
5120
+ type: AttributeType;
5121
+ format?: AttributeFormat | null;
5122
+ system: boolean;
5123
+ readonly: boolean;
5124
+ multiple_values: boolean;
5125
+ permissions: {
5126
+ access_attribute: boolean;
5127
+ edit_value: boolean;
5128
+ };
5129
+ values_list?: {
5130
+ enable: boolean;
5131
+ allowFreeEntry?: boolean | null;
5132
+ allowListUpdate?: boolean | null;
5133
+ dateRangeValues?: Array<{
5134
+ from?: string | null;
5135
+ to?: string | null;
5136
+ }> | null;
5137
+ } | {
5138
+ enable: boolean;
5139
+ allowFreeEntry?: boolean | null;
5140
+ allowListUpdate?: boolean | null;
5141
+ values?: Array<string> | null;
5142
+ } | null;
5143
+ metadata_fields?: Array<{
5144
+ id: string;
5145
+ }> | null;
5146
+ }> | null;
5147
+ } | {
5148
+ character_limit?: number | null;
5149
+ id: string;
5150
+ label?: any | null;
5151
+ description?: any | null;
5152
+ type: AttributeType;
5153
+ format?: AttributeFormat | null;
5154
+ system: boolean;
5155
+ readonly: boolean;
5156
+ required: boolean;
5157
+ multiple_values: boolean;
5158
+ compute: boolean;
5159
+ values_list?: {
5160
+ enable: boolean;
5161
+ allowFreeEntry?: boolean | null;
5162
+ allowListUpdate?: boolean | null;
5163
+ dateRangeValues?: Array<{
5164
+ from?: string | null;
5165
+ to?: string | null;
5166
+ }> | null;
5167
+ } | {
5168
+ enable: boolean;
5169
+ allowFreeEntry?: boolean | null;
5170
+ allowListUpdate?: boolean | null;
5171
+ values?: Array<string> | null;
5172
+ } | null;
5173
+ permissions: {
5174
+ access_attribute: boolean;
5175
+ edit_value: boolean;
5176
+ };
5177
+ versions_conf?: {
5178
+ versionable: boolean;
5179
+ profile?: {
5180
+ id: string;
5181
+ trees: Array<{
5182
+ id: string;
5183
+ label?: any | null;
5184
+ }>;
5185
+ } | null;
5186
+ } | null;
5187
+ metadata_fields?: Array<{
5188
+ id: string;
5189
+ label?: any | null;
5190
+ description?: any | null;
5191
+ type: AttributeType;
5192
+ format?: AttributeFormat | null;
5193
+ system: boolean;
5194
+ readonly: boolean;
5195
+ multiple_values: boolean;
5196
+ permissions: {
5197
+ access_attribute: boolean;
5198
+ edit_value: boolean;
5199
+ };
5200
+ values_list?: {
5201
+ enable: boolean;
5202
+ allowFreeEntry?: boolean | null;
5203
+ allowListUpdate?: boolean | null;
5204
+ dateRangeValues?: Array<{
5205
+ from?: string | null;
5206
+ to?: string | null;
5207
+ }> | null;
5208
+ } | {
5209
+ enable: boolean;
5210
+ allowFreeEntry?: boolean | null;
5211
+ allowListUpdate?: boolean | null;
5212
+ values?: Array<string> | null;
5213
+ } | null;
5214
+ metadata_fields?: Array<{
5215
+ id: string;
5216
+ }> | null;
5217
+ }> | null;
5218
+ } | {
4405
5219
  id: string;
4406
5220
  label?: any | null;
4407
- } | null;
4408
- treeValuesList?: {
4409
- enable: boolean;
4410
- allowFreeEntry?: boolean | null;
4411
- allowListUpdate?: boolean | null;
4412
- values?: Array<{
5221
+ description?: any | null;
5222
+ type: AttributeType;
5223
+ format?: AttributeFormat | null;
5224
+ system: boolean;
5225
+ readonly: boolean;
5226
+ required: boolean;
5227
+ multiple_values: boolean;
5228
+ compute: boolean;
5229
+ linked_tree?: {
4413
5230
  id: string;
4414
- record: {
5231
+ label?: any | null;
5232
+ } | null;
5233
+ treeValuesList?: {
5234
+ enable: boolean;
5235
+ allowFreeEntry?: boolean | null;
5236
+ allowListUpdate?: boolean | null;
5237
+ values?: Array<{
4415
5238
  id: string;
4416
- whoAmI: {
4417
- id: string;
4418
- label?: string | null;
4419
- subLabel?: string | null;
4420
- color?: string | null;
4421
- preview?: IPreviewScalar | null;
4422
- library: {
4423
- id: string;
4424
- label?: any | null;
4425
- };
4426
- };
4427
- };
4428
- ancestors?: Array<{
4429
5239
  record: {
4430
5240
  id: string;
4431
5241
  whoAmI: {
@@ -4440,59 +5250,71 @@ export type RecordFormQuery = {
4440
5250
  };
4441
5251
  };
4442
5252
  };
5253
+ ancestors?: Array<{
5254
+ record: {
5255
+ id: string;
5256
+ whoAmI: {
5257
+ id: string;
5258
+ label?: string | null;
5259
+ subLabel?: string | null;
5260
+ color?: string | null;
5261
+ preview?: IPreviewScalar | null;
5262
+ library: {
5263
+ id: string;
5264
+ label?: any | null;
5265
+ };
5266
+ };
5267
+ };
5268
+ }> | null;
4443
5269
  }> | null;
4444
- }> | null;
4445
- } | null;
4446
- permissions: {
4447
- access_attribute: boolean;
4448
- edit_value: boolean;
4449
- };
4450
- versions_conf?: {
4451
- versionable: boolean;
4452
- profile?: {
4453
- id: string;
4454
- trees: Array<{
4455
- id: string;
4456
- label?: any | null;
4457
- }>;
4458
5270
  } | null;
4459
- } | null;
4460
- metadata_fields?: Array<{
4461
- id: string;
4462
- label?: any | null;
4463
- description?: any | null;
4464
- type: AttributeType;
4465
- format?: AttributeFormat | null;
4466
- system: boolean;
4467
- readonly: boolean;
4468
- multiple_values: boolean;
4469
5271
  permissions: {
4470
5272
  access_attribute: boolean;
4471
5273
  edit_value: boolean;
4472
5274
  };
4473
- values_list?: {
4474
- enable: boolean;
4475
- allowFreeEntry?: boolean | null;
4476
- allowListUpdate?: boolean | null;
4477
- dateRangeValues?: Array<{
4478
- from?: string | null;
4479
- to?: string | null;
4480
- }> | null;
4481
- } | {
4482
- enable: boolean;
4483
- allowFreeEntry?: boolean | null;
4484
- allowListUpdate?: boolean | null;
4485
- values?: Array<string> | null;
5275
+ versions_conf?: {
5276
+ versionable: boolean;
5277
+ profile?: {
5278
+ id: string;
5279
+ trees: Array<{
5280
+ id: string;
5281
+ label?: any | null;
5282
+ }>;
5283
+ } | null;
4486
5284
  } | null;
4487
5285
  metadata_fields?: Array<{
4488
5286
  id: string;
5287
+ label?: any | null;
5288
+ description?: any | null;
5289
+ type: AttributeType;
5290
+ format?: AttributeFormat | null;
5291
+ system: boolean;
5292
+ readonly: boolean;
5293
+ multiple_values: boolean;
5294
+ permissions: {
5295
+ access_attribute: boolean;
5296
+ edit_value: boolean;
5297
+ };
5298
+ values_list?: {
5299
+ enable: boolean;
5300
+ allowFreeEntry?: boolean | null;
5301
+ allowListUpdate?: boolean | null;
5302
+ dateRangeValues?: Array<{
5303
+ from?: string | null;
5304
+ to?: string | null;
5305
+ }> | null;
5306
+ } | {
5307
+ enable: boolean;
5308
+ allowFreeEntry?: boolean | null;
5309
+ allowListUpdate?: boolean | null;
5310
+ values?: Array<string> | null;
5311
+ } | null;
5312
+ metadata_fields?: Array<{
5313
+ id: string;
5314
+ }> | null;
4489
5315
  }> | null;
4490
- }> | null;
5316
+ };
4491
5317
  } | null;
4492
- settings: Array<{
4493
- key: string;
4494
- value: any;
4495
- }>;
4496
5318
  }>;
4497
5319
  sidePanel?: {
4498
5320
  enable: boolean;
@@ -4922,6 +5744,30 @@ export type RecordUpdateSubscription = {
4922
5744
  }>;
4923
5745
  };
4924
5746
  };
5747
+ export type GetRecordsFromLibraryQueryVariables = Exact<{
5748
+ libraryId: Scalars['ID'];
5749
+ pagination?: InputMaybe<RecordsPagination>;
5750
+ filters?: InputMaybe<Array<InputMaybe<RecordFilterInput>> | InputMaybe<RecordFilterInput>>;
5751
+ }>;
5752
+ export type GetRecordsFromLibraryQuery = {
5753
+ records: {
5754
+ totalCount?: number | null;
5755
+ list: Array<{
5756
+ id: string;
5757
+ whoAmI: {
5758
+ id: string;
5759
+ label?: string | null;
5760
+ subLabel?: string | null;
5761
+ color?: string | null;
5762
+ preview?: IPreviewScalar | null;
5763
+ library: {
5764
+ id: string;
5765
+ label?: any | null;
5766
+ };
5767
+ };
5768
+ }>;
5769
+ };
5770
+ };
4925
5771
  export type IndexRecordsMutationVariables = Exact<{
4926
5772
  libraryId: Scalars['String'];
4927
5773
  records?: InputMaybe<Array<Scalars['String']> | Scalars['String']>;
@@ -5039,6 +5885,7 @@ export type TreeNodeChildrenQueryVariables = Exact<{
5039
5885
  treeId: Scalars['ID'];
5040
5886
  node?: InputMaybe<Scalars['ID']>;
5041
5887
  pagination?: InputMaybe<Pagination>;
5888
+ childrenAsRecordValuePermissionFilter?: InputMaybe<ChildrenAsRecordValuePermissionFilterInput>;
5042
5889
  }>;
5043
5890
  export type TreeNodeChildrenQuery = {
5044
5891
  treeNodeChildren: {
@@ -5273,131 +6120,17 @@ export type DeleteValueMutation = {
5273
6120
  whoAmI: {
5274
6121
  id: string;
5275
6122
  label?: string | null;
5276
- subLabel?: string | null;
5277
- color?: string | null;
5278
- preview?: IPreviewScalar | null;
5279
- library: {
5280
- id: string;
5281
- label?: any | null;
5282
- };
5283
- };
5284
- };
5285
- }> | null;
5286
- } | null;
5287
- modified_by?: {
5288
- id: string;
5289
- whoAmI: {
5290
- id: string;
5291
- label?: string | null;
5292
- subLabel?: string | null;
5293
- color?: string | null;
5294
- preview?: IPreviewScalar | null;
5295
- library: {
5296
- id: string;
5297
- label?: any | null;
5298
- };
5299
- };
5300
- } | null;
5301
- created_by?: {
5302
- id: string;
5303
- whoAmI: {
5304
- id: string;
5305
- label?: string | null;
5306
- subLabel?: string | null;
5307
- color?: string | null;
5308
- preview?: IPreviewScalar | null;
5309
- library: {
5310
- id: string;
5311
- label?: any | null;
5312
- };
5313
- };
5314
- } | null;
5315
- version?: Array<{
5316
- treeId: string;
5317
- treeNode?: {
5318
- id: string;
5319
- record: {
5320
- id: string;
5321
- whoAmI: {
5322
- id: string;
5323
- label?: string | null;
5324
- library: {
5325
- id: string;
5326
- };
5327
- };
5328
- };
5329
- } | null;
5330
- } | null> | null;
5331
- attribute: {
5332
- id: string;
5333
- format?: AttributeFormat | null;
5334
- type: AttributeType;
5335
- system: boolean;
5336
- };
5337
- metadata?: Array<{
5338
- name: string;
5339
- value?: {
5340
- id_value?: string | null;
5341
- modified_at?: number | null;
5342
- created_at?: number | null;
5343
- payload?: any | null;
5344
- raw_payload?: any | null;
5345
- modified_by?: {
5346
- id: string;
5347
- whoAmI: {
5348
- id: string;
5349
- label?: string | null;
5350
- subLabel?: string | null;
5351
- color?: string | null;
5352
- preview?: IPreviewScalar | null;
5353
- library: {
5354
- id: string;
5355
- label?: any | null;
5356
- };
5357
- };
5358
- } | null;
5359
- created_by?: {
5360
- id: string;
5361
- whoAmI: {
5362
- id: string;
5363
- label?: string | null;
5364
- subLabel?: string | null;
5365
- color?: string | null;
5366
- preview?: IPreviewScalar | null;
5367
- library: {
5368
- id: string;
5369
- label?: any | null;
5370
- };
5371
- };
5372
- } | null;
5373
- version?: Array<{
5374
- treeId: string;
5375
- treeNode?: {
5376
- id: string;
5377
- record: {
6123
+ subLabel?: string | null;
6124
+ color?: string | null;
6125
+ preview?: IPreviewScalar | null;
6126
+ library: {
5378
6127
  id: string;
5379
- whoAmI: {
5380
- id: string;
5381
- label?: string | null;
5382
- library: {
5383
- id: string;
5384
- };
5385
- };
6128
+ label?: any | null;
5386
6129
  };
5387
- } | null;
5388
- } | null> | null;
5389
- } | null;
5390
- } | null> | null;
5391
- } | {
5392
- payload?: any | null;
5393
- raw_payload?: any | null;
5394
- value?: any | null;
5395
- raw_value?: any | null;
5396
- id_value?: string | null;
5397
- isInherited?: boolean | null;
5398
- isCalculated?: boolean | null;
5399
- modified_at?: number | null;
5400
- created_at?: number | null;
6130
+ };
6131
+ };
6132
+ }> | null;
6133
+ } | null;
5401
6134
  modified_by?: {
5402
6135
  id: string;
5403
6136
  whoAmI: {
@@ -5502,24 +6235,16 @@ export type DeleteValueMutation = {
5502
6235
  } | null> | null;
5503
6236
  } | null;
5504
6237
  } | null> | null;
5505
- }>;
5506
- };
5507
- export type RunActionsListAndFormatOnValueQueryVariables = Exact<{
5508
- library: Scalars['ID'];
5509
- value?: InputMaybe<ValueBatchInput>;
5510
- version?: InputMaybe<Array<InputMaybe<ValueVersionInput>> | InputMaybe<ValueVersionInput>>;
5511
- }>;
5512
- export type RunActionsListAndFormatOnValueQuery = {
5513
- runActionsListAndFormatOnValue: Array<{
6238
+ } | {
6239
+ payload?: any | null;
6240
+ raw_payload?: any | null;
6241
+ value?: any | null;
6242
+ raw_value?: any | null;
5514
6243
  id_value?: string | null;
5515
6244
  isInherited?: boolean | null;
5516
6245
  isCalculated?: boolean | null;
5517
6246
  modified_at?: number | null;
5518
6247
  created_at?: number | null;
5519
- payload?: any | null;
5520
- raw_payload?: any | null;
5521
- value?: any | null;
5522
- raw_value?: any | null;
5523
6248
  modified_by?: {
5524
6249
  id: string;
5525
6250
  whoAmI: {
@@ -6299,6 +7024,27 @@ export type ExplorerAttributesQuery = {
6299
7024
  id: string;
6300
7025
  label?: any | null;
6301
7026
  } | null;
7027
+ values_list?: {
7028
+ allowFreeEntry?: boolean | null;
7029
+ enable: boolean;
7030
+ values?: Array<{
7031
+ id: string;
7032
+ whoAmI: {
7033
+ id: string;
7034
+ library: {
7035
+ id: string;
7036
+ };
7037
+ };
7038
+ }> | null;
7039
+ } | null;
7040
+ permissions: {
7041
+ access_attribute: boolean;
7042
+ };
7043
+ } | {
7044
+ id: string;
7045
+ type: AttributeType;
7046
+ format?: AttributeFormat | null;
7047
+ label?: any | null;
6302
7048
  permissions: {
6303
7049
  access_attribute: boolean;
6304
7050
  };
@@ -6307,6 +7053,10 @@ export type ExplorerAttributesQuery = {
6307
7053
  type: AttributeType;
6308
7054
  format?: AttributeFormat | null;
6309
7055
  label?: any | null;
7056
+ linked_tree?: {
7057
+ id: string;
7058
+ label?: any | null;
7059
+ } | null;
6310
7060
  permissions: {
6311
7061
  access_attribute: boolean;
6312
7062
  };
@@ -6326,13 +7076,38 @@ export type ExplorerLinkAttributeQuery = {
6326
7076
  id: string;
6327
7077
  label?: any | null;
6328
7078
  } | null;
7079
+ values_list?: {
7080
+ allowFreeEntry?: boolean | null;
7081
+ enable: boolean;
7082
+ values?: Array<{
7083
+ id: string;
7084
+ whoAmI: {
7085
+ id: string;
7086
+ library: {
7087
+ id: string;
7088
+ };
7089
+ };
7090
+ }> | null;
7091
+ } | null;
7092
+ permissions: {
7093
+ access_attribute: boolean;
7094
+ edit_value: boolean;
7095
+ };
7096
+ } | {
7097
+ id: string;
7098
+ multiple_values: boolean;
6329
7099
  permissions: {
6330
7100
  access_attribute: boolean;
6331
7101
  edit_value: boolean;
6332
7102
  };
6333
7103
  } | {
7104
+ label?: any | null;
6334
7105
  id: string;
6335
7106
  multiple_values: boolean;
7107
+ linked_tree?: {
7108
+ id: string;
7109
+ label?: any | null;
7110
+ } | null;
6336
7111
  permissions: {
6337
7112
  access_attribute: boolean;
6338
7113
  edit_value: boolean;
@@ -6672,6 +7447,7 @@ export declare const ValuesVersionDetailsFragmentDoc: Apollo.DocumentNode;
6672
7447
  export declare const ValueDetailsFragmentDoc: Apollo.DocumentNode;
6673
7448
  export declare const StandardValuesListFragmentFragmentDoc: Apollo.DocumentNode;
6674
7449
  export declare const RecordFormAttributeFragmentDoc: Apollo.DocumentNode;
7450
+ export declare const JoinLibraryContextFragmentDoc: Apollo.DocumentNode;
6675
7451
  export declare const RecordFormElementFragmentDoc: Apollo.DocumentNode;
6676
7452
  export declare const TreeLightFragmentDoc: Apollo.DocumentNode;
6677
7453
  export declare const TreeDetailsFragmentDoc: Apollo.DocumentNode;
@@ -6681,6 +7457,7 @@ export declare const ViewDetailsFragmentDoc: Apollo.DocumentNode;
6681
7457
  export declare const AttributesByLibLinkAttributeWithPermissionsFragmentDoc: Apollo.DocumentNode;
6682
7458
  export declare const AttributesByLibAttributeWithPermissionsFragmentDoc: Apollo.DocumentNode;
6683
7459
  export declare const LinkAttributeDetailsFragmentDoc: Apollo.DocumentNode;
7460
+ export declare const TreeAttributeDetailsFragmentDoc: Apollo.DocumentNode;
6684
7461
  export declare const AttributePropertiesFragmentDoc: Apollo.DocumentNode;
6685
7462
  export declare const PropertyValueFragmentDoc: Apollo.DocumentNode;
6686
7463
  export declare const LinkPropertyFragmentDoc: Apollo.DocumentNode;
@@ -6712,8 +7489,13 @@ export declare function useCheckApplicationExistenceLazyQuery(baseOptions?: Apol
6712
7489
  id?: InputMaybe<Scalars["ID"]>;
6713
7490
  endpoint?: InputMaybe<Scalars["String"]>;
6714
7491
  }>>;
7492
+ export declare function useCheckApplicationExistenceSuspenseQuery(baseOptions?: Apollo.SuspenseQueryHookOptions<CheckApplicationExistenceQuery, CheckApplicationExistenceQueryVariables>): Apollo.UseSuspenseQueryResult<CheckApplicationExistenceQuery, Exact<{
7493
+ id?: InputMaybe<Scalars["ID"]>;
7494
+ endpoint?: InputMaybe<Scalars["String"]>;
7495
+ }>>;
6715
7496
  export type CheckApplicationExistenceQueryHookResult = ReturnType<typeof useCheckApplicationExistenceQuery>;
6716
7497
  export type CheckApplicationExistenceLazyQueryHookResult = ReturnType<typeof useCheckApplicationExistenceLazyQuery>;
7498
+ export type CheckApplicationExistenceSuspenseQueryHookResult = ReturnType<typeof useCheckApplicationExistenceSuspenseQuery>;
6717
7499
  export type CheckApplicationExistenceQueryResult = Apollo.QueryResult<CheckApplicationExistenceQuery, CheckApplicationExistenceQueryVariables>;
6718
7500
  export declare const GetApplicationByIdDocument: Apollo.DocumentNode;
6719
7501
  /**
@@ -6738,8 +7520,12 @@ export declare function useGetApplicationByIdQuery(baseOptions: Apollo.QueryHook
6738
7520
  export declare function useGetApplicationByIdLazyQuery(baseOptions?: Apollo.LazyQueryHookOptions<GetApplicationByIdQuery, GetApplicationByIdQueryVariables>): Apollo.LazyQueryResultTuple<GetApplicationByIdQuery, Exact<{
6739
7521
  id: Scalars["ID"];
6740
7522
  }>>;
7523
+ export declare function useGetApplicationByIdSuspenseQuery(baseOptions?: Apollo.SuspenseQueryHookOptions<GetApplicationByIdQuery, GetApplicationByIdQueryVariables>): Apollo.UseSuspenseQueryResult<GetApplicationByIdQuery, Exact<{
7524
+ id: Scalars["ID"];
7525
+ }>>;
6741
7526
  export type GetApplicationByIdQueryHookResult = ReturnType<typeof useGetApplicationByIdQuery>;
6742
7527
  export type GetApplicationByIdLazyQueryHookResult = ReturnType<typeof useGetApplicationByIdLazyQuery>;
7528
+ export type GetApplicationByIdSuspenseQueryHookResult = ReturnType<typeof useGetApplicationByIdSuspenseQuery>;
6743
7529
  export type GetApplicationByIdQueryResult = Apollo.QueryResult<GetApplicationByIdQuery, GetApplicationByIdQueryVariables>;
6744
7530
  export declare const GetApplicationModulesDocument: Apollo.DocumentNode;
6745
7531
  /**
@@ -6763,8 +7549,12 @@ export declare function useGetApplicationModulesQuery(baseOptions?: Apollo.Query
6763
7549
  export declare function useGetApplicationModulesLazyQuery(baseOptions?: Apollo.LazyQueryHookOptions<GetApplicationModulesQuery, GetApplicationModulesQueryVariables>): Apollo.LazyQueryResultTuple<GetApplicationModulesQuery, Exact<{
6764
7550
  [key: string]: never;
6765
7551
  }>>;
7552
+ export declare function useGetApplicationModulesSuspenseQuery(baseOptions?: Apollo.SuspenseQueryHookOptions<GetApplicationModulesQuery, GetApplicationModulesQueryVariables>): Apollo.UseSuspenseQueryResult<GetApplicationModulesQuery, Exact<{
7553
+ [key: string]: never;
7554
+ }>>;
6766
7555
  export type GetApplicationModulesQueryHookResult = ReturnType<typeof useGetApplicationModulesQuery>;
6767
7556
  export type GetApplicationModulesLazyQueryHookResult = ReturnType<typeof useGetApplicationModulesLazyQuery>;
7557
+ export type GetApplicationModulesSuspenseQueryHookResult = ReturnType<typeof useGetApplicationModulesSuspenseQuery>;
6768
7558
  export type GetApplicationModulesQueryResult = Apollo.QueryResult<GetApplicationModulesQuery, GetApplicationModulesQueryVariables>;
6769
7559
  export declare const SaveApplicationDocument: Apollo.DocumentNode;
6770
7560
  export type SaveApplicationMutationFn = Apollo.MutationFunction<SaveApplicationMutation, SaveApplicationMutationVariables>;
@@ -6814,8 +7604,12 @@ export declare function useCheckAttributeExistenceQuery(baseOptions: Apollo.Quer
6814
7604
  export declare function useCheckAttributeExistenceLazyQuery(baseOptions?: Apollo.LazyQueryHookOptions<CheckAttributeExistenceQuery, CheckAttributeExistenceQueryVariables>): Apollo.LazyQueryResultTuple<CheckAttributeExistenceQuery, Exact<{
6815
7605
  id: Scalars["ID"];
6816
7606
  }>>;
7607
+ export declare function useCheckAttributeExistenceSuspenseQuery(baseOptions?: Apollo.SuspenseQueryHookOptions<CheckAttributeExistenceQuery, CheckAttributeExistenceQueryVariables>): Apollo.UseSuspenseQueryResult<CheckAttributeExistenceQuery, Exact<{
7608
+ id: Scalars["ID"];
7609
+ }>>;
6817
7610
  export type CheckAttributeExistenceQueryHookResult = ReturnType<typeof useCheckAttributeExistenceQuery>;
6818
7611
  export type CheckAttributeExistenceLazyQueryHookResult = ReturnType<typeof useCheckAttributeExistenceLazyQuery>;
7612
+ export type CheckAttributeExistenceSuspenseQueryHookResult = ReturnType<typeof useCheckAttributeExistenceSuspenseQuery>;
6819
7613
  export type CheckAttributeExistenceQueryResult = Apollo.QueryResult<CheckAttributeExistenceQuery, CheckAttributeExistenceQueryVariables>;
6820
7614
  export declare const DeleteAttributeDocument: Apollo.DocumentNode;
6821
7615
  export type DeleteAttributeMutationFn = Apollo.MutationFunction<DeleteAttributeMutation, DeleteAttributeMutationVariables>;
@@ -6865,8 +7659,12 @@ export declare function useGetAttributeByIdQuery(baseOptions?: Apollo.QueryHookO
6865
7659
  export declare function useGetAttributeByIdLazyQuery(baseOptions?: Apollo.LazyQueryHookOptions<GetAttributeByIdQuery, GetAttributeByIdQueryVariables>): Apollo.LazyQueryResultTuple<GetAttributeByIdQuery, Exact<{
6866
7660
  id?: InputMaybe<Scalars["ID"]>;
6867
7661
  }>>;
7662
+ export declare function useGetAttributeByIdSuspenseQuery(baseOptions?: Apollo.SuspenseQueryHookOptions<GetAttributeByIdQuery, GetAttributeByIdQueryVariables>): Apollo.UseSuspenseQueryResult<GetAttributeByIdQuery, Exact<{
7663
+ id?: InputMaybe<Scalars["ID"]>;
7664
+ }>>;
6868
7665
  export type GetAttributeByIdQueryHookResult = ReturnType<typeof useGetAttributeByIdQuery>;
6869
7666
  export type GetAttributeByIdLazyQueryHookResult = ReturnType<typeof useGetAttributeByIdLazyQuery>;
7667
+ export type GetAttributeByIdSuspenseQueryHookResult = ReturnType<typeof useGetAttributeByIdSuspenseQuery>;
6870
7668
  export type GetAttributeByIdQueryResult = Apollo.QueryResult<GetAttributeByIdQuery, GetAttributeByIdQueryVariables>;
6871
7669
  export declare const GetAttributesByLibDocument: Apollo.DocumentNode;
6872
7670
  /**
@@ -6891,8 +7689,12 @@ export declare function useGetAttributesByLibQuery(baseOptions: Apollo.QueryHook
6891
7689
  export declare function useGetAttributesByLibLazyQuery(baseOptions?: Apollo.LazyQueryHookOptions<GetAttributesByLibQuery, GetAttributesByLibQueryVariables>): Apollo.LazyQueryResultTuple<GetAttributesByLibQuery, Exact<{
6892
7690
  library: Scalars["String"];
6893
7691
  }>>;
7692
+ export declare function useGetAttributesByLibSuspenseQuery(baseOptions?: Apollo.SuspenseQueryHookOptions<GetAttributesByLibQuery, GetAttributesByLibQueryVariables>): Apollo.UseSuspenseQueryResult<GetAttributesByLibQuery, Exact<{
7693
+ library: Scalars["String"];
7694
+ }>>;
6894
7695
  export type GetAttributesByLibQueryHookResult = ReturnType<typeof useGetAttributesByLibQuery>;
6895
7696
  export type GetAttributesByLibLazyQueryHookResult = ReturnType<typeof useGetAttributesByLibLazyQuery>;
7697
+ export type GetAttributesByLibSuspenseQueryHookResult = ReturnType<typeof useGetAttributesByLibSuspenseQuery>;
6896
7698
  export type GetAttributesByLibQueryResult = Apollo.QueryResult<GetAttributesByLibQuery, GetAttributesByLibQueryVariables>;
6897
7699
  export declare const GetAttributesDocument: Apollo.DocumentNode;
6898
7700
  /**
@@ -6923,8 +7725,14 @@ export declare function useGetAttributesLazyQuery(baseOptions?: Apollo.LazyQuery
6923
7725
  sort?: InputMaybe<SortAttributes>;
6924
7726
  filters?: InputMaybe<AttributesFiltersInput>;
6925
7727
  }>>;
7728
+ export declare function useGetAttributesSuspenseQuery(baseOptions?: Apollo.SuspenseQueryHookOptions<GetAttributesQuery, GetAttributesQueryVariables>): Apollo.UseSuspenseQueryResult<GetAttributesQuery, Exact<{
7729
+ pagination?: InputMaybe<Pagination>;
7730
+ sort?: InputMaybe<SortAttributes>;
7731
+ filters?: InputMaybe<AttributesFiltersInput>;
7732
+ }>>;
6926
7733
  export type GetAttributesQueryHookResult = ReturnType<typeof useGetAttributesQuery>;
6927
7734
  export type GetAttributesLazyQueryHookResult = ReturnType<typeof useGetAttributesLazyQuery>;
7735
+ export type GetAttributesSuspenseQueryHookResult = ReturnType<typeof useGetAttributesSuspenseQuery>;
6928
7736
  export type GetAttributesQueryResult = Apollo.QueryResult<GetAttributesQuery, GetAttributesQueryVariables>;
6929
7737
  export declare const GetVersionProfilesDocument: Apollo.DocumentNode;
6930
7738
  /**
@@ -6952,8 +7760,13 @@ export declare function useGetVersionProfilesLazyQuery(baseOptions?: Apollo.Lazy
6952
7760
  filters?: InputMaybe<VersionProfilesFiltersInput>;
6953
7761
  sort?: InputMaybe<SortVersionProfilesInput>;
6954
7762
  }>>;
7763
+ export declare function useGetVersionProfilesSuspenseQuery(baseOptions?: Apollo.SuspenseQueryHookOptions<GetVersionProfilesQuery, GetVersionProfilesQueryVariables>): Apollo.UseSuspenseQueryResult<GetVersionProfilesQuery, Exact<{
7764
+ filters?: InputMaybe<VersionProfilesFiltersInput>;
7765
+ sort?: InputMaybe<SortVersionProfilesInput>;
7766
+ }>>;
6955
7767
  export type GetVersionProfilesQueryHookResult = ReturnType<typeof useGetVersionProfilesQuery>;
6956
7768
  export type GetVersionProfilesLazyQueryHookResult = ReturnType<typeof useGetVersionProfilesLazyQuery>;
7769
+ export type GetVersionProfilesSuspenseQueryHookResult = ReturnType<typeof useGetVersionProfilesSuspenseQuery>;
6957
7770
  export type GetVersionProfilesQueryResult = Apollo.QueryResult<GetVersionProfilesQuery, GetVersionProfilesQueryVariables>;
6958
7771
  export declare const GetVersionableAttributesByLibraryDocument: Apollo.DocumentNode;
6959
7772
  /**
@@ -6978,8 +7791,12 @@ export declare function useGetVersionableAttributesByLibraryQuery(baseOptions: A
6978
7791
  export declare function useGetVersionableAttributesByLibraryLazyQuery(baseOptions?: Apollo.LazyQueryHookOptions<GetVersionableAttributesByLibraryQuery, GetVersionableAttributesByLibraryQueryVariables>): Apollo.LazyQueryResultTuple<GetVersionableAttributesByLibraryQuery, Exact<{
6979
7792
  libraryId: Scalars["String"];
6980
7793
  }>>;
7794
+ export declare function useGetVersionableAttributesByLibrarySuspenseQuery(baseOptions?: Apollo.SuspenseQueryHookOptions<GetVersionableAttributesByLibraryQuery, GetVersionableAttributesByLibraryQueryVariables>): Apollo.UseSuspenseQueryResult<GetVersionableAttributesByLibraryQuery, Exact<{
7795
+ libraryId: Scalars["String"];
7796
+ }>>;
6981
7797
  export type GetVersionableAttributesByLibraryQueryHookResult = ReturnType<typeof useGetVersionableAttributesByLibraryQuery>;
6982
7798
  export type GetVersionableAttributesByLibraryLazyQueryHookResult = ReturnType<typeof useGetVersionableAttributesByLibraryLazyQuery>;
7799
+ export type GetVersionableAttributesByLibrarySuspenseQueryHookResult = ReturnType<typeof useGetVersionableAttributesByLibrarySuspenseQuery>;
6983
7800
  export type GetVersionableAttributesByLibraryQueryResult = Apollo.QueryResult<GetVersionableAttributesByLibraryQuery, GetVersionableAttributesByLibraryQueryVariables>;
6984
7801
  export declare const SaveAttributeDocument: Apollo.DocumentNode;
6985
7802
  export type SaveAttributeMutationFn = Apollo.MutationFunction<SaveAttributeMutation, SaveAttributeMutationVariables>;
@@ -7035,8 +7852,14 @@ export declare function useExportLazyQuery(baseOptions?: Apollo.LazyQueryHookOpt
7035
7852
  attributes?: InputMaybe<Array<Scalars["ID"]> | Scalars["ID"]>;
7036
7853
  filters?: InputMaybe<Array<RecordFilterInput> | RecordFilterInput>;
7037
7854
  }>>;
7855
+ export declare function useExportSuspenseQuery(baseOptions?: Apollo.SuspenseQueryHookOptions<ExportQuery, ExportQueryVariables>): Apollo.UseSuspenseQueryResult<ExportQuery, Exact<{
7856
+ library: Scalars["ID"];
7857
+ attributes?: InputMaybe<Array<Scalars["ID"]> | Scalars["ID"]>;
7858
+ filters?: InputMaybe<Array<RecordFilterInput> | RecordFilterInput>;
7859
+ }>>;
7038
7860
  export type ExportQueryHookResult = ReturnType<typeof useExportQuery>;
7039
7861
  export type ExportLazyQueryHookResult = ReturnType<typeof useExportLazyQuery>;
7862
+ export type ExportSuspenseQueryHookResult = ReturnType<typeof useExportSuspenseQuery>;
7040
7863
  export type ExportQueryResult = Apollo.QueryResult<ExportQuery, ExportQueryVariables>;
7041
7864
  export declare const CreateDirectoryDocument: Apollo.DocumentNode;
7042
7865
  export type CreateDirectoryMutationFn = Apollo.MutationFunction<CreateDirectoryMutation, CreateDirectoryMutationVariables>;
@@ -7126,8 +7949,13 @@ export declare function useGetDirectoryDataLazyQuery(baseOptions?: Apollo.LazyQu
7126
7949
  library: Scalars["ID"];
7127
7950
  directoryId: Scalars["String"];
7128
7951
  }>>;
7952
+ export declare function useGetDirectoryDataSuspenseQuery(baseOptions?: Apollo.SuspenseQueryHookOptions<GetDirectoryDataQuery, GetDirectoryDataQueryVariables>): Apollo.UseSuspenseQueryResult<GetDirectoryDataQuery, Exact<{
7953
+ library: Scalars["ID"];
7954
+ directoryId: Scalars["String"];
7955
+ }>>;
7129
7956
  export type GetDirectoryDataQueryHookResult = ReturnType<typeof useGetDirectoryDataQuery>;
7130
7957
  export type GetDirectoryDataLazyQueryHookResult = ReturnType<typeof useGetDirectoryDataLazyQuery>;
7958
+ export type GetDirectoryDataSuspenseQueryHookResult = ReturnType<typeof useGetDirectoryDataSuspenseQuery>;
7131
7959
  export type GetDirectoryDataQueryResult = Apollo.QueryResult<GetDirectoryDataQuery, GetDirectoryDataQueryVariables>;
7132
7960
  export declare const UploadUpdateDocument: Apollo.DocumentNode;
7133
7961
  /**
@@ -7232,8 +8060,12 @@ export declare function useCheckLibraryExistenceQuery(baseOptions?: Apollo.Query
7232
8060
  export declare function useCheckLibraryExistenceLazyQuery(baseOptions?: Apollo.LazyQueryHookOptions<CheckLibraryExistenceQuery, CheckLibraryExistenceQueryVariables>): Apollo.LazyQueryResultTuple<CheckLibraryExistenceQuery, Exact<{
7233
8061
  id?: InputMaybe<Array<Scalars["ID"]> | Scalars["ID"]>;
7234
8062
  }>>;
8063
+ export declare function useCheckLibraryExistenceSuspenseQuery(baseOptions?: Apollo.SuspenseQueryHookOptions<CheckLibraryExistenceQuery, CheckLibraryExistenceQueryVariables>): Apollo.UseSuspenseQueryResult<CheckLibraryExistenceQuery, Exact<{
8064
+ id?: InputMaybe<Array<Scalars["ID"]> | Scalars["ID"]>;
8065
+ }>>;
7235
8066
  export type CheckLibraryExistenceQueryHookResult = ReturnType<typeof useCheckLibraryExistenceQuery>;
7236
8067
  export type CheckLibraryExistenceLazyQueryHookResult = ReturnType<typeof useCheckLibraryExistenceLazyQuery>;
8068
+ export type CheckLibraryExistenceSuspenseQueryHookResult = ReturnType<typeof useCheckLibraryExistenceSuspenseQuery>;
7237
8069
  export type CheckLibraryExistenceQueryResult = Apollo.QueryResult<CheckLibraryExistenceQuery, CheckLibraryExistenceQueryVariables>;
7238
8070
  export declare const DeleteLibraryDocument: Apollo.DocumentNode;
7239
8071
  export type DeleteLibraryMutationFn = Apollo.MutationFunction<DeleteLibraryMutation, DeleteLibraryMutationVariables>;
@@ -7282,8 +8114,12 @@ export declare function useGetLibrariesQuery(baseOptions?: Apollo.QueryHookOptio
7282
8114
  export declare function useGetLibrariesLazyQuery(baseOptions?: Apollo.LazyQueryHookOptions<GetLibrariesQuery, GetLibrariesQueryVariables>): Apollo.LazyQueryResultTuple<GetLibrariesQuery, Exact<{
7283
8115
  [key: string]: never;
7284
8116
  }>>;
8117
+ export declare function useGetLibrariesSuspenseQuery(baseOptions?: Apollo.SuspenseQueryHookOptions<GetLibrariesQuery, GetLibrariesQueryVariables>): Apollo.UseSuspenseQueryResult<GetLibrariesQuery, Exact<{
8118
+ [key: string]: never;
8119
+ }>>;
7285
8120
  export type GetLibrariesQueryHookResult = ReturnType<typeof useGetLibrariesQuery>;
7286
8121
  export type GetLibrariesLazyQueryHookResult = ReturnType<typeof useGetLibrariesLazyQuery>;
8122
+ export type GetLibrariesSuspenseQueryHookResult = ReturnType<typeof useGetLibrariesSuspenseQuery>;
7287
8123
  export type GetLibrariesQueryResult = Apollo.QueryResult<GetLibrariesQuery, GetLibrariesQueryVariables>;
7288
8124
  export declare const GetLibraryByIdDocument: Apollo.DocumentNode;
7289
8125
  /**
@@ -7308,8 +8144,12 @@ export declare function useGetLibraryByIdQuery(baseOptions?: Apollo.QueryHookOpt
7308
8144
  export declare function useGetLibraryByIdLazyQuery(baseOptions?: Apollo.LazyQueryHookOptions<GetLibraryByIdQuery, GetLibraryByIdQueryVariables>): Apollo.LazyQueryResultTuple<GetLibraryByIdQuery, Exact<{
7309
8145
  id?: InputMaybe<Array<Scalars["ID"]> | Scalars["ID"]>;
7310
8146
  }>>;
8147
+ export declare function useGetLibraryByIdSuspenseQuery(baseOptions?: Apollo.SuspenseQueryHookOptions<GetLibraryByIdQuery, GetLibraryByIdQueryVariables>): Apollo.UseSuspenseQueryResult<GetLibraryByIdQuery, Exact<{
8148
+ id?: InputMaybe<Array<Scalars["ID"]> | Scalars["ID"]>;
8149
+ }>>;
7311
8150
  export type GetLibraryByIdQueryHookResult = ReturnType<typeof useGetLibraryByIdQuery>;
7312
8151
  export type GetLibraryByIdLazyQueryHookResult = ReturnType<typeof useGetLibraryByIdLazyQuery>;
8152
+ export type GetLibraryByIdSuspenseQueryHookResult = ReturnType<typeof useGetLibraryByIdSuspenseQuery>;
7313
8153
  export type GetLibraryByIdQueryResult = Apollo.QueryResult<GetLibraryByIdQuery, GetLibraryByIdQueryVariables>;
7314
8154
  export declare const GetLibraryPermissionsDocument: Apollo.DocumentNode;
7315
8155
  /**
@@ -7334,8 +8174,12 @@ export declare function useGetLibraryPermissionsQuery(baseOptions?: Apollo.Query
7334
8174
  export declare function useGetLibraryPermissionsLazyQuery(baseOptions?: Apollo.LazyQueryHookOptions<GetLibraryPermissionsQuery, GetLibraryPermissionsQueryVariables>): Apollo.LazyQueryResultTuple<GetLibraryPermissionsQuery, Exact<{
7335
8175
  libraryId?: InputMaybe<Array<Scalars["ID"]> | Scalars["ID"]>;
7336
8176
  }>>;
8177
+ export declare function useGetLibraryPermissionsSuspenseQuery(baseOptions?: Apollo.SuspenseQueryHookOptions<GetLibraryPermissionsQuery, GetLibraryPermissionsQueryVariables>): Apollo.UseSuspenseQueryResult<GetLibraryPermissionsQuery, Exact<{
8178
+ libraryId?: InputMaybe<Array<Scalars["ID"]> | Scalars["ID"]>;
8179
+ }>>;
7337
8180
  export type GetLibraryPermissionsQueryHookResult = ReturnType<typeof useGetLibraryPermissionsQuery>;
7338
8181
  export type GetLibraryPermissionsLazyQueryHookResult = ReturnType<typeof useGetLibraryPermissionsLazyQuery>;
8182
+ export type GetLibraryPermissionsSuspenseQueryHookResult = ReturnType<typeof useGetLibraryPermissionsSuspenseQuery>;
7339
8183
  export type GetLibraryPermissionsQueryResult = Apollo.QueryResult<GetLibraryPermissionsQuery, GetLibraryPermissionsQueryVariables>;
7340
8184
  export declare const GetLibraryPreviewsSettingsDocument: Apollo.DocumentNode;
7341
8185
  /**
@@ -7360,8 +8204,12 @@ export declare function useGetLibraryPreviewsSettingsQuery(baseOptions: Apollo.Q
7360
8204
  export declare function useGetLibraryPreviewsSettingsLazyQuery(baseOptions?: Apollo.LazyQueryHookOptions<GetLibraryPreviewsSettingsQuery, GetLibraryPreviewsSettingsQueryVariables>): Apollo.LazyQueryResultTuple<GetLibraryPreviewsSettingsQuery, Exact<{
7361
8205
  id: Scalars["ID"];
7362
8206
  }>>;
8207
+ export declare function useGetLibraryPreviewsSettingsSuspenseQuery(baseOptions?: Apollo.SuspenseQueryHookOptions<GetLibraryPreviewsSettingsQuery, GetLibraryPreviewsSettingsQueryVariables>): Apollo.UseSuspenseQueryResult<GetLibraryPreviewsSettingsQuery, Exact<{
8208
+ id: Scalars["ID"];
8209
+ }>>;
7363
8210
  export type GetLibraryPreviewsSettingsQueryHookResult = ReturnType<typeof useGetLibraryPreviewsSettingsQuery>;
7364
8211
  export type GetLibraryPreviewsSettingsLazyQueryHookResult = ReturnType<typeof useGetLibraryPreviewsSettingsLazyQuery>;
8212
+ export type GetLibraryPreviewsSettingsSuspenseQueryHookResult = ReturnType<typeof useGetLibraryPreviewsSettingsSuspenseQuery>;
7365
8213
  export type GetLibraryPreviewsSettingsQueryResult = Apollo.QueryResult<GetLibraryPreviewsSettingsQuery, GetLibraryPreviewsSettingsQueryVariables>;
7366
8214
  export declare const SaveLibraryDocument: Apollo.DocumentNode;
7367
8215
  export type SaveLibraryMutationFn = Apollo.MutationFunction<SaveLibraryMutation, SaveLibraryMutationVariables>;
@@ -7420,8 +8268,15 @@ export declare function useIsAllowedLazyQuery(baseOptions?: Apollo.LazyQueryHook
7420
8268
  applyTo?: InputMaybe<Scalars["ID"]>;
7421
8269
  target?: InputMaybe<PermissionTarget>;
7422
8270
  }>>;
8271
+ export declare function useIsAllowedSuspenseQuery(baseOptions?: Apollo.SuspenseQueryHookOptions<IsAllowedQuery, IsAllowedQueryVariables>): Apollo.UseSuspenseQueryResult<IsAllowedQuery, Exact<{
8272
+ type: PermissionTypes;
8273
+ actions: Array<PermissionsActions> | PermissionsActions;
8274
+ applyTo?: InputMaybe<Scalars["ID"]>;
8275
+ target?: InputMaybe<PermissionTarget>;
8276
+ }>>;
7423
8277
  export type IsAllowedQueryHookResult = ReturnType<typeof useIsAllowedQuery>;
7424
8278
  export type IsAllowedLazyQueryHookResult = ReturnType<typeof useIsAllowedLazyQuery>;
8279
+ export type IsAllowedSuspenseQueryHookResult = ReturnType<typeof useIsAllowedSuspenseQuery>;
7425
8280
  export type IsAllowedQueryResult = Apollo.QueryResult<IsAllowedQuery, IsAllowedQueryVariables>;
7426
8281
  export declare const ActivateRecordsDocument: Apollo.DocumentNode;
7427
8282
  export type ActivateRecordsMutationFn = Apollo.MutationFunction<ActivateRecordsMutation, ActivateRecordsMutationVariables>;
@@ -7452,6 +8307,31 @@ export declare function useActivateRecordsMutation(baseOptions?: Apollo.Mutation
7452
8307
  export type ActivateRecordsMutationHookResult = ReturnType<typeof useActivateRecordsMutation>;
7453
8308
  export type ActivateRecordsMutationResult = Apollo.MutationResult<ActivateRecordsMutation>;
7454
8309
  export type ActivateRecordsMutationOptions = Apollo.BaseMutationOptions<ActivateRecordsMutation, ActivateRecordsMutationVariables>;
8310
+ export declare const CreateEmptyRecordDocument: Apollo.DocumentNode;
8311
+ export type CreateEmptyRecordMutationFn = Apollo.MutationFunction<CreateEmptyRecordMutation, CreateEmptyRecordMutationVariables>;
8312
+ /**
8313
+ * __useCreateEmptyRecordMutation__
8314
+ *
8315
+ * To run a mutation, you first call `useCreateEmptyRecordMutation` within a React component and pass it any options that fit your needs.
8316
+ * When your component renders, `useCreateEmptyRecordMutation` returns a tuple that includes:
8317
+ * - A mutate function that you can call at any time to execute the mutation
8318
+ * - An object with fields that represent the current status of the mutation's execution
8319
+ *
8320
+ * @param baseOptions options that will be passed into the mutation, supported options are listed on: https://www.apollographql.com/docs/react/api/react-hooks/#options-2;
8321
+ *
8322
+ * @example
8323
+ * const [createEmptyRecordMutation, { data, loading, error }] = useCreateEmptyRecordMutation({
8324
+ * variables: {
8325
+ * library: // value for 'library'
8326
+ * },
8327
+ * });
8328
+ */
8329
+ export declare function useCreateEmptyRecordMutation(baseOptions?: Apollo.MutationHookOptions<CreateEmptyRecordMutation, CreateEmptyRecordMutationVariables>): Apollo.MutationTuple<CreateEmptyRecordMutation, Exact<{
8330
+ library: Scalars["ID"];
8331
+ }>, Apollo.DefaultContext, Apollo.ApolloCache<any>>;
8332
+ export type CreateEmptyRecordMutationHookResult = ReturnType<typeof useCreateEmptyRecordMutation>;
8333
+ export type CreateEmptyRecordMutationResult = Apollo.MutationResult<CreateEmptyRecordMutation>;
8334
+ export type CreateEmptyRecordMutationOptions = Apollo.BaseMutationOptions<CreateEmptyRecordMutation, CreateEmptyRecordMutationVariables>;
7455
8335
  export declare const CreateRecordDocument: Apollo.DocumentNode;
7456
8336
  export type CreateRecordMutationFn = Apollo.MutationFunction<CreateRecordMutation, CreateRecordMutationVariables>;
7457
8337
  /**
@@ -7537,8 +8417,14 @@ export declare function useDoesFileExistAsChildLazyQuery(baseOptions?: Apollo.La
7537
8417
  treeId: Scalars["ID"];
7538
8418
  filename: Scalars["String"];
7539
8419
  }>>;
8420
+ export declare function useDoesFileExistAsChildSuspenseQuery(baseOptions?: Apollo.SuspenseQueryHookOptions<DoesFileExistAsChildQuery, DoesFileExistAsChildQueryVariables>): Apollo.UseSuspenseQueryResult<DoesFileExistAsChildQuery, Exact<{
8421
+ parentNode?: InputMaybe<Scalars["ID"]>;
8422
+ treeId: Scalars["ID"];
8423
+ filename: Scalars["String"];
8424
+ }>>;
7540
8425
  export type DoesFileExistAsChildQueryHookResult = ReturnType<typeof useDoesFileExistAsChildQuery>;
7541
8426
  export type DoesFileExistAsChildLazyQueryHookResult = ReturnType<typeof useDoesFileExistAsChildLazyQuery>;
8427
+ export type DoesFileExistAsChildSuspenseQueryHookResult = ReturnType<typeof useDoesFileExistAsChildSuspenseQuery>;
7542
8428
  export type DoesFileExistAsChildQueryResult = Apollo.QueryResult<DoesFileExistAsChildQuery, DoesFileExistAsChildQueryVariables>;
7543
8429
  export declare const GetFileDataDocument: Apollo.DocumentNode;
7544
8430
  /**
@@ -7569,8 +8455,14 @@ export declare function useGetFileDataLazyQuery(baseOptions?: Apollo.LazyQueryHo
7569
8455
  fileId: Scalars["String"];
7570
8456
  previewsStatusAttribute: Scalars["ID"];
7571
8457
  }>>;
8458
+ export declare function useGetFileDataSuspenseQuery(baseOptions?: Apollo.SuspenseQueryHookOptions<GetFileDataQuery, GetFileDataQueryVariables>): Apollo.UseSuspenseQueryResult<GetFileDataQuery, Exact<{
8459
+ library: Scalars["ID"];
8460
+ fileId: Scalars["String"];
8461
+ previewsStatusAttribute: Scalars["ID"];
8462
+ }>>;
7572
8463
  export type GetFileDataQueryHookResult = ReturnType<typeof useGetFileDataQuery>;
7573
8464
  export type GetFileDataLazyQueryHookResult = ReturnType<typeof useGetFileDataLazyQuery>;
8465
+ export type GetFileDataSuspenseQueryHookResult = ReturnType<typeof useGetFileDataSuspenseQuery>;
7574
8466
  export type GetFileDataQueryResult = Apollo.QueryResult<GetFileDataQuery, GetFileDataQueryVariables>;
7575
8467
  export declare const RecordFormDocument: Apollo.DocumentNode;
7576
8468
  /**
@@ -7604,8 +8496,15 @@ export declare function useRecordFormLazyQuery(baseOptions?: Apollo.LazyQueryHoo
7604
8496
  recordId?: InputMaybe<Scalars["String"]>;
7605
8497
  version?: InputMaybe<Array<ValueVersionInput> | ValueVersionInput>;
7606
8498
  }>>;
8499
+ export declare function useRecordFormSuspenseQuery(baseOptions?: Apollo.SuspenseQueryHookOptions<RecordFormQuery, RecordFormQueryVariables>): Apollo.UseSuspenseQueryResult<RecordFormQuery, Exact<{
8500
+ libraryId: Scalars["String"];
8501
+ formId: Scalars["String"];
8502
+ recordId?: InputMaybe<Scalars["String"]>;
8503
+ version?: InputMaybe<Array<ValueVersionInput> | ValueVersionInput>;
8504
+ }>>;
7607
8505
  export type RecordFormQueryHookResult = ReturnType<typeof useRecordFormQuery>;
7608
8506
  export type RecordFormLazyQueryHookResult = ReturnType<typeof useRecordFormLazyQuery>;
8507
+ export type RecordFormSuspenseQueryHookResult = ReturnType<typeof useRecordFormSuspenseQuery>;
7609
8508
  export type RecordFormQueryResult = Apollo.QueryResult<RecordFormQuery, RecordFormQueryVariables>;
7610
8509
  export declare const RecordUpdateDocument: Apollo.DocumentNode;
7611
8510
  /**
@@ -7629,6 +8528,44 @@ export declare function useRecordUpdateSubscription(baseOptions?: Apollo.Subscri
7629
8528
  }>>;
7630
8529
  export type RecordUpdateSubscriptionHookResult = ReturnType<typeof useRecordUpdateSubscription>;
7631
8530
  export type RecordUpdateSubscriptionResult = Apollo.SubscriptionResult<RecordUpdateSubscription>;
8531
+ export declare const GetRecordsFromLibraryDocument: Apollo.DocumentNode;
8532
+ /**
8533
+ * __useGetRecordsFromLibraryQuery__
8534
+ *
8535
+ * To run a query within a React component, call `useGetRecordsFromLibraryQuery` and pass it any options that fit your needs.
8536
+ * When your component renders, `useGetRecordsFromLibraryQuery` returns an object from Apollo Client that contains loading, error, and data properties
8537
+ * you can use to render your UI.
8538
+ *
8539
+ * @param baseOptions options that will be passed into the query, supported options are listed on: https://www.apollographql.com/docs/react/api/react-hooks/#options;
8540
+ *
8541
+ * @example
8542
+ * const { data, loading, error } = useGetRecordsFromLibraryQuery({
8543
+ * variables: {
8544
+ * libraryId: // value for 'libraryId'
8545
+ * pagination: // value for 'pagination'
8546
+ * filters: // value for 'filters'
8547
+ * },
8548
+ * });
8549
+ */
8550
+ export declare function useGetRecordsFromLibraryQuery(baseOptions: Apollo.QueryHookOptions<GetRecordsFromLibraryQuery, GetRecordsFromLibraryQueryVariables>): Apollo.QueryResult<GetRecordsFromLibraryQuery, Exact<{
8551
+ libraryId: Scalars["ID"];
8552
+ pagination?: InputMaybe<RecordsPagination>;
8553
+ filters?: InputMaybe<Array<InputMaybe<RecordFilterInput>> | InputMaybe<RecordFilterInput>>;
8554
+ }>>;
8555
+ export declare function useGetRecordsFromLibraryLazyQuery(baseOptions?: Apollo.LazyQueryHookOptions<GetRecordsFromLibraryQuery, GetRecordsFromLibraryQueryVariables>): Apollo.LazyQueryResultTuple<GetRecordsFromLibraryQuery, Exact<{
8556
+ libraryId: Scalars["ID"];
8557
+ pagination?: InputMaybe<RecordsPagination>;
8558
+ filters?: InputMaybe<Array<InputMaybe<RecordFilterInput>> | InputMaybe<RecordFilterInput>>;
8559
+ }>>;
8560
+ export declare function useGetRecordsFromLibrarySuspenseQuery(baseOptions?: Apollo.SuspenseQueryHookOptions<GetRecordsFromLibraryQuery, GetRecordsFromLibraryQueryVariables>): Apollo.UseSuspenseQueryResult<GetRecordsFromLibraryQuery, Exact<{
8561
+ libraryId: Scalars["ID"];
8562
+ pagination?: InputMaybe<RecordsPagination>;
8563
+ filters?: InputMaybe<Array<InputMaybe<RecordFilterInput>> | InputMaybe<RecordFilterInput>>;
8564
+ }>>;
8565
+ export type GetRecordsFromLibraryQueryHookResult = ReturnType<typeof useGetRecordsFromLibraryQuery>;
8566
+ export type GetRecordsFromLibraryLazyQueryHookResult = ReturnType<typeof useGetRecordsFromLibraryLazyQuery>;
8567
+ export type GetRecordsFromLibrarySuspenseQueryHookResult = ReturnType<typeof useGetRecordsFromLibrarySuspenseQuery>;
8568
+ export type GetRecordsFromLibraryQueryResult = Apollo.QueryResult<GetRecordsFromLibraryQuery, GetRecordsFromLibraryQueryVariables>;
7632
8569
  export declare const IndexRecordsDocument: Apollo.DocumentNode;
7633
8570
  export type IndexRecordsMutationFn = Apollo.MutationFunction<IndexRecordsMutation, IndexRecordsMutationVariables>;
7634
8571
  /**
@@ -7704,8 +8641,12 @@ export declare function useCheckTreeExistenceQuery(baseOptions?: Apollo.QueryHoo
7704
8641
  export declare function useCheckTreeExistenceLazyQuery(baseOptions?: Apollo.LazyQueryHookOptions<CheckTreeExistenceQuery, CheckTreeExistenceQueryVariables>): Apollo.LazyQueryResultTuple<CheckTreeExistenceQuery, Exact<{
7705
8642
  id?: InputMaybe<Array<Scalars["ID"]> | Scalars["ID"]>;
7706
8643
  }>>;
8644
+ export declare function useCheckTreeExistenceSuspenseQuery(baseOptions?: Apollo.SuspenseQueryHookOptions<CheckTreeExistenceQuery, CheckTreeExistenceQueryVariables>): Apollo.UseSuspenseQueryResult<CheckTreeExistenceQuery, Exact<{
8645
+ id?: InputMaybe<Array<Scalars["ID"]> | Scalars["ID"]>;
8646
+ }>>;
7707
8647
  export type CheckTreeExistenceQueryHookResult = ReturnType<typeof useCheckTreeExistenceQuery>;
7708
8648
  export type CheckTreeExistenceLazyQueryHookResult = ReturnType<typeof useCheckTreeExistenceLazyQuery>;
8649
+ export type CheckTreeExistenceSuspenseQueryHookResult = ReturnType<typeof useCheckTreeExistenceSuspenseQuery>;
7709
8650
  export type CheckTreeExistenceQueryResult = Apollo.QueryResult<CheckTreeExistenceQuery, CheckTreeExistenceQueryVariables>;
7710
8651
  export declare const DeleteTreeDocument: Apollo.DocumentNode;
7711
8652
  export type DeleteTreeMutationFn = Apollo.MutationFunction<DeleteTreeMutation, DeleteTreeMutationVariables>;
@@ -7755,8 +8696,12 @@ export declare function useGetTreeByIdQuery(baseOptions?: Apollo.QueryHookOption
7755
8696
  export declare function useGetTreeByIdLazyQuery(baseOptions?: Apollo.LazyQueryHookOptions<GetTreeByIdQuery, GetTreeByIdQueryVariables>): Apollo.LazyQueryResultTuple<GetTreeByIdQuery, Exact<{
7756
8697
  id?: InputMaybe<Array<Scalars["ID"]> | Scalars["ID"]>;
7757
8698
  }>>;
8699
+ export declare function useGetTreeByIdSuspenseQuery(baseOptions?: Apollo.SuspenseQueryHookOptions<GetTreeByIdQuery, GetTreeByIdQueryVariables>): Apollo.UseSuspenseQueryResult<GetTreeByIdQuery, Exact<{
8700
+ id?: InputMaybe<Array<Scalars["ID"]> | Scalars["ID"]>;
8701
+ }>>;
7758
8702
  export type GetTreeByIdQueryHookResult = ReturnType<typeof useGetTreeByIdQuery>;
7759
8703
  export type GetTreeByIdLazyQueryHookResult = ReturnType<typeof useGetTreeByIdLazyQuery>;
8704
+ export type GetTreeByIdSuspenseQueryHookResult = ReturnType<typeof useGetTreeByIdSuspenseQuery>;
7760
8705
  export type GetTreeByIdQueryResult = Apollo.QueryResult<GetTreeByIdQuery, GetTreeByIdQueryVariables>;
7761
8706
  export declare const GetTreeLibrariesDocument: Apollo.DocumentNode;
7762
8707
  /**
@@ -7784,8 +8729,13 @@ export declare function useGetTreeLibrariesLazyQuery(baseOptions?: Apollo.LazyQu
7784
8729
  treeId?: InputMaybe<Array<Scalars["ID"]> | Scalars["ID"]>;
7785
8730
  library?: InputMaybe<Scalars["String"]>;
7786
8731
  }>>;
8732
+ export declare function useGetTreeLibrariesSuspenseQuery(baseOptions?: Apollo.SuspenseQueryHookOptions<GetTreeLibrariesQuery, GetTreeLibrariesQueryVariables>): Apollo.UseSuspenseQueryResult<GetTreeLibrariesQuery, Exact<{
8733
+ treeId?: InputMaybe<Array<Scalars["ID"]> | Scalars["ID"]>;
8734
+ library?: InputMaybe<Scalars["String"]>;
8735
+ }>>;
7787
8736
  export type GetTreeLibrariesQueryHookResult = ReturnType<typeof useGetTreeLibrariesQuery>;
7788
8737
  export type GetTreeLibrariesLazyQueryHookResult = ReturnType<typeof useGetTreeLibrariesLazyQuery>;
8738
+ export type GetTreeLibrariesSuspenseQueryHookResult = ReturnType<typeof useGetTreeLibrariesSuspenseQuery>;
7789
8739
  export type GetTreeLibrariesQueryResult = Apollo.QueryResult<GetTreeLibrariesQuery, GetTreeLibrariesQueryVariables>;
7790
8740
  export declare const GetTreesDocument: Apollo.DocumentNode;
7791
8741
  /**
@@ -7809,8 +8759,12 @@ export declare function useGetTreesQuery(baseOptions?: Apollo.QueryHookOptions<G
7809
8759
  export declare function useGetTreesLazyQuery(baseOptions?: Apollo.LazyQueryHookOptions<GetTreesQuery, GetTreesQueryVariables>): Apollo.LazyQueryResultTuple<GetTreesQuery, Exact<{
7810
8760
  [key: string]: never;
7811
8761
  }>>;
8762
+ export declare function useGetTreesSuspenseQuery(baseOptions?: Apollo.SuspenseQueryHookOptions<GetTreesQuery, GetTreesQueryVariables>): Apollo.UseSuspenseQueryResult<GetTreesQuery, Exact<{
8763
+ [key: string]: never;
8764
+ }>>;
7812
8765
  export type GetTreesQueryHookResult = ReturnType<typeof useGetTreesQuery>;
7813
8766
  export type GetTreesLazyQueryHookResult = ReturnType<typeof useGetTreesLazyQuery>;
8767
+ export type GetTreesSuspenseQueryHookResult = ReturnType<typeof useGetTreesSuspenseQuery>;
7814
8768
  export type GetTreesQueryResult = Apollo.QueryResult<GetTreesQuery, GetTreesQueryVariables>;
7815
8769
  export declare const SaveTreeDocument: Apollo.DocumentNode;
7816
8770
  export type SaveTreeMutationFn = Apollo.MutationFunction<SaveTreeMutation, SaveTreeMutationVariables>;
@@ -7853,6 +8807,7 @@ export declare const TreeNodeChildrenDocument: Apollo.DocumentNode;
7853
8807
  * treeId: // value for 'treeId'
7854
8808
  * node: // value for 'node'
7855
8809
  * pagination: // value for 'pagination'
8810
+ * childrenAsRecordValuePermissionFilter: // value for 'childrenAsRecordValuePermissionFilter'
7856
8811
  * },
7857
8812
  * });
7858
8813
  */
@@ -7860,14 +8815,23 @@ export declare function useTreeNodeChildrenQuery(baseOptions: Apollo.QueryHookOp
7860
8815
  treeId: Scalars["ID"];
7861
8816
  node?: InputMaybe<Scalars["ID"]>;
7862
8817
  pagination?: InputMaybe<Pagination>;
8818
+ childrenAsRecordValuePermissionFilter?: InputMaybe<ChildrenAsRecordValuePermissionFilterInput>;
7863
8819
  }>>;
7864
8820
  export declare function useTreeNodeChildrenLazyQuery(baseOptions?: Apollo.LazyQueryHookOptions<TreeNodeChildrenQuery, TreeNodeChildrenQueryVariables>): Apollo.LazyQueryResultTuple<TreeNodeChildrenQuery, Exact<{
7865
8821
  treeId: Scalars["ID"];
7866
8822
  node?: InputMaybe<Scalars["ID"]>;
7867
8823
  pagination?: InputMaybe<Pagination>;
8824
+ childrenAsRecordValuePermissionFilter?: InputMaybe<ChildrenAsRecordValuePermissionFilterInput>;
8825
+ }>>;
8826
+ export declare function useTreeNodeChildrenSuspenseQuery(baseOptions?: Apollo.SuspenseQueryHookOptions<TreeNodeChildrenQuery, TreeNodeChildrenQueryVariables>): Apollo.UseSuspenseQueryResult<TreeNodeChildrenQuery, Exact<{
8827
+ treeId: Scalars["ID"];
8828
+ node?: InputMaybe<Scalars["ID"]>;
8829
+ pagination?: InputMaybe<Pagination>;
8830
+ childrenAsRecordValuePermissionFilter?: InputMaybe<ChildrenAsRecordValuePermissionFilterInput>;
7868
8831
  }>>;
7869
8832
  export type TreeNodeChildrenQueryHookResult = ReturnType<typeof useTreeNodeChildrenQuery>;
7870
8833
  export type TreeNodeChildrenLazyQueryHookResult = ReturnType<typeof useTreeNodeChildrenLazyQuery>;
8834
+ export type TreeNodeChildrenSuspenseQueryHookResult = ReturnType<typeof useTreeNodeChildrenSuspenseQuery>;
7871
8835
  export type TreeNodeChildrenQueryResult = Apollo.QueryResult<TreeNodeChildrenQuery, TreeNodeChildrenQueryVariables>;
7872
8836
  export declare const GetUserDataDocument: Apollo.DocumentNode;
7873
8837
  /**
@@ -7895,8 +8859,13 @@ export declare function useGetUserDataLazyQuery(baseOptions?: Apollo.LazyQueryHo
7895
8859
  keys: Array<Scalars["String"]> | Scalars["String"];
7896
8860
  global?: InputMaybe<Scalars["Boolean"]>;
7897
8861
  }>>;
8862
+ export declare function useGetUserDataSuspenseQuery(baseOptions?: Apollo.SuspenseQueryHookOptions<GetUserDataQuery, GetUserDataQueryVariables>): Apollo.UseSuspenseQueryResult<GetUserDataQuery, Exact<{
8863
+ keys: Array<Scalars["String"]> | Scalars["String"];
8864
+ global?: InputMaybe<Scalars["Boolean"]>;
8865
+ }>>;
7898
8866
  export type GetUserDataQueryHookResult = ReturnType<typeof useGetUserDataQuery>;
7899
8867
  export type GetUserDataLazyQueryHookResult = ReturnType<typeof useGetUserDataLazyQuery>;
8868
+ export type GetUserDataSuspenseQueryHookResult = ReturnType<typeof useGetUserDataSuspenseQuery>;
7900
8869
  export type GetUserDataQueryResult = Apollo.QueryResult<GetUserDataQuery, GetUserDataQueryVariables>;
7901
8870
  export declare const SaveUserDataDocument: Apollo.DocumentNode;
7902
8871
  export type SaveUserDataMutationFn = Apollo.MutationFunction<SaveUserDataMutation, SaveUserDataMutationVariables>;
@@ -7958,38 +8927,6 @@ export declare function useDeleteValueMutation(baseOptions?: Apollo.MutationHook
7958
8927
  export type DeleteValueMutationHookResult = ReturnType<typeof useDeleteValueMutation>;
7959
8928
  export type DeleteValueMutationResult = Apollo.MutationResult<DeleteValueMutation>;
7960
8929
  export type DeleteValueMutationOptions = Apollo.BaseMutationOptions<DeleteValueMutation, DeleteValueMutationVariables>;
7961
- export declare const RunActionsListAndFormatOnValueDocument: Apollo.DocumentNode;
7962
- /**
7963
- * __useRunActionsListAndFormatOnValueQuery__
7964
- *
7965
- * To run a query within a React component, call `useRunActionsListAndFormatOnValueQuery` and pass it any options that fit your needs.
7966
- * When your component renders, `useRunActionsListAndFormatOnValueQuery` returns an object from Apollo Client that contains loading, error, and data properties
7967
- * you can use to render your UI.
7968
- *
7969
- * @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;
7970
- *
7971
- * @example
7972
- * const { data, loading, error } = useRunActionsListAndFormatOnValueQuery({
7973
- * variables: {
7974
- * library: // value for 'library'
7975
- * value: // value for 'value'
7976
- * version: // value for 'version'
7977
- * },
7978
- * });
7979
- */
7980
- export declare function useRunActionsListAndFormatOnValueQuery(baseOptions: Apollo.QueryHookOptions<RunActionsListAndFormatOnValueQuery, RunActionsListAndFormatOnValueQueryVariables>): Apollo.QueryResult<RunActionsListAndFormatOnValueQuery, Exact<{
7981
- library: Scalars["ID"];
7982
- value?: InputMaybe<ValueBatchInput>;
7983
- version?: InputMaybe<Array<InputMaybe<ValueVersionInput>> | InputMaybe<ValueVersionInput>>;
7984
- }>>;
7985
- export declare function useRunActionsListAndFormatOnValueLazyQuery(baseOptions?: Apollo.LazyQueryHookOptions<RunActionsListAndFormatOnValueQuery, RunActionsListAndFormatOnValueQueryVariables>): Apollo.LazyQueryResultTuple<RunActionsListAndFormatOnValueQuery, Exact<{
7986
- library: Scalars["ID"];
7987
- value?: InputMaybe<ValueBatchInput>;
7988
- version?: InputMaybe<Array<InputMaybe<ValueVersionInput>> | InputMaybe<ValueVersionInput>>;
7989
- }>>;
7990
- export type RunActionsListAndFormatOnValueQueryHookResult = ReturnType<typeof useRunActionsListAndFormatOnValueQuery>;
7991
- export type RunActionsListAndFormatOnValueLazyQueryHookResult = ReturnType<typeof useRunActionsListAndFormatOnValueLazyQuery>;
7992
- export type RunActionsListAndFormatOnValueQueryResult = Apollo.QueryResult<RunActionsListAndFormatOnValueQuery, RunActionsListAndFormatOnValueQueryVariables>;
7993
8930
  export declare const SaveValueBatchDocument: Apollo.DocumentNode;
7994
8931
  export type SaveValueBatchMutationFn = Apollo.MutationFunction<SaveValueBatchMutation, SaveValueBatchMutationVariables>;
7995
8932
  /**
@@ -8071,8 +9008,12 @@ export declare function useGetViewQuery(baseOptions: Apollo.QueryHookOptions<Get
8071
9008
  export declare function useGetViewLazyQuery(baseOptions?: Apollo.LazyQueryHookOptions<GetViewQuery, GetViewQueryVariables>): Apollo.LazyQueryResultTuple<GetViewQuery, Exact<{
8072
9009
  viewId: Scalars["String"];
8073
9010
  }>>;
9011
+ export declare function useGetViewSuspenseQuery(baseOptions?: Apollo.SuspenseQueryHookOptions<GetViewQuery, GetViewQueryVariables>): Apollo.UseSuspenseQueryResult<GetViewQuery, Exact<{
9012
+ viewId: Scalars["String"];
9013
+ }>>;
8074
9014
  export type GetViewQueryHookResult = ReturnType<typeof useGetViewQuery>;
8075
9015
  export type GetViewLazyQueryHookResult = ReturnType<typeof useGetViewLazyQuery>;
9016
+ export type GetViewSuspenseQueryHookResult = ReturnType<typeof useGetViewSuspenseQuery>;
8076
9017
  export type GetViewQueryResult = Apollo.QueryResult<GetViewQuery, GetViewQueryVariables>;
8077
9018
  export declare const GetViewsListDocument: Apollo.DocumentNode;
8078
9019
  /**
@@ -8097,8 +9038,12 @@ export declare function useGetViewsListQuery(baseOptions: Apollo.QueryHookOption
8097
9038
  export declare function useGetViewsListLazyQuery(baseOptions?: Apollo.LazyQueryHookOptions<GetViewsListQuery, GetViewsListQueryVariables>): Apollo.LazyQueryResultTuple<GetViewsListQuery, Exact<{
8098
9039
  libraryId: Scalars["String"];
8099
9040
  }>>;
9041
+ export declare function useGetViewsListSuspenseQuery(baseOptions?: Apollo.SuspenseQueryHookOptions<GetViewsListQuery, GetViewsListQueryVariables>): Apollo.UseSuspenseQueryResult<GetViewsListQuery, Exact<{
9042
+ libraryId: Scalars["String"];
9043
+ }>>;
8100
9044
  export type GetViewsListQueryHookResult = ReturnType<typeof useGetViewsListQuery>;
8101
9045
  export type GetViewsListLazyQueryHookResult = ReturnType<typeof useGetViewsListLazyQuery>;
9046
+ export type GetViewsListSuspenseQueryHookResult = ReturnType<typeof useGetViewsListSuspenseQuery>;
8102
9047
  export type GetViewsListQueryResult = Apollo.QueryResult<GetViewsListQuery, GetViewsListQueryVariables>;
8103
9048
  export declare const SaveViewDocument: Apollo.DocumentNode;
8104
9049
  export type SaveViewMutationFn = Apollo.MutationFunction<SaveViewMutation, SaveViewMutationVariables>;
@@ -8148,8 +9093,12 @@ export declare function useGetAttributesByLibWithPermissionsQuery(baseOptions: A
8148
9093
  export declare function useGetAttributesByLibWithPermissionsLazyQuery(baseOptions?: Apollo.LazyQueryHookOptions<GetAttributesByLibWithPermissionsQuery, GetAttributesByLibWithPermissionsQueryVariables>): Apollo.LazyQueryResultTuple<GetAttributesByLibWithPermissionsQuery, Exact<{
8149
9094
  library: Scalars["String"];
8150
9095
  }>>;
9096
+ export declare function useGetAttributesByLibWithPermissionsSuspenseQuery(baseOptions?: Apollo.SuspenseQueryHookOptions<GetAttributesByLibWithPermissionsQuery, GetAttributesByLibWithPermissionsQueryVariables>): Apollo.UseSuspenseQueryResult<GetAttributesByLibWithPermissionsQuery, Exact<{
9097
+ library: Scalars["String"];
9098
+ }>>;
8151
9099
  export type GetAttributesByLibWithPermissionsQueryHookResult = ReturnType<typeof useGetAttributesByLibWithPermissionsQuery>;
8152
9100
  export type GetAttributesByLibWithPermissionsLazyQueryHookResult = ReturnType<typeof useGetAttributesByLibWithPermissionsLazyQuery>;
9101
+ export type GetAttributesByLibWithPermissionsSuspenseQueryHookResult = ReturnType<typeof useGetAttributesByLibWithPermissionsSuspenseQuery>;
8153
9102
  export type GetAttributesByLibWithPermissionsQueryResult = Apollo.QueryResult<GetAttributesByLibWithPermissionsQuery, GetAttributesByLibWithPermissionsQueryVariables>;
8154
9103
  export declare const ExplorerAttributesDocument: Apollo.DocumentNode;
8155
9104
  /**
@@ -8174,8 +9123,12 @@ export declare function useExplorerAttributesQuery(baseOptions?: Apollo.QueryHoo
8174
9123
  export declare function useExplorerAttributesLazyQuery(baseOptions?: Apollo.LazyQueryHookOptions<ExplorerAttributesQuery, ExplorerAttributesQueryVariables>): Apollo.LazyQueryResultTuple<ExplorerAttributesQuery, Exact<{
8175
9124
  ids?: InputMaybe<Array<Scalars["ID"]> | Scalars["ID"]>;
8176
9125
  }>>;
9126
+ export declare function useExplorerAttributesSuspenseQuery(baseOptions?: Apollo.SuspenseQueryHookOptions<ExplorerAttributesQuery, ExplorerAttributesQueryVariables>): Apollo.UseSuspenseQueryResult<ExplorerAttributesQuery, Exact<{
9127
+ ids?: InputMaybe<Array<Scalars["ID"]> | Scalars["ID"]>;
9128
+ }>>;
8177
9129
  export type ExplorerAttributesQueryHookResult = ReturnType<typeof useExplorerAttributesQuery>;
8178
9130
  export type ExplorerAttributesLazyQueryHookResult = ReturnType<typeof useExplorerAttributesLazyQuery>;
9131
+ export type ExplorerAttributesSuspenseQueryHookResult = ReturnType<typeof useExplorerAttributesSuspenseQuery>;
8179
9132
  export type ExplorerAttributesQueryResult = Apollo.QueryResult<ExplorerAttributesQuery, ExplorerAttributesQueryVariables>;
8180
9133
  export declare const ExplorerLinkAttributeDocument: Apollo.DocumentNode;
8181
9134
  /**
@@ -8200,8 +9153,12 @@ export declare function useExplorerLinkAttributeQuery(baseOptions: Apollo.QueryH
8200
9153
  export declare function useExplorerLinkAttributeLazyQuery(baseOptions?: Apollo.LazyQueryHookOptions<ExplorerLinkAttributeQuery, ExplorerLinkAttributeQueryVariables>): Apollo.LazyQueryResultTuple<ExplorerLinkAttributeQuery, Exact<{
8201
9154
  id: Scalars["ID"];
8202
9155
  }>>;
9156
+ export declare function useExplorerLinkAttributeSuspenseQuery(baseOptions?: Apollo.SuspenseQueryHookOptions<ExplorerLinkAttributeQuery, ExplorerLinkAttributeQueryVariables>): Apollo.UseSuspenseQueryResult<ExplorerLinkAttributeQuery, Exact<{
9157
+ id: Scalars["ID"];
9158
+ }>>;
8203
9159
  export type ExplorerLinkAttributeQueryHookResult = ReturnType<typeof useExplorerLinkAttributeQuery>;
8204
9160
  export type ExplorerLinkAttributeLazyQueryHookResult = ReturnType<typeof useExplorerLinkAttributeLazyQuery>;
9161
+ export type ExplorerLinkAttributeSuspenseQueryHookResult = ReturnType<typeof useExplorerLinkAttributeSuspenseQuery>;
8205
9162
  export type ExplorerLinkAttributeQueryResult = Apollo.QueryResult<ExplorerLinkAttributeQuery, ExplorerLinkAttributeQueryVariables>;
8206
9163
  export declare const ExplorerLibraryDataDocument: Apollo.DocumentNode;
8207
9164
  /**
@@ -8241,8 +9198,17 @@ export declare function useExplorerLibraryDataLazyQuery(baseOptions?: Apollo.Laz
8241
9198
  multipleSort?: InputMaybe<Array<RecordSortInput> | RecordSortInput>;
8242
9199
  searchQuery?: InputMaybe<Scalars["String"]>;
8243
9200
  }>>;
9201
+ export declare function useExplorerLibraryDataSuspenseQuery(baseOptions?: Apollo.SuspenseQueryHookOptions<ExplorerLibraryDataQuery, ExplorerLibraryDataQueryVariables>): Apollo.UseSuspenseQueryResult<ExplorerLibraryDataQuery, Exact<{
9202
+ libraryId: Scalars["ID"];
9203
+ attributeIds: Array<Scalars["ID"]> | Scalars["ID"];
9204
+ pagination?: InputMaybe<RecordsPagination>;
9205
+ filters?: InputMaybe<Array<InputMaybe<RecordFilterInput>> | InputMaybe<RecordFilterInput>>;
9206
+ multipleSort?: InputMaybe<Array<RecordSortInput> | RecordSortInput>;
9207
+ searchQuery?: InputMaybe<Scalars["String"]>;
9208
+ }>>;
8244
9209
  export type ExplorerLibraryDataQueryHookResult = ReturnType<typeof useExplorerLibraryDataQuery>;
8245
9210
  export type ExplorerLibraryDataLazyQueryHookResult = ReturnType<typeof useExplorerLibraryDataLazyQuery>;
9211
+ export type ExplorerLibraryDataSuspenseQueryHookResult = ReturnType<typeof useExplorerLibraryDataSuspenseQuery>;
8246
9212
  export type ExplorerLibraryDataQueryResult = Apollo.QueryResult<ExplorerLibraryDataQuery, ExplorerLibraryDataQueryVariables>;
8247
9213
  export declare const ExplorerLinkDataDocument: Apollo.DocumentNode;
8248
9214
  /**
@@ -8276,8 +9242,15 @@ export declare function useExplorerLinkDataLazyQuery(baseOptions?: Apollo.LazyQu
8276
9242
  parentRecordId?: InputMaybe<Scalars["String"]>;
8277
9243
  linkAttributeId: Scalars["ID"];
8278
9244
  }>>;
9245
+ export declare function useExplorerLinkDataSuspenseQuery(baseOptions?: Apollo.SuspenseQueryHookOptions<ExplorerLinkDataQuery, ExplorerLinkDataQueryVariables>): Apollo.UseSuspenseQueryResult<ExplorerLinkDataQuery, Exact<{
9246
+ attributeIds: Array<Scalars["ID"]> | Scalars["ID"];
9247
+ parentLibraryId: Scalars["ID"];
9248
+ parentRecordId?: InputMaybe<Scalars["String"]>;
9249
+ linkAttributeId: Scalars["ID"];
9250
+ }>>;
8279
9251
  export type ExplorerLinkDataQueryHookResult = ReturnType<typeof useExplorerLinkDataQuery>;
8280
9252
  export type ExplorerLinkDataLazyQueryHookResult = ReturnType<typeof useExplorerLinkDataLazyQuery>;
9253
+ export type ExplorerLinkDataSuspenseQueryHookResult = ReturnType<typeof useExplorerLinkDataSuspenseQuery>;
8281
9254
  export type ExplorerLinkDataQueryResult = Apollo.QueryResult<ExplorerLinkDataQuery, ExplorerLinkDataQueryVariables>;
8282
9255
  export declare const GetLibraryAttributesDocument: Apollo.DocumentNode;
8283
9256
  /**
@@ -8302,8 +9275,12 @@ export declare function useGetLibraryAttributesQuery(baseOptions: Apollo.QueryHo
8302
9275
  export declare function useGetLibraryAttributesLazyQuery(baseOptions?: Apollo.LazyQueryHookOptions<GetLibraryAttributesQuery, GetLibraryAttributesQueryVariables>): Apollo.LazyQueryResultTuple<GetLibraryAttributesQuery, Exact<{
8303
9276
  libraryId: Scalars["ID"];
8304
9277
  }>>;
9278
+ export declare function useGetLibraryAttributesSuspenseQuery(baseOptions?: Apollo.SuspenseQueryHookOptions<GetLibraryAttributesQuery, GetLibraryAttributesQueryVariables>): Apollo.UseSuspenseQueryResult<GetLibraryAttributesQuery, Exact<{
9279
+ libraryId: Scalars["ID"];
9280
+ }>>;
8305
9281
  export type GetLibraryAttributesQueryHookResult = ReturnType<typeof useGetLibraryAttributesQuery>;
8306
9282
  export type GetLibraryAttributesLazyQueryHookResult = ReturnType<typeof useGetLibraryAttributesLazyQuery>;
9283
+ export type GetLibraryAttributesSuspenseQueryHookResult = ReturnType<typeof useGetLibraryAttributesSuspenseQuery>;
8307
9284
  export type GetLibraryAttributesQueryResult = Apollo.QueryResult<GetLibraryAttributesQuery, GetLibraryAttributesQueryVariables>;
8308
9285
  export declare const ExplorerLibraryDetailsDocument: Apollo.DocumentNode;
8309
9286
  /**
@@ -8328,8 +9305,12 @@ export declare function useExplorerLibraryDetailsQuery(baseOptions: Apollo.Query
8328
9305
  export declare function useExplorerLibraryDetailsLazyQuery(baseOptions?: Apollo.LazyQueryHookOptions<ExplorerLibraryDetailsQuery, ExplorerLibraryDetailsQueryVariables>): Apollo.LazyQueryResultTuple<ExplorerLibraryDetailsQuery, Exact<{
8329
9306
  libraryId: Scalars["ID"];
8330
9307
  }>>;
9308
+ export declare function useExplorerLibraryDetailsSuspenseQuery(baseOptions?: Apollo.SuspenseQueryHookOptions<ExplorerLibraryDetailsQuery, ExplorerLibraryDetailsQueryVariables>): Apollo.UseSuspenseQueryResult<ExplorerLibraryDetailsQuery, Exact<{
9309
+ libraryId: Scalars["ID"];
9310
+ }>>;
8331
9311
  export type ExplorerLibraryDetailsQueryHookResult = ReturnType<typeof useExplorerLibraryDetailsQuery>;
8332
9312
  export type ExplorerLibraryDetailsLazyQueryHookResult = ReturnType<typeof useExplorerLibraryDetailsLazyQuery>;
9313
+ export type ExplorerLibraryDetailsSuspenseQueryHookResult = ReturnType<typeof useExplorerLibraryDetailsSuspenseQuery>;
8333
9314
  export type ExplorerLibraryDetailsQueryResult = Apollo.QueryResult<ExplorerLibraryDetailsQuery, ExplorerLibraryDetailsQueryVariables>;
8334
9315
  export declare const ExplorerSelectionIdsDocument: Apollo.DocumentNode;
8335
9316
  /**
@@ -8357,8 +9338,13 @@ export declare function useExplorerSelectionIdsLazyQuery(baseOptions?: Apollo.La
8357
9338
  libraryId: Scalars["ID"];
8358
9339
  filters?: InputMaybe<Array<InputMaybe<RecordFilterInput>> | InputMaybe<RecordFilterInput>>;
8359
9340
  }>>;
9341
+ export declare function useExplorerSelectionIdsSuspenseQuery(baseOptions?: Apollo.SuspenseQueryHookOptions<ExplorerSelectionIdsQuery, ExplorerSelectionIdsQueryVariables>): Apollo.UseSuspenseQueryResult<ExplorerSelectionIdsQuery, Exact<{
9342
+ libraryId: Scalars["ID"];
9343
+ filters?: InputMaybe<Array<InputMaybe<RecordFilterInput>> | InputMaybe<RecordFilterInput>>;
9344
+ }>>;
8360
9345
  export type ExplorerSelectionIdsQueryHookResult = ReturnType<typeof useExplorerSelectionIdsQuery>;
8361
9346
  export type ExplorerSelectionIdsLazyQueryHookResult = ReturnType<typeof useExplorerSelectionIdsLazyQuery>;
9347
+ export type ExplorerSelectionIdsSuspenseQueryHookResult = ReturnType<typeof useExplorerSelectionIdsSuspenseQuery>;
8362
9348
  export type ExplorerSelectionIdsQueryResult = Apollo.QueryResult<ExplorerSelectionIdsQuery, ExplorerSelectionIdsQueryVariables>;
8363
9349
  export declare const MeDocument: Apollo.DocumentNode;
8364
9350
  /**
@@ -8382,8 +9368,12 @@ export declare function useMeQuery(baseOptions?: Apollo.QueryHookOptions<MeQuery
8382
9368
  export declare function useMeLazyQuery(baseOptions?: Apollo.LazyQueryHookOptions<MeQuery, MeQueryVariables>): Apollo.LazyQueryResultTuple<MeQuery, Exact<{
8383
9369
  [key: string]: never;
8384
9370
  }>>;
9371
+ export declare function useMeSuspenseQuery(baseOptions?: Apollo.SuspenseQueryHookOptions<MeQuery, MeQueryVariables>): Apollo.UseSuspenseQueryResult<MeQuery, Exact<{
9372
+ [key: string]: never;
9373
+ }>>;
8385
9374
  export type MeQueryHookResult = ReturnType<typeof useMeQuery>;
8386
9375
  export type MeLazyQueryHookResult = ReturnType<typeof useMeLazyQuery>;
9376
+ export type MeSuspenseQueryHookResult = ReturnType<typeof useMeSuspenseQuery>;
8387
9377
  export type MeQueryResult = Apollo.QueryResult<MeQuery, MeQueryVariables>;
8388
9378
  export declare const UpdateViewDocument: Apollo.DocumentNode;
8389
9379
  export type UpdateViewMutationFn = Apollo.MutationFunction<UpdateViewMutation, UpdateViewMutationVariables>;
@@ -8433,6 +9423,10 @@ export declare function useTreeDataQueryQuery(baseOptions: Apollo.QueryHookOptio
8433
9423
  export declare function useTreeDataQueryLazyQuery(baseOptions?: Apollo.LazyQueryHookOptions<TreeDataQueryQuery, TreeDataQueryQueryVariables>): Apollo.LazyQueryResultTuple<TreeDataQueryQuery, Exact<{
8434
9424
  treeId: Scalars["ID"];
8435
9425
  }>>;
9426
+ export declare function useTreeDataQuerySuspenseQuery(baseOptions?: Apollo.SuspenseQueryHookOptions<TreeDataQueryQuery, TreeDataQueryQueryVariables>): Apollo.UseSuspenseQueryResult<TreeDataQueryQuery, Exact<{
9427
+ treeId: Scalars["ID"];
9428
+ }>>;
8436
9429
  export type TreeDataQueryQueryHookResult = ReturnType<typeof useTreeDataQueryQuery>;
8437
9430
  export type TreeDataQueryLazyQueryHookResult = ReturnType<typeof useTreeDataQueryLazyQuery>;
9431
+ export type TreeDataQuerySuspenseQueryHookResult = ReturnType<typeof useTreeDataQuerySuspenseQuery>;
8438
9432
  export type TreeDataQueryQueryResult = Apollo.QueryResult<TreeDataQueryQuery, TreeDataQueryQueryVariables>;