@aristid/leav-types 1.12.0 → 1.13.0
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/CLAUDE.md +42 -0
- package/apps/core/config/default.d.ts +13 -2
- package/apps/core/config/development.d.ts +4 -0
- package/apps/core/config/test.d.ts +4 -0
- package/apps/core/src/_types/actionsList.d.ts +1 -1
- package/apps/core/src/_types/automation.d.ts +39 -0
- package/apps/core/src/_types/config.d.ts +13 -0
- package/apps/core/src/_types/cronTask.d.ts +14 -0
- package/apps/core/src/_types/errors.d.ts +9 -0
- package/apps/core/src/_types/events.d.ts +6 -0
- package/apps/core/src/_types/eventsManager.d.ts +8 -0
- package/apps/core/src/_types/extensionPoints.d.ts +7 -0
- package/apps/core/src/_types/migration.d.ts +1 -1
- package/apps/core/src/_types/permissions.d.ts +1 -0
- package/apps/core/src/_types/queryInfos.d.ts +1 -1
- package/apps/core/src/_types/record.d.ts +2 -1
- package/apps/core/src/_types/value.d.ts +2 -2
- package/apps/core/src/app/application/applicationApp.d.ts +9 -9
- package/apps/core/src/app/auth/authApp.d.ts +8 -8
- package/apps/core/src/app/core/actionListApp.d.ts +3 -3
- package/apps/core/src/app/core/apiKeyApp/_types.d.ts +2 -2
- package/apps/core/src/app/core/apiKeyApp/apiKeyApp.d.ts +3 -3
- package/apps/core/src/app/core/attributeApp/attributeApp.d.ts +11 -9
- package/apps/core/src/app/core/automationApp.d.ts +24 -0
- package/apps/core/src/app/core/coreApp.d.ts +5 -5
- package/apps/core/src/app/core/discussionApp.d.ts +2 -2
- package/apps/core/src/app/core/eventsManagerApp.d.ts +6 -5
- package/apps/core/src/app/core/exportApp.d.ts +2 -2
- package/apps/core/src/app/core/filesManagerApp.d.ts +8 -6
- package/apps/core/src/app/core/formApp/_types.d.ts +2 -2
- package/apps/core/src/app/core/formApp/formApp.d.ts +8 -8
- package/apps/core/src/app/core/globalSettingsApp.d.ts +7 -7
- package/apps/core/src/app/core/helpers/subscriptions.d.ts +1 -1
- package/apps/core/src/app/core/importApp.d.ts +4 -4
- package/apps/core/src/app/core/index.d.ts +1 -0
- package/apps/core/src/app/core/indexationManagerApp.d.ts +2 -2
- package/apps/core/src/app/core/libraryApp/_types.d.ts +2 -2
- package/apps/core/src/app/core/libraryApp/libraryApp.d.ts +7 -7
- package/apps/core/src/app/core/logApp.d.ts +15 -13
- package/apps/core/src/app/core/logsCollectorApp.d.ts +1 -1
- package/apps/core/src/app/core/notificationApp.d.ts +3 -3
- package/apps/core/src/app/core/permissionApp/_types.d.ts +1 -1
- package/apps/core/src/app/core/permissionApp/permissionApp.d.ts +4 -4
- package/apps/core/src/app/core/pluginsApp.d.ts +3 -3
- package/apps/core/src/app/core/recordApp/_types.d.ts +2 -2
- package/apps/core/src/app/core/recordApp/recordApp.d.ts +8 -8
- package/apps/core/src/app/core/tasksManagerApp.d.ts +11 -9
- package/apps/core/src/app/core/treeApp/_types.d.ts +4 -4
- package/apps/core/src/app/core/treeApp/treeApp.d.ts +5 -5
- package/apps/core/src/app/core/userDataApp.d.ts +1 -1
- package/apps/core/src/app/core/valueApp.d.ts +6 -6
- package/apps/core/src/app/core/versionProfileApp/_types.d.ts +2 -2
- package/apps/core/src/app/core/versionProfileApp/versionProfileApp.d.ts +3 -3
- package/apps/core/src/app/core/viewApp.d.ts +5 -5
- package/apps/core/src/app/endpoint/endpointApp.d.ts +3 -3
- package/apps/core/src/app/graphql/customScalars/dateTime/dateTime.d.ts +1 -1
- package/apps/core/src/app/graphql/customScalars/systemTranslation/systemTranslation.d.ts +1 -1
- package/apps/core/src/app/graphql/graphqlApp.d.ts +3 -3
- package/apps/core/src/app/helpers/convertVersionFromGqlFormat.d.ts +1 -1
- package/apps/core/src/app/helpers/initQueryContext.d.ts +2 -2
- package/apps/core/src/app/trpc/index.d.ts +1 -0
- package/apps/core/src/app/trpc/trpcApp.d.ts +30 -0
- package/apps/core/src/domain/actions/excelCalculationAction.d.ts +2 -2
- package/apps/core/src/domain/actions/index.d.ts +1 -0
- package/apps/core/src/domain/actions/inheritanceCalculationAction.d.ts +2 -2
- package/apps/core/src/domain/actions/jexlCalculationAction.d.ts +14 -0
- package/apps/core/src/domain/actions/replaceAnotherAttributeAction.d.ts +3 -3
- package/apps/core/src/domain/apiKey/apiKeyDomain.d.ts +6 -6
- package/apps/core/src/domain/application/applicationDomain.d.ts +7 -7
- package/apps/core/src/domain/application/helpers/getLibrarySystemPanels.d.ts +2 -2
- package/apps/core/src/domain/attribute/attributeDomain.d.ts +12 -12
- package/apps/core/src/domain/attribute/helpers/attributeALHelper.d.ts +1 -1
- package/apps/core/src/domain/attribute/helpers/attributeValidationHelper.d.ts +6 -6
- package/apps/core/src/domain/attribute/helpers/ifLibraryJoinLinkAttribute.d.ts +2 -2
- package/apps/core/src/domain/automation/actions/_types.d.ts +27 -0
- package/apps/core/src/domain/automation/actions/conditionAction.d.ts +8 -0
- package/apps/core/src/domain/automation/actions/errorAction.d.ts +8 -0
- package/apps/core/src/domain/automation/actions/index.d.ts +5 -0
- package/apps/core/src/domain/automation/actions/jexlCalculationAutomationAction.d.ts +14 -0
- package/apps/core/src/domain/automation/actions/logAction.d.ts +16 -0
- package/apps/core/src/domain/automation/actions/modifyAttributeAction.d.ts +18 -0
- package/apps/core/src/domain/automation/automationActionsRegistry.d.ts +10 -0
- package/apps/core/src/domain/automation/automationDomain.d.ts +59 -0
- package/apps/core/src/domain/automation/fakeRulesToTrigger.d.ts +7 -0
- package/apps/core/src/domain/automation/index.d.ts +4 -0
- package/apps/core/src/domain/automation/pipeline/_types.d.ts +33 -0
- package/apps/core/src/domain/automation/pipeline/index.d.ts +1 -0
- package/apps/core/src/domain/automation/pipeline/pipeline.d.ts +18 -0
- package/apps/core/src/domain/automation/triggers/_types.d.ts +15 -0
- package/apps/core/src/domain/automation/triggers/automationTriggers.d.ts +14 -0
- package/apps/core/src/domain/automation/triggers/automationTriggersRegistry.d.ts +19 -0
- package/apps/core/src/domain/automation/triggers/automationTriggersTopics.d.ts +18 -0
- package/apps/core/src/domain/automation/triggers/index.d.ts +3 -0
- package/apps/core/src/domain/discussion/discussionDomain.d.ts +10 -8
- package/apps/core/src/domain/eventsManager/eventsManagerDomain.d.ts +4 -4
- package/apps/core/src/domain/export/exportDomain.d.ts +8 -8
- package/apps/core/src/domain/export/exportProfileDomain.d.ts +2 -2
- package/apps/core/src/domain/filesManager/_constants.d.ts +1 -1
- package/apps/core/src/domain/filesManager/filesManagerDomain.d.ts +13 -13
- package/apps/core/src/domain/filesManager/helpers/extractFileMetadata.d.ts +1 -1
- package/apps/core/src/domain/filesManager/helpers/getRootPathByKey.d.ts +1 -1
- package/apps/core/src/domain/filesManager/helpers/handleFileSystemEvent/_types.d.ts +12 -12
- package/apps/core/src/domain/filesManager/helpers/handleFileSystemEvent/handleCreateEvent.d.ts +1 -1
- package/apps/core/src/domain/filesManager/helpers/handleFileSystemEvent/handleFileSystemEvent.d.ts +10 -10
- package/apps/core/src/domain/filesManager/helpers/handleFileSystemEvent/handleMoveEvent.d.ts +1 -1
- package/apps/core/src/domain/filesManager/helpers/handleFileSystemEvent/handleRemoveEvent.d.ts +1 -1
- package/apps/core/src/domain/filesManager/helpers/handleFileSystemEvent/handleUpdateEvent.d.ts +1 -1
- package/apps/core/src/domain/filesManager/helpers/handleFileUtilsHelper.d.ts +7 -7
- package/apps/core/src/domain/filesManager/helpers/handlePreview.d.ts +1 -1
- package/apps/core/src/domain/filesManager/helpers/handlePreviewResponse.d.ts +9 -9
- package/apps/core/src/domain/filesManager/helpers/messagesHandler/messagesHandler.d.ts +3 -3
- package/apps/core/src/domain/form/formDomain.d.ts +12 -12
- package/apps/core/src/domain/form/helpers/getElementValues.d.ts +4 -4
- package/apps/core/src/domain/form/helpers/mustIncludeElement.d.ts +4 -4
- package/apps/core/src/domain/globalSettings/globalSettingsDomain.d.ts +5 -5
- package/apps/core/src/domain/helpers/calculations/calculationVariable.d.ts +1 -1
- package/apps/core/src/domain/helpers/calculations/calculationsVariableFunctions.d.ts +4 -4
- package/apps/core/src/domain/helpers/createDirectory.d.ts +2 -2
- package/apps/core/src/domain/helpers/getCoreEntityById.d.ts +7 -7
- package/apps/core/src/domain/helpers/updateRecordLastModif.d.ts +4 -4
- package/apps/core/src/domain/helpers/updateTaskProgress.d.ts +3 -3
- package/apps/core/src/domain/helpers/validate.d.ts +6 -6
- package/apps/core/src/domain/import/importDomain.d.ts +11 -11
- package/apps/core/src/domain/indexationManager/indexationManagerDomain.d.ts +9 -9
- package/apps/core/src/domain/jexl/index.d.ts +1 -0
- package/apps/core/src/domain/jexl/jexlDomain.d.ts +19 -0
- package/apps/core/src/domain/jexl/jexlExtended.d.ts +2 -0
- package/apps/core/src/domain/jexl/types.d.ts +37 -0
- package/apps/core/src/domain/library/helpers/checkSavePermission.d.ts +2 -2
- package/apps/core/src/domain/library/helpers/deleteAssociatedValues.d.ts +5 -5
- package/apps/core/src/domain/library/helpers/index.d.ts +0 -1
- package/apps/core/src/domain/library/helpers/runBehaviorPostSave.d.ts +6 -6
- package/apps/core/src/domain/library/helpers/runPreDelete.d.ts +4 -4
- package/apps/core/src/domain/library/helpers/updateAssociatedForms.d.ts +2 -2
- package/apps/core/src/domain/library/helpers/validateLibAttributes.d.ts +3 -3
- package/apps/core/src/domain/library/helpers/validateLibFullTextAttributes.d.ts +1 -1
- package/apps/core/src/domain/library/helpers/validatePermConf.d.ts +4 -4
- package/apps/core/src/domain/library/helpers/validatePreviewsSettings.d.ts +1 -1
- package/apps/core/src/domain/library/helpers/validateRecordIdentityConf.d.ts +3 -3
- package/apps/core/src/domain/library/libraryDomain.d.ts +11 -11
- package/apps/core/src/domain/log/logDomain.d.ts +5 -5
- package/apps/core/src/domain/logsCollector/logsCollectorDomain.d.ts +1 -1
- package/apps/core/src/domain/notification/channels/emailChannel.d.ts +4 -4
- package/apps/core/src/domain/notification/channels/webSocketChannel.d.ts +1 -1
- package/apps/core/src/domain/notification/notificationDomain.d.ts +3 -3
- package/apps/core/src/domain/permission/_types.d.ts +2 -2
- package/apps/core/src/domain/permission/attributeDependentValuesPermissionDomain.d.ts +8 -4
- package/apps/core/src/domain/permission/helpers/defaultPermission.d.ts +3 -3
- package/apps/core/src/domain/permission/helpers/getPermissionCacheKey.d.ts +1 -1
- package/apps/core/src/domain/permission/helpers/getPermissionCachePatternKey.d.ts +1 -1
- package/apps/core/src/domain/permission/helpers/globalPermission.d.ts +2 -2
- package/apps/core/src/domain/permission/helpers/permissionByUserGroups.d.ts +1 -1
- package/apps/core/src/domain/permission/helpers/permissionsByActions.d.ts +1 -1
- package/apps/core/src/domain/permission/helpers/treeBasedPermissions.d.ts +4 -4
- package/apps/core/src/domain/permission/permissionDomain.d.ts +4 -4
- package/apps/core/src/domain/permission/recordAttributePermissionDomain.d.ts +2 -2
- package/apps/core/src/domain/permission/recordPermissionDomain.d.ts +3 -3
- package/apps/core/src/domain/permission/treeNodePermissionDomain.d.ts +4 -4
- package/apps/core/src/domain/plugins/pluginsDomain.d.ts +3 -3
- package/apps/core/src/domain/record/_types.d.ts +4 -4
- package/apps/core/src/domain/record/helpers/createRecord.d.ts +6 -4
- package/apps/core/src/domain/record/helpers/deleteRecord.d.ts +9 -9
- package/apps/core/src/domain/record/helpers/findRecords.d.ts +2 -2
- package/apps/core/src/domain/record/helpers/getAccessPermissionFilters.d.ts +7 -7
- package/apps/core/src/domain/record/helpers/getAttributesFromField.d.ts +4 -4
- package/apps/core/src/domain/record/helpers/getRecordIdentity.d.ts +27 -0
- package/apps/core/src/domain/record/helpers/index.d.ts +1 -1
- package/apps/core/src/domain/record/helpers/sendRecordUpdateEvent.d.ts +3 -3
- package/apps/core/src/domain/record/recordDomain.d.ts +10 -18
- package/apps/core/src/domain/tasksManager/cronTasksManagerDomain.d.ts +13 -0
- package/apps/core/src/domain/tasksManager/index.d.ts +1 -0
- package/apps/core/src/domain/tasksManager/tasksManagerDomain.d.ts +7 -7
- package/apps/core/src/domain/tree/helpers/elementAncestors.d.ts +2 -2
- package/apps/core/src/domain/tree/helpers/getDefaultElement.d.ts +3 -3
- package/apps/core/src/domain/tree/helpers/handleRemovedLibraries.d.ts +3 -3
- package/apps/core/src/domain/tree/helpers/treeDataValidation.d.ts +3 -3
- package/apps/core/src/domain/tree/treeDomain.d.ts +10 -10
- package/apps/core/src/domain/user/userDomain.d.ts +10 -10
- package/apps/core/src/domain/value/_types.d.ts +5 -5
- package/apps/core/src/domain/value/helpers/areValuesIdentical.d.ts +1 -1
- package/apps/core/src/domain/value/helpers/canSaveRecordValue.d.ts +6 -6
- package/apps/core/src/domain/value/helpers/doesValueExist.d.ts +1 -1
- package/apps/core/src/domain/value/helpers/findValue.d.ts +1 -1
- package/apps/core/src/domain/value/helpers/formatLogValue.d.ts +6 -6
- package/apps/core/src/domain/value/helpers/formatValue.d.ts +17 -0
- package/apps/core/src/domain/value/helpers/getRecordFieldValue.d.ts +27 -0
- package/apps/core/src/domain/value/helpers/getValues.d.ts +26 -0
- package/apps/core/src/domain/value/helpers/index.d.ts +7 -0
- package/apps/core/src/domain/value/helpers/isEmptyValue.d.ts +1 -1
- package/apps/core/src/domain/value/helpers/manageEventMetadata.d.ts +4 -0
- package/apps/core/src/domain/value/helpers/postDeleteValue.d.ts +6 -6
- package/apps/core/src/domain/value/helpers/postSaveValue.d.ts +6 -6
- package/apps/core/src/domain/value/helpers/prepareValue.d.ts +6 -6
- package/apps/core/src/domain/value/helpers/runActionsList.d.ts +10 -0
- package/apps/core/src/domain/value/helpers/saveOneValue.d.ts +8 -8
- package/apps/core/src/domain/value/helpers/validateValue.d.ts +4 -4
- package/apps/core/src/domain/value/tasks/purgeMultipleValues.d.ts +1 -1
- package/apps/core/src/domain/value/tasks/saveValueBulk.d.ts +10 -7
- package/apps/core/src/domain/value/valueDomain.d.ts +27 -17
- package/apps/core/src/domain/versionProfile/versionProfileDomain.d.ts +10 -10
- package/apps/core/src/domain/view/viewDomain.d.ts +7 -7
- package/apps/core/src/i18nextInit.d.ts +1 -1
- package/apps/core/src/infra/apiKey/apiKeyRepo.d.ts +5 -5
- package/apps/core/src/infra/application/applicationRepo.d.ts +3 -3
- package/apps/core/src/infra/attribute/attributeRepo.d.ts +4 -4
- package/apps/core/src/infra/attributeTypes/attributeAdvancedLinkRepo.d.ts +2 -2
- package/apps/core/src/infra/attributeTypes/attributeAdvancedRepo.d.ts +2 -2
- package/apps/core/src/infra/attributeTypes/attributeSimpleLinkRepo.d.ts +2 -2
- package/apps/core/src/infra/attributeTypes/attributeSimpleRepo.d.ts +1 -1
- package/apps/core/src/infra/attributeTypes/attributeTreeRepo.d.ts +2 -2
- package/apps/core/src/infra/attributeTypes/attributeTypesRepo.d.ts +1 -1
- package/apps/core/src/infra/automation/automationRuleRepo.d.ts +31 -0
- package/apps/core/src/infra/automation/index.d.ts +1 -0
- package/apps/core/src/infra/cache/cacheService.d.ts +2 -2
- package/apps/core/src/infra/cache/diskService.d.ts +1 -1
- package/apps/core/src/infra/cache/redis.d.ts +1 -1
- package/apps/core/src/infra/db/_types.d.ts +1 -1
- package/apps/core/src/infra/db/db.d.ts +1 -1
- package/apps/core/src/infra/db/dbService.d.ts +2 -2
- package/apps/core/src/infra/db/dbUtils.d.ts +10 -6
- package/apps/core/src/infra/db/helpers/runMigrationFiles.d.ts +1 -1
- package/apps/core/src/infra/db/migrations/000-init/index.d.ts +3 -3
- package/apps/core/src/infra/db/migrations/000-init/systemAttributes.d.ts +1 -1
- package/apps/core/src/infra/db/migrations/001-delInstallApps.d.ts +1 -1
- package/apps/core/src/infra/db/migrations/002-previewsSettings.d.ts +4 -4
- package/apps/core/src/infra/db/migrations/003-filesMetadata.d.ts +3 -3
- package/apps/core/src/infra/db/migrations/004-formsLabels.d.ts +2 -2
- package/apps/core/src/infra/db/migrations/005-viewSortToArray.d.ts +1 -1
- package/apps/core/src/infra/db/migrations/007-updateHexColor.d.ts +1 -1
- package/apps/core/src/infra/db/migrations/010-formSidePanel.d.ts +2 -2
- package/apps/core/src/infra/db/migrations/013-passwordAttributeMaskValue.d.ts +1 -1
- package/apps/core/src/infra/db/migrations/014-notificationsCollection.d.ts +1 -1
- package/apps/core/src/infra/db/migrations/019-automationRuleCollection.d.ts +7 -0
- package/apps/core/src/infra/elasticsearch/elasticsearchClient.d.ts +1 -1
- package/apps/core/src/infra/elasticsearch/elasticsearchService.d.ts +1 -1
- package/apps/core/src/infra/filesManager/filesManagerRepo.d.ts +4 -4
- package/apps/core/src/infra/form/formRepo.d.ts +6 -6
- package/apps/core/src/infra/globalSettings/globalSettingsRepo.d.ts +3 -3
- package/apps/core/src/infra/indexation/helpers/getSearchQuery.d.ts +1 -1
- package/apps/core/src/infra/indexation/indexationService.d.ts +3 -3
- package/apps/core/src/infra/library/libraryRepo.d.ts +2 -2
- package/apps/core/src/infra/log/logRepo.d.ts +4 -4
- package/apps/core/src/infra/mailer/mailer.d.ts +1 -1
- package/apps/core/src/infra/mailer/mailerService.d.ts +3 -3
- package/apps/core/src/infra/notification/notificationRepo.d.ts +3 -3
- package/apps/core/src/infra/permission/permissionRepo.d.ts +1 -1
- package/apps/core/src/infra/plugins/pluginsRepo.d.ts +1 -1
- package/apps/core/src/infra/record/helpers/getClassifyingFiltersVariableQueryPart.d.ts +2 -2
- package/apps/core/src/infra/record/helpers/getSearchVariablesQueryPart.d.ts +1 -1
- package/apps/core/src/infra/record/recordRepo.d.ts +5 -5
- package/apps/core/src/infra/task/taskRepo.d.ts +6 -6
- package/apps/core/src/infra/tree/_types.d.ts +1 -1
- package/apps/core/src/infra/tree/treeRepo.d.ts +5 -5
- package/apps/core/src/infra/userData/userDataRepo.d.ts +2 -2
- package/apps/core/src/infra/value/valueRepo.d.ts +5 -5
- package/apps/core/src/infra/versionProfile/versionProfileRepo.d.ts +6 -6
- package/apps/core/src/infra/view/_types.d.ts +5 -5
- package/apps/core/src/interface/cli.d.ts +1 -1
- package/apps/core/src/interface/filesManager.d.ts +1 -1
- package/apps/core/src/interface/helpers/handleGraphqlError.d.ts +3 -3
- package/apps/core/src/interface/indexationManager.d.ts +1 -1
- package/apps/core/src/interface/logsCollector.d.ts +1 -1
- package/apps/core/src/interface/server.d.ts +10 -8
- package/apps/core/src/interface/tasksManager.d.ts +1 -1
- package/apps/core/src/pluginsLoader.d.ts +1 -0
- package/apps/core/src/utils/configureDayjs.d.ts +1 -1
- package/apps/core/src/utils/dataloader.d.ts +1 -1
- package/apps/core/src/utils/helpers/getSystemQueryContext.d.ts +2 -2
- package/apps/core/src/utils/helpers/getValuesToDisplay.d.ts +1 -1
- package/apps/core/src/utils/logger/logger.d.ts +1 -1
- package/apps/core/src/utils/utils.d.ts +3 -3
- package/apps/core/tsconfig.types.tsbuildinfo +1 -1
- package/apps/core/vitest.e2e-api.config.d.ts +2 -0
- package/apps/core/vitest.e2e-fileManager.config.d.ts +2 -0
- package/apps/core/vitest.e2e-indexationManager.config.d.ts +2 -0
- package/apps/core/vitest.integration.config.d.ts +2 -0
- package/apps/core/vitest.unit.config.d.ts +2 -0
- package/libs/utils/src/types/events.d.ts +6 -0
- package/libs/utils/src/types/helpers.d.ts +0 -3
- package/libs/utils/src/utils.d.ts +3 -1
- package/package.json +3 -5
- package/apps/core/scripts/build.d.ts +0 -2
- package/apps/core/scripts/utils.d.ts +0 -3
- package/apps/core/src/__tests__/e2e/_gqlTypes/index.d.ts +0 -1225
- package/apps/core/src/__tests__/e2e/api/_fixtures/applications/login/index-hashed.d.ts +0 -0
- package/apps/core/src/__tests__/e2e/api/_fixtures/fakeplugin/_types/_types.d.ts +0 -3
- package/apps/core/src/__tests__/e2e/api/_fixtures/fakeplugin/domain/fakeDomain.d.ts +0 -13
- package/apps/core/src/__tests__/e2e/api/_fixtures/fakeplugin/domain/index.d.ts +0 -1
- package/apps/core/src/__tests__/e2e/api/_fixtures/fakeplugin/index.d.ts +0 -21
- package/apps/core/src/__tests__/e2e/api/actionLists/actionLists.test.d.ts +0 -1
- package/apps/core/src/__tests__/e2e/api/actionLists/actions/inheritanceCalculationAction.test.d.ts +0 -1
- package/apps/core/src/__tests__/e2e/api/actionLists/actions/replaceAnotherAttributeAction.test.d.ts +0 -1
- package/apps/core/src/__tests__/e2e/api/apiKey/apiKey.test.d.ts +0 -1
- package/apps/core/src/__tests__/e2e/api/applications/applications.test.d.ts +0 -1
- package/apps/core/src/__tests__/e2e/api/attributes/attributes.test.d.ts +0 -1
- package/apps/core/src/__tests__/e2e/api/auth/auth.test.d.ts +0 -1
- package/apps/core/src/__tests__/e2e/api/constants.d.ts +0 -2
- package/apps/core/src/__tests__/e2e/api/discussions/discussions.test.d.ts +0 -1
- package/apps/core/src/__tests__/e2e/api/e2eUtils.d.ts +0 -150
- package/apps/core/src/__tests__/e2e/api/export/export.test.d.ts +0 -1
- package/apps/core/src/__tests__/e2e/api/export/exportNestedAttributes.test.d.ts +0 -1
- package/apps/core/src/__tests__/e2e/api/files/files.test.d.ts +0 -1
- package/apps/core/src/__tests__/e2e/api/forms/forms.test.d.ts +0 -1
- package/apps/core/src/__tests__/e2e/api/getConditionPart/getConditionPart.test.d.ts +0 -1
- package/apps/core/src/__tests__/e2e/api/globalSettings/globalSettings.test.d.ts +0 -1
- package/apps/core/src/__tests__/e2e/api/globalSetup.d.ts +0 -8
- package/apps/core/src/__tests__/e2e/api/globalSetupHook.d.ts +0 -1
- package/apps/core/src/__tests__/e2e/api/graphql/graphql.test.d.ts +0 -1
- package/apps/core/src/__tests__/e2e/api/import/import.test.d.ts +0 -1
- package/apps/core/src/__tests__/e2e/api/joinLibraries/joinLibraries.test.d.ts +0 -1
- package/apps/core/src/__tests__/e2e/api/joinLibraries/nestedJoinLibraries.test.d.ts +0 -1
- package/apps/core/src/__tests__/e2e/api/libraries/libraries.test.d.ts +0 -1
- package/apps/core/src/__tests__/e2e/api/mailpitUtils.d.ts +0 -37
- package/apps/core/src/__tests__/e2e/api/notificationUtils.d.ts +0 -7
- package/apps/core/src/__tests__/e2e/api/notifications/notifications.test.d.ts +0 -1
- package/apps/core/src/__tests__/e2e/api/permissions/admin/apiKeyAdminPermissions.test.d.ts +0 -1
- package/apps/core/src/__tests__/e2e/api/permissions/admin/applicationsAdminPermissions.test.d.ts +0 -1
- package/apps/core/src/__tests__/e2e/api/permissions/admin/attributesAdminPermissions.test.d.ts +0 -1
- package/apps/core/src/__tests__/e2e/api/permissions/admin/formsAdminPermissions.test.d.ts +0 -1
- package/apps/core/src/__tests__/e2e/api/permissions/admin/globalSettingsAdminPermissions.test.d.ts +0 -1
- package/apps/core/src/__tests__/e2e/api/permissions/admin/librariesAdminPermissions.test.d.ts +0 -1
- package/apps/core/src/__tests__/e2e/api/permissions/admin/permissionsAdminPermissions.test.d.ts +0 -1
- package/apps/core/src/__tests__/e2e/api/permissions/admin/treesAdminPermissions.test.d.ts +0 -1
- package/apps/core/src/__tests__/e2e/api/permissions/admin/versionProfilesAdminPermissions.test.d.ts +0 -1
- package/apps/core/src/__tests__/e2e/api/permissions/applicationsPermissions.test.d.ts +0 -1
- package/apps/core/src/__tests__/e2e/api/permissions/attributePermissions.test.d.ts +0 -1
- package/apps/core/src/__tests__/e2e/api/permissions/dependentValuesTreeAttributePermissions.test.d.ts +0 -1
- package/apps/core/src/__tests__/e2e/api/permissions/extendedLibraryPermissions.test.d.ts +0 -1
- package/apps/core/src/__tests__/e2e/api/permissions/permissions.test.d.ts +0 -1
- package/apps/core/src/__tests__/e2e/api/permissions/recordAttributePermissions.test.d.ts +0 -1
- package/apps/core/src/__tests__/e2e/api/permissions/recordPermissions.test.d.ts +0 -1
- package/apps/core/src/__tests__/e2e/api/permissions/treeLibraryPermissions.test.d.ts +0 -1
- package/apps/core/src/__tests__/e2e/api/permissions/treeNodePermissions.test.d.ts +0 -1
- package/apps/core/src/__tests__/e2e/api/permissions/treePermissions.test.d.ts +0 -1
- package/apps/core/src/__tests__/e2e/api/plugins/plugins.test.d.ts +0 -1
- package/apps/core/src/__tests__/e2e/api/records/recordIdentity.test.d.ts +0 -1
- package/apps/core/src/__tests__/e2e/api/records/records.test.d.ts +0 -1
- package/apps/core/src/__tests__/e2e/api/records/recordsDeletion.test.d.ts +0 -1
- package/apps/core/src/__tests__/e2e/api/records/searchFilters.test.d.ts +0 -1
- package/apps/core/src/__tests__/e2e/api/task/taskSubscription.test.d.ts +0 -1
- package/apps/core/src/__tests__/e2e/api/task/tasksAdminPermissions.test.d.ts +0 -1
- package/apps/core/src/__tests__/e2e/api/taskUtils.d.ts +0 -4
- package/apps/core/src/__tests__/e2e/api/teardown.d.ts +0 -2
- package/apps/core/src/__tests__/e2e/api/trees/treeNodeChildrenAndContentQuery.test.d.ts +0 -1
- package/apps/core/src/__tests__/e2e/api/trees/trees.test.d.ts +0 -1
- package/apps/core/src/__tests__/e2e/api/userData/maskUserPassword.test.d.ts +0 -1
- package/apps/core/src/__tests__/e2e/api/userData/userData.test.d.ts +0 -1
- package/apps/core/src/__tests__/e2e/api/values/listDistinctValues.test.d.ts +0 -1
- package/apps/core/src/__tests__/e2e/api/values/metadata.test.d.ts +0 -1
- package/apps/core/src/__tests__/e2e/api/values/purgeMultipleValues.test.d.ts +0 -1
- package/apps/core/src/__tests__/e2e/api/values/saveValueBulk.test.d.ts +0 -1
- package/apps/core/src/__tests__/e2e/api/values/values.test.d.ts +0 -1
- package/apps/core/src/__tests__/e2e/api/values/versions.test.d.ts +0 -1
- package/apps/core/src/__tests__/e2e/api/versionProfile/versionProfile.test.d.ts +0 -1
- package/apps/core/src/__tests__/e2e/api/views/views.test.d.ts +0 -1
- package/apps/core/src/__tests__/e2e/filesManager/filesManager/filesManager.test.d.ts +0 -1
- package/apps/core/src/__tests__/e2e/filesManager/globalSetup.d.ts +0 -1
- package/apps/core/src/__tests__/e2e/filesManager/globalSetupHook.d.ts +0 -1
- package/apps/core/src/__tests__/e2e/indexationManager/globalSetup.d.ts +0 -1
- package/apps/core/src/__tests__/e2e/indexationManager/globalSetupHook.d.ts +0 -1
- package/apps/core/src/__tests__/e2e/indexationManager/indexation.test.d.ts +0 -1
- package/apps/core/src/__tests__/global-setup.d.ts +0 -0
- package/apps/core/src/__tests__/integration/domain/tasksManagerDomain.test.d.ts +0 -1
- package/apps/core/src/__tests__/integration/globalSetup.d.ts +0 -1
- package/apps/core/src/__tests__/integration/globalSetupHook.d.ts +0 -1
- package/apps/core/src/__tests__/integration/infra/attributeAdvancedLinkRepo.test.d.ts +0 -1
- package/apps/core/src/__tests__/integration/infra/attributeAdvancedRepo.test.d.ts +0 -1
- package/apps/core/src/__tests__/integration/infra/attributeSimpleLinkRepo.test.d.ts +0 -1
- package/apps/core/src/__tests__/integration/infra/attributeSimpleRepo.test.d.ts +0 -1
- package/apps/core/src/__tests__/integration/infra/attributeTreeRepo.test.d.ts +0 -1
- package/apps/core/src/__tests__/integration/infra/integrationTestRepoUtils.d.ts +0 -11
- package/apps/core/src/__tests__/integration/infra/notificationRepo.test.d.ts +0 -1
- package/apps/core/src/__tests__/integration/infra/permissionRepo.test.d.ts +0 -1
- package/apps/core/src/__tests__/integration/infra/ramService.test.d.ts +0 -1
- package/apps/core/src/__tests__/integration/infra/recordRepo.test.d.ts +0 -1
- package/apps/core/src/__tests__/integration/infra/treeRepo.test.d.ts +0 -1
- package/apps/core/src/__tests__/integration/integrationTestUtils.d.ts +0 -7
- package/apps/core/src/__tests__/integration/teardown.d.ts +0 -1
- package/apps/core/src/__tests__/jestUtils.d.ts +0 -12
- package/apps/core/src/__tests__/mockers/amqp.d.ts +0 -8
- package/apps/core/src/__tests__/mockers/logger.d.ts +0 -7
- package/apps/core/src/__tests__/mocks/actionsList.d.ts +0 -73
- package/apps/core/src/__tests__/mocks/apiKey.d.ts +0 -11
- package/apps/core/src/__tests__/mocks/application.d.ts +0 -3
- package/apps/core/src/__tests__/mocks/attribute.d.ts +0 -45
- package/apps/core/src/__tests__/mocks/cache.d.ts +0 -4
- package/apps/core/src/__tests__/mocks/file.d.ts +0 -29
- package/apps/core/src/__tests__/mocks/forms.d.ts +0 -4
- package/apps/core/src/__tests__/mocks/globalSettings.d.ts +0 -2
- package/apps/core/src/__tests__/mocks/graphql-upload.d.ts +0 -3
- package/apps/core/src/__tests__/mocks/library.d.ts +0 -4
- package/apps/core/src/__tests__/mocks/log.d.ts +0 -2
- package/apps/core/src/__tests__/mocks/plugins.d.ts +0 -2
- package/apps/core/src/__tests__/mocks/record.d.ts +0 -3
- package/apps/core/src/__tests__/mocks/shared.d.ts +0 -3
- package/apps/core/src/__tests__/mocks/task.d.ts +0 -2
- package/apps/core/src/__tests__/mocks/translator.d.ts +0 -3
- package/apps/core/src/__tests__/mocks/tree.d.ts +0 -3
- package/apps/core/src/__tests__/mocks/value.d.ts +0 -2
- package/apps/core/src/__tests__/mocks/versionProfile.d.ts +0 -2
- package/apps/core/src/__tests__/mocks/view.d.ts +0 -3
- package/apps/core/src/__tests__/setup.d.ts +0 -1
- package/apps/core/src/app/application/__tests__/applicationApp.spec.d.ts +0 -1
- package/apps/core/src/app/auth/__tests__/authApp.spec.d.ts +0 -1
- package/apps/core/src/app/core/coreApp.spec.d.ts +0 -1
- package/apps/core/src/app/endpoint/endpointApp.spec.d.ts +0 -1
- package/apps/core/src/app/graphql/customScalars/any/any.spec.d.ts +0 -1
- package/apps/core/src/app/graphql/customScalars/dateTime/dateTime.spec.d.ts +0 -1
- package/apps/core/src/app/graphql/customScalars/systemTranslation/systemTranslation.spec.d.ts +0 -1
- package/apps/core/src/app/graphql/graphqlApp.spec.d.ts +0 -1
- package/apps/core/src/app/helpers/convertOIDCIdentifier.spec.d.ts +0 -1
- package/apps/core/src/app/helpers/convertVersionFromGqlFormat.spec.d.ts +0 -1
- package/apps/core/src/app/helpers/validateRequestToken.spec.d.ts +0 -1
- package/apps/core/src/domain/actions/dateRangeToNumberAction.spec.d.ts +0 -1
- package/apps/core/src/domain/actions/encryptAction.spec.d.ts +0 -1
- package/apps/core/src/domain/actions/excelCalculationAction.spec.d.ts +0 -1
- package/apps/core/src/domain/actions/formatDateAction.spec.d.ts +0 -1
- package/apps/core/src/domain/actions/formatDateRangeAction.spec.d.ts +0 -1
- package/apps/core/src/domain/actions/formatNumberAction.spec.d.ts +0 -1
- package/apps/core/src/domain/actions/inheritanceCalculationAction.spec.d.ts +0 -1
- package/apps/core/src/domain/actions/maskValueAction.spec.d.ts +0 -1
- package/apps/core/src/domain/actions/parseJSONAction.spec.d.ts +0 -1
- package/apps/core/src/domain/actions/toBooleanAction.spec.d.ts +0 -1
- package/apps/core/src/domain/actions/toJSONAction.spec.d.ts +0 -1
- package/apps/core/src/domain/actions/toLowercaseAction.spec.d.ts +0 -1
- package/apps/core/src/domain/actions/toNumberAction.spec.d.ts +0 -1
- package/apps/core/src/domain/actions/toStringAction.spec.d.ts +0 -1
- package/apps/core/src/domain/actions/toUppercaseAction.spec.d.ts +0 -1
- package/apps/core/src/domain/actions/validateEmailAction.spec.d.ts +0 -1
- package/apps/core/src/domain/actions/validateFormatAction.spec.d.ts +0 -1
- package/apps/core/src/domain/actions/validateRegexAction.spec.d.ts +0 -1
- package/apps/core/src/domain/actions/validateURLAction.spec.d.ts +0 -1
- package/apps/core/src/domain/actionsList/actionsListDomain.spec.d.ts +0 -1
- package/apps/core/src/domain/apiKey/apiKeyDomain.spec.d.ts +0 -1
- package/apps/core/src/domain/application/applicationDomain.spec.d.ts +0 -1
- package/apps/core/src/domain/attribute/attributeDomain.spec.d.ts +0 -1
- package/apps/core/src/domain/attribute/helpers/ifLibraryJoinLinkAttribute.spec.d.ts +0 -1
- package/apps/core/src/domain/core/coreDomain.spec.d.ts +0 -1
- package/apps/core/src/domain/eventsManager/eventsManagerDomain.spec.d.ts +0 -1
- package/apps/core/src/domain/export/exportDomain.spec.d.ts +0 -1
- package/apps/core/src/domain/export/exportProfileDomain.spec.d.ts +0 -1
- package/apps/core/src/domain/filesManager/filesManagerDomain.spec.d.ts +0 -1
- package/apps/core/src/domain/filesManager/helpers/handleFileSystemEvent/handleFileSystemEvent.spec.d.ts +0 -1
- package/apps/core/src/domain/filesManager/helpers/messagesHandler/messagesHandler.spec.d.ts +0 -1
- package/apps/core/src/domain/form/formDomain.spec.d.ts +0 -1
- package/apps/core/src/domain/globalSettings/globalSettingsDomain.spec.d.ts +0 -1
- package/apps/core/src/domain/helpers/calculations/calculationVariable.spec.d.ts +0 -1
- package/apps/core/src/domain/helpers/calculations/calculationsVariableFunctions.spec.d.ts +0 -1
- package/apps/core/src/domain/import/importDomain.spec.d.ts +0 -1
- package/apps/core/src/domain/indexationManager/indexationManagerDomain.spec.d.ts +0 -1
- package/apps/core/src/domain/library/helpers/runPreDelete.spec.d.ts +0 -1
- package/apps/core/src/domain/library/libraryDomain.spec.d.ts +0 -1
- package/apps/core/src/domain/log/logDomain.spec.d.ts +0 -1
- package/apps/core/src/domain/permission/adminPermissionDomain.spec.d.ts +0 -1
- package/apps/core/src/domain/permission/applicationPermissionDomain.spec.d.ts +0 -1
- package/apps/core/src/domain/permission/attributePermissionDomain.spec.d.ts +0 -1
- package/apps/core/src/domain/permission/helpers/defaultPermission.spec.d.ts +0 -1
- package/apps/core/src/domain/permission/helpers/getPermissionCacheKey.spec.d.ts +0 -1
- package/apps/core/src/domain/permission/helpers/getPermissionCachePatternKey.spec.d.ts +0 -1
- package/apps/core/src/domain/permission/helpers/globalPermission.spec.d.ts +0 -1
- package/apps/core/src/domain/permission/helpers/permissionByUserGroups.spec.d.ts +0 -1
- package/apps/core/src/domain/permission/helpers/permissionsByActions.spec.d.ts +0 -1
- package/apps/core/src/domain/permission/helpers/reducePermissionsArray.spec.d.ts +0 -1
- package/apps/core/src/domain/permission/helpers/simplePermission.spec.d.ts +0 -1
- package/apps/core/src/domain/permission/helpers/treeBasedPermissions.spec.d.ts +0 -1
- package/apps/core/src/domain/permission/libraryPermissionDomain.spec.d.ts +0 -1
- package/apps/core/src/domain/permission/permissionDomain.spec.d.ts +0 -1
- package/apps/core/src/domain/permission/recordAttributePermissionDomain.spec.d.ts +0 -1
- package/apps/core/src/domain/permission/recordPermissionDomain.spec.d.ts +0 -1
- package/apps/core/src/domain/permission/treeLibraryPermissionDomain.spec.d.ts +0 -1
- package/apps/core/src/domain/permission/treeNodePermissionDomain.spec.d.ts +0 -1
- package/apps/core/src/domain/permission/treePermissionDomain.spec.d.ts +0 -1
- package/apps/core/src/domain/plugins/pluginsDomain.spec.d.ts +0 -1
- package/apps/core/src/domain/record/helpers/findRecords.spec.d.ts +0 -1
- package/apps/core/src/domain/record/helpers/getRecordFieldValue.spec.d.ts +0 -0
- package/apps/core/src/domain/record/recordDomain.spec.d.ts +0 -1
- package/apps/core/src/domain/tasksManager/tasksManagerDomain.spec.d.ts +0 -1
- package/apps/core/src/domain/tree/helpers/getDefaultElement.spec.d.ts +0 -1
- package/apps/core/src/domain/tree/helpers/handleRemovedLibraries.spec.d.ts +0 -1
- package/apps/core/src/domain/tree/helpers/treeDataValidation.spec.d.ts +0 -1
- package/apps/core/src/domain/tree/treeDomain.spec.d.ts +0 -1
- package/apps/core/src/domain/user/userDomain.spec.d.ts +0 -1
- package/apps/core/src/domain/value/helpers/areValuesIdentical.spec.d.ts +0 -1
- package/apps/core/src/domain/value/helpers/formatLogValue.spec.d.ts +0 -1
- package/apps/core/src/domain/value/valueDomain.spec.d.ts +0 -1
- package/apps/core/src/domain/versionProfile/versionProfileDomain.spec.d.ts +0 -1
- package/apps/core/src/domain/view/viewDomain.spec.d.ts +0 -1
- package/apps/core/src/infra/apiKey/apiKeyRepo.spec.d.ts +0 -1
- package/apps/core/src/infra/application/applicationRepo.spec.d.ts +0 -1
- package/apps/core/src/infra/attribute/attributeRepo.spec.d.ts +0 -1
- package/apps/core/src/infra/attributeTypes/attributeAdvancedLinkRepo.spec.d.ts +0 -1
- package/apps/core/src/infra/attributeTypes/attributeAdvancedRepo.spec.d.ts +0 -1
- package/apps/core/src/infra/attributeTypes/attributeSimpleLinkRepo.spec.d.ts +0 -1
- package/apps/core/src/infra/attributeTypes/attributeSimpleRepo.spec.d.ts +0 -1
- package/apps/core/src/infra/attributeTypes/attributeTreeRepo.spec.d.ts +0 -1
- package/apps/core/src/infra/attributeTypes/attributeTypesRepo.spec.d.ts +0 -1
- package/apps/core/src/infra/db/dbService.spec.d.ts +0 -1
- package/apps/core/src/infra/db/dbUtils.spec.d.ts +0 -1
- package/apps/core/src/infra/filesManager/filesManagerRepo.spec.d.ts +0 -1
- package/apps/core/src/infra/form/formRepo.spec.d.ts +0 -1
- package/apps/core/src/infra/globalSettings/globalSettingsRepo.spec.d.ts +0 -1
- package/apps/core/src/infra/indexation/helpers/getSearchQuery.spec.d.ts +0 -1
- package/apps/core/src/infra/library/libraryRepo.spec.d.ts +0 -1
- package/apps/core/src/infra/log/logRepo.spec.d.ts +0 -1
- package/apps/core/src/infra/oidc/__tests__/oidcClient.spec.d.ts +0 -1
- package/apps/core/src/infra/oidc/__tests__/oidcClientService.spec.d.ts +0 -1
- package/apps/core/src/infra/permission/permissionRepo.spec.d.ts +0 -1
- package/apps/core/src/infra/plugins/pluginsRepo.spec.d.ts +0 -1
- package/apps/core/src/infra/record/helpers/filterTypes.spec.d.ts +0 -1
- package/apps/core/src/infra/record/helpers/getClassifyingFiltersVariableQueryPart.spec.d.ts +0 -1
- package/apps/core/src/infra/record/helpers/getSearchVariableName.spec.d.ts +0 -1
- package/apps/core/src/infra/record/helpers/getSearchVariablesQueryPart.spec.d.ts +0 -1
- package/apps/core/src/infra/record/recordRepo.spec.d.ts +0 -1
- package/apps/core/src/infra/task/taskRepo.spec.d.ts +0 -1
- package/apps/core/src/infra/tree/treeRepo.spec.d.ts +0 -1
- package/apps/core/src/infra/userData/userDataRepo.spec.d.ts +0 -1
- package/apps/core/src/infra/value/valueRepo.spec.d.ts +0 -1
- package/apps/core/src/infra/versionProfile/versionProfileRepo.spec.d.ts +0 -1
- package/apps/core/src/infra/view/viewRepo.spec.d.ts +0 -1
- package/apps/core/src/interface/helpers/handleGraphqlError.spec.d.ts +0 -1
- package/apps/core/src/utils/dataloader.spec.d.ts +0 -1
- package/apps/core/src/utils/helpers/getValuesToDisplay.spec.d.ts +0 -1
- package/apps/core/src/utils/typeGuards/typeGuards.spec.d.ts +0 -1
- package/apps/core/src/utils/utils.spec.d.ts +0 -1
- /package/apps/core/{scripts/preload.d.ts → src/pluginsModuleResolver.d.ts} +0 -0
|
@@ -1,1225 +0,0 @@
|
|
|
1
|
-
import { IPreviewScalar } from '@leav/utils';
|
|
2
|
-
import { GraphQLClient, RequestOptions } from 'graphql-request';
|
|
3
|
-
export type Maybe<T> = T | null;
|
|
4
|
-
export type InputMaybe<T> = Maybe<T>;
|
|
5
|
-
export type Exact<T extends {
|
|
6
|
-
[key: string]: unknown;
|
|
7
|
-
}> = {
|
|
8
|
-
[K in keyof T]: T[K];
|
|
9
|
-
};
|
|
10
|
-
export type MakeOptional<T, K extends keyof T> = Omit<T, K> & {
|
|
11
|
-
[SubKey in K]?: Maybe<T[SubKey]>;
|
|
12
|
-
};
|
|
13
|
-
export type MakeMaybe<T, K extends keyof T> = Omit<T, K> & {
|
|
14
|
-
[SubKey in K]: Maybe<T[SubKey]>;
|
|
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
|
-
};
|
|
24
|
-
type GraphQLClientRequestHeaders = RequestOptions['requestHeaders'];
|
|
25
|
-
/** All built-in and custom scalars, mapped to their actual values */
|
|
26
|
-
export type Scalars = {
|
|
27
|
-
ID: {
|
|
28
|
-
input: string;
|
|
29
|
-
output: string;
|
|
30
|
-
};
|
|
31
|
-
String: {
|
|
32
|
-
input: string;
|
|
33
|
-
output: string;
|
|
34
|
-
};
|
|
35
|
-
Boolean: {
|
|
36
|
-
input: boolean;
|
|
37
|
-
output: boolean;
|
|
38
|
-
};
|
|
39
|
-
Int: {
|
|
40
|
-
input: number;
|
|
41
|
-
output: number;
|
|
42
|
-
};
|
|
43
|
-
Float: {
|
|
44
|
-
input: number;
|
|
45
|
-
output: number;
|
|
46
|
-
};
|
|
47
|
-
Any: {
|
|
48
|
-
input: any;
|
|
49
|
-
output: any;
|
|
50
|
-
};
|
|
51
|
-
DateTime: {
|
|
52
|
-
input: any;
|
|
53
|
-
output: any;
|
|
54
|
-
};
|
|
55
|
-
FullTreeContent: {
|
|
56
|
-
input: any;
|
|
57
|
-
output: any;
|
|
58
|
-
};
|
|
59
|
-
JSON: {
|
|
60
|
-
input: any;
|
|
61
|
-
output: any;
|
|
62
|
-
};
|
|
63
|
-
JSONObject: {
|
|
64
|
-
input: any;
|
|
65
|
-
output: any;
|
|
66
|
-
};
|
|
67
|
-
Preview: {
|
|
68
|
-
input: IPreviewScalar;
|
|
69
|
-
output: IPreviewScalar;
|
|
70
|
-
};
|
|
71
|
-
SystemTranslation: {
|
|
72
|
-
input: any;
|
|
73
|
-
output: any;
|
|
74
|
-
};
|
|
75
|
-
SystemTranslationOptional: {
|
|
76
|
-
input: any;
|
|
77
|
-
output: any;
|
|
78
|
-
};
|
|
79
|
-
TaskPriority: {
|
|
80
|
-
input: any;
|
|
81
|
-
output: any;
|
|
82
|
-
};
|
|
83
|
-
Upload: {
|
|
84
|
-
input: any;
|
|
85
|
-
output: any;
|
|
86
|
-
};
|
|
87
|
-
};
|
|
88
|
-
export type AccessRecordByDefaultPermissionInput = {
|
|
89
|
-
attributeId: Scalars['ID']['input'];
|
|
90
|
-
libraryId: Scalars['ID']['input'];
|
|
91
|
-
};
|
|
92
|
-
export type ActionConfigurationInput = {
|
|
93
|
-
error_message?: InputMaybe<Scalars['SystemTranslationOptional']['input']>;
|
|
94
|
-
id: Scalars['ID']['input'];
|
|
95
|
-
params?: InputMaybe<Array<ActionConfigurationParamInput>>;
|
|
96
|
-
};
|
|
97
|
-
export type ActionConfigurationParamInput = {
|
|
98
|
-
name: Scalars['String']['input'];
|
|
99
|
-
value: Scalars['String']['input'];
|
|
100
|
-
};
|
|
101
|
-
export declare enum ActionIoTypes {
|
|
102
|
-
boolean = "boolean",
|
|
103
|
-
number = "number",
|
|
104
|
-
object = "object",
|
|
105
|
-
string = "string"
|
|
106
|
-
}
|
|
107
|
-
export type ActionsListConfigurationInput = {
|
|
108
|
-
deleteValue?: InputMaybe<Array<ActionConfigurationInput>>;
|
|
109
|
-
getValue?: InputMaybe<Array<ActionConfigurationInput>>;
|
|
110
|
-
postDeleteValue?: InputMaybe<Array<ActionConfigurationInput>>;
|
|
111
|
-
postSaveValue?: InputMaybe<Array<ActionConfigurationInput>>;
|
|
112
|
-
saveValue?: InputMaybe<Array<ActionConfigurationInput>>;
|
|
113
|
-
};
|
|
114
|
-
export type ApiKeyInput = {
|
|
115
|
-
expiresAt?: InputMaybe<Scalars['Int']['input']>;
|
|
116
|
-
id?: InputMaybe<Scalars['String']['input']>;
|
|
117
|
-
label: Scalars['String']['input'];
|
|
118
|
-
userId: Scalars['String']['input'];
|
|
119
|
-
};
|
|
120
|
-
export type ApiKeysFiltersInput = {
|
|
121
|
-
createdBy?: InputMaybe<Scalars['Int']['input']>;
|
|
122
|
-
label?: InputMaybe<Scalars['String']['input']>;
|
|
123
|
-
modifiedBy?: InputMaybe<Scalars['Int']['input']>;
|
|
124
|
-
user_id?: InputMaybe<Scalars['String']['input']>;
|
|
125
|
-
};
|
|
126
|
-
export declare enum ApiKeysSortableFields {
|
|
127
|
-
createdAt = "createdAt",
|
|
128
|
-
createdBy = "createdBy",
|
|
129
|
-
expiresAt = "expiresAt",
|
|
130
|
-
label = "label",
|
|
131
|
-
modifiedAt = "modifiedAt",
|
|
132
|
-
modifiedBy = "modifiedBy"
|
|
133
|
-
}
|
|
134
|
-
export type ApplicationEventFiltersInput = {
|
|
135
|
-
applicationId?: InputMaybe<Scalars['ID']['input']>;
|
|
136
|
-
events?: InputMaybe<Array<ApplicationEventTypes>>;
|
|
137
|
-
ignoreOwnEvents?: InputMaybe<Scalars['Boolean']['input']>;
|
|
138
|
-
};
|
|
139
|
-
export declare enum ApplicationEventTypes {
|
|
140
|
-
DELETE = "DELETE",
|
|
141
|
-
SAVE = "SAVE"
|
|
142
|
-
}
|
|
143
|
-
export type ApplicationIconInput = {
|
|
144
|
-
libraryId: Scalars['String']['input'];
|
|
145
|
-
recordId: Scalars['String']['input'];
|
|
146
|
-
};
|
|
147
|
-
export type ApplicationInput = {
|
|
148
|
-
color?: InputMaybe<Scalars['String']['input']>;
|
|
149
|
-
description?: InputMaybe<Scalars['SystemTranslationOptional']['input']>;
|
|
150
|
-
endpoint?: InputMaybe<Scalars['String']['input']>;
|
|
151
|
-
icon?: InputMaybe<ApplicationIconInput>;
|
|
152
|
-
id: Scalars['ID']['input'];
|
|
153
|
-
label?: InputMaybe<Scalars['SystemTranslation']['input']>;
|
|
154
|
-
module?: InputMaybe<Scalars['String']['input']>;
|
|
155
|
-
settings?: InputMaybe<Scalars['JSONObject']['input']>;
|
|
156
|
-
system?: InputMaybe<Scalars['Boolean']['input']>;
|
|
157
|
-
type?: InputMaybe<ApplicationType>;
|
|
158
|
-
};
|
|
159
|
-
export declare enum ApplicationSortableFields {
|
|
160
|
-
endpoint = "endpoint",
|
|
161
|
-
id = "id",
|
|
162
|
-
module = "module",
|
|
163
|
-
system = "system",
|
|
164
|
-
type = "type"
|
|
165
|
-
}
|
|
166
|
-
export declare enum ApplicationType {
|
|
167
|
-
external = "external",
|
|
168
|
-
internal = "internal"
|
|
169
|
-
}
|
|
170
|
-
export type ApplicationsFiltersInput = {
|
|
171
|
-
endpoint?: InputMaybe<Scalars['String']['input']>;
|
|
172
|
-
id?: InputMaybe<Scalars['ID']['input']>;
|
|
173
|
-
label?: InputMaybe<Scalars['String']['input']>;
|
|
174
|
-
module?: InputMaybe<Scalars['String']['input']>;
|
|
175
|
-
system?: InputMaybe<Scalars['Boolean']['input']>;
|
|
176
|
-
type?: InputMaybe<Array<InputMaybe<ApplicationType>>>;
|
|
177
|
-
};
|
|
178
|
-
export declare enum AttributeFormat {
|
|
179
|
-
boolean = "boolean",
|
|
180
|
-
color = "color",
|
|
181
|
-
date = "date",
|
|
182
|
-
date_range = "date_range",
|
|
183
|
-
encrypted = "encrypted",
|
|
184
|
-
extended = "extended",
|
|
185
|
-
numeric = "numeric",
|
|
186
|
-
rich_text = "rich_text",
|
|
187
|
-
text = "text"
|
|
188
|
-
}
|
|
189
|
-
export type AttributeInput = {
|
|
190
|
-
actions_list?: InputMaybe<ActionsListConfigurationInput>;
|
|
191
|
-
character_limit?: InputMaybe<Scalars['Int']['input']>;
|
|
192
|
-
description?: InputMaybe<Scalars['SystemTranslationOptional']['input']>;
|
|
193
|
-
embedded_fields?: InputMaybe<Array<InputMaybe<EmbeddedAttributeInput>>>;
|
|
194
|
-
format?: InputMaybe<AttributeFormat>;
|
|
195
|
-
id: Scalars['ID']['input'];
|
|
196
|
-
label?: InputMaybe<Scalars['SystemTranslation']['input']>;
|
|
197
|
-
linked_library?: InputMaybe<Scalars['String']['input']>;
|
|
198
|
-
linked_tree?: InputMaybe<Scalars['String']['input']>;
|
|
199
|
-
metadata_fields?: InputMaybe<Array<Scalars['String']['input']>>;
|
|
200
|
-
multi_link_display_option?: InputMaybe<MultiDisplayOption>;
|
|
201
|
-
multi_tree_display_option?: InputMaybe<MultiDisplayOption>;
|
|
202
|
-
multiple_values?: InputMaybe<Scalars['Boolean']['input']>;
|
|
203
|
-
permissions_conf?: InputMaybe<TreepermissionsConfInput>;
|
|
204
|
-
permissions_conf_dependent_values?: InputMaybe<TreePermissionsDependentValuesConfInput>;
|
|
205
|
-
readonly?: InputMaybe<Scalars['Boolean']['input']>;
|
|
206
|
-
required?: InputMaybe<Scalars['Boolean']['input']>;
|
|
207
|
-
reverse_link?: InputMaybe<Scalars['String']['input']>;
|
|
208
|
-
settings?: InputMaybe<Scalars['JSONObject']['input']>;
|
|
209
|
-
/** only for link attribute */
|
|
210
|
-
smart_filter?: InputMaybe<SmartFilterConfInput>;
|
|
211
|
-
type?: InputMaybe<AttributeType>;
|
|
212
|
-
unique?: InputMaybe<Scalars['Boolean']['input']>;
|
|
213
|
-
values_list?: InputMaybe<ValuesListConfInput>;
|
|
214
|
-
versions_conf?: InputMaybe<ValuesVersionsConfInput>;
|
|
215
|
-
};
|
|
216
|
-
export type AttributePermissionsRecord = {
|
|
217
|
-
id?: InputMaybe<Scalars['String']['input']>;
|
|
218
|
-
library: Scalars['String']['input'];
|
|
219
|
-
};
|
|
220
|
-
export declare enum AttributeType {
|
|
221
|
-
advanced = "advanced",
|
|
222
|
-
advanced_link = "advanced_link",
|
|
223
|
-
simple = "simple",
|
|
224
|
-
simple_link = "simple_link",
|
|
225
|
-
tree = "tree"
|
|
226
|
-
}
|
|
227
|
-
export type AttributesFiltersInput = {
|
|
228
|
-
format?: InputMaybe<Array<AttributeFormat>>;
|
|
229
|
-
id?: InputMaybe<Scalars['ID']['input']>;
|
|
230
|
-
ids?: InputMaybe<Array<Scalars['ID']['input']>>;
|
|
231
|
-
label?: InputMaybe<Scalars['String']['input']>;
|
|
232
|
-
libraries?: InputMaybe<Array<Scalars['String']['input']>>;
|
|
233
|
-
librariesExcluded?: InputMaybe<Array<Scalars['String']['input']>>;
|
|
234
|
-
multiple_values?: InputMaybe<Scalars['Boolean']['input']>;
|
|
235
|
-
system?: InputMaybe<Scalars['Boolean']['input']>;
|
|
236
|
-
type?: InputMaybe<Array<AttributeType>>;
|
|
237
|
-
versionable?: InputMaybe<Scalars['Boolean']['input']>;
|
|
238
|
-
};
|
|
239
|
-
export declare enum AttributesSortableFields {
|
|
240
|
-
format = "format",
|
|
241
|
-
id = "id",
|
|
242
|
-
linked_library = "linked_library",
|
|
243
|
-
linked_tree = "linked_tree",
|
|
244
|
-
multiple_values = "multiple_values",
|
|
245
|
-
type = "type"
|
|
246
|
-
}
|
|
247
|
-
export declare enum AvailableLanguage {
|
|
248
|
-
en = "en",
|
|
249
|
-
fr = "fr"
|
|
250
|
-
}
|
|
251
|
-
export type CampaignToRenew = {
|
|
252
|
-
endDate: Scalars['String']['input'];
|
|
253
|
-
id: Scalars['String']['input'];
|
|
254
|
-
startDate: Scalars['String']['input'];
|
|
255
|
-
};
|
|
256
|
-
export type CampaignToUpdateDates = {
|
|
257
|
-
endDate: Scalars['String']['input'];
|
|
258
|
-
id: Scalars['String']['input'];
|
|
259
|
-
startDate: Scalars['String']['input'];
|
|
260
|
-
};
|
|
261
|
-
export type ChildrenAsRecordValuePermissionFilterInput = {
|
|
262
|
-
action: RecordPermissionsActions;
|
|
263
|
-
attributeId: Scalars['ID']['input'];
|
|
264
|
-
libraryId: Scalars['ID']['input'];
|
|
265
|
-
};
|
|
266
|
-
export type CreateRecordDataInput = {
|
|
267
|
-
values?: InputMaybe<Array<ValueBatchInput>>;
|
|
268
|
-
version?: InputMaybe<Array<ValueVersionInput>>;
|
|
269
|
-
};
|
|
270
|
-
export type DeleteTaskInput = {
|
|
271
|
-
archive: Scalars['Boolean']['input'];
|
|
272
|
-
id: Scalars['ID']['input'];
|
|
273
|
-
};
|
|
274
|
-
export type DependentValuesPermissionFilterInput = {
|
|
275
|
-
attributeId: Scalars['ID']['input'];
|
|
276
|
-
libraryId: Scalars['ID']['input'];
|
|
277
|
-
recordId: Scalars['ID']['input'];
|
|
278
|
-
};
|
|
279
|
-
export type DiscussionCommentInput = {
|
|
280
|
-
mentions?: InputMaybe<DiscussionMentionsInput>;
|
|
281
|
-
message: Scalars['String']['input'];
|
|
282
|
-
targetRecord: DiscussionTargetRecordInput;
|
|
283
|
-
threadId?: InputMaybe<Scalars['String']['input']>;
|
|
284
|
-
};
|
|
285
|
-
export type DiscussionMentionsInput = {
|
|
286
|
-
url: Scalars['String']['input'];
|
|
287
|
-
users?: InputMaybe<Array<Scalars['String']['input']>>;
|
|
288
|
-
};
|
|
289
|
-
export type DiscussionTargetRecordInput = {
|
|
290
|
-
id: Scalars['String']['input'];
|
|
291
|
-
libraryId: Scalars['String']['input'];
|
|
292
|
-
};
|
|
293
|
-
export type EmbeddedAttributeInput = {
|
|
294
|
-
description?: InputMaybe<Scalars['SystemTranslationOptional']['input']>;
|
|
295
|
-
embedded_fields?: InputMaybe<Array<InputMaybe<EmbeddedAttributeInput>>>;
|
|
296
|
-
format?: InputMaybe<AttributeFormat>;
|
|
297
|
-
id: Scalars['ID']['input'];
|
|
298
|
-
label?: InputMaybe<Scalars['SystemTranslation']['input']>;
|
|
299
|
-
validation_regex?: InputMaybe<Scalars['String']['input']>;
|
|
300
|
-
};
|
|
301
|
-
export type FileInput = {
|
|
302
|
-
data: Scalars['Upload']['input'];
|
|
303
|
-
replace?: InputMaybe<Scalars['Boolean']['input']>;
|
|
304
|
-
size?: InputMaybe<Scalars['Int']['input']>;
|
|
305
|
-
uid: Scalars['String']['input'];
|
|
306
|
-
};
|
|
307
|
-
export declare enum FileType {
|
|
308
|
-
audio = "audio",
|
|
309
|
-
document = "document",
|
|
310
|
-
image = "image",
|
|
311
|
-
other = "other",
|
|
312
|
-
video = "video"
|
|
313
|
-
}
|
|
314
|
-
export type FormDependencyValueInput = {
|
|
315
|
-
attribute: Scalars['ID']['input'];
|
|
316
|
-
value: Scalars['ID']['input'];
|
|
317
|
-
};
|
|
318
|
-
export type FormElementInput = {
|
|
319
|
-
containerId: Scalars['ID']['input'];
|
|
320
|
-
id: Scalars['ID']['input'];
|
|
321
|
-
order: Scalars['Int']['input'];
|
|
322
|
-
settings: Array<FormElementSettingsInput>;
|
|
323
|
-
type: FormElementTypes;
|
|
324
|
-
uiElementType: Scalars['String']['input'];
|
|
325
|
-
};
|
|
326
|
-
export type FormElementSettingsInput = {
|
|
327
|
-
key: Scalars['String']['input'];
|
|
328
|
-
value: Scalars['Any']['input'];
|
|
329
|
-
};
|
|
330
|
-
export declare enum FormElementTypes {
|
|
331
|
-
field = "field",
|
|
332
|
-
layout = "layout"
|
|
333
|
-
}
|
|
334
|
-
export type FormElementsByDepsInput = {
|
|
335
|
-
dependencyValue?: InputMaybe<FormDependencyValueInput>;
|
|
336
|
-
elements: Array<FormElementInput>;
|
|
337
|
-
};
|
|
338
|
-
export type FormFiltersInput = {
|
|
339
|
-
id?: InputMaybe<Scalars['ID']['input']>;
|
|
340
|
-
label?: InputMaybe<Scalars['String']['input']>;
|
|
341
|
-
library: Scalars['ID']['input'];
|
|
342
|
-
system?: InputMaybe<Scalars['Boolean']['input']>;
|
|
343
|
-
};
|
|
344
|
-
export type FormInput = {
|
|
345
|
-
dependencyAttributes?: InputMaybe<Array<Scalars['ID']['input']>>;
|
|
346
|
-
elements?: InputMaybe<Array<FormElementsByDepsInput>>;
|
|
347
|
-
id: Scalars['ID']['input'];
|
|
348
|
-
label?: InputMaybe<Scalars['SystemTranslation']['input']>;
|
|
349
|
-
library: Scalars['ID']['input'];
|
|
350
|
-
sidePanel?: InputMaybe<FormSidePanelInput>;
|
|
351
|
-
};
|
|
352
|
-
export type FormSidePanelInput = {
|
|
353
|
-
enable: Scalars['Boolean']['input'];
|
|
354
|
-
isOpenByDefault: Scalars['Boolean']['input'];
|
|
355
|
-
};
|
|
356
|
-
export declare enum FormsSortableFields {
|
|
357
|
-
id = "id",
|
|
358
|
-
library = "library",
|
|
359
|
-
system = "system"
|
|
360
|
-
}
|
|
361
|
-
export type GlobalSettingsFileInput = {
|
|
362
|
-
library: Scalars['String']['input'];
|
|
363
|
-
recordId: Scalars['String']['input'];
|
|
364
|
-
};
|
|
365
|
-
export type GlobalSettingsInput = {
|
|
366
|
-
defaultApp?: InputMaybe<Scalars['String']['input']>;
|
|
367
|
-
favicon?: InputMaybe<GlobalSettingsFileInput>;
|
|
368
|
-
icon?: InputMaybe<GlobalSettingsFileInput>;
|
|
369
|
-
name?: InputMaybe<Scalars['String']['input']>;
|
|
370
|
-
settings?: InputMaybe<Scalars['JSONObject']['input']>;
|
|
371
|
-
};
|
|
372
|
-
export declare enum IoTypes {
|
|
373
|
-
boolean = "boolean",
|
|
374
|
-
number = "number",
|
|
375
|
-
object = "object",
|
|
376
|
-
string = "string"
|
|
377
|
-
}
|
|
378
|
-
export declare enum ImportMode {
|
|
379
|
-
insert = "insert",
|
|
380
|
-
update = "update",
|
|
381
|
-
upsert = "upsert"
|
|
382
|
-
}
|
|
383
|
-
export declare enum ImportType {
|
|
384
|
-
IGNORE = "IGNORE",
|
|
385
|
-
LINK = "LINK",
|
|
386
|
-
STANDARD = "STANDARD"
|
|
387
|
-
}
|
|
388
|
-
export type LibrariesFiltersInput = {
|
|
389
|
-
behavior?: InputMaybe<Array<LibraryBehavior>>;
|
|
390
|
-
id?: InputMaybe<Array<Scalars['ID']['input']>>;
|
|
391
|
-
label?: InputMaybe<Array<Scalars['String']['input']>>;
|
|
392
|
-
system?: InputMaybe<Scalars['Boolean']['input']>;
|
|
393
|
-
};
|
|
394
|
-
export declare enum LibrariesSortableFields {
|
|
395
|
-
behavior = "behavior",
|
|
396
|
-
id = "id",
|
|
397
|
-
system = "system"
|
|
398
|
-
}
|
|
399
|
-
export declare enum LibraryBehavior {
|
|
400
|
-
directories = "directories",
|
|
401
|
-
files = "files",
|
|
402
|
-
join = "join",
|
|
403
|
-
standard = "standard"
|
|
404
|
-
}
|
|
405
|
-
export type LibraryIconInput = {
|
|
406
|
-
libraryId: Scalars['String']['input'];
|
|
407
|
-
recordId: Scalars['String']['input'];
|
|
408
|
-
};
|
|
409
|
-
export type LibraryInput = {
|
|
410
|
-
attributes?: InputMaybe<Array<Scalars['ID']['input']>>;
|
|
411
|
-
behavior?: InputMaybe<LibraryBehavior>;
|
|
412
|
-
defaultView?: InputMaybe<Scalars['ID']['input']>;
|
|
413
|
-
fullTextAttributes?: InputMaybe<Array<Scalars['ID']['input']>>;
|
|
414
|
-
icon?: InputMaybe<LibraryIconInput>;
|
|
415
|
-
id: Scalars['ID']['input'];
|
|
416
|
-
label?: InputMaybe<Scalars['SystemTranslation']['input']>;
|
|
417
|
-
mandatoryAttribute?: InputMaybe<Scalars['ID']['input']>;
|
|
418
|
-
permissions_conf?: InputMaybe<TreepermissionsConfInput>;
|
|
419
|
-
previewsSettings?: InputMaybe<Array<LibraryPreviewsSettingsInput>>;
|
|
420
|
-
recordIdentityConf?: InputMaybe<RecordIdentityConfInput>;
|
|
421
|
-
settings?: InputMaybe<Scalars['JSONObject']['input']>;
|
|
422
|
-
};
|
|
423
|
-
export type LibraryPreviewsSettingsInput = {
|
|
424
|
-
description?: InputMaybe<Scalars['SystemTranslationOptional']['input']>;
|
|
425
|
-
label: Scalars['SystemTranslation']['input'];
|
|
426
|
-
versions: PreviewVersionInput;
|
|
427
|
-
};
|
|
428
|
-
export declare enum LogAction {
|
|
429
|
-
API_KEY_DELETE = "API_KEY_DELETE",
|
|
430
|
-
API_KEY_SAVE = "API_KEY_SAVE",
|
|
431
|
-
APP_DELETE = "APP_DELETE",
|
|
432
|
-
APP_SAVE = "APP_SAVE",
|
|
433
|
-
ATTRIBUTE_DELETE = "ATTRIBUTE_DELETE",
|
|
434
|
-
ATTRIBUTE_SAVE = "ATTRIBUTE_SAVE",
|
|
435
|
-
CONFIG_IMPORT_END = "CONFIG_IMPORT_END",
|
|
436
|
-
CONFIG_IMPORT_START = "CONFIG_IMPORT_START",
|
|
437
|
-
DATA_IMPORT_END = "DATA_IMPORT_END",
|
|
438
|
-
DATA_IMPORT_START = "DATA_IMPORT_START",
|
|
439
|
-
EXPORT_END = "EXPORT_END",
|
|
440
|
-
EXPORT_START = "EXPORT_START",
|
|
441
|
-
GLOBAL_SETTINGS_SAVE = "GLOBAL_SETTINGS_SAVE",
|
|
442
|
-
LIBRARY_DELETE = "LIBRARY_DELETE",
|
|
443
|
-
LIBRARY_PURGE = "LIBRARY_PURGE",
|
|
444
|
-
LIBRARY_SAVE = "LIBRARY_SAVE",
|
|
445
|
-
PERMISSION_SAVE = "PERMISSION_SAVE",
|
|
446
|
-
RECORD_DELETE = "RECORD_DELETE",
|
|
447
|
-
RECORD_SAVE = "RECORD_SAVE",
|
|
448
|
-
TASKS_DELETE = "TASKS_DELETE",
|
|
449
|
-
TREE_ADD_ELEMENT = "TREE_ADD_ELEMENT",
|
|
450
|
-
TREE_DELETE = "TREE_DELETE",
|
|
451
|
-
TREE_DELETE_ELEMENT = "TREE_DELETE_ELEMENT",
|
|
452
|
-
TREE_MOVE_ELEMENT = "TREE_MOVE_ELEMENT",
|
|
453
|
-
TREE_SAVE = "TREE_SAVE",
|
|
454
|
-
VALUE_DELETE = "VALUE_DELETE",
|
|
455
|
-
VALUE_SAVE = "VALUE_SAVE",
|
|
456
|
-
VERSION_PROFILE_DELETE = "VERSION_PROFILE_DELETE",
|
|
457
|
-
VERSION_PROFILE_SAVE = "VERSION_PROFILE_SAVE"
|
|
458
|
-
}
|
|
459
|
-
export type LogFilterInput = {
|
|
460
|
-
actions?: InputMaybe<Array<LogAction>>;
|
|
461
|
-
instanceId?: InputMaybe<Scalars['String']['input']>;
|
|
462
|
-
queryId?: InputMaybe<Scalars['String']['input']>;
|
|
463
|
-
time?: InputMaybe<LogFilterTimeInput>;
|
|
464
|
-
topic?: InputMaybe<LogTopicFilterInput>;
|
|
465
|
-
trigger?: InputMaybe<Scalars['String']['input']>;
|
|
466
|
-
userId?: InputMaybe<Scalars['String']['input']>;
|
|
467
|
-
};
|
|
468
|
-
export type LogFilterTimeInput = {
|
|
469
|
-
from?: InputMaybe<Scalars['Int']['input']>;
|
|
470
|
-
to?: InputMaybe<Scalars['Int']['input']>;
|
|
471
|
-
};
|
|
472
|
-
export type LogSortInput = {
|
|
473
|
-
field: LogSortableField;
|
|
474
|
-
order: SortOrder;
|
|
475
|
-
};
|
|
476
|
-
export declare enum LogSortableField {
|
|
477
|
-
action = "action",
|
|
478
|
-
instanceId = "instanceId",
|
|
479
|
-
queryId = "queryId",
|
|
480
|
-
time = "time",
|
|
481
|
-
trigger = "trigger",
|
|
482
|
-
userId = "userId"
|
|
483
|
-
}
|
|
484
|
-
export type LogTopicFilterInput = {
|
|
485
|
-
apiKey?: InputMaybe<Scalars['String']['input']>;
|
|
486
|
-
attribute?: InputMaybe<Scalars['String']['input']>;
|
|
487
|
-
filename?: InputMaybe<Scalars['String']['input']>;
|
|
488
|
-
library?: InputMaybe<Scalars['String']['input']>;
|
|
489
|
-
permission?: InputMaybe<LogTopicPermissionFilterInput>;
|
|
490
|
-
profile?: InputMaybe<Scalars['String']['input']>;
|
|
491
|
-
record?: InputMaybe<LogTopicRecordFilterInput>;
|
|
492
|
-
tree?: InputMaybe<Scalars['String']['input']>;
|
|
493
|
-
};
|
|
494
|
-
export type LogTopicPermissionFilterInput = {
|
|
495
|
-
applyTo?: InputMaybe<Scalars['String']['input']>;
|
|
496
|
-
type?: InputMaybe<Scalars['String']['input']>;
|
|
497
|
-
};
|
|
498
|
-
export type LogTopicRecordFilterInput = {
|
|
499
|
-
id?: InputMaybe<Scalars['String']['input']>;
|
|
500
|
-
libraryId?: InputMaybe<Scalars['String']['input']>;
|
|
501
|
-
};
|
|
502
|
-
export type MapValueInput = {
|
|
503
|
-
after?: InputMaybe<Scalars['ID']['input']>;
|
|
504
|
-
before?: InputMaybe<Scalars['ID']['input']>;
|
|
505
|
-
};
|
|
506
|
-
export declare enum MultiDisplayOption {
|
|
507
|
-
avatar = "avatar",
|
|
508
|
-
badge_qty = "badge_qty",
|
|
509
|
-
tag = "tag"
|
|
510
|
-
}
|
|
511
|
-
export declare enum NotificationLevel {
|
|
512
|
-
error = "error",
|
|
513
|
-
info = "info",
|
|
514
|
-
success = "success",
|
|
515
|
-
warning = "warning"
|
|
516
|
-
}
|
|
517
|
-
export type Pagination = {
|
|
518
|
-
limit: Scalars['Int']['input'];
|
|
519
|
-
offset: Scalars['Int']['input'];
|
|
520
|
-
};
|
|
521
|
-
export type PermissionActionInput = {
|
|
522
|
-
allowed?: InputMaybe<Scalars['Boolean']['input']>;
|
|
523
|
-
name: PermissionsActions;
|
|
524
|
-
};
|
|
525
|
-
export type PermissionInput = {
|
|
526
|
-
actions: Array<PermissionActionInput>;
|
|
527
|
-
applyTo?: InputMaybe<Scalars['ID']['input']>;
|
|
528
|
-
dependenciesTreeTargets?: InputMaybe<Array<PermissionsDependenciesTreeTargetInput>>;
|
|
529
|
-
permissionTreeTarget?: InputMaybe<PermissionsTreeTargetInput>;
|
|
530
|
-
type: PermissionTypes;
|
|
531
|
-
usersGroup?: InputMaybe<Scalars['ID']['input']>;
|
|
532
|
-
};
|
|
533
|
-
export type PermissionTarget = {
|
|
534
|
-
attributeId?: InputMaybe<Scalars['ID']['input']>;
|
|
535
|
-
libraryId?: InputMaybe<Scalars['ID']['input']>;
|
|
536
|
-
nodeId?: InputMaybe<Scalars['ID']['input']>;
|
|
537
|
-
recordId?: InputMaybe<Scalars['ID']['input']>;
|
|
538
|
-
};
|
|
539
|
-
export declare enum PermissionTypes {
|
|
540
|
-
admin = "admin",
|
|
541
|
-
application = "application",
|
|
542
|
-
attribute = "attribute",
|
|
543
|
-
attribute_dependent_values = "attribute_dependent_values",
|
|
544
|
-
library = "library",
|
|
545
|
-
record = "record",
|
|
546
|
-
record_attribute = "record_attribute",
|
|
547
|
-
tree = "tree",
|
|
548
|
-
tree_library = "tree_library",
|
|
549
|
-
tree_node = "tree_node"
|
|
550
|
-
}
|
|
551
|
-
export declare enum PermissionsActions {
|
|
552
|
-
access_application = "access_application",
|
|
553
|
-
access_attribute = "access_attribute",
|
|
554
|
-
access_library = "access_library",
|
|
555
|
-
access_record = "access_record",
|
|
556
|
-
access_record_by_default = "access_record_by_default",
|
|
557
|
-
access_tree = "access_tree",
|
|
558
|
-
admin_access_api_keys = "admin_access_api_keys",
|
|
559
|
-
admin_access_applications = "admin_access_applications",
|
|
560
|
-
admin_access_attributes = "admin_access_attributes",
|
|
561
|
-
admin_access_libraries = "admin_access_libraries",
|
|
562
|
-
admin_access_logs = "admin_access_logs",
|
|
563
|
-
admin_access_permissions = "admin_access_permissions",
|
|
564
|
-
admin_access_tasks = "admin_access_tasks",
|
|
565
|
-
admin_access_trees = "admin_access_trees",
|
|
566
|
-
admin_access_version_profiles = "admin_access_version_profiles",
|
|
567
|
-
admin_application = "admin_application",
|
|
568
|
-
admin_cancel_task = "admin_cancel_task",
|
|
569
|
-
admin_create_api_key = "admin_create_api_key",
|
|
570
|
-
admin_create_application = "admin_create_application",
|
|
571
|
-
admin_create_attribute = "admin_create_attribute",
|
|
572
|
-
admin_create_library = "admin_create_library",
|
|
573
|
-
admin_create_tree = "admin_create_tree",
|
|
574
|
-
admin_create_version_profile = "admin_create_version_profile",
|
|
575
|
-
admin_delete_api_key = "admin_delete_api_key",
|
|
576
|
-
admin_delete_application = "admin_delete_application",
|
|
577
|
-
admin_delete_attribute = "admin_delete_attribute",
|
|
578
|
-
admin_delete_library = "admin_delete_library",
|
|
579
|
-
admin_delete_task = "admin_delete_task",
|
|
580
|
-
admin_delete_tree = "admin_delete_tree",
|
|
581
|
-
admin_delete_version_profile = "admin_delete_version_profile",
|
|
582
|
-
admin_edit_api_key = "admin_edit_api_key",
|
|
583
|
-
admin_edit_application = "admin_edit_application",
|
|
584
|
-
admin_edit_attribute = "admin_edit_attribute",
|
|
585
|
-
admin_edit_global_settings = "admin_edit_global_settings",
|
|
586
|
-
admin_edit_library = "admin_edit_library",
|
|
587
|
-
admin_edit_permission = "admin_edit_permission",
|
|
588
|
-
admin_edit_tree = "admin_edit_tree",
|
|
589
|
-
admin_edit_version_profile = "admin_edit_version_profile",
|
|
590
|
-
admin_import_config_clear_database = "admin_import_config_clear_database",
|
|
591
|
-
admin_library = "admin_library",
|
|
592
|
-
admin_list_plugins = "admin_list_plugins",
|
|
593
|
-
admin_manage_global_preferences = "admin_manage_global_preferences",
|
|
594
|
-
create_record = "create_record",
|
|
595
|
-
delete_record = "delete_record",
|
|
596
|
-
detach = "detach",
|
|
597
|
-
edit_children = "edit_children",
|
|
598
|
-
edit_record = "edit_record",
|
|
599
|
-
edit_value = "edit_value",
|
|
600
|
-
set_value = "set_value"
|
|
601
|
-
}
|
|
602
|
-
export type PermissionsDependenciesTreeTargetInput = {
|
|
603
|
-
attributeId: Scalars['ID']['input'];
|
|
604
|
-
nodeId?: InputMaybe<Scalars['ID']['input']>;
|
|
605
|
-
tree: Scalars['ID']['input'];
|
|
606
|
-
};
|
|
607
|
-
export declare enum PermissionsRelation {
|
|
608
|
-
and = "and",
|
|
609
|
-
or = "or"
|
|
610
|
-
}
|
|
611
|
-
export type PermissionsTreeTargetInput = {
|
|
612
|
-
nodeId?: InputMaybe<Scalars['ID']['input']>;
|
|
613
|
-
tree: Scalars['ID']['input'];
|
|
614
|
-
};
|
|
615
|
-
export type PreviewVersionInput = {
|
|
616
|
-
background: Scalars['String']['input'];
|
|
617
|
-
density: Scalars['Int']['input'];
|
|
618
|
-
sizes: Array<PreviewVersionSizeInput>;
|
|
619
|
-
};
|
|
620
|
-
export type PreviewVersionSizeInput = {
|
|
621
|
-
name: Scalars['String']['input'];
|
|
622
|
-
size: Scalars['Int']['input'];
|
|
623
|
-
};
|
|
624
|
-
export declare enum RecordFilterCondition {
|
|
625
|
-
BEGIN_WITH = "BEGIN_WITH",
|
|
626
|
-
BETWEEN = "BETWEEN",
|
|
627
|
-
CLASSIFIED_IN = "CLASSIFIED_IN",
|
|
628
|
-
CONTAINS = "CONTAINS",
|
|
629
|
-
END_AFTER = "END_AFTER",
|
|
630
|
-
END_BEFORE = "END_BEFORE",
|
|
631
|
-
END_ON = "END_ON",
|
|
632
|
-
END_WITH = "END_WITH",
|
|
633
|
-
EQUAL = "EQUAL",
|
|
634
|
-
GREATER_THAN = "GREATER_THAN",
|
|
635
|
-
IS_EMPTY = "IS_EMPTY",
|
|
636
|
-
IS_NOT_EMPTY = "IS_NOT_EMPTY",
|
|
637
|
-
LAST_MONTH = "LAST_MONTH",
|
|
638
|
-
LESS_THAN = "LESS_THAN",
|
|
639
|
-
NEXT_MONTH = "NEXT_MONTH",
|
|
640
|
-
NOT_CLASSIFIED_IN = "NOT_CLASSIFIED_IN",
|
|
641
|
-
NOT_CONTAINS = "NOT_CONTAINS",
|
|
642
|
-
NOT_EQUAL = "NOT_EQUAL",
|
|
643
|
-
START_AFTER = "START_AFTER",
|
|
644
|
-
START_BEFORE = "START_BEFORE",
|
|
645
|
-
START_ON = "START_ON",
|
|
646
|
-
TODAY = "TODAY",
|
|
647
|
-
TOMORROW = "TOMORROW",
|
|
648
|
-
VALUES_COUNT_EQUAL = "VALUES_COUNT_EQUAL",
|
|
649
|
-
VALUES_COUNT_GREATER_THAN = "VALUES_COUNT_GREATER_THAN",
|
|
650
|
-
VALUES_COUNT_LOWER_THAN = "VALUES_COUNT_LOWER_THAN",
|
|
651
|
-
YESTERDAY = "YESTERDAY"
|
|
652
|
-
}
|
|
653
|
-
export type RecordFilterInput = {
|
|
654
|
-
condition?: InputMaybe<RecordFilterCondition>;
|
|
655
|
-
field?: InputMaybe<Scalars['String']['input']>;
|
|
656
|
-
operator?: InputMaybe<RecordFilterOperator>;
|
|
657
|
-
treeId?: InputMaybe<Scalars['String']['input']>;
|
|
658
|
-
value?: InputMaybe<Scalars['String']['input']>;
|
|
659
|
-
withEmptyValues?: InputMaybe<Scalars['Boolean']['input']>;
|
|
660
|
-
};
|
|
661
|
-
export declare enum RecordFilterOperator {
|
|
662
|
-
AND = "AND",
|
|
663
|
-
CLOSE_BRACKET = "CLOSE_BRACKET",
|
|
664
|
-
OPEN_BRACKET = "OPEN_BRACKET",
|
|
665
|
-
OR = "OR"
|
|
666
|
-
}
|
|
667
|
-
export type RecordIdentityConfInput = {
|
|
668
|
-
color?: InputMaybe<Scalars['ID']['input']>;
|
|
669
|
-
label?: InputMaybe<Scalars['ID']['input']>;
|
|
670
|
-
parentContext?: InputMaybe<Scalars['ID']['input']>;
|
|
671
|
-
preview?: InputMaybe<Scalars['ID']['input']>;
|
|
672
|
-
subLabel?: InputMaybe<Scalars['ID']['input']>;
|
|
673
|
-
treeColorPreview?: InputMaybe<Scalars['ID']['input']>;
|
|
674
|
-
};
|
|
675
|
-
export type RecordInput = {
|
|
676
|
-
id: Scalars['ID']['input'];
|
|
677
|
-
library: Scalars['String']['input'];
|
|
678
|
-
};
|
|
679
|
-
export declare enum RecordPermissionsActions {
|
|
680
|
-
access_record = "access_record",
|
|
681
|
-
access_record_by_default = "access_record_by_default",
|
|
682
|
-
create_record = "create_record",
|
|
683
|
-
delete_record = "delete_record",
|
|
684
|
-
edit_record = "edit_record"
|
|
685
|
-
}
|
|
686
|
-
export type RecordSortInput = {
|
|
687
|
-
field: Scalars['String']['input'];
|
|
688
|
-
order: SortOrder;
|
|
689
|
-
};
|
|
690
|
-
export type RecordUpdateFilterInput = {
|
|
691
|
-
ignoreOwnEvents?: InputMaybe<Scalars['Boolean']['input']>;
|
|
692
|
-
libraries?: InputMaybe<Array<Scalars['ID']['input']>>;
|
|
693
|
-
records?: InputMaybe<Array<Scalars['ID']['input']>>;
|
|
694
|
-
};
|
|
695
|
-
export type RecordsPagination = {
|
|
696
|
-
cursor?: InputMaybe<Scalars['String']['input']>;
|
|
697
|
-
limit: Scalars['Int']['input'];
|
|
698
|
-
offset?: InputMaybe<Scalars['Int']['input']>;
|
|
699
|
-
};
|
|
700
|
-
export type ReportFramingAttributeFilterItemInput = {
|
|
701
|
-
attributeId: Scalars['String']['input'];
|
|
702
|
-
values: Array<ReportFramingAttributeFilterValueItemInput>;
|
|
703
|
-
withEmptyValues?: InputMaybe<Scalars['Boolean']['input']>;
|
|
704
|
-
};
|
|
705
|
-
export type ReportFramingAttributeFilterValueItemInput = {
|
|
706
|
-
formattedValue?: InputMaybe<Scalars['String']['input']>;
|
|
707
|
-
rawValue: Scalars['String']['input'];
|
|
708
|
-
};
|
|
709
|
-
export type ReportFramingContentInput = {
|
|
710
|
-
filters?: InputMaybe<ReportFramingFiltersInput>;
|
|
711
|
-
};
|
|
712
|
-
export type ReportFramingFiltersInput = {
|
|
713
|
-
/** only for excel header filter display */
|
|
714
|
-
attributes?: InputMaybe<Array<ReportFramingAttributeFilterItemInput>>;
|
|
715
|
-
campaigns?: InputMaybe<Array<RecordFilterInput>>;
|
|
716
|
-
categories?: InputMaybe<Array<Scalars['String']['input']>>;
|
|
717
|
-
search?: InputMaybe<Scalars['String']['input']>;
|
|
718
|
-
};
|
|
719
|
-
export type SheetInput = {
|
|
720
|
-
keyIndex?: InputMaybe<Scalars['Int']['input']>;
|
|
721
|
-
keyToIndex?: InputMaybe<Scalars['Int']['input']>;
|
|
722
|
-
library: Scalars['String']['input'];
|
|
723
|
-
linkAttribute?: InputMaybe<Scalars['String']['input']>;
|
|
724
|
-
mapping?: InputMaybe<Array<InputMaybe<Scalars['String']['input']>>>;
|
|
725
|
-
mode: ImportMode;
|
|
726
|
-
treeLinkLibrary?: InputMaybe<Scalars['String']['input']>;
|
|
727
|
-
type: ImportType;
|
|
728
|
-
};
|
|
729
|
-
export type SmartFilterConfInput = {
|
|
730
|
-
enable: Scalars['Boolean']['input'];
|
|
731
|
-
};
|
|
732
|
-
export type SortApiKeysInput = {
|
|
733
|
-
field: ApiKeysSortableFields;
|
|
734
|
-
order?: InputMaybe<SortOrder>;
|
|
735
|
-
};
|
|
736
|
-
export type SortApplications = {
|
|
737
|
-
field: ApplicationSortableFields;
|
|
738
|
-
order?: InputMaybe<SortOrder>;
|
|
739
|
-
};
|
|
740
|
-
export type SortAttributes = {
|
|
741
|
-
field: AttributesSortableFields;
|
|
742
|
-
order?: InputMaybe<SortOrder>;
|
|
743
|
-
};
|
|
744
|
-
export type SortForms = {
|
|
745
|
-
field: FormsSortableFields;
|
|
746
|
-
order?: InputMaybe<SortOrder>;
|
|
747
|
-
};
|
|
748
|
-
export type SortLibraries = {
|
|
749
|
-
field: LibrariesSortableFields;
|
|
750
|
-
order?: InputMaybe<SortOrder>;
|
|
751
|
-
};
|
|
752
|
-
export declare enum SortOrder {
|
|
753
|
-
asc = "asc",
|
|
754
|
-
desc = "desc"
|
|
755
|
-
}
|
|
756
|
-
export type SortTrees = {
|
|
757
|
-
field: TreesSortableFields;
|
|
758
|
-
order?: InputMaybe<SortOrder>;
|
|
759
|
-
};
|
|
760
|
-
export type SortVersionProfilesInput = {
|
|
761
|
-
field: VersionProfilesSortableFields;
|
|
762
|
-
order?: InputMaybe<SortOrder>;
|
|
763
|
-
};
|
|
764
|
-
export type TaskFiltersInput = {
|
|
765
|
-
archive?: InputMaybe<Scalars['Boolean']['input']>;
|
|
766
|
-
created_by?: InputMaybe<Scalars['ID']['input']>;
|
|
767
|
-
id?: InputMaybe<Scalars['ID']['input']>;
|
|
768
|
-
status?: InputMaybe<TaskStatus>;
|
|
769
|
-
type?: InputMaybe<TaskType>;
|
|
770
|
-
};
|
|
771
|
-
export declare enum TaskStatus {
|
|
772
|
-
CANCELED = "CANCELED",
|
|
773
|
-
CREATED = "CREATED",
|
|
774
|
-
DONE = "DONE",
|
|
775
|
-
FAILED = "FAILED",
|
|
776
|
-
PENDING = "PENDING",
|
|
777
|
-
PENDING_CANCEL = "PENDING_CANCEL",
|
|
778
|
-
RUNNING = "RUNNING"
|
|
779
|
-
}
|
|
780
|
-
export declare enum TaskType {
|
|
781
|
-
EXPORT = "EXPORT",
|
|
782
|
-
FRAMING_REPORT = "FRAMING_REPORT",
|
|
783
|
-
IMPORT_CONFIG = "IMPORT_CONFIG",
|
|
784
|
-
IMPORT_DATA = "IMPORT_DATA",
|
|
785
|
-
INDEXATION = "INDEXATION",
|
|
786
|
-
PURGE_MULTIPLE_VALUES = "PURGE_MULTIPLE_VALUES",
|
|
787
|
-
RENEW_CAMPAIGNS = "RENEW_CAMPAIGNS",
|
|
788
|
-
SAVE_VALUE_BULK = "SAVE_VALUE_BULK"
|
|
789
|
-
}
|
|
790
|
-
export type ThematicToRenew = {
|
|
791
|
-
campaignId: Scalars['String']['input'];
|
|
792
|
-
thematicId: Scalars['String']['input'];
|
|
793
|
-
};
|
|
794
|
-
export declare enum TreeBehavior {
|
|
795
|
-
files = "files",
|
|
796
|
-
standard = "standard"
|
|
797
|
-
}
|
|
798
|
-
export type TreeElementInput = {
|
|
799
|
-
id: Scalars['ID']['input'];
|
|
800
|
-
library: Scalars['String']['input'];
|
|
801
|
-
};
|
|
802
|
-
export type TreeEventFiltersInput = {
|
|
803
|
-
events?: InputMaybe<Array<TreeEventTypes>>;
|
|
804
|
-
ignoreOwnEvents?: InputMaybe<Scalars['Boolean']['input']>;
|
|
805
|
-
nodes?: InputMaybe<Array<InputMaybe<Scalars['ID']['input']>>>;
|
|
806
|
-
treeId: Scalars['ID']['input'];
|
|
807
|
-
};
|
|
808
|
-
export declare enum TreeEventTypes {
|
|
809
|
-
add = "add",
|
|
810
|
-
move = "move",
|
|
811
|
-
remove = "remove"
|
|
812
|
-
}
|
|
813
|
-
export type TreeInput = {
|
|
814
|
-
behavior?: InputMaybe<TreeBehavior>;
|
|
815
|
-
id: Scalars['ID']['input'];
|
|
816
|
-
label?: InputMaybe<Scalars['SystemTranslation']['input']>;
|
|
817
|
-
libraries?: InputMaybe<Array<TreeLibraryInput>>;
|
|
818
|
-
permissions_conf?: InputMaybe<Array<TreeNodePermissionsConfInput>>;
|
|
819
|
-
settings?: InputMaybe<Scalars['JSONObject']['input']>;
|
|
820
|
-
};
|
|
821
|
-
export type TreeLibraryInput = {
|
|
822
|
-
library: Scalars['ID']['input'];
|
|
823
|
-
settings: TreeLibrarySettingsInput;
|
|
824
|
-
};
|
|
825
|
-
export type TreeLibrarySettingsInput = {
|
|
826
|
-
allowMultiplePositions: Scalars['Boolean']['input'];
|
|
827
|
-
allowedAtRoot: Scalars['Boolean']['input'];
|
|
828
|
-
allowedChildren: Array<Scalars['String']['input']>;
|
|
829
|
-
};
|
|
830
|
-
export type TreeNodePermissionsConfInput = {
|
|
831
|
-
libraryId: Scalars['ID']['input'];
|
|
832
|
-
permissionsConf: TreepermissionsConfInput;
|
|
833
|
-
};
|
|
834
|
-
export type TreePermissionsDependentValuesConfInput = {
|
|
835
|
-
allowByDefault: Scalars['Boolean']['input'];
|
|
836
|
-
dependenciesTreeAttributes: Array<Scalars['ID']['input']>;
|
|
837
|
-
};
|
|
838
|
-
export type TreepermissionsConfInput = {
|
|
839
|
-
permissionTreeAttributes: Array<Scalars['ID']['input']>;
|
|
840
|
-
relation: PermissionsRelation;
|
|
841
|
-
};
|
|
842
|
-
export type TreesFiltersInput = {
|
|
843
|
-
behavior?: InputMaybe<TreeBehavior>;
|
|
844
|
-
id?: InputMaybe<Array<Scalars['ID']['input']>>;
|
|
845
|
-
label?: InputMaybe<Array<Scalars['String']['input']>>;
|
|
846
|
-
library?: InputMaybe<Scalars['String']['input']>;
|
|
847
|
-
system?: InputMaybe<Scalars['Boolean']['input']>;
|
|
848
|
-
};
|
|
849
|
-
export declare enum TreesSortableFields {
|
|
850
|
-
behavior = "behavior",
|
|
851
|
-
id = "id",
|
|
852
|
-
system = "system"
|
|
853
|
-
}
|
|
854
|
-
export type UploadFiltersInput = {
|
|
855
|
-
uid?: InputMaybe<Scalars['String']['input']>;
|
|
856
|
-
userId?: InputMaybe<Scalars['ID']['input']>;
|
|
857
|
-
};
|
|
858
|
-
export declare enum UserCoreDataKeys {
|
|
859
|
-
applications_consultation = "applications_consultation"
|
|
860
|
-
}
|
|
861
|
-
export type ValueBatchInput = {
|
|
862
|
-
attribute?: InputMaybe<Scalars['ID']['input']>;
|
|
863
|
-
id_value?: InputMaybe<Scalars['ID']['input']>;
|
|
864
|
-
metadata?: InputMaybe<Array<InputMaybe<ValueMetadataInput>>>;
|
|
865
|
-
/** Use "\__empty_value__" to set an empty value */
|
|
866
|
-
payload?: InputMaybe<Scalars['String']['input']>;
|
|
867
|
-
};
|
|
868
|
-
export type ValueInput = {
|
|
869
|
-
id_value?: InputMaybe<Scalars['ID']['input']>;
|
|
870
|
-
metadata?: InputMaybe<Array<InputMaybe<ValueMetadataInput>>>;
|
|
871
|
-
/** Use "\__empty_value__" to set an empty value */
|
|
872
|
-
payload?: InputMaybe<Scalars['String']['input']>;
|
|
873
|
-
version?: InputMaybe<Array<InputMaybe<ValueVersionInput>>>;
|
|
874
|
-
};
|
|
875
|
-
export type ValueMetadataInput = {
|
|
876
|
-
name: Scalars['String']['input'];
|
|
877
|
-
value?: InputMaybe<Scalars['String']['input']>;
|
|
878
|
-
};
|
|
879
|
-
export type ValueVersionInput = {
|
|
880
|
-
treeId: Scalars['String']['input'];
|
|
881
|
-
treeNodeId: Scalars['String']['input'];
|
|
882
|
-
};
|
|
883
|
-
export declare enum ValueVersionMode {
|
|
884
|
-
simple = "simple",
|
|
885
|
-
smart = "smart"
|
|
886
|
-
}
|
|
887
|
-
export type ValuesListConfInput = {
|
|
888
|
-
allowFreeEntry?: InputMaybe<Scalars['Boolean']['input']>;
|
|
889
|
-
allowListUpdate?: InputMaybe<Scalars['Boolean']['input']>;
|
|
890
|
-
enable: Scalars['Boolean']['input'];
|
|
891
|
-
values?: InputMaybe<Array<Scalars['String']['input']>>;
|
|
892
|
-
};
|
|
893
|
-
export type ValuesVersionsConfInput = {
|
|
894
|
-
mode?: InputMaybe<ValueVersionMode>;
|
|
895
|
-
profile?: InputMaybe<Scalars['String']['input']>;
|
|
896
|
-
versionable: Scalars['Boolean']['input'];
|
|
897
|
-
};
|
|
898
|
-
export type VersionProfileInput = {
|
|
899
|
-
description?: InputMaybe<Scalars['SystemTranslationOptional']['input']>;
|
|
900
|
-
id: Scalars['String']['input'];
|
|
901
|
-
label?: InputMaybe<Scalars['SystemTranslation']['input']>;
|
|
902
|
-
trees?: InputMaybe<Array<Scalars['String']['input']>>;
|
|
903
|
-
};
|
|
904
|
-
export type VersionProfilesFiltersInput = {
|
|
905
|
-
id?: InputMaybe<Scalars['ID']['input']>;
|
|
906
|
-
label?: InputMaybe<Scalars['String']['input']>;
|
|
907
|
-
trees?: InputMaybe<Scalars['String']['input']>;
|
|
908
|
-
};
|
|
909
|
-
export declare enum VersionProfilesSortableFields {
|
|
910
|
-
id = "id"
|
|
911
|
-
}
|
|
912
|
-
export type ViewDisplayInput = {
|
|
913
|
-
size?: InputMaybe<ViewSizes>;
|
|
914
|
-
type: ViewTypes;
|
|
915
|
-
};
|
|
916
|
-
export type ViewInput = {
|
|
917
|
-
attributes?: InputMaybe<Array<Scalars['String']['input']>>;
|
|
918
|
-
color?: InputMaybe<Scalars['String']['input']>;
|
|
919
|
-
description?: InputMaybe<Scalars['SystemTranslationOptional']['input']>;
|
|
920
|
-
display: ViewDisplayInput;
|
|
921
|
-
filters?: InputMaybe<Array<RecordFilterInput>>;
|
|
922
|
-
id?: InputMaybe<Scalars['String']['input']>;
|
|
923
|
-
label?: InputMaybe<Scalars['SystemTranslation']['input']>;
|
|
924
|
-
library: Scalars['String']['input'];
|
|
925
|
-
shared: Scalars['Boolean']['input'];
|
|
926
|
-
sort?: InputMaybe<Array<RecordSortInput>>;
|
|
927
|
-
valuesVersions?: InputMaybe<Array<ViewValuesVersionInput>>;
|
|
928
|
-
};
|
|
929
|
-
export type ViewInputPartial = {
|
|
930
|
-
attributes?: InputMaybe<Array<Scalars['String']['input']>>;
|
|
931
|
-
color?: InputMaybe<Scalars['String']['input']>;
|
|
932
|
-
description?: InputMaybe<Scalars['SystemTranslationOptional']['input']>;
|
|
933
|
-
display?: InputMaybe<ViewDisplayInput>;
|
|
934
|
-
filters?: InputMaybe<Array<RecordFilterInput>>;
|
|
935
|
-
id: Scalars['String']['input'];
|
|
936
|
-
label?: InputMaybe<Scalars['SystemTranslation']['input']>;
|
|
937
|
-
library?: InputMaybe<Scalars['String']['input']>;
|
|
938
|
-
shared?: InputMaybe<Scalars['Boolean']['input']>;
|
|
939
|
-
sort?: InputMaybe<Array<RecordSortInput>>;
|
|
940
|
-
valuesVersions?: InputMaybe<Array<ViewValuesVersionInput>>;
|
|
941
|
-
};
|
|
942
|
-
export declare enum ViewSizes {
|
|
943
|
-
BIG = "BIG",
|
|
944
|
-
MEDIUM = "MEDIUM",
|
|
945
|
-
SMALL = "SMALL"
|
|
946
|
-
}
|
|
947
|
-
export declare enum ViewTypes {
|
|
948
|
-
cards = "cards",
|
|
949
|
-
list = "list",
|
|
950
|
-
timeline = "timeline"
|
|
951
|
-
}
|
|
952
|
-
export type ViewValuesVersionInput = {
|
|
953
|
-
treeId: Scalars['String']['input'];
|
|
954
|
-
treeNode: Scalars['String']['input'];
|
|
955
|
-
};
|
|
956
|
-
export type SaveValuePayloadFragment = {
|
|
957
|
-
id_value?: string | null;
|
|
958
|
-
payload?: any | null;
|
|
959
|
-
};
|
|
960
|
-
export type SaveLinkValuePayloadFragment = {
|
|
961
|
-
id_value?: string | null;
|
|
962
|
-
linkPayload?: {
|
|
963
|
-
id: string;
|
|
964
|
-
} | null;
|
|
965
|
-
};
|
|
966
|
-
export type SaveTreeValuePayloadFragment = {
|
|
967
|
-
id_value?: string | null;
|
|
968
|
-
treePayload?: {
|
|
969
|
-
id: string;
|
|
970
|
-
} | null;
|
|
971
|
-
};
|
|
972
|
-
export type SaveApiKeyMutationVariables = Exact<{
|
|
973
|
-
apiKey: ApiKeyInput;
|
|
974
|
-
}>;
|
|
975
|
-
export type SaveApiKeyMutation = {
|
|
976
|
-
saveApiKey: {
|
|
977
|
-
id: string;
|
|
978
|
-
label?: string | null;
|
|
979
|
-
key?: string | null;
|
|
980
|
-
expiresAt?: number | null;
|
|
981
|
-
user: {
|
|
982
|
-
id: string;
|
|
983
|
-
};
|
|
984
|
-
};
|
|
985
|
-
};
|
|
986
|
-
export type GetApiKeysQueryVariables = Exact<{
|
|
987
|
-
[key: string]: never;
|
|
988
|
-
}>;
|
|
989
|
-
export type GetApiKeysQuery = {
|
|
990
|
-
apiKeys: {
|
|
991
|
-
list: Array<{
|
|
992
|
-
id: string;
|
|
993
|
-
label?: string | null;
|
|
994
|
-
key?: string | null;
|
|
995
|
-
expiresAt?: number | null;
|
|
996
|
-
user: {
|
|
997
|
-
id: string;
|
|
998
|
-
};
|
|
999
|
-
}>;
|
|
1000
|
-
};
|
|
1001
|
-
};
|
|
1002
|
-
export type DeleteApiKeyMutationVariables = Exact<{
|
|
1003
|
-
id: Scalars['String']['input'];
|
|
1004
|
-
}>;
|
|
1005
|
-
export type DeleteApiKeyMutation = {
|
|
1006
|
-
deleteApiKey: {
|
|
1007
|
-
id: string;
|
|
1008
|
-
};
|
|
1009
|
-
};
|
|
1010
|
-
export type SaveAttributeMutationVariables = Exact<{
|
|
1011
|
-
attribute?: InputMaybe<AttributeInput>;
|
|
1012
|
-
}>;
|
|
1013
|
-
export type SaveAttributeMutation = {
|
|
1014
|
-
saveAttribute: {
|
|
1015
|
-
id: string;
|
|
1016
|
-
};
|
|
1017
|
-
};
|
|
1018
|
-
export type MeQueryVariables = Exact<{
|
|
1019
|
-
[key: string]: never;
|
|
1020
|
-
}>;
|
|
1021
|
-
export type MeQuery = {
|
|
1022
|
-
me?: {
|
|
1023
|
-
id: string;
|
|
1024
|
-
} | null;
|
|
1025
|
-
};
|
|
1026
|
-
export type GetRecordsLinkValuesPropertyQueryVariables = Exact<{
|
|
1027
|
-
library: Scalars['ID']['input'];
|
|
1028
|
-
filters?: InputMaybe<Array<InputMaybe<RecordFilterInput>> | InputMaybe<RecordFilterInput>>;
|
|
1029
|
-
retrieveInactive?: InputMaybe<Scalars['Boolean']['input']>;
|
|
1030
|
-
attribute: Scalars['ID']['input'];
|
|
1031
|
-
}>;
|
|
1032
|
-
export type GetRecordsLinkValuesPropertyQuery = {
|
|
1033
|
-
records: {
|
|
1034
|
-
list: Array<{
|
|
1035
|
-
id: string;
|
|
1036
|
-
active: boolean;
|
|
1037
|
-
whoAmI: {
|
|
1038
|
-
library: {
|
|
1039
|
-
id: string;
|
|
1040
|
-
};
|
|
1041
|
-
};
|
|
1042
|
-
property: Array<{
|
|
1043
|
-
id_value?: string | null;
|
|
1044
|
-
linkPayload?: {
|
|
1045
|
-
id: string;
|
|
1046
|
-
} | null;
|
|
1047
|
-
} | {
|
|
1048
|
-
id_value?: string | null;
|
|
1049
|
-
}>;
|
|
1050
|
-
}>;
|
|
1051
|
-
};
|
|
1052
|
-
};
|
|
1053
|
-
export type SaveLibraryMutationVariables = Exact<{
|
|
1054
|
-
library?: InputMaybe<LibraryInput>;
|
|
1055
|
-
}>;
|
|
1056
|
-
export type SaveLibraryMutation = {
|
|
1057
|
-
saveLibrary: {
|
|
1058
|
-
id: string;
|
|
1059
|
-
};
|
|
1060
|
-
};
|
|
1061
|
-
export type DeleteLibraryMutationVariables = Exact<{
|
|
1062
|
-
id?: InputMaybe<Scalars['ID']['input']>;
|
|
1063
|
-
}>;
|
|
1064
|
-
export type DeleteLibraryMutation = {
|
|
1065
|
-
deleteLibrary: {
|
|
1066
|
-
id: string;
|
|
1067
|
-
};
|
|
1068
|
-
};
|
|
1069
|
-
export type GetRecordQueryVariables = Exact<{
|
|
1070
|
-
libraryId: Scalars['ID']['input'];
|
|
1071
|
-
recordId: Scalars['String']['input'];
|
|
1072
|
-
}>;
|
|
1073
|
-
export type GetRecordQuery = {
|
|
1074
|
-
records: {
|
|
1075
|
-
list: Array<{
|
|
1076
|
-
id: string;
|
|
1077
|
-
modified_at: number;
|
|
1078
|
-
}>;
|
|
1079
|
-
};
|
|
1080
|
-
};
|
|
1081
|
-
export type CreateRecordMutationVariables = Exact<{
|
|
1082
|
-
library: Scalars['ID']['input'];
|
|
1083
|
-
data?: InputMaybe<CreateRecordDataInput>;
|
|
1084
|
-
}>;
|
|
1085
|
-
export type CreateRecordMutation = {
|
|
1086
|
-
createRecord: {
|
|
1087
|
-
valuesErrors?: Array<{
|
|
1088
|
-
attribute: string;
|
|
1089
|
-
input?: string | null;
|
|
1090
|
-
message: string;
|
|
1091
|
-
type: string;
|
|
1092
|
-
}> | null;
|
|
1093
|
-
record?: {
|
|
1094
|
-
id: string;
|
|
1095
|
-
} | null;
|
|
1096
|
-
};
|
|
1097
|
-
};
|
|
1098
|
-
export type DeleteRecordMutationVariables = Exact<{
|
|
1099
|
-
id?: InputMaybe<Scalars['ID']['input']>;
|
|
1100
|
-
library?: InputMaybe<Scalars['ID']['input']>;
|
|
1101
|
-
}>;
|
|
1102
|
-
export type DeleteRecordMutation = {
|
|
1103
|
-
deleteRecord: {
|
|
1104
|
-
id: string;
|
|
1105
|
-
};
|
|
1106
|
-
};
|
|
1107
|
-
export type PurgeInactiveRecordsMutationVariables = Exact<{
|
|
1108
|
-
libraryId: Scalars['String']['input'];
|
|
1109
|
-
}>;
|
|
1110
|
-
export type PurgeInactiveRecordsMutation = {
|
|
1111
|
-
purgeInactiveRecords: Array<{
|
|
1112
|
-
id: string;
|
|
1113
|
-
}>;
|
|
1114
|
-
};
|
|
1115
|
-
export type SaveTreeMutationVariables = Exact<{
|
|
1116
|
-
tree: TreeInput;
|
|
1117
|
-
}>;
|
|
1118
|
-
export type SaveTreeMutation = {
|
|
1119
|
-
saveTree: {
|
|
1120
|
-
id: string;
|
|
1121
|
-
};
|
|
1122
|
-
};
|
|
1123
|
-
export type TreeAddElementMutationVariables = Exact<{
|
|
1124
|
-
treeId: Scalars['ID']['input'];
|
|
1125
|
-
element: TreeElementInput;
|
|
1126
|
-
parent?: InputMaybe<Scalars['ID']['input']>;
|
|
1127
|
-
order?: InputMaybe<Scalars['Int']['input']>;
|
|
1128
|
-
}>;
|
|
1129
|
-
export type TreeAddElementMutation = {
|
|
1130
|
-
treeAddElement: {
|
|
1131
|
-
id: string;
|
|
1132
|
-
};
|
|
1133
|
-
};
|
|
1134
|
-
export type SaveValueBatchMutationVariables = Exact<{
|
|
1135
|
-
library?: InputMaybe<Scalars['ID']['input']>;
|
|
1136
|
-
recordId?: InputMaybe<Scalars['ID']['input']>;
|
|
1137
|
-
values?: InputMaybe<Array<InputMaybe<ValueBatchInput>> | InputMaybe<ValueBatchInput>>;
|
|
1138
|
-
deleteEmpty?: InputMaybe<Scalars['Boolean']['input']>;
|
|
1139
|
-
}>;
|
|
1140
|
-
export type SaveValueBatchMutation = {
|
|
1141
|
-
saveValueBatch: {
|
|
1142
|
-
errors?: Array<{
|
|
1143
|
-
attribute: string;
|
|
1144
|
-
input?: string | null;
|
|
1145
|
-
message: string;
|
|
1146
|
-
type: string;
|
|
1147
|
-
}> | null;
|
|
1148
|
-
values?: Array<{
|
|
1149
|
-
id_value?: string | null;
|
|
1150
|
-
linkPayload?: {
|
|
1151
|
-
id: string;
|
|
1152
|
-
} | null;
|
|
1153
|
-
} | {
|
|
1154
|
-
id_value?: string | null;
|
|
1155
|
-
treePayload?: {
|
|
1156
|
-
id: string;
|
|
1157
|
-
} | null;
|
|
1158
|
-
} | {
|
|
1159
|
-
payload?: any | null;
|
|
1160
|
-
id_value?: string | null;
|
|
1161
|
-
}> | null;
|
|
1162
|
-
};
|
|
1163
|
-
};
|
|
1164
|
-
export type DeleteValueMutationVariables = Exact<{
|
|
1165
|
-
library: Scalars['ID']['input'];
|
|
1166
|
-
recordId: Scalars['ID']['input'];
|
|
1167
|
-
attribute: Scalars['ID']['input'];
|
|
1168
|
-
value?: InputMaybe<ValueInput>;
|
|
1169
|
-
}>;
|
|
1170
|
-
export type DeleteValueMutation = {
|
|
1171
|
-
deleteValue: Array<{
|
|
1172
|
-
id_value?: string | null;
|
|
1173
|
-
linkPayload?: {
|
|
1174
|
-
id: string;
|
|
1175
|
-
} | null;
|
|
1176
|
-
} | {
|
|
1177
|
-
id_value?: string | null;
|
|
1178
|
-
treePayload?: {
|
|
1179
|
-
id: string;
|
|
1180
|
-
} | null;
|
|
1181
|
-
} | {
|
|
1182
|
-
payload?: any | null;
|
|
1183
|
-
id_value?: string | null;
|
|
1184
|
-
}>;
|
|
1185
|
-
};
|
|
1186
|
-
export declare const SaveValuePayloadFragmentDoc: import("graphql").DocumentNode;
|
|
1187
|
-
export declare const SaveLinkValuePayloadFragmentDoc: import("graphql").DocumentNode;
|
|
1188
|
-
export declare const SaveTreeValuePayloadFragmentDoc: import("graphql").DocumentNode;
|
|
1189
|
-
export declare const SaveApiKeyDocument: import("graphql").DocumentNode;
|
|
1190
|
-
export declare const GetApiKeysDocument: import("graphql").DocumentNode;
|
|
1191
|
-
export declare const DeleteApiKeyDocument: import("graphql").DocumentNode;
|
|
1192
|
-
export declare const SaveAttributeDocument: import("graphql").DocumentNode;
|
|
1193
|
-
export declare const MeDocument: import("graphql").DocumentNode;
|
|
1194
|
-
export declare const GetRecordsLinkValuesPropertyDocument: import("graphql").DocumentNode;
|
|
1195
|
-
export declare const SaveLibraryDocument: import("graphql").DocumentNode;
|
|
1196
|
-
export declare const DeleteLibraryDocument: import("graphql").DocumentNode;
|
|
1197
|
-
export declare const GetRecordDocument: import("graphql").DocumentNode;
|
|
1198
|
-
export declare const CreateRecordDocument: import("graphql").DocumentNode;
|
|
1199
|
-
export declare const DeleteRecordDocument: import("graphql").DocumentNode;
|
|
1200
|
-
export declare const PurgeInactiveRecordsDocument: import("graphql").DocumentNode;
|
|
1201
|
-
export declare const SaveTreeDocument: import("graphql").DocumentNode;
|
|
1202
|
-
export declare const TreeAddElementDocument: import("graphql").DocumentNode;
|
|
1203
|
-
export declare const SaveValueBatchDocument: import("graphql").DocumentNode;
|
|
1204
|
-
export declare const DeleteValueDocument: import("graphql").DocumentNode;
|
|
1205
|
-
export type SdkFunctionWrapper = <T>(action: (requestHeaders?: Record<string, string>) => Promise<T>, operationName: string, operationType?: string, variables?: any) => Promise<T>;
|
|
1206
|
-
export declare function getSdk(client: GraphQLClient, withWrapper?: SdkFunctionWrapper): {
|
|
1207
|
-
SaveApiKey(variables: SaveApiKeyMutationVariables, requestHeaders?: GraphQLClientRequestHeaders, signal?: RequestInit["signal"]): Promise<SaveApiKeyMutation>;
|
|
1208
|
-
GetApiKeys(variables?: GetApiKeysQueryVariables, requestHeaders?: GraphQLClientRequestHeaders, signal?: RequestInit["signal"]): Promise<GetApiKeysQuery>;
|
|
1209
|
-
DeleteApiKey(variables: DeleteApiKeyMutationVariables, requestHeaders?: GraphQLClientRequestHeaders, signal?: RequestInit["signal"]): Promise<DeleteApiKeyMutation>;
|
|
1210
|
-
SaveAttribute(variables?: SaveAttributeMutationVariables, requestHeaders?: GraphQLClientRequestHeaders, signal?: RequestInit["signal"]): Promise<SaveAttributeMutation>;
|
|
1211
|
-
Me(variables?: MeQueryVariables, requestHeaders?: GraphQLClientRequestHeaders, signal?: RequestInit["signal"]): Promise<MeQuery>;
|
|
1212
|
-
GetRecordsLinkValuesProperty(variables: GetRecordsLinkValuesPropertyQueryVariables, requestHeaders?: GraphQLClientRequestHeaders, signal?: RequestInit["signal"]): Promise<GetRecordsLinkValuesPropertyQuery>;
|
|
1213
|
-
SaveLibrary(variables?: SaveLibraryMutationVariables, requestHeaders?: GraphQLClientRequestHeaders, signal?: RequestInit["signal"]): Promise<SaveLibraryMutation>;
|
|
1214
|
-
DeleteLibrary(variables?: DeleteLibraryMutationVariables, requestHeaders?: GraphQLClientRequestHeaders, signal?: RequestInit["signal"]): Promise<DeleteLibraryMutation>;
|
|
1215
|
-
GetRecord(variables: GetRecordQueryVariables, requestHeaders?: GraphQLClientRequestHeaders, signal?: RequestInit["signal"]): Promise<GetRecordQuery>;
|
|
1216
|
-
CreateRecord(variables: CreateRecordMutationVariables, requestHeaders?: GraphQLClientRequestHeaders, signal?: RequestInit["signal"]): Promise<CreateRecordMutation>;
|
|
1217
|
-
DeleteRecord(variables?: DeleteRecordMutationVariables, requestHeaders?: GraphQLClientRequestHeaders, signal?: RequestInit["signal"]): Promise<DeleteRecordMutation>;
|
|
1218
|
-
PurgeInactiveRecords(variables: PurgeInactiveRecordsMutationVariables, requestHeaders?: GraphQLClientRequestHeaders, signal?: RequestInit["signal"]): Promise<PurgeInactiveRecordsMutation>;
|
|
1219
|
-
SaveTree(variables: SaveTreeMutationVariables, requestHeaders?: GraphQLClientRequestHeaders, signal?: RequestInit["signal"]): Promise<SaveTreeMutation>;
|
|
1220
|
-
TreeAddElement(variables: TreeAddElementMutationVariables, requestHeaders?: GraphQLClientRequestHeaders, signal?: RequestInit["signal"]): Promise<TreeAddElementMutation>;
|
|
1221
|
-
SaveValueBatch(variables?: SaveValueBatchMutationVariables, requestHeaders?: GraphQLClientRequestHeaders, signal?: RequestInit["signal"]): Promise<SaveValueBatchMutation>;
|
|
1222
|
-
DeleteValue(variables: DeleteValueMutationVariables, requestHeaders?: GraphQLClientRequestHeaders, signal?: RequestInit["signal"]): Promise<DeleteValueMutation>;
|
|
1223
|
-
};
|
|
1224
|
-
export type Sdk = ReturnType<typeof getSdk>;
|
|
1225
|
-
export {};
|