@leav/ui 0.4.0-80a4e22 → 0.4.0-8e7c1f94
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.
- package/README.md +1 -0
- package/dist/__mocks__/common/form.js +5 -1
- package/dist/__mocks__/common/form.js.map +1 -1
- package/dist/__mocks__/common/value.d.ts +1 -2
- package/dist/__mocks__/common/value.js +0 -11
- package/dist/__mocks__/common/value.js.map +1 -1
- package/dist/_gqlTypes/index.d.ts +1200 -59
- package/dist/_gqlTypes/index.js +232 -1
- package/dist/_gqlTypes/index.js.map +1 -1
- package/dist/_queries/attributes/attributeDetailsFragment.js +1 -0
- package/dist/_queries/attributes/attributeDetailsFragment.js.map +1 -1
- package/dist/_queries/records/activateRecordsMutation.d.ts +1 -0
- package/dist/_queries/records/activateRecordsMutation.js +15 -0
- package/dist/_queries/records/activateRecordsMutation.js.map +1 -0
- package/dist/_queries/records/getRecordFormQuery.js +13 -0
- package/dist/_queries/records/getRecordFormQuery.js.map +1 -1
- package/dist/components/CreateDirectory/CreateDirectory.js +4 -4
- package/dist/components/CreateDirectory/CreateDirectory.js.map +1 -1
- package/dist/components/EditLibraryModal/EditLibrary/EditLibraryAttributes/AttributesList/DeleteButton/DeleteButton.js +3 -2
- package/dist/components/EditLibraryModal/EditLibrary/EditLibraryAttributes/AttributesList/DeleteButton/DeleteButton.js.map +1 -1
- package/dist/components/EditTreeModal/EditTree/EditTreeInfo/EditTreeInfoForm/TreeLibrariesForm/TreeLibrariesForm.js +8 -1
- package/dist/components/EditTreeModal/EditTree/EditTreeInfo/EditTreeInfoForm/TreeLibrariesForm/TreeLibrariesForm.js.map +1 -1
- package/dist/components/ErrorBoundary/ErrorBoundaryContent/ErrorBoundaryContent.d.ts +2 -2
- package/dist/components/ErrorBoundary/ErrorBoundaryContent/ErrorBoundaryContent.js +4 -3
- package/dist/components/ErrorBoundary/ErrorBoundaryContent/ErrorBoundaryContent.js.map +1 -1
- package/dist/components/Explorer/DataView.d.ts +2 -1
- package/dist/components/Explorer/DataView.js +31 -11
- package/dist/components/Explorer/DataView.js.map +1 -1
- package/dist/components/Explorer/Explorer.d.ts +7 -4
- package/dist/components/Explorer/Explorer.js +26 -11
- package/dist/components/Explorer/Explorer.js.map +1 -1
- package/dist/components/Explorer/ExplorerToolbar.js +4 -3
- package/dist/components/Explorer/ExplorerToolbar.js.map +1 -1
- package/dist/components/Explorer/IdCard.js +1 -1
- package/dist/components/Explorer/IdCard.js.map +1 -1
- package/dist/components/Explorer/TableCell.js +22 -11
- package/dist/components/Explorer/TableCell.js.map +1 -1
- package/dist/components/Explorer/TableTagGroup.d.ts +0 -1
- package/dist/components/Explorer/TableTagGroup.js +3 -16
- package/dist/components/Explorer/TableTagGroup.js.map +1 -1
- package/dist/components/Explorer/_constants.d.ts +3 -0
- package/dist/components/Explorer/_constants.js +3 -0
- package/dist/components/Explorer/_constants.js.map +1 -1
- package/dist/components/Explorer/_queries/useExplorerData.d.ts +1 -0
- package/dist/components/Explorer/_queries/useExplorerData.js +22 -12
- package/dist/components/Explorer/_queries/useExplorerData.js.map +1 -1
- package/dist/components/Explorer/_types.d.ts +14 -3
- package/dist/components/Explorer/_types.js.map +1 -1
- package/dist/components/Explorer/actions-item/useEditItemAction.d.ts +2 -1
- package/dist/components/Explorer/actions-item/useEditItemAction.js +6 -4
- package/dist/components/Explorer/actions-item/useEditItemAction.js.map +1 -1
- package/dist/components/Explorer/actions-item/{useRemoveItemAction.d.ts → useEditStatusItemAction.d.ts} +4 -2
- package/dist/components/Explorer/actions-item/{useRemoveItemAction.js → useEditStatusItemAction.js} +81 -24
- package/dist/components/Explorer/actions-item/useEditStatusItemAction.js.map +1 -0
- package/dist/components/Explorer/actions-item/useReplaceItemAction.d.ts +21 -0
- package/dist/components/Explorer/actions-item/useReplaceItemAction.js +42 -0
- package/dist/components/Explorer/actions-item/useReplaceItemAction.js.map +1 -0
- package/dist/components/Explorer/actions-mass/useDeactivateMassAction.d.ts +2 -1
- package/dist/components/Explorer/actions-mass/useDeactivateMassAction.js +12 -3
- package/dist/components/Explorer/actions-mass/useDeactivateMassAction.js.map +1 -1
- package/dist/components/Explorer/actions-mass/useDeleteLinkValues.js +5 -5
- package/dist/components/Explorer/actions-mass/useDeleteLinkValues.js.map +1 -1
- package/dist/components/Explorer/actions-primary/useCreatePrimaryAction.d.ts +4 -1
- package/dist/components/Explorer/actions-primary/useCreatePrimaryAction.js +22 -7
- package/dist/components/Explorer/actions-primary/useCreatePrimaryAction.js.map +1 -1
- package/dist/components/Explorer/actions-primary/useLinkPrimaryAction.d.ts +5 -2
- package/dist/components/Explorer/actions-primary/useLinkPrimaryAction.js +20 -4
- package/dist/components/Explorer/actions-primary/useLinkPrimaryAction.js.map +1 -1
- package/dist/components/Explorer/link-item/LinkModal.d.ts +2 -0
- package/dist/components/Explorer/link-item/LinkModal.js +14 -4
- package/dist/components/Explorer/link-item/LinkModal.js.map +1 -1
- package/dist/components/Explorer/link-item/{useLinkMassAction.d.ts → useAddLinkMassAction.d.ts} +1 -1
- package/dist/components/Explorer/link-item/{useLinkMassAction.js → useAddLinkMassAction.js} +2 -2
- package/dist/components/Explorer/link-item/useAddLinkMassAction.js.map +1 -0
- package/dist/components/Explorer/link-item/useReplaceLinkMassAction.d.ts +23 -0
- package/dist/components/Explorer/link-item/useReplaceLinkMassAction.js +35 -0
- package/dist/components/Explorer/link-item/useReplaceLinkMassAction.js.map +1 -0
- package/dist/components/Explorer/list-saved-views/SavedViews.js +32 -42
- package/dist/components/Explorer/list-saved-views/SavedViews.js.map +1 -1
- package/dist/components/Explorer/manage-view-settings/_shared/useAttributeDetailsData.js +11 -9
- package/dist/components/Explorer/manage-view-settings/_shared/useAttributeDetailsData.js.map +1 -1
- package/dist/components/Explorer/manage-view-settings/_shared/useTransformFilters.d.ts +4 -0
- package/dist/components/Explorer/manage-view-settings/_shared/useTransformFilters.js +4 -0
- package/dist/components/Explorer/manage-view-settings/_shared/useTransformFilters.js.map +1 -1
- package/dist/components/Explorer/manage-view-settings/open-view-settings/EditSettingsContext.d.ts +1 -1
- package/dist/components/Explorer/manage-view-settings/open-view-settings/EditSettingsContext.js.map +1 -1
- package/dist/components/Explorer/manage-view-settings/open-view-settings/useOpenViewSettings.js +2 -2
- package/dist/components/Explorer/manage-view-settings/open-view-settings/useOpenViewSettings.js.map +1 -1
- package/dist/components/Explorer/manage-view-settings/router-menu/SettingsPanel.js +1 -1
- package/dist/components/Explorer/manage-view-settings/router-menu/SettingsPanel.js.map +1 -1
- package/dist/components/Explorer/manage-view-settings/save-view/LabelViewFormModal.js +1 -1
- package/dist/components/Explorer/manage-view-settings/save-view/LabelViewFormModal.js.map +1 -1
- package/dist/components/Explorer/manage-view-settings/save-view/useCreateNewView.js +1 -1
- package/dist/components/Explorer/manage-view-settings/save-view/useCreateNewView.js.map +1 -1
- package/dist/components/Explorer/manage-view-settings/save-view/useDeleteView.d.ts +5 -0
- package/dist/components/Explorer/manage-view-settings/save-view/useDeleteView.js +47 -0
- package/dist/components/Explorer/manage-view-settings/save-view/useDeleteView.js.map +1 -0
- package/dist/components/Explorer/manage-view-settings/save-view/useEditLabelView.d.ts +5 -0
- package/dist/components/Explorer/manage-view-settings/save-view/useEditLabelView.js +48 -0
- package/dist/components/Explorer/manage-view-settings/save-view/useEditLabelView.js.map +1 -0
- package/dist/components/Explorer/manage-view-settings/save-view/useResetView.js +1 -1
- package/dist/components/Explorer/manage-view-settings/save-view/useResetView.js.map +1 -1
- package/dist/components/Explorer/manage-view-settings/save-view/useShareView.js +1 -1
- package/dist/components/Explorer/manage-view-settings/save-view/useShareView.js.map +1 -1
- package/dist/components/Explorer/manage-view-settings/store-view-settings/viewSettingsInitialState.d.ts +1 -0
- package/dist/components/Explorer/manage-view-settings/store-view-settings/viewSettingsInitialState.js +3 -2
- package/dist/components/Explorer/manage-view-settings/store-view-settings/viewSettingsInitialState.js.map +1 -1
- package/dist/components/Explorer/manage-view-settings/store-view-settings/viewSettingsReducer.d.ts +8 -1
- package/dist/components/Explorer/manage-view-settings/store-view-settings/viewSettingsReducer.js +30 -0
- package/dist/components/Explorer/manage-view-settings/store-view-settings/viewSettingsReducer.js.map +1 -1
- package/dist/components/Explorer/useColumnWidth.js +2 -1
- package/dist/components/Explorer/useColumnWidth.js.map +1 -1
- package/dist/components/Explorer/useLoadView.js +4 -2
- package/dist/components/Explorer/useLoadView.js.map +1 -1
- package/dist/components/Explorer/usePagination.d.ts +2 -1
- package/dist/components/Explorer/usePagination.js.map +1 -1
- package/dist/components/Explorer/useSearchInput.d.ts +3 -1
- package/dist/components/Explorer/useSearchInput.js +2 -1
- package/dist/components/Explorer/useSearchInput.js.map +1 -1
- package/dist/components/Explorer/useViewSettingsReducer.d.ts +1 -1
- package/dist/components/Explorer/useViewSettingsReducer.js +43 -19
- package/dist/components/Explorer/useViewSettingsReducer.js.map +1 -1
- package/dist/components/ImportModal/ImportModalConfigStep/ImportModalConfigStep.js +1 -1
- package/dist/components/ImportModal/ImportModalConfigStep/ImportModalConfigStep.js.map +1 -1
- package/dist/components/LibraryItemsList/CreateNewRecordButton/CreateNewRecordButton.js +1 -0
- package/dist/components/LibraryItemsList/CreateNewRecordButton/CreateNewRecordButton.js.map +1 -1
- package/dist/components/LibraryItemsList/FiltersPanel/Filter/Filter.js +3 -3
- package/dist/components/LibraryItemsList/FiltersPanel/Filter/Filter.js.map +1 -1
- package/dist/components/LibraryItemsList/FiltersPanel/Filter/Filter.utils.js +2 -2
- package/dist/components/LibraryItemsList/FiltersPanel/Filter/Filter.utils.js.map +1 -1
- package/dist/components/LibraryItemsList/LibraryItemsListTable/Cell/typeGuards.d.ts +4 -0
- package/dist/components/LibraryItemsList/LibraryItemsListTable/Cell/typeGuards.js +4 -1
- package/dist/components/LibraryItemsList/LibraryItemsListTable/Cell/typeGuards.js.map +1 -1
- package/dist/components/LibraryItemsList/shared/DeactivateRecordBtn/DeactivateRecordBtn.js +3 -3
- package/dist/components/LibraryItemsList/shared/DeactivateRecordBtn/DeactivateRecordBtn.js.map +1 -1
- package/dist/components/LinkSelect/LinkSelect.d.ts +15 -0
- package/dist/components/LinkSelect/LinkSelect.js +88 -0
- package/dist/components/LinkSelect/LinkSelect.js.map +1 -0
- package/dist/components/LinkSelect/index.d.ts +2 -0
- package/dist/components/{SelectTreeNodeModal → LinkSelect}/index.js +2 -1
- package/dist/components/LinkSelect/index.js.map +1 -0
- package/dist/components/RecordEdition/EditRecord/EditRecord.d.ts +2 -4
- package/dist/components/RecordEdition/EditRecord/EditRecord.js +37 -39
- package/dist/components/RecordEdition/EditRecord/EditRecord.js.map +1 -1
- package/dist/components/RecordEdition/EditRecordButtons/EditRecordButtons.d.ts +2 -0
- package/dist/components/RecordEdition/EditRecordButtons/EditRecordButtons.js +43 -0
- package/dist/components/RecordEdition/EditRecordButtons/EditRecordButtons.js.map +1 -0
- package/dist/components/RecordEdition/EditRecordButtons/SidebarButton.d.ts +2 -0
- package/dist/components/RecordEdition/EditRecordButtons/SidebarButton.js +25 -0
- package/dist/components/RecordEdition/EditRecordButtons/SidebarButton.js.map +1 -0
- package/dist/components/RecordEdition/EditRecordButtons/index.d.ts +2 -0
- package/dist/components/RecordEdition/{EditRecordContent/uiElements/TreeField/TreeFieldValue → EditRecordButtons}/index.js +2 -2
- package/dist/components/RecordEdition/EditRecordButtons/index.js.map +1 -0
- package/dist/components/RecordEdition/EditRecordContent/EditRecordContent.d.ts +3 -1
- package/dist/components/RecordEdition/EditRecordContent/EditRecordContent.js +12 -3
- package/dist/components/RecordEdition/EditRecordContent/EditRecordContent.js.map +1 -1
- package/dist/components/RecordEdition/EditRecordContent/_types.d.ts +5 -0
- package/dist/components/RecordEdition/EditRecordContent/_types.js.map +1 -1
- package/dist/components/RecordEdition/EditRecordContent/formConstants.d.ts +1 -0
- package/dist/components/RecordEdition/EditRecordContent/formConstants.js +1 -0
- package/dist/components/RecordEdition/EditRecordContent/formConstants.js.map +1 -1
- package/dist/components/RecordEdition/EditRecordContent/uiElements/Container/Container.d.ts +1 -1
- package/dist/components/RecordEdition/EditRecordContent/uiElements/Container/Container.js +2 -2
- package/dist/components/RecordEdition/EditRecordContent/uiElements/Container/Container.js.map +1 -1
- package/dist/components/RecordEdition/EditRecordContent/uiElements/Frame/Frame.d.ts +1 -1
- package/dist/components/RecordEdition/EditRecordContent/uiElements/Frame/Frame.js +39 -11
- package/dist/components/RecordEdition/EditRecordContent/uiElements/Frame/Frame.js.map +1 -1
- package/dist/components/RecordEdition/EditRecordContent/uiElements/LinkField/LinkField.d.ts +8 -2
- package/dist/components/RecordEdition/EditRecordContent/uiElements/LinkField/LinkField.js +103 -92
- package/dist/components/RecordEdition/EditRecordContent/uiElements/LinkField/LinkField.js.map +1 -1
- package/dist/components/RecordEdition/EditRecordContent/uiElements/LinkField/action-item/useEditRecord.d.ts +5 -0
- package/dist/components/RecordEdition/EditRecordContent/uiElements/LinkField/action-item/useEditRecord.js +39 -0
- package/dist/components/RecordEdition/EditRecordContent/uiElements/LinkField/action-item/useEditRecord.js.map +1 -0
- package/dist/components/RecordEdition/EditRecordContent/uiElements/LinkField/action-item/useUnselectRecord.d.ts +8 -0
- package/dist/components/RecordEdition/EditRecordContent/uiElements/LinkField/action-item/useUnselectRecord.js +23 -0
- package/dist/components/RecordEdition/EditRecordContent/uiElements/LinkField/action-item/useUnselectRecord.js.map +1 -0
- package/dist/components/RecordEdition/EditRecordContent/uiElements/LinkField/action-mass/useUnselectAllRecords.d.ts +9 -0
- package/dist/components/RecordEdition/EditRecordContent/uiElements/LinkField/action-mass/useUnselectAllRecords.js +23 -0
- package/dist/components/RecordEdition/EditRecordContent/uiElements/LinkField/action-mass/useUnselectAllRecords.js.map +1 -0
- package/dist/components/RecordEdition/EditRecordContent/uiElements/LinkField/action-primary/useCreateRecord.d.ts +8 -0
- package/dist/components/RecordEdition/EditRecordContent/uiElements/LinkField/action-primary/useCreateRecord.js +26 -0
- package/dist/components/RecordEdition/EditRecordContent/uiElements/LinkField/action-primary/useCreateRecord.js.map +1 -0
- package/dist/components/RecordEdition/EditRecordContent/uiElements/LinkField/action-primary/useRecordSelector.d.ts +12 -0
- package/dist/components/RecordEdition/EditRecordContent/uiElements/LinkField/action-primary/useRecordSelector.js +24 -0
- package/dist/components/RecordEdition/EditRecordContent/uiElements/LinkField/action-primary/useRecordSelector.js.map +1 -0
- package/dist/components/RecordEdition/EditRecordContent/uiElements/LinkField/link-record-in-creation/useLinkRecords.d.ts +19 -0
- package/dist/components/RecordEdition/EditRecordContent/uiElements/LinkField/link-record-in-creation/useLinkRecords.js +103 -0
- package/dist/components/RecordEdition/EditRecordContent/uiElements/LinkField/link-record-in-creation/useLinkRecords.js.map +1 -0
- package/dist/components/RecordEdition/EditRecordContent/uiElements/LinkField/link-record-in-creation/useLinkRecordsInCreation.d.ts +22 -0
- package/dist/components/RecordEdition/EditRecordContent/uiElements/LinkField/link-record-in-creation/useLinkRecordsInCreation.js +104 -0
- package/dist/components/RecordEdition/EditRecordContent/uiElements/LinkField/link-record-in-creation/useLinkRecordsInCreation.js.map +1 -0
- package/dist/components/RecordEdition/EditRecordContent/uiElements/LinkField/link-record-in-edition/useLinkRecords.d.ts +22 -0
- package/dist/components/RecordEdition/EditRecordContent/uiElements/LinkField/link-record-in-edition/useLinkRecords.js +85 -0
- package/dist/components/RecordEdition/EditRecordContent/uiElements/LinkField/link-record-in-edition/useLinkRecords.js.map +1 -0
- package/dist/components/RecordEdition/EditRecordContent/uiElements/LinkField/link-record-in-edition/useLinkRecordsInEdition.d.ts +28 -0
- package/dist/components/RecordEdition/EditRecordContent/uiElements/LinkField/link-record-in-edition/useLinkRecordsInEdition.js +311 -0
- package/dist/components/RecordEdition/EditRecordContent/uiElements/LinkField/link-record-in-edition/useLinkRecordsInEdition.js.map +1 -0
- package/dist/components/RecordEdition/EditRecordContent/uiElements/LinkField/shared/ExplorerWrapper.d.ts +265 -0
- package/dist/components/RecordEdition/EditRecordContent/uiElements/LinkField/shared/ExplorerWrapper.js +13 -0
- package/dist/components/RecordEdition/EditRecordContent/uiElements/LinkField/shared/ExplorerWrapper.js.map +1 -0
- package/dist/components/RecordEdition/EditRecordContent/uiElements/LinkField/shared/LinkActionsButtons.d.ts +9 -0
- package/dist/components/RecordEdition/EditRecordContent/uiElements/LinkField/shared/LinkActionsButtons.js +15 -0
- package/dist/components/RecordEdition/EditRecordContent/uiElements/LinkField/shared/LinkActionsButtons.js.map +1 -0
- package/dist/components/RecordEdition/EditRecordContent/uiElements/LinkField/shared/utils.d.ts +4 -0
- package/dist/components/RecordEdition/EditRecordContent/uiElements/LinkField/shared/utils.js +22 -0
- package/dist/components/RecordEdition/EditRecordContent/uiElements/LinkField/shared/utils.js.map +1 -0
- package/dist/components/RecordEdition/EditRecordContent/uiElements/StandardField/StandardField.js +35 -48
- package/dist/components/RecordEdition/EditRecordContent/uiElements/StandardField/StandardField.js.map +1 -1
- package/dist/components/RecordEdition/EditRecordContent/uiElements/StandardField/StandardFieldValue/DSBooleanWrapper.js +1 -2
- package/dist/components/RecordEdition/EditRecordContent/uiElements/StandardField/StandardFieldValue/DSBooleanWrapper.js.map +1 -1
- package/dist/components/RecordEdition/EditRecordContent/uiElements/StandardField/StandardFieldValue/DSColorPickerWrapper.js +1 -2
- package/dist/components/RecordEdition/EditRecordContent/uiElements/StandardField/StandardFieldValue/DSColorPickerWrapper.js.map +1 -1
- package/dist/components/RecordEdition/EditRecordContent/uiElements/StandardField/StandardFieldValue/DSDatePickerWrapper.js +1 -2
- package/dist/components/RecordEdition/EditRecordContent/uiElements/StandardField/StandardFieldValue/DSDatePickerWrapper.js.map +1 -1
- package/dist/components/RecordEdition/EditRecordContent/uiElements/StandardField/StandardFieldValue/DSInputEncryptedWrapper.js +2 -5
- package/dist/components/RecordEdition/EditRecordContent/uiElements/StandardField/StandardFieldValue/DSInputEncryptedWrapper.js.map +1 -1
- package/dist/components/RecordEdition/EditRecordContent/uiElements/StandardField/StandardFieldValue/DSInputNumberWrapper.js +1 -2
- package/dist/components/RecordEdition/EditRecordContent/uiElements/StandardField/StandardFieldValue/DSInputNumberWrapper.js.map +1 -1
- package/dist/components/RecordEdition/EditRecordContent/uiElements/StandardField/StandardFieldValue/DSInputWrapper.js +1 -2
- package/dist/components/RecordEdition/EditRecordContent/uiElements/StandardField/StandardFieldValue/DSInputWrapper.js.map +1 -1
- package/dist/components/RecordEdition/EditRecordContent/uiElements/StandardField/StandardFieldValue/DSRangePickerWrapper.js +1 -2
- package/dist/components/RecordEdition/EditRecordContent/uiElements/StandardField/StandardFieldValue/DSRangePickerWrapper.js.map +1 -1
- package/dist/components/RecordEdition/EditRecordContent/uiElements/StandardField/StandardFieldValue/DSRichTextWrapper.js +1 -2
- package/dist/components/RecordEdition/EditRecordContent/uiElements/StandardField/StandardFieldValue/DSRichTextWrapper.js.map +1 -1
- package/dist/components/RecordEdition/EditRecordContent/uiElements/StandardField/StandardFieldValue/StandardFieldValue.d.ts +2 -3
- package/dist/components/RecordEdition/EditRecordContent/uiElements/StandardField/StandardFieldValue/StandardFieldValue.js +2 -3
- package/dist/components/RecordEdition/EditRecordContent/uiElements/StandardField/StandardFieldValue/StandardFieldValue.js.map +1 -1
- package/dist/components/RecordEdition/EditRecordContent/uiElements/StandardField/StandardFieldValue/ValuesList/DSListSelect.js +5 -8
- package/dist/components/RecordEdition/EditRecordContent/uiElements/StandardField/StandardFieldValue/ValuesList/DSListSelect.js.map +1 -1
- package/dist/components/RecordEdition/EditRecordContent/uiElements/StandardField/StandardFieldValue/_types.d.ts +1 -2
- package/dist/components/RecordEdition/EditRecordContent/uiElements/TreeField/TreeField.d.ts +4 -2
- package/dist/components/RecordEdition/EditRecordContent/uiElements/TreeField/TreeField.js +68 -215
- package/dist/components/RecordEdition/EditRecordContent/uiElements/TreeField/TreeField.js.map +1 -1
- package/dist/components/RecordEdition/EditRecordContent/uiElements/TreeField/display-tree-node/TreeFieldWrapper.d.ts +265 -0
- package/dist/components/RecordEdition/EditRecordContent/uiElements/TreeField/display-tree-node/TreeFieldWrapper.js +13 -0
- package/dist/components/RecordEdition/EditRecordContent/uiElements/TreeField/display-tree-node/TreeFieldWrapper.js.map +1 -0
- package/dist/components/RecordEdition/EditRecordContent/uiElements/TreeField/display-tree-node/TreeNodeItem.d.ts +11 -0
- package/dist/components/RecordEdition/EditRecordContent/uiElements/TreeField/display-tree-node/TreeNodeItem.js +51 -0
- package/dist/components/RecordEdition/EditRecordContent/uiElements/TreeField/display-tree-node/TreeNodeItem.js.map +1 -0
- package/dist/components/RecordEdition/EditRecordContent/uiElements/TreeField/display-tree-node/useDisplayTreeNode.d.ts +12 -0
- package/dist/components/RecordEdition/EditRecordContent/uiElements/TreeField/display-tree-node/useDisplayTreeNode.js +8 -0
- package/dist/components/RecordEdition/EditRecordContent/uiElements/TreeField/display-tree-node/useDisplayTreeNode.js.map +1 -0
- package/dist/components/RecordEdition/EditRecordContent/uiElements/TreeField/manage-tree-node-selection/SelectTreeNodeModal.d.ts +34 -0
- package/dist/components/RecordEdition/EditRecordContent/uiElements/TreeField/manage-tree-node-selection/SelectTreeNodeModal.js +47 -0
- package/dist/components/RecordEdition/EditRecordContent/uiElements/TreeField/manage-tree-node-selection/SelectTreeNodeModal.js.map +1 -0
- package/dist/components/RecordEdition/EditRecordContent/uiElements/TreeField/manage-tree-node-selection/useManageTreeNodeSelection.d.ts +23 -0
- package/dist/components/RecordEdition/EditRecordContent/uiElements/TreeField/manage-tree-node-selection/useManageTreeNodeSelection.js +145 -0
- package/dist/components/RecordEdition/EditRecordContent/uiElements/TreeField/manage-tree-node-selection/useManageTreeNodeSelection.js.map +1 -0
- package/dist/components/RecordEdition/EditRecordContent/uiElements/{StandardField → shared}/ComputeIndicator.d.ts +4 -2
- package/dist/components/RecordEdition/EditRecordContent/uiElements/shared/ComputeIndicator.js.map +1 -0
- package/dist/components/RecordEdition/EditRecordContent/uiElements/shared/DeleteAllValuesButton.d.ts +8 -0
- package/dist/components/RecordEdition/EditRecordContent/uiElements/{StandardField → shared}/DeleteAllValuesButton.js +2 -2
- package/dist/components/RecordEdition/EditRecordContent/uiElements/shared/DeleteAllValuesButton.js.map +1 -0
- package/dist/components/RecordEdition/EditRecordContent/uiElements/shared/calculatedInheritedFlags.js.map +1 -0
- package/dist/components/RecordEdition/EditRecordContent/uiElements/shared/useOutsideInteractionDetector.d.ts +17 -0
- package/dist/components/RecordEdition/EditRecordContent/uiElements/shared/useOutsideInteractionDetector.js +76 -0
- package/dist/components/RecordEdition/EditRecordContent/uiElements/shared/useOutsideInteractionDetector.js.map +1 -0
- package/dist/components/RecordEdition/EditRecordModal/EditRecordModal.d.ts +4 -0
- package/dist/components/RecordEdition/EditRecordModal/EditRecordModal.js +51 -51
- package/dist/components/RecordEdition/EditRecordModal/EditRecordModal.js.map +1 -1
- package/dist/components/RecordEdition/EditRecordPage/EditRecordPage.d.ts +3 -1
- package/dist/components/RecordEdition/EditRecordPage/EditRecordPage.js +9 -7
- package/dist/components/RecordEdition/EditRecordPage/EditRecordPage.js.map +1 -1
- package/dist/components/RecordEdition/EditRecordSidebar/Breacrumb/Breadcrumb.js +2 -2
- package/dist/components/RecordEdition/EditRecordSidebar/Breacrumb/Breadcrumb.js.map +1 -1
- package/dist/components/RecordEdition/EditRecordSidebar/EditRecordSidebar.d.ts +0 -1
- package/dist/components/RecordEdition/EditRecordSidebar/EditRecordSidebar.js +18 -12
- package/dist/components/RecordEdition/EditRecordSidebar/EditRecordSidebar.js.map +1 -1
- package/dist/components/RecordEdition/EditRecordSidebar/ValuesSummary/ValuesSummary.js +3 -0
- package/dist/components/RecordEdition/EditRecordSidebar/ValuesSummary/ValuesSummary.js.map +1 -1
- package/dist/components/RecordEdition/EditRecordSidebar/ValuesVersions/ValuesVersions.js +2 -2
- package/dist/components/RecordEdition/EditRecordSidebar/ValuesVersions/ValuesVersions.js.map +1 -1
- package/dist/components/RecordEdition/constants.d.ts +2 -0
- package/dist/components/RecordEdition/constants.js +6 -0
- package/dist/components/RecordEdition/constants.js.map +1 -0
- package/dist/components/RecordEdition/editRecordReducer/editRecordReducer.d.ts +29 -3
- package/dist/components/RecordEdition/editRecordReducer/editRecordReducer.js +65 -5
- package/dist/components/RecordEdition/editRecordReducer/editRecordReducer.js.map +1 -1
- package/dist/components/RecordEdition/hooks/useGetSubmitButtons.d.ts +1 -1
- package/dist/components/RecordEdition/hooks/useGetSubmitButtons.js +3 -3
- package/dist/components/RecordEdition/hooks/useGetSubmitButtons.js.map +1 -1
- package/dist/components/RecordEdition/index.d.ts +3 -0
- package/dist/components/RecordEdition/index.js +3 -0
- package/dist/components/RecordEdition/index.js.map +1 -1
- package/dist/components/SelectRecordForLinkModal/SelectRecordForLinkModal.d.ts +4 -1
- package/dist/components/SelectRecordForLinkModal/SelectRecordForLinkModal.js +8 -6
- package/dist/components/SelectRecordForLinkModal/SelectRecordForLinkModal.js.map +1 -1
- package/dist/components/SelectTreeNode/SelectTreeNode.d.ts +3 -1
- package/dist/components/SelectTreeNode/SelectTreeNode.js +4 -4
- package/dist/components/SelectTreeNode/SelectTreeNode.js.map +1 -1
- package/dist/components/SelectTreeNode/SelectTreeNodeContent.d.ts +3 -1
- package/dist/components/SelectTreeNode/SelectTreeNodeContent.js +14 -6
- package/dist/components/SelectTreeNode/SelectTreeNodeContent.js.map +1 -1
- package/dist/components/SelectTreeNode/SelectTreeNodeContentSkeleton.d.ts +2 -0
- package/dist/components/SelectTreeNode/SelectTreeNodeContentSkeleton.js +17 -0
- package/dist/components/SelectTreeNode/SelectTreeNodeContentSkeleton.js.map +1 -0
- package/dist/components/SelectTreeNode/TreeNodeTitle.d.ts +9 -0
- package/dist/components/SelectTreeNode/TreeNodeTitle.js +8 -0
- package/dist/components/SelectTreeNode/TreeNodeTitle.js.map +1 -0
- package/dist/components/{SelectTreeNodeModal/SelectTreeNodeModal.d.ts → SelectTreeNodeModalOld/SelectTreeNodeModalOld.d.ts} +1 -1
- package/dist/components/{SelectTreeNodeModal/SelectTreeNodeModal.js → SelectTreeNodeModalOld/SelectTreeNodeModalOld.js} +5 -3
- package/dist/components/SelectTreeNodeModalOld/SelectTreeNodeModalOld.js.map +1 -0
- package/dist/components/SelectTreeNodeModalOld/index.d.ts +1 -0
- package/dist/components/{RecordEdition/EditRecordContent/uiElements/LinkField/ValuesAdd → SelectTreeNodeModalOld}/index.js +1 -2
- package/dist/components/SelectTreeNodeModalOld/index.js.map +1 -0
- package/dist/components/SimpleErrorBoundary/SimpleErrorBoundary.d.ts +1 -1
- package/dist/components/SimpleErrorBoundary/SimpleErrorBoundary.js.map +1 -1
- package/dist/components/SimpleErrorBoundary/SimpleErrorBoundaryContent/SimpleErrorBoundaryContent.d.ts +2 -2
- package/dist/components/SimpleErrorBoundary/SimpleErrorBoundaryContent/SimpleErrorBoundaryContent.js +6 -3
- package/dist/components/SimpleErrorBoundary/SimpleErrorBoundaryContent/SimpleErrorBoundaryContent.js.map +1 -1
- package/dist/components/UploadFiles/UploadFiles.js +4 -4
- package/dist/components/UploadFiles/UploadFiles.js.map +1 -1
- package/dist/components/ValuesVersionConfigurator/VersionTree/VersionTree.js +2 -2
- package/dist/components/ValuesVersionConfigurator/VersionTree/VersionTree.js.map +1 -1
- package/dist/components/index.d.ts +1 -2
- package/dist/components/index.js +1 -2
- package/dist/components/index.js.map +1 -1
- package/dist/constants.d.ts +3 -1
- package/dist/constants.js +3 -1
- package/dist/constants.js.map +1 -1
- package/dist/contexts/LangContext/LangContext.d.ts +1 -2
- package/dist/contexts/LangContext/LangContext.js +2 -2
- package/dist/contexts/LangContext/LangContext.js.map +1 -1
- package/dist/hooks/index.d.ts +1 -0
- package/dist/hooks/index.js +1 -0
- package/dist/hooks/index.js.map +1 -1
- package/dist/hooks/useAppLang/useAppLang.js.map +1 -1
- package/dist/hooks/useGetRecordForm/useGetRecordForm.js +1 -1
- package/dist/hooks/useGetRecordForm/useGetRecordForm.js.map +1 -1
- package/dist/hooks/useIFrameMessenger/messageHandlers.d.ts +14 -0
- package/dist/hooks/useIFrameMessenger/messageHandlers.js +118 -0
- package/dist/hooks/useIFrameMessenger/messageHandlers.js.map +1 -0
- package/dist/hooks/useIFrameMessenger/schema.d.ts +20 -0
- package/dist/hooks/useIFrameMessenger/schema.js +75 -0
- package/dist/hooks/useIFrameMessenger/schema.js.map +1 -0
- package/dist/hooks/useIFrameMessenger/types.d.ts +104 -0
- package/dist/hooks/useIFrameMessenger/types.js +2 -0
- package/dist/hooks/useIFrameMessenger/types.js.map +1 -0
- package/dist/hooks/useIFrameMessenger/useIFrameMessenger.d.ts +11 -0
- package/dist/hooks/useIFrameMessenger/useIFrameMessenger.js +73 -0
- package/dist/hooks/useIFrameMessenger/useIFrameMessenger.js.map +1 -0
- package/dist/hooks/useRedirectToLogin/useRedirectToLogin.js +1 -1
- package/dist/hooks/useRedirectToLogin/useRedirectToLogin.js.map +1 -1
- package/dist/locales/en/shared.json +32 -12
- package/dist/locales/fr/shared.json +32 -12
- package/dist/types/attributes.d.ts +2 -1
- package/dist/types/trees.d.ts +1 -0
- package/package.json +10 -8
- package/dist/components/Explorer/actions-item/useRemoveItemAction.js.map +0 -1
- package/dist/components/Explorer/link-item/useLinkMassAction.js.map +0 -1
- package/dist/components/RecordEdition/EditRecordContent/uiElements/LinkField/FloatingMenuHandler/FloatingMenuHandler.d.ts +0 -14
- package/dist/components/RecordEdition/EditRecordContent/uiElements/LinkField/FloatingMenuHandler/FloatingMenuHandler.js +0 -29
- package/dist/components/RecordEdition/EditRecordContent/uiElements/LinkField/FloatingMenuHandler/FloatingMenuHandler.js.map +0 -1
- package/dist/components/RecordEdition/EditRecordContent/uiElements/LinkField/FloatingMenuHandler/index.d.ts +0 -2
- package/dist/components/RecordEdition/EditRecordContent/uiElements/LinkField/FloatingMenuHandler/index.js +0 -6
- package/dist/components/RecordEdition/EditRecordContent/uiElements/LinkField/FloatingMenuHandler/index.js.map +0 -1
- package/dist/components/RecordEdition/EditRecordContent/uiElements/LinkField/MonoValueSelect/MonoValueSelect.d.ts +0 -20
- package/dist/components/RecordEdition/EditRecordContent/uiElements/LinkField/MonoValueSelect/MonoValueSelect.js +0 -53
- package/dist/components/RecordEdition/EditRecordContent/uiElements/LinkField/MonoValueSelect/MonoValueSelect.js.map +0 -1
- package/dist/components/RecordEdition/EditRecordContent/uiElements/LinkField/MonoValueSelect/useGetOptionsQuery.d.ts +0 -19
- package/dist/components/RecordEdition/EditRecordContent/uiElements/LinkField/MonoValueSelect/useGetOptionsQuery.js +0 -111
- package/dist/components/RecordEdition/EditRecordContent/uiElements/LinkField/MonoValueSelect/useGetOptionsQuery.js.map +0 -1
- package/dist/components/RecordEdition/EditRecordContent/uiElements/LinkField/MultiValueSelect/MultiValueSelect.d.ts +0 -20
- package/dist/components/RecordEdition/EditRecordContent/uiElements/LinkField/MultiValueSelect/MultiValueSelect.js +0 -71
- package/dist/components/RecordEdition/EditRecordContent/uiElements/LinkField/MultiValueSelect/MultiValueSelect.js.map +0 -1
- package/dist/components/RecordEdition/EditRecordContent/uiElements/LinkField/MultiValueSelect/useGetOptionsQuery.d.ts +0 -14
- package/dist/components/RecordEdition/EditRecordContent/uiElements/LinkField/MultiValueSelect/useGetOptionsQuery.js +0 -58
- package/dist/components/RecordEdition/EditRecordContent/uiElements/LinkField/MultiValueSelect/useGetOptionsQuery.js.map +0 -1
- package/dist/components/RecordEdition/EditRecordContent/uiElements/LinkField/RecordIdentityCell/RecordIdentityCell.d.ts +0 -6
- package/dist/components/RecordEdition/EditRecordContent/uiElements/LinkField/RecordIdentityCell/RecordIdentityCell.js +0 -11
- package/dist/components/RecordEdition/EditRecordContent/uiElements/LinkField/RecordIdentityCell/RecordIdentityCell.js.map +0 -1
- package/dist/components/RecordEdition/EditRecordContent/uiElements/LinkField/RecordIdentityCell/index.d.ts +0 -2
- package/dist/components/RecordEdition/EditRecordContent/uiElements/LinkField/RecordIdentityCell/index.js +0 -6
- package/dist/components/RecordEdition/EditRecordContent/uiElements/LinkField/RecordIdentityCell/index.js.map +0 -1
- package/dist/components/RecordEdition/EditRecordContent/uiElements/LinkField/ValuesAdd/QuickSearch/QuickSearch.d.ts +0 -13
- package/dist/components/RecordEdition/EditRecordContent/uiElements/LinkField/ValuesAdd/QuickSearch/QuickSearch.js +0 -50
- package/dist/components/RecordEdition/EditRecordContent/uiElements/LinkField/ValuesAdd/QuickSearch/QuickSearch.js.map +0 -1
- package/dist/components/RecordEdition/EditRecordContent/uiElements/LinkField/ValuesAdd/QuickSearch/index.d.ts +0 -2
- package/dist/components/RecordEdition/EditRecordContent/uiElements/LinkField/ValuesAdd/QuickSearch/index.js +0 -6
- package/dist/components/RecordEdition/EditRecordContent/uiElements/LinkField/ValuesAdd/QuickSearch/index.js.map +0 -1
- package/dist/components/RecordEdition/EditRecordContent/uiElements/LinkField/ValuesAdd/ValuesAdd.d.ts +0 -9
- package/dist/components/RecordEdition/EditRecordContent/uiElements/LinkField/ValuesAdd/ValuesAdd.js +0 -215
- package/dist/components/RecordEdition/EditRecordContent/uiElements/LinkField/ValuesAdd/ValuesAdd.js.map +0 -1
- package/dist/components/RecordEdition/EditRecordContent/uiElements/LinkField/ValuesAdd/index.d.ts +0 -2
- package/dist/components/RecordEdition/EditRecordContent/uiElements/LinkField/ValuesAdd/index.js.map +0 -1
- package/dist/components/RecordEdition/EditRecordContent/uiElements/StandardField/ComputeIndicator.js.map +0 -1
- package/dist/components/RecordEdition/EditRecordContent/uiElements/StandardField/DeleteAllValuesButton.d.ts +0 -4
- package/dist/components/RecordEdition/EditRecordContent/uiElements/StandardField/DeleteAllValuesButton.js.map +0 -1
- package/dist/components/RecordEdition/EditRecordContent/uiElements/StandardField/calculatedInheritedFlags.js.map +0 -1
- package/dist/components/RecordEdition/EditRecordContent/uiElements/TreeField/TreeFieldValue/TreeFieldValue.d.ts +0 -10
- package/dist/components/RecordEdition/EditRecordContent/uiElements/TreeField/TreeFieldValue/TreeFieldValue.js +0 -50
- package/dist/components/RecordEdition/EditRecordContent/uiElements/TreeField/TreeFieldValue/TreeFieldValue.js.map +0 -1
- package/dist/components/RecordEdition/EditRecordContent/uiElements/TreeField/TreeFieldValue/index.d.ts +0 -2
- package/dist/components/RecordEdition/EditRecordContent/uiElements/TreeField/TreeFieldValue/index.js.map +0 -1
- package/dist/components/RecordEdition/EditRecordContent/uiElements/TreeField/ValuesAdd/ValuesAdd.d.ts +0 -9
- package/dist/components/RecordEdition/EditRecordContent/uiElements/TreeField/ValuesAdd/ValuesAdd.js +0 -106
- package/dist/components/RecordEdition/EditRecordContent/uiElements/TreeField/ValuesAdd/ValuesAdd.js.map +0 -1
- package/dist/components/RecordEdition/EditRecordContent/uiElements/TreeField/ValuesAdd/index.d.ts +0 -2
- package/dist/components/RecordEdition/EditRecordContent/uiElements/TreeField/ValuesAdd/index.js +0 -6
- package/dist/components/RecordEdition/EditRecordContent/uiElements/TreeField/ValuesAdd/index.js.map +0 -1
- package/dist/components/SelectTreeNodeModal/SelectTreeNodeModal.js.map +0 -1
- package/dist/components/SelectTreeNodeModal/index.d.ts +0 -1
- package/dist/components/SelectTreeNodeModal/index.js.map +0 -1
- /package/dist/components/RecordEdition/EditRecordContent/uiElements/{StandardField → shared}/ComputeIndicator.js +0 -0
- /package/dist/components/RecordEdition/EditRecordContent/uiElements/{StandardField → shared}/calculatedInheritedFlags.d.ts +0 -0
- /package/dist/components/RecordEdition/EditRecordContent/uiElements/{StandardField → shared}/calculatedInheritedFlags.js +0 -0
|
@@ -136,11 +136,13 @@ export type AttributeInput = {
|
|
|
136
136
|
linked_library?: InputMaybe<Scalars['String']>;
|
|
137
137
|
linked_tree?: InputMaybe<Scalars['String']>;
|
|
138
138
|
metadata_fields?: InputMaybe<Array<Scalars['String']>>;
|
|
139
|
+
multi_link_display_option?: InputMaybe<MultiLinkDisplayOption>;
|
|
139
140
|
multiple_values?: InputMaybe<Scalars['Boolean']>;
|
|
140
141
|
permissions_conf?: InputMaybe<TreepermissionsConfInput>;
|
|
141
142
|
readonly?: InputMaybe<Scalars['Boolean']>;
|
|
142
143
|
required?: InputMaybe<Scalars['Boolean']>;
|
|
143
144
|
reverse_link?: InputMaybe<Scalars['String']>;
|
|
145
|
+
settings?: InputMaybe<Scalars['JSONObject']>;
|
|
144
146
|
type?: InputMaybe<AttributeType>;
|
|
145
147
|
unique?: InputMaybe<Scalars['Boolean']>;
|
|
146
148
|
values_list?: InputMaybe<ValuesListConfInput>;
|
|
@@ -246,6 +248,11 @@ export type FormInput = {
|
|
|
246
248
|
id: Scalars['ID'];
|
|
247
249
|
label?: InputMaybe<Scalars['SystemTranslation']>;
|
|
248
250
|
library: Scalars['ID'];
|
|
251
|
+
sidePanel?: InputMaybe<FormSidePanelInput>;
|
|
252
|
+
};
|
|
253
|
+
export type FormSidePanelInput = {
|
|
254
|
+
enable: Scalars['Boolean'];
|
|
255
|
+
isOpenByDefault: Scalars['Boolean'];
|
|
249
256
|
};
|
|
250
257
|
export declare enum FormsSortableFields {
|
|
251
258
|
id = "id",
|
|
@@ -261,6 +268,7 @@ export type GlobalSettingsInput = {
|
|
|
261
268
|
favicon?: InputMaybe<GlobalSettingsFileInput>;
|
|
262
269
|
icon?: InputMaybe<GlobalSettingsFileInput>;
|
|
263
270
|
name?: InputMaybe<Scalars['String']>;
|
|
271
|
+
settings?: InputMaybe<Scalars['JSONObject']>;
|
|
264
272
|
};
|
|
265
273
|
export declare enum IoTypes {
|
|
266
274
|
boolean = "boolean",
|
|
@@ -292,6 +300,7 @@ export declare enum LibrariesSortableFields {
|
|
|
292
300
|
export declare enum LibraryBehavior {
|
|
293
301
|
directories = "directories",
|
|
294
302
|
files = "files",
|
|
303
|
+
join = "join",
|
|
295
304
|
standard = "standard"
|
|
296
305
|
}
|
|
297
306
|
export type LibraryIconInput = {
|
|
@@ -306,9 +315,11 @@ export type LibraryInput = {
|
|
|
306
315
|
icon?: InputMaybe<LibraryIconInput>;
|
|
307
316
|
id: Scalars['ID'];
|
|
308
317
|
label?: InputMaybe<Scalars['SystemTranslation']>;
|
|
318
|
+
mandatoryAttribute?: InputMaybe<Scalars['ID']>;
|
|
309
319
|
permissions_conf?: InputMaybe<TreepermissionsConfInput>;
|
|
310
320
|
previewsSettings?: InputMaybe<Array<LibraryPreviewsSettingsInput>>;
|
|
311
321
|
recordIdentityConf?: InputMaybe<RecordIdentityConfInput>;
|
|
322
|
+
settings?: InputMaybe<Scalars['JSONObject']>;
|
|
312
323
|
};
|
|
313
324
|
export type LibraryPreviewsSettingsInput = {
|
|
314
325
|
description?: InputMaybe<Scalars['SystemTranslationOptional']>;
|
|
@@ -389,6 +400,11 @@ export type LogTopicRecordFilterInput = {
|
|
|
389
400
|
id?: InputMaybe<Scalars['String']>;
|
|
390
401
|
libraryId?: InputMaybe<Scalars['String']>;
|
|
391
402
|
};
|
|
403
|
+
export declare enum MultiLinkDisplayOption {
|
|
404
|
+
avatar = "avatar",
|
|
405
|
+
badge_qty = "badge_qty",
|
|
406
|
+
tag = "tag"
|
|
407
|
+
}
|
|
392
408
|
export type Pagination = {
|
|
393
409
|
limit: Scalars['Int'];
|
|
394
410
|
offset: Scalars['Int'];
|
|
@@ -640,6 +656,7 @@ export type TreeInput = {
|
|
|
640
656
|
label?: InputMaybe<Scalars['SystemTranslation']>;
|
|
641
657
|
libraries?: InputMaybe<Array<TreeLibraryInput>>;
|
|
642
658
|
permissions_conf?: InputMaybe<Array<TreeNodePermissionsConfInput>>;
|
|
659
|
+
settings?: InputMaybe<Scalars['JSONObject']>;
|
|
643
660
|
};
|
|
644
661
|
export type TreeLibraryInput = {
|
|
645
662
|
library: Scalars['ID'];
|
|
@@ -681,11 +698,13 @@ export type ValueBatchInput = {
|
|
|
681
698
|
attribute?: InputMaybe<Scalars['ID']>;
|
|
682
699
|
id_value?: InputMaybe<Scalars['ID']>;
|
|
683
700
|
metadata?: InputMaybe<Array<InputMaybe<ValueMetadataInput>>>;
|
|
701
|
+
/** Use "\__empty_value__" to set an empty value */
|
|
684
702
|
payload?: InputMaybe<Scalars['String']>;
|
|
685
703
|
};
|
|
686
704
|
export type ValueInput = {
|
|
687
705
|
id_value?: InputMaybe<Scalars['ID']>;
|
|
688
706
|
metadata?: InputMaybe<Array<InputMaybe<ValueMetadataInput>>>;
|
|
707
|
+
/** Use "\__empty_value__" to set an empty value */
|
|
689
708
|
payload?: InputMaybe<Scalars['String']>;
|
|
690
709
|
version?: InputMaybe<Array<InputMaybe<ValueVersionInput>>>;
|
|
691
710
|
};
|
|
@@ -823,6 +842,7 @@ export type AttributeDetailsLinkAttributeFragment = {
|
|
|
823
842
|
label?: any | null;
|
|
824
843
|
description?: any | null;
|
|
825
844
|
multiple_values: boolean;
|
|
845
|
+
multi_link_display_option?: MultiLinkDisplayOption | null;
|
|
826
846
|
linked_library?: {
|
|
827
847
|
id: string;
|
|
828
848
|
label?: any | null;
|
|
@@ -860,6 +880,7 @@ export type AttributeDetailsStandardAttributeFragment = {
|
|
|
860
880
|
label?: any | null;
|
|
861
881
|
description?: any | null;
|
|
862
882
|
multiple_values: boolean;
|
|
883
|
+
multi_link_display_option?: MultiLinkDisplayOption | null;
|
|
863
884
|
metadata_fields?: Array<{
|
|
864
885
|
id: string;
|
|
865
886
|
label?: any | null;
|
|
@@ -892,6 +913,7 @@ export type AttributeDetailsTreeAttributeFragment = {
|
|
|
892
913
|
label?: any | null;
|
|
893
914
|
description?: any | null;
|
|
894
915
|
multiple_values: boolean;
|
|
916
|
+
multi_link_display_option?: MultiLinkDisplayOption | null;
|
|
895
917
|
linked_tree?: {
|
|
896
918
|
id: string;
|
|
897
919
|
label?: any | null;
|
|
@@ -1750,6 +1772,261 @@ export type RecordFormElementFragment = {
|
|
|
1750
1772
|
key: string;
|
|
1751
1773
|
value: any;
|
|
1752
1774
|
}>;
|
|
1775
|
+
joinLibraryContext?: {
|
|
1776
|
+
mandatoryAttribute: {
|
|
1777
|
+
id: string;
|
|
1778
|
+
label?: any | null;
|
|
1779
|
+
description?: any | null;
|
|
1780
|
+
type: AttributeType;
|
|
1781
|
+
format?: AttributeFormat | null;
|
|
1782
|
+
system: boolean;
|
|
1783
|
+
readonly: boolean;
|
|
1784
|
+
required: boolean;
|
|
1785
|
+
multiple_values: boolean;
|
|
1786
|
+
compute: boolean;
|
|
1787
|
+
linked_library?: {
|
|
1788
|
+
id: string;
|
|
1789
|
+
label?: any | null;
|
|
1790
|
+
behavior: LibraryBehavior;
|
|
1791
|
+
permissions?: {
|
|
1792
|
+
create_record: boolean;
|
|
1793
|
+
} | null;
|
|
1794
|
+
} | null;
|
|
1795
|
+
linkValuesList?: {
|
|
1796
|
+
enable: boolean;
|
|
1797
|
+
allowFreeEntry?: boolean | null;
|
|
1798
|
+
allowListUpdate?: boolean | null;
|
|
1799
|
+
values?: Array<{
|
|
1800
|
+
id: string;
|
|
1801
|
+
whoAmI: {
|
|
1802
|
+
id: string;
|
|
1803
|
+
label?: string | null;
|
|
1804
|
+
subLabel?: string | null;
|
|
1805
|
+
color?: string | null;
|
|
1806
|
+
preview?: IPreviewScalar | null;
|
|
1807
|
+
library: {
|
|
1808
|
+
id: string;
|
|
1809
|
+
label?: any | null;
|
|
1810
|
+
};
|
|
1811
|
+
};
|
|
1812
|
+
}> | null;
|
|
1813
|
+
} | null;
|
|
1814
|
+
permissions: {
|
|
1815
|
+
access_attribute: boolean;
|
|
1816
|
+
edit_value: boolean;
|
|
1817
|
+
};
|
|
1818
|
+
versions_conf?: {
|
|
1819
|
+
versionable: boolean;
|
|
1820
|
+
profile?: {
|
|
1821
|
+
id: string;
|
|
1822
|
+
trees: Array<{
|
|
1823
|
+
id: string;
|
|
1824
|
+
label?: any | null;
|
|
1825
|
+
}>;
|
|
1826
|
+
} | null;
|
|
1827
|
+
} | null;
|
|
1828
|
+
metadata_fields?: Array<{
|
|
1829
|
+
id: string;
|
|
1830
|
+
label?: any | null;
|
|
1831
|
+
description?: any | null;
|
|
1832
|
+
type: AttributeType;
|
|
1833
|
+
format?: AttributeFormat | null;
|
|
1834
|
+
system: boolean;
|
|
1835
|
+
readonly: boolean;
|
|
1836
|
+
multiple_values: boolean;
|
|
1837
|
+
permissions: {
|
|
1838
|
+
access_attribute: boolean;
|
|
1839
|
+
edit_value: boolean;
|
|
1840
|
+
};
|
|
1841
|
+
values_list?: {
|
|
1842
|
+
enable: boolean;
|
|
1843
|
+
allowFreeEntry?: boolean | null;
|
|
1844
|
+
allowListUpdate?: boolean | null;
|
|
1845
|
+
dateRangeValues?: Array<{
|
|
1846
|
+
from?: string | null;
|
|
1847
|
+
to?: string | null;
|
|
1848
|
+
}> | null;
|
|
1849
|
+
} | {
|
|
1850
|
+
enable: boolean;
|
|
1851
|
+
allowFreeEntry?: boolean | null;
|
|
1852
|
+
allowListUpdate?: boolean | null;
|
|
1853
|
+
values?: Array<string> | null;
|
|
1854
|
+
} | null;
|
|
1855
|
+
metadata_fields?: Array<{
|
|
1856
|
+
id: string;
|
|
1857
|
+
}> | null;
|
|
1858
|
+
}> | null;
|
|
1859
|
+
} | {
|
|
1860
|
+
character_limit?: number | null;
|
|
1861
|
+
id: string;
|
|
1862
|
+
label?: any | null;
|
|
1863
|
+
description?: any | null;
|
|
1864
|
+
type: AttributeType;
|
|
1865
|
+
format?: AttributeFormat | null;
|
|
1866
|
+
system: boolean;
|
|
1867
|
+
readonly: boolean;
|
|
1868
|
+
required: boolean;
|
|
1869
|
+
multiple_values: boolean;
|
|
1870
|
+
compute: boolean;
|
|
1871
|
+
values_list?: {
|
|
1872
|
+
enable: boolean;
|
|
1873
|
+
allowFreeEntry?: boolean | null;
|
|
1874
|
+
allowListUpdate?: boolean | null;
|
|
1875
|
+
dateRangeValues?: Array<{
|
|
1876
|
+
from?: string | null;
|
|
1877
|
+
to?: string | null;
|
|
1878
|
+
}> | null;
|
|
1879
|
+
} | {
|
|
1880
|
+
enable: boolean;
|
|
1881
|
+
allowFreeEntry?: boolean | null;
|
|
1882
|
+
allowListUpdate?: boolean | null;
|
|
1883
|
+
values?: Array<string> | null;
|
|
1884
|
+
} | null;
|
|
1885
|
+
permissions: {
|
|
1886
|
+
access_attribute: boolean;
|
|
1887
|
+
edit_value: boolean;
|
|
1888
|
+
};
|
|
1889
|
+
versions_conf?: {
|
|
1890
|
+
versionable: boolean;
|
|
1891
|
+
profile?: {
|
|
1892
|
+
id: string;
|
|
1893
|
+
trees: Array<{
|
|
1894
|
+
id: string;
|
|
1895
|
+
label?: any | null;
|
|
1896
|
+
}>;
|
|
1897
|
+
} | null;
|
|
1898
|
+
} | null;
|
|
1899
|
+
metadata_fields?: Array<{
|
|
1900
|
+
id: string;
|
|
1901
|
+
label?: any | null;
|
|
1902
|
+
description?: any | null;
|
|
1903
|
+
type: AttributeType;
|
|
1904
|
+
format?: AttributeFormat | null;
|
|
1905
|
+
system: boolean;
|
|
1906
|
+
readonly: boolean;
|
|
1907
|
+
multiple_values: boolean;
|
|
1908
|
+
permissions: {
|
|
1909
|
+
access_attribute: boolean;
|
|
1910
|
+
edit_value: boolean;
|
|
1911
|
+
};
|
|
1912
|
+
values_list?: {
|
|
1913
|
+
enable: boolean;
|
|
1914
|
+
allowFreeEntry?: boolean | null;
|
|
1915
|
+
allowListUpdate?: boolean | null;
|
|
1916
|
+
dateRangeValues?: Array<{
|
|
1917
|
+
from?: string | null;
|
|
1918
|
+
to?: string | null;
|
|
1919
|
+
}> | null;
|
|
1920
|
+
} | {
|
|
1921
|
+
enable: boolean;
|
|
1922
|
+
allowFreeEntry?: boolean | null;
|
|
1923
|
+
allowListUpdate?: boolean | null;
|
|
1924
|
+
values?: Array<string> | null;
|
|
1925
|
+
} | null;
|
|
1926
|
+
metadata_fields?: Array<{
|
|
1927
|
+
id: string;
|
|
1928
|
+
}> | null;
|
|
1929
|
+
}> | null;
|
|
1930
|
+
} | {
|
|
1931
|
+
id: string;
|
|
1932
|
+
label?: any | null;
|
|
1933
|
+
description?: any | null;
|
|
1934
|
+
type: AttributeType;
|
|
1935
|
+
format?: AttributeFormat | null;
|
|
1936
|
+
system: boolean;
|
|
1937
|
+
readonly: boolean;
|
|
1938
|
+
required: boolean;
|
|
1939
|
+
multiple_values: boolean;
|
|
1940
|
+
compute: boolean;
|
|
1941
|
+
linked_tree?: {
|
|
1942
|
+
id: string;
|
|
1943
|
+
label?: any | null;
|
|
1944
|
+
} | null;
|
|
1945
|
+
treeValuesList?: {
|
|
1946
|
+
enable: boolean;
|
|
1947
|
+
allowFreeEntry?: boolean | null;
|
|
1948
|
+
allowListUpdate?: boolean | null;
|
|
1949
|
+
values?: Array<{
|
|
1950
|
+
id: string;
|
|
1951
|
+
record: {
|
|
1952
|
+
id: string;
|
|
1953
|
+
whoAmI: {
|
|
1954
|
+
id: string;
|
|
1955
|
+
label?: string | null;
|
|
1956
|
+
subLabel?: string | null;
|
|
1957
|
+
color?: string | null;
|
|
1958
|
+
preview?: IPreviewScalar | null;
|
|
1959
|
+
library: {
|
|
1960
|
+
id: string;
|
|
1961
|
+
label?: any | null;
|
|
1962
|
+
};
|
|
1963
|
+
};
|
|
1964
|
+
};
|
|
1965
|
+
ancestors?: Array<{
|
|
1966
|
+
record: {
|
|
1967
|
+
id: string;
|
|
1968
|
+
whoAmI: {
|
|
1969
|
+
id: string;
|
|
1970
|
+
label?: string | null;
|
|
1971
|
+
subLabel?: string | null;
|
|
1972
|
+
color?: string | null;
|
|
1973
|
+
preview?: IPreviewScalar | null;
|
|
1974
|
+
library: {
|
|
1975
|
+
id: string;
|
|
1976
|
+
label?: any | null;
|
|
1977
|
+
};
|
|
1978
|
+
};
|
|
1979
|
+
};
|
|
1980
|
+
}> | null;
|
|
1981
|
+
}> | null;
|
|
1982
|
+
} | null;
|
|
1983
|
+
permissions: {
|
|
1984
|
+
access_attribute: boolean;
|
|
1985
|
+
edit_value: boolean;
|
|
1986
|
+
};
|
|
1987
|
+
versions_conf?: {
|
|
1988
|
+
versionable: boolean;
|
|
1989
|
+
profile?: {
|
|
1990
|
+
id: string;
|
|
1991
|
+
trees: Array<{
|
|
1992
|
+
id: string;
|
|
1993
|
+
label?: any | null;
|
|
1994
|
+
}>;
|
|
1995
|
+
} | null;
|
|
1996
|
+
} | null;
|
|
1997
|
+
metadata_fields?: Array<{
|
|
1998
|
+
id: string;
|
|
1999
|
+
label?: any | null;
|
|
2000
|
+
description?: any | null;
|
|
2001
|
+
type: AttributeType;
|
|
2002
|
+
format?: AttributeFormat | null;
|
|
2003
|
+
system: boolean;
|
|
2004
|
+
readonly: boolean;
|
|
2005
|
+
multiple_values: boolean;
|
|
2006
|
+
permissions: {
|
|
2007
|
+
access_attribute: boolean;
|
|
2008
|
+
edit_value: boolean;
|
|
2009
|
+
};
|
|
2010
|
+
values_list?: {
|
|
2011
|
+
enable: boolean;
|
|
2012
|
+
allowFreeEntry?: boolean | null;
|
|
2013
|
+
allowListUpdate?: boolean | null;
|
|
2014
|
+
dateRangeValues?: Array<{
|
|
2015
|
+
from?: string | null;
|
|
2016
|
+
to?: string | null;
|
|
2017
|
+
}> | null;
|
|
2018
|
+
} | {
|
|
2019
|
+
enable: boolean;
|
|
2020
|
+
allowFreeEntry?: boolean | null;
|
|
2021
|
+
allowListUpdate?: boolean | null;
|
|
2022
|
+
values?: Array<string> | null;
|
|
2023
|
+
} | null;
|
|
2024
|
+
metadata_fields?: Array<{
|
|
2025
|
+
id: string;
|
|
2026
|
+
}> | null;
|
|
2027
|
+
}> | null;
|
|
2028
|
+
};
|
|
2029
|
+
} | null;
|
|
1753
2030
|
};
|
|
1754
2031
|
export type ValueDetailsLinkValueFragment = {
|
|
1755
2032
|
id_value?: string | null;
|
|
@@ -2424,15 +2701,270 @@ export type StandardValuesListFragmentStandardStringValuesListConfFragment = {
|
|
|
2424
2701
|
values?: Array<string> | null;
|
|
2425
2702
|
};
|
|
2426
2703
|
export type StandardValuesListFragmentFragment = StandardValuesListFragmentStandardDateRangeValuesListConfFragment | StandardValuesListFragmentStandardStringValuesListConfFragment;
|
|
2427
|
-
export type
|
|
2428
|
-
|
|
2429
|
-
|
|
2430
|
-
|
|
2431
|
-
|
|
2432
|
-
|
|
2433
|
-
|
|
2434
|
-
|
|
2435
|
-
|
|
2704
|
+
export type JoinLibraryContextFragment = {
|
|
2705
|
+
mandatoryAttribute: {
|
|
2706
|
+
id: string;
|
|
2707
|
+
label?: any | null;
|
|
2708
|
+
description?: any | null;
|
|
2709
|
+
type: AttributeType;
|
|
2710
|
+
format?: AttributeFormat | null;
|
|
2711
|
+
system: boolean;
|
|
2712
|
+
readonly: boolean;
|
|
2713
|
+
required: boolean;
|
|
2714
|
+
multiple_values: boolean;
|
|
2715
|
+
compute: boolean;
|
|
2716
|
+
linked_library?: {
|
|
2717
|
+
id: string;
|
|
2718
|
+
label?: any | null;
|
|
2719
|
+
behavior: LibraryBehavior;
|
|
2720
|
+
permissions?: {
|
|
2721
|
+
create_record: boolean;
|
|
2722
|
+
} | null;
|
|
2723
|
+
} | null;
|
|
2724
|
+
linkValuesList?: {
|
|
2725
|
+
enable: boolean;
|
|
2726
|
+
allowFreeEntry?: boolean | null;
|
|
2727
|
+
allowListUpdate?: boolean | null;
|
|
2728
|
+
values?: Array<{
|
|
2729
|
+
id: string;
|
|
2730
|
+
whoAmI: {
|
|
2731
|
+
id: string;
|
|
2732
|
+
label?: string | null;
|
|
2733
|
+
subLabel?: string | null;
|
|
2734
|
+
color?: string | null;
|
|
2735
|
+
preview?: IPreviewScalar | null;
|
|
2736
|
+
library: {
|
|
2737
|
+
id: string;
|
|
2738
|
+
label?: any | null;
|
|
2739
|
+
};
|
|
2740
|
+
};
|
|
2741
|
+
}> | null;
|
|
2742
|
+
} | null;
|
|
2743
|
+
permissions: {
|
|
2744
|
+
access_attribute: boolean;
|
|
2745
|
+
edit_value: boolean;
|
|
2746
|
+
};
|
|
2747
|
+
versions_conf?: {
|
|
2748
|
+
versionable: boolean;
|
|
2749
|
+
profile?: {
|
|
2750
|
+
id: string;
|
|
2751
|
+
trees: Array<{
|
|
2752
|
+
id: string;
|
|
2753
|
+
label?: any | null;
|
|
2754
|
+
}>;
|
|
2755
|
+
} | null;
|
|
2756
|
+
} | null;
|
|
2757
|
+
metadata_fields?: Array<{
|
|
2758
|
+
id: string;
|
|
2759
|
+
label?: any | null;
|
|
2760
|
+
description?: any | null;
|
|
2761
|
+
type: AttributeType;
|
|
2762
|
+
format?: AttributeFormat | null;
|
|
2763
|
+
system: boolean;
|
|
2764
|
+
readonly: boolean;
|
|
2765
|
+
multiple_values: boolean;
|
|
2766
|
+
permissions: {
|
|
2767
|
+
access_attribute: boolean;
|
|
2768
|
+
edit_value: boolean;
|
|
2769
|
+
};
|
|
2770
|
+
values_list?: {
|
|
2771
|
+
enable: boolean;
|
|
2772
|
+
allowFreeEntry?: boolean | null;
|
|
2773
|
+
allowListUpdate?: boolean | null;
|
|
2774
|
+
dateRangeValues?: Array<{
|
|
2775
|
+
from?: string | null;
|
|
2776
|
+
to?: string | null;
|
|
2777
|
+
}> | null;
|
|
2778
|
+
} | {
|
|
2779
|
+
enable: boolean;
|
|
2780
|
+
allowFreeEntry?: boolean | null;
|
|
2781
|
+
allowListUpdate?: boolean | null;
|
|
2782
|
+
values?: Array<string> | null;
|
|
2783
|
+
} | null;
|
|
2784
|
+
metadata_fields?: Array<{
|
|
2785
|
+
id: string;
|
|
2786
|
+
}> | null;
|
|
2787
|
+
}> | null;
|
|
2788
|
+
} | {
|
|
2789
|
+
character_limit?: number | null;
|
|
2790
|
+
id: string;
|
|
2791
|
+
label?: any | null;
|
|
2792
|
+
description?: any | null;
|
|
2793
|
+
type: AttributeType;
|
|
2794
|
+
format?: AttributeFormat | null;
|
|
2795
|
+
system: boolean;
|
|
2796
|
+
readonly: boolean;
|
|
2797
|
+
required: boolean;
|
|
2798
|
+
multiple_values: boolean;
|
|
2799
|
+
compute: boolean;
|
|
2800
|
+
values_list?: {
|
|
2801
|
+
enable: boolean;
|
|
2802
|
+
allowFreeEntry?: boolean | null;
|
|
2803
|
+
allowListUpdate?: boolean | null;
|
|
2804
|
+
dateRangeValues?: Array<{
|
|
2805
|
+
from?: string | null;
|
|
2806
|
+
to?: string | null;
|
|
2807
|
+
}> | null;
|
|
2808
|
+
} | {
|
|
2809
|
+
enable: boolean;
|
|
2810
|
+
allowFreeEntry?: boolean | null;
|
|
2811
|
+
allowListUpdate?: boolean | null;
|
|
2812
|
+
values?: Array<string> | null;
|
|
2813
|
+
} | null;
|
|
2814
|
+
permissions: {
|
|
2815
|
+
access_attribute: boolean;
|
|
2816
|
+
edit_value: boolean;
|
|
2817
|
+
};
|
|
2818
|
+
versions_conf?: {
|
|
2819
|
+
versionable: boolean;
|
|
2820
|
+
profile?: {
|
|
2821
|
+
id: string;
|
|
2822
|
+
trees: Array<{
|
|
2823
|
+
id: string;
|
|
2824
|
+
label?: any | null;
|
|
2825
|
+
}>;
|
|
2826
|
+
} | null;
|
|
2827
|
+
} | null;
|
|
2828
|
+
metadata_fields?: Array<{
|
|
2829
|
+
id: string;
|
|
2830
|
+
label?: any | null;
|
|
2831
|
+
description?: any | null;
|
|
2832
|
+
type: AttributeType;
|
|
2833
|
+
format?: AttributeFormat | null;
|
|
2834
|
+
system: boolean;
|
|
2835
|
+
readonly: boolean;
|
|
2836
|
+
multiple_values: boolean;
|
|
2837
|
+
permissions: {
|
|
2838
|
+
access_attribute: boolean;
|
|
2839
|
+
edit_value: boolean;
|
|
2840
|
+
};
|
|
2841
|
+
values_list?: {
|
|
2842
|
+
enable: boolean;
|
|
2843
|
+
allowFreeEntry?: boolean | null;
|
|
2844
|
+
allowListUpdate?: boolean | null;
|
|
2845
|
+
dateRangeValues?: Array<{
|
|
2846
|
+
from?: string | null;
|
|
2847
|
+
to?: string | null;
|
|
2848
|
+
}> | null;
|
|
2849
|
+
} | {
|
|
2850
|
+
enable: boolean;
|
|
2851
|
+
allowFreeEntry?: boolean | null;
|
|
2852
|
+
allowListUpdate?: boolean | null;
|
|
2853
|
+
values?: Array<string> | null;
|
|
2854
|
+
} | null;
|
|
2855
|
+
metadata_fields?: Array<{
|
|
2856
|
+
id: string;
|
|
2857
|
+
}> | null;
|
|
2858
|
+
}> | null;
|
|
2859
|
+
} | {
|
|
2860
|
+
id: string;
|
|
2861
|
+
label?: any | null;
|
|
2862
|
+
description?: any | null;
|
|
2863
|
+
type: AttributeType;
|
|
2864
|
+
format?: AttributeFormat | null;
|
|
2865
|
+
system: boolean;
|
|
2866
|
+
readonly: boolean;
|
|
2867
|
+
required: boolean;
|
|
2868
|
+
multiple_values: boolean;
|
|
2869
|
+
compute: boolean;
|
|
2870
|
+
linked_tree?: {
|
|
2871
|
+
id: string;
|
|
2872
|
+
label?: any | null;
|
|
2873
|
+
} | null;
|
|
2874
|
+
treeValuesList?: {
|
|
2875
|
+
enable: boolean;
|
|
2876
|
+
allowFreeEntry?: boolean | null;
|
|
2877
|
+
allowListUpdate?: boolean | null;
|
|
2878
|
+
values?: Array<{
|
|
2879
|
+
id: string;
|
|
2880
|
+
record: {
|
|
2881
|
+
id: string;
|
|
2882
|
+
whoAmI: {
|
|
2883
|
+
id: string;
|
|
2884
|
+
label?: string | null;
|
|
2885
|
+
subLabel?: string | null;
|
|
2886
|
+
color?: string | null;
|
|
2887
|
+
preview?: IPreviewScalar | null;
|
|
2888
|
+
library: {
|
|
2889
|
+
id: string;
|
|
2890
|
+
label?: any | null;
|
|
2891
|
+
};
|
|
2892
|
+
};
|
|
2893
|
+
};
|
|
2894
|
+
ancestors?: Array<{
|
|
2895
|
+
record: {
|
|
2896
|
+
id: string;
|
|
2897
|
+
whoAmI: {
|
|
2898
|
+
id: string;
|
|
2899
|
+
label?: string | null;
|
|
2900
|
+
subLabel?: string | null;
|
|
2901
|
+
color?: string | null;
|
|
2902
|
+
preview?: IPreviewScalar | null;
|
|
2903
|
+
library: {
|
|
2904
|
+
id: string;
|
|
2905
|
+
label?: any | null;
|
|
2906
|
+
};
|
|
2907
|
+
};
|
|
2908
|
+
};
|
|
2909
|
+
}> | null;
|
|
2910
|
+
}> | null;
|
|
2911
|
+
} | null;
|
|
2912
|
+
permissions: {
|
|
2913
|
+
access_attribute: boolean;
|
|
2914
|
+
edit_value: boolean;
|
|
2915
|
+
};
|
|
2916
|
+
versions_conf?: {
|
|
2917
|
+
versionable: boolean;
|
|
2918
|
+
profile?: {
|
|
2919
|
+
id: string;
|
|
2920
|
+
trees: Array<{
|
|
2921
|
+
id: string;
|
|
2922
|
+
label?: any | null;
|
|
2923
|
+
}>;
|
|
2924
|
+
} | null;
|
|
2925
|
+
} | null;
|
|
2926
|
+
metadata_fields?: Array<{
|
|
2927
|
+
id: string;
|
|
2928
|
+
label?: any | null;
|
|
2929
|
+
description?: any | null;
|
|
2930
|
+
type: AttributeType;
|
|
2931
|
+
format?: AttributeFormat | null;
|
|
2932
|
+
system: boolean;
|
|
2933
|
+
readonly: boolean;
|
|
2934
|
+
multiple_values: boolean;
|
|
2935
|
+
permissions: {
|
|
2936
|
+
access_attribute: boolean;
|
|
2937
|
+
edit_value: boolean;
|
|
2938
|
+
};
|
|
2939
|
+
values_list?: {
|
|
2940
|
+
enable: boolean;
|
|
2941
|
+
allowFreeEntry?: boolean | null;
|
|
2942
|
+
allowListUpdate?: boolean | null;
|
|
2943
|
+
dateRangeValues?: Array<{
|
|
2944
|
+
from?: string | null;
|
|
2945
|
+
to?: string | null;
|
|
2946
|
+
}> | null;
|
|
2947
|
+
} | {
|
|
2948
|
+
enable: boolean;
|
|
2949
|
+
allowFreeEntry?: boolean | null;
|
|
2950
|
+
allowListUpdate?: boolean | null;
|
|
2951
|
+
values?: Array<string> | null;
|
|
2952
|
+
} | null;
|
|
2953
|
+
metadata_fields?: Array<{
|
|
2954
|
+
id: string;
|
|
2955
|
+
}> | null;
|
|
2956
|
+
}> | null;
|
|
2957
|
+
};
|
|
2958
|
+
};
|
|
2959
|
+
export type TreeDetailsFragment = {
|
|
2960
|
+
id: string;
|
|
2961
|
+
label?: any | null;
|
|
2962
|
+
behavior: TreeBehavior;
|
|
2963
|
+
system: boolean;
|
|
2964
|
+
libraries: Array<{
|
|
2965
|
+
library: {
|
|
2966
|
+
id: string;
|
|
2967
|
+
label?: any | null;
|
|
2436
2968
|
};
|
|
2437
2969
|
settings: {
|
|
2438
2970
|
allowMultiplePositions: boolean;
|
|
@@ -2549,16 +3081,76 @@ export type ViewDetailsFragment = {
|
|
|
2549
3081
|
}> | null;
|
|
2550
3082
|
attributes?: Array<{
|
|
2551
3083
|
id: string;
|
|
2552
|
-
}> | null;
|
|
3084
|
+
}> | null;
|
|
3085
|
+
};
|
|
3086
|
+
export type ViewDetailsFilterFragment = {
|
|
3087
|
+
field?: string | null;
|
|
3088
|
+
value?: string | null;
|
|
3089
|
+
condition?: RecordFilterCondition | null;
|
|
3090
|
+
operator?: RecordFilterOperator | null;
|
|
3091
|
+
tree?: {
|
|
3092
|
+
id: string;
|
|
3093
|
+
label?: any | null;
|
|
3094
|
+
} | null;
|
|
3095
|
+
};
|
|
3096
|
+
export type AttributesByLibAttributeWithPermissionsLinkAttributeFragment = {
|
|
3097
|
+
id: string;
|
|
3098
|
+
type: AttributeType;
|
|
3099
|
+
format?: AttributeFormat | null;
|
|
3100
|
+
label?: any | null;
|
|
3101
|
+
multiple_values: boolean;
|
|
3102
|
+
system: boolean;
|
|
3103
|
+
readonly: boolean;
|
|
3104
|
+
permissions: {
|
|
3105
|
+
access_attribute: boolean;
|
|
3106
|
+
};
|
|
3107
|
+
linked_library?: {
|
|
3108
|
+
id: string;
|
|
3109
|
+
} | null;
|
|
3110
|
+
};
|
|
3111
|
+
export type AttributesByLibAttributeWithPermissionsStandardAttributeFragment = {
|
|
3112
|
+
id: string;
|
|
3113
|
+
type: AttributeType;
|
|
3114
|
+
format?: AttributeFormat | null;
|
|
3115
|
+
label?: any | null;
|
|
3116
|
+
multiple_values: boolean;
|
|
3117
|
+
system: boolean;
|
|
3118
|
+
readonly: boolean;
|
|
3119
|
+
embedded_fields?: Array<{
|
|
3120
|
+
id: string;
|
|
3121
|
+
format?: AttributeFormat | null;
|
|
3122
|
+
label?: any | null;
|
|
3123
|
+
} | null> | null;
|
|
3124
|
+
permissions: {
|
|
3125
|
+
access_attribute: boolean;
|
|
3126
|
+
};
|
|
2553
3127
|
};
|
|
2554
|
-
export type
|
|
2555
|
-
|
|
2556
|
-
|
|
2557
|
-
|
|
2558
|
-
|
|
2559
|
-
|
|
3128
|
+
export type AttributesByLibAttributeWithPermissionsTreeAttributeFragment = {
|
|
3129
|
+
id: string;
|
|
3130
|
+
type: AttributeType;
|
|
3131
|
+
format?: AttributeFormat | null;
|
|
3132
|
+
label?: any | null;
|
|
3133
|
+
multiple_values: boolean;
|
|
3134
|
+
system: boolean;
|
|
3135
|
+
readonly: boolean;
|
|
3136
|
+
linked_tree?: {
|
|
2560
3137
|
id: string;
|
|
2561
3138
|
label?: any | null;
|
|
3139
|
+
libraries: Array<{
|
|
3140
|
+
library: {
|
|
3141
|
+
id: string;
|
|
3142
|
+
label?: any | null;
|
|
3143
|
+
};
|
|
3144
|
+
}>;
|
|
3145
|
+
} | null;
|
|
3146
|
+
permissions: {
|
|
3147
|
+
access_attribute: boolean;
|
|
3148
|
+
};
|
|
3149
|
+
};
|
|
3150
|
+
export type AttributesByLibAttributeWithPermissionsFragment = AttributesByLibAttributeWithPermissionsLinkAttributeFragment | AttributesByLibAttributeWithPermissionsStandardAttributeFragment | AttributesByLibAttributeWithPermissionsTreeAttributeFragment;
|
|
3151
|
+
export type AttributesByLibLinkAttributeWithPermissionsFragment = {
|
|
3152
|
+
linked_library?: {
|
|
3153
|
+
id: string;
|
|
2562
3154
|
} | null;
|
|
2563
3155
|
};
|
|
2564
3156
|
export type LinkAttributeDetailsFragment = {
|
|
@@ -2574,6 +3166,7 @@ export type AttributePropertiesFragment = {
|
|
|
2574
3166
|
type: AttributeType;
|
|
2575
3167
|
format?: AttributeFormat | null;
|
|
2576
3168
|
multiple_values: boolean;
|
|
3169
|
+
multi_link_display_option?: MultiLinkDisplayOption | null;
|
|
2577
3170
|
};
|
|
2578
3171
|
export type PropertyValueLinkValueFragment = {
|
|
2579
3172
|
linkPayload?: {
|
|
@@ -2626,6 +3219,7 @@ export type LinkPropertyLinkValueFragment = {
|
|
|
2626
3219
|
type: AttributeType;
|
|
2627
3220
|
format?: AttributeFormat | null;
|
|
2628
3221
|
multiple_values: boolean;
|
|
3222
|
+
multi_link_display_option?: MultiLinkDisplayOption | null;
|
|
2629
3223
|
};
|
|
2630
3224
|
values: Array<{
|
|
2631
3225
|
linkPayload?: {
|
|
@@ -2685,6 +3279,9 @@ export type LibraryAttributeLinkAttributeFragment = {
|
|
|
2685
3279
|
id: string;
|
|
2686
3280
|
type: AttributeType;
|
|
2687
3281
|
label?: any | null;
|
|
3282
|
+
permissions: {
|
|
3283
|
+
access_attribute: boolean;
|
|
3284
|
+
};
|
|
2688
3285
|
linked_library?: {
|
|
2689
3286
|
id: string;
|
|
2690
3287
|
label?: any | null;
|
|
@@ -2701,11 +3298,17 @@ export type LibraryAttributeStandardAttributeFragment = {
|
|
|
2701
3298
|
id: string;
|
|
2702
3299
|
type: AttributeType;
|
|
2703
3300
|
label?: any | null;
|
|
3301
|
+
permissions: {
|
|
3302
|
+
access_attribute: boolean;
|
|
3303
|
+
};
|
|
2704
3304
|
};
|
|
2705
3305
|
export type LibraryAttributeTreeAttributeFragment = {
|
|
2706
3306
|
id: string;
|
|
2707
3307
|
type: AttributeType;
|
|
2708
3308
|
label?: any | null;
|
|
3309
|
+
permissions: {
|
|
3310
|
+
access_attribute: boolean;
|
|
3311
|
+
};
|
|
2709
3312
|
};
|
|
2710
3313
|
export type LibraryAttributeFragment = LibraryAttributeLinkAttributeFragment | LibraryAttributeStandardAttributeFragment | LibraryAttributeTreeAttributeFragment;
|
|
2711
3314
|
export type LibraryAttributeLinkFragment = {
|
|
@@ -2840,6 +3443,7 @@ export type GetAttributeByIdQuery = {
|
|
|
2840
3443
|
label?: any | null;
|
|
2841
3444
|
description?: any | null;
|
|
2842
3445
|
multiple_values: boolean;
|
|
3446
|
+
multi_link_display_option?: MultiLinkDisplayOption | null;
|
|
2843
3447
|
linked_library?: {
|
|
2844
3448
|
id: string;
|
|
2845
3449
|
label?: any | null;
|
|
@@ -2876,6 +3480,7 @@ export type GetAttributeByIdQuery = {
|
|
|
2876
3480
|
label?: any | null;
|
|
2877
3481
|
description?: any | null;
|
|
2878
3482
|
multiple_values: boolean;
|
|
3483
|
+
multi_link_display_option?: MultiLinkDisplayOption | null;
|
|
2879
3484
|
metadata_fields?: Array<{
|
|
2880
3485
|
id: string;
|
|
2881
3486
|
label?: any | null;
|
|
@@ -2907,6 +3512,7 @@ export type GetAttributeByIdQuery = {
|
|
|
2907
3512
|
label?: any | null;
|
|
2908
3513
|
description?: any | null;
|
|
2909
3514
|
multiple_values: boolean;
|
|
3515
|
+
multi_link_display_option?: MultiLinkDisplayOption | null;
|
|
2910
3516
|
linked_tree?: {
|
|
2911
3517
|
id: string;
|
|
2912
3518
|
label?: any | null;
|
|
@@ -3049,6 +3655,7 @@ export type SaveAttributeMutation = {
|
|
|
3049
3655
|
label?: any | null;
|
|
3050
3656
|
description?: any | null;
|
|
3051
3657
|
multiple_values: boolean;
|
|
3658
|
+
multi_link_display_option?: MultiLinkDisplayOption | null;
|
|
3052
3659
|
linked_library?: {
|
|
3053
3660
|
id: string;
|
|
3054
3661
|
label?: any | null;
|
|
@@ -3085,6 +3692,7 @@ export type SaveAttributeMutation = {
|
|
|
3085
3692
|
label?: any | null;
|
|
3086
3693
|
description?: any | null;
|
|
3087
3694
|
multiple_values: boolean;
|
|
3695
|
+
multi_link_display_option?: MultiLinkDisplayOption | null;
|
|
3088
3696
|
metadata_fields?: Array<{
|
|
3089
3697
|
id: string;
|
|
3090
3698
|
label?: any | null;
|
|
@@ -3116,6 +3724,7 @@ export type SaveAttributeMutation = {
|
|
|
3116
3724
|
label?: any | null;
|
|
3117
3725
|
description?: any | null;
|
|
3118
3726
|
multiple_values: boolean;
|
|
3727
|
+
multi_link_display_option?: MultiLinkDisplayOption | null;
|
|
3119
3728
|
linked_tree?: {
|
|
3120
3729
|
id: string;
|
|
3121
3730
|
label?: any | null;
|
|
@@ -3569,6 +4178,27 @@ export type IsAllowedQuery = {
|
|
|
3569
4178
|
allowed?: boolean | null;
|
|
3570
4179
|
}> | null;
|
|
3571
4180
|
};
|
|
4181
|
+
export type ActivateRecordsMutationVariables = Exact<{
|
|
4182
|
+
libraryId: Scalars['String'];
|
|
4183
|
+
recordsIds?: InputMaybe<Array<Scalars['String']> | Scalars['String']>;
|
|
4184
|
+
filters?: InputMaybe<Array<RecordFilterInput> | RecordFilterInput>;
|
|
4185
|
+
}>;
|
|
4186
|
+
export type ActivateRecordsMutation = {
|
|
4187
|
+
activateRecords: Array<{
|
|
4188
|
+
id: string;
|
|
4189
|
+
whoAmI: {
|
|
4190
|
+
id: string;
|
|
4191
|
+
label?: string | null;
|
|
4192
|
+
subLabel?: string | null;
|
|
4193
|
+
color?: string | null;
|
|
4194
|
+
preview?: IPreviewScalar | null;
|
|
4195
|
+
library: {
|
|
4196
|
+
id: string;
|
|
4197
|
+
label?: any | null;
|
|
4198
|
+
};
|
|
4199
|
+
};
|
|
4200
|
+
}>;
|
|
4201
|
+
};
|
|
3572
4202
|
export type CreateRecordMutationVariables = Exact<{
|
|
3573
4203
|
library: Scalars['ID'];
|
|
3574
4204
|
data?: InputMaybe<CreateRecordDataInput>;
|
|
@@ -4306,61 +4936,320 @@ export type RecordFormQuery = {
|
|
|
4306
4936
|
label?: any | null;
|
|
4307
4937
|
};
|
|
4308
4938
|
};
|
|
4309
|
-
};
|
|
4939
|
+
};
|
|
4940
|
+
}> | null;
|
|
4941
|
+
}> | null;
|
|
4942
|
+
} | null;
|
|
4943
|
+
permissions: {
|
|
4944
|
+
access_attribute: boolean;
|
|
4945
|
+
edit_value: boolean;
|
|
4946
|
+
};
|
|
4947
|
+
versions_conf?: {
|
|
4948
|
+
versionable: boolean;
|
|
4949
|
+
profile?: {
|
|
4950
|
+
id: string;
|
|
4951
|
+
trees: Array<{
|
|
4952
|
+
id: string;
|
|
4953
|
+
label?: any | null;
|
|
4954
|
+
}>;
|
|
4955
|
+
} | null;
|
|
4956
|
+
} | null;
|
|
4957
|
+
metadata_fields?: Array<{
|
|
4958
|
+
id: string;
|
|
4959
|
+
label?: any | null;
|
|
4960
|
+
description?: any | null;
|
|
4961
|
+
type: AttributeType;
|
|
4962
|
+
format?: AttributeFormat | null;
|
|
4963
|
+
system: boolean;
|
|
4964
|
+
readonly: boolean;
|
|
4965
|
+
multiple_values: boolean;
|
|
4966
|
+
permissions: {
|
|
4967
|
+
access_attribute: boolean;
|
|
4968
|
+
edit_value: boolean;
|
|
4969
|
+
};
|
|
4970
|
+
values_list?: {
|
|
4971
|
+
enable: boolean;
|
|
4972
|
+
allowFreeEntry?: boolean | null;
|
|
4973
|
+
allowListUpdate?: boolean | null;
|
|
4974
|
+
dateRangeValues?: Array<{
|
|
4975
|
+
from?: string | null;
|
|
4976
|
+
to?: string | null;
|
|
4977
|
+
}> | null;
|
|
4978
|
+
} | {
|
|
4979
|
+
enable: boolean;
|
|
4980
|
+
allowFreeEntry?: boolean | null;
|
|
4981
|
+
allowListUpdate?: boolean | null;
|
|
4982
|
+
values?: Array<string> | null;
|
|
4983
|
+
} | null;
|
|
4984
|
+
metadata_fields?: Array<{
|
|
4985
|
+
id: string;
|
|
4986
|
+
}> | null;
|
|
4987
|
+
}> | null;
|
|
4988
|
+
} | null;
|
|
4989
|
+
settings: Array<{
|
|
4990
|
+
key: string;
|
|
4991
|
+
value: any;
|
|
4992
|
+
}>;
|
|
4993
|
+
joinLibraryContext?: {
|
|
4994
|
+
mandatoryAttribute: {
|
|
4995
|
+
id: string;
|
|
4996
|
+
label?: any | null;
|
|
4997
|
+
description?: any | null;
|
|
4998
|
+
type: AttributeType;
|
|
4999
|
+
format?: AttributeFormat | null;
|
|
5000
|
+
system: boolean;
|
|
5001
|
+
readonly: boolean;
|
|
5002
|
+
required: boolean;
|
|
5003
|
+
multiple_values: boolean;
|
|
5004
|
+
compute: boolean;
|
|
5005
|
+
linked_library?: {
|
|
5006
|
+
id: string;
|
|
5007
|
+
label?: any | null;
|
|
5008
|
+
behavior: LibraryBehavior;
|
|
5009
|
+
permissions?: {
|
|
5010
|
+
create_record: boolean;
|
|
5011
|
+
} | null;
|
|
5012
|
+
} | null;
|
|
5013
|
+
linkValuesList?: {
|
|
5014
|
+
enable: boolean;
|
|
5015
|
+
allowFreeEntry?: boolean | null;
|
|
5016
|
+
allowListUpdate?: boolean | null;
|
|
5017
|
+
values?: Array<{
|
|
5018
|
+
id: string;
|
|
5019
|
+
whoAmI: {
|
|
5020
|
+
id: string;
|
|
5021
|
+
label?: string | null;
|
|
5022
|
+
subLabel?: string | null;
|
|
5023
|
+
color?: string | null;
|
|
5024
|
+
preview?: IPreviewScalar | null;
|
|
5025
|
+
library: {
|
|
5026
|
+
id: string;
|
|
5027
|
+
label?: any | null;
|
|
5028
|
+
};
|
|
5029
|
+
};
|
|
5030
|
+
}> | null;
|
|
5031
|
+
} | null;
|
|
5032
|
+
permissions: {
|
|
5033
|
+
access_attribute: boolean;
|
|
5034
|
+
edit_value: boolean;
|
|
5035
|
+
};
|
|
5036
|
+
versions_conf?: {
|
|
5037
|
+
versionable: boolean;
|
|
5038
|
+
profile?: {
|
|
5039
|
+
id: string;
|
|
5040
|
+
trees: Array<{
|
|
5041
|
+
id: string;
|
|
5042
|
+
label?: any | null;
|
|
5043
|
+
}>;
|
|
5044
|
+
} | null;
|
|
5045
|
+
} | null;
|
|
5046
|
+
metadata_fields?: Array<{
|
|
5047
|
+
id: string;
|
|
5048
|
+
label?: any | null;
|
|
5049
|
+
description?: any | null;
|
|
5050
|
+
type: AttributeType;
|
|
5051
|
+
format?: AttributeFormat | null;
|
|
5052
|
+
system: boolean;
|
|
5053
|
+
readonly: boolean;
|
|
5054
|
+
multiple_values: boolean;
|
|
5055
|
+
permissions: {
|
|
5056
|
+
access_attribute: boolean;
|
|
5057
|
+
edit_value: boolean;
|
|
5058
|
+
};
|
|
5059
|
+
values_list?: {
|
|
5060
|
+
enable: boolean;
|
|
5061
|
+
allowFreeEntry?: boolean | null;
|
|
5062
|
+
allowListUpdate?: boolean | null;
|
|
5063
|
+
dateRangeValues?: Array<{
|
|
5064
|
+
from?: string | null;
|
|
5065
|
+
to?: string | null;
|
|
5066
|
+
}> | null;
|
|
5067
|
+
} | {
|
|
5068
|
+
enable: boolean;
|
|
5069
|
+
allowFreeEntry?: boolean | null;
|
|
5070
|
+
allowListUpdate?: boolean | null;
|
|
5071
|
+
values?: Array<string> | null;
|
|
5072
|
+
} | null;
|
|
5073
|
+
metadata_fields?: Array<{
|
|
5074
|
+
id: string;
|
|
5075
|
+
}> | null;
|
|
5076
|
+
}> | null;
|
|
5077
|
+
} | {
|
|
5078
|
+
character_limit?: number | null;
|
|
5079
|
+
id: string;
|
|
5080
|
+
label?: any | null;
|
|
5081
|
+
description?: any | null;
|
|
5082
|
+
type: AttributeType;
|
|
5083
|
+
format?: AttributeFormat | null;
|
|
5084
|
+
system: boolean;
|
|
5085
|
+
readonly: boolean;
|
|
5086
|
+
required: boolean;
|
|
5087
|
+
multiple_values: boolean;
|
|
5088
|
+
compute: boolean;
|
|
5089
|
+
values_list?: {
|
|
5090
|
+
enable: boolean;
|
|
5091
|
+
allowFreeEntry?: boolean | null;
|
|
5092
|
+
allowListUpdate?: boolean | null;
|
|
5093
|
+
dateRangeValues?: Array<{
|
|
5094
|
+
from?: string | null;
|
|
5095
|
+
to?: string | null;
|
|
5096
|
+
}> | null;
|
|
5097
|
+
} | {
|
|
5098
|
+
enable: boolean;
|
|
5099
|
+
allowFreeEntry?: boolean | null;
|
|
5100
|
+
allowListUpdate?: boolean | null;
|
|
5101
|
+
values?: Array<string> | null;
|
|
5102
|
+
} | null;
|
|
5103
|
+
permissions: {
|
|
5104
|
+
access_attribute: boolean;
|
|
5105
|
+
edit_value: boolean;
|
|
5106
|
+
};
|
|
5107
|
+
versions_conf?: {
|
|
5108
|
+
versionable: boolean;
|
|
5109
|
+
profile?: {
|
|
5110
|
+
id: string;
|
|
5111
|
+
trees: Array<{
|
|
5112
|
+
id: string;
|
|
5113
|
+
label?: any | null;
|
|
5114
|
+
}>;
|
|
5115
|
+
} | null;
|
|
5116
|
+
} | null;
|
|
5117
|
+
metadata_fields?: Array<{
|
|
5118
|
+
id: string;
|
|
5119
|
+
label?: any | null;
|
|
5120
|
+
description?: any | null;
|
|
5121
|
+
type: AttributeType;
|
|
5122
|
+
format?: AttributeFormat | null;
|
|
5123
|
+
system: boolean;
|
|
5124
|
+
readonly: boolean;
|
|
5125
|
+
multiple_values: boolean;
|
|
5126
|
+
permissions: {
|
|
5127
|
+
access_attribute: boolean;
|
|
5128
|
+
edit_value: boolean;
|
|
5129
|
+
};
|
|
5130
|
+
values_list?: {
|
|
5131
|
+
enable: boolean;
|
|
5132
|
+
allowFreeEntry?: boolean | null;
|
|
5133
|
+
allowListUpdate?: boolean | null;
|
|
5134
|
+
dateRangeValues?: Array<{
|
|
5135
|
+
from?: string | null;
|
|
5136
|
+
to?: string | null;
|
|
5137
|
+
}> | null;
|
|
5138
|
+
} | {
|
|
5139
|
+
enable: boolean;
|
|
5140
|
+
allowFreeEntry?: boolean | null;
|
|
5141
|
+
allowListUpdate?: boolean | null;
|
|
5142
|
+
values?: Array<string> | null;
|
|
5143
|
+
} | null;
|
|
5144
|
+
metadata_fields?: Array<{
|
|
5145
|
+
id: string;
|
|
5146
|
+
}> | null;
|
|
5147
|
+
}> | null;
|
|
5148
|
+
} | {
|
|
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
|
+
linked_tree?: {
|
|
5160
|
+
id: string;
|
|
5161
|
+
label?: any | null;
|
|
5162
|
+
} | null;
|
|
5163
|
+
treeValuesList?: {
|
|
5164
|
+
enable: boolean;
|
|
5165
|
+
allowFreeEntry?: boolean | null;
|
|
5166
|
+
allowListUpdate?: boolean | null;
|
|
5167
|
+
values?: Array<{
|
|
5168
|
+
id: string;
|
|
5169
|
+
record: {
|
|
5170
|
+
id: string;
|
|
5171
|
+
whoAmI: {
|
|
5172
|
+
id: string;
|
|
5173
|
+
label?: string | null;
|
|
5174
|
+
subLabel?: string | null;
|
|
5175
|
+
color?: string | null;
|
|
5176
|
+
preview?: IPreviewScalar | null;
|
|
5177
|
+
library: {
|
|
5178
|
+
id: string;
|
|
5179
|
+
label?: any | null;
|
|
5180
|
+
};
|
|
5181
|
+
};
|
|
5182
|
+
};
|
|
5183
|
+
ancestors?: Array<{
|
|
5184
|
+
record: {
|
|
5185
|
+
id: string;
|
|
5186
|
+
whoAmI: {
|
|
5187
|
+
id: string;
|
|
5188
|
+
label?: string | null;
|
|
5189
|
+
subLabel?: string | null;
|
|
5190
|
+
color?: string | null;
|
|
5191
|
+
preview?: IPreviewScalar | null;
|
|
5192
|
+
library: {
|
|
5193
|
+
id: string;
|
|
5194
|
+
label?: any | null;
|
|
5195
|
+
};
|
|
5196
|
+
};
|
|
5197
|
+
};
|
|
5198
|
+
}> | null;
|
|
4310
5199
|
}> | null;
|
|
4311
|
-
}> | null;
|
|
4312
|
-
} | null;
|
|
4313
|
-
permissions: {
|
|
4314
|
-
access_attribute: boolean;
|
|
4315
|
-
edit_value: boolean;
|
|
4316
|
-
};
|
|
4317
|
-
versions_conf?: {
|
|
4318
|
-
versionable: boolean;
|
|
4319
|
-
profile?: {
|
|
4320
|
-
id: string;
|
|
4321
|
-
trees: Array<{
|
|
4322
|
-
id: string;
|
|
4323
|
-
label?: any | null;
|
|
4324
|
-
}>;
|
|
4325
5200
|
} | null;
|
|
4326
|
-
} | null;
|
|
4327
|
-
metadata_fields?: Array<{
|
|
4328
|
-
id: string;
|
|
4329
|
-
label?: any | null;
|
|
4330
|
-
description?: any | null;
|
|
4331
|
-
type: AttributeType;
|
|
4332
|
-
format?: AttributeFormat | null;
|
|
4333
|
-
system: boolean;
|
|
4334
|
-
readonly: boolean;
|
|
4335
|
-
multiple_values: boolean;
|
|
4336
5201
|
permissions: {
|
|
4337
5202
|
access_attribute: boolean;
|
|
4338
5203
|
edit_value: boolean;
|
|
4339
5204
|
};
|
|
4340
|
-
|
|
4341
|
-
|
|
4342
|
-
|
|
4343
|
-
|
|
4344
|
-
|
|
4345
|
-
|
|
4346
|
-
|
|
4347
|
-
|
|
4348
|
-
|
|
4349
|
-
enable: boolean;
|
|
4350
|
-
allowFreeEntry?: boolean | null;
|
|
4351
|
-
allowListUpdate?: boolean | null;
|
|
4352
|
-
values?: Array<string> | null;
|
|
5205
|
+
versions_conf?: {
|
|
5206
|
+
versionable: boolean;
|
|
5207
|
+
profile?: {
|
|
5208
|
+
id: string;
|
|
5209
|
+
trees: Array<{
|
|
5210
|
+
id: string;
|
|
5211
|
+
label?: any | null;
|
|
5212
|
+
}>;
|
|
5213
|
+
} | null;
|
|
4353
5214
|
} | null;
|
|
4354
5215
|
metadata_fields?: Array<{
|
|
4355
5216
|
id: string;
|
|
5217
|
+
label?: any | null;
|
|
5218
|
+
description?: any | null;
|
|
5219
|
+
type: AttributeType;
|
|
5220
|
+
format?: AttributeFormat | null;
|
|
5221
|
+
system: boolean;
|
|
5222
|
+
readonly: boolean;
|
|
5223
|
+
multiple_values: boolean;
|
|
5224
|
+
permissions: {
|
|
5225
|
+
access_attribute: boolean;
|
|
5226
|
+
edit_value: boolean;
|
|
5227
|
+
};
|
|
5228
|
+
values_list?: {
|
|
5229
|
+
enable: boolean;
|
|
5230
|
+
allowFreeEntry?: boolean | null;
|
|
5231
|
+
allowListUpdate?: boolean | null;
|
|
5232
|
+
dateRangeValues?: Array<{
|
|
5233
|
+
from?: string | null;
|
|
5234
|
+
to?: string | null;
|
|
5235
|
+
}> | null;
|
|
5236
|
+
} | {
|
|
5237
|
+
enable: boolean;
|
|
5238
|
+
allowFreeEntry?: boolean | null;
|
|
5239
|
+
allowListUpdate?: boolean | null;
|
|
5240
|
+
values?: Array<string> | null;
|
|
5241
|
+
} | null;
|
|
5242
|
+
metadata_fields?: Array<{
|
|
5243
|
+
id: string;
|
|
5244
|
+
}> | null;
|
|
4356
5245
|
}> | null;
|
|
4357
|
-
}
|
|
5246
|
+
};
|
|
4358
5247
|
} | null;
|
|
4359
|
-
settings: Array<{
|
|
4360
|
-
key: string;
|
|
4361
|
-
value: any;
|
|
4362
|
-
}>;
|
|
4363
5248
|
}>;
|
|
5249
|
+
sidePanel?: {
|
|
5250
|
+
enable: boolean;
|
|
5251
|
+
isOpenByDefault?: boolean | null;
|
|
5252
|
+
} | null;
|
|
4364
5253
|
} | null;
|
|
4365
5254
|
};
|
|
4366
5255
|
export type RecordUpdateSubscriptionVariables = Exact<{
|
|
@@ -4785,6 +5674,30 @@ export type RecordUpdateSubscription = {
|
|
|
4785
5674
|
}>;
|
|
4786
5675
|
};
|
|
4787
5676
|
};
|
|
5677
|
+
export type GetRecordsFromLibraryQueryVariables = Exact<{
|
|
5678
|
+
libraryId: Scalars['ID'];
|
|
5679
|
+
pagination?: InputMaybe<RecordsPagination>;
|
|
5680
|
+
filters?: InputMaybe<Array<InputMaybe<RecordFilterInput>> | InputMaybe<RecordFilterInput>>;
|
|
5681
|
+
}>;
|
|
5682
|
+
export type GetRecordsFromLibraryQuery = {
|
|
5683
|
+
records: {
|
|
5684
|
+
totalCount?: number | null;
|
|
5685
|
+
list: Array<{
|
|
5686
|
+
id: string;
|
|
5687
|
+
whoAmI: {
|
|
5688
|
+
id: string;
|
|
5689
|
+
label?: string | null;
|
|
5690
|
+
subLabel?: string | null;
|
|
5691
|
+
color?: string | null;
|
|
5692
|
+
preview?: IPreviewScalar | null;
|
|
5693
|
+
library: {
|
|
5694
|
+
id: string;
|
|
5695
|
+
label?: any | null;
|
|
5696
|
+
};
|
|
5697
|
+
};
|
|
5698
|
+
}>;
|
|
5699
|
+
};
|
|
5700
|
+
};
|
|
4788
5701
|
export type IndexRecordsMutationVariables = Exact<{
|
|
4789
5702
|
libraryId: Scalars['String'];
|
|
4790
5703
|
records?: InputMaybe<Array<Scalars['String']> | Scalars['String']>;
|
|
@@ -6089,6 +7002,65 @@ export type SaveViewMutation = {
|
|
|
6089
7002
|
}> | null;
|
|
6090
7003
|
};
|
|
6091
7004
|
};
|
|
7005
|
+
export type GetAttributesByLibWithPermissionsQueryVariables = Exact<{
|
|
7006
|
+
library: Scalars['String'];
|
|
7007
|
+
}>;
|
|
7008
|
+
export type GetAttributesByLibWithPermissionsQuery = {
|
|
7009
|
+
attributes?: {
|
|
7010
|
+
list: Array<{
|
|
7011
|
+
id: string;
|
|
7012
|
+
type: AttributeType;
|
|
7013
|
+
format?: AttributeFormat | null;
|
|
7014
|
+
label?: any | null;
|
|
7015
|
+
multiple_values: boolean;
|
|
7016
|
+
system: boolean;
|
|
7017
|
+
readonly: boolean;
|
|
7018
|
+
linked_library?: {
|
|
7019
|
+
id: string;
|
|
7020
|
+
} | null;
|
|
7021
|
+
permissions: {
|
|
7022
|
+
access_attribute: boolean;
|
|
7023
|
+
};
|
|
7024
|
+
} | {
|
|
7025
|
+
id: string;
|
|
7026
|
+
type: AttributeType;
|
|
7027
|
+
format?: AttributeFormat | null;
|
|
7028
|
+
label?: any | null;
|
|
7029
|
+
multiple_values: boolean;
|
|
7030
|
+
system: boolean;
|
|
7031
|
+
readonly: boolean;
|
|
7032
|
+
embedded_fields?: Array<{
|
|
7033
|
+
id: string;
|
|
7034
|
+
format?: AttributeFormat | null;
|
|
7035
|
+
label?: any | null;
|
|
7036
|
+
} | null> | null;
|
|
7037
|
+
permissions: {
|
|
7038
|
+
access_attribute: boolean;
|
|
7039
|
+
};
|
|
7040
|
+
} | {
|
|
7041
|
+
id: string;
|
|
7042
|
+
type: AttributeType;
|
|
7043
|
+
format?: AttributeFormat | null;
|
|
7044
|
+
label?: any | null;
|
|
7045
|
+
multiple_values: boolean;
|
|
7046
|
+
system: boolean;
|
|
7047
|
+
readonly: boolean;
|
|
7048
|
+
linked_tree?: {
|
|
7049
|
+
id: string;
|
|
7050
|
+
label?: any | null;
|
|
7051
|
+
libraries: Array<{
|
|
7052
|
+
library: {
|
|
7053
|
+
id: string;
|
|
7054
|
+
label?: any | null;
|
|
7055
|
+
};
|
|
7056
|
+
}>;
|
|
7057
|
+
} | null;
|
|
7058
|
+
permissions: {
|
|
7059
|
+
access_attribute: boolean;
|
|
7060
|
+
};
|
|
7061
|
+
}>;
|
|
7062
|
+
} | null;
|
|
7063
|
+
};
|
|
6092
7064
|
export type ExplorerAttributesQueryVariables = Exact<{
|
|
6093
7065
|
ids?: InputMaybe<Array<Scalars['ID']> | Scalars['ID']>;
|
|
6094
7066
|
}>;
|
|
@@ -6103,11 +7075,17 @@ export type ExplorerAttributesQuery = {
|
|
|
6103
7075
|
id: string;
|
|
6104
7076
|
label?: any | null;
|
|
6105
7077
|
} | null;
|
|
7078
|
+
permissions: {
|
|
7079
|
+
access_attribute: boolean;
|
|
7080
|
+
};
|
|
6106
7081
|
} | {
|
|
6107
7082
|
id: string;
|
|
6108
7083
|
type: AttributeType;
|
|
6109
7084
|
format?: AttributeFormat | null;
|
|
6110
7085
|
label?: any | null;
|
|
7086
|
+
permissions: {
|
|
7087
|
+
access_attribute: boolean;
|
|
7088
|
+
};
|
|
6111
7089
|
}>;
|
|
6112
7090
|
} | null;
|
|
6113
7091
|
};
|
|
@@ -6124,9 +7102,17 @@ export type ExplorerLinkAttributeQuery = {
|
|
|
6124
7102
|
id: string;
|
|
6125
7103
|
label?: any | null;
|
|
6126
7104
|
} | null;
|
|
7105
|
+
permissions: {
|
|
7106
|
+
access_attribute: boolean;
|
|
7107
|
+
edit_value: boolean;
|
|
7108
|
+
};
|
|
6127
7109
|
} | {
|
|
6128
7110
|
id: string;
|
|
6129
7111
|
multiple_values: boolean;
|
|
7112
|
+
permissions: {
|
|
7113
|
+
access_attribute: boolean;
|
|
7114
|
+
edit_value: boolean;
|
|
7115
|
+
};
|
|
6130
7116
|
}>;
|
|
6131
7117
|
} | null;
|
|
6132
7118
|
};
|
|
@@ -6143,6 +7129,7 @@ export type ExplorerLibraryDataQuery = {
|
|
|
6143
7129
|
totalCount?: number | null;
|
|
6144
7130
|
list: Array<{
|
|
6145
7131
|
id: string;
|
|
7132
|
+
active: boolean;
|
|
6146
7133
|
whoAmI: {
|
|
6147
7134
|
id: string;
|
|
6148
7135
|
label?: string | null;
|
|
@@ -6154,6 +7141,10 @@ export type ExplorerLibraryDataQuery = {
|
|
|
6154
7141
|
label?: any | null;
|
|
6155
7142
|
};
|
|
6156
7143
|
};
|
|
7144
|
+
permissions: {
|
|
7145
|
+
create_record: boolean;
|
|
7146
|
+
delete_record: boolean;
|
|
7147
|
+
};
|
|
6157
7148
|
properties: Array<{
|
|
6158
7149
|
attributeId: string;
|
|
6159
7150
|
attributeProperties: {
|
|
@@ -6162,6 +7153,7 @@ export type ExplorerLibraryDataQuery = {
|
|
|
6162
7153
|
type: AttributeType;
|
|
6163
7154
|
format?: AttributeFormat | null;
|
|
6164
7155
|
multiple_values: boolean;
|
|
7156
|
+
multi_link_display_option?: MultiLinkDisplayOption | null;
|
|
6165
7157
|
};
|
|
6166
7158
|
values: Array<{
|
|
6167
7159
|
linkPayload?: {
|
|
@@ -6242,6 +7234,7 @@ export type ExplorerLinkDataQuery = {
|
|
|
6242
7234
|
type: AttributeType;
|
|
6243
7235
|
format?: AttributeFormat | null;
|
|
6244
7236
|
multiple_values: boolean;
|
|
7237
|
+
multi_link_display_option?: MultiLinkDisplayOption | null;
|
|
6245
7238
|
};
|
|
6246
7239
|
values: Array<{
|
|
6247
7240
|
linkPayload?: {
|
|
@@ -6308,15 +7301,24 @@ export type GetLibraryAttributesQuery = {
|
|
|
6308
7301
|
label?: any | null;
|
|
6309
7302
|
}> | null;
|
|
6310
7303
|
} | null;
|
|
7304
|
+
permissions: {
|
|
7305
|
+
access_attribute: boolean;
|
|
7306
|
+
};
|
|
6311
7307
|
} | {
|
|
6312
7308
|
format?: AttributeFormat | null;
|
|
6313
7309
|
id: string;
|
|
6314
7310
|
type: AttributeType;
|
|
6315
7311
|
label?: any | null;
|
|
7312
|
+
permissions: {
|
|
7313
|
+
access_attribute: boolean;
|
|
7314
|
+
};
|
|
6316
7315
|
} | {
|
|
6317
7316
|
id: string;
|
|
6318
7317
|
type: AttributeType;
|
|
6319
7318
|
label?: any | null;
|
|
7319
|
+
permissions: {
|
|
7320
|
+
access_attribute: boolean;
|
|
7321
|
+
};
|
|
6320
7322
|
}> | null;
|
|
6321
7323
|
}>;
|
|
6322
7324
|
} | null;
|
|
@@ -6421,6 +7423,23 @@ export type UpdateViewMutation = {
|
|
|
6421
7423
|
}> | null;
|
|
6422
7424
|
};
|
|
6423
7425
|
};
|
|
7426
|
+
export type GetJoinLibraryMandatoryAttributeValuesQueryVariables = Exact<{
|
|
7427
|
+
joinLibraryId: Scalars['ID'];
|
|
7428
|
+
filters?: InputMaybe<Array<InputMaybe<RecordFilterInput>> | InputMaybe<RecordFilterInput>>;
|
|
7429
|
+
mandatoryAttributeId: Scalars['ID'];
|
|
7430
|
+
}>;
|
|
7431
|
+
export type GetJoinLibraryMandatoryAttributeValuesQuery = {
|
|
7432
|
+
records: {
|
|
7433
|
+
list: Array<{
|
|
7434
|
+
id: string;
|
|
7435
|
+
property: Array<{
|
|
7436
|
+
payload?: {
|
|
7437
|
+
id: string;
|
|
7438
|
+
} | null;
|
|
7439
|
+
}>;
|
|
7440
|
+
}>;
|
|
7441
|
+
};
|
|
7442
|
+
};
|
|
6424
7443
|
export type TreeDataQueryQueryVariables = Exact<{
|
|
6425
7444
|
treeId: Scalars['ID'];
|
|
6426
7445
|
}>;
|
|
@@ -6446,12 +7465,15 @@ export declare const ValuesVersionDetailsFragmentDoc: Apollo.DocumentNode;
|
|
|
6446
7465
|
export declare const ValueDetailsFragmentDoc: Apollo.DocumentNode;
|
|
6447
7466
|
export declare const StandardValuesListFragmentFragmentDoc: Apollo.DocumentNode;
|
|
6448
7467
|
export declare const RecordFormAttributeFragmentDoc: Apollo.DocumentNode;
|
|
7468
|
+
export declare const JoinLibraryContextFragmentDoc: Apollo.DocumentNode;
|
|
6449
7469
|
export declare const RecordFormElementFragmentDoc: Apollo.DocumentNode;
|
|
6450
7470
|
export declare const TreeLightFragmentDoc: Apollo.DocumentNode;
|
|
6451
7471
|
export declare const TreeDetailsFragmentDoc: Apollo.DocumentNode;
|
|
6452
7472
|
export declare const TreeNodeChildFragmentDoc: Apollo.DocumentNode;
|
|
6453
7473
|
export declare const ViewDetailsFilterFragmentDoc: Apollo.DocumentNode;
|
|
6454
7474
|
export declare const ViewDetailsFragmentDoc: Apollo.DocumentNode;
|
|
7475
|
+
export declare const AttributesByLibLinkAttributeWithPermissionsFragmentDoc: Apollo.DocumentNode;
|
|
7476
|
+
export declare const AttributesByLibAttributeWithPermissionsFragmentDoc: Apollo.DocumentNode;
|
|
6455
7477
|
export declare const LinkAttributeDetailsFragmentDoc: Apollo.DocumentNode;
|
|
6456
7478
|
export declare const AttributePropertiesFragmentDoc: Apollo.DocumentNode;
|
|
6457
7479
|
export declare const PropertyValueFragmentDoc: Apollo.DocumentNode;
|
|
@@ -7195,6 +8217,35 @@ export declare function useIsAllowedLazyQuery(baseOptions?: Apollo.LazyQueryHook
|
|
|
7195
8217
|
export type IsAllowedQueryHookResult = ReturnType<typeof useIsAllowedQuery>;
|
|
7196
8218
|
export type IsAllowedLazyQueryHookResult = ReturnType<typeof useIsAllowedLazyQuery>;
|
|
7197
8219
|
export type IsAllowedQueryResult = Apollo.QueryResult<IsAllowedQuery, IsAllowedQueryVariables>;
|
|
8220
|
+
export declare const ActivateRecordsDocument: Apollo.DocumentNode;
|
|
8221
|
+
export type ActivateRecordsMutationFn = Apollo.MutationFunction<ActivateRecordsMutation, ActivateRecordsMutationVariables>;
|
|
8222
|
+
/**
|
|
8223
|
+
* __useActivateRecordsMutation__
|
|
8224
|
+
*
|
|
8225
|
+
* To run a mutation, you first call `useActivateRecordsMutation` within a React component and pass it any options that fit your needs.
|
|
8226
|
+
* When your component renders, `useActivateRecordsMutation` returns a tuple that includes:
|
|
8227
|
+
* - A mutate function that you can call at any time to execute the mutation
|
|
8228
|
+
* - An object with fields that represent the current status of the mutation's execution
|
|
8229
|
+
*
|
|
8230
|
+
* @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;
|
|
8231
|
+
*
|
|
8232
|
+
* @example
|
|
8233
|
+
* const [activateRecordsMutation, { data, loading, error }] = useActivateRecordsMutation({
|
|
8234
|
+
* variables: {
|
|
8235
|
+
* libraryId: // value for 'libraryId'
|
|
8236
|
+
* recordsIds: // value for 'recordsIds'
|
|
8237
|
+
* filters: // value for 'filters'
|
|
8238
|
+
* },
|
|
8239
|
+
* });
|
|
8240
|
+
*/
|
|
8241
|
+
export declare function useActivateRecordsMutation(baseOptions?: Apollo.MutationHookOptions<ActivateRecordsMutation, ActivateRecordsMutationVariables>): Apollo.MutationTuple<ActivateRecordsMutation, Exact<{
|
|
8242
|
+
libraryId: Scalars["String"];
|
|
8243
|
+
recordsIds?: InputMaybe<Array<Scalars["String"]> | Scalars["String"]>;
|
|
8244
|
+
filters?: InputMaybe<Array<RecordFilterInput> | RecordFilterInput>;
|
|
8245
|
+
}>, Apollo.DefaultContext, Apollo.ApolloCache<any>>;
|
|
8246
|
+
export type ActivateRecordsMutationHookResult = ReturnType<typeof useActivateRecordsMutation>;
|
|
8247
|
+
export type ActivateRecordsMutationResult = Apollo.MutationResult<ActivateRecordsMutation>;
|
|
8248
|
+
export type ActivateRecordsMutationOptions = Apollo.BaseMutationOptions<ActivateRecordsMutation, ActivateRecordsMutationVariables>;
|
|
7198
8249
|
export declare const CreateRecordDocument: Apollo.DocumentNode;
|
|
7199
8250
|
export type CreateRecordMutationFn = Apollo.MutationFunction<CreateRecordMutation, CreateRecordMutationVariables>;
|
|
7200
8251
|
/**
|
|
@@ -7372,6 +8423,38 @@ export declare function useRecordUpdateSubscription(baseOptions?: Apollo.Subscri
|
|
|
7372
8423
|
}>>;
|
|
7373
8424
|
export type RecordUpdateSubscriptionHookResult = ReturnType<typeof useRecordUpdateSubscription>;
|
|
7374
8425
|
export type RecordUpdateSubscriptionResult = Apollo.SubscriptionResult<RecordUpdateSubscription>;
|
|
8426
|
+
export declare const GetRecordsFromLibraryDocument: Apollo.DocumentNode;
|
|
8427
|
+
/**
|
|
8428
|
+
* __useGetRecordsFromLibraryQuery__
|
|
8429
|
+
*
|
|
8430
|
+
* To run a query within a React component, call `useGetRecordsFromLibraryQuery` and pass it any options that fit your needs.
|
|
8431
|
+
* When your component renders, `useGetRecordsFromLibraryQuery` returns an object from Apollo Client that contains loading, error, and data properties
|
|
8432
|
+
* you can use to render your UI.
|
|
8433
|
+
*
|
|
8434
|
+
* @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;
|
|
8435
|
+
*
|
|
8436
|
+
* @example
|
|
8437
|
+
* const { data, loading, error } = useGetRecordsFromLibraryQuery({
|
|
8438
|
+
* variables: {
|
|
8439
|
+
* libraryId: // value for 'libraryId'
|
|
8440
|
+
* pagination: // value for 'pagination'
|
|
8441
|
+
* filters: // value for 'filters'
|
|
8442
|
+
* },
|
|
8443
|
+
* });
|
|
8444
|
+
*/
|
|
8445
|
+
export declare function useGetRecordsFromLibraryQuery(baseOptions: Apollo.QueryHookOptions<GetRecordsFromLibraryQuery, GetRecordsFromLibraryQueryVariables>): Apollo.QueryResult<GetRecordsFromLibraryQuery, Exact<{
|
|
8446
|
+
libraryId: Scalars["ID"];
|
|
8447
|
+
pagination?: InputMaybe<RecordsPagination>;
|
|
8448
|
+
filters?: InputMaybe<Array<InputMaybe<RecordFilterInput>> | InputMaybe<RecordFilterInput>>;
|
|
8449
|
+
}>>;
|
|
8450
|
+
export declare function useGetRecordsFromLibraryLazyQuery(baseOptions?: Apollo.LazyQueryHookOptions<GetRecordsFromLibraryQuery, GetRecordsFromLibraryQueryVariables>): Apollo.LazyQueryResultTuple<GetRecordsFromLibraryQuery, Exact<{
|
|
8451
|
+
libraryId: Scalars["ID"];
|
|
8452
|
+
pagination?: InputMaybe<RecordsPagination>;
|
|
8453
|
+
filters?: InputMaybe<Array<InputMaybe<RecordFilterInput>> | InputMaybe<RecordFilterInput>>;
|
|
8454
|
+
}>>;
|
|
8455
|
+
export type GetRecordsFromLibraryQueryHookResult = ReturnType<typeof useGetRecordsFromLibraryQuery>;
|
|
8456
|
+
export type GetRecordsFromLibraryLazyQueryHookResult = ReturnType<typeof useGetRecordsFromLibraryLazyQuery>;
|
|
8457
|
+
export type GetRecordsFromLibraryQueryResult = Apollo.QueryResult<GetRecordsFromLibraryQuery, GetRecordsFromLibraryQueryVariables>;
|
|
7375
8458
|
export declare const IndexRecordsDocument: Apollo.DocumentNode;
|
|
7376
8459
|
export type IndexRecordsMutationFn = Apollo.MutationFunction<IndexRecordsMutation, IndexRecordsMutationVariables>;
|
|
7377
8460
|
/**
|
|
@@ -7868,6 +8951,32 @@ export declare function useSaveViewMutation(baseOptions?: Apollo.MutationHookOpt
|
|
|
7868
8951
|
export type SaveViewMutationHookResult = ReturnType<typeof useSaveViewMutation>;
|
|
7869
8952
|
export type SaveViewMutationResult = Apollo.MutationResult<SaveViewMutation>;
|
|
7870
8953
|
export type SaveViewMutationOptions = Apollo.BaseMutationOptions<SaveViewMutation, SaveViewMutationVariables>;
|
|
8954
|
+
export declare const GetAttributesByLibWithPermissionsDocument: Apollo.DocumentNode;
|
|
8955
|
+
/**
|
|
8956
|
+
* __useGetAttributesByLibWithPermissionsQuery__
|
|
8957
|
+
*
|
|
8958
|
+
* To run a query within a React component, call `useGetAttributesByLibWithPermissionsQuery` and pass it any options that fit your needs.
|
|
8959
|
+
* When your component renders, `useGetAttributesByLibWithPermissionsQuery` returns an object from Apollo Client that contains loading, error, and data properties
|
|
8960
|
+
* you can use to render your UI.
|
|
8961
|
+
*
|
|
8962
|
+
* @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;
|
|
8963
|
+
*
|
|
8964
|
+
* @example
|
|
8965
|
+
* const { data, loading, error } = useGetAttributesByLibWithPermissionsQuery({
|
|
8966
|
+
* variables: {
|
|
8967
|
+
* library: // value for 'library'
|
|
8968
|
+
* },
|
|
8969
|
+
* });
|
|
8970
|
+
*/
|
|
8971
|
+
export declare function useGetAttributesByLibWithPermissionsQuery(baseOptions: Apollo.QueryHookOptions<GetAttributesByLibWithPermissionsQuery, GetAttributesByLibWithPermissionsQueryVariables>): Apollo.QueryResult<GetAttributesByLibWithPermissionsQuery, Exact<{
|
|
8972
|
+
library: Scalars["String"];
|
|
8973
|
+
}>>;
|
|
8974
|
+
export declare function useGetAttributesByLibWithPermissionsLazyQuery(baseOptions?: Apollo.LazyQueryHookOptions<GetAttributesByLibWithPermissionsQuery, GetAttributesByLibWithPermissionsQueryVariables>): Apollo.LazyQueryResultTuple<GetAttributesByLibWithPermissionsQuery, Exact<{
|
|
8975
|
+
library: Scalars["String"];
|
|
8976
|
+
}>>;
|
|
8977
|
+
export type GetAttributesByLibWithPermissionsQueryHookResult = ReturnType<typeof useGetAttributesByLibWithPermissionsQuery>;
|
|
8978
|
+
export type GetAttributesByLibWithPermissionsLazyQueryHookResult = ReturnType<typeof useGetAttributesByLibWithPermissionsLazyQuery>;
|
|
8979
|
+
export type GetAttributesByLibWithPermissionsQueryResult = Apollo.QueryResult<GetAttributesByLibWithPermissionsQuery, GetAttributesByLibWithPermissionsQueryVariables>;
|
|
7871
8980
|
export declare const ExplorerAttributesDocument: Apollo.DocumentNode;
|
|
7872
8981
|
/**
|
|
7873
8982
|
* __useExplorerAttributesQuery__
|
|
@@ -8127,6 +9236,38 @@ export declare function useUpdateViewMutation(baseOptions?: Apollo.MutationHookO
|
|
|
8127
9236
|
export type UpdateViewMutationHookResult = ReturnType<typeof useUpdateViewMutation>;
|
|
8128
9237
|
export type UpdateViewMutationResult = Apollo.MutationResult<UpdateViewMutation>;
|
|
8129
9238
|
export type UpdateViewMutationOptions = Apollo.BaseMutationOptions<UpdateViewMutation, UpdateViewMutationVariables>;
|
|
9239
|
+
export declare const GetJoinLibraryMandatoryAttributeValuesDocument: Apollo.DocumentNode;
|
|
9240
|
+
/**
|
|
9241
|
+
* __useGetJoinLibraryMandatoryAttributeValuesQuery__
|
|
9242
|
+
*
|
|
9243
|
+
* To run a query within a React component, call `useGetJoinLibraryMandatoryAttributeValuesQuery` and pass it any options that fit your needs.
|
|
9244
|
+
* When your component renders, `useGetJoinLibraryMandatoryAttributeValuesQuery` returns an object from Apollo Client that contains loading, error, and data properties
|
|
9245
|
+
* you can use to render your UI.
|
|
9246
|
+
*
|
|
9247
|
+
* @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;
|
|
9248
|
+
*
|
|
9249
|
+
* @example
|
|
9250
|
+
* const { data, loading, error } = useGetJoinLibraryMandatoryAttributeValuesQuery({
|
|
9251
|
+
* variables: {
|
|
9252
|
+
* joinLibraryId: // value for 'joinLibraryId'
|
|
9253
|
+
* filters: // value for 'filters'
|
|
9254
|
+
* mandatoryAttributeId: // value for 'mandatoryAttributeId'
|
|
9255
|
+
* },
|
|
9256
|
+
* });
|
|
9257
|
+
*/
|
|
9258
|
+
export declare function useGetJoinLibraryMandatoryAttributeValuesQuery(baseOptions: Apollo.QueryHookOptions<GetJoinLibraryMandatoryAttributeValuesQuery, GetJoinLibraryMandatoryAttributeValuesQueryVariables>): Apollo.QueryResult<GetJoinLibraryMandatoryAttributeValuesQuery, Exact<{
|
|
9259
|
+
joinLibraryId: Scalars["ID"];
|
|
9260
|
+
filters?: InputMaybe<Array<InputMaybe<RecordFilterInput>> | InputMaybe<RecordFilterInput>>;
|
|
9261
|
+
mandatoryAttributeId: Scalars["ID"];
|
|
9262
|
+
}>>;
|
|
9263
|
+
export declare function useGetJoinLibraryMandatoryAttributeValuesLazyQuery(baseOptions?: Apollo.LazyQueryHookOptions<GetJoinLibraryMandatoryAttributeValuesQuery, GetJoinLibraryMandatoryAttributeValuesQueryVariables>): Apollo.LazyQueryResultTuple<GetJoinLibraryMandatoryAttributeValuesQuery, Exact<{
|
|
9264
|
+
joinLibraryId: Scalars["ID"];
|
|
9265
|
+
filters?: InputMaybe<Array<InputMaybe<RecordFilterInput>> | InputMaybe<RecordFilterInput>>;
|
|
9266
|
+
mandatoryAttributeId: Scalars["ID"];
|
|
9267
|
+
}>>;
|
|
9268
|
+
export type GetJoinLibraryMandatoryAttributeValuesQueryHookResult = ReturnType<typeof useGetJoinLibraryMandatoryAttributeValuesQuery>;
|
|
9269
|
+
export type GetJoinLibraryMandatoryAttributeValuesLazyQueryHookResult = ReturnType<typeof useGetJoinLibraryMandatoryAttributeValuesLazyQuery>;
|
|
9270
|
+
export type GetJoinLibraryMandatoryAttributeValuesQueryResult = Apollo.QueryResult<GetJoinLibraryMandatoryAttributeValuesQuery, GetJoinLibraryMandatoryAttributeValuesQueryVariables>;
|
|
8130
9271
|
export declare const TreeDataQueryDocument: Apollo.DocumentNode;
|
|
8131
9272
|
/**
|
|
8132
9273
|
* __useTreeDataQueryQuery__
|