@leav/ui 0.4.0-fd9dcf3f → 1.0.0-861b1b4d

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 (212) hide show
  1. package/dist/_gqlTypes/index.d.ts +348 -215
  2. package/dist/_gqlTypes/index.js +184 -95
  3. package/dist/_gqlTypes/index.js.map +1 -1
  4. package/dist/_utils/attributeType.d.ts +2 -1
  5. package/dist/_utils/attributeType.js +2 -1
  6. package/dist/_utils/attributeType.js.map +1 -1
  7. package/dist/components/Explorer/DataView.js +3 -3
  8. package/dist/components/Explorer/DataView.js.map +1 -1
  9. package/dist/components/Explorer/Explorer.d.ts +1 -1
  10. package/dist/components/Explorer/Explorer.js +15 -4
  11. package/dist/components/Explorer/Explorer.js.map +1 -1
  12. package/dist/components/Explorer/ExplorerToolbar.js +11 -2
  13. package/dist/components/Explorer/ExplorerToolbar.js.map +1 -1
  14. package/dist/components/Explorer/_queries/prepareFiltersForRequest.d.ts +1 -1
  15. package/dist/components/Explorer/_queries/prepareFiltersForRequest.js +99 -31
  16. package/dist/components/Explorer/_queries/prepareFiltersForRequest.js.map +1 -1
  17. package/dist/components/Explorer/_queries/useExplorerData.js +32 -27
  18. package/dist/components/Explorer/_queries/useExplorerData.js.map +1 -1
  19. package/dist/components/Explorer/_types.d.ts +68 -8
  20. package/dist/components/Explorer/_types.js +5 -0
  21. package/dist/components/Explorer/_types.js.map +1 -1
  22. package/dist/components/Explorer/actions-item/useReplaceItemAction.d.ts +2 -1
  23. package/dist/components/Explorer/actions-item/useReplaceItemAction.js +2 -2
  24. package/dist/components/Explorer/actions-item/useReplaceItemAction.js.map +1 -1
  25. package/dist/components/Explorer/actions-primary/useCreatePrimaryAction.d.ts +3 -1
  26. package/dist/components/Explorer/actions-primary/useCreatePrimaryAction.js +9 -19
  27. package/dist/components/Explorer/actions-primary/useCreatePrimaryAction.js.map +1 -1
  28. package/dist/components/Explorer/actions-primary/useLinkPrimaryAction.d.ts +6 -3
  29. package/dist/components/Explorer/actions-primary/useLinkPrimaryAction.js +5 -19
  30. package/dist/components/Explorer/actions-primary/useLinkPrimaryAction.js.map +1 -1
  31. package/dist/components/Explorer/link-item/LinkModal.d.ts +3 -0
  32. package/dist/components/Explorer/link-item/LinkModal.js +44 -4
  33. package/dist/components/Explorer/link-item/LinkModal.js.map +1 -1
  34. package/dist/components/Explorer/manage-view-settings/_shared/CommonFilterItem.js +4 -4
  35. package/dist/components/Explorer/manage-view-settings/_shared/CommonFilterItem.js.map +1 -1
  36. package/dist/components/Explorer/manage-view-settings/_shared/useTransformFilters.d.ts +9 -3
  37. package/dist/components/Explorer/manage-view-settings/_shared/useTransformFilters.js +78 -13
  38. package/dist/components/Explorer/manage-view-settings/_shared/useTransformFilters.js.map +1 -1
  39. package/dist/components/Explorer/manage-view-settings/filter-items/FilterItems.js +21 -8
  40. package/dist/components/Explorer/manage-view-settings/filter-items/FilterItems.js.map +1 -1
  41. package/dist/components/Explorer/manage-view-settings/filter-items/filter-type/FilterDropDown.js +2 -2
  42. package/dist/components/Explorer/manage-view-settings/filter-items/filter-type/FilterDropDown.js.map +1 -1
  43. package/dist/components/Explorer/manage-view-settings/filter-items/filter-type/FilterDropdownContent.js +9 -1
  44. package/dist/components/Explorer/manage-view-settings/filter-items/filter-type/FilterDropdownContent.js.map +1 -1
  45. package/dist/components/Explorer/manage-view-settings/filter-items/filter-type/FilterValueListDropDown.d.ts +9 -0
  46. package/dist/components/Explorer/manage-view-settings/filter-items/filter-type/FilterValueListDropDown.js +131 -0
  47. package/dist/components/Explorer/manage-view-settings/filter-items/filter-type/FilterValueListDropDown.js.map +1 -0
  48. package/dist/components/Explorer/manage-view-settings/filter-items/filter-type/TreeAttributeDropDown.d.ts +3 -0
  49. package/dist/components/Explorer/manage-view-settings/filter-items/filter-type/TreeAttributeDropDown.js +69 -0
  50. package/dist/components/Explorer/manage-view-settings/filter-items/filter-type/TreeAttributeDropDown.js.map +1 -0
  51. package/dist/components/Explorer/manage-view-settings/filter-items/filter-type/_types.d.ts +6 -1
  52. package/dist/components/Explorer/manage-view-settings/filter-items/filter-type/useConditionOptionsByType.d.ts +3 -0
  53. package/dist/components/Explorer/manage-view-settings/filter-items/filter-type/useConditionOptionsByType.js +43 -4
  54. package/dist/components/Explorer/manage-view-settings/filter-items/filter-type/useConditionOptionsByType.js.map +1 -1
  55. package/dist/components/Explorer/manage-view-settings/save-view/prepareViewForRequest.js +29 -8
  56. package/dist/components/Explorer/manage-view-settings/save-view/prepareViewForRequest.js.map +1 -1
  57. package/dist/components/Explorer/manage-view-settings/store-view-settings/viewSettingsInitialState.js +2 -1
  58. package/dist/components/Explorer/manage-view-settings/store-view-settings/viewSettingsInitialState.js.map +1 -1
  59. package/dist/components/Explorer/manage-view-settings/store-view-settings/viewSettingsReducer.d.ts +3 -2
  60. package/dist/components/Explorer/manage-view-settings/store-view-settings/viewSettingsReducer.js +57 -14
  61. package/dist/components/Explorer/manage-view-settings/store-view-settings/viewSettingsReducer.js.map +1 -1
  62. package/dist/components/Explorer/useLoadView.d.ts +1 -1
  63. package/dist/components/Explorer/useLoadView.js +32 -38
  64. package/dist/components/Explorer/useLoadView.js.map +1 -1
  65. package/dist/components/Explorer/useSearchInput.js +2 -0
  66. package/dist/components/Explorer/useSearchInput.js.map +1 -1
  67. package/dist/components/Explorer/useViewSettingsReducer.js.map +1 -1
  68. package/dist/components/LibraryItemsList/FiltersDropdown/FiltersDropdown.js +1 -12
  69. package/dist/components/LibraryItemsList/FiltersDropdown/FiltersDropdown.js.map +1 -1
  70. package/dist/components/RecordEdition/EditRecord/EditRecord.d.ts +2 -1
  71. package/dist/components/RecordEdition/EditRecord/EditRecord.js +33 -214
  72. package/dist/components/RecordEdition/EditRecord/EditRecord.js.map +1 -1
  73. package/dist/components/RecordEdition/EditRecordContent/EditRecordContent.d.ts +3 -3
  74. package/dist/components/RecordEdition/EditRecordContent/EditRecordContent.js +15 -22
  75. package/dist/components/RecordEdition/EditRecordContent/EditRecordContent.js.map +1 -1
  76. package/dist/components/RecordEdition/EditRecordContent/_types.d.ts +6 -16
  77. package/dist/components/RecordEdition/EditRecordContent/_types.js.map +1 -1
  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/FormTabs/FormTabs.d.ts +2 -1
  89. package/dist/components/RecordEdition/EditRecordContent/uiElements/FormTabs/FormTabs.js +6 -9
  90. package/dist/components/RecordEdition/EditRecordContent/uiElements/FormTabs/FormTabs.js.map +1 -1
  91. package/dist/components/RecordEdition/EditRecordContent/uiElements/Frame/Frame.js +1 -1
  92. package/dist/components/RecordEdition/EditRecordContent/uiElements/Frame/Frame.js.map +1 -1
  93. package/dist/components/RecordEdition/EditRecordContent/uiElements/LinkField/LinkField.js +6 -33
  94. package/dist/components/RecordEdition/EditRecordContent/uiElements/LinkField/LinkField.js.map +1 -1
  95. package/dist/components/RecordEdition/EditRecordContent/uiElements/LinkField/link-record/ActionButton.d.ts +3 -0
  96. package/dist/components/RecordEdition/EditRecordContent/uiElements/LinkField/link-record/ActionButton.js +9 -0
  97. package/dist/components/RecordEdition/EditRecordContent/uiElements/LinkField/link-record/ActionButton.js.map +1 -0
  98. package/dist/components/RecordEdition/EditRecordContent/uiElements/LinkField/{link-record-in-edition/useLinkRecords.d.ts → link-record/useExplorerLinkRecords.d.ts} +2 -2
  99. package/dist/components/RecordEdition/EditRecordContent/uiElements/LinkField/{link-record-in-edition/useLinkRecords.js → link-record/useExplorerLinkRecords.js} +3 -3
  100. package/dist/components/RecordEdition/EditRecordContent/uiElements/LinkField/link-record/useExplorerLinkRecords.js.map +1 -0
  101. package/dist/components/RecordEdition/EditRecordContent/uiElements/LinkField/{link-record-in-edition/useLinkRecordsInEdition.d.ts → link-record/useLinkRecords.d.ts} +5 -9
  102. package/dist/components/RecordEdition/EditRecordContent/uiElements/LinkField/link-record/useLinkRecords.js +76 -0
  103. package/dist/components/RecordEdition/EditRecordContent/uiElements/LinkField/link-record/useLinkRecords.js.map +1 -0
  104. package/dist/components/RecordEdition/EditRecordContent/uiElements/StandardField/StandardField.js +26 -21
  105. package/dist/components/RecordEdition/EditRecordContent/uiElements/StandardField/StandardField.js.map +1 -1
  106. package/dist/components/RecordEdition/EditRecordContent/uiElements/TextBlock/TextBlock.js.map +1 -1
  107. package/dist/components/RecordEdition/EditRecordContent/uiElements/TreeField/TreeField.d.ts +1 -1
  108. package/dist/components/RecordEdition/EditRecordContent/uiElements/TreeField/TreeField.js +10 -23
  109. package/dist/components/RecordEdition/EditRecordContent/uiElements/TreeField/TreeField.js.map +1 -1
  110. package/dist/components/RecordEdition/EditRecordContent/uiElements/TreeField/display-tree-node/{useDisplayTreeNode.d.ts → TreeNodeList.d.ts} +3 -4
  111. package/dist/components/RecordEdition/EditRecordContent/uiElements/TreeField/display-tree-node/TreeNodeList.js +5 -0
  112. package/dist/components/RecordEdition/EditRecordContent/uiElements/TreeField/display-tree-node/TreeNodeList.js.map +1 -0
  113. package/dist/components/RecordEdition/EditRecordContent/uiElements/TreeField/manage-tree-node-selection/SelectTreeNodeModal.d.ts +1 -9
  114. package/dist/components/RecordEdition/EditRecordContent/uiElements/TreeField/manage-tree-node-selection/SelectTreeNodeModal.js +12 -16
  115. package/dist/components/RecordEdition/EditRecordContent/uiElements/TreeField/manage-tree-node-selection/SelectTreeNodeModal.js.map +1 -1
  116. package/dist/components/RecordEdition/EditRecordContent/uiElements/TreeField/manage-tree-node-selection/useManageTreeNodeSelection.d.ts +2 -1
  117. package/dist/components/RecordEdition/EditRecordContent/uiElements/TreeField/manage-tree-node-selection/useManageTreeNodeSelection.js +51 -63
  118. package/dist/components/RecordEdition/EditRecordContent/uiElements/TreeField/manage-tree-node-selection/useManageTreeNodeSelection.js.map +1 -1
  119. package/dist/components/RecordEdition/EditRecordContent/uiElements/shared/useOutsideInteractionDetector.d.ts +1 -3
  120. package/dist/components/RecordEdition/EditRecordContent/uiElements/shared/useOutsideInteractionDetector.js +6 -10
  121. package/dist/components/RecordEdition/EditRecordContent/uiElements/shared/useOutsideInteractionDetector.js.map +1 -1
  122. package/dist/components/RecordEdition/EditRecordModal/EditRecordModal.js +45 -7
  123. package/dist/components/RecordEdition/EditRecordModal/EditRecordModal.js.map +1 -1
  124. package/dist/components/RecordEdition/EditRecordPage/EditRecordPage.js +46 -8
  125. package/dist/components/RecordEdition/EditRecordPage/EditRecordPage.js.map +1 -1
  126. package/dist/components/RecordEdition/editRecordReducer/editRecordReducer.d.ts +2 -5
  127. package/dist/components/RecordEdition/editRecordReducer/editRecordReducer.js +1 -1
  128. package/dist/components/RecordEdition/editRecordReducer/editRecordReducer.js.map +1 -1
  129. package/dist/components/RecordEdition/index.d.ts +1 -1
  130. package/dist/components/RecordEdition/index.js +1 -1
  131. package/dist/components/RecordEdition/index.js.map +1 -1
  132. package/dist/components/SelectRecordForLinkModal/SelectRecordForLinkModal.d.ts +2 -0
  133. package/dist/components/SelectRecordForLinkModal/SelectRecordForLinkModal.js +6 -4
  134. package/dist/components/SelectRecordForLinkModal/SelectRecordForLinkModal.js.map +1 -1
  135. package/dist/components/SelectTreeNode/SelectTreeNode.d.ts +5 -3
  136. package/dist/components/SelectTreeNode/SelectTreeNode.js +2 -3
  137. package/dist/components/SelectTreeNode/SelectTreeNode.js.map +1 -1
  138. package/dist/components/SelectTreeNode/SelectTreeNodeContent.d.ts +3 -1
  139. package/dist/components/SelectTreeNode/SelectTreeNodeContent.js +68 -55
  140. package/dist/components/SelectTreeNode/SelectTreeNodeContent.js.map +1 -1
  141. package/dist/components/SelectTreeNode/_types.d.ts +18 -0
  142. package/dist/components/SelectTreeNode/_types.js +2 -0
  143. package/dist/components/SelectTreeNode/_types.js.map +1 -0
  144. package/dist/hooks/useGetRecordForm/useGetRecordForm.d.ts +1 -1
  145. package/dist/hooks/useGetRecordForm/useGetRecordForm.js +2 -2
  146. package/dist/hooks/useGetRecordForm/useGetRecordForm.js.map +1 -1
  147. package/dist/hooks/useIFrameMessenger/types.d.ts +2 -0
  148. package/dist/hooks/useIFrameMessenger/useIFrameMessenger.d.ts +3 -3
  149. package/dist/hooks/useIFrameMessenger/useIFrameMessenger.js +5 -1
  150. package/dist/hooks/useIFrameMessenger/useIFrameMessenger.js.map +1 -1
  151. package/dist/hooks/useIFrameMessengerClient/IFrameMessengerClient.d.ts +6 -3
  152. package/dist/hooks/useIFrameMessengerClient/IFrameMessengerClient.js +1 -3
  153. package/dist/hooks/useIFrameMessengerClient/IFrameMessengerClient.js.map +1 -1
  154. package/dist/locales/en/shared.json +2 -1
  155. package/dist/locales/fr/shared.json +1 -0
  156. package/package.json +17 -4
  157. package/dist/components/Explorer/manage-view-settings/filter-items/filter-type/FilterValueList.d.ts +0 -10
  158. package/dist/components/Explorer/manage-view-settings/filter-items/filter-type/FilterValueList.js +0 -75
  159. package/dist/components/Explorer/manage-view-settings/filter-items/filter-type/FilterValueList.js.map +0 -1
  160. package/dist/components/LinkSelect/LinkSelect.d.ts +0 -15
  161. package/dist/components/LinkSelect/LinkSelect.js +0 -88
  162. package/dist/components/LinkSelect/LinkSelect.js.map +0 -1
  163. package/dist/components/LinkSelect/index.d.ts +0 -2
  164. package/dist/components/LinkSelect/index.js +0 -6
  165. package/dist/components/LinkSelect/index.js.map +0 -1
  166. package/dist/components/RecordEdition/EditRecord/creationErrorContext.d.ts +0 -6
  167. package/dist/components/RecordEdition/EditRecord/creationErrorContext.js +0 -7
  168. package/dist/components/RecordEdition/EditRecord/creationErrorContext.js.map +0 -1
  169. package/dist/components/RecordEdition/EditRecordContent/hooks/useCreateRecordMutation.d.ts +0 -5
  170. package/dist/components/RecordEdition/EditRecordContent/hooks/useCreateRecordMutation.js +0 -28
  171. package/dist/components/RecordEdition/EditRecordContent/hooks/useCreateRecordMutation.js.map +0 -1
  172. package/dist/components/RecordEdition/EditRecordContent/hooks/useRunActionsListAndFormatOnValue.d.ts +0 -121
  173. package/dist/components/RecordEdition/EditRecordContent/hooks/useRunActionsListAndFormatOnValue.js +0 -31
  174. package/dist/components/RecordEdition/EditRecordContent/hooks/useRunActionsListAndFormatOnValue.js.map +0 -1
  175. package/dist/components/RecordEdition/EditRecordContent/uiElements/LinkField/action-item/useEditRecord.d.ts +0 -5
  176. package/dist/components/RecordEdition/EditRecordContent/uiElements/LinkField/action-item/useEditRecord.js +0 -39
  177. package/dist/components/RecordEdition/EditRecordContent/uiElements/LinkField/action-item/useEditRecord.js.map +0 -1
  178. package/dist/components/RecordEdition/EditRecordContent/uiElements/LinkField/action-item/useUnselectRecord.d.ts +0 -8
  179. package/dist/components/RecordEdition/EditRecordContent/uiElements/LinkField/action-item/useUnselectRecord.js +0 -23
  180. package/dist/components/RecordEdition/EditRecordContent/uiElements/LinkField/action-item/useUnselectRecord.js.map +0 -1
  181. package/dist/components/RecordEdition/EditRecordContent/uiElements/LinkField/action-mass/useUnselectAllRecords.d.ts +0 -9
  182. package/dist/components/RecordEdition/EditRecordContent/uiElements/LinkField/action-mass/useUnselectAllRecords.js +0 -23
  183. package/dist/components/RecordEdition/EditRecordContent/uiElements/LinkField/action-mass/useUnselectAllRecords.js.map +0 -1
  184. package/dist/components/RecordEdition/EditRecordContent/uiElements/LinkField/action-primary/useCreateRecord.d.ts +0 -8
  185. package/dist/components/RecordEdition/EditRecordContent/uiElements/LinkField/action-primary/useCreateRecord.js +0 -26
  186. package/dist/components/RecordEdition/EditRecordContent/uiElements/LinkField/action-primary/useCreateRecord.js.map +0 -1
  187. package/dist/components/RecordEdition/EditRecordContent/uiElements/LinkField/action-primary/useRecordSelector.d.ts +0 -12
  188. package/dist/components/RecordEdition/EditRecordContent/uiElements/LinkField/action-primary/useRecordSelector.js +0 -24
  189. package/dist/components/RecordEdition/EditRecordContent/uiElements/LinkField/action-primary/useRecordSelector.js.map +0 -1
  190. package/dist/components/RecordEdition/EditRecordContent/uiElements/LinkField/link-record-in-creation/useLinkRecords.d.ts +0 -19
  191. package/dist/components/RecordEdition/EditRecordContent/uiElements/LinkField/link-record-in-creation/useLinkRecords.js +0 -103
  192. package/dist/components/RecordEdition/EditRecordContent/uiElements/LinkField/link-record-in-creation/useLinkRecords.js.map +0 -1
  193. package/dist/components/RecordEdition/EditRecordContent/uiElements/LinkField/link-record-in-creation/useLinkRecordsInCreation.d.ts +0 -22
  194. package/dist/components/RecordEdition/EditRecordContent/uiElements/LinkField/link-record-in-creation/useLinkRecordsInCreation.js +0 -104
  195. package/dist/components/RecordEdition/EditRecordContent/uiElements/LinkField/link-record-in-creation/useLinkRecordsInCreation.js.map +0 -1
  196. package/dist/components/RecordEdition/EditRecordContent/uiElements/LinkField/link-record-in-edition/useLinkRecords.js.map +0 -1
  197. package/dist/components/RecordEdition/EditRecordContent/uiElements/LinkField/link-record-in-edition/useLinkRecordsInEdition.js +0 -311
  198. package/dist/components/RecordEdition/EditRecordContent/uiElements/LinkField/link-record-in-edition/useLinkRecordsInEdition.js.map +0 -1
  199. package/dist/components/RecordEdition/EditRecordContent/uiElements/LinkField/shared/LinkActionsButtons.d.ts +0 -9
  200. package/dist/components/RecordEdition/EditRecordContent/uiElements/LinkField/shared/LinkActionsButtons.js +0 -15
  201. package/dist/components/RecordEdition/EditRecordContent/uiElements/LinkField/shared/LinkActionsButtons.js.map +0 -1
  202. package/dist/components/RecordEdition/EditRecordContent/uiElements/LinkField/shared/utils.d.ts +0 -4
  203. package/dist/components/RecordEdition/EditRecordContent/uiElements/LinkField/shared/utils.js +0 -22
  204. package/dist/components/RecordEdition/EditRecordContent/uiElements/LinkField/shared/utils.js.map +0 -1
  205. package/dist/components/RecordEdition/EditRecordContent/uiElements/StandardField/StandardFieldValue/ValuesList/ValuesList.d.ts +0 -16
  206. package/dist/components/RecordEdition/EditRecordContent/uiElements/StandardField/StandardFieldValue/ValuesList/ValuesList.js +0 -35
  207. package/dist/components/RecordEdition/EditRecordContent/uiElements/StandardField/StandardFieldValue/ValuesList/ValuesList.js.map +0 -1
  208. package/dist/components/RecordEdition/EditRecordContent/uiElements/StandardField/StandardFieldValue/ValuesList/index.d.ts +0 -2
  209. package/dist/components/RecordEdition/EditRecordContent/uiElements/StandardField/StandardFieldValue/ValuesList/index.js +0 -6
  210. package/dist/components/RecordEdition/EditRecordContent/uiElements/StandardField/StandardFieldValue/ValuesList/index.js.map +0 -1
  211. package/dist/components/RecordEdition/EditRecordContent/uiElements/TreeField/display-tree-node/useDisplayTreeNode.js +0 -8
  212. package/dist/components/RecordEdition/EditRecordContent/uiElements/TreeField/display-tree-node/useDisplayTreeNode.js.map +0 -1
