@leav/ui 1.6.0 → 1.7.0-143193eb
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 +13 -12
- package/dist/__mocks__/common/library.d.ts +1 -0
- package/dist/__mocks__/react-i18next.d.ts +1 -1
- package/dist/_gqlTypes/index.d.ts +1128 -713
- package/dist/_gqlTypes/index.js +233 -75
- package/dist/_gqlTypes/index.js.map +1 -1
- package/dist/_queries/attributes/attributeDetailsFragment.js +5 -0
- package/dist/_queries/attributes/attributeDetailsFragment.js.map +1 -1
- package/dist/_queries/attributes/getAttributeWithEmbeddedFields.d.ts +1 -1
- package/dist/_queries/libraries/libraryDetailsFragment.js +1 -0
- package/dist/_queries/libraries/libraryDetailsFragment.js.map +1 -1
- package/dist/_queries/trees/treeNodeChildrenQuery.js +2 -0
- package/dist/_queries/trees/treeNodeChildrenQuery.js.map +1 -1
- package/dist/_queries/views/viewDetailsFragment.js +1 -0
- package/dist/_queries/views/viewDetailsFragment.js.map +1 -1
- package/dist/components/AttributePicker/AttributesList/AttributesList.js +3 -7
- package/dist/components/AttributePicker/AttributesList/AttributesList.js.map +1 -1
- package/dist/components/AttributesSelectionList/SelectedAttributesList/SelectedAttributesList.js +20 -12
- package/dist/components/AttributesSelectionList/SelectedAttributesList/SelectedAttributesList.js.map +1 -1
- package/dist/components/AttributesSelectionList/reducer/__mocks__/attributesSelectionListStateContext.d.ts +1 -1
- package/dist/components/AttributesSelectionList/sharedComponents.d.ts +159 -153
- package/dist/components/EditLibraryModal/EditLibrary/EditLibraryAttributes/AttributesList/AttributesList.js +3 -7
- package/dist/components/EditLibraryModal/EditLibrary/EditLibraryAttributes/AttributesList/AttributesList.js.map +1 -1
- package/dist/components/Explorer/DataView.d.ts +2 -0
- package/dist/components/Explorer/DataView.js +6 -3
- package/dist/components/Explorer/DataView.js.map +1 -1
- package/dist/components/Explorer/Explorer.d.ts +2 -0
- package/dist/components/Explorer/Explorer.js +7 -5
- package/dist/components/Explorer/Explorer.js.map +1 -1
- package/dist/components/Explorer/ExplorerFiltersAndSorts.js +1 -1
- package/dist/components/Explorer/ExplorerFiltersAndSorts.js.map +1 -1
- package/dist/components/Explorer/TableCell.js +15 -23
- package/dist/components/Explorer/TableCell.js.map +1 -1
- package/dist/components/Explorer/TableNameCell.js +3 -2
- package/dist/components/Explorer/TableNameCell.js.map +1 -1
- package/dist/components/Explorer/_queries/useExplorerData.d.ts +7 -7
- package/dist/components/Explorer/_queries/useExplorerData.js +19 -7
- package/dist/components/Explorer/_queries/useExplorerData.js.map +1 -1
- package/dist/components/Explorer/actions-item/useEditStatusItemAction.js +3 -2
- package/dist/components/Explorer/actions-item/useEditStatusItemAction.js.map +1 -1
- package/dist/components/Explorer/actions-item/useReplaceItemAction.d.ts +2 -1
- package/dist/components/Explorer/actions-item/useReplaceItemAction.js +5 -4
- package/dist/components/Explorer/actions-item/useReplaceItemAction.js.map +1 -1
- package/dist/components/Explorer/actions-mass/edit-attribute/EditTreeAttributeValueLine.d.ts +2 -4
- package/dist/components/Explorer/actions-mass/edit-attribute/EditTreeAttributeValueLine.js +18 -16
- package/dist/components/Explorer/actions-mass/edit-attribute/EditTreeAttributeValueLine.js.map +1 -1
- package/dist/components/Explorer/actions-mass/edit-attribute/EditTreeAttributeValuesMapping.js +2 -2
- package/dist/components/Explorer/actions-mass/edit-attribute/EditTreeAttributeValuesMapping.js.map +1 -1
- package/dist/components/Explorer/actions-mass/edit-attribute/useListEditableAttributeHook.js +9 -1
- package/dist/components/Explorer/actions-mass/edit-attribute/useListEditableAttributeHook.js.map +1 -1
- package/dist/components/Explorer/actions-mass/edit-attribute/useListTreeAttributeValuesHook.d.ts +10 -3
- package/dist/components/Explorer/actions-mass/edit-attribute/useListTreeAttributeValuesHook.js +16 -6
- package/dist/components/Explorer/actions-mass/edit-attribute/useListTreeAttributeValuesHook.js.map +1 -1
- package/dist/components/Explorer/actions-mass/export/ExportProfileSelectionModal.d.ts +10 -0
- package/dist/components/Explorer/actions-mass/export/ExportProfileSelectionModal.js +46 -0
- package/dist/components/Explorer/actions-mass/export/ExportProfileSelectionModal.js.map +1 -0
- package/dist/components/Explorer/actions-mass/export/content/NoProfiles.d.ts +1 -0
- package/dist/components/Explorer/actions-mass/export/content/NoProfiles.js +17 -0
- package/dist/components/Explorer/actions-mass/export/content/NoProfiles.js.map +1 -0
- package/dist/components/Explorer/actions-mass/export/content/ProfilesSelection.d.ts +8 -0
- package/dist/components/Explorer/actions-mass/export/content/ProfilesSelection.js +49 -0
- package/dist/components/Explorer/actions-mass/export/content/ProfilesSelection.js.map +1 -0
- package/dist/components/Explorer/actions-mass/export/useGetLibraryExportProfiles.d.ts +27 -0
- package/dist/components/Explorer/actions-mass/export/useGetLibraryExportProfiles.js +48 -0
- package/dist/components/Explorer/actions-mass/export/useGetLibraryExportProfiles.js.map +1 -0
- package/dist/components/Explorer/actions-mass/useDeactivateMassAction.js +3 -2
- package/dist/components/Explorer/actions-mass/useDeactivateMassAction.js.map +1 -1
- package/dist/components/Explorer/actions-mass/useDeleteLinkValues.js +3 -2
- package/dist/components/Explorer/actions-mass/useDeleteLinkValues.js.map +1 -1
- package/dist/components/Explorer/actions-mass/useEditAttributeMassAction.js +3 -2
- package/dist/components/Explorer/actions-mass/useEditAttributeMassAction.js.map +1 -1
- package/dist/components/Explorer/actions-mass/useExportMassAction.d.ts +7 -4
- package/dist/components/Explorer/actions-mass/useExportMassAction.js +80 -73
- package/dist/components/Explorer/actions-mass/useExportMassAction.js.map +1 -1
- package/dist/components/Explorer/actions-mass/useMassActions.js +3 -2
- package/dist/components/Explorer/actions-mass/useMassActions.js.map +1 -1
- package/dist/components/Explorer/actions-primary/useCreatePrimaryAction.js +3 -2
- package/dist/components/Explorer/actions-primary/useCreatePrimaryAction.js.map +1 -1
- package/dist/components/Explorer/actions-primary/useLinkPrimaryAction.d.ts +2 -1
- package/dist/components/Explorer/actions-primary/useLinkPrimaryAction.js +5 -4
- package/dist/components/Explorer/actions-primary/useLinkPrimaryAction.js.map +1 -1
- package/dist/components/Explorer/link-item/LinkModal.d.ts +1 -0
- package/dist/components/Explorer/link-item/LinkModal.js +2 -2
- package/dist/components/Explorer/link-item/LinkModal.js.map +1 -1
- package/dist/components/Explorer/list-saved-views/SavedViews.js +4 -3
- package/dist/components/Explorer/list-saved-views/SavedViews.js.map +1 -1
- package/dist/components/Explorer/manage-view-settings/_shared/ColumnItem.js +5 -8
- package/dist/components/Explorer/manage-view-settings/_shared/ColumnItem.js.map +1 -1
- package/dist/components/Explorer/manage-view-settings/configure-display/attributes/SelectVisibleAttributes.js +3 -2
- package/dist/components/Explorer/manage-view-settings/configure-display/attributes/SelectVisibleAttributes.js.map +1 -1
- package/dist/components/Explorer/manage-view-settings/configure-display/view-type/SelectViewType.js +2 -2
- package/dist/components/Explorer/manage-view-settings/configure-display/view-type/SelectViewType.js.map +1 -1
- package/dist/components/Explorer/manage-view-settings/filter-items/FilterItems.js +7 -6
- package/dist/components/Explorer/manage-view-settings/filter-items/FilterItems.js.map +1 -1
- package/dist/components/Explorer/manage-view-settings/filter-items/FilterListItem.js +3 -2
- package/dist/components/Explorer/manage-view-settings/filter-items/FilterListItem.js.map +1 -1
- package/dist/components/Explorer/manage-view-settings/open-view-settings/useOpenViewSettings.js +5 -4
- package/dist/components/Explorer/manage-view-settings/open-view-settings/useOpenViewSettings.js.map +1 -1
- package/dist/components/Explorer/manage-view-settings/router-menu/SettingItem.js +3 -2
- package/dist/components/Explorer/manage-view-settings/router-menu/SettingItem.js.map +1 -1
- package/dist/components/Explorer/manage-view-settings/router-menu/SettingsPanel.js +3 -2
- 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 +3 -2
- package/dist/components/Explorer/manage-view-settings/save-view/LabelViewFormModal.js.map +1 -1
- package/dist/components/Explorer/manage-view-settings/save-view/prepareViewForRequest.js +3 -0
- package/dist/components/Explorer/manage-view-settings/save-view/prepareViewForRequest.js.map +1 -1
- package/dist/components/Explorer/manage-view-settings/save-view/useCreateNewView.js +3 -2
- package/dist/components/Explorer/manage-view-settings/save-view/useCreateNewView.js.map +1 -1
- package/dist/components/Explorer/manage-view-settings/save-view/useDeleteView.js +4 -3
- package/dist/components/Explorer/manage-view-settings/save-view/useDeleteView.js.map +1 -1
- package/dist/components/Explorer/manage-view-settings/save-view/useEditLabelView.js +3 -2
- package/dist/components/Explorer/manage-view-settings/save-view/useEditLabelView.js.map +1 -1
- package/dist/components/Explorer/manage-view-settings/save-view/useResetView.js +3 -2
- 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 +3 -2
- package/dist/components/Explorer/manage-view-settings/save-view/useShareView.js.map +1 -1
- package/dist/components/Explorer/manage-view-settings/save-view/useUpdateView.js +3 -2
- package/dist/components/Explorer/manage-view-settings/save-view/useUpdateView.js.map +1 -1
- package/dist/components/Explorer/manage-view-settings/sort-items/SortItems.js +7 -6
- package/dist/components/Explorer/manage-view-settings/sort-items/SortItems.js.map +1 -1
- package/dist/components/Explorer/manage-view-settings/sort-items/SortListItem.js +3 -2
- package/dist/components/Explorer/manage-view-settings/sort-items/SortListItem.js.map +1 -1
- package/dist/components/Explorer/manage-view-settings/store-view-settings/viewSettingsReducer.js.map +1 -1
- package/dist/components/Explorer/useSearchInput.js +6 -2
- package/dist/components/Explorer/useSearchInput.js.map +1 -1
- package/dist/components/Filters/FiltersProvider.d.ts +2 -2
- package/dist/components/Filters/FiltersProvider.js.map +1 -1
- package/dist/components/Filters/_types.d.ts +3 -0
- package/dist/components/Filters/_types.js.map +1 -1
- package/dist/components/Filters/context/filtersReducer.js +7 -4
- package/dist/components/Filters/context/filtersReducer.js.map +1 -1
- package/dist/components/Filters/context/useGetTreeFilters.d.ts +8 -6
- package/dist/components/Filters/context/useGetTreeFilters.js +41 -18
- package/dist/components/Filters/context/useGetTreeFilters.js.map +1 -1
- package/dist/components/Filters/filter-items/CommonFilterItem.d.ts +1 -0
- package/dist/components/Filters/filter-items/CommonFilterItem.js +29 -9
- package/dist/components/Filters/filter-items/CommonFilterItem.js.map +1 -1
- package/dist/components/Filters/filter-items/EmptyValueCheckbox.d.ts +8 -0
- package/dist/components/Filters/filter-items/EmptyValueCheckbox.js +16 -0
- package/dist/components/Filters/filter-items/EmptyValueCheckbox.js.map +1 -0
- package/dist/components/Filters/filter-items/SelectAllCheckbox.d.ts +8 -0
- package/dist/components/Filters/filter-items/SelectAllCheckbox.js +22 -0
- package/dist/components/Filters/filter-items/SelectAllCheckbox.js.map +1 -0
- package/dist/components/Filters/filter-items/filter-type/BooleanAttributeDropdown.js +23 -9
- package/dist/components/Filters/filter-items/filter-type/BooleanAttributeDropdown.js.map +1 -1
- package/dist/components/Filters/filter-items/filter-type/ColorAttributeDropDown.js +9 -8
- package/dist/components/Filters/filter-items/filter-type/ColorAttributeDropDown.js.map +1 -1
- package/dist/components/Filters/filter-items/filter-type/FilterDropDown.js +4 -3
- package/dist/components/Filters/filter-items/filter-type/FilterDropDown.js.map +1 -1
- package/dist/components/Filters/filter-items/filter-type/FilterDropdownContent.js +2 -2
- package/dist/components/Filters/filter-items/filter-type/FilterDropdownContent.js.map +1 -1
- package/dist/components/Filters/filter-items/filter-type/FilterValueListDropDown.d.ts +0 -1
- package/dist/components/Filters/filter-items/filter-type/FilterValueListDropDown.js +17 -23
- package/dist/components/Filters/filter-items/filter-type/FilterValueListDropDown.js.map +1 -1
- package/dist/components/Filters/filter-items/filter-type/{TreeAttributeDropDown.d.ts → tree/TreeAttributeDropDown.d.ts} +1 -1
- package/dist/components/Filters/filter-items/filter-type/tree/TreeAttributeDropDown.js +130 -0
- package/dist/components/Filters/filter-items/filter-type/tree/TreeAttributeDropDown.js.map +1 -0
- package/dist/components/Filters/filter-items/filter-type/tree/useGetTreeData.d.ts +20 -0
- package/dist/components/Filters/filter-items/filter-type/tree/useGetTreeData.js +72 -0
- package/dist/components/Filters/filter-items/filter-type/tree/useGetTreeData.js.map +1 -0
- package/dist/components/Filters/filter-items/filter-type/tree/useTreesSearch.d.ts +7 -0
- package/dist/components/Filters/filter-items/filter-type/tree/useTreesSearch.js +36 -0
- package/dist/components/Filters/filter-items/filter-type/tree/useTreesSearch.js.map +1 -0
- package/dist/components/Filters/filter-items/filter-type/tree/utils/buildFlattenTreeMap.d.ts +2 -0
- package/dist/components/Filters/filter-items/filter-type/tree/utils/buildFlattenTreeMap.js +14 -0
- package/dist/components/Filters/filter-items/filter-type/tree/utils/buildFlattenTreeMap.js.map +1 -0
- package/dist/components/Filters/filter-items/filter-type/tree/utils/filterTreeByPermission.d.ts +2 -0
- package/dist/components/Filters/filter-items/filter-type/tree/utils/filterTreeByPermission.js +15 -0
- package/dist/components/Filters/filter-items/filter-type/tree/utils/filterTreeByPermission.js.map +1 -0
- package/dist/components/Filters/filter-items/filter-type/tree/utils/getSelectAllState.d.ts +5 -0
- package/dist/components/Filters/filter-items/filter-type/tree/utils/getSelectAllState.js +17 -0
- package/dist/components/Filters/filter-items/filter-type/tree/utils/getSelectAllState.js.map +1 -0
- package/dist/components/Filters/filter-items/filter-type/useConditionOptionsByType.js +3 -13
- package/dist/components/Filters/filter-items/filter-type/useConditionOptionsByType.js.map +1 -1
- package/dist/components/Filters/index.d.ts +1 -0
- package/dist/components/Filters/index.js +1 -0
- package/dist/components/Filters/index.js.map +1 -1
- package/dist/components/Filters/prepareFiltersForRequest.js +36 -3
- package/dist/components/Filters/prepareFiltersForRequest.js.map +1 -1
- package/dist/components/Filters/useFilters.d.ts +5 -0
- package/dist/components/Filters/useTransformFilters.js +4 -0
- package/dist/components/Filters/useTransformFilters.js.map +1 -1
- package/dist/components/LibraryItemsList/FiltersPanel/Filter/Filter.d.ts +1 -3
- package/dist/components/LibraryItemsList/FiltersPanel/Filter/Filter.js +6 -2
- package/dist/components/LibraryItemsList/FiltersPanel/Filter/Filter.js.map +1 -1
- package/dist/components/LibraryItemsList/FiltersPanel/FiltersOptions.js +1 -8
- package/dist/components/LibraryItemsList/FiltersPanel/FiltersOptions.js.map +1 -1
- package/dist/components/LibraryItemsList/FiltersPanel/FiltersPanel.js +15 -17
- package/dist/components/LibraryItemsList/FiltersPanel/FiltersPanel.js.map +1 -1
- package/dist/components/LibraryItemsList/LibraryItemsListTable/ChooseTableColumns/ChooseTableColumns.js +0 -6
- package/dist/components/LibraryItemsList/LibraryItemsListTable/ChooseTableColumns/ChooseTableColumns.js.map +1 -1
- package/dist/components/LibraryItemsList/MenuView/MenuView.js +4 -4
- package/dist/components/LibraryItemsList/MenuView/MenuView.js.map +1 -1
- package/dist/components/LibraryItemsList/ViewPanel/View/View.d.ts +1 -3
- package/dist/components/LibraryItemsList/ViewPanel/View/View.js +9 -4
- package/dist/components/LibraryItemsList/ViewPanel/View/View.js.map +1 -1
- package/dist/components/LibraryItemsList/ViewPanel/ViewPanel.js +36 -14
- package/dist/components/LibraryItemsList/ViewPanel/ViewPanel.js.map +1 -1
- package/dist/components/LibraryItemsList/hooks/useSearchReducer/useSearchReducer.d.ts +1 -1
- package/dist/components/Notifications/hooks/useNotificationSubscription.js +5 -4
- package/dist/components/Notifications/hooks/useNotificationSubscription.js.map +1 -1
- package/dist/components/RecordEdition/EditRecord/EditRecord.d.ts +1 -0
- package/dist/components/RecordEdition/EditRecord/EditRecord.js +3 -3
- package/dist/components/RecordEdition/EditRecord/EditRecord.js.map +1 -1
- package/dist/components/RecordEdition/EditRecordContent/antdUtils.js +2 -0
- package/dist/components/RecordEdition/EditRecordContent/antdUtils.js.map +1 -1
- package/dist/components/RecordEdition/EditRecordContent/hooks/__mocks__/useDeleteValueMutation.d.ts +1 -1
- package/dist/components/RecordEdition/EditRecordContent/hooks/__mocks__/useSaveValueMutation.d.ts +1 -1
- package/dist/components/RecordEdition/EditRecordContent/shared/ValuesVersionBtn/ValuesVersionBtn.js +5 -20
- package/dist/components/RecordEdition/EditRecordContent/shared/ValuesVersionBtn/ValuesVersionBtn.js.map +1 -1
- package/dist/components/RecordEdition/EditRecordContent/uiElements/LinkField/LinkField.d.ts +1 -11
- package/dist/components/RecordEdition/EditRecordContent/uiElements/LinkField/LinkField.js +8 -95
- package/dist/components/RecordEdition/EditRecordContent/uiElements/LinkField/LinkField.js.map +1 -1
- package/dist/components/RecordEdition/EditRecordContent/uiElements/LinkField/_types.d.ts +8 -0
- package/dist/components/RecordEdition/EditRecordContent/uiElements/LinkField/_types.js +2 -0
- package/dist/components/RecordEdition/EditRecordContent/uiElements/LinkField/_types.js.map +1 -0
- package/dist/components/RecordEdition/EditRecordContent/uiElements/LinkField/explorer/LinkFieldExplorer.d.ts +6 -0
- package/dist/components/RecordEdition/EditRecordContent/uiElements/LinkField/explorer/LinkFieldExplorer.js +77 -0
- package/dist/components/RecordEdition/EditRecordContent/uiElements/LinkField/explorer/LinkFieldExplorer.js.map +1 -0
- package/dist/components/RecordEdition/EditRecordContent/uiElements/LinkField/{link-record → explorer/link-record}/useExplorerLinkRecords.d.ts +5 -7
- package/dist/components/RecordEdition/EditRecordContent/uiElements/LinkField/{link-record → explorer/link-record}/useExplorerLinkRecords.js +3 -10
- package/dist/components/RecordEdition/EditRecordContent/uiElements/LinkField/explorer/link-record/useExplorerLinkRecords.js.map +1 -0
- package/dist/components/RecordEdition/EditRecordContent/uiElements/LinkField/{link-record → explorer/link-record}/useLinkRecords.d.ts +5 -6
- package/dist/components/RecordEdition/EditRecordContent/uiElements/LinkField/explorer/link-record/useLinkRecords.js +98 -0
- package/dist/components/RecordEdition/EditRecordContent/uiElements/LinkField/explorer/link-record/useLinkRecords.js.map +1 -0
- package/dist/components/RecordEdition/EditRecordContent/uiElements/LinkField/shared/{ExplorerWrapper.d.ts → InputExtraAlignLeft.d.ts} +54 -52
- package/dist/components/RecordEdition/EditRecordContent/uiElements/LinkField/{link-record/ActionButton.js → shared/InputExtraAlignLeft.js} +4 -4
- package/dist/components/RecordEdition/EditRecordContent/uiElements/LinkField/shared/InputExtraAlignLeft.js.map +1 -0
- package/dist/components/RecordEdition/EditRecordContent/uiElements/LinkField/shared/InputWrapper.d.ts +3 -0
- package/dist/components/RecordEdition/EditRecordContent/uiElements/LinkField/shared/InputWrapper.js +31 -0
- package/dist/components/RecordEdition/EditRecordContent/uiElements/LinkField/shared/InputWrapper.js.map +1 -0
- package/dist/components/RecordEdition/EditRecordContent/uiElements/LinkField/shared/Wrapper.d.ts +3 -0
- package/dist/components/RecordEdition/EditRecordContent/uiElements/LinkField/shared/Wrapper.js +8 -0
- package/dist/components/RecordEdition/EditRecordContent/uiElements/LinkField/shared/Wrapper.js.map +1 -0
- package/dist/components/RecordEdition/EditRecordContent/uiElements/LinkField/tag/LinkFieldTags.d.ts +3 -0
- package/dist/components/RecordEdition/EditRecordContent/uiElements/LinkField/tag/LinkFieldTags.js +57 -0
- package/dist/components/RecordEdition/EditRecordContent/uiElements/LinkField/tag/LinkFieldTags.js.map +1 -0
- package/dist/components/RecordEdition/EditRecordContent/uiElements/LinkField/tag/link-record/useLinkRecord.d.ts +16 -0
- package/dist/components/RecordEdition/EditRecordContent/uiElements/LinkField/tag/link-record/useLinkRecord.js +85 -0
- package/dist/components/RecordEdition/EditRecordContent/uiElements/LinkField/tag/link-record/useLinkRecord.js.map +1 -0
- package/dist/components/RecordEdition/EditRecordContent/uiElements/LinkField/tag/unlink-record/useUnlinkRecord.d.ts +19 -0
- package/dist/components/RecordEdition/EditRecordContent/uiElements/LinkField/tag/unlink-record/useUnlinkRecord.js +43 -0
- package/dist/components/RecordEdition/EditRecordContent/uiElements/LinkField/tag/unlink-record/useUnlinkRecord.js.map +1 -0
- package/dist/components/RecordEdition/EditRecordContent/uiElements/LinkField/unlink-all-records/useUnlinkAllRecords.d.ts +16 -0
- package/dist/components/RecordEdition/EditRecordContent/uiElements/LinkField/unlink-all-records/useUnlinkAllRecords.js +27 -0
- package/dist/components/RecordEdition/EditRecordContent/uiElements/LinkField/unlink-all-records/useUnlinkAllRecords.js.map +1 -0
- package/dist/components/RecordEdition/EditRecordContent/uiElements/StandardField/StandardField.js +4 -3
- package/dist/components/RecordEdition/EditRecordContent/uiElements/StandardField/StandardField.js.map +1 -1
- package/dist/components/RecordEdition/EditRecordContent/uiElements/StandardField/StandardFieldValue/DSRichTextWrapper.js +1 -1
- package/dist/components/RecordEdition/EditRecordContent/uiElements/StandardField/StandardFieldValue/DSRichTextWrapper.js.map +1 -1
- package/dist/components/RecordEdition/EditRecordContent/uiElements/StandardField/StandardFieldValue/StandardFieldValue.js +2 -0
- package/dist/components/RecordEdition/EditRecordContent/uiElements/StandardField/StandardFieldValue/StandardFieldValue.js.map +1 -1
- package/dist/components/RecordEdition/EditRecordContent/uiElements/TreeField/TreeField.js +9 -2
- 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 +53 -51
- package/dist/components/RecordEdition/EditRecordContent/uiElements/TreeField/display-tree-node/TreeNodeItem.js +3 -2
- package/dist/components/RecordEdition/EditRecordContent/uiElements/TreeField/display-tree-node/TreeNodeItem.js.map +1 -1
- package/dist/components/RecordEdition/EditRecordContent/uiElements/TreeField/manage-tree-node-selection/SelectTreeNodeModal.d.ts +2 -1
- package/dist/components/RecordEdition/EditRecordContent/uiElements/TreeField/manage-tree-node-selection/SelectTreeNodeModal.js +4 -7
- package/dist/components/RecordEdition/EditRecordContent/uiElements/TreeField/manage-tree-node-selection/SelectTreeNodeModal.js.map +1 -1
- package/dist/components/RecordEdition/EditRecordContent/uiElements/TreeField/manage-tree-node-selection/useManageTreeNodeSelection.d.ts +3 -2
- package/dist/components/RecordEdition/EditRecordContent/uiElements/TreeField/manage-tree-node-selection/useManageTreeNodeSelection.js +2 -2
- package/dist/components/RecordEdition/EditRecordContent/uiElements/TreeField/manage-tree-node-selection/useManageTreeNodeSelection.js.map +1 -1
- package/dist/components/RecordEdition/EditRecordContent/uiElements/shared/ComputeIndicator.js +3 -2
- package/dist/components/RecordEdition/EditRecordContent/uiElements/shared/ComputeIndicator.js.map +1 -1
- package/dist/components/RecordEdition/EditRecordPage/EditRecordPage.d.ts +1 -0
- package/dist/components/RecordEdition/EditRecordPage/EditRecordPage.js +2 -2
- package/dist/components/RecordEdition/EditRecordPage/EditRecordPage.js.map +1 -1
- package/dist/components/RecordEdition/EditRecordSidebar/RecordSummary/RecordInformations/RecordInformations.js +3 -2
- package/dist/components/RecordEdition/EditRecordSidebar/RecordSummary/RecordInformations/RecordInformations.js.map +1 -1
- package/dist/components/RecordEdition/EditRecordSidebar/ValuesSummary/ValuesSummary.js +4 -3
- package/dist/components/RecordEdition/EditRecordSidebar/ValuesSummary/ValuesSummary.js.map +1 -1
- package/dist/components/RecordEdition/EditRecordSidebar/ValuesVersions/ValuesVersions.js +3 -2
- package/dist/components/RecordEdition/EditRecordSidebar/ValuesVersions/ValuesVersions.js.map +1 -1
- package/dist/components/RecordEdition/hooks/useGetSubmitButtons.js +2 -2
- package/dist/components/RecordEdition/hooks/useGetSubmitButtons.js.map +1 -1
- package/dist/components/RecordHistory/RecordHistoryLogEntry.js +10 -2
- package/dist/components/RecordHistory/RecordHistoryLogEntry.js.map +1 -1
- package/dist/components/RecordHistory/_queries/recordHistoryQuery.d.ts +7 -0
- package/dist/components/RecordHistory/_queries/recordHistoryQuery.js +64 -0
- package/dist/components/RecordHistory/_queries/recordHistoryQuery.js.map +1 -0
- package/dist/components/RecordHistory/hooks/useFetchRecordHistory.js +5 -2
- package/dist/components/RecordHistory/hooks/useFetchRecordHistory.js.map +1 -1
- package/dist/components/RecordHistory/utils/extendedAttribute.d.ts +13 -0
- package/dist/components/RecordHistory/utils/extendedAttribute.js +40 -0
- package/dist/components/RecordHistory/utils/extendedAttribute.js.map +1 -0
- package/dist/components/SelectRecordForLinkModal/SelectRecordForLinkModal.d.ts +1 -0
- package/dist/components/SelectRecordForLinkModal/SelectRecordForLinkModal.js +7 -7
- package/dist/components/SelectRecordForLinkModal/SelectRecordForLinkModal.js.map +1 -1
- package/dist/components/SelectTreeNode/SelectTreeNode.d.ts +2 -1
- package/dist/components/SelectTreeNode/SelectTreeNode.js +3 -3
- package/dist/components/SelectTreeNode/SelectTreeNode.js.map +1 -1
- package/dist/components/SelectTreeNode/SelectTreeNodeContent.d.ts +2 -1
- package/dist/components/SelectTreeNode/SelectTreeNodeContent.js +6 -2
- package/dist/components/SelectTreeNode/SelectTreeNodeContent.js.map +1 -1
- package/dist/components/SelectTreeNode/TreeNodeTitle.js +5 -4
- package/dist/components/SelectTreeNode/TreeNodeTitle.js.map +1 -1
- package/dist/constants.d.ts +1 -0
- package/dist/constants.js +1 -0
- package/dist/constants.js.map +1 -1
- package/dist/hooks/useIFrameMessenger/messageHandlers.d.ts +3 -1
- package/dist/hooks/useIFrameMessenger/messageHandlers.js +16 -0
- package/dist/hooks/useIFrameMessenger/messageHandlers.js.map +1 -1
- package/dist/hooks/useIFrameMessenger/schema.d.ts +6 -3
- package/dist/hooks/useIFrameMessenger/schema.js +2 -1
- package/dist/hooks/useIFrameMessenger/schema.js.map +1 -1
- package/dist/hooks/useIFrameMessenger/types.d.ts +32 -2
- package/dist/hooks/useIFrameMessenger/types.js.map +1 -1
- package/dist/hooks/useIFrameMessenger/useIFrameMessenger.d.ts +2 -0
- package/dist/hooks/useIFrameMessenger/useIFrameMessenger.js +16 -2
- package/dist/hooks/useIFrameMessenger/useIFrameMessenger.js.map +1 -1
- package/dist/hooks/useIFrameMessengerClient/iFrameMessengerClientContext.d.ts +2 -0
- package/dist/hooks/useIFrameMessengerClient/useIFrameMessengerClient.d.ts +2 -0
- package/dist/locales/en/shared.json +23 -4
- package/dist/locales/fr/shared.json +23 -4
- package/dist/types/records.d.ts +1 -0
- package/dist/types/records.js.map +1 -1
- package/package.json +41 -43
- package/dist/components/Filters/filter-items/filter-type/TreeAttributeDropDown.js +0 -73
- package/dist/components/Filters/filter-items/filter-type/TreeAttributeDropDown.js.map +0 -1
- package/dist/components/RecordEdition/EditRecordContent/uiElements/LinkField/link-record/ActionButton.d.ts +0 -3
- package/dist/components/RecordEdition/EditRecordContent/uiElements/LinkField/link-record/ActionButton.js.map +0 -1
- package/dist/components/RecordEdition/EditRecordContent/uiElements/LinkField/link-record/useExplorerLinkRecords.js.map +0 -1
- package/dist/components/RecordEdition/EditRecordContent/uiElements/LinkField/link-record/useLinkRecords.js +0 -100
- package/dist/components/RecordEdition/EditRecordContent/uiElements/LinkField/link-record/useLinkRecords.js.map +0 -1
- package/dist/components/RecordEdition/EditRecordContent/uiElements/LinkField/shared/ExplorerWrapper.js +0 -13
- package/dist/components/RecordEdition/EditRecordContent/uiElements/LinkField/shared/ExplorerWrapper.js.map +0 -1
|
@@ -13,36 +13,89 @@ export type MakeOptional<T, K extends keyof T> = Omit<T, K> & {
|
|
|
13
13
|
export type MakeMaybe<T, K extends keyof T> = Omit<T, K> & {
|
|
14
14
|
[SubKey in K]: Maybe<T[SubKey]>;
|
|
15
15
|
};
|
|
16
|
+
export type MakeEmpty<T extends {
|
|
17
|
+
[key: string]: unknown;
|
|
18
|
+
}, K extends keyof T> = {
|
|
19
|
+
[_ in K]?: never;
|
|
20
|
+
};
|
|
21
|
+
export type Incremental<T> = T | {
|
|
22
|
+
[P in keyof T]?: P extends ' $fragmentName' | '__typename' ? T[P] : never;
|
|
23
|
+
};
|
|
16
24
|
/** All built-in and custom scalars, mapped to their actual values */
|
|
17
25
|
export type Scalars = {
|
|
18
|
-
ID:
|
|
19
|
-
|
|
20
|
-
|
|
21
|
-
|
|
22
|
-
|
|
23
|
-
|
|
24
|
-
|
|
25
|
-
|
|
26
|
-
|
|
27
|
-
|
|
28
|
-
|
|
29
|
-
|
|
30
|
-
|
|
31
|
-
|
|
32
|
-
|
|
26
|
+
ID: {
|
|
27
|
+
input: string;
|
|
28
|
+
output: string;
|
|
29
|
+
};
|
|
30
|
+
String: {
|
|
31
|
+
input: string;
|
|
32
|
+
output: string;
|
|
33
|
+
};
|
|
34
|
+
Boolean: {
|
|
35
|
+
input: boolean;
|
|
36
|
+
output: boolean;
|
|
37
|
+
};
|
|
38
|
+
Int: {
|
|
39
|
+
input: number;
|
|
40
|
+
output: number;
|
|
41
|
+
};
|
|
42
|
+
Float: {
|
|
43
|
+
input: number;
|
|
44
|
+
output: number;
|
|
45
|
+
};
|
|
46
|
+
Any: {
|
|
47
|
+
input: any;
|
|
48
|
+
output: any;
|
|
49
|
+
};
|
|
50
|
+
DateTime: {
|
|
51
|
+
input: any;
|
|
52
|
+
output: any;
|
|
53
|
+
};
|
|
54
|
+
FullTreeContent: {
|
|
55
|
+
input: any;
|
|
56
|
+
output: any;
|
|
57
|
+
};
|
|
58
|
+
JSON: {
|
|
59
|
+
input: any;
|
|
60
|
+
output: any;
|
|
61
|
+
};
|
|
62
|
+
JSONObject: {
|
|
63
|
+
input: any;
|
|
64
|
+
output: any;
|
|
65
|
+
};
|
|
66
|
+
Preview: {
|
|
67
|
+
input: IPreviewScalar;
|
|
68
|
+
output: IPreviewScalar;
|
|
69
|
+
};
|
|
70
|
+
SystemTranslation: {
|
|
71
|
+
input: any;
|
|
72
|
+
output: any;
|
|
73
|
+
};
|
|
74
|
+
SystemTranslationOptional: {
|
|
75
|
+
input: any;
|
|
76
|
+
output: any;
|
|
77
|
+
};
|
|
78
|
+
TaskPriority: {
|
|
79
|
+
input: any;
|
|
80
|
+
output: any;
|
|
81
|
+
};
|
|
82
|
+
Upload: {
|
|
83
|
+
input: any;
|
|
84
|
+
output: any;
|
|
85
|
+
};
|
|
33
86
|
};
|
|
34
87
|
export type AccessRecordByDefaultPermissionInput = {
|
|
35
|
-
attributeId: Scalars['ID'];
|
|
36
|
-
libraryId: Scalars['ID'];
|
|
88
|
+
attributeId: Scalars['ID']['input'];
|
|
89
|
+
libraryId: Scalars['ID']['input'];
|
|
37
90
|
};
|
|
38
91
|
export type ActionConfigurationInput = {
|
|
39
|
-
error_message?: InputMaybe<Scalars['SystemTranslationOptional']>;
|
|
40
|
-
id: Scalars['ID'];
|
|
92
|
+
error_message?: InputMaybe<Scalars['SystemTranslationOptional']['input']>;
|
|
93
|
+
id: Scalars['ID']['input'];
|
|
41
94
|
params?: InputMaybe<Array<ActionConfigurationParamInput>>;
|
|
42
95
|
};
|
|
43
96
|
export type ActionConfigurationParamInput = {
|
|
44
|
-
name: Scalars['String'];
|
|
45
|
-
value: Scalars['String'];
|
|
97
|
+
name: Scalars['String']['input'];
|
|
98
|
+
value: Scalars['String']['input'];
|
|
46
99
|
};
|
|
47
100
|
export declare enum ActionIoTypes {
|
|
48
101
|
boolean = "boolean",
|
|
@@ -53,19 +106,21 @@ export declare enum ActionIoTypes {
|
|
|
53
106
|
export type ActionsListConfigurationInput = {
|
|
54
107
|
deleteValue?: InputMaybe<Array<ActionConfigurationInput>>;
|
|
55
108
|
getValue?: InputMaybe<Array<ActionConfigurationInput>>;
|
|
109
|
+
postDeleteValue?: InputMaybe<Array<ActionConfigurationInput>>;
|
|
110
|
+
postSaveValue?: InputMaybe<Array<ActionConfigurationInput>>;
|
|
56
111
|
saveValue?: InputMaybe<Array<ActionConfigurationInput>>;
|
|
57
112
|
};
|
|
58
113
|
export type ApiKeyInput = {
|
|
59
|
-
expiresAt?: InputMaybe<Scalars['Int']>;
|
|
60
|
-
id?: InputMaybe<Scalars['String']>;
|
|
61
|
-
label: Scalars['String'];
|
|
62
|
-
userId: Scalars['String'];
|
|
114
|
+
expiresAt?: InputMaybe<Scalars['Int']['input']>;
|
|
115
|
+
id?: InputMaybe<Scalars['String']['input']>;
|
|
116
|
+
label: Scalars['String']['input'];
|
|
117
|
+
userId: Scalars['String']['input'];
|
|
63
118
|
};
|
|
64
119
|
export type ApiKeysFiltersInput = {
|
|
65
|
-
createdBy?: InputMaybe<Scalars['Int']>;
|
|
66
|
-
label?: InputMaybe<Scalars['String']>;
|
|
67
|
-
modifiedBy?: InputMaybe<Scalars['Int']>;
|
|
68
|
-
user_id?: InputMaybe<Scalars['String']>;
|
|
120
|
+
createdBy?: InputMaybe<Scalars['Int']['input']>;
|
|
121
|
+
label?: InputMaybe<Scalars['String']['input']>;
|
|
122
|
+
modifiedBy?: InputMaybe<Scalars['Int']['input']>;
|
|
123
|
+
user_id?: InputMaybe<Scalars['String']['input']>;
|
|
69
124
|
};
|
|
70
125
|
export declare enum ApiKeysSortableFields {
|
|
71
126
|
createdAt = "createdAt",
|
|
@@ -76,27 +131,27 @@ export declare enum ApiKeysSortableFields {
|
|
|
76
131
|
modifiedBy = "modifiedBy"
|
|
77
132
|
}
|
|
78
133
|
export type ApplicationEventFiltersInput = {
|
|
79
|
-
applicationId?: InputMaybe<Scalars['ID']>;
|
|
134
|
+
applicationId?: InputMaybe<Scalars['ID']['input']>;
|
|
80
135
|
events?: InputMaybe<Array<ApplicationEventTypes>>;
|
|
81
|
-
ignoreOwnEvents?: InputMaybe<Scalars['Boolean']>;
|
|
136
|
+
ignoreOwnEvents?: InputMaybe<Scalars['Boolean']['input']>;
|
|
82
137
|
};
|
|
83
138
|
export declare enum ApplicationEventTypes {
|
|
84
139
|
DELETE = "DELETE",
|
|
85
140
|
SAVE = "SAVE"
|
|
86
141
|
}
|
|
87
142
|
export type ApplicationIconInput = {
|
|
88
|
-
libraryId: Scalars['String'];
|
|
89
|
-
recordId: Scalars['String'];
|
|
143
|
+
libraryId: Scalars['String']['input'];
|
|
144
|
+
recordId: Scalars['String']['input'];
|
|
90
145
|
};
|
|
91
146
|
export type ApplicationInput = {
|
|
92
|
-
color?: InputMaybe<Scalars['String']>;
|
|
93
|
-
description?: InputMaybe<Scalars['SystemTranslationOptional']>;
|
|
94
|
-
endpoint?: InputMaybe<Scalars['String']>;
|
|
147
|
+
color?: InputMaybe<Scalars['String']['input']>;
|
|
148
|
+
description?: InputMaybe<Scalars['SystemTranslationOptional']['input']>;
|
|
149
|
+
endpoint?: InputMaybe<Scalars['String']['input']>;
|
|
95
150
|
icon?: InputMaybe<ApplicationIconInput>;
|
|
96
|
-
id: Scalars['ID'];
|
|
97
|
-
label?: InputMaybe<Scalars['SystemTranslation']>;
|
|
98
|
-
module?: InputMaybe<Scalars['String']>;
|
|
99
|
-
settings?: InputMaybe<Scalars['JSONObject']>;
|
|
151
|
+
id: Scalars['ID']['input'];
|
|
152
|
+
label?: InputMaybe<Scalars['SystemTranslation']['input']>;
|
|
153
|
+
module?: InputMaybe<Scalars['String']['input']>;
|
|
154
|
+
settings?: InputMaybe<Scalars['JSONObject']['input']>;
|
|
100
155
|
type?: InputMaybe<ApplicationType>;
|
|
101
156
|
};
|
|
102
157
|
export declare enum ApplicationSortableFields {
|
|
@@ -111,11 +166,11 @@ export declare enum ApplicationType {
|
|
|
111
166
|
internal = "internal"
|
|
112
167
|
}
|
|
113
168
|
export type ApplicationsFiltersInput = {
|
|
114
|
-
endpoint?: InputMaybe<Scalars['String']>;
|
|
115
|
-
id?: InputMaybe<Scalars['ID']>;
|
|
116
|
-
label?: InputMaybe<Scalars['String']>;
|
|
117
|
-
module?: InputMaybe<Scalars['String']>;
|
|
118
|
-
system?: InputMaybe<Scalars['Boolean']>;
|
|
169
|
+
endpoint?: InputMaybe<Scalars['String']['input']>;
|
|
170
|
+
id?: InputMaybe<Scalars['ID']['input']>;
|
|
171
|
+
label?: InputMaybe<Scalars['String']['input']>;
|
|
172
|
+
module?: InputMaybe<Scalars['String']['input']>;
|
|
173
|
+
system?: InputMaybe<Scalars['Boolean']['input']>;
|
|
119
174
|
type?: InputMaybe<Array<InputMaybe<ApplicationType>>>;
|
|
120
175
|
};
|
|
121
176
|
export declare enum AttributeFormat {
|
|
@@ -131,31 +186,34 @@ export declare enum AttributeFormat {
|
|
|
131
186
|
}
|
|
132
187
|
export type AttributeInput = {
|
|
133
188
|
actions_list?: InputMaybe<ActionsListConfigurationInput>;
|
|
134
|
-
character_limit?: InputMaybe<Scalars['Int']>;
|
|
135
|
-
description?: InputMaybe<Scalars['SystemTranslationOptional']>;
|
|
189
|
+
character_limit?: InputMaybe<Scalars['Int']['input']>;
|
|
190
|
+
description?: InputMaybe<Scalars['SystemTranslationOptional']['input']>;
|
|
136
191
|
embedded_fields?: InputMaybe<Array<InputMaybe<EmbeddedAttributeInput>>>;
|
|
137
192
|
format?: InputMaybe<AttributeFormat>;
|
|
138
|
-
id: Scalars['ID'];
|
|
139
|
-
label?: InputMaybe<Scalars['SystemTranslation']>;
|
|
140
|
-
linked_library?: InputMaybe<Scalars['String']>;
|
|
141
|
-
linked_tree?: InputMaybe<Scalars['String']>;
|
|
142
|
-
metadata_fields?: InputMaybe<Array<Scalars['String']>>;
|
|
193
|
+
id: Scalars['ID']['input'];
|
|
194
|
+
label?: InputMaybe<Scalars['SystemTranslation']['input']>;
|
|
195
|
+
linked_library?: InputMaybe<Scalars['String']['input']>;
|
|
196
|
+
linked_tree?: InputMaybe<Scalars['String']['input']>;
|
|
197
|
+
metadata_fields?: InputMaybe<Array<Scalars['String']['input']>>;
|
|
143
198
|
multi_link_display_option?: InputMaybe<MultiDisplayOption>;
|
|
144
199
|
multi_tree_display_option?: InputMaybe<MultiDisplayOption>;
|
|
145
|
-
multiple_values?: InputMaybe<Scalars['Boolean']>;
|
|
200
|
+
multiple_values?: InputMaybe<Scalars['Boolean']['input']>;
|
|
146
201
|
permissions_conf?: InputMaybe<TreepermissionsConfInput>;
|
|
147
|
-
|
|
148
|
-
|
|
149
|
-
|
|
150
|
-
|
|
202
|
+
permissions_conf_dependent_values?: InputMaybe<TreePermissionsDependentValuesConfInput>;
|
|
203
|
+
readonly?: InputMaybe<Scalars['Boolean']['input']>;
|
|
204
|
+
required?: InputMaybe<Scalars['Boolean']['input']>;
|
|
205
|
+
reverse_link?: InputMaybe<Scalars['String']['input']>;
|
|
206
|
+
settings?: InputMaybe<Scalars['JSONObject']['input']>;
|
|
207
|
+
/** only for link attribute */
|
|
208
|
+
smart_filter?: InputMaybe<SmartFilterConfInput>;
|
|
151
209
|
type?: InputMaybe<AttributeType>;
|
|
152
|
-
unique?: InputMaybe<Scalars['Boolean']>;
|
|
210
|
+
unique?: InputMaybe<Scalars['Boolean']['input']>;
|
|
153
211
|
values_list?: InputMaybe<ValuesListConfInput>;
|
|
154
212
|
versions_conf?: InputMaybe<ValuesVersionsConfInput>;
|
|
155
213
|
};
|
|
156
214
|
export type AttributePermissionsRecord = {
|
|
157
|
-
id?: InputMaybe<Scalars['String']>;
|
|
158
|
-
library: Scalars['String'];
|
|
215
|
+
id?: InputMaybe<Scalars['String']['input']>;
|
|
216
|
+
library: Scalars['String']['input'];
|
|
159
217
|
};
|
|
160
218
|
export declare enum AttributeType {
|
|
161
219
|
advanced = "advanced",
|
|
@@ -166,15 +224,15 @@ export declare enum AttributeType {
|
|
|
166
224
|
}
|
|
167
225
|
export type AttributesFiltersInput = {
|
|
168
226
|
format?: InputMaybe<Array<AttributeFormat>>;
|
|
169
|
-
id?: InputMaybe<Scalars['ID']>;
|
|
170
|
-
ids?: InputMaybe<Array<Scalars['ID']>>;
|
|
171
|
-
label?: InputMaybe<Scalars['String']>;
|
|
172
|
-
libraries?: InputMaybe<Array<Scalars['String']>>;
|
|
173
|
-
librariesExcluded?: InputMaybe<Array<Scalars['String']>>;
|
|
174
|
-
multiple_values?: InputMaybe<Scalars['Boolean']>;
|
|
175
|
-
system?: InputMaybe<Scalars['Boolean']>;
|
|
227
|
+
id?: InputMaybe<Scalars['ID']['input']>;
|
|
228
|
+
ids?: InputMaybe<Array<Scalars['ID']['input']>>;
|
|
229
|
+
label?: InputMaybe<Scalars['String']['input']>;
|
|
230
|
+
libraries?: InputMaybe<Array<Scalars['String']['input']>>;
|
|
231
|
+
librariesExcluded?: InputMaybe<Array<Scalars['String']['input']>>;
|
|
232
|
+
multiple_values?: InputMaybe<Scalars['Boolean']['input']>;
|
|
233
|
+
system?: InputMaybe<Scalars['Boolean']['input']>;
|
|
176
234
|
type?: InputMaybe<Array<AttributeType>>;
|
|
177
|
-
versionable?: InputMaybe<Scalars['Boolean']>;
|
|
235
|
+
versionable?: InputMaybe<Scalars['Boolean']['input']>;
|
|
178
236
|
};
|
|
179
237
|
export declare enum AttributesSortableFields {
|
|
180
238
|
format = "format",
|
|
@@ -188,32 +246,61 @@ export declare enum AvailableLanguage {
|
|
|
188
246
|
en = "en",
|
|
189
247
|
fr = "fr"
|
|
190
248
|
}
|
|
249
|
+
export type CampaignToRenew = {
|
|
250
|
+
endDate: Scalars['String']['input'];
|
|
251
|
+
id: Scalars['String']['input'];
|
|
252
|
+
startDate: Scalars['String']['input'];
|
|
253
|
+
};
|
|
254
|
+
export type CampaignToUpdateDates = {
|
|
255
|
+
endDate: Scalars['String']['input'];
|
|
256
|
+
id: Scalars['String']['input'];
|
|
257
|
+
startDate: Scalars['String']['input'];
|
|
258
|
+
};
|
|
191
259
|
export type ChildrenAsRecordValuePermissionFilterInput = {
|
|
192
260
|
action: RecordPermissionsActions;
|
|
193
|
-
attributeId: Scalars['ID'];
|
|
194
|
-
libraryId: Scalars['ID'];
|
|
261
|
+
attributeId: Scalars['ID']['input'];
|
|
262
|
+
libraryId: Scalars['ID']['input'];
|
|
195
263
|
};
|
|
196
264
|
export type CreateRecordDataInput = {
|
|
197
265
|
values?: InputMaybe<Array<ValueBatchInput>>;
|
|
198
266
|
version?: InputMaybe<Array<ValueVersionInput>>;
|
|
199
267
|
};
|
|
200
268
|
export type DeleteTaskInput = {
|
|
201
|
-
archive: Scalars['Boolean'];
|
|
202
|
-
id: Scalars['ID'];
|
|
269
|
+
archive: Scalars['Boolean']['input'];
|
|
270
|
+
id: Scalars['ID']['input'];
|
|
271
|
+
};
|
|
272
|
+
export type DependentValuesPermissionFilterInput = {
|
|
273
|
+
attributeId: Scalars['ID']['input'];
|
|
274
|
+
libraryId: Scalars['ID']['input'];
|
|
275
|
+
recordId: Scalars['ID']['input'];
|
|
276
|
+
};
|
|
277
|
+
export type DiscussionCommentInput = {
|
|
278
|
+
mentions?: InputMaybe<DiscussionMentionsInput>;
|
|
279
|
+
message: Scalars['String']['input'];
|
|
280
|
+
targetRecord: DiscussionTargetRecordInput;
|
|
281
|
+
threadId?: InputMaybe<Scalars['String']['input']>;
|
|
282
|
+
};
|
|
283
|
+
export type DiscussionMentionsInput = {
|
|
284
|
+
url: Scalars['String']['input'];
|
|
285
|
+
users?: InputMaybe<Array<Scalars['String']['input']>>;
|
|
286
|
+
};
|
|
287
|
+
export type DiscussionTargetRecordInput = {
|
|
288
|
+
id: Scalars['String']['input'];
|
|
289
|
+
libraryId: Scalars['String']['input'];
|
|
203
290
|
};
|
|
204
291
|
export type EmbeddedAttributeInput = {
|
|
205
|
-
description?: InputMaybe<Scalars['SystemTranslationOptional']>;
|
|
292
|
+
description?: InputMaybe<Scalars['SystemTranslationOptional']['input']>;
|
|
206
293
|
embedded_fields?: InputMaybe<Array<InputMaybe<EmbeddedAttributeInput>>>;
|
|
207
294
|
format?: InputMaybe<AttributeFormat>;
|
|
208
|
-
id: Scalars['ID'];
|
|
209
|
-
label?: InputMaybe<Scalars['SystemTranslation']>;
|
|
210
|
-
validation_regex?: InputMaybe<Scalars['String']>;
|
|
295
|
+
id: Scalars['ID']['input'];
|
|
296
|
+
label?: InputMaybe<Scalars['SystemTranslation']['input']>;
|
|
297
|
+
validation_regex?: InputMaybe<Scalars['String']['input']>;
|
|
211
298
|
};
|
|
212
299
|
export type FileInput = {
|
|
213
|
-
data: Scalars['Upload'];
|
|
214
|
-
replace?: InputMaybe<Scalars['Boolean']>;
|
|
215
|
-
size?: InputMaybe<Scalars['Int']>;
|
|
216
|
-
uid: Scalars['String'];
|
|
300
|
+
data: Scalars['Upload']['input'];
|
|
301
|
+
replace?: InputMaybe<Scalars['Boolean']['input']>;
|
|
302
|
+
size?: InputMaybe<Scalars['Int']['input']>;
|
|
303
|
+
uid: Scalars['String']['input'];
|
|
217
304
|
};
|
|
218
305
|
export declare enum FileType {
|
|
219
306
|
audio = "audio",
|
|
@@ -223,20 +310,20 @@ export declare enum FileType {
|
|
|
223
310
|
video = "video"
|
|
224
311
|
}
|
|
225
312
|
export type FormDependencyValueInput = {
|
|
226
|
-
attribute: Scalars['ID'];
|
|
227
|
-
value: Scalars['ID'];
|
|
313
|
+
attribute: Scalars['ID']['input'];
|
|
314
|
+
value: Scalars['ID']['input'];
|
|
228
315
|
};
|
|
229
316
|
export type FormElementInput = {
|
|
230
|
-
containerId: Scalars['ID'];
|
|
231
|
-
id: Scalars['ID'];
|
|
232
|
-
order: Scalars['Int'];
|
|
317
|
+
containerId: Scalars['ID']['input'];
|
|
318
|
+
id: Scalars['ID']['input'];
|
|
319
|
+
order: Scalars['Int']['input'];
|
|
233
320
|
settings: Array<FormElementSettingsInput>;
|
|
234
321
|
type: FormElementTypes;
|
|
235
|
-
uiElementType: Scalars['String'];
|
|
322
|
+
uiElementType: Scalars['String']['input'];
|
|
236
323
|
};
|
|
237
324
|
export type FormElementSettingsInput = {
|
|
238
|
-
key: Scalars['String'];
|
|
239
|
-
value: Scalars['Any'];
|
|
325
|
+
key: Scalars['String']['input'];
|
|
326
|
+
value: Scalars['Any']['input'];
|
|
240
327
|
};
|
|
241
328
|
export declare enum FormElementTypes {
|
|
242
329
|
field = "field",
|
|
@@ -247,22 +334,22 @@ export type FormElementsByDepsInput = {
|
|
|
247
334
|
elements: Array<FormElementInput>;
|
|
248
335
|
};
|
|
249
336
|
export type FormFiltersInput = {
|
|
250
|
-
id?: InputMaybe<Scalars['ID']>;
|
|
251
|
-
label?: InputMaybe<Scalars['String']>;
|
|
252
|
-
library: Scalars['ID'];
|
|
253
|
-
system?: InputMaybe<Scalars['Boolean']>;
|
|
337
|
+
id?: InputMaybe<Scalars['ID']['input']>;
|
|
338
|
+
label?: InputMaybe<Scalars['String']['input']>;
|
|
339
|
+
library: Scalars['ID']['input'];
|
|
340
|
+
system?: InputMaybe<Scalars['Boolean']['input']>;
|
|
254
341
|
};
|
|
255
342
|
export type FormInput = {
|
|
256
|
-
dependencyAttributes?: InputMaybe<Array<Scalars['ID']>>;
|
|
343
|
+
dependencyAttributes?: InputMaybe<Array<Scalars['ID']['input']>>;
|
|
257
344
|
elements?: InputMaybe<Array<FormElementsByDepsInput>>;
|
|
258
|
-
id: Scalars['ID'];
|
|
259
|
-
label?: InputMaybe<Scalars['SystemTranslation']>;
|
|
260
|
-
library: Scalars['ID'];
|
|
345
|
+
id: Scalars['ID']['input'];
|
|
346
|
+
label?: InputMaybe<Scalars['SystemTranslation']['input']>;
|
|
347
|
+
library: Scalars['ID']['input'];
|
|
261
348
|
sidePanel?: InputMaybe<FormSidePanelInput>;
|
|
262
349
|
};
|
|
263
350
|
export type FormSidePanelInput = {
|
|
264
|
-
enable: Scalars['Boolean'];
|
|
265
|
-
isOpenByDefault: Scalars['Boolean'];
|
|
351
|
+
enable: Scalars['Boolean']['input'];
|
|
352
|
+
isOpenByDefault: Scalars['Boolean']['input'];
|
|
266
353
|
};
|
|
267
354
|
export declare enum FormsSortableFields {
|
|
268
355
|
id = "id",
|
|
@@ -270,15 +357,15 @@ export declare enum FormsSortableFields {
|
|
|
270
357
|
system = "system"
|
|
271
358
|
}
|
|
272
359
|
export type GlobalSettingsFileInput = {
|
|
273
|
-
library: Scalars['String'];
|
|
274
|
-
recordId: Scalars['String'];
|
|
360
|
+
library: Scalars['String']['input'];
|
|
361
|
+
recordId: Scalars['String']['input'];
|
|
275
362
|
};
|
|
276
363
|
export type GlobalSettingsInput = {
|
|
277
|
-
defaultApp?: InputMaybe<Scalars['String']>;
|
|
364
|
+
defaultApp?: InputMaybe<Scalars['String']['input']>;
|
|
278
365
|
favicon?: InputMaybe<GlobalSettingsFileInput>;
|
|
279
366
|
icon?: InputMaybe<GlobalSettingsFileInput>;
|
|
280
|
-
name?: InputMaybe<Scalars['String']>;
|
|
281
|
-
settings?: InputMaybe<Scalars['JSONObject']>;
|
|
367
|
+
name?: InputMaybe<Scalars['String']['input']>;
|
|
368
|
+
settings?: InputMaybe<Scalars['JSONObject']['input']>;
|
|
282
369
|
};
|
|
283
370
|
export declare enum IoTypes {
|
|
284
371
|
boolean = "boolean",
|
|
@@ -298,9 +385,9 @@ export declare enum ImportType {
|
|
|
298
385
|
}
|
|
299
386
|
export type LibrariesFiltersInput = {
|
|
300
387
|
behavior?: InputMaybe<Array<LibraryBehavior>>;
|
|
301
|
-
id?: InputMaybe<Array<Scalars['ID']>>;
|
|
302
|
-
label?: InputMaybe<Array<Scalars['String']>>;
|
|
303
|
-
system?: InputMaybe<Scalars['Boolean']>;
|
|
388
|
+
id?: InputMaybe<Array<Scalars['ID']['input']>>;
|
|
389
|
+
label?: InputMaybe<Array<Scalars['String']['input']>>;
|
|
390
|
+
system?: InputMaybe<Scalars['Boolean']['input']>;
|
|
304
391
|
};
|
|
305
392
|
export declare enum LibrariesSortableFields {
|
|
306
393
|
behavior = "behavior",
|
|
@@ -314,26 +401,26 @@ export declare enum LibraryBehavior {
|
|
|
314
401
|
standard = "standard"
|
|
315
402
|
}
|
|
316
403
|
export type LibraryIconInput = {
|
|
317
|
-
libraryId: Scalars['String'];
|
|
318
|
-
recordId: Scalars['String'];
|
|
404
|
+
libraryId: Scalars['String']['input'];
|
|
405
|
+
recordId: Scalars['String']['input'];
|
|
319
406
|
};
|
|
320
407
|
export type LibraryInput = {
|
|
321
|
-
attributes?: InputMaybe<Array<Scalars['ID']>>;
|
|
408
|
+
attributes?: InputMaybe<Array<Scalars['ID']['input']>>;
|
|
322
409
|
behavior?: InputMaybe<LibraryBehavior>;
|
|
323
|
-
defaultView?: InputMaybe<Scalars['ID']>;
|
|
324
|
-
fullTextAttributes?: InputMaybe<Array<Scalars['ID']>>;
|
|
410
|
+
defaultView?: InputMaybe<Scalars['ID']['input']>;
|
|
411
|
+
fullTextAttributes?: InputMaybe<Array<Scalars['ID']['input']>>;
|
|
325
412
|
icon?: InputMaybe<LibraryIconInput>;
|
|
326
|
-
id: Scalars['ID'];
|
|
327
|
-
label?: InputMaybe<Scalars['SystemTranslation']>;
|
|
328
|
-
mandatoryAttribute?: InputMaybe<Scalars['ID']>;
|
|
413
|
+
id: Scalars['ID']['input'];
|
|
414
|
+
label?: InputMaybe<Scalars['SystemTranslation']['input']>;
|
|
415
|
+
mandatoryAttribute?: InputMaybe<Scalars['ID']['input']>;
|
|
329
416
|
permissions_conf?: InputMaybe<TreepermissionsConfInput>;
|
|
330
417
|
previewsSettings?: InputMaybe<Array<LibraryPreviewsSettingsInput>>;
|
|
331
418
|
recordIdentityConf?: InputMaybe<RecordIdentityConfInput>;
|
|
332
|
-
settings?: InputMaybe<Scalars['JSONObject']>;
|
|
419
|
+
settings?: InputMaybe<Scalars['JSONObject']['input']>;
|
|
333
420
|
};
|
|
334
421
|
export type LibraryPreviewsSettingsInput = {
|
|
335
|
-
description?: InputMaybe<Scalars['SystemTranslationOptional']>;
|
|
336
|
-
label: Scalars['SystemTranslation'];
|
|
422
|
+
description?: InputMaybe<Scalars['SystemTranslationOptional']['input']>;
|
|
423
|
+
label: Scalars['SystemTranslation']['input'];
|
|
337
424
|
versions: PreviewVersionInput;
|
|
338
425
|
};
|
|
339
426
|
export declare enum LogAction {
|
|
@@ -369,16 +456,16 @@ export declare enum LogAction {
|
|
|
369
456
|
}
|
|
370
457
|
export type LogFilterInput = {
|
|
371
458
|
actions?: InputMaybe<Array<LogAction>>;
|
|
372
|
-
instanceId?: InputMaybe<Scalars['String']>;
|
|
373
|
-
queryId?: InputMaybe<Scalars['String']>;
|
|
459
|
+
instanceId?: InputMaybe<Scalars['String']['input']>;
|
|
460
|
+
queryId?: InputMaybe<Scalars['String']['input']>;
|
|
374
461
|
time?: InputMaybe<LogFilterTimeInput>;
|
|
375
462
|
topic?: InputMaybe<LogTopicFilterInput>;
|
|
376
|
-
trigger?: InputMaybe<Scalars['String']>;
|
|
377
|
-
userId?: InputMaybe<Scalars['String']>;
|
|
463
|
+
trigger?: InputMaybe<Scalars['String']['input']>;
|
|
464
|
+
userId?: InputMaybe<Scalars['String']['input']>;
|
|
378
465
|
};
|
|
379
466
|
export type LogFilterTimeInput = {
|
|
380
|
-
from?: InputMaybe<Scalars['Int']>;
|
|
381
|
-
to?: InputMaybe<Scalars['Int']>;
|
|
467
|
+
from?: InputMaybe<Scalars['Int']['input']>;
|
|
468
|
+
to?: InputMaybe<Scalars['Int']['input']>;
|
|
382
469
|
};
|
|
383
470
|
export type LogSortInput = {
|
|
384
471
|
field: LogSortableField;
|
|
@@ -393,26 +480,26 @@ export declare enum LogSortableField {
|
|
|
393
480
|
userId = "userId"
|
|
394
481
|
}
|
|
395
482
|
export type LogTopicFilterInput = {
|
|
396
|
-
apiKey?: InputMaybe<Scalars['String']>;
|
|
397
|
-
attribute?: InputMaybe<Scalars['String']>;
|
|
398
|
-
filename?: InputMaybe<Scalars['String']>;
|
|
399
|
-
library?: InputMaybe<Scalars['String']>;
|
|
483
|
+
apiKey?: InputMaybe<Scalars['String']['input']>;
|
|
484
|
+
attribute?: InputMaybe<Scalars['String']['input']>;
|
|
485
|
+
filename?: InputMaybe<Scalars['String']['input']>;
|
|
486
|
+
library?: InputMaybe<Scalars['String']['input']>;
|
|
400
487
|
permission?: InputMaybe<LogTopicPermissionFilterInput>;
|
|
401
|
-
profile?: InputMaybe<Scalars['String']>;
|
|
488
|
+
profile?: InputMaybe<Scalars['String']['input']>;
|
|
402
489
|
record?: InputMaybe<LogTopicRecordFilterInput>;
|
|
403
|
-
tree?: InputMaybe<Scalars['String']>;
|
|
490
|
+
tree?: InputMaybe<Scalars['String']['input']>;
|
|
404
491
|
};
|
|
405
492
|
export type LogTopicPermissionFilterInput = {
|
|
406
|
-
applyTo?: InputMaybe<Scalars['String']>;
|
|
407
|
-
type?: InputMaybe<Scalars['String']>;
|
|
493
|
+
applyTo?: InputMaybe<Scalars['String']['input']>;
|
|
494
|
+
type?: InputMaybe<Scalars['String']['input']>;
|
|
408
495
|
};
|
|
409
496
|
export type LogTopicRecordFilterInput = {
|
|
410
|
-
id?: InputMaybe<Scalars['String']>;
|
|
411
|
-
libraryId?: InputMaybe<Scalars['String']>;
|
|
497
|
+
id?: InputMaybe<Scalars['String']['input']>;
|
|
498
|
+
libraryId?: InputMaybe<Scalars['String']['input']>;
|
|
412
499
|
};
|
|
413
500
|
export type MapValueInput = {
|
|
414
|
-
after?: InputMaybe<Scalars['ID']>;
|
|
415
|
-
before?: InputMaybe<Scalars['ID']>;
|
|
501
|
+
after?: InputMaybe<Scalars['ID']['input']>;
|
|
502
|
+
before?: InputMaybe<Scalars['ID']['input']>;
|
|
416
503
|
};
|
|
417
504
|
export declare enum MultiDisplayOption {
|
|
418
505
|
avatar = "avatar",
|
|
@@ -426,30 +513,32 @@ export declare enum NotificationLevel {
|
|
|
426
513
|
warning = "warning"
|
|
427
514
|
}
|
|
428
515
|
export type Pagination = {
|
|
429
|
-
limit: Scalars['Int'];
|
|
430
|
-
offset: Scalars['Int'];
|
|
516
|
+
limit: Scalars['Int']['input'];
|
|
517
|
+
offset: Scalars['Int']['input'];
|
|
431
518
|
};
|
|
432
519
|
export type PermissionActionInput = {
|
|
433
|
-
allowed?: InputMaybe<Scalars['Boolean']>;
|
|
520
|
+
allowed?: InputMaybe<Scalars['Boolean']['input']>;
|
|
434
521
|
name: PermissionsActions;
|
|
435
522
|
};
|
|
436
523
|
export type PermissionInput = {
|
|
437
524
|
actions: Array<PermissionActionInput>;
|
|
438
|
-
applyTo?: InputMaybe<Scalars['ID']>;
|
|
525
|
+
applyTo?: InputMaybe<Scalars['ID']['input']>;
|
|
526
|
+
dependenciesTreeTargets?: InputMaybe<Array<PermissionsDependenciesTreeTargetInput>>;
|
|
439
527
|
permissionTreeTarget?: InputMaybe<PermissionsTreeTargetInput>;
|
|
440
528
|
type: PermissionTypes;
|
|
441
|
-
usersGroup?: InputMaybe<Scalars['ID']>;
|
|
529
|
+
usersGroup?: InputMaybe<Scalars['ID']['input']>;
|
|
442
530
|
};
|
|
443
531
|
export type PermissionTarget = {
|
|
444
|
-
attributeId?: InputMaybe<Scalars['ID']>;
|
|
445
|
-
libraryId?: InputMaybe<Scalars['ID']>;
|
|
446
|
-
nodeId?: InputMaybe<Scalars['ID']>;
|
|
447
|
-
recordId?: InputMaybe<Scalars['ID']>;
|
|
532
|
+
attributeId?: InputMaybe<Scalars['ID']['input']>;
|
|
533
|
+
libraryId?: InputMaybe<Scalars['ID']['input']>;
|
|
534
|
+
nodeId?: InputMaybe<Scalars['ID']['input']>;
|
|
535
|
+
recordId?: InputMaybe<Scalars['ID']['input']>;
|
|
448
536
|
};
|
|
449
537
|
export declare enum PermissionTypes {
|
|
450
538
|
admin = "admin",
|
|
451
539
|
application = "application",
|
|
452
540
|
attribute = "attribute",
|
|
541
|
+
attribute_dependent_values = "attribute_dependent_values",
|
|
453
542
|
library = "library",
|
|
454
543
|
record = "record",
|
|
455
544
|
record_attribute = "record_attribute",
|
|
@@ -498,30 +587,37 @@ export declare enum PermissionsActions {
|
|
|
498
587
|
admin_edit_version_profile = "admin_edit_version_profile",
|
|
499
588
|
admin_import_config_clear_database = "admin_import_config_clear_database",
|
|
500
589
|
admin_library = "admin_library",
|
|
590
|
+
admin_list_plugins = "admin_list_plugins",
|
|
501
591
|
admin_manage_global_preferences = "admin_manage_global_preferences",
|
|
502
592
|
create_record = "create_record",
|
|
503
593
|
delete_record = "delete_record",
|
|
504
594
|
detach = "detach",
|
|
505
595
|
edit_children = "edit_children",
|
|
506
596
|
edit_record = "edit_record",
|
|
507
|
-
edit_value = "edit_value"
|
|
597
|
+
edit_value = "edit_value",
|
|
598
|
+
set_value = "set_value"
|
|
508
599
|
}
|
|
600
|
+
export type PermissionsDependenciesTreeTargetInput = {
|
|
601
|
+
attributeId: Scalars['ID']['input'];
|
|
602
|
+
nodeId?: InputMaybe<Scalars['ID']['input']>;
|
|
603
|
+
tree: Scalars['ID']['input'];
|
|
604
|
+
};
|
|
509
605
|
export declare enum PermissionsRelation {
|
|
510
606
|
and = "and",
|
|
511
607
|
or = "or"
|
|
512
608
|
}
|
|
513
609
|
export type PermissionsTreeTargetInput = {
|
|
514
|
-
nodeId?: InputMaybe<Scalars['ID']>;
|
|
515
|
-
tree: Scalars['ID'];
|
|
610
|
+
nodeId?: InputMaybe<Scalars['ID']['input']>;
|
|
611
|
+
tree: Scalars['ID']['input'];
|
|
516
612
|
};
|
|
517
613
|
export type PreviewVersionInput = {
|
|
518
|
-
background: Scalars['String'];
|
|
519
|
-
density: Scalars['Int'];
|
|
614
|
+
background: Scalars['String']['input'];
|
|
615
|
+
density: Scalars['Int']['input'];
|
|
520
616
|
sizes: Array<PreviewVersionSizeInput>;
|
|
521
617
|
};
|
|
522
618
|
export type PreviewVersionSizeInput = {
|
|
523
|
-
name: Scalars['String'];
|
|
524
|
-
size: Scalars['Int'];
|
|
619
|
+
name: Scalars['String']['input'];
|
|
620
|
+
size: Scalars['Int']['input'];
|
|
525
621
|
};
|
|
526
622
|
export declare enum RecordFilterCondition {
|
|
527
623
|
BEGIN_WITH = "BEGIN_WITH",
|
|
@@ -554,10 +650,11 @@ export declare enum RecordFilterCondition {
|
|
|
554
650
|
}
|
|
555
651
|
export type RecordFilterInput = {
|
|
556
652
|
condition?: InputMaybe<RecordFilterCondition>;
|
|
557
|
-
field?: InputMaybe<Scalars['String']>;
|
|
653
|
+
field?: InputMaybe<Scalars['String']['input']>;
|
|
558
654
|
operator?: InputMaybe<RecordFilterOperator>;
|
|
559
|
-
treeId?: InputMaybe<Scalars['String']>;
|
|
560
|
-
value?: InputMaybe<Scalars['String']>;
|
|
655
|
+
treeId?: InputMaybe<Scalars['String']['input']>;
|
|
656
|
+
value?: InputMaybe<Scalars['String']['input']>;
|
|
657
|
+
withEmptyValues?: InputMaybe<Scalars['Boolean']['input']>;
|
|
561
658
|
};
|
|
562
659
|
export declare enum RecordFilterOperator {
|
|
563
660
|
AND = "AND",
|
|
@@ -566,15 +663,16 @@ export declare enum RecordFilterOperator {
|
|
|
566
663
|
OR = "OR"
|
|
567
664
|
}
|
|
568
665
|
export type RecordIdentityConfInput = {
|
|
569
|
-
color?: InputMaybe<Scalars['ID']>;
|
|
570
|
-
label?: InputMaybe<Scalars['ID']>;
|
|
571
|
-
|
|
572
|
-
|
|
573
|
-
|
|
666
|
+
color?: InputMaybe<Scalars['ID']['input']>;
|
|
667
|
+
label?: InputMaybe<Scalars['ID']['input']>;
|
|
668
|
+
parentContext?: InputMaybe<Scalars['ID']['input']>;
|
|
669
|
+
preview?: InputMaybe<Scalars['ID']['input']>;
|
|
670
|
+
subLabel?: InputMaybe<Scalars['ID']['input']>;
|
|
671
|
+
treeColorPreview?: InputMaybe<Scalars['ID']['input']>;
|
|
574
672
|
};
|
|
575
673
|
export type RecordInput = {
|
|
576
|
-
id: Scalars['ID'];
|
|
577
|
-
library: Scalars['String'];
|
|
674
|
+
id: Scalars['ID']['input'];
|
|
675
|
+
library: Scalars['String']['input'];
|
|
578
676
|
};
|
|
579
677
|
export declare enum RecordPermissionsActions {
|
|
580
678
|
access_record = "access_record",
|
|
@@ -584,29 +682,32 @@ export declare enum RecordPermissionsActions {
|
|
|
584
682
|
edit_record = "edit_record"
|
|
585
683
|
}
|
|
586
684
|
export type RecordSortInput = {
|
|
587
|
-
field: Scalars['String'];
|
|
685
|
+
field: Scalars['String']['input'];
|
|
588
686
|
order: SortOrder;
|
|
589
687
|
};
|
|
590
688
|
export type RecordUpdateFilterInput = {
|
|
591
|
-
ignoreOwnEvents?: InputMaybe<Scalars['Boolean']>;
|
|
592
|
-
libraries?: InputMaybe<Array<Scalars['ID']>>;
|
|
593
|
-
records?: InputMaybe<Array<Scalars['ID']>>;
|
|
689
|
+
ignoreOwnEvents?: InputMaybe<Scalars['Boolean']['input']>;
|
|
690
|
+
libraries?: InputMaybe<Array<Scalars['ID']['input']>>;
|
|
691
|
+
records?: InputMaybe<Array<Scalars['ID']['input']>>;
|
|
594
692
|
};
|
|
595
693
|
export type RecordsPagination = {
|
|
596
|
-
cursor?: InputMaybe<Scalars['String']>;
|
|
597
|
-
limit: Scalars['Int'];
|
|
598
|
-
offset?: InputMaybe<Scalars['Int']>;
|
|
694
|
+
cursor?: InputMaybe<Scalars['String']['input']>;
|
|
695
|
+
limit: Scalars['Int']['input'];
|
|
696
|
+
offset?: InputMaybe<Scalars['Int']['input']>;
|
|
599
697
|
};
|
|
600
698
|
export type SheetInput = {
|
|
601
|
-
keyIndex?: InputMaybe<Scalars['Int']>;
|
|
602
|
-
keyToIndex?: InputMaybe<Scalars['Int']>;
|
|
603
|
-
library: Scalars['String'];
|
|
604
|
-
linkAttribute?: InputMaybe<Scalars['String']>;
|
|
605
|
-
mapping?: InputMaybe<Array<InputMaybe<Scalars['String']>>>;
|
|
699
|
+
keyIndex?: InputMaybe<Scalars['Int']['input']>;
|
|
700
|
+
keyToIndex?: InputMaybe<Scalars['Int']['input']>;
|
|
701
|
+
library: Scalars['String']['input'];
|
|
702
|
+
linkAttribute?: InputMaybe<Scalars['String']['input']>;
|
|
703
|
+
mapping?: InputMaybe<Array<InputMaybe<Scalars['String']['input']>>>;
|
|
606
704
|
mode: ImportMode;
|
|
607
|
-
treeLinkLibrary?: InputMaybe<Scalars['String']>;
|
|
705
|
+
treeLinkLibrary?: InputMaybe<Scalars['String']['input']>;
|
|
608
706
|
type: ImportType;
|
|
609
707
|
};
|
|
708
|
+
export type SmartFilterConfInput = {
|
|
709
|
+
enable: Scalars['Boolean']['input'];
|
|
710
|
+
};
|
|
610
711
|
export type SortApiKeysInput = {
|
|
611
712
|
field: ApiKeysSortableFields;
|
|
612
713
|
order?: InputMaybe<SortOrder>;
|
|
@@ -640,9 +741,9 @@ export type SortVersionProfilesInput = {
|
|
|
640
741
|
order?: InputMaybe<SortOrder>;
|
|
641
742
|
};
|
|
642
743
|
export type TaskFiltersInput = {
|
|
643
|
-
archive?: InputMaybe<Scalars['Boolean']>;
|
|
644
|
-
created_by?: InputMaybe<Scalars['ID']>;
|
|
645
|
-
id?: InputMaybe<Scalars['ID']>;
|
|
744
|
+
archive?: InputMaybe<Scalars['Boolean']['input']>;
|
|
745
|
+
created_by?: InputMaybe<Scalars['ID']['input']>;
|
|
746
|
+
id?: InputMaybe<Scalars['ID']['input']>;
|
|
646
747
|
status?: InputMaybe<TaskStatus>;
|
|
647
748
|
type?: InputMaybe<TaskType>;
|
|
648
749
|
};
|
|
@@ -660,6 +761,7 @@ export declare enum TaskType {
|
|
|
660
761
|
IMPORT_CONFIG = "IMPORT_CONFIG",
|
|
661
762
|
IMPORT_DATA = "IMPORT_DATA",
|
|
662
763
|
INDEXATION = "INDEXATION",
|
|
764
|
+
RENEW_CAMPAIGNS = "RENEW_CAMPAIGNS",
|
|
663
765
|
SAVE_VALUE_BULK = "SAVE_VALUE_BULK"
|
|
664
766
|
}
|
|
665
767
|
export declare enum TreeBehavior {
|
|
@@ -667,14 +769,14 @@ export declare enum TreeBehavior {
|
|
|
667
769
|
standard = "standard"
|
|
668
770
|
}
|
|
669
771
|
export type TreeElementInput = {
|
|
670
|
-
id: Scalars['ID'];
|
|
671
|
-
library: Scalars['String'];
|
|
772
|
+
id: Scalars['ID']['input'];
|
|
773
|
+
library: Scalars['String']['input'];
|
|
672
774
|
};
|
|
673
775
|
export type TreeEventFiltersInput = {
|
|
674
776
|
events?: InputMaybe<Array<TreeEventTypes>>;
|
|
675
|
-
ignoreOwnEvents?: InputMaybe<Scalars['Boolean']>;
|
|
676
|
-
nodes?: InputMaybe<Array<InputMaybe<Scalars['ID']>>>;
|
|
677
|
-
treeId: Scalars['ID'];
|
|
777
|
+
ignoreOwnEvents?: InputMaybe<Scalars['Boolean']['input']>;
|
|
778
|
+
nodes?: InputMaybe<Array<InputMaybe<Scalars['ID']['input']>>>;
|
|
779
|
+
treeId: Scalars['ID']['input'];
|
|
678
780
|
};
|
|
679
781
|
export declare enum TreeEventTypes {
|
|
680
782
|
add = "add",
|
|
@@ -683,35 +785,39 @@ export declare enum TreeEventTypes {
|
|
|
683
785
|
}
|
|
684
786
|
export type TreeInput = {
|
|
685
787
|
behavior?: InputMaybe<TreeBehavior>;
|
|
686
|
-
id: Scalars['ID'];
|
|
687
|
-
label?: InputMaybe<Scalars['SystemTranslation']>;
|
|
788
|
+
id: Scalars['ID']['input'];
|
|
789
|
+
label?: InputMaybe<Scalars['SystemTranslation']['input']>;
|
|
688
790
|
libraries?: InputMaybe<Array<TreeLibraryInput>>;
|
|
689
791
|
permissions_conf?: InputMaybe<Array<TreeNodePermissionsConfInput>>;
|
|
690
|
-
settings?: InputMaybe<Scalars['JSONObject']>;
|
|
792
|
+
settings?: InputMaybe<Scalars['JSONObject']['input']>;
|
|
691
793
|
};
|
|
692
794
|
export type TreeLibraryInput = {
|
|
693
|
-
library: Scalars['ID'];
|
|
795
|
+
library: Scalars['ID']['input'];
|
|
694
796
|
settings: TreeLibrarySettingsInput;
|
|
695
797
|
};
|
|
696
798
|
export type TreeLibrarySettingsInput = {
|
|
697
|
-
allowMultiplePositions: Scalars['Boolean'];
|
|
698
|
-
allowedAtRoot: Scalars['Boolean'];
|
|
699
|
-
allowedChildren: Array<Scalars['String']>;
|
|
799
|
+
allowMultiplePositions: Scalars['Boolean']['input'];
|
|
800
|
+
allowedAtRoot: Scalars['Boolean']['input'];
|
|
801
|
+
allowedChildren: Array<Scalars['String']['input']>;
|
|
700
802
|
};
|
|
701
803
|
export type TreeNodePermissionsConfInput = {
|
|
702
|
-
libraryId: Scalars['ID'];
|
|
804
|
+
libraryId: Scalars['ID']['input'];
|
|
703
805
|
permissionsConf: TreepermissionsConfInput;
|
|
704
806
|
};
|
|
807
|
+
export type TreePermissionsDependentValuesConfInput = {
|
|
808
|
+
allowByDefault: Scalars['Boolean']['input'];
|
|
809
|
+
dependenciesTreeAttributes: Array<Scalars['ID']['input']>;
|
|
810
|
+
};
|
|
705
811
|
export type TreepermissionsConfInput = {
|
|
706
|
-
permissionTreeAttributes: Array<Scalars['ID']>;
|
|
812
|
+
permissionTreeAttributes: Array<Scalars['ID']['input']>;
|
|
707
813
|
relation: PermissionsRelation;
|
|
708
814
|
};
|
|
709
815
|
export type TreesFiltersInput = {
|
|
710
816
|
behavior?: InputMaybe<TreeBehavior>;
|
|
711
|
-
id?: InputMaybe<Array<Scalars['ID']>>;
|
|
712
|
-
label?: InputMaybe<Array<Scalars['String']>>;
|
|
713
|
-
library?: InputMaybe<Scalars['String']>;
|
|
714
|
-
system?: InputMaybe<Scalars['Boolean']>;
|
|
817
|
+
id?: InputMaybe<Array<Scalars['ID']['input']>>;
|
|
818
|
+
label?: InputMaybe<Array<Scalars['String']['input']>>;
|
|
819
|
+
library?: InputMaybe<Scalars['String']['input']>;
|
|
820
|
+
system?: InputMaybe<Scalars['Boolean']['input']>;
|
|
715
821
|
};
|
|
716
822
|
export declare enum TreesSortableFields {
|
|
717
823
|
behavior = "behavior",
|
|
@@ -719,59 +825,59 @@ export declare enum TreesSortableFields {
|
|
|
719
825
|
system = "system"
|
|
720
826
|
}
|
|
721
827
|
export type UploadFiltersInput = {
|
|
722
|
-
uid?: InputMaybe<Scalars['String']>;
|
|
723
|
-
userId?: InputMaybe<Scalars['ID']>;
|
|
828
|
+
uid?: InputMaybe<Scalars['String']['input']>;
|
|
829
|
+
userId?: InputMaybe<Scalars['ID']['input']>;
|
|
724
830
|
};
|
|
725
831
|
export declare enum UserCoreDataKeys {
|
|
726
832
|
applications_consultation = "applications_consultation"
|
|
727
833
|
}
|
|
728
834
|
export type ValueBatchInput = {
|
|
729
|
-
attribute?: InputMaybe<Scalars['ID']>;
|
|
730
|
-
id_value?: InputMaybe<Scalars['ID']>;
|
|
835
|
+
attribute?: InputMaybe<Scalars['ID']['input']>;
|
|
836
|
+
id_value?: InputMaybe<Scalars['ID']['input']>;
|
|
731
837
|
metadata?: InputMaybe<Array<InputMaybe<ValueMetadataInput>>>;
|
|
732
838
|
/** Use "\__empty_value__" to set an empty value */
|
|
733
|
-
payload?: InputMaybe<Scalars['String']>;
|
|
839
|
+
payload?: InputMaybe<Scalars['String']['input']>;
|
|
734
840
|
};
|
|
735
841
|
export type ValueInput = {
|
|
736
|
-
id_value?: InputMaybe<Scalars['ID']>;
|
|
842
|
+
id_value?: InputMaybe<Scalars['ID']['input']>;
|
|
737
843
|
metadata?: InputMaybe<Array<InputMaybe<ValueMetadataInput>>>;
|
|
738
844
|
/** Use "\__empty_value__" to set an empty value */
|
|
739
|
-
payload?: InputMaybe<Scalars['String']>;
|
|
845
|
+
payload?: InputMaybe<Scalars['String']['input']>;
|
|
740
846
|
version?: InputMaybe<Array<InputMaybe<ValueVersionInput>>>;
|
|
741
847
|
};
|
|
742
848
|
export type ValueMetadataInput = {
|
|
743
|
-
name: Scalars['String'];
|
|
744
|
-
value?: InputMaybe<Scalars['String']>;
|
|
849
|
+
name: Scalars['String']['input'];
|
|
850
|
+
value?: InputMaybe<Scalars['String']['input']>;
|
|
745
851
|
};
|
|
746
852
|
export type ValueVersionInput = {
|
|
747
|
-
treeId: Scalars['String'];
|
|
748
|
-
treeNodeId: Scalars['String'];
|
|
853
|
+
treeId: Scalars['String']['input'];
|
|
854
|
+
treeNodeId: Scalars['String']['input'];
|
|
749
855
|
};
|
|
750
856
|
export declare enum ValueVersionMode {
|
|
751
857
|
simple = "simple",
|
|
752
858
|
smart = "smart"
|
|
753
859
|
}
|
|
754
860
|
export type ValuesListConfInput = {
|
|
755
|
-
allowFreeEntry?: InputMaybe<Scalars['Boolean']>;
|
|
756
|
-
allowListUpdate?: InputMaybe<Scalars['Boolean']>;
|
|
757
|
-
enable: Scalars['Boolean'];
|
|
758
|
-
values?: InputMaybe<Array<Scalars['String']>>;
|
|
861
|
+
allowFreeEntry?: InputMaybe<Scalars['Boolean']['input']>;
|
|
862
|
+
allowListUpdate?: InputMaybe<Scalars['Boolean']['input']>;
|
|
863
|
+
enable: Scalars['Boolean']['input'];
|
|
864
|
+
values?: InputMaybe<Array<Scalars['String']['input']>>;
|
|
759
865
|
};
|
|
760
866
|
export type ValuesVersionsConfInput = {
|
|
761
867
|
mode?: InputMaybe<ValueVersionMode>;
|
|
762
|
-
profile?: InputMaybe<Scalars['String']>;
|
|
763
|
-
versionable: Scalars['Boolean'];
|
|
868
|
+
profile?: InputMaybe<Scalars['String']['input']>;
|
|
869
|
+
versionable: Scalars['Boolean']['input'];
|
|
764
870
|
};
|
|
765
871
|
export type VersionProfileInput = {
|
|
766
|
-
description?: InputMaybe<Scalars['SystemTranslationOptional']>;
|
|
767
|
-
id: Scalars['String'];
|
|
768
|
-
label?: InputMaybe<Scalars['SystemTranslation']>;
|
|
769
|
-
trees?: InputMaybe<Array<Scalars['String']>>;
|
|
872
|
+
description?: InputMaybe<Scalars['SystemTranslationOptional']['input']>;
|
|
873
|
+
id: Scalars['String']['input'];
|
|
874
|
+
label?: InputMaybe<Scalars['SystemTranslation']['input']>;
|
|
875
|
+
trees?: InputMaybe<Array<Scalars['String']['input']>>;
|
|
770
876
|
};
|
|
771
877
|
export type VersionProfilesFiltersInput = {
|
|
772
|
-
id?: InputMaybe<Scalars['ID']>;
|
|
773
|
-
label?: InputMaybe<Scalars['String']>;
|
|
774
|
-
trees?: InputMaybe<Scalars['String']>;
|
|
878
|
+
id?: InputMaybe<Scalars['ID']['input']>;
|
|
879
|
+
label?: InputMaybe<Scalars['String']['input']>;
|
|
880
|
+
trees?: InputMaybe<Scalars['String']['input']>;
|
|
775
881
|
};
|
|
776
882
|
export declare enum VersionProfilesSortableFields {
|
|
777
883
|
id = "id"
|
|
@@ -781,28 +887,28 @@ export type ViewDisplayInput = {
|
|
|
781
887
|
type: ViewTypes;
|
|
782
888
|
};
|
|
783
889
|
export type ViewInput = {
|
|
784
|
-
attributes?: InputMaybe<Array<Scalars['String']>>;
|
|
785
|
-
color?: InputMaybe<Scalars['String']>;
|
|
786
|
-
description?: InputMaybe<Scalars['SystemTranslationOptional']>;
|
|
890
|
+
attributes?: InputMaybe<Array<Scalars['String']['input']>>;
|
|
891
|
+
color?: InputMaybe<Scalars['String']['input']>;
|
|
892
|
+
description?: InputMaybe<Scalars['SystemTranslationOptional']['input']>;
|
|
787
893
|
display: ViewDisplayInput;
|
|
788
894
|
filters?: InputMaybe<Array<RecordFilterInput>>;
|
|
789
|
-
id?: InputMaybe<Scalars['String']>;
|
|
790
|
-
label?: InputMaybe<Scalars['SystemTranslation']>;
|
|
791
|
-
library: Scalars['String'];
|
|
792
|
-
shared: Scalars['Boolean'];
|
|
895
|
+
id?: InputMaybe<Scalars['String']['input']>;
|
|
896
|
+
label?: InputMaybe<Scalars['SystemTranslation']['input']>;
|
|
897
|
+
library: Scalars['String']['input'];
|
|
898
|
+
shared: Scalars['Boolean']['input'];
|
|
793
899
|
sort?: InputMaybe<Array<RecordSortInput>>;
|
|
794
900
|
valuesVersions?: InputMaybe<Array<ViewValuesVersionInput>>;
|
|
795
901
|
};
|
|
796
902
|
export type ViewInputPartial = {
|
|
797
|
-
attributes?: InputMaybe<Array<Scalars['String']>>;
|
|
798
|
-
color?: InputMaybe<Scalars['String']>;
|
|
799
|
-
description?: InputMaybe<Scalars['SystemTranslationOptional']>;
|
|
903
|
+
attributes?: InputMaybe<Array<Scalars['String']['input']>>;
|
|
904
|
+
color?: InputMaybe<Scalars['String']['input']>;
|
|
905
|
+
description?: InputMaybe<Scalars['SystemTranslationOptional']['input']>;
|
|
800
906
|
display?: InputMaybe<ViewDisplayInput>;
|
|
801
907
|
filters?: InputMaybe<Array<RecordFilterInput>>;
|
|
802
|
-
id: Scalars['String'];
|
|
803
|
-
label?: InputMaybe<Scalars['SystemTranslation']>;
|
|
804
|
-
library?: InputMaybe<Scalars['String']>;
|
|
805
|
-
shared?: InputMaybe<Scalars['Boolean']>;
|
|
908
|
+
id: Scalars['String']['input'];
|
|
909
|
+
label?: InputMaybe<Scalars['SystemTranslation']['input']>;
|
|
910
|
+
library?: InputMaybe<Scalars['String']['input']>;
|
|
911
|
+
shared?: InputMaybe<Scalars['Boolean']['input']>;
|
|
806
912
|
sort?: InputMaybe<Array<RecordSortInput>>;
|
|
807
913
|
valuesVersions?: InputMaybe<Array<ViewValuesVersionInput>>;
|
|
808
914
|
};
|
|
@@ -817,8 +923,8 @@ export declare enum ViewTypes {
|
|
|
817
923
|
timeline = "timeline"
|
|
818
924
|
}
|
|
819
925
|
export type ViewValuesVersionInput = {
|
|
820
|
-
treeId: Scalars['String'];
|
|
821
|
-
treeNode: Scalars['String'];
|
|
926
|
+
treeId: Scalars['String']['input'];
|
|
927
|
+
treeNode: Scalars['String']['input'];
|
|
822
928
|
};
|
|
823
929
|
export type DetailsApplicationFragment = {
|
|
824
930
|
id: string;
|
|
@@ -955,6 +1061,11 @@ export type AttributeDetailsTreeAttributeFragment = {
|
|
|
955
1061
|
id: string;
|
|
956
1062
|
label?: any | null;
|
|
957
1063
|
} | null;
|
|
1064
|
+
permissions_conf_dependent_values?: {
|
|
1065
|
+
dependenciesTreeAttributes: Array<{
|
|
1066
|
+
id: string;
|
|
1067
|
+
}>;
|
|
1068
|
+
} | null;
|
|
958
1069
|
metadata_fields?: Array<{
|
|
959
1070
|
id: string;
|
|
960
1071
|
label?: any | null;
|
|
@@ -1098,6 +1209,7 @@ export type LibraryDetailsFragment = {
|
|
|
1098
1209
|
color?: string | null;
|
|
1099
1210
|
preview?: string | null;
|
|
1100
1211
|
treeColorPreview?: string | null;
|
|
1212
|
+
parentContext?: string | null;
|
|
1101
1213
|
} | null;
|
|
1102
1214
|
permissions?: {
|
|
1103
1215
|
admin_library: boolean;
|
|
@@ -3111,6 +3223,7 @@ export type ViewDetailsFragment = {
|
|
|
3111
3223
|
value?: string | null;
|
|
3112
3224
|
condition?: RecordFilterCondition | null;
|
|
3113
3225
|
operator?: RecordFilterOperator | null;
|
|
3226
|
+
withEmptyValues?: boolean | null;
|
|
3114
3227
|
tree?: {
|
|
3115
3228
|
id: string;
|
|
3116
3229
|
label?: any | null;
|
|
@@ -3149,11 +3262,31 @@ export type ViewDetailsFilterFragment = {
|
|
|
3149
3262
|
value?: string | null;
|
|
3150
3263
|
condition?: RecordFilterCondition | null;
|
|
3151
3264
|
operator?: RecordFilterOperator | null;
|
|
3265
|
+
withEmptyValues?: boolean | null;
|
|
3152
3266
|
tree?: {
|
|
3153
3267
|
id: string;
|
|
3154
3268
|
label?: any | null;
|
|
3155
3269
|
} | null;
|
|
3156
3270
|
};
|
|
3271
|
+
export type TreeAttributeForMassEditionFragment = {
|
|
3272
|
+
id: string;
|
|
3273
|
+
tree_values?: Array<{
|
|
3274
|
+
node?: {
|
|
3275
|
+
id: string;
|
|
3276
|
+
record: {
|
|
3277
|
+
id: string;
|
|
3278
|
+
whoAmI: {
|
|
3279
|
+
id: string;
|
|
3280
|
+
label?: string | null;
|
|
3281
|
+
color?: string | null;
|
|
3282
|
+
};
|
|
3283
|
+
};
|
|
3284
|
+
} | null;
|
|
3285
|
+
allowedDependentValues?: Array<{
|
|
3286
|
+
nodeId?: string | null;
|
|
3287
|
+
}> | null;
|
|
3288
|
+
}> | null;
|
|
3289
|
+
};
|
|
3157
3290
|
export type AttributesByLibAttributeWithPermissionsLinkAttributeFragment = {
|
|
3158
3291
|
id: string;
|
|
3159
3292
|
type: AttributeType;
|
|
@@ -3242,6 +3375,11 @@ export type AttributesByLibAttributeWithPermissionsTreeAttributeFragment = {
|
|
|
3242
3375
|
};
|
|
3243
3376
|
}>;
|
|
3244
3377
|
} | null;
|
|
3378
|
+
permissions_conf_dependent_values?: {
|
|
3379
|
+
dependenciesTreeAttributes: Array<{
|
|
3380
|
+
id: string;
|
|
3381
|
+
}>;
|
|
3382
|
+
} | null;
|
|
3245
3383
|
permissions: {
|
|
3246
3384
|
access_attribute: boolean;
|
|
3247
3385
|
};
|
|
@@ -3490,6 +3628,16 @@ export type RecordHistoryLogEntryFragment = {
|
|
|
3490
3628
|
type: AttributeType;
|
|
3491
3629
|
format?: AttributeFormat | null;
|
|
3492
3630
|
multiple_values: boolean;
|
|
3631
|
+
} | {
|
|
3632
|
+
id: string;
|
|
3633
|
+
label?: any | null;
|
|
3634
|
+
type: AttributeType;
|
|
3635
|
+
format?: AttributeFormat | null;
|
|
3636
|
+
multiple_values: boolean;
|
|
3637
|
+
embedded_fields?: Array<{
|
|
3638
|
+
id: string;
|
|
3639
|
+
label?: any | null;
|
|
3640
|
+
} | null> | null;
|
|
3493
3641
|
} | null;
|
|
3494
3642
|
} | null;
|
|
3495
3643
|
user: {
|
|
@@ -3514,16 +3662,28 @@ export type RecordHistoryLogEntryFragment = {
|
|
|
3514
3662
|
asString?: string | null;
|
|
3515
3663
|
} | null;
|
|
3516
3664
|
};
|
|
3517
|
-
export type
|
|
3665
|
+
export type RecordHistoryLogAttributeLinkAttributeTreeAttributeFragment = {
|
|
3518
3666
|
id: string;
|
|
3519
3667
|
label?: any | null;
|
|
3520
3668
|
type: AttributeType;
|
|
3521
3669
|
format?: AttributeFormat | null;
|
|
3522
3670
|
multiple_values: boolean;
|
|
3523
3671
|
};
|
|
3672
|
+
export type RecordHistoryLogAttributeStandardAttributeFragment = {
|
|
3673
|
+
id: string;
|
|
3674
|
+
label?: any | null;
|
|
3675
|
+
type: AttributeType;
|
|
3676
|
+
format?: AttributeFormat | null;
|
|
3677
|
+
multiple_values: boolean;
|
|
3678
|
+
embedded_fields?: Array<{
|
|
3679
|
+
id: string;
|
|
3680
|
+
label?: any | null;
|
|
3681
|
+
} | null> | null;
|
|
3682
|
+
};
|
|
3683
|
+
export type RecordHistoryLogAttributeFragment = RecordHistoryLogAttributeLinkAttributeTreeAttributeFragment | RecordHistoryLogAttributeStandardAttributeFragment;
|
|
3524
3684
|
export type CheckApplicationExistenceQueryVariables = Exact<{
|
|
3525
|
-
id?: InputMaybe<Scalars['ID']>;
|
|
3526
|
-
endpoint?: InputMaybe<Scalars['String']>;
|
|
3685
|
+
id?: InputMaybe<Scalars['ID']['input']>;
|
|
3686
|
+
endpoint?: InputMaybe<Scalars['String']['input']>;
|
|
3527
3687
|
}>;
|
|
3528
3688
|
export type CheckApplicationExistenceQuery = {
|
|
3529
3689
|
applications?: {
|
|
@@ -3531,7 +3691,7 @@ export type CheckApplicationExistenceQuery = {
|
|
|
3531
3691
|
} | null;
|
|
3532
3692
|
};
|
|
3533
3693
|
export type GetApplicationByIdQueryVariables = Exact<{
|
|
3534
|
-
id: Scalars['ID'];
|
|
3694
|
+
id: Scalars['ID']['input'];
|
|
3535
3695
|
}>;
|
|
3536
3696
|
export type GetApplicationByIdQuery = {
|
|
3537
3697
|
applications?: {
|
|
@@ -3611,7 +3771,7 @@ export type SaveApplicationMutation = {
|
|
|
3611
3771
|
};
|
|
3612
3772
|
};
|
|
3613
3773
|
export type CheckAttributeExistenceQueryVariables = Exact<{
|
|
3614
|
-
id: Scalars['ID'];
|
|
3774
|
+
id: Scalars['ID']['input'];
|
|
3615
3775
|
}>;
|
|
3616
3776
|
export type CheckAttributeExistenceQuery = {
|
|
3617
3777
|
attributes?: {
|
|
@@ -3619,7 +3779,7 @@ export type CheckAttributeExistenceQuery = {
|
|
|
3619
3779
|
} | null;
|
|
3620
3780
|
};
|
|
3621
3781
|
export type DeleteAttributeMutationVariables = Exact<{
|
|
3622
|
-
id?: InputMaybe<Scalars['ID']>;
|
|
3782
|
+
id?: InputMaybe<Scalars['ID']['input']>;
|
|
3623
3783
|
}>;
|
|
3624
3784
|
export type DeleteAttributeMutation = {
|
|
3625
3785
|
deleteAttribute: {
|
|
@@ -3627,7 +3787,7 @@ export type DeleteAttributeMutation = {
|
|
|
3627
3787
|
};
|
|
3628
3788
|
};
|
|
3629
3789
|
export type GetAttributeByIdQueryVariables = Exact<{
|
|
3630
|
-
id?: InputMaybe<Scalars['ID']>;
|
|
3790
|
+
id?: InputMaybe<Scalars['ID']['input']>;
|
|
3631
3791
|
}>;
|
|
3632
3792
|
export type GetAttributeByIdQuery = {
|
|
3633
3793
|
attributes?: {
|
|
@@ -3721,6 +3881,11 @@ export type GetAttributeByIdQuery = {
|
|
|
3721
3881
|
id: string;
|
|
3722
3882
|
label?: any | null;
|
|
3723
3883
|
} | null;
|
|
3884
|
+
permissions_conf_dependent_values?: {
|
|
3885
|
+
dependenciesTreeAttributes: Array<{
|
|
3886
|
+
id: string;
|
|
3887
|
+
}>;
|
|
3888
|
+
} | null;
|
|
3724
3889
|
metadata_fields?: Array<{
|
|
3725
3890
|
id: string;
|
|
3726
3891
|
label?: any | null;
|
|
@@ -3747,7 +3912,7 @@ export type GetAttributeByIdQuery = {
|
|
|
3747
3912
|
} | null;
|
|
3748
3913
|
};
|
|
3749
3914
|
export type GetAttributesByLibQueryVariables = Exact<{
|
|
3750
|
-
library: Scalars['String'];
|
|
3915
|
+
library: Scalars['String']['input'];
|
|
3751
3916
|
}>;
|
|
3752
3917
|
export type GetAttributesByLibQuery = {
|
|
3753
3918
|
attributes?: {
|
|
@@ -3826,7 +3991,7 @@ export type GetVersionProfilesQuery = {
|
|
|
3826
3991
|
};
|
|
3827
3992
|
};
|
|
3828
3993
|
export type GetVersionableAttributesByLibraryQueryVariables = Exact<{
|
|
3829
|
-
libraryId: Scalars['String'];
|
|
3994
|
+
libraryId: Scalars['String']['input'];
|
|
3830
3995
|
}>;
|
|
3831
3996
|
export type GetVersionableAttributesByLibraryQuery = {
|
|
3832
3997
|
attributes?: {
|
|
@@ -3939,6 +4104,11 @@ export type SaveAttributeMutation = {
|
|
|
3939
4104
|
id: string;
|
|
3940
4105
|
label?: any | null;
|
|
3941
4106
|
} | null;
|
|
4107
|
+
permissions_conf_dependent_values?: {
|
|
4108
|
+
dependenciesTreeAttributes: Array<{
|
|
4109
|
+
id: string;
|
|
4110
|
+
}>;
|
|
4111
|
+
} | null;
|
|
3942
4112
|
metadata_fields?: Array<{
|
|
3943
4113
|
id: string;
|
|
3944
4114
|
label?: any | null;
|
|
@@ -3964,17 +4134,17 @@ export type SaveAttributeMutation = {
|
|
|
3964
4134
|
};
|
|
3965
4135
|
};
|
|
3966
4136
|
export type ExportQueryVariables = Exact<{
|
|
3967
|
-
library: Scalars['ID'];
|
|
4137
|
+
library: Scalars['ID']['input'];
|
|
3968
4138
|
filters?: InputMaybe<Array<RecordFilterInput> | RecordFilterInput>;
|
|
3969
|
-
profile?: InputMaybe<Scalars['String']>;
|
|
4139
|
+
profile?: InputMaybe<Scalars['String']['input']>;
|
|
3970
4140
|
}>;
|
|
3971
4141
|
export type ExportQuery = {
|
|
3972
4142
|
export: string;
|
|
3973
4143
|
};
|
|
3974
4144
|
export type CreateDirectoryMutationVariables = Exact<{
|
|
3975
|
-
library: Scalars['String'];
|
|
3976
|
-
nodeId: Scalars['String'];
|
|
3977
|
-
name: Scalars['String'];
|
|
4145
|
+
library: Scalars['String']['input'];
|
|
4146
|
+
nodeId: Scalars['String']['input'];
|
|
4147
|
+
name: Scalars['String']['input'];
|
|
3978
4148
|
}>;
|
|
3979
4149
|
export type CreateDirectoryMutation = {
|
|
3980
4150
|
createDirectory: {
|
|
@@ -3993,18 +4163,18 @@ export type CreateDirectoryMutation = {
|
|
|
3993
4163
|
};
|
|
3994
4164
|
};
|
|
3995
4165
|
export type ForcePreviewsGenerationMutationVariables = Exact<{
|
|
3996
|
-
libraryId: Scalars['ID'];
|
|
4166
|
+
libraryId: Scalars['ID']['input'];
|
|
3997
4167
|
filters?: InputMaybe<Array<RecordFilterInput> | RecordFilterInput>;
|
|
3998
|
-
recordIds?: InputMaybe<Array<Scalars['ID']> | Scalars['ID']>;
|
|
3999
|
-
failedOnly?: InputMaybe<Scalars['Boolean']>;
|
|
4000
|
-
previewVersionSizeNames?: InputMaybe<Array<Scalars['String']> | Scalars['String']>;
|
|
4168
|
+
recordIds?: InputMaybe<Array<Scalars['ID']['input']> | Scalars['ID']['input']>;
|
|
4169
|
+
failedOnly?: InputMaybe<Scalars['Boolean']['input']>;
|
|
4170
|
+
previewVersionSizeNames?: InputMaybe<Array<Scalars['String']['input']> | Scalars['String']['input']>;
|
|
4001
4171
|
}>;
|
|
4002
4172
|
export type ForcePreviewsGenerationMutation = {
|
|
4003
4173
|
forcePreviewsGeneration: boolean;
|
|
4004
4174
|
};
|
|
4005
4175
|
export type GetDirectoryDataQueryVariables = Exact<{
|
|
4006
|
-
library: Scalars['ID'];
|
|
4007
|
-
directoryId: Scalars['String'];
|
|
4176
|
+
library: Scalars['ID']['input'];
|
|
4177
|
+
directoryId: Scalars['String']['input'];
|
|
4008
4178
|
}>;
|
|
4009
4179
|
export type GetDirectoryDataQuery = {
|
|
4010
4180
|
records: {
|
|
@@ -4091,8 +4261,8 @@ export type UploadUpdateSubscription = {
|
|
|
4091
4261
|
};
|
|
4092
4262
|
};
|
|
4093
4263
|
export type UploadMutationVariables = Exact<{
|
|
4094
|
-
library: Scalars['String'];
|
|
4095
|
-
nodeId: Scalars['String'];
|
|
4264
|
+
library: Scalars['String']['input'];
|
|
4265
|
+
nodeId: Scalars['String']['input'];
|
|
4096
4266
|
files: Array<FileInput> | FileInput;
|
|
4097
4267
|
}>;
|
|
4098
4268
|
export type UploadMutation = {
|
|
@@ -4115,15 +4285,15 @@ export type UploadMutation = {
|
|
|
4115
4285
|
}>;
|
|
4116
4286
|
};
|
|
4117
4287
|
export type ImportExcelMutationVariables = Exact<{
|
|
4118
|
-
file: Scalars['Upload'];
|
|
4288
|
+
file: Scalars['Upload']['input'];
|
|
4119
4289
|
sheets?: InputMaybe<Array<InputMaybe<SheetInput>> | InputMaybe<SheetInput>>;
|
|
4120
|
-
startAt?: InputMaybe<Scalars['Int']>;
|
|
4290
|
+
startAt?: InputMaybe<Scalars['Int']['input']>;
|
|
4121
4291
|
}>;
|
|
4122
4292
|
export type ImportExcelMutation = {
|
|
4123
4293
|
importExcel: string;
|
|
4124
4294
|
};
|
|
4125
4295
|
export type CheckLibraryExistenceQueryVariables = Exact<{
|
|
4126
|
-
id?: InputMaybe<Array<Scalars['ID']> | Scalars['ID']>;
|
|
4296
|
+
id?: InputMaybe<Array<Scalars['ID']['input']> | Scalars['ID']['input']>;
|
|
4127
4297
|
}>;
|
|
4128
4298
|
export type CheckLibraryExistenceQuery = {
|
|
4129
4299
|
libraries?: {
|
|
@@ -4131,7 +4301,7 @@ export type CheckLibraryExistenceQuery = {
|
|
|
4131
4301
|
} | null;
|
|
4132
4302
|
};
|
|
4133
4303
|
export type DeleteLibraryMutationVariables = Exact<{
|
|
4134
|
-
id?: InputMaybe<Scalars['ID']>;
|
|
4304
|
+
id?: InputMaybe<Scalars['ID']['input']>;
|
|
4135
4305
|
}>;
|
|
4136
4306
|
export type DeleteLibraryMutation = {
|
|
4137
4307
|
deleteLibrary: {
|
|
@@ -4160,7 +4330,7 @@ export type GetLibrariesQuery = {
|
|
|
4160
4330
|
} | null;
|
|
4161
4331
|
};
|
|
4162
4332
|
export type GetLibraryByIdQueryVariables = Exact<{
|
|
4163
|
-
id?: InputMaybe<Array<Scalars['ID']> | Scalars['ID']>;
|
|
4333
|
+
id?: InputMaybe<Array<Scalars['ID']['input']> | Scalars['ID']['input']>;
|
|
4164
4334
|
}>;
|
|
4165
4335
|
export type GetLibraryByIdQuery = {
|
|
4166
4336
|
libraries?: {
|
|
@@ -4218,6 +4388,7 @@ export type GetLibraryByIdQuery = {
|
|
|
4218
4388
|
color?: string | null;
|
|
4219
4389
|
preview?: string | null;
|
|
4220
4390
|
treeColorPreview?: string | null;
|
|
4391
|
+
parentContext?: string | null;
|
|
4221
4392
|
} | null;
|
|
4222
4393
|
permissions?: {
|
|
4223
4394
|
admin_library: boolean;
|
|
@@ -4258,7 +4429,7 @@ export type GetLibraryByIdQuery = {
|
|
|
4258
4429
|
} | null;
|
|
4259
4430
|
};
|
|
4260
4431
|
export type GetLibraryPermissionsQueryVariables = Exact<{
|
|
4261
|
-
libraryId?: InputMaybe<Array<Scalars['ID']> | Scalars['ID']>;
|
|
4432
|
+
libraryId?: InputMaybe<Array<Scalars['ID']['input']> | Scalars['ID']['input']>;
|
|
4262
4433
|
}>;
|
|
4263
4434
|
export type GetLibraryPermissionsQuery = {
|
|
4264
4435
|
libraries?: {
|
|
@@ -4274,7 +4445,7 @@ export type GetLibraryPermissionsQuery = {
|
|
|
4274
4445
|
} | null;
|
|
4275
4446
|
};
|
|
4276
4447
|
export type GetLibraryPreviewsSettingsQueryVariables = Exact<{
|
|
4277
|
-
id: Scalars['ID'];
|
|
4448
|
+
id: Scalars['ID']['input'];
|
|
4278
4449
|
}>;
|
|
4279
4450
|
export type GetLibraryPreviewsSettingsQuery = {
|
|
4280
4451
|
libraries?: {
|
|
@@ -4283,8 +4454,8 @@ export type GetLibraryPreviewsSettingsQuery = {
|
|
|
4283
4454
|
label?: any | null;
|
|
4284
4455
|
behavior: LibraryBehavior;
|
|
4285
4456
|
previewsSettings?: Array<{
|
|
4286
|
-
description?: any | null;
|
|
4287
4457
|
label: any;
|
|
4458
|
+
description?: any | null;
|
|
4288
4459
|
system: boolean;
|
|
4289
4460
|
versions: {
|
|
4290
4461
|
background: string;
|
|
@@ -4356,6 +4527,7 @@ export type SaveLibraryMutation = {
|
|
|
4356
4527
|
color?: string | null;
|
|
4357
4528
|
preview?: string | null;
|
|
4358
4529
|
treeColorPreview?: string | null;
|
|
4530
|
+
parentContext?: string | null;
|
|
4359
4531
|
} | null;
|
|
4360
4532
|
permissions?: {
|
|
4361
4533
|
admin_library: boolean;
|
|
@@ -4397,7 +4569,7 @@ export type SaveLibraryMutation = {
|
|
|
4397
4569
|
export type IsAllowedQueryVariables = Exact<{
|
|
4398
4570
|
type: PermissionTypes;
|
|
4399
4571
|
actions: Array<PermissionsActions> | PermissionsActions;
|
|
4400
|
-
applyTo?: InputMaybe<Scalars['ID']>;
|
|
4572
|
+
applyTo?: InputMaybe<Scalars['ID']['input']>;
|
|
4401
4573
|
target?: InputMaybe<PermissionTarget>;
|
|
4402
4574
|
}>;
|
|
4403
4575
|
export type IsAllowedQuery = {
|
|
@@ -4407,9 +4579,9 @@ export type IsAllowedQuery = {
|
|
|
4407
4579
|
}> | null;
|
|
4408
4580
|
};
|
|
4409
4581
|
export type ActivateNewRecordMutationVariables = Exact<{
|
|
4410
|
-
libraryId: Scalars['ID'];
|
|
4411
|
-
recordId: Scalars['ID'];
|
|
4412
|
-
formId?: InputMaybe<Scalars['String']>;
|
|
4582
|
+
libraryId: Scalars['ID']['input'];
|
|
4583
|
+
recordId: Scalars['ID']['input'];
|
|
4584
|
+
formId?: InputMaybe<Scalars['String']['input']>;
|
|
4413
4585
|
}>;
|
|
4414
4586
|
export type ActivateNewRecordMutation = {
|
|
4415
4587
|
activateNewRecord: {
|
|
@@ -4436,8 +4608,8 @@ export type ActivateNewRecordMutation = {
|
|
|
4436
4608
|
};
|
|
4437
4609
|
};
|
|
4438
4610
|
export type ActivateRecordsMutationVariables = Exact<{
|
|
4439
|
-
libraryId: Scalars['String'];
|
|
4440
|
-
recordsIds?: InputMaybe<Array<Scalars['String']> | Scalars['String']>;
|
|
4611
|
+
libraryId: Scalars['String']['input'];
|
|
4612
|
+
recordsIds?: InputMaybe<Array<Scalars['String']['input']> | Scalars['String']['input']>;
|
|
4441
4613
|
filters?: InputMaybe<Array<RecordFilterInput> | RecordFilterInput>;
|
|
4442
4614
|
}>;
|
|
4443
4615
|
export type ActivateRecordsMutation = {
|
|
@@ -4457,7 +4629,7 @@ export type ActivateRecordsMutation = {
|
|
|
4457
4629
|
}>;
|
|
4458
4630
|
};
|
|
4459
4631
|
export type CreateEmptyRecordMutationVariables = Exact<{
|
|
4460
|
-
library: Scalars['ID'];
|
|
4632
|
+
library: Scalars['ID']['input'];
|
|
4461
4633
|
}>;
|
|
4462
4634
|
export type CreateEmptyRecordMutation = {
|
|
4463
4635
|
createEmptyRecord: {
|
|
@@ -4478,7 +4650,7 @@ export type CreateEmptyRecordMutation = {
|
|
|
4478
4650
|
};
|
|
4479
4651
|
};
|
|
4480
4652
|
export type CreateRecordMutationVariables = Exact<{
|
|
4481
|
-
library: Scalars['ID'];
|
|
4653
|
+
library: Scalars['ID']['input'];
|
|
4482
4654
|
data?: InputMaybe<CreateRecordDataInput>;
|
|
4483
4655
|
}>;
|
|
4484
4656
|
export type CreateRecordMutation = {
|
|
@@ -4506,8 +4678,8 @@ export type CreateRecordMutation = {
|
|
|
4506
4678
|
};
|
|
4507
4679
|
};
|
|
4508
4680
|
export type DeactivateRecordsMutationVariables = Exact<{
|
|
4509
|
-
libraryId: Scalars['String'];
|
|
4510
|
-
recordsIds?: InputMaybe<Array<Scalars['String']> | Scalars['String']>;
|
|
4681
|
+
libraryId: Scalars['String']['input'];
|
|
4682
|
+
recordsIds?: InputMaybe<Array<Scalars['String']['input']> | Scalars['String']['input']>;
|
|
4511
4683
|
filters?: InputMaybe<Array<RecordFilterInput> | RecordFilterInput>;
|
|
4512
4684
|
}>;
|
|
4513
4685
|
export type DeactivateRecordsMutation = {
|
|
@@ -4527,17 +4699,17 @@ export type DeactivateRecordsMutation = {
|
|
|
4527
4699
|
}>;
|
|
4528
4700
|
};
|
|
4529
4701
|
export type DoesFileExistAsChildQueryVariables = Exact<{
|
|
4530
|
-
parentNode?: InputMaybe<Scalars['ID']>;
|
|
4531
|
-
treeId: Scalars['ID'];
|
|
4532
|
-
filename: Scalars['String'];
|
|
4702
|
+
parentNode?: InputMaybe<Scalars['ID']['input']>;
|
|
4703
|
+
treeId: Scalars['ID']['input'];
|
|
4704
|
+
filename: Scalars['String']['input'];
|
|
4533
4705
|
}>;
|
|
4534
4706
|
export type DoesFileExistAsChildQuery = {
|
|
4535
4707
|
doesFileExistAsChild?: boolean | null;
|
|
4536
4708
|
};
|
|
4537
4709
|
export type GetFileDataQueryVariables = Exact<{
|
|
4538
|
-
library: Scalars['ID'];
|
|
4539
|
-
fileId: Scalars['String'];
|
|
4540
|
-
previewsStatusAttribute: Scalars['ID'];
|
|
4710
|
+
library: Scalars['ID']['input'];
|
|
4711
|
+
fileId: Scalars['String']['input'];
|
|
4712
|
+
previewsStatusAttribute: Scalars['ID']['input'];
|
|
4541
4713
|
}>;
|
|
4542
4714
|
export type GetFileDataQuery = {
|
|
4543
4715
|
records: {
|
|
@@ -4608,9 +4780,9 @@ export type GetFileDataQuery = {
|
|
|
4608
4780
|
};
|
|
4609
4781
|
};
|
|
4610
4782
|
export type RecordFormQueryVariables = Exact<{
|
|
4611
|
-
libraryId: Scalars['String'];
|
|
4612
|
-
formId: Scalars['String'];
|
|
4613
|
-
recordId?: InputMaybe<Scalars['String']>;
|
|
4783
|
+
libraryId: Scalars['String']['input'];
|
|
4784
|
+
formId: Scalars['String']['input'];
|
|
4785
|
+
recordId?: InputMaybe<Scalars['String']['input']>;
|
|
4614
4786
|
version?: InputMaybe<Array<ValueVersionInput> | ValueVersionInput>;
|
|
4615
4787
|
}>;
|
|
4616
4788
|
export type RecordFormQuery = {
|
|
@@ -5953,7 +6125,7 @@ export type RecordUpdateSubscription = {
|
|
|
5953
6125
|
};
|
|
5954
6126
|
};
|
|
5955
6127
|
export type GetRecordsFromLibraryQueryVariables = Exact<{
|
|
5956
|
-
libraryId: Scalars['ID'];
|
|
6128
|
+
libraryId: Scalars['ID']['input'];
|
|
5957
6129
|
pagination?: InputMaybe<RecordsPagination>;
|
|
5958
6130
|
filters?: InputMaybe<Array<InputMaybe<RecordFilterInput>> | InputMaybe<RecordFilterInput>>;
|
|
5959
6131
|
}>;
|
|
@@ -5977,15 +6149,15 @@ export type GetRecordsFromLibraryQuery = {
|
|
|
5977
6149
|
};
|
|
5978
6150
|
};
|
|
5979
6151
|
export type IndexRecordsMutationVariables = Exact<{
|
|
5980
|
-
libraryId: Scalars['String'];
|
|
5981
|
-
records?: InputMaybe<Array<Scalars['String']> | Scalars['String']>;
|
|
6152
|
+
libraryId: Scalars['String']['input'];
|
|
6153
|
+
records?: InputMaybe<Array<Scalars['String']['input']> | Scalars['String']['input']>;
|
|
5982
6154
|
}>;
|
|
5983
6155
|
export type IndexRecordsMutation = {
|
|
5984
6156
|
indexRecords: boolean;
|
|
5985
6157
|
};
|
|
5986
6158
|
export type PurgeRecordMutationVariables = Exact<{
|
|
5987
|
-
libraryId: Scalars['ID'];
|
|
5988
|
-
recordId: Scalars['ID'];
|
|
6159
|
+
libraryId: Scalars['ID']['input'];
|
|
6160
|
+
recordId: Scalars['ID']['input'];
|
|
5989
6161
|
}>;
|
|
5990
6162
|
export type PurgeRecordMutation = {
|
|
5991
6163
|
purgeRecord: {
|
|
@@ -6004,13 +6176,13 @@ export type PurgeRecordMutation = {
|
|
|
6004
6176
|
};
|
|
6005
6177
|
};
|
|
6006
6178
|
export type CancelTaskMutationVariables = Exact<{
|
|
6007
|
-
taskId: Scalars['ID'];
|
|
6179
|
+
taskId: Scalars['ID']['input'];
|
|
6008
6180
|
}>;
|
|
6009
6181
|
export type CancelTaskMutation = {
|
|
6010
6182
|
cancelTask: boolean;
|
|
6011
6183
|
};
|
|
6012
6184
|
export type CheckTreeExistenceQueryVariables = Exact<{
|
|
6013
|
-
id?: InputMaybe<Array<Scalars['ID']> | Scalars['ID']>;
|
|
6185
|
+
id?: InputMaybe<Array<Scalars['ID']['input']> | Scalars['ID']['input']>;
|
|
6014
6186
|
}>;
|
|
6015
6187
|
export type CheckTreeExistenceQuery = {
|
|
6016
6188
|
trees?: {
|
|
@@ -6018,7 +6190,7 @@ export type CheckTreeExistenceQuery = {
|
|
|
6018
6190
|
} | null;
|
|
6019
6191
|
};
|
|
6020
6192
|
export type DeleteTreeMutationVariables = Exact<{
|
|
6021
|
-
id: Scalars['ID'];
|
|
6193
|
+
id: Scalars['ID']['input'];
|
|
6022
6194
|
}>;
|
|
6023
6195
|
export type DeleteTreeMutation = {
|
|
6024
6196
|
deleteTree: {
|
|
@@ -6026,7 +6198,7 @@ export type DeleteTreeMutation = {
|
|
|
6026
6198
|
};
|
|
6027
6199
|
};
|
|
6028
6200
|
export type GetTreeByIdQueryVariables = Exact<{
|
|
6029
|
-
id?: InputMaybe<Array<Scalars['ID']> | Scalars['ID']>;
|
|
6201
|
+
id?: InputMaybe<Array<Scalars['ID']['input']> | Scalars['ID']['input']>;
|
|
6030
6202
|
}>;
|
|
6031
6203
|
export type GetTreeByIdQuery = {
|
|
6032
6204
|
trees?: {
|
|
@@ -6050,8 +6222,8 @@ export type GetTreeByIdQuery = {
|
|
|
6050
6222
|
} | null;
|
|
6051
6223
|
};
|
|
6052
6224
|
export type GetTreeLibrariesQueryVariables = Exact<{
|
|
6053
|
-
treeId?: InputMaybe<Array<Scalars['ID']> | Scalars['ID']>;
|
|
6054
|
-
library?: InputMaybe<Scalars['String']>;
|
|
6225
|
+
treeId?: InputMaybe<Array<Scalars['ID']['input']> | Scalars['ID']['input']>;
|
|
6226
|
+
library?: InputMaybe<Scalars['String']['input']>;
|
|
6055
6227
|
}>;
|
|
6056
6228
|
export type GetTreeLibrariesQuery = {
|
|
6057
6229
|
trees?: {
|
|
@@ -6069,8 +6241,8 @@ export type GetTreeLibrariesQuery = {
|
|
|
6069
6241
|
};
|
|
6070
6242
|
settings: {
|
|
6071
6243
|
allowMultiplePositions: boolean;
|
|
6072
|
-
allowedChildren: Array<string>;
|
|
6073
6244
|
allowedAtRoot: boolean;
|
|
6245
|
+
allowedChildren: Array<string>;
|
|
6074
6246
|
};
|
|
6075
6247
|
}>;
|
|
6076
6248
|
}>;
|
|
@@ -6110,10 +6282,11 @@ export type SaveTreeMutation = {
|
|
|
6110
6282
|
};
|
|
6111
6283
|
};
|
|
6112
6284
|
export type TreeNodeChildrenQueryVariables = Exact<{
|
|
6113
|
-
treeId: Scalars['ID'];
|
|
6114
|
-
node?: InputMaybe<Scalars['ID']>;
|
|
6285
|
+
treeId: Scalars['ID']['input'];
|
|
6286
|
+
node?: InputMaybe<Scalars['ID']['input']>;
|
|
6115
6287
|
pagination?: InputMaybe<Pagination>;
|
|
6116
6288
|
childrenAsRecordValuePermissionFilter?: InputMaybe<ChildrenAsRecordValuePermissionFilterInput>;
|
|
6289
|
+
dependentValuesPermissionFilter?: InputMaybe<DependentValuesPermissionFilterInput>;
|
|
6117
6290
|
}>;
|
|
6118
6291
|
export type TreeNodeChildrenQuery = {
|
|
6119
6292
|
treeNodeChildren: {
|
|
@@ -6124,6 +6297,9 @@ export type TreeNodeChildrenQuery = {
|
|
|
6124
6297
|
childrenCount?: number | null;
|
|
6125
6298
|
record: {
|
|
6126
6299
|
id: string;
|
|
6300
|
+
active: Array<{
|
|
6301
|
+
value?: any | null;
|
|
6302
|
+
}>;
|
|
6127
6303
|
whoAmI: {
|
|
6128
6304
|
id: string;
|
|
6129
6305
|
label?: string | null;
|
|
@@ -6135,9 +6311,68 @@ export type TreeNodeChildrenQuery = {
|
|
|
6135
6311
|
label?: any | null;
|
|
6136
6312
|
};
|
|
6137
6313
|
};
|
|
6314
|
+
};
|
|
6315
|
+
ancestors?: Array<{
|
|
6316
|
+
id: string;
|
|
6317
|
+
record: {
|
|
6318
|
+
id: string;
|
|
6319
|
+
library: {
|
|
6320
|
+
id: string;
|
|
6321
|
+
label?: any | null;
|
|
6322
|
+
};
|
|
6323
|
+
whoAmI: {
|
|
6324
|
+
id: string;
|
|
6325
|
+
label?: string | null;
|
|
6326
|
+
subLabel?: string | null;
|
|
6327
|
+
color?: string | null;
|
|
6328
|
+
preview?: IPreviewScalar | null;
|
|
6329
|
+
library: {
|
|
6330
|
+
id: string;
|
|
6331
|
+
label?: any | null;
|
|
6332
|
+
};
|
|
6333
|
+
};
|
|
6334
|
+
};
|
|
6335
|
+
}> | null;
|
|
6336
|
+
permissions: {
|
|
6337
|
+
access_tree: boolean;
|
|
6338
|
+
detach: boolean;
|
|
6339
|
+
edit_children: boolean;
|
|
6340
|
+
};
|
|
6341
|
+
}>;
|
|
6342
|
+
};
|
|
6343
|
+
};
|
|
6344
|
+
export type GetTreeNodeChildrenWithAccessByDefaultPermissionQueryQueryVariables = Exact<{
|
|
6345
|
+
treeId: Scalars['ID']['input'];
|
|
6346
|
+
node?: InputMaybe<Scalars['ID']['input']>;
|
|
6347
|
+
pagination?: InputMaybe<Pagination>;
|
|
6348
|
+
childrenAsRecordValuePermissionFilter?: InputMaybe<ChildrenAsRecordValuePermissionFilterInput>;
|
|
6349
|
+
dependentValuesPermissionFilter?: InputMaybe<DependentValuesPermissionFilterInput>;
|
|
6350
|
+
accessRecordByDefaultPermission?: InputMaybe<AccessRecordByDefaultPermissionInput>;
|
|
6351
|
+
}>;
|
|
6352
|
+
export type GetTreeNodeChildrenWithAccessByDefaultPermissionQueryQuery = {
|
|
6353
|
+
treeNodeChildren: {
|
|
6354
|
+
totalCount?: number | null;
|
|
6355
|
+
list: Array<{
|
|
6356
|
+
id: string;
|
|
6357
|
+
order?: number | null;
|
|
6358
|
+
childrenCount?: number | null;
|
|
6359
|
+
accessRecordByDefaultPermission?: boolean | null;
|
|
6360
|
+
record: {
|
|
6361
|
+
id: string;
|
|
6138
6362
|
active: Array<{
|
|
6139
6363
|
value?: any | null;
|
|
6140
6364
|
}>;
|
|
6365
|
+
whoAmI: {
|
|
6366
|
+
id: string;
|
|
6367
|
+
label?: string | null;
|
|
6368
|
+
subLabel?: string | null;
|
|
6369
|
+
color?: string | null;
|
|
6370
|
+
preview?: IPreviewScalar | null;
|
|
6371
|
+
library: {
|
|
6372
|
+
id: string;
|
|
6373
|
+
label?: any | null;
|
|
6374
|
+
};
|
|
6375
|
+
};
|
|
6141
6376
|
};
|
|
6142
6377
|
ancestors?: Array<{
|
|
6143
6378
|
id: string;
|
|
@@ -6169,8 +6404,8 @@ export type TreeNodeChildrenQuery = {
|
|
|
6169
6404
|
};
|
|
6170
6405
|
};
|
|
6171
6406
|
export type GetUserDataQueryVariables = Exact<{
|
|
6172
|
-
keys: Array<Scalars['String']> | Scalars['String'];
|
|
6173
|
-
global?: InputMaybe<Scalars['Boolean']>;
|
|
6407
|
+
keys: Array<Scalars['String']['input']> | Scalars['String']['input'];
|
|
6408
|
+
global?: InputMaybe<Scalars['Boolean']['input']>;
|
|
6174
6409
|
}>;
|
|
6175
6410
|
export type GetUserDataQuery = {
|
|
6176
6411
|
userData: {
|
|
@@ -6179,9 +6414,9 @@ export type GetUserDataQuery = {
|
|
|
6179
6414
|
};
|
|
6180
6415
|
};
|
|
6181
6416
|
export type SaveUserDataMutationVariables = Exact<{
|
|
6182
|
-
key: Scalars['String'];
|
|
6183
|
-
value?: InputMaybe<Scalars['Any']>;
|
|
6184
|
-
global: Scalars['Boolean'];
|
|
6417
|
+
key: Scalars['String']['input'];
|
|
6418
|
+
value?: InputMaybe<Scalars['Any']['input']>;
|
|
6419
|
+
global: Scalars['Boolean']['input'];
|
|
6185
6420
|
}>;
|
|
6186
6421
|
export type SaveUserDataMutation = {
|
|
6187
6422
|
saveUserData: {
|
|
@@ -6190,9 +6425,9 @@ export type SaveUserDataMutation = {
|
|
|
6190
6425
|
};
|
|
6191
6426
|
};
|
|
6192
6427
|
export type DeleteValueMutationVariables = Exact<{
|
|
6193
|
-
library: Scalars['ID'];
|
|
6194
|
-
recordId: Scalars['ID'];
|
|
6195
|
-
attribute: Scalars['ID'];
|
|
6428
|
+
library: Scalars['ID']['input'];
|
|
6429
|
+
recordId: Scalars['ID']['input'];
|
|
6430
|
+
attribute: Scalars['ID']['input'];
|
|
6196
6431
|
value?: InputMaybe<ValueInput>;
|
|
6197
6432
|
}>;
|
|
6198
6433
|
export type DeleteValueMutation = {
|
|
@@ -6580,11 +6815,11 @@ export type DeleteValueMutation = {
|
|
|
6580
6815
|
}>;
|
|
6581
6816
|
};
|
|
6582
6817
|
export type SaveValueBatchMutationVariables = Exact<{
|
|
6583
|
-
library: Scalars['ID'];
|
|
6584
|
-
recordId: Scalars['ID'];
|
|
6818
|
+
library: Scalars['ID']['input'];
|
|
6819
|
+
recordId: Scalars['ID']['input'];
|
|
6585
6820
|
version?: InputMaybe<Array<ValueVersionInput> | ValueVersionInput>;
|
|
6586
6821
|
values: Array<ValueBatchInput> | ValueBatchInput;
|
|
6587
|
-
deleteEmpty?: InputMaybe<Scalars['Boolean']>;
|
|
6822
|
+
deleteEmpty?: InputMaybe<Scalars['Boolean']['input']>;
|
|
6588
6823
|
}>;
|
|
6589
6824
|
export type SaveValueBatchMutation = {
|
|
6590
6825
|
saveValueBatch: {
|
|
@@ -6979,16 +7214,16 @@ export type SaveValueBatchMutation = {
|
|
|
6979
7214
|
};
|
|
6980
7215
|
};
|
|
6981
7216
|
export type SaveValueBulkMutationVariables = Exact<{
|
|
6982
|
-
libraryId: Scalars['ID'];
|
|
7217
|
+
libraryId: Scalars['ID']['input'];
|
|
6983
7218
|
recordsFilters: Array<InputMaybe<RecordFilterInput>> | InputMaybe<RecordFilterInput>;
|
|
6984
|
-
attributeId: Scalars['ID'];
|
|
7219
|
+
attributeId: Scalars['ID']['input'];
|
|
6985
7220
|
mapValues: Array<MapValueInput> | MapValueInput;
|
|
6986
7221
|
}>;
|
|
6987
7222
|
export type SaveValueBulkMutation = {
|
|
6988
7223
|
saveValueBulk: string;
|
|
6989
7224
|
};
|
|
6990
7225
|
export type DeleteViewMutationVariables = Exact<{
|
|
6991
|
-
viewId: Scalars['String'];
|
|
7226
|
+
viewId: Scalars['String']['input'];
|
|
6992
7227
|
}>;
|
|
6993
7228
|
export type DeleteViewMutation = {
|
|
6994
7229
|
deleteView: {
|
|
@@ -6997,7 +7232,7 @@ export type DeleteViewMutation = {
|
|
|
6997
7232
|
};
|
|
6998
7233
|
};
|
|
6999
7234
|
export type GetViewQueryVariables = Exact<{
|
|
7000
|
-
viewId: Scalars['String'];
|
|
7235
|
+
viewId: Scalars['String']['input'];
|
|
7001
7236
|
}>;
|
|
7002
7237
|
export type GetViewQuery = {
|
|
7003
7238
|
view: {
|
|
@@ -7025,6 +7260,7 @@ export type GetViewQuery = {
|
|
|
7025
7260
|
value?: string | null;
|
|
7026
7261
|
condition?: RecordFilterCondition | null;
|
|
7027
7262
|
operator?: RecordFilterOperator | null;
|
|
7263
|
+
withEmptyValues?: boolean | null;
|
|
7028
7264
|
tree?: {
|
|
7029
7265
|
id: string;
|
|
7030
7266
|
label?: any | null;
|
|
@@ -7060,7 +7296,7 @@ export type GetViewQuery = {
|
|
|
7060
7296
|
};
|
|
7061
7297
|
};
|
|
7062
7298
|
export type GetViewsListQueryVariables = Exact<{
|
|
7063
|
-
libraryId: Scalars['String'];
|
|
7299
|
+
libraryId: Scalars['String']['input'];
|
|
7064
7300
|
}>;
|
|
7065
7301
|
export type GetViewsListQuery = {
|
|
7066
7302
|
views: {
|
|
@@ -7090,6 +7326,7 @@ export type GetViewsListQuery = {
|
|
|
7090
7326
|
value?: string | null;
|
|
7091
7327
|
condition?: RecordFilterCondition | null;
|
|
7092
7328
|
operator?: RecordFilterOperator | null;
|
|
7329
|
+
withEmptyValues?: boolean | null;
|
|
7093
7330
|
tree?: {
|
|
7094
7331
|
id: string;
|
|
7095
7332
|
label?: any | null;
|
|
@@ -7154,6 +7391,7 @@ export type SaveViewMutation = {
|
|
|
7154
7391
|
value?: string | null;
|
|
7155
7392
|
condition?: RecordFilterCondition | null;
|
|
7156
7393
|
operator?: RecordFilterOperator | null;
|
|
7394
|
+
withEmptyValues?: boolean | null;
|
|
7157
7395
|
tree?: {
|
|
7158
7396
|
id: string;
|
|
7159
7397
|
label?: any | null;
|
|
@@ -7188,30 +7426,34 @@ export type SaveViewMutation = {
|
|
|
7188
7426
|
}> | null;
|
|
7189
7427
|
};
|
|
7190
7428
|
};
|
|
7191
|
-
export type
|
|
7192
|
-
|
|
7193
|
-
accessRecordByDefaultPermission?: InputMaybe<AccessRecordByDefaultPermissionInput>;
|
|
7429
|
+
export type AttributeWithValuesForMassEditionQueryVariables = Exact<{
|
|
7430
|
+
attributeId: Scalars['ID']['input'];
|
|
7194
7431
|
}>;
|
|
7195
|
-
export type
|
|
7196
|
-
|
|
7432
|
+
export type AttributeWithValuesForMassEditionQuery = {
|
|
7433
|
+
attributes?: {
|
|
7197
7434
|
list: Array<{
|
|
7198
|
-
accessRecordByDefaultPermission?: boolean | null;
|
|
7199
7435
|
id: string;
|
|
7200
|
-
|
|
7201
|
-
|
|
7202
|
-
whoAmI: {
|
|
7203
|
-
label?: string | null;
|
|
7436
|
+
tree_values?: Array<{
|
|
7437
|
+
node?: {
|
|
7204
7438
|
id: string;
|
|
7205
|
-
|
|
7439
|
+
record: {
|
|
7206
7440
|
id: string;
|
|
7441
|
+
whoAmI: {
|
|
7442
|
+
id: string;
|
|
7443
|
+
label?: string | null;
|
|
7444
|
+
color?: string | null;
|
|
7445
|
+
};
|
|
7207
7446
|
};
|
|
7208
|
-
};
|
|
7209
|
-
|
|
7447
|
+
} | null;
|
|
7448
|
+
allowedDependentValues?: Array<{
|
|
7449
|
+
nodeId?: string | null;
|
|
7450
|
+
}> | null;
|
|
7451
|
+
}> | null;
|
|
7210
7452
|
}>;
|
|
7211
|
-
};
|
|
7453
|
+
} | null;
|
|
7212
7454
|
};
|
|
7213
7455
|
export type GetAttributesByLibWithPermissionsQueryVariables = Exact<{
|
|
7214
|
-
library: Scalars['String'];
|
|
7456
|
+
library: Scalars['String']['input'];
|
|
7215
7457
|
}>;
|
|
7216
7458
|
export type GetAttributesByLibWithPermissionsQuery = {
|
|
7217
7459
|
attributes?: {
|
|
@@ -7301,6 +7543,11 @@ export type GetAttributesByLibWithPermissionsQuery = {
|
|
|
7301
7543
|
};
|
|
7302
7544
|
}>;
|
|
7303
7545
|
} | null;
|
|
7546
|
+
permissions_conf_dependent_values?: {
|
|
7547
|
+
dependenciesTreeAttributes: Array<{
|
|
7548
|
+
id: string;
|
|
7549
|
+
}>;
|
|
7550
|
+
} | null;
|
|
7304
7551
|
permissions: {
|
|
7305
7552
|
access_attribute: boolean;
|
|
7306
7553
|
};
|
|
@@ -7308,7 +7555,7 @@ export type GetAttributesByLibWithPermissionsQuery = {
|
|
|
7308
7555
|
} | null;
|
|
7309
7556
|
};
|
|
7310
7557
|
export type ExplorerAttributesQueryVariables = Exact<{
|
|
7311
|
-
ids?: InputMaybe<Array<Scalars['ID']> | Scalars['ID']>;
|
|
7558
|
+
ids?: InputMaybe<Array<Scalars['ID']['input']> | Scalars['ID']['input']>;
|
|
7312
7559
|
}>;
|
|
7313
7560
|
export type ExplorerAttributesQuery = {
|
|
7314
7561
|
attributes?: {
|
|
@@ -7373,7 +7620,7 @@ export type ExplorerAttributesQuery = {
|
|
|
7373
7620
|
} | null;
|
|
7374
7621
|
};
|
|
7375
7622
|
export type ExplorerLinkAttributeQueryVariables = Exact<{
|
|
7376
|
-
id: Scalars['ID'];
|
|
7623
|
+
id: Scalars['ID']['input'];
|
|
7377
7624
|
}>;
|
|
7378
7625
|
export type ExplorerLinkAttributeQuery = {
|
|
7379
7626
|
attributes?: {
|
|
@@ -7427,8 +7674,8 @@ export type ExplorerLinkAttributeQuery = {
|
|
|
7427
7674
|
} | null;
|
|
7428
7675
|
};
|
|
7429
7676
|
export type CountValuesOccurrencesQueryVariables = Exact<{
|
|
7430
|
-
library: Scalars['ID'];
|
|
7431
|
-
attribute: Scalars['ID'];
|
|
7677
|
+
library: Scalars['ID']['input'];
|
|
7678
|
+
attribute: Scalars['ID']['input'];
|
|
7432
7679
|
recordFilters?: InputMaybe<Array<InputMaybe<RecordFilterInput>> | InputMaybe<RecordFilterInput>>;
|
|
7433
7680
|
}>;
|
|
7434
7681
|
export type CountValuesOccurrencesQuery = {
|
|
@@ -7443,12 +7690,12 @@ export type CountValuesOccurrencesQuery = {
|
|
|
7443
7690
|
} | null;
|
|
7444
7691
|
};
|
|
7445
7692
|
export type ExplorerLibraryDataQueryVariables = Exact<{
|
|
7446
|
-
libraryId: Scalars['ID'];
|
|
7447
|
-
attributeIds: Array<Scalars['ID']> | Scalars['ID'];
|
|
7693
|
+
libraryId: Scalars['ID']['input'];
|
|
7694
|
+
attributeIds: Array<Scalars['ID']['input']> | Scalars['ID']['input'];
|
|
7448
7695
|
pagination?: InputMaybe<RecordsPagination>;
|
|
7449
7696
|
filters?: InputMaybe<Array<InputMaybe<RecordFilterInput>> | InputMaybe<RecordFilterInput>>;
|
|
7450
7697
|
multipleSort?: InputMaybe<Array<RecordSortInput> | RecordSortInput>;
|
|
7451
|
-
searchQuery?: InputMaybe<Scalars['String']>;
|
|
7698
|
+
searchQuery?: InputMaybe<Scalars['String']['input']>;
|
|
7452
7699
|
}>;
|
|
7453
7700
|
export type ExplorerLibraryDataQuery = {
|
|
7454
7701
|
records: {
|
|
@@ -7523,10 +7770,10 @@ export type ExplorerLibraryDataQuery = {
|
|
|
7523
7770
|
};
|
|
7524
7771
|
};
|
|
7525
7772
|
export type ExplorerLinkDataQueryVariables = Exact<{
|
|
7526
|
-
attributeIds: Array<Scalars['ID']> | Scalars['ID'];
|
|
7527
|
-
parentLibraryId: Scalars['ID'];
|
|
7528
|
-
parentRecordId?: InputMaybe<Scalars['String']>;
|
|
7529
|
-
linkAttributeId: Scalars['ID'];
|
|
7773
|
+
attributeIds: Array<Scalars['ID']['input']> | Scalars['ID']['input'];
|
|
7774
|
+
parentLibraryId: Scalars['ID']['input'];
|
|
7775
|
+
parentRecordId?: InputMaybe<Scalars['String']['input']>;
|
|
7776
|
+
linkAttributeId: Scalars['ID']['input'];
|
|
7530
7777
|
}>;
|
|
7531
7778
|
export type ExplorerLinkDataQuery = {
|
|
7532
7779
|
records: {
|
|
@@ -7542,17 +7789,6 @@ export type ExplorerLinkDataQuery = {
|
|
|
7542
7789
|
id_value?: string | null;
|
|
7543
7790
|
payload?: {
|
|
7544
7791
|
id: string;
|
|
7545
|
-
whoAmI: {
|
|
7546
|
-
id: string;
|
|
7547
|
-
label?: string | null;
|
|
7548
|
-
subLabel?: string | null;
|
|
7549
|
-
color?: string | null;
|
|
7550
|
-
preview?: IPreviewScalar | null;
|
|
7551
|
-
library: {
|
|
7552
|
-
id: string;
|
|
7553
|
-
label?: any | null;
|
|
7554
|
-
};
|
|
7555
|
-
};
|
|
7556
7792
|
properties: Array<{
|
|
7557
7793
|
attributeId: string;
|
|
7558
7794
|
attributeProperties: {
|
|
@@ -7601,6 +7837,17 @@ export type ExplorerLinkDataQuery = {
|
|
|
7601
7837
|
valueRawPayload?: any | null;
|
|
7602
7838
|
}>;
|
|
7603
7839
|
}>;
|
|
7840
|
+
whoAmI: {
|
|
7841
|
+
id: string;
|
|
7842
|
+
label?: string | null;
|
|
7843
|
+
subLabel?: string | null;
|
|
7844
|
+
color?: string | null;
|
|
7845
|
+
preview?: IPreviewScalar | null;
|
|
7846
|
+
library: {
|
|
7847
|
+
id: string;
|
|
7848
|
+
label?: any | null;
|
|
7849
|
+
};
|
|
7850
|
+
};
|
|
7604
7851
|
} | null;
|
|
7605
7852
|
} | {
|
|
7606
7853
|
id_value?: string | null;
|
|
@@ -7609,7 +7856,7 @@ export type ExplorerLinkDataQuery = {
|
|
|
7609
7856
|
};
|
|
7610
7857
|
};
|
|
7611
7858
|
export type GetLibraryAttributesQueryVariables = Exact<{
|
|
7612
|
-
libraryId: Scalars['ID'];
|
|
7859
|
+
libraryId: Scalars['ID']['input'];
|
|
7613
7860
|
}>;
|
|
7614
7861
|
export type GetLibraryAttributesQuery = {
|
|
7615
7862
|
libraries?: {
|
|
@@ -7652,7 +7899,7 @@ export type GetLibraryAttributesQuery = {
|
|
|
7652
7899
|
} | null;
|
|
7653
7900
|
};
|
|
7654
7901
|
export type ExplorerLibraryDetailsQueryVariables = Exact<{
|
|
7655
|
-
libraryId: Scalars['ID'];
|
|
7902
|
+
libraryId: Scalars['ID']['input'];
|
|
7656
7903
|
}>;
|
|
7657
7904
|
export type ExplorerLibraryDetailsQuery = {
|
|
7658
7905
|
libraries?: {
|
|
@@ -7666,8 +7913,31 @@ export type ExplorerLibraryDetailsQuery = {
|
|
|
7666
7913
|
}>;
|
|
7667
7914
|
} | null;
|
|
7668
7915
|
};
|
|
7916
|
+
export type LibraryExportProfilesQueryVariables = Exact<{
|
|
7917
|
+
libraryId?: InputMaybe<Array<Scalars['ID']['input']> | Scalars['ID']['input']>;
|
|
7918
|
+
}>;
|
|
7919
|
+
export type LibraryExportProfilesQuery = {
|
|
7920
|
+
libraries?: {
|
|
7921
|
+
list: Array<{
|
|
7922
|
+
id: string;
|
|
7923
|
+
exportProfiles?: {
|
|
7924
|
+
defaultProfile: string;
|
|
7925
|
+
profiles: Array<{
|
|
7926
|
+
label: string;
|
|
7927
|
+
columns: Array<{
|
|
7928
|
+
columnLabel: string;
|
|
7929
|
+
attribute: string;
|
|
7930
|
+
}>;
|
|
7931
|
+
error?: {
|
|
7932
|
+
message: string;
|
|
7933
|
+
} | null;
|
|
7934
|
+
}>;
|
|
7935
|
+
} | null;
|
|
7936
|
+
}>;
|
|
7937
|
+
} | null;
|
|
7938
|
+
};
|
|
7669
7939
|
export type ExplorerSelectionIdsQueryVariables = Exact<{
|
|
7670
|
-
libraryId: Scalars['ID'];
|
|
7940
|
+
libraryId: Scalars['ID']['input'];
|
|
7671
7941
|
filters?: InputMaybe<Array<InputMaybe<RecordFilterInput>> | InputMaybe<RecordFilterInput>>;
|
|
7672
7942
|
}>;
|
|
7673
7943
|
export type ExplorerSelectionIdsQuery = {
|
|
@@ -7720,6 +7990,7 @@ export type UpdateViewMutation = {
|
|
|
7720
7990
|
value?: string | null;
|
|
7721
7991
|
condition?: RecordFilterCondition | null;
|
|
7722
7992
|
operator?: RecordFilterOperator | null;
|
|
7993
|
+
withEmptyValues?: boolean | null;
|
|
7723
7994
|
tree?: {
|
|
7724
7995
|
id: string;
|
|
7725
7996
|
label?: any | null;
|
|
@@ -7759,10 +8030,11 @@ export type NotificationSubscriptionVariables = Exact<{
|
|
|
7759
8030
|
}>;
|
|
7760
8031
|
export type NotificationSubscription = {
|
|
7761
8032
|
notification: {
|
|
8033
|
+
id: string;
|
|
8034
|
+
date: number;
|
|
7762
8035
|
level: NotificationLevel;
|
|
7763
8036
|
message: string;
|
|
7764
8037
|
title: string;
|
|
7765
|
-
date: number;
|
|
7766
8038
|
attachments?: Array<{
|
|
7767
8039
|
label: string;
|
|
7768
8040
|
url: string;
|
|
@@ -7775,7 +8047,7 @@ export type NotificationSubscription = {
|
|
|
7775
8047
|
};
|
|
7776
8048
|
export type GetRecordHistoryQueryVariables = Exact<{
|
|
7777
8049
|
record: LogTopicRecordFilterInput;
|
|
7778
|
-
attributeId?: InputMaybe<Scalars['String']>;
|
|
8050
|
+
attributeId?: InputMaybe<Scalars['String']['input']>;
|
|
7779
8051
|
actions?: InputMaybe<Array<LogAction> | LogAction>;
|
|
7780
8052
|
pagination?: InputMaybe<Pagination>;
|
|
7781
8053
|
}>;
|
|
@@ -7792,6 +8064,16 @@ export type GetRecordHistoryQuery = {
|
|
|
7792
8064
|
type: AttributeType;
|
|
7793
8065
|
format?: AttributeFormat | null;
|
|
7794
8066
|
multiple_values: boolean;
|
|
8067
|
+
} | {
|
|
8068
|
+
id: string;
|
|
8069
|
+
label?: any | null;
|
|
8070
|
+
type: AttributeType;
|
|
8071
|
+
format?: AttributeFormat | null;
|
|
8072
|
+
multiple_values: boolean;
|
|
8073
|
+
embedded_fields?: Array<{
|
|
8074
|
+
id: string;
|
|
8075
|
+
label?: any | null;
|
|
8076
|
+
} | null> | null;
|
|
7795
8077
|
} | null;
|
|
7796
8078
|
} | null;
|
|
7797
8079
|
user: {
|
|
@@ -7819,7 +8101,7 @@ export type GetRecordHistoryQuery = {
|
|
|
7819
8101
|
} | null;
|
|
7820
8102
|
};
|
|
7821
8103
|
export type TreeDataQueryQueryVariables = Exact<{
|
|
7822
|
-
treeId: Scalars['ID'];
|
|
8104
|
+
treeId: Scalars['ID']['input'];
|
|
7823
8105
|
}>;
|
|
7824
8106
|
export type TreeDataQueryQuery = {
|
|
7825
8107
|
trees?: {
|
|
@@ -7851,6 +8133,7 @@ export declare const TreeDetailsFragmentDoc: Apollo.DocumentNode;
|
|
|
7851
8133
|
export declare const TreeNodeChildFragmentDoc: Apollo.DocumentNode;
|
|
7852
8134
|
export declare const ViewDetailsFilterFragmentDoc: Apollo.DocumentNode;
|
|
7853
8135
|
export declare const ViewDetailsFragmentDoc: Apollo.DocumentNode;
|
|
8136
|
+
export declare const TreeAttributeForMassEditionFragmentDoc: Apollo.DocumentNode;
|
|
7854
8137
|
export declare const AttributesByLibLinkAttributeWithPermissionsFragmentDoc: Apollo.DocumentNode;
|
|
7855
8138
|
export declare const AttributesByLibAttributeWithPermissionsFragmentDoc: Apollo.DocumentNode;
|
|
7856
8139
|
export declare const LinkAttributeDetailsFragmentDoc: Apollo.DocumentNode;
|
|
@@ -7882,17 +8165,15 @@ export declare const CheckApplicationExistenceDocument: Apollo.DocumentNode;
|
|
|
7882
8165
|
* });
|
|
7883
8166
|
*/
|
|
7884
8167
|
export declare function useCheckApplicationExistenceQuery(baseOptions?: Apollo.QueryHookOptions<CheckApplicationExistenceQuery, CheckApplicationExistenceQueryVariables>): Apollo.QueryResult<CheckApplicationExistenceQuery, Exact<{
|
|
7885
|
-
id?: InputMaybe<Scalars["ID"]>;
|
|
7886
|
-
endpoint?: InputMaybe<Scalars["String"]>;
|
|
8168
|
+
id?: InputMaybe<Scalars["ID"]["input"]>;
|
|
8169
|
+
endpoint?: InputMaybe<Scalars["String"]["input"]>;
|
|
7887
8170
|
}>>;
|
|
7888
8171
|
export declare function useCheckApplicationExistenceLazyQuery(baseOptions?: Apollo.LazyQueryHookOptions<CheckApplicationExistenceQuery, CheckApplicationExistenceQueryVariables>): Apollo.LazyQueryResultTuple<CheckApplicationExistenceQuery, Exact<{
|
|
7889
|
-
id?: InputMaybe<Scalars["ID"]>;
|
|
7890
|
-
endpoint?: InputMaybe<Scalars["String"]>;
|
|
7891
|
-
}>>;
|
|
7892
|
-
export declare function useCheckApplicationExistenceSuspenseQuery(baseOptions?: Apollo.SuspenseQueryHookOptions<CheckApplicationExistenceQuery, CheckApplicationExistenceQueryVariables>): Apollo.UseSuspenseQueryResult<CheckApplicationExistenceQuery, Exact<{
|
|
7893
|
-
id?: InputMaybe<Scalars["ID"]>;
|
|
7894
|
-
endpoint?: InputMaybe<Scalars["String"]>;
|
|
8172
|
+
id?: InputMaybe<Scalars["ID"]["input"]>;
|
|
8173
|
+
endpoint?: InputMaybe<Scalars["String"]["input"]>;
|
|
7895
8174
|
}>>;
|
|
8175
|
+
export declare function useCheckApplicationExistenceSuspenseQuery(baseOptions?: Apollo.SuspenseQueryHookOptions<CheckApplicationExistenceQuery, CheckApplicationExistenceQueryVariables>): Apollo.UseSuspenseQueryResult<CheckApplicationExistenceQuery, CheckApplicationExistenceQueryVariables>;
|
|
8176
|
+
export declare function useCheckApplicationExistenceSuspenseQuery(baseOptions?: Apollo.SkipToken | Apollo.SuspenseQueryHookOptions<CheckApplicationExistenceQuery, CheckApplicationExistenceQueryVariables>): Apollo.UseSuspenseQueryResult<CheckApplicationExistenceQuery | undefined, CheckApplicationExistenceQueryVariables>;
|
|
7896
8177
|
export type CheckApplicationExistenceQueryHookResult = ReturnType<typeof useCheckApplicationExistenceQuery>;
|
|
7897
8178
|
export type CheckApplicationExistenceLazyQueryHookResult = ReturnType<typeof useCheckApplicationExistenceLazyQuery>;
|
|
7898
8179
|
export type CheckApplicationExistenceSuspenseQueryHookResult = ReturnType<typeof useCheckApplicationExistenceSuspenseQuery>;
|
|
@@ -7914,15 +8195,19 @@ export declare const GetApplicationByIdDocument: Apollo.DocumentNode;
|
|
|
7914
8195
|
* },
|
|
7915
8196
|
* });
|
|
7916
8197
|
*/
|
|
7917
|
-
export declare function useGetApplicationByIdQuery(baseOptions: Apollo.QueryHookOptions<GetApplicationByIdQuery, GetApplicationByIdQueryVariables>
|
|
7918
|
-
|
|
8198
|
+
export declare function useGetApplicationByIdQuery(baseOptions: Apollo.QueryHookOptions<GetApplicationByIdQuery, GetApplicationByIdQueryVariables> & ({
|
|
8199
|
+
variables: GetApplicationByIdQueryVariables;
|
|
8200
|
+
skip?: boolean;
|
|
8201
|
+
} | {
|
|
8202
|
+
skip: boolean;
|
|
8203
|
+
})): Apollo.QueryResult<GetApplicationByIdQuery, Exact<{
|
|
8204
|
+
id: Scalars["ID"]["input"];
|
|
7919
8205
|
}>>;
|
|
7920
8206
|
export declare function useGetApplicationByIdLazyQuery(baseOptions?: Apollo.LazyQueryHookOptions<GetApplicationByIdQuery, GetApplicationByIdQueryVariables>): Apollo.LazyQueryResultTuple<GetApplicationByIdQuery, Exact<{
|
|
7921
|
-
id: Scalars["ID"];
|
|
7922
|
-
}>>;
|
|
7923
|
-
export declare function useGetApplicationByIdSuspenseQuery(baseOptions?: Apollo.SuspenseQueryHookOptions<GetApplicationByIdQuery, GetApplicationByIdQueryVariables>): Apollo.UseSuspenseQueryResult<GetApplicationByIdQuery, Exact<{
|
|
7924
|
-
id: Scalars["ID"];
|
|
8207
|
+
id: Scalars["ID"]["input"];
|
|
7925
8208
|
}>>;
|
|
8209
|
+
export declare function useGetApplicationByIdSuspenseQuery(baseOptions?: Apollo.SuspenseQueryHookOptions<GetApplicationByIdQuery, GetApplicationByIdQueryVariables>): Apollo.UseSuspenseQueryResult<GetApplicationByIdQuery, GetApplicationByIdQueryVariables>;
|
|
8210
|
+
export declare function useGetApplicationByIdSuspenseQuery(baseOptions?: Apollo.SkipToken | Apollo.SuspenseQueryHookOptions<GetApplicationByIdQuery, GetApplicationByIdQueryVariables>): Apollo.UseSuspenseQueryResult<GetApplicationByIdQuery | undefined, GetApplicationByIdQueryVariables>;
|
|
7926
8211
|
export type GetApplicationByIdQueryHookResult = ReturnType<typeof useGetApplicationByIdQuery>;
|
|
7927
8212
|
export type GetApplicationByIdLazyQueryHookResult = ReturnType<typeof useGetApplicationByIdLazyQuery>;
|
|
7928
8213
|
export type GetApplicationByIdSuspenseQueryHookResult = ReturnType<typeof useGetApplicationByIdSuspenseQuery>;
|
|
@@ -7949,9 +8234,8 @@ export declare function useGetApplicationModulesQuery(baseOptions?: Apollo.Query
|
|
|
7949
8234
|
export declare function useGetApplicationModulesLazyQuery(baseOptions?: Apollo.LazyQueryHookOptions<GetApplicationModulesQuery, GetApplicationModulesQueryVariables>): Apollo.LazyQueryResultTuple<GetApplicationModulesQuery, Exact<{
|
|
7950
8235
|
[key: string]: never;
|
|
7951
8236
|
}>>;
|
|
7952
|
-
export declare function useGetApplicationModulesSuspenseQuery(baseOptions?: Apollo.SuspenseQueryHookOptions<GetApplicationModulesQuery, GetApplicationModulesQueryVariables>): Apollo.UseSuspenseQueryResult<GetApplicationModulesQuery,
|
|
7953
|
-
|
|
7954
|
-
}>>;
|
|
8237
|
+
export declare function useGetApplicationModulesSuspenseQuery(baseOptions?: Apollo.SuspenseQueryHookOptions<GetApplicationModulesQuery, GetApplicationModulesQueryVariables>): Apollo.UseSuspenseQueryResult<GetApplicationModulesQuery, GetApplicationModulesQueryVariables>;
|
|
8238
|
+
export declare function useGetApplicationModulesSuspenseQuery(baseOptions?: Apollo.SkipToken | Apollo.SuspenseQueryHookOptions<GetApplicationModulesQuery, GetApplicationModulesQueryVariables>): Apollo.UseSuspenseQueryResult<GetApplicationModulesQuery | undefined, GetApplicationModulesQueryVariables>;
|
|
7955
8239
|
export type GetApplicationModulesQueryHookResult = ReturnType<typeof useGetApplicationModulesQuery>;
|
|
7956
8240
|
export type GetApplicationModulesLazyQueryHookResult = ReturnType<typeof useGetApplicationModulesLazyQuery>;
|
|
7957
8241
|
export type GetApplicationModulesSuspenseQueryHookResult = ReturnType<typeof useGetApplicationModulesSuspenseQuery>;
|
|
@@ -7998,15 +8282,19 @@ export declare const CheckAttributeExistenceDocument: Apollo.DocumentNode;
|
|
|
7998
8282
|
* },
|
|
7999
8283
|
* });
|
|
8000
8284
|
*/
|
|
8001
|
-
export declare function useCheckAttributeExistenceQuery(baseOptions: Apollo.QueryHookOptions<CheckAttributeExistenceQuery, CheckAttributeExistenceQueryVariables>
|
|
8002
|
-
|
|
8285
|
+
export declare function useCheckAttributeExistenceQuery(baseOptions: Apollo.QueryHookOptions<CheckAttributeExistenceQuery, CheckAttributeExistenceQueryVariables> & ({
|
|
8286
|
+
variables: CheckAttributeExistenceQueryVariables;
|
|
8287
|
+
skip?: boolean;
|
|
8288
|
+
} | {
|
|
8289
|
+
skip: boolean;
|
|
8290
|
+
})): Apollo.QueryResult<CheckAttributeExistenceQuery, Exact<{
|
|
8291
|
+
id: Scalars["ID"]["input"];
|
|
8003
8292
|
}>>;
|
|
8004
8293
|
export declare function useCheckAttributeExistenceLazyQuery(baseOptions?: Apollo.LazyQueryHookOptions<CheckAttributeExistenceQuery, CheckAttributeExistenceQueryVariables>): Apollo.LazyQueryResultTuple<CheckAttributeExistenceQuery, Exact<{
|
|
8005
|
-
id: Scalars["ID"];
|
|
8006
|
-
}>>;
|
|
8007
|
-
export declare function useCheckAttributeExistenceSuspenseQuery(baseOptions?: Apollo.SuspenseQueryHookOptions<CheckAttributeExistenceQuery, CheckAttributeExistenceQueryVariables>): Apollo.UseSuspenseQueryResult<CheckAttributeExistenceQuery, Exact<{
|
|
8008
|
-
id: Scalars["ID"];
|
|
8294
|
+
id: Scalars["ID"]["input"];
|
|
8009
8295
|
}>>;
|
|
8296
|
+
export declare function useCheckAttributeExistenceSuspenseQuery(baseOptions?: Apollo.SuspenseQueryHookOptions<CheckAttributeExistenceQuery, CheckAttributeExistenceQueryVariables>): Apollo.UseSuspenseQueryResult<CheckAttributeExistenceQuery, CheckAttributeExistenceQueryVariables>;
|
|
8297
|
+
export declare function useCheckAttributeExistenceSuspenseQuery(baseOptions?: Apollo.SkipToken | Apollo.SuspenseQueryHookOptions<CheckAttributeExistenceQuery, CheckAttributeExistenceQueryVariables>): Apollo.UseSuspenseQueryResult<CheckAttributeExistenceQuery | undefined, CheckAttributeExistenceQueryVariables>;
|
|
8010
8298
|
export type CheckAttributeExistenceQueryHookResult = ReturnType<typeof useCheckAttributeExistenceQuery>;
|
|
8011
8299
|
export type CheckAttributeExistenceLazyQueryHookResult = ReturnType<typeof useCheckAttributeExistenceLazyQuery>;
|
|
8012
8300
|
export type CheckAttributeExistenceSuspenseQueryHookResult = ReturnType<typeof useCheckAttributeExistenceSuspenseQuery>;
|
|
@@ -8031,7 +8319,7 @@ export type DeleteAttributeMutationFn = Apollo.MutationFunction<DeleteAttributeM
|
|
|
8031
8319
|
* });
|
|
8032
8320
|
*/
|
|
8033
8321
|
export declare function useDeleteAttributeMutation(baseOptions?: Apollo.MutationHookOptions<DeleteAttributeMutation, DeleteAttributeMutationVariables>): Apollo.MutationTuple<DeleteAttributeMutation, Exact<{
|
|
8034
|
-
id?: InputMaybe<Scalars["ID"]>;
|
|
8322
|
+
id?: InputMaybe<Scalars["ID"]["input"]>;
|
|
8035
8323
|
}>, Apollo.DefaultContext, Apollo.ApolloCache<any>>;
|
|
8036
8324
|
export type DeleteAttributeMutationHookResult = ReturnType<typeof useDeleteAttributeMutation>;
|
|
8037
8325
|
export type DeleteAttributeMutationResult = Apollo.MutationResult<DeleteAttributeMutation>;
|
|
@@ -8054,14 +8342,13 @@ export declare const GetAttributeByIdDocument: Apollo.DocumentNode;
|
|
|
8054
8342
|
* });
|
|
8055
8343
|
*/
|
|
8056
8344
|
export declare function useGetAttributeByIdQuery(baseOptions?: Apollo.QueryHookOptions<GetAttributeByIdQuery, GetAttributeByIdQueryVariables>): Apollo.QueryResult<GetAttributeByIdQuery, Exact<{
|
|
8057
|
-
id?: InputMaybe<Scalars["ID"]>;
|
|
8345
|
+
id?: InputMaybe<Scalars["ID"]["input"]>;
|
|
8058
8346
|
}>>;
|
|
8059
8347
|
export declare function useGetAttributeByIdLazyQuery(baseOptions?: Apollo.LazyQueryHookOptions<GetAttributeByIdQuery, GetAttributeByIdQueryVariables>): Apollo.LazyQueryResultTuple<GetAttributeByIdQuery, Exact<{
|
|
8060
|
-
id?: InputMaybe<Scalars["ID"]>;
|
|
8061
|
-
}>>;
|
|
8062
|
-
export declare function useGetAttributeByIdSuspenseQuery(baseOptions?: Apollo.SuspenseQueryHookOptions<GetAttributeByIdQuery, GetAttributeByIdQueryVariables>): Apollo.UseSuspenseQueryResult<GetAttributeByIdQuery, Exact<{
|
|
8063
|
-
id?: InputMaybe<Scalars["ID"]>;
|
|
8348
|
+
id?: InputMaybe<Scalars["ID"]["input"]>;
|
|
8064
8349
|
}>>;
|
|
8350
|
+
export declare function useGetAttributeByIdSuspenseQuery(baseOptions?: Apollo.SuspenseQueryHookOptions<GetAttributeByIdQuery, GetAttributeByIdQueryVariables>): Apollo.UseSuspenseQueryResult<GetAttributeByIdQuery, GetAttributeByIdQueryVariables>;
|
|
8351
|
+
export declare function useGetAttributeByIdSuspenseQuery(baseOptions?: Apollo.SkipToken | Apollo.SuspenseQueryHookOptions<GetAttributeByIdQuery, GetAttributeByIdQueryVariables>): Apollo.UseSuspenseQueryResult<GetAttributeByIdQuery | undefined, GetAttributeByIdQueryVariables>;
|
|
8065
8352
|
export type GetAttributeByIdQueryHookResult = ReturnType<typeof useGetAttributeByIdQuery>;
|
|
8066
8353
|
export type GetAttributeByIdLazyQueryHookResult = ReturnType<typeof useGetAttributeByIdLazyQuery>;
|
|
8067
8354
|
export type GetAttributeByIdSuspenseQueryHookResult = ReturnType<typeof useGetAttributeByIdSuspenseQuery>;
|
|
@@ -8083,15 +8370,19 @@ export declare const GetAttributesByLibDocument: Apollo.DocumentNode;
|
|
|
8083
8370
|
* },
|
|
8084
8371
|
* });
|
|
8085
8372
|
*/
|
|
8086
|
-
export declare function useGetAttributesByLibQuery(baseOptions: Apollo.QueryHookOptions<GetAttributesByLibQuery, GetAttributesByLibQueryVariables>
|
|
8087
|
-
|
|
8373
|
+
export declare function useGetAttributesByLibQuery(baseOptions: Apollo.QueryHookOptions<GetAttributesByLibQuery, GetAttributesByLibQueryVariables> & ({
|
|
8374
|
+
variables: GetAttributesByLibQueryVariables;
|
|
8375
|
+
skip?: boolean;
|
|
8376
|
+
} | {
|
|
8377
|
+
skip: boolean;
|
|
8378
|
+
})): Apollo.QueryResult<GetAttributesByLibQuery, Exact<{
|
|
8379
|
+
library: Scalars["String"]["input"];
|
|
8088
8380
|
}>>;
|
|
8089
8381
|
export declare function useGetAttributesByLibLazyQuery(baseOptions?: Apollo.LazyQueryHookOptions<GetAttributesByLibQuery, GetAttributesByLibQueryVariables>): Apollo.LazyQueryResultTuple<GetAttributesByLibQuery, Exact<{
|
|
8090
|
-
library: Scalars["String"];
|
|
8091
|
-
}>>;
|
|
8092
|
-
export declare function useGetAttributesByLibSuspenseQuery(baseOptions?: Apollo.SuspenseQueryHookOptions<GetAttributesByLibQuery, GetAttributesByLibQueryVariables>): Apollo.UseSuspenseQueryResult<GetAttributesByLibQuery, Exact<{
|
|
8093
|
-
library: Scalars["String"];
|
|
8382
|
+
library: Scalars["String"]["input"];
|
|
8094
8383
|
}>>;
|
|
8384
|
+
export declare function useGetAttributesByLibSuspenseQuery(baseOptions?: Apollo.SuspenseQueryHookOptions<GetAttributesByLibQuery, GetAttributesByLibQueryVariables>): Apollo.UseSuspenseQueryResult<GetAttributesByLibQuery, GetAttributesByLibQueryVariables>;
|
|
8385
|
+
export declare function useGetAttributesByLibSuspenseQuery(baseOptions?: Apollo.SkipToken | Apollo.SuspenseQueryHookOptions<GetAttributesByLibQuery, GetAttributesByLibQueryVariables>): Apollo.UseSuspenseQueryResult<GetAttributesByLibQuery | undefined, GetAttributesByLibQueryVariables>;
|
|
8095
8386
|
export type GetAttributesByLibQueryHookResult = ReturnType<typeof useGetAttributesByLibQuery>;
|
|
8096
8387
|
export type GetAttributesByLibLazyQueryHookResult = ReturnType<typeof useGetAttributesByLibLazyQuery>;
|
|
8097
8388
|
export type GetAttributesByLibSuspenseQueryHookResult = ReturnType<typeof useGetAttributesByLibSuspenseQuery>;
|
|
@@ -8125,11 +8416,8 @@ export declare function useGetAttributesLazyQuery(baseOptions?: Apollo.LazyQuery
|
|
|
8125
8416
|
sort?: InputMaybe<SortAttributes>;
|
|
8126
8417
|
filters?: InputMaybe<AttributesFiltersInput>;
|
|
8127
8418
|
}>>;
|
|
8128
|
-
export declare function useGetAttributesSuspenseQuery(baseOptions?: Apollo.SuspenseQueryHookOptions<GetAttributesQuery, GetAttributesQueryVariables>): Apollo.UseSuspenseQueryResult<GetAttributesQuery,
|
|
8129
|
-
|
|
8130
|
-
sort?: InputMaybe<SortAttributes>;
|
|
8131
|
-
filters?: InputMaybe<AttributesFiltersInput>;
|
|
8132
|
-
}>>;
|
|
8419
|
+
export declare function useGetAttributesSuspenseQuery(baseOptions?: Apollo.SuspenseQueryHookOptions<GetAttributesQuery, GetAttributesQueryVariables>): Apollo.UseSuspenseQueryResult<GetAttributesQuery, GetAttributesQueryVariables>;
|
|
8420
|
+
export declare function useGetAttributesSuspenseQuery(baseOptions?: Apollo.SkipToken | Apollo.SuspenseQueryHookOptions<GetAttributesQuery, GetAttributesQueryVariables>): Apollo.UseSuspenseQueryResult<GetAttributesQuery | undefined, GetAttributesQueryVariables>;
|
|
8133
8421
|
export type GetAttributesQueryHookResult = ReturnType<typeof useGetAttributesQuery>;
|
|
8134
8422
|
export type GetAttributesLazyQueryHookResult = ReturnType<typeof useGetAttributesLazyQuery>;
|
|
8135
8423
|
export type GetAttributesSuspenseQueryHookResult = ReturnType<typeof useGetAttributesSuspenseQuery>;
|
|
@@ -8160,10 +8448,8 @@ export declare function useGetVersionProfilesLazyQuery(baseOptions?: Apollo.Lazy
|
|
|
8160
8448
|
filters?: InputMaybe<VersionProfilesFiltersInput>;
|
|
8161
8449
|
sort?: InputMaybe<SortVersionProfilesInput>;
|
|
8162
8450
|
}>>;
|
|
8163
|
-
export declare function useGetVersionProfilesSuspenseQuery(baseOptions?: Apollo.SuspenseQueryHookOptions<GetVersionProfilesQuery, GetVersionProfilesQueryVariables>): Apollo.UseSuspenseQueryResult<GetVersionProfilesQuery,
|
|
8164
|
-
|
|
8165
|
-
sort?: InputMaybe<SortVersionProfilesInput>;
|
|
8166
|
-
}>>;
|
|
8451
|
+
export declare function useGetVersionProfilesSuspenseQuery(baseOptions?: Apollo.SuspenseQueryHookOptions<GetVersionProfilesQuery, GetVersionProfilesQueryVariables>): Apollo.UseSuspenseQueryResult<GetVersionProfilesQuery, GetVersionProfilesQueryVariables>;
|
|
8452
|
+
export declare function useGetVersionProfilesSuspenseQuery(baseOptions?: Apollo.SkipToken | Apollo.SuspenseQueryHookOptions<GetVersionProfilesQuery, GetVersionProfilesQueryVariables>): Apollo.UseSuspenseQueryResult<GetVersionProfilesQuery | undefined, GetVersionProfilesQueryVariables>;
|
|
8167
8453
|
export type GetVersionProfilesQueryHookResult = ReturnType<typeof useGetVersionProfilesQuery>;
|
|
8168
8454
|
export type GetVersionProfilesLazyQueryHookResult = ReturnType<typeof useGetVersionProfilesLazyQuery>;
|
|
8169
8455
|
export type GetVersionProfilesSuspenseQueryHookResult = ReturnType<typeof useGetVersionProfilesSuspenseQuery>;
|
|
@@ -8185,15 +8471,19 @@ export declare const GetVersionableAttributesByLibraryDocument: Apollo.DocumentN
|
|
|
8185
8471
|
* },
|
|
8186
8472
|
* });
|
|
8187
8473
|
*/
|
|
8188
|
-
export declare function useGetVersionableAttributesByLibraryQuery(baseOptions: Apollo.QueryHookOptions<GetVersionableAttributesByLibraryQuery, GetVersionableAttributesByLibraryQueryVariables>
|
|
8189
|
-
|
|
8474
|
+
export declare function useGetVersionableAttributesByLibraryQuery(baseOptions: Apollo.QueryHookOptions<GetVersionableAttributesByLibraryQuery, GetVersionableAttributesByLibraryQueryVariables> & ({
|
|
8475
|
+
variables: GetVersionableAttributesByLibraryQueryVariables;
|
|
8476
|
+
skip?: boolean;
|
|
8477
|
+
} | {
|
|
8478
|
+
skip: boolean;
|
|
8479
|
+
})): Apollo.QueryResult<GetVersionableAttributesByLibraryQuery, Exact<{
|
|
8480
|
+
libraryId: Scalars["String"]["input"];
|
|
8190
8481
|
}>>;
|
|
8191
8482
|
export declare function useGetVersionableAttributesByLibraryLazyQuery(baseOptions?: Apollo.LazyQueryHookOptions<GetVersionableAttributesByLibraryQuery, GetVersionableAttributesByLibraryQueryVariables>): Apollo.LazyQueryResultTuple<GetVersionableAttributesByLibraryQuery, Exact<{
|
|
8192
|
-
libraryId: Scalars["String"];
|
|
8193
|
-
}>>;
|
|
8194
|
-
export declare function useGetVersionableAttributesByLibrarySuspenseQuery(baseOptions?: Apollo.SuspenseQueryHookOptions<GetVersionableAttributesByLibraryQuery, GetVersionableAttributesByLibraryQueryVariables>): Apollo.UseSuspenseQueryResult<GetVersionableAttributesByLibraryQuery, Exact<{
|
|
8195
|
-
libraryId: Scalars["String"];
|
|
8483
|
+
libraryId: Scalars["String"]["input"];
|
|
8196
8484
|
}>>;
|
|
8485
|
+
export declare function useGetVersionableAttributesByLibrarySuspenseQuery(baseOptions?: Apollo.SuspenseQueryHookOptions<GetVersionableAttributesByLibraryQuery, GetVersionableAttributesByLibraryQueryVariables>): Apollo.UseSuspenseQueryResult<GetVersionableAttributesByLibraryQuery, GetVersionableAttributesByLibraryQueryVariables>;
|
|
8486
|
+
export declare function useGetVersionableAttributesByLibrarySuspenseQuery(baseOptions?: Apollo.SkipToken | Apollo.SuspenseQueryHookOptions<GetVersionableAttributesByLibraryQuery, GetVersionableAttributesByLibraryQueryVariables>): Apollo.UseSuspenseQueryResult<GetVersionableAttributesByLibraryQuery | undefined, GetVersionableAttributesByLibraryQueryVariables>;
|
|
8197
8487
|
export type GetVersionableAttributesByLibraryQueryHookResult = ReturnType<typeof useGetVersionableAttributesByLibraryQuery>;
|
|
8198
8488
|
export type GetVersionableAttributesByLibraryLazyQueryHookResult = ReturnType<typeof useGetVersionableAttributesByLibraryLazyQuery>;
|
|
8199
8489
|
export type GetVersionableAttributesByLibrarySuspenseQueryHookResult = ReturnType<typeof useGetVersionableAttributesByLibrarySuspenseQuery>;
|
|
@@ -8242,21 +8532,23 @@ export declare const ExportDocument: Apollo.DocumentNode;
|
|
|
8242
8532
|
* },
|
|
8243
8533
|
* });
|
|
8244
8534
|
*/
|
|
8245
|
-
export declare function useExportQuery(baseOptions: Apollo.QueryHookOptions<ExportQuery, ExportQueryVariables>
|
|
8246
|
-
|
|
8535
|
+
export declare function useExportQuery(baseOptions: Apollo.QueryHookOptions<ExportQuery, ExportQueryVariables> & ({
|
|
8536
|
+
variables: ExportQueryVariables;
|
|
8537
|
+
skip?: boolean;
|
|
8538
|
+
} | {
|
|
8539
|
+
skip: boolean;
|
|
8540
|
+
})): Apollo.QueryResult<ExportQuery, Exact<{
|
|
8541
|
+
library: Scalars["ID"]["input"];
|
|
8247
8542
|
filters?: InputMaybe<Array<RecordFilterInput> | RecordFilterInput>;
|
|
8248
|
-
profile?: InputMaybe<Scalars["String"]>;
|
|
8543
|
+
profile?: InputMaybe<Scalars["String"]["input"]>;
|
|
8249
8544
|
}>>;
|
|
8250
8545
|
export declare function useExportLazyQuery(baseOptions?: Apollo.LazyQueryHookOptions<ExportQuery, ExportQueryVariables>): Apollo.LazyQueryResultTuple<ExportQuery, Exact<{
|
|
8251
|
-
library: Scalars["ID"];
|
|
8252
|
-
filters?: InputMaybe<Array<RecordFilterInput> | RecordFilterInput>;
|
|
8253
|
-
profile?: InputMaybe<Scalars["String"]>;
|
|
8254
|
-
}>>;
|
|
8255
|
-
export declare function useExportSuspenseQuery(baseOptions?: Apollo.SuspenseQueryHookOptions<ExportQuery, ExportQueryVariables>): Apollo.UseSuspenseQueryResult<ExportQuery, Exact<{
|
|
8256
|
-
library: Scalars["ID"];
|
|
8546
|
+
library: Scalars["ID"]["input"];
|
|
8257
8547
|
filters?: InputMaybe<Array<RecordFilterInput> | RecordFilterInput>;
|
|
8258
|
-
profile?: InputMaybe<Scalars["String"]>;
|
|
8548
|
+
profile?: InputMaybe<Scalars["String"]["input"]>;
|
|
8259
8549
|
}>>;
|
|
8550
|
+
export declare function useExportSuspenseQuery(baseOptions?: Apollo.SuspenseQueryHookOptions<ExportQuery, ExportQueryVariables>): Apollo.UseSuspenseQueryResult<ExportQuery, ExportQueryVariables>;
|
|
8551
|
+
export declare function useExportSuspenseQuery(baseOptions?: Apollo.SkipToken | Apollo.SuspenseQueryHookOptions<ExportQuery, ExportQueryVariables>): Apollo.UseSuspenseQueryResult<ExportQuery | undefined, ExportQueryVariables>;
|
|
8260
8552
|
export type ExportQueryHookResult = ReturnType<typeof useExportQuery>;
|
|
8261
8553
|
export type ExportLazyQueryHookResult = ReturnType<typeof useExportLazyQuery>;
|
|
8262
8554
|
export type ExportSuspenseQueryHookResult = ReturnType<typeof useExportSuspenseQuery>;
|
|
@@ -8283,9 +8575,9 @@ export type CreateDirectoryMutationFn = Apollo.MutationFunction<CreateDirectoryM
|
|
|
8283
8575
|
* });
|
|
8284
8576
|
*/
|
|
8285
8577
|
export declare function useCreateDirectoryMutation(baseOptions?: Apollo.MutationHookOptions<CreateDirectoryMutation, CreateDirectoryMutationVariables>): Apollo.MutationTuple<CreateDirectoryMutation, Exact<{
|
|
8286
|
-
library: Scalars["String"];
|
|
8287
|
-
nodeId: Scalars["String"];
|
|
8288
|
-
name: Scalars["String"];
|
|
8578
|
+
library: Scalars["String"]["input"];
|
|
8579
|
+
nodeId: Scalars["String"]["input"];
|
|
8580
|
+
name: Scalars["String"]["input"];
|
|
8289
8581
|
}>, Apollo.DefaultContext, Apollo.ApolloCache<any>>;
|
|
8290
8582
|
export type CreateDirectoryMutationHookResult = ReturnType<typeof useCreateDirectoryMutation>;
|
|
8291
8583
|
export type CreateDirectoryMutationResult = Apollo.MutationResult<CreateDirectoryMutation>;
|
|
@@ -8314,11 +8606,11 @@ export type ForcePreviewsGenerationMutationFn = Apollo.MutationFunction<ForcePre
|
|
|
8314
8606
|
* });
|
|
8315
8607
|
*/
|
|
8316
8608
|
export declare function useForcePreviewsGenerationMutation(baseOptions?: Apollo.MutationHookOptions<ForcePreviewsGenerationMutation, ForcePreviewsGenerationMutationVariables>): Apollo.MutationTuple<ForcePreviewsGenerationMutation, Exact<{
|
|
8317
|
-
libraryId: Scalars["ID"];
|
|
8609
|
+
libraryId: Scalars["ID"]["input"];
|
|
8318
8610
|
filters?: InputMaybe<Array<RecordFilterInput> | RecordFilterInput>;
|
|
8319
|
-
recordIds?: InputMaybe<Array<Scalars["ID"]> | Scalars["ID"]>;
|
|
8320
|
-
failedOnly?: InputMaybe<Scalars["Boolean"]>;
|
|
8321
|
-
previewVersionSizeNames?: InputMaybe<Array<Scalars["String"]> | Scalars["String"]>;
|
|
8611
|
+
recordIds?: InputMaybe<Array<Scalars["ID"]["input"]> | Scalars["ID"]["input"]>;
|
|
8612
|
+
failedOnly?: InputMaybe<Scalars["Boolean"]["input"]>;
|
|
8613
|
+
previewVersionSizeNames?: InputMaybe<Array<Scalars["String"]["input"]> | Scalars["String"]["input"]>;
|
|
8322
8614
|
}>, Apollo.DefaultContext, Apollo.ApolloCache<any>>;
|
|
8323
8615
|
export type ForcePreviewsGenerationMutationHookResult = ReturnType<typeof useForcePreviewsGenerationMutation>;
|
|
8324
8616
|
export type ForcePreviewsGenerationMutationResult = Apollo.MutationResult<ForcePreviewsGenerationMutation>;
|
|
@@ -8341,18 +8633,21 @@ export declare const GetDirectoryDataDocument: Apollo.DocumentNode;
|
|
|
8341
8633
|
* },
|
|
8342
8634
|
* });
|
|
8343
8635
|
*/
|
|
8344
|
-
export declare function useGetDirectoryDataQuery(baseOptions: Apollo.QueryHookOptions<GetDirectoryDataQuery, GetDirectoryDataQueryVariables>
|
|
8345
|
-
|
|
8346
|
-
|
|
8636
|
+
export declare function useGetDirectoryDataQuery(baseOptions: Apollo.QueryHookOptions<GetDirectoryDataQuery, GetDirectoryDataQueryVariables> & ({
|
|
8637
|
+
variables: GetDirectoryDataQueryVariables;
|
|
8638
|
+
skip?: boolean;
|
|
8639
|
+
} | {
|
|
8640
|
+
skip: boolean;
|
|
8641
|
+
})): Apollo.QueryResult<GetDirectoryDataQuery, Exact<{
|
|
8642
|
+
library: Scalars["ID"]["input"];
|
|
8643
|
+
directoryId: Scalars["String"]["input"];
|
|
8347
8644
|
}>>;
|
|
8348
8645
|
export declare function useGetDirectoryDataLazyQuery(baseOptions?: Apollo.LazyQueryHookOptions<GetDirectoryDataQuery, GetDirectoryDataQueryVariables>): Apollo.LazyQueryResultTuple<GetDirectoryDataQuery, Exact<{
|
|
8349
|
-
library: Scalars["ID"];
|
|
8350
|
-
directoryId: Scalars["String"];
|
|
8351
|
-
}>>;
|
|
8352
|
-
export declare function useGetDirectoryDataSuspenseQuery(baseOptions?: Apollo.SuspenseQueryHookOptions<GetDirectoryDataQuery, GetDirectoryDataQueryVariables>): Apollo.UseSuspenseQueryResult<GetDirectoryDataQuery, Exact<{
|
|
8353
|
-
library: Scalars["ID"];
|
|
8354
|
-
directoryId: Scalars["String"];
|
|
8646
|
+
library: Scalars["ID"]["input"];
|
|
8647
|
+
directoryId: Scalars["String"]["input"];
|
|
8355
8648
|
}>>;
|
|
8649
|
+
export declare function useGetDirectoryDataSuspenseQuery(baseOptions?: Apollo.SuspenseQueryHookOptions<GetDirectoryDataQuery, GetDirectoryDataQueryVariables>): Apollo.UseSuspenseQueryResult<GetDirectoryDataQuery, GetDirectoryDataQueryVariables>;
|
|
8650
|
+
export declare function useGetDirectoryDataSuspenseQuery(baseOptions?: Apollo.SkipToken | Apollo.SuspenseQueryHookOptions<GetDirectoryDataQuery, GetDirectoryDataQueryVariables>): Apollo.UseSuspenseQueryResult<GetDirectoryDataQuery | undefined, GetDirectoryDataQueryVariables>;
|
|
8356
8651
|
export type GetDirectoryDataQueryHookResult = ReturnType<typeof useGetDirectoryDataQuery>;
|
|
8357
8652
|
export type GetDirectoryDataLazyQueryHookResult = ReturnType<typeof useGetDirectoryDataLazyQuery>;
|
|
8358
8653
|
export type GetDirectoryDataSuspenseQueryHookResult = ReturnType<typeof useGetDirectoryDataSuspenseQuery>;
|
|
@@ -8401,8 +8696,8 @@ export type UploadMutationFn = Apollo.MutationFunction<UploadMutation, UploadMut
|
|
|
8401
8696
|
* });
|
|
8402
8697
|
*/
|
|
8403
8698
|
export declare function useUploadMutation(baseOptions?: Apollo.MutationHookOptions<UploadMutation, UploadMutationVariables>): Apollo.MutationTuple<UploadMutation, Exact<{
|
|
8404
|
-
library: Scalars["String"];
|
|
8405
|
-
nodeId: Scalars["String"];
|
|
8699
|
+
library: Scalars["String"]["input"];
|
|
8700
|
+
nodeId: Scalars["String"]["input"];
|
|
8406
8701
|
files: Array<FileInput> | FileInput;
|
|
8407
8702
|
}>, Apollo.DefaultContext, Apollo.ApolloCache<any>>;
|
|
8408
8703
|
export type UploadMutationHookResult = ReturnType<typeof useUploadMutation>;
|
|
@@ -8430,9 +8725,9 @@ export type ImportExcelMutationFn = Apollo.MutationFunction<ImportExcelMutation,
|
|
|
8430
8725
|
* });
|
|
8431
8726
|
*/
|
|
8432
8727
|
export declare function useImportExcelMutation(baseOptions?: Apollo.MutationHookOptions<ImportExcelMutation, ImportExcelMutationVariables>): Apollo.MutationTuple<ImportExcelMutation, Exact<{
|
|
8433
|
-
file: Scalars["Upload"];
|
|
8728
|
+
file: Scalars["Upload"]["input"];
|
|
8434
8729
|
sheets?: InputMaybe<Array<InputMaybe<SheetInput>> | InputMaybe<SheetInput>>;
|
|
8435
|
-
startAt?: InputMaybe<Scalars["Int"]>;
|
|
8730
|
+
startAt?: InputMaybe<Scalars["Int"]["input"]>;
|
|
8436
8731
|
}>, Apollo.DefaultContext, Apollo.ApolloCache<any>>;
|
|
8437
8732
|
export type ImportExcelMutationHookResult = ReturnType<typeof useImportExcelMutation>;
|
|
8438
8733
|
export type ImportExcelMutationResult = Apollo.MutationResult<ImportExcelMutation>;
|
|
@@ -8455,14 +8750,13 @@ export declare const CheckLibraryExistenceDocument: Apollo.DocumentNode;
|
|
|
8455
8750
|
* });
|
|
8456
8751
|
*/
|
|
8457
8752
|
export declare function useCheckLibraryExistenceQuery(baseOptions?: Apollo.QueryHookOptions<CheckLibraryExistenceQuery, CheckLibraryExistenceQueryVariables>): Apollo.QueryResult<CheckLibraryExistenceQuery, Exact<{
|
|
8458
|
-
id?: InputMaybe<Array<Scalars["ID"]> | Scalars["ID"]>;
|
|
8753
|
+
id?: InputMaybe<Array<Scalars["ID"]["input"]> | Scalars["ID"]["input"]>;
|
|
8459
8754
|
}>>;
|
|
8460
8755
|
export declare function useCheckLibraryExistenceLazyQuery(baseOptions?: Apollo.LazyQueryHookOptions<CheckLibraryExistenceQuery, CheckLibraryExistenceQueryVariables>): Apollo.LazyQueryResultTuple<CheckLibraryExistenceQuery, Exact<{
|
|
8461
|
-
id?: InputMaybe<Array<Scalars["ID"]> | Scalars["ID"]>;
|
|
8462
|
-
}>>;
|
|
8463
|
-
export declare function useCheckLibraryExistenceSuspenseQuery(baseOptions?: Apollo.SuspenseQueryHookOptions<CheckLibraryExistenceQuery, CheckLibraryExistenceQueryVariables>): Apollo.UseSuspenseQueryResult<CheckLibraryExistenceQuery, Exact<{
|
|
8464
|
-
id?: InputMaybe<Array<Scalars["ID"]> | Scalars["ID"]>;
|
|
8756
|
+
id?: InputMaybe<Array<Scalars["ID"]["input"]> | Scalars["ID"]["input"]>;
|
|
8465
8757
|
}>>;
|
|
8758
|
+
export declare function useCheckLibraryExistenceSuspenseQuery(baseOptions?: Apollo.SuspenseQueryHookOptions<CheckLibraryExistenceQuery, CheckLibraryExistenceQueryVariables>): Apollo.UseSuspenseQueryResult<CheckLibraryExistenceQuery, CheckLibraryExistenceQueryVariables>;
|
|
8759
|
+
export declare function useCheckLibraryExistenceSuspenseQuery(baseOptions?: Apollo.SkipToken | Apollo.SuspenseQueryHookOptions<CheckLibraryExistenceQuery, CheckLibraryExistenceQueryVariables>): Apollo.UseSuspenseQueryResult<CheckLibraryExistenceQuery | undefined, CheckLibraryExistenceQueryVariables>;
|
|
8466
8760
|
export type CheckLibraryExistenceQueryHookResult = ReturnType<typeof useCheckLibraryExistenceQuery>;
|
|
8467
8761
|
export type CheckLibraryExistenceLazyQueryHookResult = ReturnType<typeof useCheckLibraryExistenceLazyQuery>;
|
|
8468
8762
|
export type CheckLibraryExistenceSuspenseQueryHookResult = ReturnType<typeof useCheckLibraryExistenceSuspenseQuery>;
|
|
@@ -8487,7 +8781,7 @@ export type DeleteLibraryMutationFn = Apollo.MutationFunction<DeleteLibraryMutat
|
|
|
8487
8781
|
* });
|
|
8488
8782
|
*/
|
|
8489
8783
|
export declare function useDeleteLibraryMutation(baseOptions?: Apollo.MutationHookOptions<DeleteLibraryMutation, DeleteLibraryMutationVariables>): Apollo.MutationTuple<DeleteLibraryMutation, Exact<{
|
|
8490
|
-
id?: InputMaybe<Scalars["ID"]>;
|
|
8784
|
+
id?: InputMaybe<Scalars["ID"]["input"]>;
|
|
8491
8785
|
}>, Apollo.DefaultContext, Apollo.ApolloCache<any>>;
|
|
8492
8786
|
export type DeleteLibraryMutationHookResult = ReturnType<typeof useDeleteLibraryMutation>;
|
|
8493
8787
|
export type DeleteLibraryMutationResult = Apollo.MutationResult<DeleteLibraryMutation>;
|
|
@@ -8514,9 +8808,8 @@ export declare function useGetLibrariesQuery(baseOptions?: Apollo.QueryHookOptio
|
|
|
8514
8808
|
export declare function useGetLibrariesLazyQuery(baseOptions?: Apollo.LazyQueryHookOptions<GetLibrariesQuery, GetLibrariesQueryVariables>): Apollo.LazyQueryResultTuple<GetLibrariesQuery, Exact<{
|
|
8515
8809
|
[key: string]: never;
|
|
8516
8810
|
}>>;
|
|
8517
|
-
export declare function useGetLibrariesSuspenseQuery(baseOptions?: Apollo.SuspenseQueryHookOptions<GetLibrariesQuery, GetLibrariesQueryVariables>): Apollo.UseSuspenseQueryResult<GetLibrariesQuery,
|
|
8518
|
-
|
|
8519
|
-
}>>;
|
|
8811
|
+
export declare function useGetLibrariesSuspenseQuery(baseOptions?: Apollo.SuspenseQueryHookOptions<GetLibrariesQuery, GetLibrariesQueryVariables>): Apollo.UseSuspenseQueryResult<GetLibrariesQuery, GetLibrariesQueryVariables>;
|
|
8812
|
+
export declare function useGetLibrariesSuspenseQuery(baseOptions?: Apollo.SkipToken | Apollo.SuspenseQueryHookOptions<GetLibrariesQuery, GetLibrariesQueryVariables>): Apollo.UseSuspenseQueryResult<GetLibrariesQuery | undefined, GetLibrariesQueryVariables>;
|
|
8520
8813
|
export type GetLibrariesQueryHookResult = ReturnType<typeof useGetLibrariesQuery>;
|
|
8521
8814
|
export type GetLibrariesLazyQueryHookResult = ReturnType<typeof useGetLibrariesLazyQuery>;
|
|
8522
8815
|
export type GetLibrariesSuspenseQueryHookResult = ReturnType<typeof useGetLibrariesSuspenseQuery>;
|
|
@@ -8539,14 +8832,13 @@ export declare const GetLibraryByIdDocument: Apollo.DocumentNode;
|
|
|
8539
8832
|
* });
|
|
8540
8833
|
*/
|
|
8541
8834
|
export declare function useGetLibraryByIdQuery(baseOptions?: Apollo.QueryHookOptions<GetLibraryByIdQuery, GetLibraryByIdQueryVariables>): Apollo.QueryResult<GetLibraryByIdQuery, Exact<{
|
|
8542
|
-
id?: InputMaybe<Array<Scalars["ID"]> | Scalars["ID"]>;
|
|
8835
|
+
id?: InputMaybe<Array<Scalars["ID"]["input"]> | Scalars["ID"]["input"]>;
|
|
8543
8836
|
}>>;
|
|
8544
8837
|
export declare function useGetLibraryByIdLazyQuery(baseOptions?: Apollo.LazyQueryHookOptions<GetLibraryByIdQuery, GetLibraryByIdQueryVariables>): Apollo.LazyQueryResultTuple<GetLibraryByIdQuery, Exact<{
|
|
8545
|
-
id?: InputMaybe<Array<Scalars["ID"]> | Scalars["ID"]>;
|
|
8546
|
-
}>>;
|
|
8547
|
-
export declare function useGetLibraryByIdSuspenseQuery(baseOptions?: Apollo.SuspenseQueryHookOptions<GetLibraryByIdQuery, GetLibraryByIdQueryVariables>): Apollo.UseSuspenseQueryResult<GetLibraryByIdQuery, Exact<{
|
|
8548
|
-
id?: InputMaybe<Array<Scalars["ID"]> | Scalars["ID"]>;
|
|
8838
|
+
id?: InputMaybe<Array<Scalars["ID"]["input"]> | Scalars["ID"]["input"]>;
|
|
8549
8839
|
}>>;
|
|
8840
|
+
export declare function useGetLibraryByIdSuspenseQuery(baseOptions?: Apollo.SuspenseQueryHookOptions<GetLibraryByIdQuery, GetLibraryByIdQueryVariables>): Apollo.UseSuspenseQueryResult<GetLibraryByIdQuery, GetLibraryByIdQueryVariables>;
|
|
8841
|
+
export declare function useGetLibraryByIdSuspenseQuery(baseOptions?: Apollo.SkipToken | Apollo.SuspenseQueryHookOptions<GetLibraryByIdQuery, GetLibraryByIdQueryVariables>): Apollo.UseSuspenseQueryResult<GetLibraryByIdQuery | undefined, GetLibraryByIdQueryVariables>;
|
|
8550
8842
|
export type GetLibraryByIdQueryHookResult = ReturnType<typeof useGetLibraryByIdQuery>;
|
|
8551
8843
|
export type GetLibraryByIdLazyQueryHookResult = ReturnType<typeof useGetLibraryByIdLazyQuery>;
|
|
8552
8844
|
export type GetLibraryByIdSuspenseQueryHookResult = ReturnType<typeof useGetLibraryByIdSuspenseQuery>;
|
|
@@ -8569,14 +8861,13 @@ export declare const GetLibraryPermissionsDocument: Apollo.DocumentNode;
|
|
|
8569
8861
|
* });
|
|
8570
8862
|
*/
|
|
8571
8863
|
export declare function useGetLibraryPermissionsQuery(baseOptions?: Apollo.QueryHookOptions<GetLibraryPermissionsQuery, GetLibraryPermissionsQueryVariables>): Apollo.QueryResult<GetLibraryPermissionsQuery, Exact<{
|
|
8572
|
-
libraryId?: InputMaybe<Array<Scalars["ID"]> | Scalars["ID"]>;
|
|
8864
|
+
libraryId?: InputMaybe<Array<Scalars["ID"]["input"]> | Scalars["ID"]["input"]>;
|
|
8573
8865
|
}>>;
|
|
8574
8866
|
export declare function useGetLibraryPermissionsLazyQuery(baseOptions?: Apollo.LazyQueryHookOptions<GetLibraryPermissionsQuery, GetLibraryPermissionsQueryVariables>): Apollo.LazyQueryResultTuple<GetLibraryPermissionsQuery, Exact<{
|
|
8575
|
-
libraryId?: InputMaybe<Array<Scalars["ID"]> | Scalars["ID"]>;
|
|
8576
|
-
}>>;
|
|
8577
|
-
export declare function useGetLibraryPermissionsSuspenseQuery(baseOptions?: Apollo.SuspenseQueryHookOptions<GetLibraryPermissionsQuery, GetLibraryPermissionsQueryVariables>): Apollo.UseSuspenseQueryResult<GetLibraryPermissionsQuery, Exact<{
|
|
8578
|
-
libraryId?: InputMaybe<Array<Scalars["ID"]> | Scalars["ID"]>;
|
|
8867
|
+
libraryId?: InputMaybe<Array<Scalars["ID"]["input"]> | Scalars["ID"]["input"]>;
|
|
8579
8868
|
}>>;
|
|
8869
|
+
export declare function useGetLibraryPermissionsSuspenseQuery(baseOptions?: Apollo.SuspenseQueryHookOptions<GetLibraryPermissionsQuery, GetLibraryPermissionsQueryVariables>): Apollo.UseSuspenseQueryResult<GetLibraryPermissionsQuery, GetLibraryPermissionsQueryVariables>;
|
|
8870
|
+
export declare function useGetLibraryPermissionsSuspenseQuery(baseOptions?: Apollo.SkipToken | Apollo.SuspenseQueryHookOptions<GetLibraryPermissionsQuery, GetLibraryPermissionsQueryVariables>): Apollo.UseSuspenseQueryResult<GetLibraryPermissionsQuery | undefined, GetLibraryPermissionsQueryVariables>;
|
|
8580
8871
|
export type GetLibraryPermissionsQueryHookResult = ReturnType<typeof useGetLibraryPermissionsQuery>;
|
|
8581
8872
|
export type GetLibraryPermissionsLazyQueryHookResult = ReturnType<typeof useGetLibraryPermissionsLazyQuery>;
|
|
8582
8873
|
export type GetLibraryPermissionsSuspenseQueryHookResult = ReturnType<typeof useGetLibraryPermissionsSuspenseQuery>;
|
|
@@ -8598,15 +8889,19 @@ export declare const GetLibraryPreviewsSettingsDocument: Apollo.DocumentNode;
|
|
|
8598
8889
|
* },
|
|
8599
8890
|
* });
|
|
8600
8891
|
*/
|
|
8601
|
-
export declare function useGetLibraryPreviewsSettingsQuery(baseOptions: Apollo.QueryHookOptions<GetLibraryPreviewsSettingsQuery, GetLibraryPreviewsSettingsQueryVariables>
|
|
8602
|
-
|
|
8892
|
+
export declare function useGetLibraryPreviewsSettingsQuery(baseOptions: Apollo.QueryHookOptions<GetLibraryPreviewsSettingsQuery, GetLibraryPreviewsSettingsQueryVariables> & ({
|
|
8893
|
+
variables: GetLibraryPreviewsSettingsQueryVariables;
|
|
8894
|
+
skip?: boolean;
|
|
8895
|
+
} | {
|
|
8896
|
+
skip: boolean;
|
|
8897
|
+
})): Apollo.QueryResult<GetLibraryPreviewsSettingsQuery, Exact<{
|
|
8898
|
+
id: Scalars["ID"]["input"];
|
|
8603
8899
|
}>>;
|
|
8604
8900
|
export declare function useGetLibraryPreviewsSettingsLazyQuery(baseOptions?: Apollo.LazyQueryHookOptions<GetLibraryPreviewsSettingsQuery, GetLibraryPreviewsSettingsQueryVariables>): Apollo.LazyQueryResultTuple<GetLibraryPreviewsSettingsQuery, Exact<{
|
|
8605
|
-
id: Scalars["ID"];
|
|
8606
|
-
}>>;
|
|
8607
|
-
export declare function useGetLibraryPreviewsSettingsSuspenseQuery(baseOptions?: Apollo.SuspenseQueryHookOptions<GetLibraryPreviewsSettingsQuery, GetLibraryPreviewsSettingsQueryVariables>): Apollo.UseSuspenseQueryResult<GetLibraryPreviewsSettingsQuery, Exact<{
|
|
8608
|
-
id: Scalars["ID"];
|
|
8901
|
+
id: Scalars["ID"]["input"];
|
|
8609
8902
|
}>>;
|
|
8903
|
+
export declare function useGetLibraryPreviewsSettingsSuspenseQuery(baseOptions?: Apollo.SuspenseQueryHookOptions<GetLibraryPreviewsSettingsQuery, GetLibraryPreviewsSettingsQueryVariables>): Apollo.UseSuspenseQueryResult<GetLibraryPreviewsSettingsQuery, GetLibraryPreviewsSettingsQueryVariables>;
|
|
8904
|
+
export declare function useGetLibraryPreviewsSettingsSuspenseQuery(baseOptions?: Apollo.SkipToken | Apollo.SuspenseQueryHookOptions<GetLibraryPreviewsSettingsQuery, GetLibraryPreviewsSettingsQueryVariables>): Apollo.UseSuspenseQueryResult<GetLibraryPreviewsSettingsQuery | undefined, GetLibraryPreviewsSettingsQueryVariables>;
|
|
8610
8905
|
export type GetLibraryPreviewsSettingsQueryHookResult = ReturnType<typeof useGetLibraryPreviewsSettingsQuery>;
|
|
8611
8906
|
export type GetLibraryPreviewsSettingsLazyQueryHookResult = ReturnType<typeof useGetLibraryPreviewsSettingsLazyQuery>;
|
|
8612
8907
|
export type GetLibraryPreviewsSettingsSuspenseQueryHookResult = ReturnType<typeof useGetLibraryPreviewsSettingsSuspenseQuery>;
|
|
@@ -8656,24 +8951,25 @@ export declare const IsAllowedDocument: Apollo.DocumentNode;
|
|
|
8656
8951
|
* },
|
|
8657
8952
|
* });
|
|
8658
8953
|
*/
|
|
8659
|
-
export declare function useIsAllowedQuery(baseOptions: Apollo.QueryHookOptions<IsAllowedQuery, IsAllowedQueryVariables>
|
|
8954
|
+
export declare function useIsAllowedQuery(baseOptions: Apollo.QueryHookOptions<IsAllowedQuery, IsAllowedQueryVariables> & ({
|
|
8955
|
+
variables: IsAllowedQueryVariables;
|
|
8956
|
+
skip?: boolean;
|
|
8957
|
+
} | {
|
|
8958
|
+
skip: boolean;
|
|
8959
|
+
})): Apollo.QueryResult<IsAllowedQuery, Exact<{
|
|
8660
8960
|
type: PermissionTypes;
|
|
8661
8961
|
actions: Array<PermissionsActions> | PermissionsActions;
|
|
8662
|
-
applyTo?: InputMaybe<Scalars["ID"]>;
|
|
8962
|
+
applyTo?: InputMaybe<Scalars["ID"]["input"]>;
|
|
8663
8963
|
target?: InputMaybe<PermissionTarget>;
|
|
8664
8964
|
}>>;
|
|
8665
8965
|
export declare function useIsAllowedLazyQuery(baseOptions?: Apollo.LazyQueryHookOptions<IsAllowedQuery, IsAllowedQueryVariables>): Apollo.LazyQueryResultTuple<IsAllowedQuery, Exact<{
|
|
8666
8966
|
type: PermissionTypes;
|
|
8667
8967
|
actions: Array<PermissionsActions> | PermissionsActions;
|
|
8668
|
-
applyTo?: InputMaybe<Scalars["ID"]>;
|
|
8669
|
-
target?: InputMaybe<PermissionTarget>;
|
|
8670
|
-
}>>;
|
|
8671
|
-
export declare function useIsAllowedSuspenseQuery(baseOptions?: Apollo.SuspenseQueryHookOptions<IsAllowedQuery, IsAllowedQueryVariables>): Apollo.UseSuspenseQueryResult<IsAllowedQuery, Exact<{
|
|
8672
|
-
type: PermissionTypes;
|
|
8673
|
-
actions: Array<PermissionsActions> | PermissionsActions;
|
|
8674
|
-
applyTo?: InputMaybe<Scalars["ID"]>;
|
|
8968
|
+
applyTo?: InputMaybe<Scalars["ID"]["input"]>;
|
|
8675
8969
|
target?: InputMaybe<PermissionTarget>;
|
|
8676
8970
|
}>>;
|
|
8971
|
+
export declare function useIsAllowedSuspenseQuery(baseOptions?: Apollo.SuspenseQueryHookOptions<IsAllowedQuery, IsAllowedQueryVariables>): Apollo.UseSuspenseQueryResult<IsAllowedQuery, IsAllowedQueryVariables>;
|
|
8972
|
+
export declare function useIsAllowedSuspenseQuery(baseOptions?: Apollo.SkipToken | Apollo.SuspenseQueryHookOptions<IsAllowedQuery, IsAllowedQueryVariables>): Apollo.UseSuspenseQueryResult<IsAllowedQuery | undefined, IsAllowedQueryVariables>;
|
|
8677
8973
|
export type IsAllowedQueryHookResult = ReturnType<typeof useIsAllowedQuery>;
|
|
8678
8974
|
export type IsAllowedLazyQueryHookResult = ReturnType<typeof useIsAllowedLazyQuery>;
|
|
8679
8975
|
export type IsAllowedSuspenseQueryHookResult = ReturnType<typeof useIsAllowedSuspenseQuery>;
|
|
@@ -8700,9 +8996,9 @@ export type ActivateNewRecordMutationFn = Apollo.MutationFunction<ActivateNewRec
|
|
|
8700
8996
|
* });
|
|
8701
8997
|
*/
|
|
8702
8998
|
export declare function useActivateNewRecordMutation(baseOptions?: Apollo.MutationHookOptions<ActivateNewRecordMutation, ActivateNewRecordMutationVariables>): Apollo.MutationTuple<ActivateNewRecordMutation, Exact<{
|
|
8703
|
-
libraryId: Scalars["ID"];
|
|
8704
|
-
recordId: Scalars["ID"];
|
|
8705
|
-
formId?: InputMaybe<Scalars["String"]>;
|
|
8999
|
+
libraryId: Scalars["ID"]["input"];
|
|
9000
|
+
recordId: Scalars["ID"]["input"];
|
|
9001
|
+
formId?: InputMaybe<Scalars["String"]["input"]>;
|
|
8706
9002
|
}>, Apollo.DefaultContext, Apollo.ApolloCache<any>>;
|
|
8707
9003
|
export type ActivateNewRecordMutationHookResult = ReturnType<typeof useActivateNewRecordMutation>;
|
|
8708
9004
|
export type ActivateNewRecordMutationResult = Apollo.MutationResult<ActivateNewRecordMutation>;
|
|
@@ -8729,8 +9025,8 @@ export type ActivateRecordsMutationFn = Apollo.MutationFunction<ActivateRecordsM
|
|
|
8729
9025
|
* });
|
|
8730
9026
|
*/
|
|
8731
9027
|
export declare function useActivateRecordsMutation(baseOptions?: Apollo.MutationHookOptions<ActivateRecordsMutation, ActivateRecordsMutationVariables>): Apollo.MutationTuple<ActivateRecordsMutation, Exact<{
|
|
8732
|
-
libraryId: Scalars["String"];
|
|
8733
|
-
recordsIds?: InputMaybe<Array<Scalars["String"]> | Scalars["String"]>;
|
|
9028
|
+
libraryId: Scalars["String"]["input"];
|
|
9029
|
+
recordsIds?: InputMaybe<Array<Scalars["String"]["input"]> | Scalars["String"]["input"]>;
|
|
8734
9030
|
filters?: InputMaybe<Array<RecordFilterInput> | RecordFilterInput>;
|
|
8735
9031
|
}>, Apollo.DefaultContext, Apollo.ApolloCache<any>>;
|
|
8736
9032
|
export type ActivateRecordsMutationHookResult = ReturnType<typeof useActivateRecordsMutation>;
|
|
@@ -8756,7 +9052,7 @@ export type CreateEmptyRecordMutationFn = Apollo.MutationFunction<CreateEmptyRec
|
|
|
8756
9052
|
* });
|
|
8757
9053
|
*/
|
|
8758
9054
|
export declare function useCreateEmptyRecordMutation(baseOptions?: Apollo.MutationHookOptions<CreateEmptyRecordMutation, CreateEmptyRecordMutationVariables>): Apollo.MutationTuple<CreateEmptyRecordMutation, Exact<{
|
|
8759
|
-
library: Scalars["ID"];
|
|
9055
|
+
library: Scalars["ID"]["input"];
|
|
8760
9056
|
}>, Apollo.DefaultContext, Apollo.ApolloCache<any>>;
|
|
8761
9057
|
export type CreateEmptyRecordMutationHookResult = ReturnType<typeof useCreateEmptyRecordMutation>;
|
|
8762
9058
|
export type CreateEmptyRecordMutationResult = Apollo.MutationResult<CreateEmptyRecordMutation>;
|
|
@@ -8782,7 +9078,7 @@ export type CreateRecordMutationFn = Apollo.MutationFunction<CreateRecordMutatio
|
|
|
8782
9078
|
* });
|
|
8783
9079
|
*/
|
|
8784
9080
|
export declare function useCreateRecordMutation(baseOptions?: Apollo.MutationHookOptions<CreateRecordMutation, CreateRecordMutationVariables>): Apollo.MutationTuple<CreateRecordMutation, Exact<{
|
|
8785
|
-
library: Scalars["ID"];
|
|
9081
|
+
library: Scalars["ID"]["input"];
|
|
8786
9082
|
data?: InputMaybe<CreateRecordDataInput>;
|
|
8787
9083
|
}>, Apollo.DefaultContext, Apollo.ApolloCache<any>>;
|
|
8788
9084
|
export type CreateRecordMutationHookResult = ReturnType<typeof useCreateRecordMutation>;
|
|
@@ -8810,8 +9106,8 @@ export type DeactivateRecordsMutationFn = Apollo.MutationFunction<DeactivateReco
|
|
|
8810
9106
|
* });
|
|
8811
9107
|
*/
|
|
8812
9108
|
export declare function useDeactivateRecordsMutation(baseOptions?: Apollo.MutationHookOptions<DeactivateRecordsMutation, DeactivateRecordsMutationVariables>): Apollo.MutationTuple<DeactivateRecordsMutation, Exact<{
|
|
8813
|
-
libraryId: Scalars["String"];
|
|
8814
|
-
recordsIds?: InputMaybe<Array<Scalars["String"]> | Scalars["String"]>;
|
|
9109
|
+
libraryId: Scalars["String"]["input"];
|
|
9110
|
+
recordsIds?: InputMaybe<Array<Scalars["String"]["input"]> | Scalars["String"]["input"]>;
|
|
8815
9111
|
filters?: InputMaybe<Array<RecordFilterInput> | RecordFilterInput>;
|
|
8816
9112
|
}>, Apollo.DefaultContext, Apollo.ApolloCache<any>>;
|
|
8817
9113
|
export type DeactivateRecordsMutationHookResult = ReturnType<typeof useDeactivateRecordsMutation>;
|
|
@@ -8836,21 +9132,23 @@ export declare const DoesFileExistAsChildDocument: Apollo.DocumentNode;
|
|
|
8836
9132
|
* },
|
|
8837
9133
|
* });
|
|
8838
9134
|
*/
|
|
8839
|
-
export declare function useDoesFileExistAsChildQuery(baseOptions: Apollo.QueryHookOptions<DoesFileExistAsChildQuery, DoesFileExistAsChildQueryVariables>
|
|
8840
|
-
|
|
8841
|
-
|
|
8842
|
-
|
|
9135
|
+
export declare function useDoesFileExistAsChildQuery(baseOptions: Apollo.QueryHookOptions<DoesFileExistAsChildQuery, DoesFileExistAsChildQueryVariables> & ({
|
|
9136
|
+
variables: DoesFileExistAsChildQueryVariables;
|
|
9137
|
+
skip?: boolean;
|
|
9138
|
+
} | {
|
|
9139
|
+
skip: boolean;
|
|
9140
|
+
})): Apollo.QueryResult<DoesFileExistAsChildQuery, Exact<{
|
|
9141
|
+
parentNode?: InputMaybe<Scalars["ID"]["input"]>;
|
|
9142
|
+
treeId: Scalars["ID"]["input"];
|
|
9143
|
+
filename: Scalars["String"]["input"];
|
|
8843
9144
|
}>>;
|
|
8844
9145
|
export declare function useDoesFileExistAsChildLazyQuery(baseOptions?: Apollo.LazyQueryHookOptions<DoesFileExistAsChildQuery, DoesFileExistAsChildQueryVariables>): Apollo.LazyQueryResultTuple<DoesFileExistAsChildQuery, Exact<{
|
|
8845
|
-
parentNode?: InputMaybe<Scalars["ID"]>;
|
|
8846
|
-
treeId: Scalars["ID"];
|
|
8847
|
-
filename: Scalars["String"];
|
|
8848
|
-
}>>;
|
|
8849
|
-
export declare function useDoesFileExistAsChildSuspenseQuery(baseOptions?: Apollo.SuspenseQueryHookOptions<DoesFileExistAsChildQuery, DoesFileExistAsChildQueryVariables>): Apollo.UseSuspenseQueryResult<DoesFileExistAsChildQuery, Exact<{
|
|
8850
|
-
parentNode?: InputMaybe<Scalars["ID"]>;
|
|
8851
|
-
treeId: Scalars["ID"];
|
|
8852
|
-
filename: Scalars["String"];
|
|
9146
|
+
parentNode?: InputMaybe<Scalars["ID"]["input"]>;
|
|
9147
|
+
treeId: Scalars["ID"]["input"];
|
|
9148
|
+
filename: Scalars["String"]["input"];
|
|
8853
9149
|
}>>;
|
|
9150
|
+
export declare function useDoesFileExistAsChildSuspenseQuery(baseOptions?: Apollo.SuspenseQueryHookOptions<DoesFileExistAsChildQuery, DoesFileExistAsChildQueryVariables>): Apollo.UseSuspenseQueryResult<DoesFileExistAsChildQuery, DoesFileExistAsChildQueryVariables>;
|
|
9151
|
+
export declare function useDoesFileExistAsChildSuspenseQuery(baseOptions?: Apollo.SkipToken | Apollo.SuspenseQueryHookOptions<DoesFileExistAsChildQuery, DoesFileExistAsChildQueryVariables>): Apollo.UseSuspenseQueryResult<DoesFileExistAsChildQuery | undefined, DoesFileExistAsChildQueryVariables>;
|
|
8854
9152
|
export type DoesFileExistAsChildQueryHookResult = ReturnType<typeof useDoesFileExistAsChildQuery>;
|
|
8855
9153
|
export type DoesFileExistAsChildLazyQueryHookResult = ReturnType<typeof useDoesFileExistAsChildLazyQuery>;
|
|
8856
9154
|
export type DoesFileExistAsChildSuspenseQueryHookResult = ReturnType<typeof useDoesFileExistAsChildSuspenseQuery>;
|
|
@@ -8874,21 +9172,23 @@ export declare const GetFileDataDocument: Apollo.DocumentNode;
|
|
|
8874
9172
|
* },
|
|
8875
9173
|
* });
|
|
8876
9174
|
*/
|
|
8877
|
-
export declare function useGetFileDataQuery(baseOptions: Apollo.QueryHookOptions<GetFileDataQuery, GetFileDataQueryVariables>
|
|
8878
|
-
|
|
8879
|
-
|
|
8880
|
-
|
|
9175
|
+
export declare function useGetFileDataQuery(baseOptions: Apollo.QueryHookOptions<GetFileDataQuery, GetFileDataQueryVariables> & ({
|
|
9176
|
+
variables: GetFileDataQueryVariables;
|
|
9177
|
+
skip?: boolean;
|
|
9178
|
+
} | {
|
|
9179
|
+
skip: boolean;
|
|
9180
|
+
})): Apollo.QueryResult<GetFileDataQuery, Exact<{
|
|
9181
|
+
library: Scalars["ID"]["input"];
|
|
9182
|
+
fileId: Scalars["String"]["input"];
|
|
9183
|
+
previewsStatusAttribute: Scalars["ID"]["input"];
|
|
8881
9184
|
}>>;
|
|
8882
9185
|
export declare function useGetFileDataLazyQuery(baseOptions?: Apollo.LazyQueryHookOptions<GetFileDataQuery, GetFileDataQueryVariables>): Apollo.LazyQueryResultTuple<GetFileDataQuery, Exact<{
|
|
8883
|
-
library: Scalars["ID"];
|
|
8884
|
-
fileId: Scalars["String"];
|
|
8885
|
-
previewsStatusAttribute: Scalars["ID"];
|
|
8886
|
-
}>>;
|
|
8887
|
-
export declare function useGetFileDataSuspenseQuery(baseOptions?: Apollo.SuspenseQueryHookOptions<GetFileDataQuery, GetFileDataQueryVariables>): Apollo.UseSuspenseQueryResult<GetFileDataQuery, Exact<{
|
|
8888
|
-
library: Scalars["ID"];
|
|
8889
|
-
fileId: Scalars["String"];
|
|
8890
|
-
previewsStatusAttribute: Scalars["ID"];
|
|
9186
|
+
library: Scalars["ID"]["input"];
|
|
9187
|
+
fileId: Scalars["String"]["input"];
|
|
9188
|
+
previewsStatusAttribute: Scalars["ID"]["input"];
|
|
8891
9189
|
}>>;
|
|
9190
|
+
export declare function useGetFileDataSuspenseQuery(baseOptions?: Apollo.SuspenseQueryHookOptions<GetFileDataQuery, GetFileDataQueryVariables>): Apollo.UseSuspenseQueryResult<GetFileDataQuery, GetFileDataQueryVariables>;
|
|
9191
|
+
export declare function useGetFileDataSuspenseQuery(baseOptions?: Apollo.SkipToken | Apollo.SuspenseQueryHookOptions<GetFileDataQuery, GetFileDataQueryVariables>): Apollo.UseSuspenseQueryResult<GetFileDataQuery | undefined, GetFileDataQueryVariables>;
|
|
8892
9192
|
export type GetFileDataQueryHookResult = ReturnType<typeof useGetFileDataQuery>;
|
|
8893
9193
|
export type GetFileDataLazyQueryHookResult = ReturnType<typeof useGetFileDataLazyQuery>;
|
|
8894
9194
|
export type GetFileDataSuspenseQueryHookResult = ReturnType<typeof useGetFileDataSuspenseQuery>;
|
|
@@ -8913,24 +9213,25 @@ export declare const RecordFormDocument: Apollo.DocumentNode;
|
|
|
8913
9213
|
* },
|
|
8914
9214
|
* });
|
|
8915
9215
|
*/
|
|
8916
|
-
export declare function useRecordFormQuery(baseOptions: Apollo.QueryHookOptions<RecordFormQuery, RecordFormQueryVariables>
|
|
8917
|
-
|
|
8918
|
-
|
|
8919
|
-
|
|
9216
|
+
export declare function useRecordFormQuery(baseOptions: Apollo.QueryHookOptions<RecordFormQuery, RecordFormQueryVariables> & ({
|
|
9217
|
+
variables: RecordFormQueryVariables;
|
|
9218
|
+
skip?: boolean;
|
|
9219
|
+
} | {
|
|
9220
|
+
skip: boolean;
|
|
9221
|
+
})): Apollo.QueryResult<RecordFormQuery, Exact<{
|
|
9222
|
+
libraryId: Scalars["String"]["input"];
|
|
9223
|
+
formId: Scalars["String"]["input"];
|
|
9224
|
+
recordId?: InputMaybe<Scalars["String"]["input"]>;
|
|
8920
9225
|
version?: InputMaybe<Array<ValueVersionInput> | ValueVersionInput>;
|
|
8921
9226
|
}>>;
|
|
8922
9227
|
export declare function useRecordFormLazyQuery(baseOptions?: Apollo.LazyQueryHookOptions<RecordFormQuery, RecordFormQueryVariables>): Apollo.LazyQueryResultTuple<RecordFormQuery, Exact<{
|
|
8923
|
-
libraryId: Scalars["String"];
|
|
8924
|
-
formId: Scalars["String"];
|
|
8925
|
-
recordId?: InputMaybe<Scalars["String"]>;
|
|
8926
|
-
version?: InputMaybe<Array<ValueVersionInput> | ValueVersionInput>;
|
|
8927
|
-
}>>;
|
|
8928
|
-
export declare function useRecordFormSuspenseQuery(baseOptions?: Apollo.SuspenseQueryHookOptions<RecordFormQuery, RecordFormQueryVariables>): Apollo.UseSuspenseQueryResult<RecordFormQuery, Exact<{
|
|
8929
|
-
libraryId: Scalars["String"];
|
|
8930
|
-
formId: Scalars["String"];
|
|
8931
|
-
recordId?: InputMaybe<Scalars["String"]>;
|
|
9228
|
+
libraryId: Scalars["String"]["input"];
|
|
9229
|
+
formId: Scalars["String"]["input"];
|
|
9230
|
+
recordId?: InputMaybe<Scalars["String"]["input"]>;
|
|
8932
9231
|
version?: InputMaybe<Array<ValueVersionInput> | ValueVersionInput>;
|
|
8933
9232
|
}>>;
|
|
9233
|
+
export declare function useRecordFormSuspenseQuery(baseOptions?: Apollo.SuspenseQueryHookOptions<RecordFormQuery, RecordFormQueryVariables>): Apollo.UseSuspenseQueryResult<RecordFormQuery, RecordFormQueryVariables>;
|
|
9234
|
+
export declare function useRecordFormSuspenseQuery(baseOptions?: Apollo.SkipToken | Apollo.SuspenseQueryHookOptions<RecordFormQuery, RecordFormQueryVariables>): Apollo.UseSuspenseQueryResult<RecordFormQuery | undefined, RecordFormQueryVariables>;
|
|
8934
9235
|
export type RecordFormQueryHookResult = ReturnType<typeof useRecordFormQuery>;
|
|
8935
9236
|
export type RecordFormLazyQueryHookResult = ReturnType<typeof useRecordFormLazyQuery>;
|
|
8936
9237
|
export type RecordFormSuspenseQueryHookResult = ReturnType<typeof useRecordFormSuspenseQuery>;
|
|
@@ -8976,21 +9277,23 @@ export declare const GetRecordsFromLibraryDocument: Apollo.DocumentNode;
|
|
|
8976
9277
|
* },
|
|
8977
9278
|
* });
|
|
8978
9279
|
*/
|
|
8979
|
-
export declare function useGetRecordsFromLibraryQuery(baseOptions: Apollo.QueryHookOptions<GetRecordsFromLibraryQuery, GetRecordsFromLibraryQueryVariables>
|
|
8980
|
-
|
|
9280
|
+
export declare function useGetRecordsFromLibraryQuery(baseOptions: Apollo.QueryHookOptions<GetRecordsFromLibraryQuery, GetRecordsFromLibraryQueryVariables> & ({
|
|
9281
|
+
variables: GetRecordsFromLibraryQueryVariables;
|
|
9282
|
+
skip?: boolean;
|
|
9283
|
+
} | {
|
|
9284
|
+
skip: boolean;
|
|
9285
|
+
})): Apollo.QueryResult<GetRecordsFromLibraryQuery, Exact<{
|
|
9286
|
+
libraryId: Scalars["ID"]["input"];
|
|
8981
9287
|
pagination?: InputMaybe<RecordsPagination>;
|
|
8982
9288
|
filters?: InputMaybe<Array<InputMaybe<RecordFilterInput>> | InputMaybe<RecordFilterInput>>;
|
|
8983
9289
|
}>>;
|
|
8984
9290
|
export declare function useGetRecordsFromLibraryLazyQuery(baseOptions?: Apollo.LazyQueryHookOptions<GetRecordsFromLibraryQuery, GetRecordsFromLibraryQueryVariables>): Apollo.LazyQueryResultTuple<GetRecordsFromLibraryQuery, Exact<{
|
|
8985
|
-
libraryId: Scalars["ID"];
|
|
8986
|
-
pagination?: InputMaybe<RecordsPagination>;
|
|
8987
|
-
filters?: InputMaybe<Array<InputMaybe<RecordFilterInput>> | InputMaybe<RecordFilterInput>>;
|
|
8988
|
-
}>>;
|
|
8989
|
-
export declare function useGetRecordsFromLibrarySuspenseQuery(baseOptions?: Apollo.SuspenseQueryHookOptions<GetRecordsFromLibraryQuery, GetRecordsFromLibraryQueryVariables>): Apollo.UseSuspenseQueryResult<GetRecordsFromLibraryQuery, Exact<{
|
|
8990
|
-
libraryId: Scalars["ID"];
|
|
9291
|
+
libraryId: Scalars["ID"]["input"];
|
|
8991
9292
|
pagination?: InputMaybe<RecordsPagination>;
|
|
8992
9293
|
filters?: InputMaybe<Array<InputMaybe<RecordFilterInput>> | InputMaybe<RecordFilterInput>>;
|
|
8993
9294
|
}>>;
|
|
9295
|
+
export declare function useGetRecordsFromLibrarySuspenseQuery(baseOptions?: Apollo.SuspenseQueryHookOptions<GetRecordsFromLibraryQuery, GetRecordsFromLibraryQueryVariables>): Apollo.UseSuspenseQueryResult<GetRecordsFromLibraryQuery, GetRecordsFromLibraryQueryVariables>;
|
|
9296
|
+
export declare function useGetRecordsFromLibrarySuspenseQuery(baseOptions?: Apollo.SkipToken | Apollo.SuspenseQueryHookOptions<GetRecordsFromLibraryQuery, GetRecordsFromLibraryQueryVariables>): Apollo.UseSuspenseQueryResult<GetRecordsFromLibraryQuery | undefined, GetRecordsFromLibraryQueryVariables>;
|
|
8994
9297
|
export type GetRecordsFromLibraryQueryHookResult = ReturnType<typeof useGetRecordsFromLibraryQuery>;
|
|
8995
9298
|
export type GetRecordsFromLibraryLazyQueryHookResult = ReturnType<typeof useGetRecordsFromLibraryLazyQuery>;
|
|
8996
9299
|
export type GetRecordsFromLibrarySuspenseQueryHookResult = ReturnType<typeof useGetRecordsFromLibrarySuspenseQuery>;
|
|
@@ -9016,8 +9319,8 @@ export type IndexRecordsMutationFn = Apollo.MutationFunction<IndexRecordsMutatio
|
|
|
9016
9319
|
* });
|
|
9017
9320
|
*/
|
|
9018
9321
|
export declare function useIndexRecordsMutation(baseOptions?: Apollo.MutationHookOptions<IndexRecordsMutation, IndexRecordsMutationVariables>): Apollo.MutationTuple<IndexRecordsMutation, Exact<{
|
|
9019
|
-
libraryId: Scalars["String"];
|
|
9020
|
-
records?: InputMaybe<Array<Scalars["String"]> | Scalars["String"]>;
|
|
9322
|
+
libraryId: Scalars["String"]["input"];
|
|
9323
|
+
records?: InputMaybe<Array<Scalars["String"]["input"]> | Scalars["String"]["input"]>;
|
|
9021
9324
|
}>, Apollo.DefaultContext, Apollo.ApolloCache<any>>;
|
|
9022
9325
|
export type IndexRecordsMutationHookResult = ReturnType<typeof useIndexRecordsMutation>;
|
|
9023
9326
|
export type IndexRecordsMutationResult = Apollo.MutationResult<IndexRecordsMutation>;
|
|
@@ -9043,8 +9346,8 @@ export type PurgeRecordMutationFn = Apollo.MutationFunction<PurgeRecordMutation,
|
|
|
9043
9346
|
* });
|
|
9044
9347
|
*/
|
|
9045
9348
|
export declare function usePurgeRecordMutation(baseOptions?: Apollo.MutationHookOptions<PurgeRecordMutation, PurgeRecordMutationVariables>): Apollo.MutationTuple<PurgeRecordMutation, Exact<{
|
|
9046
|
-
libraryId: Scalars["ID"];
|
|
9047
|
-
recordId: Scalars["ID"];
|
|
9349
|
+
libraryId: Scalars["ID"]["input"];
|
|
9350
|
+
recordId: Scalars["ID"]["input"];
|
|
9048
9351
|
}>, Apollo.DefaultContext, Apollo.ApolloCache<any>>;
|
|
9049
9352
|
export type PurgeRecordMutationHookResult = ReturnType<typeof usePurgeRecordMutation>;
|
|
9050
9353
|
export type PurgeRecordMutationResult = Apollo.MutationResult<PurgeRecordMutation>;
|
|
@@ -9069,7 +9372,7 @@ export type CancelTaskMutationFn = Apollo.MutationFunction<CancelTaskMutation, C
|
|
|
9069
9372
|
* });
|
|
9070
9373
|
*/
|
|
9071
9374
|
export declare function useCancelTaskMutation(baseOptions?: Apollo.MutationHookOptions<CancelTaskMutation, CancelTaskMutationVariables>): Apollo.MutationTuple<CancelTaskMutation, Exact<{
|
|
9072
|
-
taskId: Scalars["ID"];
|
|
9375
|
+
taskId: Scalars["ID"]["input"];
|
|
9073
9376
|
}>, Apollo.DefaultContext, Apollo.ApolloCache<any>>;
|
|
9074
9377
|
export type CancelTaskMutationHookResult = ReturnType<typeof useCancelTaskMutation>;
|
|
9075
9378
|
export type CancelTaskMutationResult = Apollo.MutationResult<CancelTaskMutation>;
|
|
@@ -9092,14 +9395,13 @@ export declare const CheckTreeExistenceDocument: Apollo.DocumentNode;
|
|
|
9092
9395
|
* });
|
|
9093
9396
|
*/
|
|
9094
9397
|
export declare function useCheckTreeExistenceQuery(baseOptions?: Apollo.QueryHookOptions<CheckTreeExistenceQuery, CheckTreeExistenceQueryVariables>): Apollo.QueryResult<CheckTreeExistenceQuery, Exact<{
|
|
9095
|
-
id?: InputMaybe<Array<Scalars["ID"]> | Scalars["ID"]>;
|
|
9398
|
+
id?: InputMaybe<Array<Scalars["ID"]["input"]> | Scalars["ID"]["input"]>;
|
|
9096
9399
|
}>>;
|
|
9097
9400
|
export declare function useCheckTreeExistenceLazyQuery(baseOptions?: Apollo.LazyQueryHookOptions<CheckTreeExistenceQuery, CheckTreeExistenceQueryVariables>): Apollo.LazyQueryResultTuple<CheckTreeExistenceQuery, Exact<{
|
|
9098
|
-
id?: InputMaybe<Array<Scalars["ID"]> | Scalars["ID"]>;
|
|
9099
|
-
}>>;
|
|
9100
|
-
export declare function useCheckTreeExistenceSuspenseQuery(baseOptions?: Apollo.SuspenseQueryHookOptions<CheckTreeExistenceQuery, CheckTreeExistenceQueryVariables>): Apollo.UseSuspenseQueryResult<CheckTreeExistenceQuery, Exact<{
|
|
9101
|
-
id?: InputMaybe<Array<Scalars["ID"]> | Scalars["ID"]>;
|
|
9401
|
+
id?: InputMaybe<Array<Scalars["ID"]["input"]> | Scalars["ID"]["input"]>;
|
|
9102
9402
|
}>>;
|
|
9403
|
+
export declare function useCheckTreeExistenceSuspenseQuery(baseOptions?: Apollo.SuspenseQueryHookOptions<CheckTreeExistenceQuery, CheckTreeExistenceQueryVariables>): Apollo.UseSuspenseQueryResult<CheckTreeExistenceQuery, CheckTreeExistenceQueryVariables>;
|
|
9404
|
+
export declare function useCheckTreeExistenceSuspenseQuery(baseOptions?: Apollo.SkipToken | Apollo.SuspenseQueryHookOptions<CheckTreeExistenceQuery, CheckTreeExistenceQueryVariables>): Apollo.UseSuspenseQueryResult<CheckTreeExistenceQuery | undefined, CheckTreeExistenceQueryVariables>;
|
|
9103
9405
|
export type CheckTreeExistenceQueryHookResult = ReturnType<typeof useCheckTreeExistenceQuery>;
|
|
9104
9406
|
export type CheckTreeExistenceLazyQueryHookResult = ReturnType<typeof useCheckTreeExistenceLazyQuery>;
|
|
9105
9407
|
export type CheckTreeExistenceSuspenseQueryHookResult = ReturnType<typeof useCheckTreeExistenceSuspenseQuery>;
|
|
@@ -9124,7 +9426,7 @@ export type DeleteTreeMutationFn = Apollo.MutationFunction<DeleteTreeMutation, D
|
|
|
9124
9426
|
* });
|
|
9125
9427
|
*/
|
|
9126
9428
|
export declare function useDeleteTreeMutation(baseOptions?: Apollo.MutationHookOptions<DeleteTreeMutation, DeleteTreeMutationVariables>): Apollo.MutationTuple<DeleteTreeMutation, Exact<{
|
|
9127
|
-
id: Scalars["ID"];
|
|
9429
|
+
id: Scalars["ID"]["input"];
|
|
9128
9430
|
}>, Apollo.DefaultContext, Apollo.ApolloCache<any>>;
|
|
9129
9431
|
export type DeleteTreeMutationHookResult = ReturnType<typeof useDeleteTreeMutation>;
|
|
9130
9432
|
export type DeleteTreeMutationResult = Apollo.MutationResult<DeleteTreeMutation>;
|
|
@@ -9147,14 +9449,13 @@ export declare const GetTreeByIdDocument: Apollo.DocumentNode;
|
|
|
9147
9449
|
* });
|
|
9148
9450
|
*/
|
|
9149
9451
|
export declare function useGetTreeByIdQuery(baseOptions?: Apollo.QueryHookOptions<GetTreeByIdQuery, GetTreeByIdQueryVariables>): Apollo.QueryResult<GetTreeByIdQuery, Exact<{
|
|
9150
|
-
id?: InputMaybe<Array<Scalars["ID"]> | Scalars["ID"]>;
|
|
9452
|
+
id?: InputMaybe<Array<Scalars["ID"]["input"]> | Scalars["ID"]["input"]>;
|
|
9151
9453
|
}>>;
|
|
9152
9454
|
export declare function useGetTreeByIdLazyQuery(baseOptions?: Apollo.LazyQueryHookOptions<GetTreeByIdQuery, GetTreeByIdQueryVariables>): Apollo.LazyQueryResultTuple<GetTreeByIdQuery, Exact<{
|
|
9153
|
-
id?: InputMaybe<Array<Scalars["ID"]> | Scalars["ID"]>;
|
|
9154
|
-
}>>;
|
|
9155
|
-
export declare function useGetTreeByIdSuspenseQuery(baseOptions?: Apollo.SuspenseQueryHookOptions<GetTreeByIdQuery, GetTreeByIdQueryVariables>): Apollo.UseSuspenseQueryResult<GetTreeByIdQuery, Exact<{
|
|
9156
|
-
id?: InputMaybe<Array<Scalars["ID"]> | Scalars["ID"]>;
|
|
9455
|
+
id?: InputMaybe<Array<Scalars["ID"]["input"]> | Scalars["ID"]["input"]>;
|
|
9157
9456
|
}>>;
|
|
9457
|
+
export declare function useGetTreeByIdSuspenseQuery(baseOptions?: Apollo.SuspenseQueryHookOptions<GetTreeByIdQuery, GetTreeByIdQueryVariables>): Apollo.UseSuspenseQueryResult<GetTreeByIdQuery, GetTreeByIdQueryVariables>;
|
|
9458
|
+
export declare function useGetTreeByIdSuspenseQuery(baseOptions?: Apollo.SkipToken | Apollo.SuspenseQueryHookOptions<GetTreeByIdQuery, GetTreeByIdQueryVariables>): Apollo.UseSuspenseQueryResult<GetTreeByIdQuery | undefined, GetTreeByIdQueryVariables>;
|
|
9158
9459
|
export type GetTreeByIdQueryHookResult = ReturnType<typeof useGetTreeByIdQuery>;
|
|
9159
9460
|
export type GetTreeByIdLazyQueryHookResult = ReturnType<typeof useGetTreeByIdLazyQuery>;
|
|
9160
9461
|
export type GetTreeByIdSuspenseQueryHookResult = ReturnType<typeof useGetTreeByIdSuspenseQuery>;
|
|
@@ -9178,17 +9479,15 @@ export declare const GetTreeLibrariesDocument: Apollo.DocumentNode;
|
|
|
9178
9479
|
* });
|
|
9179
9480
|
*/
|
|
9180
9481
|
export declare function useGetTreeLibrariesQuery(baseOptions?: Apollo.QueryHookOptions<GetTreeLibrariesQuery, GetTreeLibrariesQueryVariables>): Apollo.QueryResult<GetTreeLibrariesQuery, Exact<{
|
|
9181
|
-
treeId?: InputMaybe<Array<Scalars["ID"]> | Scalars["ID"]>;
|
|
9182
|
-
library?: InputMaybe<Scalars["String"]>;
|
|
9482
|
+
treeId?: InputMaybe<Array<Scalars["ID"]["input"]> | Scalars["ID"]["input"]>;
|
|
9483
|
+
library?: InputMaybe<Scalars["String"]["input"]>;
|
|
9183
9484
|
}>>;
|
|
9184
9485
|
export declare function useGetTreeLibrariesLazyQuery(baseOptions?: Apollo.LazyQueryHookOptions<GetTreeLibrariesQuery, GetTreeLibrariesQueryVariables>): Apollo.LazyQueryResultTuple<GetTreeLibrariesQuery, Exact<{
|
|
9185
|
-
treeId?: InputMaybe<Array<Scalars["ID"]> | Scalars["ID"]>;
|
|
9186
|
-
library?: InputMaybe<Scalars["String"]>;
|
|
9187
|
-
}>>;
|
|
9188
|
-
export declare function useGetTreeLibrariesSuspenseQuery(baseOptions?: Apollo.SuspenseQueryHookOptions<GetTreeLibrariesQuery, GetTreeLibrariesQueryVariables>): Apollo.UseSuspenseQueryResult<GetTreeLibrariesQuery, Exact<{
|
|
9189
|
-
treeId?: InputMaybe<Array<Scalars["ID"]> | Scalars["ID"]>;
|
|
9190
|
-
library?: InputMaybe<Scalars["String"]>;
|
|
9486
|
+
treeId?: InputMaybe<Array<Scalars["ID"]["input"]> | Scalars["ID"]["input"]>;
|
|
9487
|
+
library?: InputMaybe<Scalars["String"]["input"]>;
|
|
9191
9488
|
}>>;
|
|
9489
|
+
export declare function useGetTreeLibrariesSuspenseQuery(baseOptions?: Apollo.SuspenseQueryHookOptions<GetTreeLibrariesQuery, GetTreeLibrariesQueryVariables>): Apollo.UseSuspenseQueryResult<GetTreeLibrariesQuery, GetTreeLibrariesQueryVariables>;
|
|
9490
|
+
export declare function useGetTreeLibrariesSuspenseQuery(baseOptions?: Apollo.SkipToken | Apollo.SuspenseQueryHookOptions<GetTreeLibrariesQuery, GetTreeLibrariesQueryVariables>): Apollo.UseSuspenseQueryResult<GetTreeLibrariesQuery | undefined, GetTreeLibrariesQueryVariables>;
|
|
9192
9491
|
export type GetTreeLibrariesQueryHookResult = ReturnType<typeof useGetTreeLibrariesQuery>;
|
|
9193
9492
|
export type GetTreeLibrariesLazyQueryHookResult = ReturnType<typeof useGetTreeLibrariesLazyQuery>;
|
|
9194
9493
|
export type GetTreeLibrariesSuspenseQueryHookResult = ReturnType<typeof useGetTreeLibrariesSuspenseQuery>;
|
|
@@ -9215,9 +9514,8 @@ export declare function useGetTreesQuery(baseOptions?: Apollo.QueryHookOptions<G
|
|
|
9215
9514
|
export declare function useGetTreesLazyQuery(baseOptions?: Apollo.LazyQueryHookOptions<GetTreesQuery, GetTreesQueryVariables>): Apollo.LazyQueryResultTuple<GetTreesQuery, Exact<{
|
|
9216
9515
|
[key: string]: never;
|
|
9217
9516
|
}>>;
|
|
9218
|
-
export declare function useGetTreesSuspenseQuery(baseOptions?: Apollo.SuspenseQueryHookOptions<GetTreesQuery, GetTreesQueryVariables>): Apollo.UseSuspenseQueryResult<GetTreesQuery,
|
|
9219
|
-
|
|
9220
|
-
}>>;
|
|
9517
|
+
export declare function useGetTreesSuspenseQuery(baseOptions?: Apollo.SuspenseQueryHookOptions<GetTreesQuery, GetTreesQueryVariables>): Apollo.UseSuspenseQueryResult<GetTreesQuery, GetTreesQueryVariables>;
|
|
9518
|
+
export declare function useGetTreesSuspenseQuery(baseOptions?: Apollo.SkipToken | Apollo.SuspenseQueryHookOptions<GetTreesQuery, GetTreesQueryVariables>): Apollo.UseSuspenseQueryResult<GetTreesQuery | undefined, GetTreesQueryVariables>;
|
|
9221
9519
|
export type GetTreesQueryHookResult = ReturnType<typeof useGetTreesQuery>;
|
|
9222
9520
|
export type GetTreesLazyQueryHookResult = ReturnType<typeof useGetTreesLazyQuery>;
|
|
9223
9521
|
export type GetTreesSuspenseQueryHookResult = ReturnType<typeof useGetTreesSuspenseQuery>;
|
|
@@ -9264,31 +9562,84 @@ export declare const TreeNodeChildrenDocument: Apollo.DocumentNode;
|
|
|
9264
9562
|
* node: // value for 'node'
|
|
9265
9563
|
* pagination: // value for 'pagination'
|
|
9266
9564
|
* childrenAsRecordValuePermissionFilter: // value for 'childrenAsRecordValuePermissionFilter'
|
|
9565
|
+
* dependentValuesPermissionFilter: // value for 'dependentValuesPermissionFilter'
|
|
9267
9566
|
* },
|
|
9268
9567
|
* });
|
|
9269
9568
|
*/
|
|
9270
|
-
export declare function useTreeNodeChildrenQuery(baseOptions: Apollo.QueryHookOptions<TreeNodeChildrenQuery, TreeNodeChildrenQueryVariables>
|
|
9271
|
-
|
|
9272
|
-
|
|
9569
|
+
export declare function useTreeNodeChildrenQuery(baseOptions: Apollo.QueryHookOptions<TreeNodeChildrenQuery, TreeNodeChildrenQueryVariables> & ({
|
|
9570
|
+
variables: TreeNodeChildrenQueryVariables;
|
|
9571
|
+
skip?: boolean;
|
|
9572
|
+
} | {
|
|
9573
|
+
skip: boolean;
|
|
9574
|
+
})): Apollo.QueryResult<TreeNodeChildrenQuery, Exact<{
|
|
9575
|
+
treeId: Scalars["ID"]["input"];
|
|
9576
|
+
node?: InputMaybe<Scalars["ID"]["input"]>;
|
|
9273
9577
|
pagination?: InputMaybe<Pagination>;
|
|
9274
9578
|
childrenAsRecordValuePermissionFilter?: InputMaybe<ChildrenAsRecordValuePermissionFilterInput>;
|
|
9579
|
+
dependentValuesPermissionFilter?: InputMaybe<DependentValuesPermissionFilterInput>;
|
|
9275
9580
|
}>>;
|
|
9276
9581
|
export declare function useTreeNodeChildrenLazyQuery(baseOptions?: Apollo.LazyQueryHookOptions<TreeNodeChildrenQuery, TreeNodeChildrenQueryVariables>): Apollo.LazyQueryResultTuple<TreeNodeChildrenQuery, Exact<{
|
|
9277
|
-
treeId: Scalars["ID"];
|
|
9278
|
-
node?: InputMaybe<Scalars["ID"]>;
|
|
9279
|
-
pagination?: InputMaybe<Pagination>;
|
|
9280
|
-
childrenAsRecordValuePermissionFilter?: InputMaybe<ChildrenAsRecordValuePermissionFilterInput>;
|
|
9281
|
-
}>>;
|
|
9282
|
-
export declare function useTreeNodeChildrenSuspenseQuery(baseOptions?: Apollo.SuspenseQueryHookOptions<TreeNodeChildrenQuery, TreeNodeChildrenQueryVariables>): Apollo.UseSuspenseQueryResult<TreeNodeChildrenQuery, Exact<{
|
|
9283
|
-
treeId: Scalars["ID"];
|
|
9284
|
-
node?: InputMaybe<Scalars["ID"]>;
|
|
9582
|
+
treeId: Scalars["ID"]["input"];
|
|
9583
|
+
node?: InputMaybe<Scalars["ID"]["input"]>;
|
|
9285
9584
|
pagination?: InputMaybe<Pagination>;
|
|
9286
9585
|
childrenAsRecordValuePermissionFilter?: InputMaybe<ChildrenAsRecordValuePermissionFilterInput>;
|
|
9586
|
+
dependentValuesPermissionFilter?: InputMaybe<DependentValuesPermissionFilterInput>;
|
|
9287
9587
|
}>>;
|
|
9588
|
+
export declare function useTreeNodeChildrenSuspenseQuery(baseOptions?: Apollo.SuspenseQueryHookOptions<TreeNodeChildrenQuery, TreeNodeChildrenQueryVariables>): Apollo.UseSuspenseQueryResult<TreeNodeChildrenQuery, TreeNodeChildrenQueryVariables>;
|
|
9589
|
+
export declare function useTreeNodeChildrenSuspenseQuery(baseOptions?: Apollo.SkipToken | Apollo.SuspenseQueryHookOptions<TreeNodeChildrenQuery, TreeNodeChildrenQueryVariables>): Apollo.UseSuspenseQueryResult<TreeNodeChildrenQuery | undefined, TreeNodeChildrenQueryVariables>;
|
|
9288
9590
|
export type TreeNodeChildrenQueryHookResult = ReturnType<typeof useTreeNodeChildrenQuery>;
|
|
9289
9591
|
export type TreeNodeChildrenLazyQueryHookResult = ReturnType<typeof useTreeNodeChildrenLazyQuery>;
|
|
9290
9592
|
export type TreeNodeChildrenSuspenseQueryHookResult = ReturnType<typeof useTreeNodeChildrenSuspenseQuery>;
|
|
9291
9593
|
export type TreeNodeChildrenQueryResult = Apollo.QueryResult<TreeNodeChildrenQuery, TreeNodeChildrenQueryVariables>;
|
|
9594
|
+
export declare const GetTreeNodeChildrenWithAccessByDefaultPermissionQueryDocument: Apollo.DocumentNode;
|
|
9595
|
+
/**
|
|
9596
|
+
* __useGetTreeNodeChildrenWithAccessByDefaultPermissionQueryQuery__
|
|
9597
|
+
*
|
|
9598
|
+
* To run a query within a React component, call `useGetTreeNodeChildrenWithAccessByDefaultPermissionQueryQuery` and pass it any options that fit your needs.
|
|
9599
|
+
* When your component renders, `useGetTreeNodeChildrenWithAccessByDefaultPermissionQueryQuery` returns an object from Apollo Client that contains loading, error, and data properties
|
|
9600
|
+
* you can use to render your UI.
|
|
9601
|
+
*
|
|
9602
|
+
* @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;
|
|
9603
|
+
*
|
|
9604
|
+
* @example
|
|
9605
|
+
* const { data, loading, error } = useGetTreeNodeChildrenWithAccessByDefaultPermissionQueryQuery({
|
|
9606
|
+
* variables: {
|
|
9607
|
+
* treeId: // value for 'treeId'
|
|
9608
|
+
* node: // value for 'node'
|
|
9609
|
+
* pagination: // value for 'pagination'
|
|
9610
|
+
* childrenAsRecordValuePermissionFilter: // value for 'childrenAsRecordValuePermissionFilter'
|
|
9611
|
+
* dependentValuesPermissionFilter: // value for 'dependentValuesPermissionFilter'
|
|
9612
|
+
* accessRecordByDefaultPermission: // value for 'accessRecordByDefaultPermission'
|
|
9613
|
+
* },
|
|
9614
|
+
* });
|
|
9615
|
+
*/
|
|
9616
|
+
export declare function useGetTreeNodeChildrenWithAccessByDefaultPermissionQueryQuery(baseOptions: Apollo.QueryHookOptions<GetTreeNodeChildrenWithAccessByDefaultPermissionQueryQuery, GetTreeNodeChildrenWithAccessByDefaultPermissionQueryQueryVariables> & ({
|
|
9617
|
+
variables: GetTreeNodeChildrenWithAccessByDefaultPermissionQueryQueryVariables;
|
|
9618
|
+
skip?: boolean;
|
|
9619
|
+
} | {
|
|
9620
|
+
skip: boolean;
|
|
9621
|
+
})): Apollo.QueryResult<GetTreeNodeChildrenWithAccessByDefaultPermissionQueryQuery, Exact<{
|
|
9622
|
+
treeId: Scalars["ID"]["input"];
|
|
9623
|
+
node?: InputMaybe<Scalars["ID"]["input"]>;
|
|
9624
|
+
pagination?: InputMaybe<Pagination>;
|
|
9625
|
+
childrenAsRecordValuePermissionFilter?: InputMaybe<ChildrenAsRecordValuePermissionFilterInput>;
|
|
9626
|
+
dependentValuesPermissionFilter?: InputMaybe<DependentValuesPermissionFilterInput>;
|
|
9627
|
+
accessRecordByDefaultPermission?: InputMaybe<AccessRecordByDefaultPermissionInput>;
|
|
9628
|
+
}>>;
|
|
9629
|
+
export declare function useGetTreeNodeChildrenWithAccessByDefaultPermissionQueryLazyQuery(baseOptions?: Apollo.LazyQueryHookOptions<GetTreeNodeChildrenWithAccessByDefaultPermissionQueryQuery, GetTreeNodeChildrenWithAccessByDefaultPermissionQueryQueryVariables>): Apollo.LazyQueryResultTuple<GetTreeNodeChildrenWithAccessByDefaultPermissionQueryQuery, Exact<{
|
|
9630
|
+
treeId: Scalars["ID"]["input"];
|
|
9631
|
+
node?: InputMaybe<Scalars["ID"]["input"]>;
|
|
9632
|
+
pagination?: InputMaybe<Pagination>;
|
|
9633
|
+
childrenAsRecordValuePermissionFilter?: InputMaybe<ChildrenAsRecordValuePermissionFilterInput>;
|
|
9634
|
+
dependentValuesPermissionFilter?: InputMaybe<DependentValuesPermissionFilterInput>;
|
|
9635
|
+
accessRecordByDefaultPermission?: InputMaybe<AccessRecordByDefaultPermissionInput>;
|
|
9636
|
+
}>>;
|
|
9637
|
+
export declare function useGetTreeNodeChildrenWithAccessByDefaultPermissionQuerySuspenseQuery(baseOptions?: Apollo.SuspenseQueryHookOptions<GetTreeNodeChildrenWithAccessByDefaultPermissionQueryQuery, GetTreeNodeChildrenWithAccessByDefaultPermissionQueryQueryVariables>): Apollo.UseSuspenseQueryResult<GetTreeNodeChildrenWithAccessByDefaultPermissionQueryQuery, GetTreeNodeChildrenWithAccessByDefaultPermissionQueryQueryVariables>;
|
|
9638
|
+
export declare function useGetTreeNodeChildrenWithAccessByDefaultPermissionQuerySuspenseQuery(baseOptions?: Apollo.SkipToken | Apollo.SuspenseQueryHookOptions<GetTreeNodeChildrenWithAccessByDefaultPermissionQueryQuery, GetTreeNodeChildrenWithAccessByDefaultPermissionQueryQueryVariables>): Apollo.UseSuspenseQueryResult<GetTreeNodeChildrenWithAccessByDefaultPermissionQueryQuery | undefined, GetTreeNodeChildrenWithAccessByDefaultPermissionQueryQueryVariables>;
|
|
9639
|
+
export type GetTreeNodeChildrenWithAccessByDefaultPermissionQueryQueryHookResult = ReturnType<typeof useGetTreeNodeChildrenWithAccessByDefaultPermissionQueryQuery>;
|
|
9640
|
+
export type GetTreeNodeChildrenWithAccessByDefaultPermissionQueryLazyQueryHookResult = ReturnType<typeof useGetTreeNodeChildrenWithAccessByDefaultPermissionQueryLazyQuery>;
|
|
9641
|
+
export type GetTreeNodeChildrenWithAccessByDefaultPermissionQuerySuspenseQueryHookResult = ReturnType<typeof useGetTreeNodeChildrenWithAccessByDefaultPermissionQuerySuspenseQuery>;
|
|
9642
|
+
export type GetTreeNodeChildrenWithAccessByDefaultPermissionQueryQueryResult = Apollo.QueryResult<GetTreeNodeChildrenWithAccessByDefaultPermissionQueryQuery, GetTreeNodeChildrenWithAccessByDefaultPermissionQueryQueryVariables>;
|
|
9292
9643
|
export declare const GetUserDataDocument: Apollo.DocumentNode;
|
|
9293
9644
|
/**
|
|
9294
9645
|
* __useGetUserDataQuery__
|
|
@@ -9307,18 +9658,21 @@ export declare const GetUserDataDocument: Apollo.DocumentNode;
|
|
|
9307
9658
|
* },
|
|
9308
9659
|
* });
|
|
9309
9660
|
*/
|
|
9310
|
-
export declare function useGetUserDataQuery(baseOptions: Apollo.QueryHookOptions<GetUserDataQuery, GetUserDataQueryVariables>
|
|
9311
|
-
|
|
9312
|
-
|
|
9661
|
+
export declare function useGetUserDataQuery(baseOptions: Apollo.QueryHookOptions<GetUserDataQuery, GetUserDataQueryVariables> & ({
|
|
9662
|
+
variables: GetUserDataQueryVariables;
|
|
9663
|
+
skip?: boolean;
|
|
9664
|
+
} | {
|
|
9665
|
+
skip: boolean;
|
|
9666
|
+
})): Apollo.QueryResult<GetUserDataQuery, Exact<{
|
|
9667
|
+
keys: Array<Scalars["String"]["input"]> | Scalars["String"]["input"];
|
|
9668
|
+
global?: InputMaybe<Scalars["Boolean"]["input"]>;
|
|
9313
9669
|
}>>;
|
|
9314
9670
|
export declare function useGetUserDataLazyQuery(baseOptions?: Apollo.LazyQueryHookOptions<GetUserDataQuery, GetUserDataQueryVariables>): Apollo.LazyQueryResultTuple<GetUserDataQuery, Exact<{
|
|
9315
|
-
keys: Array<Scalars["String"]> | Scalars["String"];
|
|
9316
|
-
global?: InputMaybe<Scalars["Boolean"]>;
|
|
9317
|
-
}>>;
|
|
9318
|
-
export declare function useGetUserDataSuspenseQuery(baseOptions?: Apollo.SuspenseQueryHookOptions<GetUserDataQuery, GetUserDataQueryVariables>): Apollo.UseSuspenseQueryResult<GetUserDataQuery, Exact<{
|
|
9319
|
-
keys: Array<Scalars["String"]> | Scalars["String"];
|
|
9320
|
-
global?: InputMaybe<Scalars["Boolean"]>;
|
|
9671
|
+
keys: Array<Scalars["String"]["input"]> | Scalars["String"]["input"];
|
|
9672
|
+
global?: InputMaybe<Scalars["Boolean"]["input"]>;
|
|
9321
9673
|
}>>;
|
|
9674
|
+
export declare function useGetUserDataSuspenseQuery(baseOptions?: Apollo.SuspenseQueryHookOptions<GetUserDataQuery, GetUserDataQueryVariables>): Apollo.UseSuspenseQueryResult<GetUserDataQuery, GetUserDataQueryVariables>;
|
|
9675
|
+
export declare function useGetUserDataSuspenseQuery(baseOptions?: Apollo.SkipToken | Apollo.SuspenseQueryHookOptions<GetUserDataQuery, GetUserDataQueryVariables>): Apollo.UseSuspenseQueryResult<GetUserDataQuery | undefined, GetUserDataQueryVariables>;
|
|
9322
9676
|
export type GetUserDataQueryHookResult = ReturnType<typeof useGetUserDataQuery>;
|
|
9323
9677
|
export type GetUserDataLazyQueryHookResult = ReturnType<typeof useGetUserDataLazyQuery>;
|
|
9324
9678
|
export type GetUserDataSuspenseQueryHookResult = ReturnType<typeof useGetUserDataSuspenseQuery>;
|
|
@@ -9345,9 +9699,9 @@ export type SaveUserDataMutationFn = Apollo.MutationFunction<SaveUserDataMutatio
|
|
|
9345
9699
|
* });
|
|
9346
9700
|
*/
|
|
9347
9701
|
export declare function useSaveUserDataMutation(baseOptions?: Apollo.MutationHookOptions<SaveUserDataMutation, SaveUserDataMutationVariables>): Apollo.MutationTuple<SaveUserDataMutation, Exact<{
|
|
9348
|
-
key: Scalars["String"];
|
|
9349
|
-
value?: InputMaybe<Scalars["Any"]>;
|
|
9350
|
-
global: Scalars["Boolean"];
|
|
9702
|
+
key: Scalars["String"]["input"];
|
|
9703
|
+
value?: InputMaybe<Scalars["Any"]["input"]>;
|
|
9704
|
+
global: Scalars["Boolean"]["input"];
|
|
9351
9705
|
}>, Apollo.DefaultContext, Apollo.ApolloCache<any>>;
|
|
9352
9706
|
export type SaveUserDataMutationHookResult = ReturnType<typeof useSaveUserDataMutation>;
|
|
9353
9707
|
export type SaveUserDataMutationResult = Apollo.MutationResult<SaveUserDataMutation>;
|
|
@@ -9375,9 +9729,9 @@ export type DeleteValueMutationFn = Apollo.MutationFunction<DeleteValueMutation,
|
|
|
9375
9729
|
* });
|
|
9376
9730
|
*/
|
|
9377
9731
|
export declare function useDeleteValueMutation(baseOptions?: Apollo.MutationHookOptions<DeleteValueMutation, DeleteValueMutationVariables>): Apollo.MutationTuple<DeleteValueMutation, Exact<{
|
|
9378
|
-
library: Scalars["ID"];
|
|
9379
|
-
recordId: Scalars["ID"];
|
|
9380
|
-
attribute: Scalars["ID"];
|
|
9732
|
+
library: Scalars["ID"]["input"];
|
|
9733
|
+
recordId: Scalars["ID"]["input"];
|
|
9734
|
+
attribute: Scalars["ID"]["input"];
|
|
9381
9735
|
value?: InputMaybe<ValueInput>;
|
|
9382
9736
|
}>, Apollo.DefaultContext, Apollo.ApolloCache<any>>;
|
|
9383
9737
|
export type DeleteValueMutationHookResult = ReturnType<typeof useDeleteValueMutation>;
|
|
@@ -9407,11 +9761,11 @@ export type SaveValueBatchMutationFn = Apollo.MutationFunction<SaveValueBatchMut
|
|
|
9407
9761
|
* });
|
|
9408
9762
|
*/
|
|
9409
9763
|
export declare function useSaveValueBatchMutation(baseOptions?: Apollo.MutationHookOptions<SaveValueBatchMutation, SaveValueBatchMutationVariables>): Apollo.MutationTuple<SaveValueBatchMutation, Exact<{
|
|
9410
|
-
library: Scalars["ID"];
|
|
9411
|
-
recordId: Scalars["ID"];
|
|
9764
|
+
library: Scalars["ID"]["input"];
|
|
9765
|
+
recordId: Scalars["ID"]["input"];
|
|
9412
9766
|
version?: InputMaybe<Array<ValueVersionInput> | ValueVersionInput>;
|
|
9413
9767
|
values: Array<ValueBatchInput> | ValueBatchInput;
|
|
9414
|
-
deleteEmpty?: InputMaybe<Scalars["Boolean"]>;
|
|
9768
|
+
deleteEmpty?: InputMaybe<Scalars["Boolean"]["input"]>;
|
|
9415
9769
|
}>, Apollo.DefaultContext, Apollo.ApolloCache<any>>;
|
|
9416
9770
|
export type SaveValueBatchMutationHookResult = ReturnType<typeof useSaveValueBatchMutation>;
|
|
9417
9771
|
export type SaveValueBatchMutationResult = Apollo.MutationResult<SaveValueBatchMutation>;
|
|
@@ -9439,9 +9793,9 @@ export type SaveValueBulkMutationFn = Apollo.MutationFunction<SaveValueBulkMutat
|
|
|
9439
9793
|
* });
|
|
9440
9794
|
*/
|
|
9441
9795
|
export declare function useSaveValueBulkMutation(baseOptions?: Apollo.MutationHookOptions<SaveValueBulkMutation, SaveValueBulkMutationVariables>): Apollo.MutationTuple<SaveValueBulkMutation, Exact<{
|
|
9442
|
-
libraryId: Scalars["ID"];
|
|
9796
|
+
libraryId: Scalars["ID"]["input"];
|
|
9443
9797
|
recordsFilters: Array<InputMaybe<RecordFilterInput>> | InputMaybe<RecordFilterInput>;
|
|
9444
|
-
attributeId: Scalars["ID"];
|
|
9798
|
+
attributeId: Scalars["ID"]["input"];
|
|
9445
9799
|
mapValues: Array<MapValueInput> | MapValueInput;
|
|
9446
9800
|
}>, Apollo.DefaultContext, Apollo.ApolloCache<any>>;
|
|
9447
9801
|
export type SaveValueBulkMutationHookResult = ReturnType<typeof useSaveValueBulkMutation>;
|
|
@@ -9467,7 +9821,7 @@ export type DeleteViewMutationFn = Apollo.MutationFunction<DeleteViewMutation, D
|
|
|
9467
9821
|
* });
|
|
9468
9822
|
*/
|
|
9469
9823
|
export declare function useDeleteViewMutation(baseOptions?: Apollo.MutationHookOptions<DeleteViewMutation, DeleteViewMutationVariables>): Apollo.MutationTuple<DeleteViewMutation, Exact<{
|
|
9470
|
-
viewId: Scalars["String"];
|
|
9824
|
+
viewId: Scalars["String"]["input"];
|
|
9471
9825
|
}>, Apollo.DefaultContext, Apollo.ApolloCache<any>>;
|
|
9472
9826
|
export type DeleteViewMutationHookResult = ReturnType<typeof useDeleteViewMutation>;
|
|
9473
9827
|
export type DeleteViewMutationResult = Apollo.MutationResult<DeleteViewMutation>;
|
|
@@ -9489,15 +9843,19 @@ export declare const GetViewDocument: Apollo.DocumentNode;
|
|
|
9489
9843
|
* },
|
|
9490
9844
|
* });
|
|
9491
9845
|
*/
|
|
9492
|
-
export declare function useGetViewQuery(baseOptions: Apollo.QueryHookOptions<GetViewQuery, GetViewQueryVariables>
|
|
9493
|
-
|
|
9846
|
+
export declare function useGetViewQuery(baseOptions: Apollo.QueryHookOptions<GetViewQuery, GetViewQueryVariables> & ({
|
|
9847
|
+
variables: GetViewQueryVariables;
|
|
9848
|
+
skip?: boolean;
|
|
9849
|
+
} | {
|
|
9850
|
+
skip: boolean;
|
|
9851
|
+
})): Apollo.QueryResult<GetViewQuery, Exact<{
|
|
9852
|
+
viewId: Scalars["String"]["input"];
|
|
9494
9853
|
}>>;
|
|
9495
9854
|
export declare function useGetViewLazyQuery(baseOptions?: Apollo.LazyQueryHookOptions<GetViewQuery, GetViewQueryVariables>): Apollo.LazyQueryResultTuple<GetViewQuery, Exact<{
|
|
9496
|
-
viewId: Scalars["String"];
|
|
9497
|
-
}>>;
|
|
9498
|
-
export declare function useGetViewSuspenseQuery(baseOptions?: Apollo.SuspenseQueryHookOptions<GetViewQuery, GetViewQueryVariables>): Apollo.UseSuspenseQueryResult<GetViewQuery, Exact<{
|
|
9499
|
-
viewId: Scalars["String"];
|
|
9855
|
+
viewId: Scalars["String"]["input"];
|
|
9500
9856
|
}>>;
|
|
9857
|
+
export declare function useGetViewSuspenseQuery(baseOptions?: Apollo.SuspenseQueryHookOptions<GetViewQuery, GetViewQueryVariables>): Apollo.UseSuspenseQueryResult<GetViewQuery, GetViewQueryVariables>;
|
|
9858
|
+
export declare function useGetViewSuspenseQuery(baseOptions?: Apollo.SkipToken | Apollo.SuspenseQueryHookOptions<GetViewQuery, GetViewQueryVariables>): Apollo.UseSuspenseQueryResult<GetViewQuery | undefined, GetViewQueryVariables>;
|
|
9501
9859
|
export type GetViewQueryHookResult = ReturnType<typeof useGetViewQuery>;
|
|
9502
9860
|
export type GetViewLazyQueryHookResult = ReturnType<typeof useGetViewLazyQuery>;
|
|
9503
9861
|
export type GetViewSuspenseQueryHookResult = ReturnType<typeof useGetViewSuspenseQuery>;
|
|
@@ -9519,15 +9877,19 @@ export declare const GetViewsListDocument: Apollo.DocumentNode;
|
|
|
9519
9877
|
* },
|
|
9520
9878
|
* });
|
|
9521
9879
|
*/
|
|
9522
|
-
export declare function useGetViewsListQuery(baseOptions: Apollo.QueryHookOptions<GetViewsListQuery, GetViewsListQueryVariables>
|
|
9523
|
-
|
|
9880
|
+
export declare function useGetViewsListQuery(baseOptions: Apollo.QueryHookOptions<GetViewsListQuery, GetViewsListQueryVariables> & ({
|
|
9881
|
+
variables: GetViewsListQueryVariables;
|
|
9882
|
+
skip?: boolean;
|
|
9883
|
+
} | {
|
|
9884
|
+
skip: boolean;
|
|
9885
|
+
})): Apollo.QueryResult<GetViewsListQuery, Exact<{
|
|
9886
|
+
libraryId: Scalars["String"]["input"];
|
|
9524
9887
|
}>>;
|
|
9525
9888
|
export declare function useGetViewsListLazyQuery(baseOptions?: Apollo.LazyQueryHookOptions<GetViewsListQuery, GetViewsListQueryVariables>): Apollo.LazyQueryResultTuple<GetViewsListQuery, Exact<{
|
|
9526
|
-
libraryId: Scalars["String"];
|
|
9527
|
-
}>>;
|
|
9528
|
-
export declare function useGetViewsListSuspenseQuery(baseOptions?: Apollo.SuspenseQueryHookOptions<GetViewsListQuery, GetViewsListQueryVariables>): Apollo.UseSuspenseQueryResult<GetViewsListQuery, Exact<{
|
|
9529
|
-
libraryId: Scalars["String"];
|
|
9889
|
+
libraryId: Scalars["String"]["input"];
|
|
9530
9890
|
}>>;
|
|
9891
|
+
export declare function useGetViewsListSuspenseQuery(baseOptions?: Apollo.SuspenseQueryHookOptions<GetViewsListQuery, GetViewsListQueryVariables>): Apollo.UseSuspenseQueryResult<GetViewsListQuery, GetViewsListQueryVariables>;
|
|
9892
|
+
export declare function useGetViewsListSuspenseQuery(baseOptions?: Apollo.SkipToken | Apollo.SuspenseQueryHookOptions<GetViewsListQuery, GetViewsListQueryVariables>): Apollo.UseSuspenseQueryResult<GetViewsListQuery | undefined, GetViewsListQueryVariables>;
|
|
9531
9893
|
export type GetViewsListQueryHookResult = ReturnType<typeof useGetViewsListQuery>;
|
|
9532
9894
|
export type GetViewsListLazyQueryHookResult = ReturnType<typeof useGetViewsListLazyQuery>;
|
|
9533
9895
|
export type GetViewsListSuspenseQueryHookResult = ReturnType<typeof useGetViewsListSuspenseQuery>;
|
|
@@ -9557,40 +9919,40 @@ export declare function useSaveViewMutation(baseOptions?: Apollo.MutationHookOpt
|
|
|
9557
9919
|
export type SaveViewMutationHookResult = ReturnType<typeof useSaveViewMutation>;
|
|
9558
9920
|
export type SaveViewMutationResult = Apollo.MutationResult<SaveViewMutation>;
|
|
9559
9921
|
export type SaveViewMutationOptions = Apollo.BaseMutationOptions<SaveViewMutation, SaveViewMutationVariables>;
|
|
9560
|
-
export declare const
|
|
9922
|
+
export declare const AttributeWithValuesForMassEditionDocument: Apollo.DocumentNode;
|
|
9561
9923
|
/**
|
|
9562
|
-
*
|
|
9924
|
+
* __useAttributeWithValuesForMassEditionQuery__
|
|
9563
9925
|
*
|
|
9564
|
-
* To run a query within a React component, call `
|
|
9565
|
-
* When your component renders, `
|
|
9926
|
+
* To run a query within a React component, call `useAttributeWithValuesForMassEditionQuery` and pass it any options that fit your needs.
|
|
9927
|
+
* When your component renders, `useAttributeWithValuesForMassEditionQuery` returns an object from Apollo Client that contains loading, error, and data properties
|
|
9566
9928
|
* you can use to render your UI.
|
|
9567
9929
|
*
|
|
9568
9930
|
* @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;
|
|
9569
9931
|
*
|
|
9570
9932
|
* @example
|
|
9571
|
-
* const { data, loading, error } =
|
|
9933
|
+
* const { data, loading, error } = useAttributeWithValuesForMassEditionQuery({
|
|
9572
9934
|
* variables: {
|
|
9573
|
-
*
|
|
9574
|
-
* accessRecordByDefaultPermission: // value for 'accessRecordByDefaultPermission'
|
|
9935
|
+
* attributeId: // value for 'attributeId'
|
|
9575
9936
|
* },
|
|
9576
9937
|
* });
|
|
9577
9938
|
*/
|
|
9578
|
-
export declare function
|
|
9579
|
-
|
|
9580
|
-
|
|
9581
|
-
}
|
|
9582
|
-
|
|
9583
|
-
|
|
9584
|
-
|
|
9585
|
-
}>>;
|
|
9586
|
-
export declare function
|
|
9587
|
-
|
|
9588
|
-
|
|
9589
|
-
|
|
9590
|
-
export
|
|
9591
|
-
export type
|
|
9592
|
-
export type
|
|
9593
|
-
export type
|
|
9939
|
+
export declare function useAttributeWithValuesForMassEditionQuery(baseOptions: Apollo.QueryHookOptions<AttributeWithValuesForMassEditionQuery, AttributeWithValuesForMassEditionQueryVariables> & ({
|
|
9940
|
+
variables: AttributeWithValuesForMassEditionQueryVariables;
|
|
9941
|
+
skip?: boolean;
|
|
9942
|
+
} | {
|
|
9943
|
+
skip: boolean;
|
|
9944
|
+
})): Apollo.QueryResult<AttributeWithValuesForMassEditionQuery, Exact<{
|
|
9945
|
+
attributeId: Scalars["ID"]["input"];
|
|
9946
|
+
}>>;
|
|
9947
|
+
export declare function useAttributeWithValuesForMassEditionLazyQuery(baseOptions?: Apollo.LazyQueryHookOptions<AttributeWithValuesForMassEditionQuery, AttributeWithValuesForMassEditionQueryVariables>): Apollo.LazyQueryResultTuple<AttributeWithValuesForMassEditionQuery, Exact<{
|
|
9948
|
+
attributeId: Scalars["ID"]["input"];
|
|
9949
|
+
}>>;
|
|
9950
|
+
export declare function useAttributeWithValuesForMassEditionSuspenseQuery(baseOptions?: Apollo.SuspenseQueryHookOptions<AttributeWithValuesForMassEditionQuery, AttributeWithValuesForMassEditionQueryVariables>): Apollo.UseSuspenseQueryResult<AttributeWithValuesForMassEditionQuery, AttributeWithValuesForMassEditionQueryVariables>;
|
|
9951
|
+
export declare function useAttributeWithValuesForMassEditionSuspenseQuery(baseOptions?: Apollo.SkipToken | Apollo.SuspenseQueryHookOptions<AttributeWithValuesForMassEditionQuery, AttributeWithValuesForMassEditionQueryVariables>): Apollo.UseSuspenseQueryResult<AttributeWithValuesForMassEditionQuery | undefined, AttributeWithValuesForMassEditionQueryVariables>;
|
|
9952
|
+
export type AttributeWithValuesForMassEditionQueryHookResult = ReturnType<typeof useAttributeWithValuesForMassEditionQuery>;
|
|
9953
|
+
export type AttributeWithValuesForMassEditionLazyQueryHookResult = ReturnType<typeof useAttributeWithValuesForMassEditionLazyQuery>;
|
|
9954
|
+
export type AttributeWithValuesForMassEditionSuspenseQueryHookResult = ReturnType<typeof useAttributeWithValuesForMassEditionSuspenseQuery>;
|
|
9955
|
+
export type AttributeWithValuesForMassEditionQueryResult = Apollo.QueryResult<AttributeWithValuesForMassEditionQuery, AttributeWithValuesForMassEditionQueryVariables>;
|
|
9594
9956
|
export declare const GetAttributesByLibWithPermissionsDocument: Apollo.DocumentNode;
|
|
9595
9957
|
/**
|
|
9596
9958
|
* __useGetAttributesByLibWithPermissionsQuery__
|
|
@@ -9608,15 +9970,19 @@ export declare const GetAttributesByLibWithPermissionsDocument: Apollo.DocumentN
|
|
|
9608
9970
|
* },
|
|
9609
9971
|
* });
|
|
9610
9972
|
*/
|
|
9611
|
-
export declare function useGetAttributesByLibWithPermissionsQuery(baseOptions: Apollo.QueryHookOptions<GetAttributesByLibWithPermissionsQuery, GetAttributesByLibWithPermissionsQueryVariables>
|
|
9612
|
-
|
|
9973
|
+
export declare function useGetAttributesByLibWithPermissionsQuery(baseOptions: Apollo.QueryHookOptions<GetAttributesByLibWithPermissionsQuery, GetAttributesByLibWithPermissionsQueryVariables> & ({
|
|
9974
|
+
variables: GetAttributesByLibWithPermissionsQueryVariables;
|
|
9975
|
+
skip?: boolean;
|
|
9976
|
+
} | {
|
|
9977
|
+
skip: boolean;
|
|
9978
|
+
})): Apollo.QueryResult<GetAttributesByLibWithPermissionsQuery, Exact<{
|
|
9979
|
+
library: Scalars["String"]["input"];
|
|
9613
9980
|
}>>;
|
|
9614
9981
|
export declare function useGetAttributesByLibWithPermissionsLazyQuery(baseOptions?: Apollo.LazyQueryHookOptions<GetAttributesByLibWithPermissionsQuery, GetAttributesByLibWithPermissionsQueryVariables>): Apollo.LazyQueryResultTuple<GetAttributesByLibWithPermissionsQuery, Exact<{
|
|
9615
|
-
library: Scalars["String"];
|
|
9616
|
-
}>>;
|
|
9617
|
-
export declare function useGetAttributesByLibWithPermissionsSuspenseQuery(baseOptions?: Apollo.SuspenseQueryHookOptions<GetAttributesByLibWithPermissionsQuery, GetAttributesByLibWithPermissionsQueryVariables>): Apollo.UseSuspenseQueryResult<GetAttributesByLibWithPermissionsQuery, Exact<{
|
|
9618
|
-
library: Scalars["String"];
|
|
9982
|
+
library: Scalars["String"]["input"];
|
|
9619
9983
|
}>>;
|
|
9984
|
+
export declare function useGetAttributesByLibWithPermissionsSuspenseQuery(baseOptions?: Apollo.SuspenseQueryHookOptions<GetAttributesByLibWithPermissionsQuery, GetAttributesByLibWithPermissionsQueryVariables>): Apollo.UseSuspenseQueryResult<GetAttributesByLibWithPermissionsQuery, GetAttributesByLibWithPermissionsQueryVariables>;
|
|
9985
|
+
export declare function useGetAttributesByLibWithPermissionsSuspenseQuery(baseOptions?: Apollo.SkipToken | Apollo.SuspenseQueryHookOptions<GetAttributesByLibWithPermissionsQuery, GetAttributesByLibWithPermissionsQueryVariables>): Apollo.UseSuspenseQueryResult<GetAttributesByLibWithPermissionsQuery | undefined, GetAttributesByLibWithPermissionsQueryVariables>;
|
|
9620
9986
|
export type GetAttributesByLibWithPermissionsQueryHookResult = ReturnType<typeof useGetAttributesByLibWithPermissionsQuery>;
|
|
9621
9987
|
export type GetAttributesByLibWithPermissionsLazyQueryHookResult = ReturnType<typeof useGetAttributesByLibWithPermissionsLazyQuery>;
|
|
9622
9988
|
export type GetAttributesByLibWithPermissionsSuspenseQueryHookResult = ReturnType<typeof useGetAttributesByLibWithPermissionsSuspenseQuery>;
|
|
@@ -9639,14 +10005,13 @@ export declare const ExplorerAttributesDocument: Apollo.DocumentNode;
|
|
|
9639
10005
|
* });
|
|
9640
10006
|
*/
|
|
9641
10007
|
export declare function useExplorerAttributesQuery(baseOptions?: Apollo.QueryHookOptions<ExplorerAttributesQuery, ExplorerAttributesQueryVariables>): Apollo.QueryResult<ExplorerAttributesQuery, Exact<{
|
|
9642
|
-
ids?: InputMaybe<Array<Scalars["ID"]> | Scalars["ID"]>;
|
|
10008
|
+
ids?: InputMaybe<Array<Scalars["ID"]["input"]> | Scalars["ID"]["input"]>;
|
|
9643
10009
|
}>>;
|
|
9644
10010
|
export declare function useExplorerAttributesLazyQuery(baseOptions?: Apollo.LazyQueryHookOptions<ExplorerAttributesQuery, ExplorerAttributesQueryVariables>): Apollo.LazyQueryResultTuple<ExplorerAttributesQuery, Exact<{
|
|
9645
|
-
ids?: InputMaybe<Array<Scalars["ID"]> | Scalars["ID"]>;
|
|
9646
|
-
}>>;
|
|
9647
|
-
export declare function useExplorerAttributesSuspenseQuery(baseOptions?: Apollo.SuspenseQueryHookOptions<ExplorerAttributesQuery, ExplorerAttributesQueryVariables>): Apollo.UseSuspenseQueryResult<ExplorerAttributesQuery, Exact<{
|
|
9648
|
-
ids?: InputMaybe<Array<Scalars["ID"]> | Scalars["ID"]>;
|
|
10011
|
+
ids?: InputMaybe<Array<Scalars["ID"]["input"]> | Scalars["ID"]["input"]>;
|
|
9649
10012
|
}>>;
|
|
10013
|
+
export declare function useExplorerAttributesSuspenseQuery(baseOptions?: Apollo.SuspenseQueryHookOptions<ExplorerAttributesQuery, ExplorerAttributesQueryVariables>): Apollo.UseSuspenseQueryResult<ExplorerAttributesQuery, ExplorerAttributesQueryVariables>;
|
|
10014
|
+
export declare function useExplorerAttributesSuspenseQuery(baseOptions?: Apollo.SkipToken | Apollo.SuspenseQueryHookOptions<ExplorerAttributesQuery, ExplorerAttributesQueryVariables>): Apollo.UseSuspenseQueryResult<ExplorerAttributesQuery | undefined, ExplorerAttributesQueryVariables>;
|
|
9650
10015
|
export type ExplorerAttributesQueryHookResult = ReturnType<typeof useExplorerAttributesQuery>;
|
|
9651
10016
|
export type ExplorerAttributesLazyQueryHookResult = ReturnType<typeof useExplorerAttributesLazyQuery>;
|
|
9652
10017
|
export type ExplorerAttributesSuspenseQueryHookResult = ReturnType<typeof useExplorerAttributesSuspenseQuery>;
|
|
@@ -9668,15 +10033,19 @@ export declare const ExplorerLinkAttributeDocument: Apollo.DocumentNode;
|
|
|
9668
10033
|
* },
|
|
9669
10034
|
* });
|
|
9670
10035
|
*/
|
|
9671
|
-
export declare function useExplorerLinkAttributeQuery(baseOptions: Apollo.QueryHookOptions<ExplorerLinkAttributeQuery, ExplorerLinkAttributeQueryVariables>
|
|
9672
|
-
|
|
10036
|
+
export declare function useExplorerLinkAttributeQuery(baseOptions: Apollo.QueryHookOptions<ExplorerLinkAttributeQuery, ExplorerLinkAttributeQueryVariables> & ({
|
|
10037
|
+
variables: ExplorerLinkAttributeQueryVariables;
|
|
10038
|
+
skip?: boolean;
|
|
10039
|
+
} | {
|
|
10040
|
+
skip: boolean;
|
|
10041
|
+
})): Apollo.QueryResult<ExplorerLinkAttributeQuery, Exact<{
|
|
10042
|
+
id: Scalars["ID"]["input"];
|
|
9673
10043
|
}>>;
|
|
9674
10044
|
export declare function useExplorerLinkAttributeLazyQuery(baseOptions?: Apollo.LazyQueryHookOptions<ExplorerLinkAttributeQuery, ExplorerLinkAttributeQueryVariables>): Apollo.LazyQueryResultTuple<ExplorerLinkAttributeQuery, Exact<{
|
|
9675
|
-
id: Scalars["ID"];
|
|
9676
|
-
}>>;
|
|
9677
|
-
export declare function useExplorerLinkAttributeSuspenseQuery(baseOptions?: Apollo.SuspenseQueryHookOptions<ExplorerLinkAttributeQuery, ExplorerLinkAttributeQueryVariables>): Apollo.UseSuspenseQueryResult<ExplorerLinkAttributeQuery, Exact<{
|
|
9678
|
-
id: Scalars["ID"];
|
|
10045
|
+
id: Scalars["ID"]["input"];
|
|
9679
10046
|
}>>;
|
|
10047
|
+
export declare function useExplorerLinkAttributeSuspenseQuery(baseOptions?: Apollo.SuspenseQueryHookOptions<ExplorerLinkAttributeQuery, ExplorerLinkAttributeQueryVariables>): Apollo.UseSuspenseQueryResult<ExplorerLinkAttributeQuery, ExplorerLinkAttributeQueryVariables>;
|
|
10048
|
+
export declare function useExplorerLinkAttributeSuspenseQuery(baseOptions?: Apollo.SkipToken | Apollo.SuspenseQueryHookOptions<ExplorerLinkAttributeQuery, ExplorerLinkAttributeQueryVariables>): Apollo.UseSuspenseQueryResult<ExplorerLinkAttributeQuery | undefined, ExplorerLinkAttributeQueryVariables>;
|
|
9680
10049
|
export type ExplorerLinkAttributeQueryHookResult = ReturnType<typeof useExplorerLinkAttributeQuery>;
|
|
9681
10050
|
export type ExplorerLinkAttributeLazyQueryHookResult = ReturnType<typeof useExplorerLinkAttributeLazyQuery>;
|
|
9682
10051
|
export type ExplorerLinkAttributeSuspenseQueryHookResult = ReturnType<typeof useExplorerLinkAttributeSuspenseQuery>;
|
|
@@ -9700,21 +10069,23 @@ export declare const CountValuesOccurrencesDocument: Apollo.DocumentNode;
|
|
|
9700
10069
|
* },
|
|
9701
10070
|
* });
|
|
9702
10071
|
*/
|
|
9703
|
-
export declare function useCountValuesOccurrencesQuery(baseOptions: Apollo.QueryHookOptions<CountValuesOccurrencesQuery, CountValuesOccurrencesQueryVariables>
|
|
9704
|
-
|
|
9705
|
-
|
|
10072
|
+
export declare function useCountValuesOccurrencesQuery(baseOptions: Apollo.QueryHookOptions<CountValuesOccurrencesQuery, CountValuesOccurrencesQueryVariables> & ({
|
|
10073
|
+
variables: CountValuesOccurrencesQueryVariables;
|
|
10074
|
+
skip?: boolean;
|
|
10075
|
+
} | {
|
|
10076
|
+
skip: boolean;
|
|
10077
|
+
})): Apollo.QueryResult<CountValuesOccurrencesQuery, Exact<{
|
|
10078
|
+
library: Scalars["ID"]["input"];
|
|
10079
|
+
attribute: Scalars["ID"]["input"];
|
|
9706
10080
|
recordFilters?: InputMaybe<Array<InputMaybe<RecordFilterInput>> | InputMaybe<RecordFilterInput>>;
|
|
9707
10081
|
}>>;
|
|
9708
10082
|
export declare function useCountValuesOccurrencesLazyQuery(baseOptions?: Apollo.LazyQueryHookOptions<CountValuesOccurrencesQuery, CountValuesOccurrencesQueryVariables>): Apollo.LazyQueryResultTuple<CountValuesOccurrencesQuery, Exact<{
|
|
9709
|
-
library: Scalars["ID"];
|
|
9710
|
-
attribute: Scalars["ID"];
|
|
9711
|
-
recordFilters?: InputMaybe<Array<InputMaybe<RecordFilterInput>> | InputMaybe<RecordFilterInput>>;
|
|
9712
|
-
}>>;
|
|
9713
|
-
export declare function useCountValuesOccurrencesSuspenseQuery(baseOptions?: Apollo.SuspenseQueryHookOptions<CountValuesOccurrencesQuery, CountValuesOccurrencesQueryVariables>): Apollo.UseSuspenseQueryResult<CountValuesOccurrencesQuery, Exact<{
|
|
9714
|
-
library: Scalars["ID"];
|
|
9715
|
-
attribute: Scalars["ID"];
|
|
10083
|
+
library: Scalars["ID"]["input"];
|
|
10084
|
+
attribute: Scalars["ID"]["input"];
|
|
9716
10085
|
recordFilters?: InputMaybe<Array<InputMaybe<RecordFilterInput>> | InputMaybe<RecordFilterInput>>;
|
|
9717
10086
|
}>>;
|
|
10087
|
+
export declare function useCountValuesOccurrencesSuspenseQuery(baseOptions?: Apollo.SuspenseQueryHookOptions<CountValuesOccurrencesQuery, CountValuesOccurrencesQueryVariables>): Apollo.UseSuspenseQueryResult<CountValuesOccurrencesQuery, CountValuesOccurrencesQueryVariables>;
|
|
10088
|
+
export declare function useCountValuesOccurrencesSuspenseQuery(baseOptions?: Apollo.SkipToken | Apollo.SuspenseQueryHookOptions<CountValuesOccurrencesQuery, CountValuesOccurrencesQueryVariables>): Apollo.UseSuspenseQueryResult<CountValuesOccurrencesQuery | undefined, CountValuesOccurrencesQueryVariables>;
|
|
9718
10089
|
export type CountValuesOccurrencesQueryHookResult = ReturnType<typeof useCountValuesOccurrencesQuery>;
|
|
9719
10090
|
export type CountValuesOccurrencesLazyQueryHookResult = ReturnType<typeof useCountValuesOccurrencesLazyQuery>;
|
|
9720
10091
|
export type CountValuesOccurrencesSuspenseQueryHookResult = ReturnType<typeof useCountValuesOccurrencesSuspenseQuery>;
|
|
@@ -9741,30 +10112,29 @@ export declare const ExplorerLibraryDataDocument: Apollo.DocumentNode;
|
|
|
9741
10112
|
* },
|
|
9742
10113
|
* });
|
|
9743
10114
|
*/
|
|
9744
|
-
export declare function useExplorerLibraryDataQuery(baseOptions: Apollo.QueryHookOptions<ExplorerLibraryDataQuery, ExplorerLibraryDataQueryVariables>
|
|
9745
|
-
|
|
9746
|
-
|
|
10115
|
+
export declare function useExplorerLibraryDataQuery(baseOptions: Apollo.QueryHookOptions<ExplorerLibraryDataQuery, ExplorerLibraryDataQueryVariables> & ({
|
|
10116
|
+
variables: ExplorerLibraryDataQueryVariables;
|
|
10117
|
+
skip?: boolean;
|
|
10118
|
+
} | {
|
|
10119
|
+
skip: boolean;
|
|
10120
|
+
})): Apollo.QueryResult<ExplorerLibraryDataQuery, Exact<{
|
|
10121
|
+
libraryId: Scalars["ID"]["input"];
|
|
10122
|
+
attributeIds: Array<Scalars["ID"]["input"]> | Scalars["ID"]["input"];
|
|
9747
10123
|
pagination?: InputMaybe<RecordsPagination>;
|
|
9748
10124
|
filters?: InputMaybe<Array<InputMaybe<RecordFilterInput>> | InputMaybe<RecordFilterInput>>;
|
|
9749
10125
|
multipleSort?: InputMaybe<Array<RecordSortInput> | RecordSortInput>;
|
|
9750
|
-
searchQuery?: InputMaybe<Scalars["String"]>;
|
|
10126
|
+
searchQuery?: InputMaybe<Scalars["String"]["input"]>;
|
|
9751
10127
|
}>>;
|
|
9752
10128
|
export declare function useExplorerLibraryDataLazyQuery(baseOptions?: Apollo.LazyQueryHookOptions<ExplorerLibraryDataQuery, ExplorerLibraryDataQueryVariables>): Apollo.LazyQueryResultTuple<ExplorerLibraryDataQuery, Exact<{
|
|
9753
|
-
libraryId: Scalars["ID"];
|
|
9754
|
-
attributeIds: Array<Scalars["ID"]> | Scalars["ID"];
|
|
9755
|
-
pagination?: InputMaybe<RecordsPagination>;
|
|
9756
|
-
filters?: InputMaybe<Array<InputMaybe<RecordFilterInput>> | InputMaybe<RecordFilterInput>>;
|
|
9757
|
-
multipleSort?: InputMaybe<Array<RecordSortInput> | RecordSortInput>;
|
|
9758
|
-
searchQuery?: InputMaybe<Scalars["String"]>;
|
|
9759
|
-
}>>;
|
|
9760
|
-
export declare function useExplorerLibraryDataSuspenseQuery(baseOptions?: Apollo.SuspenseQueryHookOptions<ExplorerLibraryDataQuery, ExplorerLibraryDataQueryVariables>): Apollo.UseSuspenseQueryResult<ExplorerLibraryDataQuery, Exact<{
|
|
9761
|
-
libraryId: Scalars["ID"];
|
|
9762
|
-
attributeIds: Array<Scalars["ID"]> | Scalars["ID"];
|
|
10129
|
+
libraryId: Scalars["ID"]["input"];
|
|
10130
|
+
attributeIds: Array<Scalars["ID"]["input"]> | Scalars["ID"]["input"];
|
|
9763
10131
|
pagination?: InputMaybe<RecordsPagination>;
|
|
9764
10132
|
filters?: InputMaybe<Array<InputMaybe<RecordFilterInput>> | InputMaybe<RecordFilterInput>>;
|
|
9765
10133
|
multipleSort?: InputMaybe<Array<RecordSortInput> | RecordSortInput>;
|
|
9766
|
-
searchQuery?: InputMaybe<Scalars["String"]>;
|
|
10134
|
+
searchQuery?: InputMaybe<Scalars["String"]["input"]>;
|
|
9767
10135
|
}>>;
|
|
10136
|
+
export declare function useExplorerLibraryDataSuspenseQuery(baseOptions?: Apollo.SuspenseQueryHookOptions<ExplorerLibraryDataQuery, ExplorerLibraryDataQueryVariables>): Apollo.UseSuspenseQueryResult<ExplorerLibraryDataQuery, ExplorerLibraryDataQueryVariables>;
|
|
10137
|
+
export declare function useExplorerLibraryDataSuspenseQuery(baseOptions?: Apollo.SkipToken | Apollo.SuspenseQueryHookOptions<ExplorerLibraryDataQuery, ExplorerLibraryDataQueryVariables>): Apollo.UseSuspenseQueryResult<ExplorerLibraryDataQuery | undefined, ExplorerLibraryDataQueryVariables>;
|
|
9768
10138
|
export type ExplorerLibraryDataQueryHookResult = ReturnType<typeof useExplorerLibraryDataQuery>;
|
|
9769
10139
|
export type ExplorerLibraryDataLazyQueryHookResult = ReturnType<typeof useExplorerLibraryDataLazyQuery>;
|
|
9770
10140
|
export type ExplorerLibraryDataSuspenseQueryHookResult = ReturnType<typeof useExplorerLibraryDataSuspenseQuery>;
|
|
@@ -9789,24 +10159,25 @@ export declare const ExplorerLinkDataDocument: Apollo.DocumentNode;
|
|
|
9789
10159
|
* },
|
|
9790
10160
|
* });
|
|
9791
10161
|
*/
|
|
9792
|
-
export declare function useExplorerLinkDataQuery(baseOptions: Apollo.QueryHookOptions<ExplorerLinkDataQuery, ExplorerLinkDataQueryVariables>
|
|
9793
|
-
|
|
9794
|
-
|
|
9795
|
-
|
|
9796
|
-
|
|
10162
|
+
export declare function useExplorerLinkDataQuery(baseOptions: Apollo.QueryHookOptions<ExplorerLinkDataQuery, ExplorerLinkDataQueryVariables> & ({
|
|
10163
|
+
variables: ExplorerLinkDataQueryVariables;
|
|
10164
|
+
skip?: boolean;
|
|
10165
|
+
} | {
|
|
10166
|
+
skip: boolean;
|
|
10167
|
+
})): Apollo.QueryResult<ExplorerLinkDataQuery, Exact<{
|
|
10168
|
+
attributeIds: Array<Scalars["ID"]["input"]> | Scalars["ID"]["input"];
|
|
10169
|
+
parentLibraryId: Scalars["ID"]["input"];
|
|
10170
|
+
parentRecordId?: InputMaybe<Scalars["String"]["input"]>;
|
|
10171
|
+
linkAttributeId: Scalars["ID"]["input"];
|
|
9797
10172
|
}>>;
|
|
9798
10173
|
export declare function useExplorerLinkDataLazyQuery(baseOptions?: Apollo.LazyQueryHookOptions<ExplorerLinkDataQuery, ExplorerLinkDataQueryVariables>): Apollo.LazyQueryResultTuple<ExplorerLinkDataQuery, Exact<{
|
|
9799
|
-
attributeIds: Array<Scalars["ID"]> | Scalars["ID"];
|
|
9800
|
-
parentLibraryId: Scalars["ID"];
|
|
9801
|
-
parentRecordId?: InputMaybe<Scalars["String"]>;
|
|
9802
|
-
linkAttributeId: Scalars["ID"];
|
|
9803
|
-
}>>;
|
|
9804
|
-
export declare function useExplorerLinkDataSuspenseQuery(baseOptions?: Apollo.SuspenseQueryHookOptions<ExplorerLinkDataQuery, ExplorerLinkDataQueryVariables>): Apollo.UseSuspenseQueryResult<ExplorerLinkDataQuery, Exact<{
|
|
9805
|
-
attributeIds: Array<Scalars["ID"]> | Scalars["ID"];
|
|
9806
|
-
parentLibraryId: Scalars["ID"];
|
|
9807
|
-
parentRecordId?: InputMaybe<Scalars["String"]>;
|
|
9808
|
-
linkAttributeId: Scalars["ID"];
|
|
10174
|
+
attributeIds: Array<Scalars["ID"]["input"]> | Scalars["ID"]["input"];
|
|
10175
|
+
parentLibraryId: Scalars["ID"]["input"];
|
|
10176
|
+
parentRecordId?: InputMaybe<Scalars["String"]["input"]>;
|
|
10177
|
+
linkAttributeId: Scalars["ID"]["input"];
|
|
9809
10178
|
}>>;
|
|
10179
|
+
export declare function useExplorerLinkDataSuspenseQuery(baseOptions?: Apollo.SuspenseQueryHookOptions<ExplorerLinkDataQuery, ExplorerLinkDataQueryVariables>): Apollo.UseSuspenseQueryResult<ExplorerLinkDataQuery, ExplorerLinkDataQueryVariables>;
|
|
10180
|
+
export declare function useExplorerLinkDataSuspenseQuery(baseOptions?: Apollo.SkipToken | Apollo.SuspenseQueryHookOptions<ExplorerLinkDataQuery, ExplorerLinkDataQueryVariables>): Apollo.UseSuspenseQueryResult<ExplorerLinkDataQuery | undefined, ExplorerLinkDataQueryVariables>;
|
|
9810
10181
|
export type ExplorerLinkDataQueryHookResult = ReturnType<typeof useExplorerLinkDataQuery>;
|
|
9811
10182
|
export type ExplorerLinkDataLazyQueryHookResult = ReturnType<typeof useExplorerLinkDataLazyQuery>;
|
|
9812
10183
|
export type ExplorerLinkDataSuspenseQueryHookResult = ReturnType<typeof useExplorerLinkDataSuspenseQuery>;
|
|
@@ -9828,15 +10199,19 @@ export declare const GetLibraryAttributesDocument: Apollo.DocumentNode;
|
|
|
9828
10199
|
* },
|
|
9829
10200
|
* });
|
|
9830
10201
|
*/
|
|
9831
|
-
export declare function useGetLibraryAttributesQuery(baseOptions: Apollo.QueryHookOptions<GetLibraryAttributesQuery, GetLibraryAttributesQueryVariables>
|
|
9832
|
-
|
|
10202
|
+
export declare function useGetLibraryAttributesQuery(baseOptions: Apollo.QueryHookOptions<GetLibraryAttributesQuery, GetLibraryAttributesQueryVariables> & ({
|
|
10203
|
+
variables: GetLibraryAttributesQueryVariables;
|
|
10204
|
+
skip?: boolean;
|
|
10205
|
+
} | {
|
|
10206
|
+
skip: boolean;
|
|
10207
|
+
})): Apollo.QueryResult<GetLibraryAttributesQuery, Exact<{
|
|
10208
|
+
libraryId: Scalars["ID"]["input"];
|
|
9833
10209
|
}>>;
|
|
9834
10210
|
export declare function useGetLibraryAttributesLazyQuery(baseOptions?: Apollo.LazyQueryHookOptions<GetLibraryAttributesQuery, GetLibraryAttributesQueryVariables>): Apollo.LazyQueryResultTuple<GetLibraryAttributesQuery, Exact<{
|
|
9835
|
-
libraryId: Scalars["ID"];
|
|
9836
|
-
}>>;
|
|
9837
|
-
export declare function useGetLibraryAttributesSuspenseQuery(baseOptions?: Apollo.SuspenseQueryHookOptions<GetLibraryAttributesQuery, GetLibraryAttributesQueryVariables>): Apollo.UseSuspenseQueryResult<GetLibraryAttributesQuery, Exact<{
|
|
9838
|
-
libraryId: Scalars["ID"];
|
|
10211
|
+
libraryId: Scalars["ID"]["input"];
|
|
9839
10212
|
}>>;
|
|
10213
|
+
export declare function useGetLibraryAttributesSuspenseQuery(baseOptions?: Apollo.SuspenseQueryHookOptions<GetLibraryAttributesQuery, GetLibraryAttributesQueryVariables>): Apollo.UseSuspenseQueryResult<GetLibraryAttributesQuery, GetLibraryAttributesQueryVariables>;
|
|
10214
|
+
export declare function useGetLibraryAttributesSuspenseQuery(baseOptions?: Apollo.SkipToken | Apollo.SuspenseQueryHookOptions<GetLibraryAttributesQuery, GetLibraryAttributesQueryVariables>): Apollo.UseSuspenseQueryResult<GetLibraryAttributesQuery | undefined, GetLibraryAttributesQueryVariables>;
|
|
9840
10215
|
export type GetLibraryAttributesQueryHookResult = ReturnType<typeof useGetLibraryAttributesQuery>;
|
|
9841
10216
|
export type GetLibraryAttributesLazyQueryHookResult = ReturnType<typeof useGetLibraryAttributesLazyQuery>;
|
|
9842
10217
|
export type GetLibraryAttributesSuspenseQueryHookResult = ReturnType<typeof useGetLibraryAttributesSuspenseQuery>;
|
|
@@ -9858,19 +10233,52 @@ export declare const ExplorerLibraryDetailsDocument: Apollo.DocumentNode;
|
|
|
9858
10233
|
* },
|
|
9859
10234
|
* });
|
|
9860
10235
|
*/
|
|
9861
|
-
export declare function useExplorerLibraryDetailsQuery(baseOptions: Apollo.QueryHookOptions<ExplorerLibraryDetailsQuery, ExplorerLibraryDetailsQueryVariables>
|
|
9862
|
-
|
|
10236
|
+
export declare function useExplorerLibraryDetailsQuery(baseOptions: Apollo.QueryHookOptions<ExplorerLibraryDetailsQuery, ExplorerLibraryDetailsQueryVariables> & ({
|
|
10237
|
+
variables: ExplorerLibraryDetailsQueryVariables;
|
|
10238
|
+
skip?: boolean;
|
|
10239
|
+
} | {
|
|
10240
|
+
skip: boolean;
|
|
10241
|
+
})): Apollo.QueryResult<ExplorerLibraryDetailsQuery, Exact<{
|
|
10242
|
+
libraryId: Scalars["ID"]["input"];
|
|
9863
10243
|
}>>;
|
|
9864
10244
|
export declare function useExplorerLibraryDetailsLazyQuery(baseOptions?: Apollo.LazyQueryHookOptions<ExplorerLibraryDetailsQuery, ExplorerLibraryDetailsQueryVariables>): Apollo.LazyQueryResultTuple<ExplorerLibraryDetailsQuery, Exact<{
|
|
9865
|
-
libraryId: Scalars["ID"];
|
|
9866
|
-
}>>;
|
|
9867
|
-
export declare function useExplorerLibraryDetailsSuspenseQuery(baseOptions?: Apollo.SuspenseQueryHookOptions<ExplorerLibraryDetailsQuery, ExplorerLibraryDetailsQueryVariables>): Apollo.UseSuspenseQueryResult<ExplorerLibraryDetailsQuery, Exact<{
|
|
9868
|
-
libraryId: Scalars["ID"];
|
|
10245
|
+
libraryId: Scalars["ID"]["input"];
|
|
9869
10246
|
}>>;
|
|
10247
|
+
export declare function useExplorerLibraryDetailsSuspenseQuery(baseOptions?: Apollo.SuspenseQueryHookOptions<ExplorerLibraryDetailsQuery, ExplorerLibraryDetailsQueryVariables>): Apollo.UseSuspenseQueryResult<ExplorerLibraryDetailsQuery, ExplorerLibraryDetailsQueryVariables>;
|
|
10248
|
+
export declare function useExplorerLibraryDetailsSuspenseQuery(baseOptions?: Apollo.SkipToken | Apollo.SuspenseQueryHookOptions<ExplorerLibraryDetailsQuery, ExplorerLibraryDetailsQueryVariables>): Apollo.UseSuspenseQueryResult<ExplorerLibraryDetailsQuery | undefined, ExplorerLibraryDetailsQueryVariables>;
|
|
9870
10249
|
export type ExplorerLibraryDetailsQueryHookResult = ReturnType<typeof useExplorerLibraryDetailsQuery>;
|
|
9871
10250
|
export type ExplorerLibraryDetailsLazyQueryHookResult = ReturnType<typeof useExplorerLibraryDetailsLazyQuery>;
|
|
9872
10251
|
export type ExplorerLibraryDetailsSuspenseQueryHookResult = ReturnType<typeof useExplorerLibraryDetailsSuspenseQuery>;
|
|
9873
10252
|
export type ExplorerLibraryDetailsQueryResult = Apollo.QueryResult<ExplorerLibraryDetailsQuery, ExplorerLibraryDetailsQueryVariables>;
|
|
10253
|
+
export declare const LibraryExportProfilesDocument: Apollo.DocumentNode;
|
|
10254
|
+
/**
|
|
10255
|
+
* __useLibraryExportProfilesQuery__
|
|
10256
|
+
*
|
|
10257
|
+
* To run a query within a React component, call `useLibraryExportProfilesQuery` and pass it any options that fit your needs.
|
|
10258
|
+
* When your component renders, `useLibraryExportProfilesQuery` returns an object from Apollo Client that contains loading, error, and data properties
|
|
10259
|
+
* you can use to render your UI.
|
|
10260
|
+
*
|
|
10261
|
+
* @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;
|
|
10262
|
+
*
|
|
10263
|
+
* @example
|
|
10264
|
+
* const { data, loading, error } = useLibraryExportProfilesQuery({
|
|
10265
|
+
* variables: {
|
|
10266
|
+
* libraryId: // value for 'libraryId'
|
|
10267
|
+
* },
|
|
10268
|
+
* });
|
|
10269
|
+
*/
|
|
10270
|
+
export declare function useLibraryExportProfilesQuery(baseOptions?: Apollo.QueryHookOptions<LibraryExportProfilesQuery, LibraryExportProfilesQueryVariables>): Apollo.QueryResult<LibraryExportProfilesQuery, Exact<{
|
|
10271
|
+
libraryId?: InputMaybe<Array<Scalars["ID"]["input"]> | Scalars["ID"]["input"]>;
|
|
10272
|
+
}>>;
|
|
10273
|
+
export declare function useLibraryExportProfilesLazyQuery(baseOptions?: Apollo.LazyQueryHookOptions<LibraryExportProfilesQuery, LibraryExportProfilesQueryVariables>): Apollo.LazyQueryResultTuple<LibraryExportProfilesQuery, Exact<{
|
|
10274
|
+
libraryId?: InputMaybe<Array<Scalars["ID"]["input"]> | Scalars["ID"]["input"]>;
|
|
10275
|
+
}>>;
|
|
10276
|
+
export declare function useLibraryExportProfilesSuspenseQuery(baseOptions?: Apollo.SuspenseQueryHookOptions<LibraryExportProfilesQuery, LibraryExportProfilesQueryVariables>): Apollo.UseSuspenseQueryResult<LibraryExportProfilesQuery, LibraryExportProfilesQueryVariables>;
|
|
10277
|
+
export declare function useLibraryExportProfilesSuspenseQuery(baseOptions?: Apollo.SkipToken | Apollo.SuspenseQueryHookOptions<LibraryExportProfilesQuery, LibraryExportProfilesQueryVariables>): Apollo.UseSuspenseQueryResult<LibraryExportProfilesQuery | undefined, LibraryExportProfilesQueryVariables>;
|
|
10278
|
+
export type LibraryExportProfilesQueryHookResult = ReturnType<typeof useLibraryExportProfilesQuery>;
|
|
10279
|
+
export type LibraryExportProfilesLazyQueryHookResult = ReturnType<typeof useLibraryExportProfilesLazyQuery>;
|
|
10280
|
+
export type LibraryExportProfilesSuspenseQueryHookResult = ReturnType<typeof useLibraryExportProfilesSuspenseQuery>;
|
|
10281
|
+
export type LibraryExportProfilesQueryResult = Apollo.QueryResult<LibraryExportProfilesQuery, LibraryExportProfilesQueryVariables>;
|
|
9874
10282
|
export declare const ExplorerSelectionIdsDocument: Apollo.DocumentNode;
|
|
9875
10283
|
/**
|
|
9876
10284
|
* __useExplorerSelectionIdsQuery__
|
|
@@ -9889,18 +10297,21 @@ export declare const ExplorerSelectionIdsDocument: Apollo.DocumentNode;
|
|
|
9889
10297
|
* },
|
|
9890
10298
|
* });
|
|
9891
10299
|
*/
|
|
9892
|
-
export declare function useExplorerSelectionIdsQuery(baseOptions: Apollo.QueryHookOptions<ExplorerSelectionIdsQuery, ExplorerSelectionIdsQueryVariables>
|
|
9893
|
-
|
|
10300
|
+
export declare function useExplorerSelectionIdsQuery(baseOptions: Apollo.QueryHookOptions<ExplorerSelectionIdsQuery, ExplorerSelectionIdsQueryVariables> & ({
|
|
10301
|
+
variables: ExplorerSelectionIdsQueryVariables;
|
|
10302
|
+
skip?: boolean;
|
|
10303
|
+
} | {
|
|
10304
|
+
skip: boolean;
|
|
10305
|
+
})): Apollo.QueryResult<ExplorerSelectionIdsQuery, Exact<{
|
|
10306
|
+
libraryId: Scalars["ID"]["input"];
|
|
9894
10307
|
filters?: InputMaybe<Array<InputMaybe<RecordFilterInput>> | InputMaybe<RecordFilterInput>>;
|
|
9895
10308
|
}>>;
|
|
9896
10309
|
export declare function useExplorerSelectionIdsLazyQuery(baseOptions?: Apollo.LazyQueryHookOptions<ExplorerSelectionIdsQuery, ExplorerSelectionIdsQueryVariables>): Apollo.LazyQueryResultTuple<ExplorerSelectionIdsQuery, Exact<{
|
|
9897
|
-
libraryId: Scalars["ID"];
|
|
9898
|
-
filters?: InputMaybe<Array<InputMaybe<RecordFilterInput>> | InputMaybe<RecordFilterInput>>;
|
|
9899
|
-
}>>;
|
|
9900
|
-
export declare function useExplorerSelectionIdsSuspenseQuery(baseOptions?: Apollo.SuspenseQueryHookOptions<ExplorerSelectionIdsQuery, ExplorerSelectionIdsQueryVariables>): Apollo.UseSuspenseQueryResult<ExplorerSelectionIdsQuery, Exact<{
|
|
9901
|
-
libraryId: Scalars["ID"];
|
|
10310
|
+
libraryId: Scalars["ID"]["input"];
|
|
9902
10311
|
filters?: InputMaybe<Array<InputMaybe<RecordFilterInput>> | InputMaybe<RecordFilterInput>>;
|
|
9903
10312
|
}>>;
|
|
10313
|
+
export declare function useExplorerSelectionIdsSuspenseQuery(baseOptions?: Apollo.SuspenseQueryHookOptions<ExplorerSelectionIdsQuery, ExplorerSelectionIdsQueryVariables>): Apollo.UseSuspenseQueryResult<ExplorerSelectionIdsQuery, ExplorerSelectionIdsQueryVariables>;
|
|
10314
|
+
export declare function useExplorerSelectionIdsSuspenseQuery(baseOptions?: Apollo.SkipToken | Apollo.SuspenseQueryHookOptions<ExplorerSelectionIdsQuery, ExplorerSelectionIdsQueryVariables>): Apollo.UseSuspenseQueryResult<ExplorerSelectionIdsQuery | undefined, ExplorerSelectionIdsQueryVariables>;
|
|
9904
10315
|
export type ExplorerSelectionIdsQueryHookResult = ReturnType<typeof useExplorerSelectionIdsQuery>;
|
|
9905
10316
|
export type ExplorerSelectionIdsLazyQueryHookResult = ReturnType<typeof useExplorerSelectionIdsLazyQuery>;
|
|
9906
10317
|
export type ExplorerSelectionIdsSuspenseQueryHookResult = ReturnType<typeof useExplorerSelectionIdsSuspenseQuery>;
|
|
@@ -9927,9 +10338,8 @@ export declare function useMeQuery(baseOptions?: Apollo.QueryHookOptions<MeQuery
|
|
|
9927
10338
|
export declare function useMeLazyQuery(baseOptions?: Apollo.LazyQueryHookOptions<MeQuery, MeQueryVariables>): Apollo.LazyQueryResultTuple<MeQuery, Exact<{
|
|
9928
10339
|
[key: string]: never;
|
|
9929
10340
|
}>>;
|
|
9930
|
-
export declare function useMeSuspenseQuery(baseOptions?: Apollo.SuspenseQueryHookOptions<MeQuery, MeQueryVariables>): Apollo.UseSuspenseQueryResult<MeQuery,
|
|
9931
|
-
|
|
9932
|
-
}>>;
|
|
10341
|
+
export declare function useMeSuspenseQuery(baseOptions?: Apollo.SuspenseQueryHookOptions<MeQuery, MeQueryVariables>): Apollo.UseSuspenseQueryResult<MeQuery, MeQueryVariables>;
|
|
10342
|
+
export declare function useMeSuspenseQuery(baseOptions?: Apollo.SkipToken | Apollo.SuspenseQueryHookOptions<MeQuery, MeQueryVariables>): Apollo.UseSuspenseQueryResult<MeQuery | undefined, MeQueryVariables>;
|
|
9933
10343
|
export type MeQueryHookResult = ReturnType<typeof useMeQuery>;
|
|
9934
10344
|
export type MeLazyQueryHookResult = ReturnType<typeof useMeLazyQuery>;
|
|
9935
10345
|
export type MeSuspenseQueryHookResult = ReturnType<typeof useMeSuspenseQuery>;
|
|
@@ -10000,24 +10410,25 @@ export declare const GetRecordHistoryDocument: Apollo.DocumentNode;
|
|
|
10000
10410
|
* },
|
|
10001
10411
|
* });
|
|
10002
10412
|
*/
|
|
10003
|
-
export declare function useGetRecordHistoryQuery(baseOptions: Apollo.QueryHookOptions<GetRecordHistoryQuery, GetRecordHistoryQueryVariables>
|
|
10413
|
+
export declare function useGetRecordHistoryQuery(baseOptions: Apollo.QueryHookOptions<GetRecordHistoryQuery, GetRecordHistoryQueryVariables> & ({
|
|
10414
|
+
variables: GetRecordHistoryQueryVariables;
|
|
10415
|
+
skip?: boolean;
|
|
10416
|
+
} | {
|
|
10417
|
+
skip: boolean;
|
|
10418
|
+
})): Apollo.QueryResult<GetRecordHistoryQuery, Exact<{
|
|
10004
10419
|
record: LogTopicRecordFilterInput;
|
|
10005
|
-
attributeId?: InputMaybe<Scalars["String"]>;
|
|
10420
|
+
attributeId?: InputMaybe<Scalars["String"]["input"]>;
|
|
10006
10421
|
actions?: InputMaybe<Array<LogAction> | LogAction>;
|
|
10007
10422
|
pagination?: InputMaybe<Pagination>;
|
|
10008
10423
|
}>>;
|
|
10009
10424
|
export declare function useGetRecordHistoryLazyQuery(baseOptions?: Apollo.LazyQueryHookOptions<GetRecordHistoryQuery, GetRecordHistoryQueryVariables>): Apollo.LazyQueryResultTuple<GetRecordHistoryQuery, Exact<{
|
|
10010
10425
|
record: LogTopicRecordFilterInput;
|
|
10011
|
-
attributeId?: InputMaybe<Scalars["String"]>;
|
|
10012
|
-
actions?: InputMaybe<Array<LogAction> | LogAction>;
|
|
10013
|
-
pagination?: InputMaybe<Pagination>;
|
|
10014
|
-
}>>;
|
|
10015
|
-
export declare function useGetRecordHistorySuspenseQuery(baseOptions?: Apollo.SuspenseQueryHookOptions<GetRecordHistoryQuery, GetRecordHistoryQueryVariables>): Apollo.UseSuspenseQueryResult<GetRecordHistoryQuery, Exact<{
|
|
10016
|
-
record: LogTopicRecordFilterInput;
|
|
10017
|
-
attributeId?: InputMaybe<Scalars["String"]>;
|
|
10426
|
+
attributeId?: InputMaybe<Scalars["String"]["input"]>;
|
|
10018
10427
|
actions?: InputMaybe<Array<LogAction> | LogAction>;
|
|
10019
10428
|
pagination?: InputMaybe<Pagination>;
|
|
10020
10429
|
}>>;
|
|
10430
|
+
export declare function useGetRecordHistorySuspenseQuery(baseOptions?: Apollo.SuspenseQueryHookOptions<GetRecordHistoryQuery, GetRecordHistoryQueryVariables>): Apollo.UseSuspenseQueryResult<GetRecordHistoryQuery, GetRecordHistoryQueryVariables>;
|
|
10431
|
+
export declare function useGetRecordHistorySuspenseQuery(baseOptions?: Apollo.SkipToken | Apollo.SuspenseQueryHookOptions<GetRecordHistoryQuery, GetRecordHistoryQueryVariables>): Apollo.UseSuspenseQueryResult<GetRecordHistoryQuery | undefined, GetRecordHistoryQueryVariables>;
|
|
10021
10432
|
export type GetRecordHistoryQueryHookResult = ReturnType<typeof useGetRecordHistoryQuery>;
|
|
10022
10433
|
export type GetRecordHistoryLazyQueryHookResult = ReturnType<typeof useGetRecordHistoryLazyQuery>;
|
|
10023
10434
|
export type GetRecordHistorySuspenseQueryHookResult = ReturnType<typeof useGetRecordHistorySuspenseQuery>;
|
|
@@ -10039,15 +10450,19 @@ export declare const TreeDataQueryDocument: Apollo.DocumentNode;
|
|
|
10039
10450
|
* },
|
|
10040
10451
|
* });
|
|
10041
10452
|
*/
|
|
10042
|
-
export declare function useTreeDataQueryQuery(baseOptions: Apollo.QueryHookOptions<TreeDataQueryQuery, TreeDataQueryQueryVariables>
|
|
10043
|
-
|
|
10453
|
+
export declare function useTreeDataQueryQuery(baseOptions: Apollo.QueryHookOptions<TreeDataQueryQuery, TreeDataQueryQueryVariables> & ({
|
|
10454
|
+
variables: TreeDataQueryQueryVariables;
|
|
10455
|
+
skip?: boolean;
|
|
10456
|
+
} | {
|
|
10457
|
+
skip: boolean;
|
|
10458
|
+
})): Apollo.QueryResult<TreeDataQueryQuery, Exact<{
|
|
10459
|
+
treeId: Scalars["ID"]["input"];
|
|
10044
10460
|
}>>;
|
|
10045
10461
|
export declare function useTreeDataQueryLazyQuery(baseOptions?: Apollo.LazyQueryHookOptions<TreeDataQueryQuery, TreeDataQueryQueryVariables>): Apollo.LazyQueryResultTuple<TreeDataQueryQuery, Exact<{
|
|
10046
|
-
treeId: Scalars["ID"];
|
|
10047
|
-
}>>;
|
|
10048
|
-
export declare function useTreeDataQuerySuspenseQuery(baseOptions?: Apollo.SuspenseQueryHookOptions<TreeDataQueryQuery, TreeDataQueryQueryVariables>): Apollo.UseSuspenseQueryResult<TreeDataQueryQuery, Exact<{
|
|
10049
|
-
treeId: Scalars["ID"];
|
|
10462
|
+
treeId: Scalars["ID"]["input"];
|
|
10050
10463
|
}>>;
|
|
10464
|
+
export declare function useTreeDataQuerySuspenseQuery(baseOptions?: Apollo.SuspenseQueryHookOptions<TreeDataQueryQuery, TreeDataQueryQueryVariables>): Apollo.UseSuspenseQueryResult<TreeDataQueryQuery, TreeDataQueryQueryVariables>;
|
|
10465
|
+
export declare function useTreeDataQuerySuspenseQuery(baseOptions?: Apollo.SkipToken | Apollo.SuspenseQueryHookOptions<TreeDataQueryQuery, TreeDataQueryQueryVariables>): Apollo.UseSuspenseQueryResult<TreeDataQueryQuery | undefined, TreeDataQueryQueryVariables>;
|
|
10051
10466
|
export type TreeDataQueryQueryHookResult = ReturnType<typeof useTreeDataQueryQuery>;
|
|
10052
10467
|
export type TreeDataQueryLazyQueryHookResult = ReturnType<typeof useTreeDataQueryLazyQuery>;
|
|
10053
10468
|
export type TreeDataQuerySuspenseQueryHookResult = ReturnType<typeof useTreeDataQuerySuspenseQuery>;
|