@@ -452,6 +452,7 @@ export declare enum PermissionsActions {
452
452
  admin_access_applications = "admin_access_applications",
453
453
  admin_access_attributes = "admin_access_attributes",
454
454
  admin_access_libraries = "admin_access_libraries",
455
+ admin_access_logs = "admin_access_logs",
455
456
  admin_access_permissions = "admin_access_permissions",
456
457
  admin_access_tasks = "admin_access_tasks",
457
458
  admin_access_trees = "admin_access_trees",
@@ -479,6 +480,7 @@ export declare enum PermissionsActions {
479
480
  admin_edit_permission = "admin_edit_permission",
480
481
  admin_edit_tree = "admin_edit_tree",
481
482
  admin_edit_version_profile = "admin_edit_version_profile",
483
+ admin_import_config_clear_database = "admin_import_config_clear_database",
482
484
  admin_library = "admin_library",
483
485
  admin_manage_global_preferences = "admin_manage_global_preferences",
484
486
  create_record = "create_record",
@@ -3115,6 +3117,25 @@ export type AttributesByLibAttributeWithPermissionsLinkAttributeFragment = {
3115
3117
  permissions: {
3116
3118
  access_attribute: boolean;
3117
3119
  };
3120
+ valuesList?: {
3121
+ enable: boolean;
3122
+ allowFreeEntry?: boolean | null;
3123
+ allowListUpdate?: boolean | null;
3124
+ linkedValues?: Array<{
3125
+ id: string;
3126
+ whoAmI: {
3127
+ id: string;
3128
+ label?: string | null;
3129
+ subLabel?: string | null;
3130
+ color?: string | null;
3131
+ preview?: IPreviewScalar | null;
3132
+ library: {
3133
+ id: string;
3134
+ label?: any | null;
3135
+ };
3136
+ };
3137
+ }> | null;
3138
+ } | null;
3118
3139
  linked_library?: {
3119
3140
  id: string;
3120
3141
  } | null;
@@ -3132,6 +3153,20 @@ export type AttributesByLibAttributeWithPermissionsStandardAttributeFragment = {
3132
3153
  format?: AttributeFormat | null;
3133
3154
  label?: any | null;
3134
3155
  } | null> | null;
3156
+ valuesList?: {
3157
+ enable: boolean;
3158
+ allowFreeEntry?: boolean | null;
3159
+ allowListUpdate?: boolean | null;
3160
+ dateRangeValues?: Array<{
3161
+ from?: string | null;
3162
+ to?: string | null;
3163
+ }> | null;
3164
+ } | {
3165
+ enable: boolean;
3166
+ allowFreeEntry?: boolean | null;
3167
+ allowListUpdate?: boolean | null;
3168
+ values?: Array<string> | null;
3169
+ } | null;
3135
3170
  permissions: {
3136
3171
  access_attribute: boolean;
3137
3172
  };
@@ -3160,16 +3195,73 @@ export type AttributesByLibAttributeWithPermissionsTreeAttributeFragment = {
3160
3195
  };
3161
3196
  export type AttributesByLibAttributeWithPermissionsFragment = AttributesByLibAttributeWithPermissionsLinkAttributeFragment | AttributesByLibAttributeWithPermissionsStandardAttributeFragment | AttributesByLibAttributeWithPermissionsTreeAttributeFragment;
3162
3197
  export type AttributesByLibLinkAttributeWithPermissionsFragment = {
3198
+ valuesList?: {
3199
+ enable: boolean;
3200
+ allowFreeEntry?: boolean | null;
3201
+ allowListUpdate?: boolean | null;
3202
+ linkedValues?: Array<{
3203
+ id: string;
3204
+ whoAmI: {
3205
+ id: string;
3206
+ label?: string | null;
3207
+ subLabel?: string | null;
3208
+ color?: string | null;
3209
+ preview?: IPreviewScalar | null;
3210
+ library: {
3211
+ id: string;
3212
+ label?: any | null;
3213
+ };
3214
+ };
3215
+ }> | null;
3216
+ } | null;
3163
3217
  linked_library?: {
3164
3218
  id: string;
3165
3219
  } | null;
3166
3220
  };
3221
+ export type StandardAttributeDetailsFragment = {
3222
+ id: string;
3223
+ type: AttributeType;
3224
+ embedded_fields?: Array<{
3225
+ id: string;
3226
+ format?: AttributeFormat | null;
3227
+ label?: any | null;
3228
+ } | null> | null;
3229
+ valuesList?: {
3230
+ enable: boolean;
3231
+ allowFreeEntry?: boolean | null;
3232
+ allowListUpdate?: boolean | null;
3233
+ values?: Array<string> | null;
3234
+ } | null;
3235
+ };
3167
3236
  export type LinkAttributeDetailsFragment = {
3168
3237
  label?: any | null;
3238
+ type: AttributeType;
3169
3239
  linked_library?: {
3170
3240
  id: string;
3171
3241
  label?: any | null;
3172
3242
  } | null;
3243
+ valuesList?: {
3244
+ allowFreeEntry?: boolean | null;
3245
+ enable: boolean;
3246
+ linkedValues?: Array<{
3247
+ id: string;
3248
+ whoAmI: {
3249
+ id: string;
3250
+ label?: string | null;
3251
+ library: {
3252
+ id: string;
3253
+ };
3254
+ };
3255
+ }> | null;
3256
+ } | null;
3257
+ };
3258
+ export type TreeAttributeDetailsFragment = {
3259
+ id: string;
3260
+ label?: any | null;
3261
+ linked_tree?: {
3262
+ id: string;
3263
+ label?: any | null;
3264
+ } | null;
3173
3265
  };
3174
3266
  export type AttributePropertiesFragment = {
3175
3267
  id: string;
@@ -4189,6 +4281,35 @@ export type IsAllowedQuery = {
4189
4281
  allowed?: boolean | null;
4190
4282
  }> | null;
4191
4283
  };
4284
+ export type ActivateNewRecordMutationVariables = Exact<{
4285
+ libraryId: Scalars['ID'];
4286
+ recordId: Scalars['ID'];
4287
+ formId?: InputMaybe<Scalars['String']>;
4288
+ }>;
4289
+ export type ActivateNewRecordMutation = {
4290
+ activateNewRecord: {
4291
+ record?: {
4292
+ id: string;
4293
+ whoAmI: {
4294
+ id: string;
4295
+ label?: string | null;
4296
+ subLabel?: string | null;
4297
+ color?: string | null;
4298
+ preview?: IPreviewScalar | null;
4299
+ library: {
4300
+ id: string;
4301
+ label?: any | null;
4302
+ };
4303
+ };
4304
+ } | null;
4305
+ valuesErrors?: Array<{
4306
+ type: string;
4307
+ attribute: string;
4308
+ input?: string | null;
4309
+ message: string;
4310
+ }> | null;
4311
+ };
4312
+ };
4192
4313
  export type ActivateRecordsMutationVariables = Exact<{
4193
4314
  libraryId: Scalars['String'];
4194
4315
  recordsIds?: InputMaybe<Array<Scalars['String']> | Scalars['String']>;
@@ -4210,6 +4331,33 @@ export type ActivateRecordsMutation = {
4210
4331
  };
4211
4332
  }>;
4212
4333
  };
4334
+ export type CreateEmptyRecordMutationVariables = Exact<{
4335
+ library: Scalars['ID'];
4336
+ }>;
4337
+ export type CreateEmptyRecordMutation = {
4338
+ createEmptyRecord: {
4339
+ record?: {
4340
+ id: string;
4341
+ whoAmI: {
4342
+ id: string;
4343
+ label?: string | null;
4344
+ subLabel?: string | null;
4345
+ color?: string | null;
4346
+ preview?: IPreviewScalar | null;
4347
+ library: {
4348
+ id: string;
4349
+ label?: any | null;
4350
+ };
4351
+ };
4352
+ } | null;
4353
+ valuesErrors?: Array<{
4354
+ type: string;
4355
+ attribute: string;
4356
+ input?: string | null;
4357
+ message: string;
4358
+ }> | null;
4359
+ };
4360
+ };
4213
4361
  export type CreateRecordMutationVariables = Exact<{
4214
4362
  library: Scalars['ID'];
4215
4363
  data?: InputMaybe<CreateRecordDataInput>;
@@ -5716,6 +5864,26 @@ export type IndexRecordsMutationVariables = Exact<{
5716
5864
  export type IndexRecordsMutation = {
5717
5865
  indexRecords: boolean;
5718
5866
  };
5867
+ export type PurgeRecordMutationVariables = Exact<{
5868
+ libraryId: Scalars['ID'];
5869
+ recordId: Scalars['ID'];
5870
+ }>;
5871
+ export type PurgeRecordMutation = {
5872
+ purgeRecord: {
5873
+ id: string;
5874
+ whoAmI: {
5875
+ id: string;
5876
+ label?: string | null;
5877
+ subLabel?: string | null;
5878
+ color?: string | null;
5879
+ preview?: IPreviewScalar | null;
5880
+ library: {
5881
+ id: string;
5882
+ label?: any | null;
5883
+ };
5884
+ };
5885
+ };
5886
+ };
5719
5887
  export type CancelTaskMutationVariables = Exact<{
5720
5888
  taskId: Scalars['ID'];
5721
5889
  }>;
@@ -6292,128 +6460,6 @@ export type DeleteValueMutation = {
6292
6460
  } | null> | null;
6293
6461
  }>;
6294
6462
  };
6295
- export type RunActionsListAndFormatOnValueQueryVariables = Exact<{
6296
- library: Scalars['ID'];
6297
- value?: InputMaybe<ValueBatchInput>;
6298
- version?: InputMaybe<Array<InputMaybe<ValueVersionInput>> | InputMaybe<ValueVersionInput>>;
6299
- }>;
6300
- export type RunActionsListAndFormatOnValueQuery = {
6301
- runActionsListAndFormatOnValue: Array<{
6302
- id_value?: string | null;
6303
- isInherited?: boolean | null;
6304
- isCalculated?: boolean | null;
6305
- modified_at?: number | null;
6306
- created_at?: number | null;
6307
- payload?: any | null;
6308
- raw_payload?: any | null;
6309
- value?: any | null;
6310
- raw_value?: any | null;
6311
- modified_by?: {
6312
- id: string;
6313
- whoAmI: {
6314
- id: string;
6315
- label?: string | null;
6316
- subLabel?: string | null;
6317
- color?: string | null;
6318
- preview?: IPreviewScalar | null;
6319
- library: {
6320
- id: string;
6321
- label?: any | null;
6322
- };
6323
- };
6324
- } | null;
6325
- created_by?: {
6326
- id: string;
6327
- whoAmI: {
6328
- id: string;
6329
- label?: string | null;
6330
- subLabel?: string | null;
6331
- color?: string | null;
6332
- preview?: IPreviewScalar | null;
6333
- library: {
6334
- id: string;
6335
- label?: any | null;
6336
- };
6337
- };
6338
- } | null;
6339
- version?: Array<{
6340
- treeId: string;
6341
- treeNode?: {
6342
- id: string;
6343
- record: {
6344
- id: string;
6345
- whoAmI: {
6346
- id: string;
6347
- label?: string | null;
6348
- library: {
6349
- id: string;
6350
- };
6351
- };
6352
- };
6353
- } | null;
6354
- } | null> | null;
6355
- attribute: {
6356
- id: string;
6357
- format?: AttributeFormat | null;
6358
- type: AttributeType;
6359
- system: boolean;
6360
- };
6361
- metadata?: Array<{
6362
- name: string;
6363
- value?: {
6364
- id_value?: string | null;
6365
- modified_at?: number | null;
6366
- created_at?: number | null;
6367
- payload?: any | null;
6368
- raw_payload?: any | null;
6369
- modified_by?: {
6370
- id: string;
6371
- whoAmI: {
6372
- id: string;
6373
- label?: string | null;
6374
- subLabel?: string | null;
6375
- color?: string | null;
6376
- preview?: IPreviewScalar | null;
6377
- library: {
6378
- id: string;
6379
- label?: any | null;
6380
- };
6381
- };
6382
- } | null;
6383
- created_by?: {
6384
- id: string;
6385
- whoAmI: {
6386
- id: string;
6387
- label?: string | null;
6388
- subLabel?: string | null;
6389
- color?: string | null;
6390
- preview?: IPreviewScalar | null;
6391
- library: {
6392
- id: string;
6393
- label?: any | null;
6394
- };
6395
- };
6396
- } | null;
6397
- version?: Array<{
6398
- treeId: string;
6399
- treeNode?: {
6400
- id: string;
6401
- record: {
6402
- id: string;
6403
- whoAmI: {
6404
- id: string;
6405
- label?: string | null;
6406
- library: {
6407
- id: string;
6408
- };
6409
- };
6410
- };
6411
- } | null;
6412
- } | null> | null;
6413
- } | null;
6414
- } | null> | null;
6415
- }>;
6416
- };
6417
6463
  export type SaveValueBatchMutationVariables = Exact<{
6418
6464
  library: Scalars['ID'];
6419
6465
  recordId: Scalars['ID'];
@@ -7027,6 +7073,25 @@ export type GetAttributesByLibWithPermissionsQuery = {
7027
7073
  multiple_values: boolean;
7028
7074
  system: boolean;
7029
7075
  readonly: boolean;
7076
+ valuesList?: {
7077
+ enable: boolean;
7078
+ allowFreeEntry?: boolean | null;
7079
+ allowListUpdate?: boolean | null;
7080
+ linkedValues?: Array<{
7081
+ id: string;
7082
+ whoAmI: {
7083
+ id: string;
7084
+ label?: string | null;
7085
+ subLabel?: string | null;
7086
+ color?: string | null;
7087
+ preview?: IPreviewScalar | null;
7088
+ library: {
7089
+ id: string;
7090
+ label?: any | null;
7091
+ };
7092
+ };
7093
+ }> | null;
7094
+ } | null;
7030
7095
  linked_library?: {
7031
7096
  id: string;
7032
7097
  } | null;
@@ -7046,6 +7111,20 @@ export type GetAttributesByLibWithPermissionsQuery = {
7046
7111
  format?: AttributeFormat | null;
7047
7112
  label?: any | null;
7048
7113
  } | null> | null;
7114
+ valuesList?: {
7115
+ enable: boolean;
7116
+ allowFreeEntry?: boolean | null;
7117
+ allowListUpdate?: boolean | null;
7118
+ dateRangeValues?: Array<{
7119
+ from?: string | null;
7120
+ to?: string | null;
7121
+ }> | null;
7122
+ } | {
7123
+ enable: boolean;
7124
+ allowFreeEntry?: boolean | null;
7125
+ allowListUpdate?: boolean | null;
7126
+ values?: Array<string> | null;
7127
+ } | null;
7049
7128
  permissions: {
7050
7129
  access_attribute: boolean;
7051
7130
  };
@@ -7087,6 +7166,39 @@ export type ExplorerAttributesQuery = {
7087
7166
  id: string;
7088
7167
  label?: any | null;
7089
7168
  } | null;
7169
+ valuesList?: {
7170
+ allowFreeEntry?: boolean | null;
7171
+ enable: boolean;
7172
+ linkedValues?: Array<{
7173
+ id: string;
7174
+ whoAmI: {
7175
+ id: string;
7176
+ label?: string | null;
7177
+ library: {
7178
+ id: string;
7179
+ };
7180
+ };
7181
+ }> | null;
7182
+ } | null;
7183
+ permissions: {
7184
+ access_attribute: boolean;
7185
+ };
7186
+ } | {
7187
+ id: string;
7188
+ type: AttributeType;
7189
+ format?: AttributeFormat | null;
7190
+ label?: any | null;
7191
+ embedded_fields?: Array<{
7192
+ id: string;
7193
+ format?: AttributeFormat | null;
7194
+ label?: any | null;
7195
+ } | null> | null;
7196
+ valuesList?: {
7197
+ enable: boolean;
7198
+ allowFreeEntry?: boolean | null;
7199
+ allowListUpdate?: boolean | null;
7200
+ values?: Array<string> | null;
7201
+ } | null;
7090
7202
  permissions: {
7091
7203
  access_attribute: boolean;
7092
7204
  };
@@ -7095,6 +7207,10 @@ export type ExplorerAttributesQuery = {
7095
7207
  type: AttributeType;
7096
7208
  format?: AttributeFormat | null;
7097
7209
  label?: any | null;
7210
+ linked_tree?: {
7211
+ id: string;
7212
+ label?: any | null;
7213
+ } | null;
7098
7214
  permissions: {
7099
7215
  access_attribute: boolean;
7100
7216
  };
@@ -7108,12 +7224,27 @@ export type ExplorerLinkAttributeQuery = {
7108
7224
  attributes?: {
7109
7225
  list: Array<{
7110
7226
  label?: any | null;
7227
+ type: AttributeType;
7111
7228
  id: string;
7112
7229
  multiple_values: boolean;
7113
7230
  linked_library?: {
7114
7231
  id: string;
7115
7232
  label?: any | null;
7116
7233
  } | null;
7234
+ valuesList?: {
7235
+ allowFreeEntry?: boolean | null;
7236
+ enable: boolean;
7237
+ linkedValues?: Array<{
7238
+ id: string;
7239
+ whoAmI: {
7240
+ id: string;
7241
+ label?: string | null;
7242
+ library: {
7243
+ id: string;
7244
+ };
7245
+ };
7246
+ }> | null;
7247
+ } | null;
7117
7248
  permissions: {
7118
7249
  access_attribute: boolean;
7119
7250
  edit_value: boolean;
@@ -7125,6 +7256,18 @@ export type ExplorerLinkAttributeQuery = {
7125
7256
  access_attribute: boolean;
7126
7257
  edit_value: boolean;
7127
7258
  };
7259
+ } | {
7260
+ label?: any | null;
7261
+ id: string;
7262
+ multiple_values: boolean;
7263
+ linked_tree?: {
7264
+ id: string;
7265
+ label?: any | null;
7266
+ } | null;
7267
+ permissions: {
7268
+ access_attribute: boolean;
7269
+ edit_value: boolean;
7270
+ };
7128
7271
  }>;
7129
7272
  } | null;
7130
7273
  };
@@ -7435,23 +7578,6 @@ export type UpdateViewMutation = {
7435
7578
  }> | null;
7436
7579
  };
7437
7580
  };
7438
- export type GetJoinLibraryMandatoryAttributeValuesQueryVariables = Exact<{
7439
- joinLibraryId: Scalars['ID'];
7440
- filters?: InputMaybe<Array<InputMaybe<RecordFilterInput>> | InputMaybe<RecordFilterInput>>;
7441
- mandatoryAttributeId: Scalars['ID'];
7442
- }>;
7443
- export type GetJoinLibraryMandatoryAttributeValuesQuery = {
7444
- records: {
7445
- list: Array<{
7446
- id: string;
7447
- property: Array<{
7448
- payload?: {
7449
- id: string;
7450
- } | null;
7451
- }>;
7452
- }>;
7453
- };
7454
- };
7455
7581
  export type TreeDataQueryQueryVariables = Exact<{
7456
7582
  treeId: Scalars['ID'];
7457
7583
  }>;
@@ -7487,6 +7613,8 @@ export declare const ViewDetailsFragmentDoc: Apollo.DocumentNode;
7487
7613
  export declare const AttributesByLibLinkAttributeWithPermissionsFragmentDoc: Apollo.DocumentNode;
7488
7614
  export declare const AttributesByLibAttributeWithPermissionsFragmentDoc: Apollo.DocumentNode;
7489
7615
  export declare const LinkAttributeDetailsFragmentDoc: Apollo.DocumentNode;
7616
+ export declare const TreeAttributeDetailsFragmentDoc: Apollo.DocumentNode;
7617
+ export declare const StandardAttributeDetailsFragmentDoc: Apollo.DocumentNode;
7490
7618
  export declare const AttributePropertiesFragmentDoc: Apollo.DocumentNode;
7491
7619
  export declare const PropertyValueFragmentDoc: Apollo.DocumentNode;
7492
7620
  export declare const LinkPropertyFragmentDoc: Apollo.DocumentNode;
@@ -8307,6 +8435,35 @@ export type IsAllowedQueryHookResult = ReturnType<typeof useIsAllowedQuery>;
8307
8435
  export type IsAllowedLazyQueryHookResult = ReturnType<typeof useIsAllowedLazyQuery>;
8308
8436
  export type IsAllowedSuspenseQueryHookResult = ReturnType<typeof useIsAllowedSuspenseQuery>;
8309
8437
  export type IsAllowedQueryResult = Apollo.QueryResult<IsAllowedQuery, IsAllowedQueryVariables>;
8438
+ export declare const ActivateNewRecordDocument: Apollo.DocumentNode;
8439
+ export type ActivateNewRecordMutationFn = Apollo.MutationFunction<ActivateNewRecordMutation, ActivateNewRecordMutationVariables>;
8440
+ /**
8441
+ * __useActivateNewRecordMutation__
8442
+ *
8443
+ * To run a mutation, you first call `useActivateNewRecordMutation` within a React component and pass it any options that fit your needs.
8444
+ * When your component renders, `useActivateNewRecordMutation` returns a tuple that includes:
8445
+ * - A mutate function that you can call at any time to execute the mutation
8446
+ * - An object with fields that represent the current status of the mutation's execution
8447
+ *
8448
+ * @param baseOptions options that will be passed into the mutation, supported options are listed on: https://www.apollographql.com/docs/react/api/react-hooks/#options-2;
8449
+ *
8450
+ * @example
8451
+ * const [activateNewRecordMutation, { data, loading, error }] = useActivateNewRecordMutation({
8452
+ * variables: {
8453
+ * libraryId: // value for 'libraryId'
8454
+ * recordId: // value for 'recordId'
8455
+ * formId: // value for 'formId'
8456
+ * },
8457
+ * });
8458
+ */
8459
+ export declare function useActivateNewRecordMutation(baseOptions?: Apollo.MutationHookOptions<ActivateNewRecordMutation, ActivateNewRecordMutationVariables>): Apollo.MutationTuple<ActivateNewRecordMutation, Exact<{
8460
+ libraryId: Scalars["ID"];
8461
+ recordId: Scalars["ID"];
8462
+ formId?: InputMaybe<Scalars["String"]>;
8463
+ }>, Apollo.DefaultContext, Apollo.ApolloCache<any>>;
8464
+ export type ActivateNewRecordMutationHookResult = ReturnType<typeof useActivateNewRecordMutation>;
8465
+ export type ActivateNewRecordMutationResult = Apollo.MutationResult<ActivateNewRecordMutation>;
8466
+ export type ActivateNewRecordMutationOptions = Apollo.BaseMutationOptions<ActivateNewRecordMutation, ActivateNewRecordMutationVariables>;
8310
8467
  export declare const ActivateRecordsDocument: Apollo.DocumentNode;
8311
8468
  export type ActivateRecordsMutationFn = Apollo.MutationFunction<ActivateRecordsMutation, ActivateRecordsMutationVariables>;
8312
8469
  /**
@@ -8336,6 +8493,31 @@ export declare function useActivateRecordsMutation(baseOptions?: Apollo.Mutation
8336
8493
  export type ActivateRecordsMutationHookResult = ReturnType<typeof useActivateRecordsMutation>;
8337
8494
  export type ActivateRecordsMutationResult = Apollo.MutationResult<ActivateRecordsMutation>;
8338
8495
  export type ActivateRecordsMutationOptions = Apollo.BaseMutationOptions<ActivateRecordsMutation, ActivateRecordsMutationVariables>;
8496
+ export declare const CreateEmptyRecordDocument: Apollo.DocumentNode;
8497
+ export type CreateEmptyRecordMutationFn = Apollo.MutationFunction<CreateEmptyRecordMutation, CreateEmptyRecordMutationVariables>;
8498
+ /**
8499
+ * __useCreateEmptyRecordMutation__
8500
+ *
8501
+ * To run a mutation, you first call `useCreateEmptyRecordMutation` within a React component and pass it any options that fit your needs.
8502
+ * When your component renders, `useCreateEmptyRecordMutation` returns a tuple that includes:
8503
+ * - A mutate function that you can call at any time to execute the mutation
8504
+ * - An object with fields that represent the current status of the mutation's execution
8505
+ *
8506
+ * @param baseOptions options that will be passed into the mutation, supported options are listed on: https://www.apollographql.com/docs/react/api/react-hooks/#options-2;
8507
+ *
8508
+ * @example
8509
+ * const [createEmptyRecordMutation, { data, loading, error }] = useCreateEmptyRecordMutation({
8510
+ * variables: {
8511
+ * library: // value for 'library'
8512
+ * },
8513
+ * });
8514
+ */
8515
+ export declare function useCreateEmptyRecordMutation(baseOptions?: Apollo.MutationHookOptions<CreateEmptyRecordMutation, CreateEmptyRecordMutationVariables>): Apollo.MutationTuple<CreateEmptyRecordMutation, Exact<{
8516
+ library: Scalars["ID"];
8517
+ }>, Apollo.DefaultContext, Apollo.ApolloCache<any>>;
8518
+ export type CreateEmptyRecordMutationHookResult = ReturnType<typeof useCreateEmptyRecordMutation>;
8519
+ export type CreateEmptyRecordMutationResult = Apollo.MutationResult<CreateEmptyRecordMutation>;
8520
+ export type CreateEmptyRecordMutationOptions = Apollo.BaseMutationOptions<CreateEmptyRecordMutation, CreateEmptyRecordMutationVariables>;
8339
8521
  export declare const CreateRecordDocument: Apollo.DocumentNode;
8340
8522
  export type CreateRecordMutationFn = Apollo.MutationFunction<CreateRecordMutation, CreateRecordMutationVariables>;
8341
8523
  /**
@@ -8597,6 +8779,33 @@ export declare function useIndexRecordsMutation(baseOptions?: Apollo.MutationHoo
8597
8779
  export type IndexRecordsMutationHookResult = ReturnType<typeof useIndexRecordsMutation>;
8598
8780
  export type IndexRecordsMutationResult = Apollo.MutationResult<IndexRecordsMutation>;
8599
8781
  export type IndexRecordsMutationOptions = Apollo.BaseMutationOptions<IndexRecordsMutation, IndexRecordsMutationVariables>;
8782
+ export declare const PurgeRecordDocument: Apollo.DocumentNode;
8783
+ export type PurgeRecordMutationFn = Apollo.MutationFunction<PurgeRecordMutation, PurgeRecordMutationVariables>;
8784
+ /**
8785
+ * __usePurgeRecordMutation__
8786
+ *
8787
+ * To run a mutation, you first call `usePurgeRecordMutation` within a React component and pass it any options that fit your needs.
8788
+ * When your component renders, `usePurgeRecordMutation` returns a tuple that includes:
8789
+ * - A mutate function that you can call at any time to execute the mutation
8790
+ * - An object with fields that represent the current status of the mutation's execution
8791
+ *
8792
+ * @param baseOptions options that will be passed into the mutation, supported options are listed on: https://www.apollographql.com/docs/react/api/react-hooks/#options-2;
8793
+ *
8794
+ * @example
8795
+ * const [purgeRecordMutation, { data, loading, error }] = usePurgeRecordMutation({
8796
+ * variables: {
8797
+ * libraryId: // value for 'libraryId'
8798
+ * recordId: // value for 'recordId'
8799
+ * },
8800
+ * });
8801
+ */
8802
+ export declare function usePurgeRecordMutation(baseOptions?: Apollo.MutationHookOptions<PurgeRecordMutation, PurgeRecordMutationVariables>): Apollo.MutationTuple<PurgeRecordMutation, Exact<{
8803
+ libraryId: Scalars["ID"];
8804
+ recordId: Scalars["ID"];
8805
+ }>, Apollo.DefaultContext, Apollo.ApolloCache<any>>;
8806
+ export type PurgeRecordMutationHookResult = ReturnType<typeof usePurgeRecordMutation>;
8807
+ export type PurgeRecordMutationResult = Apollo.MutationResult<PurgeRecordMutation>;
8808
+ export type PurgeRecordMutationOptions = Apollo.BaseMutationOptions<PurgeRecordMutation, PurgeRecordMutationVariables>;
8600
8809
  export declare const CancelTaskDocument: Apollo.DocumentNode;
8601
8810
  export type CancelTaskMutationFn = Apollo.MutationFunction<CancelTaskMutation, CancelTaskMutationVariables>;
8602
8811
  /**
@@ -8931,44 +9140,6 @@ export declare function useDeleteValueMutation(baseOptions?: Apollo.MutationHook
8931
9140
  export type DeleteValueMutationHookResult = ReturnType<typeof useDeleteValueMutation>;
8932
9141
  export type DeleteValueMutationResult = Apollo.MutationResult<DeleteValueMutation>;
8933
9142
  export type DeleteValueMutationOptions = Apollo.BaseMutationOptions<DeleteValueMutation, DeleteValueMutationVariables>;
8934
- export declare const RunActionsListAndFormatOnValueDocument: Apollo.DocumentNode;
8935
- /**
8936
- * __useRunActionsListAndFormatOnValueQuery__
8937
- *
8938
- * To run a query within a React component, call `useRunActionsListAndFormatOnValueQuery` and pass it any options that fit your needs.
8939
- * When your component renders, `useRunActionsListAndFormatOnValueQuery` returns an object from Apollo Client that contains loading, error, and data properties
8940
- * you can use to render your UI.
8941
- *
8942
- * @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;
8943
- *
8944
- * @example
8945
- * const { data, loading, error } = useRunActionsListAndFormatOnValueQuery({
8946
- * variables: {
8947
- * library: // value for 'library'
8948
- * value: // value for 'value'
8949
- * version: // value for 'version'
8950
- * },
8951
- * });
8952
- */
8953
- export declare function useRunActionsListAndFormatOnValueQuery(baseOptions: Apollo.QueryHookOptions<RunActionsListAndFormatOnValueQuery, RunActionsListAndFormatOnValueQueryVariables>): Apollo.QueryResult<RunActionsListAndFormatOnValueQuery, Exact<{
8954
- library: Scalars["ID"];
8955
- value?: InputMaybe<ValueBatchInput>;
8956
- version?: InputMaybe<Array<InputMaybe<ValueVersionInput>> | InputMaybe<ValueVersionInput>>;
8957
- }>>;
8958
- export declare function useRunActionsListAndFormatOnValueLazyQuery(baseOptions?: Apollo.LazyQueryHookOptions<RunActionsListAndFormatOnValueQuery, RunActionsListAndFormatOnValueQueryVariables>): Apollo.LazyQueryResultTuple<RunActionsListAndFormatOnValueQuery, Exact<{
8959
- library: Scalars["ID"];
8960
- value?: InputMaybe<ValueBatchInput>;
8961
- version?: InputMaybe<Array<InputMaybe<ValueVersionInput>> | InputMaybe<ValueVersionInput>>;
8962
- }>>;
8963
- export declare function useRunActionsListAndFormatOnValueSuspenseQuery(baseOptions?: Apollo.SuspenseQueryHookOptions<RunActionsListAndFormatOnValueQuery, RunActionsListAndFormatOnValueQueryVariables>): Apollo.UseSuspenseQueryResult<RunActionsListAndFormatOnValueQuery, Exact<{
8964
- library: Scalars["ID"];
8965
- value?: InputMaybe<ValueBatchInput>;
8966
- version?: InputMaybe<Array<InputMaybe<ValueVersionInput>> | InputMaybe<ValueVersionInput>>;
8967
- }>>;
8968
- export type RunActionsListAndFormatOnValueQueryHookResult = ReturnType<typeof useRunActionsListAndFormatOnValueQuery>;
8969
- export type RunActionsListAndFormatOnValueLazyQueryHookResult = ReturnType<typeof useRunActionsListAndFormatOnValueLazyQuery>;
8970
- export type RunActionsListAndFormatOnValueSuspenseQueryHookResult = ReturnType<typeof useRunActionsListAndFormatOnValueSuspenseQuery>;
8971
- export type RunActionsListAndFormatOnValueQueryResult = Apollo.QueryResult<RunActionsListAndFormatOnValueQuery, RunActionsListAndFormatOnValueQueryVariables>;
8972
9143
  export declare const SaveValueBatchDocument: Apollo.DocumentNode;
8973
9144
  export type SaveValueBatchMutationFn = Apollo.MutationFunction<SaveValueBatchMutation, SaveValueBatchMutationVariables>;
8974
9145
  /**
@@ -9442,44 +9613,6 @@ export declare function useUpdateViewMutation(baseOptions?: Apollo.MutationHookO
9442
9613
  export type UpdateViewMutationHookResult = ReturnType<typeof useUpdateViewMutation>;
9443
9614
  export type UpdateViewMutationResult = Apollo.MutationResult<UpdateViewMutation>;
9444
9615
  export type UpdateViewMutationOptions = Apollo.BaseMutationOptions<UpdateViewMutation, UpdateViewMutationVariables>;
9445
- export declare const GetJoinLibraryMandatoryAttributeValuesDocument: Apollo.DocumentNode;
9446
- /**
9447
- * __useGetJoinLibraryMandatoryAttributeValuesQuery__
9448
- *
9449
- * To run a query within a React component, call `useGetJoinLibraryMandatoryAttributeValuesQuery` and pass it any options that fit your needs.
9450
- * When your component renders, `useGetJoinLibraryMandatoryAttributeValuesQuery` returns an object from Apollo Client that contains loading, error, and data properties
9451
- * you can use to render your UI.
9452
- *
9453
- * @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;
9454
- *
9455
- * @example
9456
- * const { data, loading, error } = useGetJoinLibraryMandatoryAttributeValuesQuery({
9457
- * variables: {
9458
- * joinLibraryId: // value for 'joinLibraryId'
9459
- * filters: // value for 'filters'
9460
- * mandatoryAttributeId: // value for 'mandatoryAttributeId'
9461
- * },
9462
- * });
9463
- */
9464
- export declare function useGetJoinLibraryMandatoryAttributeValuesQuery(baseOptions: Apollo.QueryHookOptions<GetJoinLibraryMandatoryAttributeValuesQuery, GetJoinLibraryMandatoryAttributeValuesQueryVariables>): Apollo.QueryResult<GetJoinLibraryMandatoryAttributeValuesQuery, Exact<{
9465
- joinLibraryId: Scalars["ID"];
9466
- filters?: InputMaybe<Array<InputMaybe<RecordFilterInput>> | InputMaybe<RecordFilterInput>>;
9467
- mandatoryAttributeId: Scalars["ID"];
9468
- }>>;
9469
- export declare function useGetJoinLibraryMandatoryAttributeValuesLazyQuery(baseOptions?: Apollo.LazyQueryHookOptions<GetJoinLibraryMandatoryAttributeValuesQuery, GetJoinLibraryMandatoryAttributeValuesQueryVariables>): Apollo.LazyQueryResultTuple<GetJoinLibraryMandatoryAttributeValuesQuery, Exact<{
9470
- joinLibraryId: Scalars["ID"];
9471
- filters?: InputMaybe<Array<InputMaybe<RecordFilterInput>> | InputMaybe<RecordFilterInput>>;
9472
- mandatoryAttributeId: Scalars["ID"];
9473
- }>>;
9474
- export declare function useGetJoinLibraryMandatoryAttributeValuesSuspenseQuery(baseOptions?: Apollo.SuspenseQueryHookOptions<GetJoinLibraryMandatoryAttributeValuesQuery, GetJoinLibraryMandatoryAttributeValuesQueryVariables>): Apollo.UseSuspenseQueryResult<GetJoinLibraryMandatoryAttributeValuesQuery, Exact<{
9475
- joinLibraryId: Scalars["ID"];
9476
- filters?: InputMaybe<Array<InputMaybe<RecordFilterInput>> | InputMaybe<RecordFilterInput>>;
9477
- mandatoryAttributeId: Scalars["ID"];
9478
- }>>;
9479
- export type GetJoinLibraryMandatoryAttributeValuesQueryHookResult = ReturnType<typeof useGetJoinLibraryMandatoryAttributeValuesQuery>;
9480
- export type GetJoinLibraryMandatoryAttributeValuesLazyQueryHookResult = ReturnType<typeof useGetJoinLibraryMandatoryAttributeValuesLazyQuery>;
9481
- export type GetJoinLibraryMandatoryAttributeValuesSuspenseQueryHookResult = ReturnType<typeof useGetJoinLibraryMandatoryAttributeValuesSuspenseQuery>;
9482
- export type GetJoinLibraryMandatoryAttributeValuesQueryResult = Apollo.QueryResult<GetJoinLibraryMandatoryAttributeValuesQuery, GetJoinLibraryMandatoryAttributeValuesQueryVariables>;
9483
9616
  export declare const TreeDataQueryDocument: Apollo.DocumentNode;
9484
9617
  /**
9485
9618
  * __useTreeDataQueryQuery__