├── .build ├── ory │ ├── kratos │ │ ├── courier-templates │ │ │ ├── recovery │ │ │ │ ├── invalid │ │ │ │ │ ├── email.body.gotmpl │ │ │ │ │ ├── email.body.plaintext.gotmpl │ │ │ │ │ └── email.subject.gotmpl │ │ │ │ └── valid │ │ │ │ │ ├── email.body.gotmpl │ │ │ │ │ ├── email.body.plaintext.gotmpl │ │ │ │ │ └── email.subject.gotmpl │ │ │ ├── recovery_code │ │ │ │ ├── invalid │ │ │ │ │ ├── email.body.gotmpl │ │ │ │ │ ├── email.body.plaintext.gotmpl │ │ │ │ │ └── email.subject.gotmpl │ │ │ │ └── valid │ │ │ │ │ ├── email.body.gotmpl │ │ │ │ │ ├── email.body.plaintext.gotmpl │ │ │ │ │ └── email.subject.gotmpl │ │ │ ├── verification │ │ │ │ ├── invalid │ │ │ │ │ ├── email.body.gotmpl │ │ │ │ │ ├── email.body.plaintext.gotmpl │ │ │ │ │ └── email.subject.gotmpl │ │ │ │ └── valid │ │ │ │ │ ├── email.body.gotmpl │ │ │ │ │ ├── email.body.plaintext.gotmpl │ │ │ │ │ └── email.subject.gotmpl │ │ │ └── verification_code │ │ │ │ ├── invalid │ │ │ │ ├── email.body.gotmpl │ │ │ │ ├── email.body.plaintext.gotmpl │ │ │ │ └── email.subject.gotmpl │ │ │ │ └── valid │ │ │ │ ├── email.body.gotmpl │ │ │ │ ├── email.body.plaintext.gotmpl │ │ │ │ └── email.subject.gotmpl │ │ ├── identity.schema.json │ │ ├── kratos.yml │ │ └── oidc │ │ │ ├── oidc.github.jsonnet │ │ │ ├── oidc.linkedin.jsonnet │ │ │ └── oidc.microsoft.jsonnet │ └── oathkeeper │ │ ├── access-rules.yml │ │ ├── id_token.jwks.json │ │ └── oathkeeper.yml ├── postgres │ ├── entrypoint-wrapper.sh │ └── init-multiple-databases.sh ├── synapse │ ├── alkemio.matrix.host.log.config │ ├── alkemio.matrix.host.signing.key │ ├── homeserver.yaml │ ├── log.config │ └── media_store │ │ └── README.md └── traefik │ ├── http.yml │ └── traefik.yml ├── .coderabbit.yaml ├── .dockerignore ├── .editorconfig ├── .env.docker ├── .gitattributes ├── .github ├── CODEOWNERS ├── ISSUE_TEMPLATE │ ├── bug_report.md │ ├── epic.md │ ├── feature_request.md │ └── user_story.md ├── PULL_REQUEST_TEMPLATE.md ├── config.yml ├── copilot-instructions.md ├── instructions │ └── sonarqube_mcp.instructions.md ├── prompts │ ├── alkemio.pr.prompt.md │ ├── speckit.analyze.prompt.md │ ├── speckit.checklist.prompt.md │ ├── speckit.clarify.prompt.md │ ├── speckit.constitution.prompt.md │ ├── speckit.implement.prompt.md │ ├── speckit.plan.prompt.md │ ├── speckit.specify.prompt.md │ └── speckit.tasks.prompt.md ├── stale.yml └── workflows │ ├── PR_REVIEW_METRICS.md │ ├── build-deploy-k8s-dev-hetzner.yml │ ├── build-deploy-k8s-sandbox-hetzner.yml │ ├── build-deploy-k8s-test-hetzner.yml │ ├── build-release-docker-hub-new.yml │ ├── build-release-docker-hub.yml │ ├── review-router.yml │ ├── review_metrics │ ├── review_metrics.py │ └── test_review_metrics.py │ ├── schema-baseline.yml │ ├── schema-contract.yml │ ├── scripts │ └── schema-gate.ts │ ├── trigger-e2e-tests.yml │ └── trigger-sonarqube.yml ├── .gitignore ├── .lintstagedrc.json ├── .npmignore ├── .npmrc ├── .prettierignore ├── .prettierrc ├── .scripts ├── backups │ ├── .env.sample │ ├── README.md │ ├── recreate_databases.sh │ ├── restore_latest_backup.sh │ ├── restore_latest_backup_set.sh │ └── utils │ │ ├── check_dependencies.sh │ │ ├── configure_aws.sh │ │ ├── detect_os.sh │ │ ├── install_aws.sh │ │ └── manage_database.sh ├── bootstrap_synapse.sh ├── create_db.sh ├── migrations │ ├── .env.sample │ ├── README-postgres-migration.md │ ├── README.md │ ├── compare_sql_tables.sh │ ├── create_snapshot.sh │ ├── create_synapse_snapshot.sh │ ├── db │ │ └── reference_schema.sql │ ├── export_to_csv.sh │ ├── import_from_csv.sh │ ├── mysql-to-postgres-transform.sh │ ├── postgres-convergence │ │ ├── README.md │ │ ├── export_alkemio_mysql_to_csv.sh │ │ ├── export_kratos_mysql_to_csv.sh │ │ ├── import_csv_to_postgres_alkemio.sh │ │ ├── import_csv_to_postgres_kratos.sh │ │ └── log_migration_run.sh │ ├── restore_snapshot.sh │ ├── restore_snapshot_documents.sh │ ├── restore_synapse_snapshot.sh │ ├── run_validate_migration.sh │ └── test.sql ├── rename.sh ├── schema.sql └── tests │ └── recreate-db.ts ├── .sonarlint └── connectedMode.json ├── .specify ├── memory │ └── constitution.md ├── scripts │ └── bash │ │ ├── check-prerequisites.sh │ │ ├── common.sh │ │ ├── create-new-feature.sh │ │ ├── setup-plan.sh │ │ └── update-agent-context.sh └── templates │ ├── agent-file-template.md │ ├── checklist-template.md │ ├── plan-template.md │ ├── spec-template.md │ └── tasks-template.md ├── .travis.yml ├── .vscode ├── extensions.json ├── launch.json ├── mcp.json ├── settings.json └── tasks.json ├── Dockerfile ├── LICENSE ├── README.md ├── agents.md ├── alkemio.yml ├── contract-tests ├── change-report.contract.spec.ts ├── deprecation-registry.contract.spec.ts ├── schema-baseline.contract.spec.ts ├── schema.contract.spec.ts ├── schema.parity.spec.ts └── schema.performance.spec.ts ├── docs ├── AI.md ├── DataManagement.md ├── Design.md ├── Developing.md ├── Guest-Users.md ├── Notifications.md ├── Pagination.md ├── PublishingImages.md ├── QA.md ├── Running.md ├── Templates.md ├── authentication │ ├── authentication_flow.md │ └── authentication_flow.svg ├── authorization-forest.md ├── credential-based-authorization.md ├── database-definitions.md ├── diagrams │ ├── .$templates.drawio.bkp │ ├── alkemio-server-layer-diagram.drawio │ ├── alkemio-services-networking.drawio │ ├── login-session-extend-flow │ └── templates.drawio ├── event-bus-testing.md ├── graphql-typeorm-usage.md ├── how-to-add-activity.md ├── images │ ├── alkemio-pagination-design.svg │ ├── alkemio-server-design.png │ ├── alkemio-server-layer-diagram.png │ ├── alkemio-services-networking.png │ ├── login-session-extend-flow.png │ ├── pagination-efficiency.png │ ├── pagination-time-complexity.png │ ├── templates-domain.png │ └── templates-platform.png ├── notification-entity-fk-mapping.ods ├── rabbitmq-connection-stubbing-implementation.md └── search │ ├── Search.md │ ├── ingest-detailed-design.svg │ ├── search-detailed-design.svg │ └── search-high-level-system-design.svg ├── eslint.config.js ├── graphql-samples ├── admin │ ├── authorization │ │ ├── users-authorization-privileges │ │ └── users-with-authorization-credential │ └── communication │ │ ├── communication-ensure-communication-access │ │ ├── communication-membership │ │ ├── communication-remove-orphaned-room │ │ └── communication-rooms-join-rule ├── mutations │ ├── authorization │ │ ├── assign-user-as-global-admin │ │ ├── assign-user-as-organization-admin │ │ ├── assign-user-as-organization-owner │ │ ├── assign-user-to-organization │ │ ├── grant-credential-to-user │ │ ├── reset-authorization-all │ │ ├── reset-authorization-on-account │ │ ├── reset-authorization-on-organization │ │ ├── reset-authorization-on-platform │ │ ├── reset-authorization-on-space │ │ ├── reset-authorization-on-user │ │ └── revoke-credential-from-user │ ├── communication │ │ ├── add-message-reaction-in-room │ │ ├── create-discussion-on-communication │ │ ├── message-user │ │ ├── remove-message │ │ ├── remove-message-reaction-in-room │ │ ├── send-community-leads-message │ │ ├── send-message │ │ ├── send-message-reply-to-room │ │ ├── send-message-to-room │ │ ├── send-organization-message │ │ ├── send-user-message │ │ └── update-discussion │ ├── convert │ │ ├── convert-challenge-to-space │ │ └── convert-opportunity-to-challenge │ ├── create │ │ ├── community-membership-application │ │ ├── community-membership-invitation │ │ ├── community-membership-invitation-external │ │ ├── community-membership-join │ │ ├── create-account │ │ ├── create-actor │ │ ├── create-actor-group │ │ ├── create-callout-on-collaboration │ │ ├── create-callout-template │ │ ├── create-callout-whiteboard-rt │ │ ├── create-community-guidelines-template │ │ ├── create-contribution-post-on-callout │ │ ├── create-contribution-whiteboard-on-callout │ │ ├── create-event-on-calendar │ │ ├── create-feedback-on-community-context │ │ ├── create-innovation-flow-template │ │ ├── create-innovation-hub │ │ ├── create-innovation-pack-on-library │ │ ├── create-license-plan │ │ ├── create-organization │ │ ├── create-post-template │ │ ├── create-project │ │ ├── create-reference-on-context │ │ ├── create-reference-on-post │ │ ├── create-reference-on-profile │ │ ├── create-subspace │ │ ├── create-tagset-on-profile │ │ ├── create-user │ │ ├── create-user-group-on-community │ │ ├── create-virtual-contributor │ │ ├── create-virtual-persona │ │ └── create-whiteboard-template │ ├── delete │ │ ├── delete-actor │ │ ├── delete-actor-group │ │ ├── delete-callout │ │ ├── delete-canvas │ │ ├── delete-collaboration │ │ ├── delete-community-application │ │ ├── delete-community-guidelines-template │ │ ├── delete-community-invitation │ │ ├── delete-discussion │ │ ├── delete-document │ │ ├── delete-innovation-flow-template │ │ ├── delete-innovation-hub │ │ ├── delete-innovation-pack │ │ ├── delete-organization │ │ ├── delete-post │ │ ├── delete-post-template │ │ ├── delete-reference │ │ ├── delete-space │ │ ├── delete-user │ │ ├── delete-user-group │ │ └── delete-whiteboard-template │ └── update │ │ ├── assign-community-role-to-organization │ │ ├── assign-community-role-to-user │ │ ├── assign-community-role-to-virtual │ │ ├── assign-user-to-group │ │ ├── event-on-community-application │ │ ├── event-on-community-invitation │ │ ├── event-on-organization-verification │ │ ├── event-on-project │ │ ├── remove-community-role-from-organization │ │ ├── remove-community-role-from-user │ │ ├── remove-user-from-group │ │ ├── update-account-platform-settings │ │ ├── update-actor │ │ ├── update-callout │ │ ├── update-callout-publish-info │ │ ├── update-callout-visibility │ │ ├── update-callouts-sort-order │ │ ├── update-community-application-form │ │ ├── update-ecosystem-model │ │ ├── update-event-on-calendar │ │ ├── update-innovation-flow-lifecycle-template │ │ ├── update-innovation-flow-template │ │ ├── update-innovation-hub │ │ ├── update-innovation-hub-platform-settings │ │ ├── update-organization │ │ ├── update-post │ │ ├── update-post-template │ │ ├── update-profile │ │ ├── update-space │ │ ├── update-user │ │ ├── update-user-group │ │ ├── update-visual │ │ ├── update-whiteboard │ │ ├── update-whiteboard-template │ │ └── upload-avatar ├── queries │ ├── activity │ │ └── activity-by-collaboration │ ├── config │ │ ├── auth-providers │ │ ├── full-config │ │ └── template-config │ ├── configuration-template │ ├── pagination │ │ └── users-paginated │ ├── roles-organization │ ├── roles-user │ ├── roles-user-visibilities │ ├── search │ │ ├── simple-search │ │ ├── simple-search-card │ │ ├── simple-search-filtered │ │ ├── simple-search-space │ │ └── simple-search-tagsets │ ├── spaces-visibility │ ├── storage │ │ ├── organization-storage-bucket │ │ └── space-challenge-storage-bucket │ └── users-filtered └── subscriptions │ ├── calendarEventMessageReceived │ ├── calloutAspectCreated │ ├── calloutMessageReceived │ ├── challengeCreated │ ├── communicationDiscussionMessageReceived │ ├── communicationDiscussionUpdated │ ├── communicationUpdateMessageReceived │ ├── opportunityCreated │ └── profileVerifiedCredential ├── manifests ├── 25-server-deployment-dev.yaml ├── 26-server-migration.yaml └── 30-server-service.yaml ├── nest-cli.json ├── package.json ├── pnpm-lock.yaml ├── quickstart-services-ai-debug.yml ├── quickstart-services-ai.yml ├── quickstart-services-kratos-debug.yml ├── quickstart-services.yml ├── schema-baseline.graphql ├── schema-lite.graphql ├── schema.graphql ├── scripts ├── db │ └── reset-postgres.sh ├── git │ └── replicate-pr.sh └── schema │ ├── README.md │ ├── diff-schema.ts │ ├── generate-schema.snapshot.ts │ ├── post-pr-comment.ts │ ├── publish-baseline.ts │ └── schema-gate.ts ├── sonar-project.properties ├── specs ├── 001-create-a-new │ ├── diagrams │ │ ├── conversion-sequence.mmd │ │ └── interaction-diagram.md │ ├── externalServiceInterface.md │ └── spec.md ├── 001-memo-collection-contribution │ ├── IMPLEMENTATION_LOG.md │ ├── README.md │ ├── checklists │ │ └── requirements.md │ ├── contracts │ │ └── memo-contribution.graphql.md │ ├── data-model.md │ ├── plan.md │ ├── quickstart.md │ ├── research.md │ ├── spec.md │ └── tasks.md ├── 001-toggle-whiteboard-guest │ ├── checklists │ │ └── requirements.md │ ├── contracts │ │ └── updateWhiteboardGuestAccess.graphql │ ├── data-model.md │ ├── plan.md │ ├── quickstart.md │ ├── research.md │ ├── spec.md │ └── tasks.md ├── 002-schema-contract-diffing │ ├── README.md │ ├── contracts │ │ ├── change-report.schema.json │ │ ├── deprecation-registry.schema.json │ │ └── deprecations.schema.json │ ├── coverage-fr-mapping.md │ ├── coverage.md │ ├── data-model.md │ ├── diagrams │ │ ├── ClassificationFlow.png │ │ ├── CoverageMatrix.png │ │ ├── DeprecationDecisionTree.png │ │ ├── GovernanceOverrides.png │ │ ├── classification-flow.puml │ │ ├── coverage-matrix.puml │ │ ├── deprecation-decision-tree.puml │ │ └── governance-overrides.puml │ ├── metrics-rollout.md │ ├── plan.md │ ├── quickstart.md │ ├── research.md │ ├── spec.md │ └── tasks.md ├── 003-domain-event-standard │ └── spec.md ├── 004-testing-foundation-restoration │ └── spec.md ├── 005-governance-pr-template │ └── spec.md ├── 006-observability-correlation-metrics │ └── spec.md ├── 007-definition-of-done-formalization │ └── spec.md ├── 008-integration-resilience-policies │ └── spec.md ├── 009-domain-modeling-formalism │ └── spec.md ├── 010-deprecation-workflow-enforcement │ └── spec.md ├── 010-synapse-kratos-oidc │ ├── IMPLEMENTATION_SUMMARY.md │ ├── PROGRESS_SUMMARY.md │ ├── README.md │ ├── analysis.md │ ├── environment-variables.md │ ├── plan.md │ ├── quickstart.md │ ├── spec.md │ ├── tasks.md │ └── tests │ │ ├── T012b-token-validation-test.md │ │ ├── T020c-e2e-oauth2-flow-test.md │ │ ├── T033-logging-summary.md │ │ ├── T033b-account-deletion-propagation-test.md │ │ └── US4-account-linking-summary.md ├── 011-clarify-override-semantics │ └── spec.md ├── 012-generate-schema-baseline │ ├── checklists │ │ ├── requirements.md │ │ └── security.md │ ├── contracts │ │ └── change-report.schema.json │ ├── data-model.md │ ├── plan.md │ ├── quickstart.md │ ├── research.md │ ├── spec.md │ └── tasks.md ├── 012-oidc-golang-service │ ├── contracts │ │ ├── openapi.yaml │ │ └── tests │ │ │ ├── consent_contract_test.go │ │ │ ├── health_contract_test.go │ │ │ └── login_contract_test.go │ ├── data-model.md │ ├── plan.md │ ├── quickstart.md │ ├── research.md │ ├── spec.md │ └── tasks.md ├── 013-guest-contributions-policy │ ├── plan.md │ ├── spec.md │ └── tasks.md ├── 013-timeline-comment-notification │ ├── BREAKING_CHANGE_createdBy.md │ ├── COMMIT_MESSAGE.md │ ├── IMPLEMENTATION_SUMMARY.md │ ├── PR_DESCRIPTION.md │ ├── SCOPE_CHANGE.md │ ├── checklists │ │ └── requirements.md │ ├── contracts │ │ └── graphql-schema.md │ ├── data-model.md │ ├── plan.md │ ├── quickstart.md │ ├── research.md │ ├── spec.md │ ├── tasks-status.json │ └── tasks.md ├── 014-callouts-tag-cloud │ ├── IMPLEMENTATION_VERIFICATION.md │ ├── checklists │ │ └── requirements.md │ ├── contracts │ │ └── callouts-set-tags.graphql.md │ ├── data-model.md │ ├── plan.md │ ├── quickstart.md │ ├── research.md │ ├── spec.md │ └── tasks.md ├── 014-guest-contributions-privileges │ ├── checklists │ │ └── requirements.md │ ├── contracts │ │ └── service-contracts.md │ ├── data-model.md │ ├── plan.md │ ├── quickstart.md │ ├── research.md │ ├── spec.md │ └── tasks.md ├── 014-user-owned-conversations │ ├── plan.md │ └── spec.md ├── 015-sonarqube-analysis │ ├── checklists │ │ └── requirements.md │ ├── data-model.md │ ├── plan.md │ ├── quickstart.md │ ├── research.md │ ├── spec.md │ └── tasks.md ├── 016-notification-email-blacklist │ ├── checklists │ │ └── requirements.md │ ├── contracts │ │ └── notification-email-blacklist.graphql │ ├── data-model.md │ ├── plan.md │ ├── quickstart.md │ ├── research.md │ ├── spec.md │ └── tasks.md ├── 017-postgres-db-convergence │ ├── IMPLEMENTATION_SUMMARY.md │ ├── checklists │ │ └── requirements.md │ ├── contracts │ │ └── postgres-migration-contract.md │ ├── data-model.md │ ├── plan.md │ ├── quickstart.md │ ├── research.md │ ├── spec.md │ └── tasks.md └── 018-postgres-db-convergence │ ├── checklists │ └── requirements.md │ ├── data-model.md │ ├── plan.md │ ├── quickstart.md │ ├── research.md │ ├── spec.md │ ├── tasks.md │ └── verification-checklist.md ├── src ├── apm │ ├── apm.ts │ ├── decorators │ │ ├── index.ts │ │ ├── instrument.resolver.decorator.ts │ │ ├── instrument.service.decorator.ts │ │ └── util │ │ │ ├── copy.metadata.ts │ │ │ ├── createInstrumentedClassDecorator.ts │ │ │ ├── index.ts │ │ │ └── instrument.method.ts │ ├── index.ts │ └── plugins │ │ ├── apm.apollo.plugin.ts │ │ └── index.ts ├── app.controller.spec.ts ├── app.controller.ts ├── app.module.ts ├── common │ ├── app.id.provider.ts │ ├── constants │ │ ├── authorization │ │ │ ├── credential.rule.constants.ts │ │ │ ├── credential.rule.types.constants.ts │ │ │ ├── global.policy.constants.ts │ │ │ ├── index.ts │ │ │ └── policy.rule.constants.ts │ │ ├── communication.constants.ts │ │ ├── default.space.constants.ts │ │ ├── entity.field.length.constants.ts │ │ ├── index.ts │ │ ├── innovation.hub.inject.token.ts │ │ ├── providers.ts │ │ └── rabbitmq.constants.ts │ ├── decorators │ │ ├── authorization.agent.privilege.ts │ │ ├── current-user.decorator.ts │ │ ├── headers.decorator.ts │ │ ├── index.ts │ │ ├── innovation.hub.decoration.ts │ │ ├── profiling.decorator.ts │ │ └── typed.subscription │ │ │ ├── index.ts │ │ │ ├── subscription.resolve.context.ts │ │ │ ├── typed.subscription.decorator.ts │ │ │ └── typed.subscription.options.ts │ ├── enums │ │ ├── account.role.ts │ │ ├── account.type.ts │ │ ├── activity.event.type.ts │ │ ├── agent.type.ts │ │ ├── ai.persona.engine.ts │ │ ├── ai.persona.invocation.operation.ts │ │ ├── ai.server.authorization.privilege.ts │ │ ├── ai.server.role.ts │ │ ├── alkemio.error.status.ts │ │ ├── authentication.provider.ts │ │ ├── authentication.type.ts │ │ ├── authorization.credential.global.ts │ │ ├── authorization.credential.ts │ │ ├── authorization.policy.type.ts │ │ ├── authorization.privilege.ts │ │ ├── authorization.verified.credential.ts │ │ ├── calendar.event.type.ts │ │ ├── callout.allowed.contributors.ts │ │ ├── callout.contribution.type.ts │ │ ├── callout.framing.type.ts │ │ ├── callout.visibility.ts │ │ ├── callouts.set.type.ts │ │ ├── communication.conversation.type.ts │ │ ├── community.membership.policy.ts │ │ ├── community.membership.status.ts │ │ ├── content.update.policy.ts │ │ ├── credential.type.ts │ │ ├── discussions.orderBy.ts │ │ ├── forum.discussion.category.ts │ │ ├── forum.discussion.privacy.ts │ │ ├── identity.verification.status.filter.ts │ │ ├── index.ts │ │ ├── innovation.packs.orderBy.ts │ │ ├── license.entitlement.data.type.ts │ │ ├── license.entitlement.type.ts │ │ ├── license.type.ts │ │ ├── licensing.credential.based.credential.type.ts │ │ ├── licensing.credential.based.plan.type.ts │ │ ├── licensing.wingback.subscription.feature.name.ts │ │ ├── logging.context.ts │ │ ├── messaging.queue.ts │ │ ├── mime.file.type.document.ts │ │ ├── mime.file.type.ts │ │ ├── mime.file.type.visual.ts │ │ ├── notification.event.category.ts │ │ ├── notification.event.in.app.state.ts │ │ ├── notification.event.payload.ts │ │ ├── notification.event.ts │ │ ├── organization.verification.ts │ │ ├── platform.feature.flag.name.ts │ │ ├── profile.type.ts │ │ ├── rest.endpoint.ts │ │ ├── restricted.space.names.ts │ │ ├── role.name.ts │ │ ├── role.set.contributor.type.ts │ │ ├── role.set.invitation.result.type.ts │ │ ├── role.set.role.implicit.ts │ │ ├── role.set.type.ts │ │ ├── role.set.update.type.ts │ │ ├── room.type.ts │ │ ├── search.visibility.ts │ │ ├── space.level.ts │ │ ├── space.privacy.mode.ts │ │ ├── space.visibility.ts │ │ ├── storage.aggregator.type.ts │ │ ├── subscription.type.ts │ │ ├── subscriptions │ │ │ ├── index.ts │ │ │ └── mutation.type.ts │ │ ├── tagset.reserved.name.ts │ │ ├── tagset.type.ts │ │ ├── template.default.type.ts │ │ ├── template.type.ts │ │ ├── url.path.base.ts │ │ ├── url.path.element.space.ts │ │ ├── url.path.element.ts │ │ ├── url.type.ts │ │ ├── virtual.contributor.body.of.knowledge.type.ts │ │ ├── virtual.contributor.data.access.mode.ts │ │ ├── virtual.contributor.interaction.mode.ts │ │ ├── virtual.contributor.model.card.entry.flag.name.ts │ │ ├── virtual.contributor.model.card.entry.ts │ │ ├── virtual.contributor.status.enum.ts │ │ ├── virtual.contributor.well.known.ts │ │ ├── visual.type.ts │ │ └── whiteboard.preview.mode.ts │ ├── exceptions │ │ ├── account.exception.ts │ │ ├── auth │ │ │ ├── api.restricted.access.exception.ts │ │ │ ├── bearer.token.not.found.exception.ts │ │ │ ├── index.ts │ │ │ ├── login.flow.exception.ts │ │ │ ├── login.flow.initialize.exception.ts │ │ │ └── session.extend.exception.ts │ │ ├── authentication.exception.ts │ │ ├── authorization.invalid.policy.exception.ts │ │ ├── base.exception.ts │ │ ├── bootstrap.exception.ts │ │ ├── callout │ │ │ └── callout.closed.exception.ts │ │ ├── communication │ │ │ ├── communication.timed.out.exception.ts │ │ │ └── index.ts │ │ ├── data-loader │ │ │ ├── data.loader.creator.init.error.ts │ │ │ ├── data.loader.init.error.ts │ │ │ ├── data.loader.interceptor.not.provided.ts │ │ │ ├── data.loader.not.provided.ts │ │ │ └── index.ts │ │ ├── document │ │ │ ├── document.delete.failed.exception.ts │ │ │ ├── document.read.failed.exception.ts │ │ │ └── document.save.failed.exception.ts │ │ ├── entity.not.found.exception.ts │ │ ├── entity.not.initialized.exception.ts │ │ ├── exception.details.ts │ │ ├── forbidden.authorization.policy.exception.ts │ │ ├── forbidden.exception.ts │ │ ├── forbidden.license.policy.exception.ts │ │ ├── format.not.supported.exception.ts │ │ ├── forum.discussion.category.exception.ts │ │ ├── geo.location.exception.ts │ │ ├── geo │ │ │ ├── geo.service.error.exception.ts │ │ │ ├── geo.service.not.available.exception.ts │ │ │ ├── geo.service.request.limit.exceeded.exception.ts │ │ │ └── index.ts │ │ ├── group.not.initialized.exception.ts │ │ ├── http │ │ │ ├── bad.request.http.exception.ts │ │ │ ├── base.http.exception.ts │ │ │ ├── forbidden.http.exception.ts │ │ │ ├── index.ts │ │ │ └── not.found.http.exception.ts │ │ ├── index.ts │ │ ├── internal │ │ │ ├── base.exception.internal.ts │ │ │ ├── index.ts │ │ │ ├── retry.exception.ts │ │ │ └── timeout.exception.ts │ │ ├── invalid.state.tranistion.exception.ts │ │ ├── invalid.template.type.exception.ts │ │ ├── invalid.uuid.ts │ │ ├── license.entitlement.not.available.exception.ts │ │ ├── license.entitlement.not.supported.ts │ │ ├── license.not.found.exception.ts │ │ ├── matrix.entity.not.found.exception.ts │ │ ├── messaging.not.enabled.exception.ts │ │ ├── mime.type.not.found.exception.ts │ │ ├── not.enabled.exception.ts │ │ ├── not.supported.exception.ts │ │ ├── notification.event.exception.ts │ │ ├── operation.not.allowed.exception.ts │ │ ├── pagination │ │ │ ├── index.ts │ │ │ ├── pagination.input.out.of.bounds.exception.ts │ │ │ ├── pagination.not.found.exception.ts │ │ │ └── pagination.parameter.not.found.exception.ts │ │ ├── registration.exception.ts │ │ ├── relationship.not.found.exception.ts │ │ ├── role.set.invitation.exception.ts │ │ ├── role.set.membership.exception.ts │ │ ├── role.set.policy.role.limits.exception.ts │ │ ├── session.expired.exception.ts │ │ ├── storage.aggregator.not.found.exception.ts │ │ ├── storage.bucket.not.found.exception.ts │ │ ├── storage │ │ │ ├── index.ts │ │ │ ├── local-storage │ │ │ │ ├── local.storage.delete.failed.exception.ts │ │ │ │ ├── local.storage.read.failed.exception.ts │ │ │ │ └── local.storage.save.failed.exception.ts │ │ │ ├── storage.disabled.exception.ts │ │ │ └── storage.upload.failed.exception.ts │ │ ├── subscription.user.not.authenticated.ts │ │ ├── subscription │ │ │ ├── index.ts │ │ │ └── unable.to.subscribe.exception.ts │ │ ├── tagset.not.found.exception.ts │ │ ├── user │ │ │ ├── index.ts │ │ │ ├── user.identity.deletion.exception.ts │ │ │ ├── user.identity.not.found.exception.ts │ │ │ ├── user.not.verified.exception.ts │ │ │ ├── user.registered.exception.ts │ │ │ └── user.registration.invalid.email.ts │ │ └── validation.exception.ts │ ├── interceptors │ │ ├── index.ts │ │ └── innovation.hub.interceptor.ts │ ├── interfaces │ │ ├── base.subscription.payload.interface.ts │ │ ├── communication.message.payload.interface.ts │ │ ├── excalidraw.content.type.ts │ │ ├── groupable.interface.ts │ │ ├── index.ts │ │ ├── lifecycle.definition.interface.ts │ │ └── redis.interfaces.ts │ ├── pipes │ │ ├── index.ts │ │ └── validation.pipe.ts │ └── utils │ │ ├── array.random.element.ts │ │ ├── async.filter.ts │ │ ├── async.map.sequential.ts │ │ ├── async.map.ts │ │ ├── async.reduce.sequential.ts │ │ ├── async.reduce.ts │ │ ├── base64.to.buffer.ts │ │ ├── calculate.buffer.hash.ts │ │ ├── compare.enums.ts │ │ ├── compression.util.spec.ts │ │ ├── compression.util.ts │ │ ├── convert-to-entity │ │ ├── convert.to.entity.ts │ │ └── index.ts │ │ ├── email.util.ts │ │ ├── file.util.ts │ │ ├── get-differences │ │ ├── get.diff.spec.ts │ │ ├── get.diff.ts │ │ └── index.ts │ │ ├── get.session.ts │ │ ├── has-allowed-allowed-fields │ │ ├── has.only.allowed.fields.spec.ts │ │ ├── has.only.allowed.fields.ts │ │ └── index.ts │ │ ├── image.util.ts │ │ ├── index.ts │ │ ├── is.defined.ts │ │ ├── limitAndShuffle.ts │ │ ├── path.resolve.ts │ │ ├── random.id.generator.util.ts │ │ ├── random.util.ts │ │ ├── string.util.ts │ │ ├── stringify.util.ts │ │ └── untildify.ts ├── config │ ├── aliases.ts │ ├── config.utils.spec.ts │ ├── config.utils.ts │ ├── configuration.ts │ ├── dynamic.import.ts │ ├── fix.uuid.column.type.ts │ ├── graphql │ │ ├── config.ts │ │ ├── index.ts │ │ ├── me.ts │ │ ├── metadata.ts │ │ └── spaces.ts │ ├── index.ts │ ├── migration.config.ts │ ├── migration.create.config.ts │ ├── typeorm.cli.config.run.ts │ ├── typeorm.cli.config.ts │ └── winston.config.ts ├── core │ ├── authentication.agent.info │ │ ├── agent.info.cache.service.ts │ │ ├── agent.info.metadata.ts │ │ ├── agent.info.module.ts │ │ ├── agent.info.service.ts │ │ └── agent.info.ts │ ├── authentication │ │ ├── authentication.module.ts │ │ ├── authentication.service.spec.ts │ │ ├── authentication.service.ts │ │ ├── constants.ts │ │ ├── index.ts │ │ ├── ory.api.strategy.ts │ │ ├── ory.strategy.ts │ │ ├── strategy.names.ts │ │ └── verify.identity.if.oidc.auth.ts │ ├── authorization │ │ ├── authorization.module.ts │ │ ├── authorization.policy.rule.credential.interface.ts │ │ ├── authorization.policy.rule.credential.ts │ │ ├── authorization.policy.rule.privilege.interface.ts │ │ ├── authorization.policy.rule.privilege.ts │ │ ├── authorization.rule.agent.privilege.ts │ │ ├── authorization.service.spec.ts │ │ ├── authorization.service.ts │ │ ├── graphql.guard.ts │ │ ├── index.ts │ │ └── rest.guard.ts │ ├── bootstrap │ │ ├── bootstrap.module.ts │ │ ├── bootstrap.service.spec.ts │ │ ├── bootstrap.service.ts │ │ ├── index.ts │ │ └── platform-template-definitions │ │ │ ├── default-templates │ │ │ ├── bootstrap.template.space.content.callouts.space.l0.tutorials.ts │ │ │ ├── bootstrap.template.space.content.callouts.vc.knowledge.base.ts │ │ │ ├── bootstrap.template.space.content.space.l0.ts │ │ │ └── bootstrap.template.space.content.subspace.ts │ │ │ ├── license-plan │ │ │ └── license-plans.json │ │ │ └── user │ │ │ └── users.json │ ├── dataloader │ │ ├── creators │ │ │ ├── base │ │ │ │ ├── data.loader.creator.base.options.ts │ │ │ │ ├── data.loader.creator.limit.options.ts │ │ │ │ ├── data.loader.creator.options.ts │ │ │ │ ├── data.loader.creator.pagination.options.ts │ │ │ │ ├── data.loader.creator.ts │ │ │ │ └── index.ts │ │ │ ├── index.ts │ │ │ ├── loader.creator.module.ts │ │ │ └── loader.creators │ │ │ │ ├── account │ │ │ │ ├── account.innovation.hubs.loader.creator.ts │ │ │ │ ├── account.innovation.pack.loader.creator.ts │ │ │ │ ├── account.loader.creator.ts │ │ │ │ ├── account.spaces.loader.creator.ts │ │ │ │ └── account.virtual.contributors.loader.creator.ts │ │ │ │ ├── agent.loader.creator.ts │ │ │ │ ├── authorization.loader.creator.ts │ │ │ │ ├── callout-framing │ │ │ │ └── callout.framing.whiteboard.loader.ts │ │ │ │ ├── classification.tagsets.loader.creator.ts │ │ │ │ ├── collaboration │ │ │ │ ├── collaboration.callouts.set.loader.creator.ts │ │ │ │ ├── collaboration.timeline.loader.creator.ts │ │ │ │ └── knowledge.base.callouts.set.loader.creator.ts │ │ │ │ ├── community │ │ │ │ ├── organization.storage.aggregator.loader.creator.ts │ │ │ │ └── user.storage.aggregator.loader.creator.ts │ │ │ │ ├── in-app-notification │ │ │ │ ├── calendar.event.loader.creator.ts │ │ │ │ ├── callout.loader.creator.ts │ │ │ │ ├── community.type.loader.creator.ts │ │ │ │ ├── contributor.loader.creator.ts │ │ │ │ └── space.loader.creator.ts │ │ │ │ ├── index.ts │ │ │ │ ├── license.loader.creator.ts │ │ │ │ ├── organization.loader.creator.ts │ │ │ │ ├── profile.loader.creator.ts │ │ │ │ ├── profile │ │ │ │ ├── profile.avatars.loader.creator.ts │ │ │ │ ├── profile.location.loader.creator.ts │ │ │ │ ├── profile.references.loader.creator.ts │ │ │ │ ├── profile.storage.bucket.loader.creator.ts │ │ │ │ └── profile.tagsets.loader.creator.ts │ │ │ │ ├── roleset.application.loader.creator.ts │ │ │ │ ├── space │ │ │ │ ├── space.about.loader.creator.ts │ │ │ │ ├── space.collaboration.loader.creator.ts │ │ │ │ └── space.community.loader.creator.ts │ │ │ │ ├── user.loader.creator.ts │ │ │ │ ├── user │ │ │ │ └── user.settings.loader.creator.ts │ │ │ │ └── visual.loader.creator.ts │ │ ├── data.loader.inject.token.ts │ │ ├── decorators │ │ │ ├── data.loader.decorator.ts │ │ │ └── index.ts │ │ ├── interceptors │ │ │ ├── data.loader.context.entry.ts │ │ │ ├── data.loader.interceptor.ts │ │ │ └── index.ts │ │ ├── loader.interface.ts │ │ └── utils │ │ │ ├── createTypedBatchLoader.ts │ │ │ ├── createTypedRelationLoader.ts │ │ │ ├── createTypedSimpleLoader.ts │ │ │ ├── find.by.batch.options.ts │ │ │ ├── findByBatchIds.ts │ │ │ ├── findByBatchIdsSimple.ts │ │ │ ├── index.ts │ │ │ ├── selectOptionsFromFields.ts │ │ │ └── sort.output.by.keys.ts │ ├── error-handling │ │ ├── graphql.exception.filter.ts │ │ ├── http.exception.filter.ts │ │ ├── index.ts │ │ ├── rest.error.response.ts │ │ └── unhandled.exception.filter.ts │ ├── filtering │ │ ├── filter.fn.ts │ │ ├── filter.fn.where.expression.ts │ │ ├── filters │ │ │ ├── index.ts │ │ │ ├── organizationFilter.ts │ │ │ └── userFilter.ts │ │ ├── index.ts │ │ └── input-types │ │ │ ├── index.ts │ │ │ ├── organization.filter.input.ts │ │ │ └── user.filter.input.ts │ ├── interceptors │ │ ├── auth.interceptor.ts │ │ └── index.ts │ ├── microservices │ │ ├── client.proxy.factory.ts │ │ ├── index.ts │ │ ├── microservices.module.ts │ │ ├── subscription.factory.provider.ts │ │ └── subscription.factory.ts │ ├── middleware │ │ ├── favicon.middleware.ts │ │ ├── index.ts │ │ ├── request.logger.middleware.ts │ │ └── session.extend.middleware.ts │ ├── pagination │ │ ├── index.ts │ │ ├── paginated.in-app-notification.ts │ │ ├── paginated.organization.ts │ │ ├── paginated.space.ts │ │ ├── paginated.type.ts │ │ ├── paginated.user.ts │ │ ├── paginated.virtual.contributor.ts │ │ ├── pagination.args.ts │ │ ├── pagination.fn.ts │ │ ├── relay.style.paginated.type.ts │ │ ├── relay.style.pagination.fn.ts │ │ └── validate.pagination.args.ts │ └── validation │ │ ├── excalidraw │ │ ├── excalidraw.schema.simple.json │ │ └── validateExcalidrawContent.ts │ │ ├── handlers │ │ ├── base │ │ │ ├── abstract.handler.ts │ │ │ ├── base.handler.ts │ │ │ ├── handler.interface.ts │ │ │ └── index.ts │ │ └── index.ts │ │ ├── index.ts │ │ ├── subdomain.regex.ts │ │ └── xstate │ │ ├── machine.schema.json │ │ ├── machine.schema.simple.json │ │ └── validateMachineDefinition.ts ├── domain │ ├── access │ │ ├── application │ │ │ ├── application.entity.ts │ │ │ ├── application.interface.ts │ │ │ ├── application.module.ts │ │ │ ├── application.resolver.fields.lifecycle.ts │ │ │ ├── application.resolver.fields.ts │ │ │ ├── application.resolver.mutations.ts │ │ │ ├── application.service.authorization.ts │ │ │ ├── application.service.lifecycle.ts │ │ │ ├── application.service.ts │ │ │ ├── dto │ │ │ │ ├── application.dto.create.ts │ │ │ │ ├── application.dto.delete.ts │ │ │ │ └── application.dto.event.ts │ │ │ └── index.ts │ │ ├── invitation.platform │ │ │ ├── dto │ │ │ │ ├── platform.invitation.dto.create.ts │ │ │ │ ├── platform.invitation.dto.delete.ts │ │ │ │ ├── platform.invitation.dto.global.role.ts │ │ │ │ └── platform.invitations.dto.create.ts │ │ │ ├── index.ts │ │ │ ├── platform.invitation.entity.ts │ │ │ ├── platform.invitation.interface.ts │ │ │ ├── platform.invitation.module.ts │ │ │ ├── platform.invitation.resolver.fields.ts │ │ │ ├── platform.invitation.resolver.mutations.ts │ │ │ ├── platform.invitation.service.authorization.ts │ │ │ └── platform.invitation.service.ts │ │ ├── invitation │ │ │ ├── dto │ │ │ │ ├── invitation.dto.create.ts │ │ │ │ ├── invitation.dto.delete.ts │ │ │ │ └── invitation.dto.event.ts │ │ │ ├── index.ts │ │ │ ├── invitation.entity.ts │ │ │ ├── invitation.interface.ts │ │ │ ├── invitation.module.ts │ │ │ ├── invitation.resolver.fields.lifecycle.ts │ │ │ ├── invitation.resolver.fields.ts │ │ │ ├── invitation.resolver.mutations.ts │ │ │ ├── invitation.service.authorization.ts │ │ │ ├── invitation.service.lifecycle.ts │ │ │ └── invitation.service.ts │ │ ├── platform-roles-access │ │ │ ├── platform.roles.access.interface.ts │ │ │ ├── platform.roles.access.module.ts │ │ │ ├── platform.roles.access.role.interface.ts │ │ │ └── platform.roles.access.service.ts │ │ ├── role-set │ │ │ ├── dto │ │ │ │ ├── role.set.contributors.in.roles.interfaces.ts │ │ │ │ ├── role.set.dto.create.ts │ │ │ │ ├── role.set.dto.entry.role.apply.ts │ │ │ │ ├── role.set.dto.entry.role.invite.ts │ │ │ │ ├── role.set.dto.entry.role.join.ts │ │ │ │ ├── role.set.dto.role.assign.organization.ts │ │ │ │ ├── role.set.dto.role.assign.user.ts │ │ │ │ ├── role.set.dto.role.assign.virtual.ts │ │ │ │ ├── role.set.dto.role.remove.organization.ts │ │ │ │ ├── role.set.dto.role.remove.user.ts │ │ │ │ ├── role.set.dto.role.remove.virtual.ts │ │ │ │ ├── role.set.dto.role.selection.credentials.ts │ │ │ │ ├── role.set.dto.role.with.parent.credentials.ts │ │ │ │ ├── role.set.dto.update.application.form.ts │ │ │ │ └── role.set.invitation.result.ts │ │ │ ├── index.ts │ │ │ ├── role.set.data.loader.membership.status.ts │ │ │ ├── role.set.data.loaders.agent.roles.ts │ │ │ ├── role.set.entity.ts │ │ │ ├── role.set.interface.ts │ │ │ ├── role.set.module.ts │ │ │ ├── role.set.resolver.fields.public.ts │ │ │ ├── role.set.resolver.fields.ts │ │ │ ├── role.set.resolver.mutations.membership.ts │ │ │ ├── role.set.resolver.mutations.spec.ts │ │ │ ├── role.set.resolver.mutations.ts │ │ │ ├── role.set.service.authorization.ts │ │ │ ├── role.set.service.cache.module.ts │ │ │ ├── role.set.service.cache.ts │ │ │ ├── role.set.service.events.ts │ │ │ ├── role.set.service.license.ts │ │ │ ├── role.set.service.lifecycle.application.ts │ │ │ ├── role.set.service.lifecycle.invitation.ts │ │ │ ├── role.set.service.spec.ts │ │ │ ├── role.set.service.ts │ │ │ └── types │ │ │ │ ├── agent.role.key.ts │ │ │ │ ├── index.ts │ │ │ │ └── roleset.community.membership.status.ts │ │ └── role │ │ │ ├── contributor.role.policy.interface.ts │ │ │ ├── contributor.role.policy.ts │ │ │ ├── dto │ │ │ └── role.dto.create.ts │ │ │ ├── role.entity.ts │ │ │ ├── role.interface.ts │ │ │ ├── role.module.ts │ │ │ ├── role.resolver.fields.ts │ │ │ └── role.service.ts │ ├── activity-feed │ │ ├── activity.feed.grouped.query.args.ts │ │ ├── activity.feed.interface.ts │ │ ├── activity.feed.module.ts │ │ ├── activity.feed.query.args.ts │ │ ├── activity.feed.resolver.queries.ts │ │ ├── activity.feed.roles.enum.ts │ │ ├── activity.feed.service.spec.ts │ │ ├── activity.feed.service.ts │ │ └── index.ts │ ├── agent │ │ ├── agent │ │ │ ├── agent.entity.ts │ │ │ ├── agent.interface.ts │ │ │ ├── agent.module.ts │ │ │ ├── agent.service.authorization.ts │ │ │ ├── agent.service.ts │ │ │ ├── dto │ │ │ │ ├── agent.dto.create.ts │ │ │ │ ├── agent.dto.credential.grant.ts │ │ │ │ └── agent.dto.credential.revoke.ts │ │ │ └── index.ts │ │ ├── credential │ │ │ ├── credential.definition.interface.ts │ │ │ ├── credential.definition.ts │ │ │ ├── credential.entity.ts │ │ │ ├── credential.interface.ts │ │ │ ├── credential.module.ts │ │ │ ├── credential.resolver.fields.ts │ │ │ ├── credential.service.ts │ │ │ ├── dto │ │ │ │ ├── credential.dto.create.ts │ │ │ │ └── credentials.dto.search.ts │ │ │ └── index.ts │ │ └── index.ts │ ├── agents.md │ ├── collaboration │ │ ├── callout-contribution-defaults │ │ │ ├── callout.contribution.defaults.entity.ts │ │ │ ├── callout.contribution.defaults.interface.ts │ │ │ ├── callout.contribution.defaults.module.ts │ │ │ ├── callout.contribution.defaults.service.ts │ │ │ └── dto │ │ │ │ ├── callout.contribution.defaults.dto.create.ts │ │ │ │ ├── callout.contribution.defaults.dto.update.ts │ │ │ │ └── index.ts │ │ ├── callout-contribution │ │ │ ├── callout.contribution.entity.ts │ │ │ ├── callout.contribution.interface.ts │ │ │ ├── callout.contribution.module.ts │ │ │ ├── callout.contribution.move.module.ts │ │ │ ├── callout.contribution.move.resolver.mutations.ts │ │ │ ├── callout.contribution.move.service.ts │ │ │ ├── callout.contribution.resolver.fields.ts │ │ │ ├── callout.contribution.service.authorization.ts │ │ │ ├── callout.contribution.service.ts │ │ │ └── dto │ │ │ │ ├── callout.contribution.dto.create.ts │ │ │ │ ├── callout.contribution.dto.delete.ts │ │ │ │ ├── callout.contribution.dto.move.ts │ │ │ │ ├── callout.contribution.dto.update.callouts.sort.order.ts │ │ │ │ └── index.ts │ │ ├── callout-framing │ │ │ ├── callout.framing.entity.ts │ │ │ ├── callout.framing.interface.ts │ │ │ ├── callout.framing.module.ts │ │ │ ├── callout.framing.resolver.fields.ts │ │ │ ├── callout.framing.service.authorization.ts │ │ │ ├── callout.framing.service.ts │ │ │ └── dto │ │ │ │ ├── callout.framing.dto.create.ts │ │ │ │ ├── callout.framing.dto.update.ts │ │ │ │ └── index.ts │ │ ├── callout-settings │ │ │ ├── callout.settings.contribution.interface.ts │ │ │ ├── callout.settings.default.ts │ │ │ ├── callout.settings.framing.interface.ts │ │ │ ├── callout.settings.interface.ts │ │ │ └── dto │ │ │ │ ├── callout.settings.contribution.dto.create.ts │ │ │ │ ├── callout.settings.contribution.dto.update.ts │ │ │ │ ├── callout.settings.dto.create.ts │ │ │ │ ├── callout.settings.dto.update.ts │ │ │ │ ├── callout.settings.framing.dto.create.ts │ │ │ │ ├── callout.settings.framing.dto.update.ts │ │ │ │ └── index.ts │ │ ├── callout-transfer │ │ │ ├── callout.transfer.module.ts │ │ │ ├── callout.transfer.resolver.mutations.ts │ │ │ ├── callout.transfer.service.ts │ │ │ └── dto │ │ │ │ └── callouts.set.dto.transfer.callout.ts │ │ ├── callout │ │ │ ├── callout.entity.ts │ │ │ ├── callout.interface.ts │ │ │ ├── callout.module.ts │ │ │ ├── callout.resolver.fields.ts │ │ │ ├── callout.resolver.mutations.ts │ │ │ ├── callout.resolver.subscriptions.ts │ │ │ ├── callout.service.authorization.ts │ │ │ ├── callout.service.ts │ │ │ └── dto │ │ │ │ ├── callout.args.post.created.ts │ │ │ │ ├── callout.contributions.count.dto.ts │ │ │ │ ├── callout.dto.create.contribution.ts │ │ │ │ ├── callout.dto.create.ts │ │ │ │ ├── callout.dto.delete.ts │ │ │ │ ├── callout.dto.event.post.created.ts │ │ │ │ ├── callout.dto.message.created.ts │ │ │ │ ├── callout.dto.update.entity.ts │ │ │ │ ├── callout.dto.update.publish.info.ts │ │ │ │ ├── callout.dto.update.ts │ │ │ │ ├── callout.dto.update.visibility.ts │ │ │ │ ├── callout.post.created.payload.ts │ │ │ │ ├── contributions.filter.ts │ │ │ │ └── index.ts │ │ ├── callouts-set │ │ │ ├── callouts.set.entity.ts │ │ │ ├── callouts.set.interface.ts │ │ │ ├── callouts.set.module.ts │ │ │ ├── callouts.set.resolver.fields.ts │ │ │ ├── callouts.set.resolver.mutations.ts │ │ │ ├── callouts.set.service.authorization.ts │ │ │ ├── callouts.set.service.ts │ │ │ └── dto │ │ │ │ ├── callouts.set.args.callouts.ts │ │ │ │ ├── callouts.set.args.tags.ts │ │ │ │ ├── callouts.set.dto.create.callout.ts │ │ │ │ ├── callouts.set.dto.create.ts │ │ │ │ └── callouts.set.dto.update.callouts.sort.order.ts │ │ ├── collaboration │ │ │ ├── collaboration.entity.ts │ │ │ ├── collaboration.interface.ts │ │ │ ├── collaboration.module.ts │ │ │ ├── collaboration.resolver.fields.ts │ │ │ ├── collaboration.service.authorization.ts │ │ │ ├── collaboration.service.license.ts │ │ │ ├── collaboration.service.ts │ │ │ ├── dto │ │ │ │ ├── collaboration.dto.create.ts │ │ │ │ ├── collaboration.dto.delete.ts │ │ │ │ └── index.ts │ │ │ └── index.ts │ │ ├── innovation-flow-settings │ │ │ └── innovation.flow.settings.interface.ts │ │ ├── innovation-flow-state-settings │ │ │ ├── dto │ │ │ │ ├── innovation.flow.state.settings.dto.create.ts │ │ │ │ └── innovation.flow.state.settings.dto.update.ts │ │ │ └── innovation.flow.settings.interface.ts │ │ ├── innovation-flow-state │ │ │ ├── dto │ │ │ │ ├── index.ts │ │ │ │ ├── innovation.flow.state.dto.create.ts │ │ │ │ └── innovation.flow.state.dto.update.ts │ │ │ ├── innovation.flow.state.entity.ts │ │ │ ├── innovation.flow.state.interface.ts │ │ │ ├── innovation.flow.state.module.ts │ │ │ ├── innovation.flow.state.service.authorization.ts │ │ │ ├── innovation.flow.state.service.ts │ │ │ └── utils │ │ │ │ └── sortBySortOrder.ts │ │ ├── innovation-flow │ │ │ ├── dto │ │ │ │ ├── index.ts │ │ │ │ ├── innovation.flow.dto.create.ts │ │ │ │ ├── innovation.flow.dto.state.create.ts │ │ │ │ ├── innovation.flow.dto.state.delete.ts │ │ │ │ ├── innovation.flow.dto.state.select.ts │ │ │ │ ├── innovation.flow.dto.update.states.sort.order.ts │ │ │ │ └── innovation.flow.dto.update.ts │ │ │ ├── innovation.flow.entity.ts │ │ │ ├── innovation.flow.interface.ts │ │ │ ├── innovation.flow.module.ts │ │ │ ├── innovation.flow.resolver.fields.ts │ │ │ ├── innovation.flow.resolver.mutations.ts │ │ │ ├── innovation.flow.service.authorization.ts │ │ │ ├── innovation.flow.service.spec.ts │ │ │ └── innovation.flow.service.ts │ │ ├── link │ │ │ ├── dto │ │ │ │ ├── index.ts │ │ │ │ ├── link.dto.create.ts │ │ │ │ ├── link.dto.delete.ts │ │ │ │ └── link.dto.update.ts │ │ │ ├── link.entity.ts │ │ │ ├── link.interface.ts │ │ │ ├── link.module.ts │ │ │ ├── link.resolver.fields.ts │ │ │ ├── link.resolver.mutations.ts │ │ │ ├── link.resolver.spec.ts │ │ │ ├── link.service.authorization.ts │ │ │ └── link.service.ts │ │ └── post │ │ │ ├── dto │ │ │ ├── post.dto.create.ts │ │ │ ├── post.dto.delete.ts │ │ │ ├── post.dto.move.ts │ │ │ └── post.dto.update.ts │ │ │ ├── index.ts │ │ │ ├── post.entity.ts │ │ │ ├── post.interface.ts │ │ │ ├── post.module.ts │ │ │ ├── post.resolver.fields.ts │ │ │ ├── post.resolver.mutations.ts │ │ │ ├── post.resolver.spec.ts │ │ │ ├── post.service.authorization.ts │ │ │ └── post.service.ts │ ├── common │ │ ├── authorization-policy │ │ │ ├── authorization.policy.entity.ts │ │ │ ├── authorization.policy.interface.ts │ │ │ ├── authorization.policy.module.ts │ │ │ ├── authorization.policy.resolver.fields.ts │ │ │ ├── authorization.policy.service.ts │ │ │ └── index.ts │ │ ├── classification │ │ │ ├── classification.entity.ts │ │ │ ├── classification.interface.ts │ │ │ ├── classification.module.ts │ │ │ ├── classification.resolver.fields.ts │ │ │ ├── classification.resolver.mutations.ts │ │ │ ├── classification.service.authorization.ts │ │ │ ├── classification.service.ts │ │ │ └── dto │ │ │ │ ├── classification.dto.create.ts │ │ │ │ ├── classification.dto.update.select.tagset.value.ts │ │ │ │ └── classification.dto.update.ts │ │ ├── entity │ │ │ ├── authorizable-entity │ │ │ │ ├── authorizable.entity.ts │ │ │ │ ├── authorizable.interface.ts │ │ │ │ └── index.ts │ │ │ ├── base-entity │ │ │ │ ├── base.alkemio.entity.ts │ │ │ │ ├── base.alkemio.interface.ts │ │ │ │ ├── dto │ │ │ │ │ ├── base.alkemio.dto.delete.ts │ │ │ │ │ └── base.alkemio.dto.update.ts │ │ │ │ └── index.ts │ │ │ └── nameable-entity │ │ │ │ ├── dto │ │ │ │ ├── nameable.dto.create.ts │ │ │ │ └── nameable.dto.update.ts │ │ │ │ ├── index.ts │ │ │ │ ├── nameable.entity.ts │ │ │ │ └── nameable.interface.ts │ │ ├── form │ │ │ ├── dto │ │ │ │ ├── form.dto.create.ts │ │ │ │ ├── form.dto.update.ts │ │ │ │ ├── form.question.dto.create.ts │ │ │ │ └── form.question.dto.update.ts │ │ │ ├── form.dto.question.interface.ts │ │ │ ├── form.entity.ts │ │ │ ├── form.interface.ts │ │ │ ├── form.module.ts │ │ │ ├── form.resolver.fields.ts │ │ │ └── form.service.ts │ │ ├── interfaces │ │ │ ├── groupable.interface.ts │ │ │ └── index.ts │ │ ├── knowledge-base │ │ │ ├── dto │ │ │ │ ├── index.ts │ │ │ │ ├── knowledge.base.dto.create.ts │ │ │ │ └── knowledge.base.dto.update.ts │ │ │ ├── knowledge.base.entity.ts │ │ │ ├── knowledge.base.interface.ts │ │ │ ├── knowledge.base.module.ts │ │ │ ├── knowledge.base.resolver.fields.ts │ │ │ ├── knowledge.base.service.authorization.ts │ │ │ └── knowledge.base.service.ts │ │ ├── license-entitlement │ │ │ ├── dto │ │ │ │ └── license.entitlement.dto.create.ts │ │ │ ├── license.entitlement.entity.ts │ │ │ ├── license.entitlement.interface.ts │ │ │ ├── license.entitlement.module.ts │ │ │ ├── license.entitlement.resolver.fields.ts │ │ │ └── license.entitlement.service.ts │ │ ├── license │ │ │ ├── dto │ │ │ │ └── license.dto.create.ts │ │ │ ├── license.entity.ts │ │ │ ├── license.interface.ts │ │ │ ├── license.module.ts │ │ │ ├── license.resolver.fields.ts │ │ │ ├── license.service.authorization.ts │ │ │ └── license.service.ts │ │ ├── lifecycle │ │ │ ├── dto │ │ │ │ └── lifecycle.dto.event.ts │ │ │ ├── index.ts │ │ │ ├── lifecycle.entity.ts │ │ │ ├── lifecycle.fields.interface.ts │ │ │ ├── lifecycle.interface.ts │ │ │ ├── lifecycle.module.ts │ │ │ ├── lifecycle.service.spec.ts │ │ │ ├── lifecycle.service.ts │ │ │ └── types │ │ │ │ └── lifecycle.event.ts │ │ ├── location │ │ │ ├── dto │ │ │ │ ├── index.ts │ │ │ │ ├── location.dto.create.ts │ │ │ │ └── location.dto.update.ts │ │ │ ├── geolocation.interface.ts │ │ │ ├── index.ts │ │ │ ├── location.entity.ts │ │ │ ├── location.interface.ts │ │ │ ├── location.module.ts │ │ │ └── location.service.ts │ │ ├── memo │ │ │ ├── conversion │ │ │ │ ├── Iframe.ts │ │ │ │ ├── const.ts │ │ │ │ ├── image.extension.ts │ │ │ │ ├── index.ts │ │ │ │ ├── markdown.schema.ts │ │ │ │ ├── markdown.to.yjs.v2.state.ts │ │ │ │ └── yjs.state.to.markdown.ts │ │ │ ├── dto │ │ │ │ ├── memo.dto.create.ts │ │ │ │ ├── memo.dto.delete.ts │ │ │ │ ├── memo.dto.update.entity.ts │ │ │ │ └── memo.dto.update.ts │ │ │ ├── index.ts │ │ │ ├── memo.entity.ts │ │ │ ├── memo.interface.ts │ │ │ ├── memo.module.ts │ │ │ ├── memo.resolver.fields.ts │ │ │ ├── memo.resolver.mutations.ts │ │ │ ├── memo.service.authorization.ts │ │ │ ├── memo.service.ts │ │ │ └── types.ts │ │ ├── nvp │ │ │ ├── index.ts │ │ │ ├── nvp.dto.create.ts │ │ │ ├── nvp.entity.ts │ │ │ ├── nvp.factory.ts │ │ │ ├── nvp.interface.ts │ │ │ ├── nvp.module.ts │ │ │ └── nvp.service.ts │ │ ├── profile │ │ │ ├── dto │ │ │ │ ├── index.ts │ │ │ │ ├── profile.dto.create.reference.ts │ │ │ │ ├── profile.dto.create.tagset.ts │ │ │ │ ├── profile.dto.create.ts │ │ │ │ ├── profile.dto.create.visual.ts │ │ │ │ ├── profile.dto.update.direct.ts │ │ │ │ ├── profile.dto.update.ts │ │ │ │ └── profile.dto.upload.avatar.ts │ │ │ ├── index.ts │ │ │ ├── profile.entity.ts │ │ │ ├── profile.interface.ts │ │ │ ├── profile.module.ts │ │ │ ├── profile.resolver.fields.ts │ │ │ ├── profile.resolver.mutations.ts │ │ │ ├── profile.resolver.spec.ts │ │ │ ├── profile.service.authorization.ts │ │ │ └── profile.service.ts │ │ ├── query-args │ │ │ ├── ids.query.args.ts │ │ │ ├── limit-and-shuffle.ids.query.args.ts │ │ │ └── limit-and-shuffle.query.args.ts │ │ ├── question │ │ │ └── question.interface.ts │ │ ├── reference │ │ │ ├── dto │ │ │ │ ├── reference.dto.create.ts │ │ │ │ ├── reference.dto.delete.ts │ │ │ │ └── reference.dto.update.ts │ │ │ ├── index.ts │ │ │ ├── reference.entity.ts │ │ │ ├── reference.interface.ts │ │ │ ├── reference.module.ts │ │ │ ├── reference.resolver.mutations.ts │ │ │ ├── reference.resolver.spec.ts │ │ │ └── reference.service.ts │ │ ├── scalars │ │ │ ├── index.ts │ │ │ ├── scalar.emoji.ts │ │ │ ├── scalar.lifecycle.definition.ts │ │ │ ├── scalar.markdown.ts │ │ │ ├── scalar.messageid.ts │ │ │ ├── scalar.nameid.ts │ │ │ ├── scalar.search.cursor.ts │ │ │ ├── scalar.uuid.ts │ │ │ ├── scalar.whiteboard.content.ts │ │ │ └── scalars.module.ts │ │ ├── tagset-template-set │ │ │ ├── index.ts │ │ │ ├── tagset.template.set.entity.ts │ │ │ ├── tagset.template.set.interface.ts │ │ │ ├── tagset.template.set.module.ts │ │ │ └── tagset.template.set.service.ts │ │ ├── tagset-template │ │ │ ├── dto │ │ │ │ ├── tagset.template.dto.create.ts │ │ │ │ └── tagset.template.dto.update.ts │ │ │ ├── index.ts │ │ │ ├── tagset.template.entity.ts │ │ │ ├── tagset.template.interface.ts │ │ │ ├── tagset.template.module.ts │ │ │ └── tagset.template.service.ts │ │ ├── tagset │ │ │ ├── dto │ │ │ │ ├── tagset.args.ts │ │ │ │ ├── tagset.dto.create.ts │ │ │ │ ├── tagset.dto.delete.ts │ │ │ │ └── tagset.dto.update.ts │ │ │ ├── index.ts │ │ │ ├── tagset.entity.ts │ │ │ ├── tagset.interface.ts │ │ │ ├── tagset.module.ts │ │ │ ├── tagset.resolver.fields.ts │ │ │ ├── tagset.resolver.mutations.ts │ │ │ └── tagset.service.ts │ │ ├── visual │ │ │ ├── dto │ │ │ │ ├── visual.dto.create.ts │ │ │ │ ├── visual.dto.delete.ts │ │ │ │ ├── visual.dto.update.ts │ │ │ │ └── visual.dto.upload.image.ts │ │ │ ├── index.ts │ │ │ ├── visual.constraints.ts │ │ │ ├── visual.entity.ts │ │ │ ├── visual.interface.ts │ │ │ ├── visual.module.ts │ │ │ ├── visual.resolver.mutations.ts │ │ │ ├── visual.resolver.spec.ts │ │ │ ├── visual.service.authorization.ts │ │ │ └── visual.service.ts │ │ └── whiteboard │ │ │ ├── dto │ │ │ ├── whiteboard.dto.create.ts │ │ │ ├── whiteboard.dto.delete.ts │ │ │ ├── whiteboard.dto.guest-access.toggle.ts │ │ │ ├── whiteboard.dto.update.entity.ts │ │ │ ├── whiteboard.dto.update.ts │ │ │ ├── whiteboard.preview.settings.coordinates.dto.ts │ │ │ ├── whiteboard.preview.settings.dto.create.ts │ │ │ └── whiteboard.preview.settings.dto.update.ts │ │ │ ├── empty.whiteboard.content.ts │ │ │ ├── index.ts │ │ │ ├── types.ts │ │ │ ├── whiteboard.entity.ts │ │ │ ├── whiteboard.guest-access.service.ts │ │ │ ├── whiteboard.interface.ts │ │ │ ├── whiteboard.module.ts │ │ │ ├── whiteboard.preview.settings.interface.ts │ │ │ ├── whiteboard.resolver.fields.ts │ │ │ ├── whiteboard.resolver.mutations.ts │ │ │ ├── whiteboard.service.authorization.ts │ │ │ └── whiteboard.service.ts │ ├── communication │ │ ├── communication │ │ │ ├── communication.entity.ts │ │ │ ├── communication.interface.ts │ │ │ ├── communication.module.ts │ │ │ ├── communication.resolver.fields.ts │ │ │ ├── communication.resolver.mutations.spec.ts │ │ │ ├── communication.resolver.mutations.ts │ │ │ ├── communication.service.authorization.ts │ │ │ ├── communication.service.spec.ts │ │ │ ├── communication.service.ts │ │ │ ├── dto │ │ │ │ ├── communication.dto.event.message.received.ts │ │ │ │ ├── communication.dto.send.direct.message.user.result.ts │ │ │ │ ├── communication.dto.send.direct.message.user.ts │ │ │ │ ├── communication.dto.send.message.community.leads.ts │ │ │ │ ├── communication.dto.send.message.organization.ts │ │ │ │ └── communication.dto.send.message.users.ts │ │ │ └── index.ts │ │ ├── conversation │ │ │ ├── conversation.entity.ts │ │ │ ├── conversation.interface.ts │ │ │ ├── conversation.module.ts │ │ │ ├── conversation.resolver.fields.ts │ │ │ ├── conversation.resolver.mutations.ts │ │ │ ├── conversation.service.authorization.ts │ │ │ ├── conversation.service.ts │ │ │ └── dto │ │ │ │ ├── conversation.dto.create.ts │ │ │ │ ├── conversation.dto.delete.ts │ │ │ │ ├── conversation.vc.dto.ask.question.input.ts │ │ │ │ ├── conversation.vc.dto.ask.question.result.ts │ │ │ │ ├── conversation.vc.dto.relevance.update.ts │ │ │ │ ├── conversation.vc.dto.reset.input.ts │ │ │ │ └── index.ts │ │ ├── conversations-set │ │ │ ├── conversations.set.entity.ts │ │ │ ├── conversations.set.interface.ts │ │ │ ├── conversations.set.module.ts │ │ │ ├── conversations.set.resolver.mutations.ts │ │ │ ├── conversations.set.service.authorization.ts │ │ │ └── conversations.set.service.ts │ │ ├── message.details │ │ │ ├── message.details.interface.ts │ │ │ ├── message.details.module.ts │ │ │ ├── message.details.parent.interface.ts │ │ │ ├── message.details.resolver.fields.ts │ │ │ └── message.details.service.ts │ │ ├── message.reaction │ │ │ ├── index.ts │ │ │ ├── message.reaction.interface.ts │ │ │ ├── message.reaction.module.ts │ │ │ └── message.reaction.resolver.fields.ts │ │ ├── message │ │ │ ├── index.ts │ │ │ ├── message.interface.ts │ │ │ ├── message.module.ts │ │ │ └── message.resolver.fields.ts │ │ ├── messaging │ │ │ └── mention.interface.ts │ │ ├── room-lookup │ │ │ ├── room.lookup.module.ts │ │ │ └── room.lookup.service.ts │ │ ├── room-mentions │ │ │ ├── room.mentions.module.ts │ │ │ └── room.mentions.service.ts │ │ ├── room │ │ │ ├── dto │ │ │ │ ├── room.dto.add.reaction.to.message.ts │ │ │ │ ├── room.dto.create.ts │ │ │ │ ├── room.dto.delete.ts │ │ │ │ ├── room.dto.remove.message.reaction.ts │ │ │ │ ├── room.dto.remove.message.ts │ │ │ │ ├── room.dto.send.message.reply.ts │ │ │ │ ├── room.dto.send.message.ts │ │ │ │ └── subscription │ │ │ │ │ ├── index.ts │ │ │ │ │ ├── room.event.subscription.args.ts │ │ │ │ │ ├── room.event.subscription.result.ts │ │ │ │ │ ├── room.message.event.subscription.result.ts │ │ │ │ │ └── room.message.reaction.event.subscription.result.ts │ │ │ ├── index.ts │ │ │ ├── room.entity.ts │ │ │ ├── room.event.resolver.subscription.ts │ │ │ ├── room.interface.ts │ │ │ ├── room.module.ts │ │ │ ├── room.resolver.fields.ts │ │ │ ├── room.resolver.mutations.ts │ │ │ ├── room.service.authorization.ts │ │ │ ├── room.service.events.ts │ │ │ ├── room.service.mentions.from.text.spec.ts │ │ │ └── room.service.ts │ │ ├── vc-interaction │ │ │ ├── dto │ │ │ │ └── vc.interaction.dto.create.ts │ │ │ ├── vc.interaction.entity.ts │ │ │ ├── vc.interaction.interface.ts │ │ │ ├── vc.interaction.module.ts │ │ │ └── vc.interaction.service.ts │ │ └── virtual.contributor.message │ │ │ ├── virtual.contributor.message.module.ts │ │ │ └── virtual.contributor.message.service.ts │ ├── community │ │ ├── community-communication │ │ │ ├── community.communication.module.ts │ │ │ └── community.communication.service.ts │ │ ├── community-guidelines │ │ │ ├── community.guidelines.entity.ts │ │ │ ├── community.guidelines.interface.ts │ │ │ ├── community.guidelines.module.ts │ │ │ ├── community.guidelines.resolver.mutations.ts │ │ │ ├── community.guidelines.service.authorization.ts │ │ │ ├── community.guidelines.service.ts │ │ │ ├── dto │ │ │ │ ├── community.guidelines.dto.create.ts │ │ │ │ ├── community.guidelines.dto.remove.content.ts │ │ │ │ ├── community.guidelines.dto.update.entity.ts │ │ │ │ └── community.guidelines.dto.update.ts │ │ │ └── index.ts │ │ ├── community │ │ │ ├── community.entity.ts │ │ │ ├── community.interface.ts │ │ │ ├── community.module.ts │ │ │ ├── community.resolver.fields.ts │ │ │ ├── community.resolver.mutations.spec.ts │ │ │ ├── community.resolver.mutations.ts │ │ │ ├── community.service.authorization.ts │ │ │ ├── community.service.spec.ts │ │ │ ├── community.service.ts │ │ │ ├── dto │ │ │ │ └── community.dto.create.ts │ │ │ └── index.ts │ │ ├── contributor │ │ │ ├── contributor.base.entity.ts │ │ │ ├── contributor.base.interface.ts │ │ │ ├── contributor.defaults.ts │ │ │ ├── contributor.interface.ts │ │ │ ├── contributor.module.ts │ │ │ ├── contributor.service.ts │ │ │ ├── dto │ │ │ │ ├── contributor.dto.create.ts │ │ │ │ ├── contributor.dto.filter.ts │ │ │ │ ├── contributor.dto.update.ts │ │ │ │ └── contributor.query.args.ts │ │ │ ├── get.contributor.type.ts │ │ │ └── index.ts │ │ ├── organization-lookup │ │ │ ├── organization.lookup.module.ts │ │ │ └── organization.lookup.service.ts │ │ ├── organization-settings │ │ │ ├── dto │ │ │ │ ├── organization.settings.dto.update.ts │ │ │ │ ├── organization.settings.membership.dto.update.ts │ │ │ │ └── organization.settings.privacy.dto.update.ts │ │ │ ├── index.ts │ │ │ ├── organization.settings.interface.ts │ │ │ ├── organization.settings.membership.interface.ts │ │ │ ├── organization.settings.module.ts │ │ │ ├── organization.settings.privacy.interface.ts │ │ │ └── organization.settings.service.ts │ │ ├── organization-verification │ │ │ ├── dto │ │ │ │ ├── organization.verification.dto.create.ts │ │ │ │ └── organization.verification.dto.event.ts │ │ │ ├── organization.verification.entity.ts │ │ │ ├── organization.verification.interface.ts │ │ │ ├── organization.verification.module.ts │ │ │ ├── organization.verification.resolver.fields.lifecycle.ts │ │ │ ├── organization.verification.resolver.mutations.ts │ │ │ ├── organization.verification.service.authorization.ts │ │ │ ├── organization.verification.service.lifecycle.ts │ │ │ └── organization.verification.service.ts │ │ ├── organization │ │ │ ├── definitions │ │ │ │ ├── organization.role.application.form.ts │ │ │ │ └── organization.role.definitions.ts │ │ │ ├── dto │ │ │ │ ├── index.ts │ │ │ │ ├── organization.dto.create.ts │ │ │ │ ├── organization.dto.delete.ts │ │ │ │ ├── organization.dto.reset.authorization.ts │ │ │ │ ├── organization.dto.update.settings.ts │ │ │ │ └── organization.dto.update.ts │ │ │ ├── index.ts │ │ │ ├── organization.entity.ts │ │ │ ├── organization.interface.ts │ │ │ ├── organization.module.ts │ │ │ ├── organization.resolver.fields.ts │ │ │ ├── organization.resolver.mutations.ts │ │ │ ├── organization.resolver.queries.ts │ │ │ ├── organization.resolver.spec.ts │ │ │ ├── organization.service.authorization.ts │ │ │ ├── organization.service.license.ts │ │ │ ├── organization.service.spec.ts │ │ │ └── organization.service.ts │ │ ├── user-group │ │ │ ├── dto │ │ │ │ ├── index.ts │ │ │ │ ├── user-group.dto.assign.member.ts │ │ │ │ ├── user-group.dto.create.ts │ │ │ │ ├── user-group.dto.delete.ts │ │ │ │ ├── user-group.dto.remove.member.ts │ │ │ │ └── user-group.dto.update.ts │ │ │ ├── index.ts │ │ │ ├── user-group.entity.ts │ │ │ ├── user-group.interface.ts │ │ │ ├── user-group.module.ts │ │ │ ├── user-group.resolver.fields.ts │ │ │ ├── user-group.resolver.mutations.ts │ │ │ ├── user-group.resolver.spec.ts │ │ │ ├── user-group.service.authorization.ts │ │ │ ├── user-group.service.spec.ts │ │ │ └── user-group.service.ts │ │ ├── user-lookup │ │ │ ├── user.lookup.module.ts │ │ │ └── user.lookup.service.ts │ │ ├── user-settings │ │ │ ├── dto │ │ │ │ ├── notification.setting.input.ts │ │ │ │ ├── user.settings.communications.dto.create.ts │ │ │ │ ├── user.settings.communications.dto.update.ts │ │ │ │ ├── user.settings.dto.create.ts │ │ │ │ ├── user.settings.dto.update.ts │ │ │ │ ├── user.settings.notification.dto.channels.create.ts │ │ │ │ ├── user.settings.notification.dto.channels.update.ts │ │ │ │ ├── user.settings.notification.dto.create.ts │ │ │ │ ├── user.settings.notification.dto.update.ts │ │ │ │ ├── user.settings.notification.organization.dto.create.ts │ │ │ │ ├── user.settings.notification.organization.dto.update.ts │ │ │ │ ├── user.settings.notification.platform.admin.dto.create.ts │ │ │ │ ├── user.settings.notification.platform.admin.dto.update.ts │ │ │ │ ├── user.settings.notification.platform.dto.create.ts │ │ │ │ ├── user.settings.notification.platform.dto.update.ts │ │ │ │ ├── user.settings.notification.space.admin.dto.create.ts │ │ │ │ ├── user.settings.notification.space.admin.dto.update.ts │ │ │ │ ├── user.settings.notification.space.dto.create.ts │ │ │ │ ├── user.settings.notification.space.dto.update.ts │ │ │ │ ├── user.settings.notification.user.dto.create.ts │ │ │ │ ├── user.settings.notification.user.dto.update.ts │ │ │ │ ├── user.settings.notification.user.membership.dto.create.ts │ │ │ │ ├── user.settings.notification.user.membership.dto.update.ts │ │ │ │ ├── user.settings.notification.virtual.contributor.dto.create.ts │ │ │ │ ├── user.settings.notification.virtual.contributor.dto.update.ts │ │ │ │ ├── user.settings.privacy.dto.create.ts │ │ │ │ └── user.settings.privacy.dto.update.ts │ │ │ ├── index.ts │ │ │ ├── user.settings.communications.interface.ts │ │ │ ├── user.settings.entity.ts │ │ │ ├── user.settings.interface.ts │ │ │ ├── user.settings.module.ts │ │ │ ├── user.settings.notification.channels.interface.ts │ │ │ ├── user.settings.notification.interface.ts │ │ │ ├── user.settings.notification.organization.interface.ts │ │ │ ├── user.settings.notification.platform.admin.interface.ts │ │ │ ├── user.settings.notification.platform.interface.ts │ │ │ ├── user.settings.notification.space.admin.interface.ts │ │ │ ├── user.settings.notification.space.interface.ts │ │ │ ├── user.settings.notification.user.interface.ts │ │ │ ├── user.settings.notification.user.membership.interface.ts │ │ │ ├── user.settings.notification.virtual.contributor.interface.ts │ │ │ ├── user.settings.privacy.interface.ts │ │ │ ├── user.settings.service.authorization.ts │ │ │ └── user.settings.service.ts │ │ ├── user │ │ │ ├── dto │ │ │ │ ├── index.ts │ │ │ │ ├── roles.dto.authentication.result.ts │ │ │ │ ├── user.dto.create.ts │ │ │ │ ├── user.dto.delete.ts │ │ │ │ ├── user.dto.reset.authorization.ts │ │ │ │ ├── user.dto.update.platform.settings.ts │ │ │ │ ├── user.dto.update.settings.ts │ │ │ │ ├── user.dto.update.ts │ │ │ │ └── users.query.args.ts │ │ │ ├── index.ts │ │ │ ├── user.entity.ts │ │ │ ├── user.interface.ts │ │ │ ├── user.module.ts │ │ │ ├── user.resolver.fields.ts │ │ │ ├── user.resolver.mutations.ts │ │ │ ├── user.resolver.queries.ts │ │ │ ├── user.resolver.spec.ts │ │ │ ├── user.service.authorization.ts │ │ │ ├── user.service.spec.ts │ │ │ └── user.service.ts │ │ ├── virtual-contributor-defaults │ │ │ ├── virtual.contributor.defaults.module.ts │ │ │ └── virtual.contributor.defaults.service.ts │ │ ├── virtual-contributor-lookup │ │ │ ├── virtual.contributor.lookup.module.ts │ │ │ └── virtual.contributor.lookup.service.ts │ │ ├── virtual-contributor-model-card │ │ │ ├── docs │ │ │ │ ├── ai_model_card_template.md │ │ │ │ └── model.card.json │ │ │ ├── dto │ │ │ │ ├── virtual.contributor.model.card.dto.ai.engine.result.ts │ │ │ │ ├── virtual.contributor.model.card.dto.entry.flag.ts │ │ │ │ ├── virtual.contributor.model.card.dto.monitoring.result.ts │ │ │ │ ├── virtual.contributor.model.card.dto.result.ts │ │ │ │ └── virtual.contributor.model.card.dto.space.usage.result.ts │ │ │ ├── virtual.contributor.model.card.module.ts │ │ │ └── virtual.contributor.model.card.resolver.fields.ts │ │ ├── virtual-contributor-platform-settings │ │ │ ├── dto │ │ │ │ └── virtual.contributor.platform.settings.dto.update.ts │ │ │ ├── index.ts │ │ │ ├── virtual.contributor.platform.settings.interface.ts │ │ │ ├── virtual.contributor.platform.settings.module.ts │ │ │ └── virtual.contributor.platform.settings.service.ts │ │ ├── virtual-contributor-settings │ │ │ ├── dto │ │ │ │ ├── virtual.contributor.settings.dto.update.ts │ │ │ │ └── virtual.contributor.settings.privacy.dto.update.ts │ │ │ ├── index.ts │ │ │ ├── virtual.contributor.settings.interface.ts │ │ │ ├── virtual.contributor.settings.module.ts │ │ │ ├── virtual.contributor.settings.privacy.interface.ts │ │ │ └── virtual.contributor.settings.service.ts │ │ └── virtual-contributor │ │ │ ├── definition │ │ │ └── virtual.contributor.settings.default.ts │ │ │ ├── dto │ │ │ ├── index.ts │ │ │ ├── prompt-graph-definition │ │ │ │ ├── prompt.graph.definition.data.point.dto.ts │ │ │ │ ├── prompt.graph.definition.data.struct.dto.ts │ │ │ │ ├── prompt.graph.definition.dto.ts │ │ │ │ ├── prompt.graph.definition.edge.dto.ts │ │ │ │ └── prompt.graph.definition.node.dto.ts │ │ │ ├── utils.ts │ │ │ ├── virtual.contributor.dto.create.ts │ │ │ ├── virtual.contributor.dto.delete.ts │ │ │ ├── virtual.contributor.dto.invocation.input.ts │ │ │ ├── virtual.contributor.dto.refresh.body.of.knowledge.ts │ │ │ ├── virtual.contributor.dto.update.platform.settings.ts │ │ │ ├── virtual.contributor.dto.update.settings.ts │ │ │ ├── virtual.contributor.dto.update.ts │ │ │ ├── virtual.contributor.updated.subscription.args.ts │ │ │ └── virtual.contributor.updated.subscription.result.ts │ │ │ ├── transformers │ │ │ └── prompt.graph.transformer.ts │ │ │ ├── virtual.contributor.entity.ts │ │ │ ├── virtual.contributor.interface.ts │ │ │ ├── virtual.contributor.module.ts │ │ │ ├── virtual.contributor.resolver.fields.ts │ │ │ ├── virtual.contributor.resolver.mutations.ts │ │ │ ├── virtual.contributor.resolver.queries.ts │ │ │ ├── virtual.contributor.resolver.subscriptions.ts │ │ │ ├── virtual.contributor.service.authorization.ts │ │ │ └── virtual.contributor.service.ts │ ├── innovation-hub │ │ ├── dto │ │ │ ├── index.ts │ │ │ ├── innovation.hub.args.query.ts │ │ │ ├── innovation.hub.dto.create.ts │ │ │ ├── innovation.hub.dto.delete.ts │ │ │ └── innovation.hub.dto.update.ts │ │ ├── innovation.hub.entity.ts │ │ ├── innovation.hub.interface.ts │ │ ├── innovation.hub.module.ts │ │ ├── innovation.hub.resolver.fields.ts │ │ ├── innovation.hub.resolver.mutations.ts │ │ ├── innovation.hub.service.authorization.ts │ │ ├── innovation.hub.service.ts │ │ ├── innovation.hub.type.enum.ts │ │ └── types.ts │ ├── profile-documents │ │ ├── profile.documents.module.ts │ │ ├── profile.documents.service.spec.ts │ │ └── profile.documents.service.ts │ ├── space │ │ ├── account.host │ │ │ ├── account.host.module.ts │ │ │ └── account.host.service.ts │ │ ├── account.license.plan │ │ │ ├── account.license.plan.interface.ts │ │ │ ├── account.license.plan.module.ts │ │ │ ├── account.license.plan.service.ts │ │ │ ├── dto │ │ │ │ └── account.license.plan.dto.update.ts │ │ │ └── index.ts │ │ ├── account.lookup │ │ │ ├── account.lookup.module.ts │ │ │ └── account.lookup.service.ts │ │ ├── account │ │ │ ├── README.md │ │ │ ├── account.entity.ts │ │ │ ├── account.interface.ts │ │ │ ├── account.license.subscription.interface.ts │ │ │ ├── account.module.ts │ │ │ ├── account.resolver.fields.ts │ │ │ ├── account.resolver.mutations.ts │ │ │ ├── account.resolver.queries.ts │ │ │ ├── account.service.authorization.ts │ │ │ ├── account.service.license.spec.ts │ │ │ ├── account.service.license.ts │ │ │ ├── account.service.ts │ │ │ ├── constants.ts │ │ │ └── dto │ │ │ │ ├── account.dto.create.innovation.hub.ts │ │ │ │ ├── account.dto.create.innovation.pack.ts │ │ │ │ ├── account.dto.create.space.ts │ │ │ │ ├── account.dto.create.virtual.contributor.ts │ │ │ │ ├── account.dto.reset.authorization.ts │ │ │ │ ├── account.dto.reset.license.ts │ │ │ │ ├── account.dto.transfer.innovation.hub.ts │ │ │ │ ├── account.dto.transfer.innovation.pack.ts │ │ │ │ ├── account.dto.transfer.space.ts │ │ │ │ ├── account.dto.transfer.virtual.contributor.ts │ │ │ │ └── account.dto.update.baseline.license.plan.ts │ │ ├── index.ts │ │ ├── space.about.membership │ │ │ ├── dto │ │ │ │ └── space.about.membership.ts │ │ │ ├── space.about.membership.module.ts │ │ │ ├── space.about.membership.resolver.fields.ts │ │ │ └── space.about.membership.service.ts │ │ ├── space.about │ │ │ ├── dto │ │ │ │ ├── space.about.dto.create.ts │ │ │ │ └── space.about.dto.update.ts │ │ │ ├── index.ts │ │ │ ├── space.about.entity.ts │ │ │ ├── space.about.interface.ts │ │ │ ├── space.about.module.ts │ │ │ ├── space.about.resolver.fields.ts │ │ │ ├── space.about.service.authorization.ts │ │ │ └── space.about.service.ts │ │ ├── space.defaults │ │ │ ├── definitions │ │ │ │ ├── space.community.role.application.form.ts │ │ │ │ ├── space.community.roles.ts │ │ │ │ ├── subspace.community.role.application.form.ts │ │ │ │ └── subspace.community.roles.ts │ │ │ ├── space.defaults.module.ts │ │ │ └── space.defaults.service.ts │ │ ├── space.lookup │ │ │ ├── space.lookup.module.ts │ │ │ └── space.lookup.service.ts │ │ ├── space.settings │ │ │ ├── dto │ │ │ │ ├── space.settings.collaboration.dto.create.ts │ │ │ │ ├── space.settings.collaboration.dto.update.ts │ │ │ │ ├── space.settings.dto.create.ts │ │ │ │ ├── space.settings.dto.update.ts │ │ │ │ ├── space.settings.membership.dto.create.ts │ │ │ │ ├── space.settings.membership.dto.update.ts │ │ │ │ ├── space.settings.privacy.dto.create.ts │ │ │ │ └── space.settings.privacy.dto.update.ts │ │ │ ├── index.ts │ │ │ ├── space.settings.collaboration.interface.ts │ │ │ ├── space.settings.interface.ts │ │ │ ├── space.settings.membership.interface.ts │ │ │ ├── space.settings.module.ts │ │ │ ├── space.settings.privacy.interface.ts │ │ │ └── space.settings.service.ts │ │ └── space │ │ │ ├── dto │ │ │ ├── explore.spaces.dto.input.ts │ │ │ ├── space.args.query.spaces.ts │ │ │ ├── space.dto.create.collaboration.ts │ │ │ ├── space.dto.create.subspace.ts │ │ │ ├── space.dto.create.ts │ │ │ ├── space.dto.delete.ts │ │ │ ├── space.dto.event.subspace.created.ts │ │ │ ├── space.dto.ingest.ts │ │ │ ├── space.dto.update.platform.settings.ts │ │ │ ├── space.dto.update.settings.ts │ │ │ ├── space.dto.update.ts │ │ │ ├── space.subspace.created.args.ts │ │ │ └── space.subspace.created.payload.ts │ │ │ ├── index.ts │ │ │ ├── sort.spaces.by.activity.spec.ts │ │ │ ├── sort.spaces.by.activity.ts │ │ │ ├── space.entity.ts │ │ │ ├── space.interface.ts │ │ │ ├── space.license.subscription.interface.ts │ │ │ ├── space.module.ts │ │ │ ├── space.resolver.fields.ts │ │ │ ├── space.resolver.mutations.ts │ │ │ ├── space.resolver.queries.ts │ │ │ ├── space.resolver.subscriptions.ts │ │ │ ├── space.service.authorization.ts │ │ │ ├── space.service.license.ts │ │ │ ├── space.service.platform.roles.access.ts │ │ │ ├── space.service.spec.ts │ │ │ └── space.service.ts │ ├── storage │ │ ├── document │ │ │ ├── document.entity.ts │ │ │ ├── document.interface.ts │ │ │ ├── document.module.ts │ │ │ ├── document.resolver.fields.ts │ │ │ ├── document.resolver.mutations.ts │ │ │ ├── document.resolver.spec.ts │ │ │ ├── document.service.authorization.ts │ │ │ ├── document.service.ts │ │ │ ├── dto │ │ │ │ ├── document.dto.create.ts │ │ │ │ ├── document.dto.delete.ts │ │ │ │ └── document.dto.update.ts │ │ │ └── index.ts │ │ ├── storage-aggregator │ │ │ ├── dto │ │ │ │ └── storage.aggregator.dto.parent.ts │ │ │ ├── storage.aggregator.entity.ts │ │ │ ├── storage.aggregator.interface.ts │ │ │ ├── storage.aggregator.module.ts │ │ │ ├── storage.aggregator.resolver.fields.ts │ │ │ ├── storage.aggregator.service.authorization.ts │ │ │ └── storage.aggregator.service.ts │ │ └── storage-bucket │ │ │ ├── dto │ │ │ ├── storage.bucket.args.documents.ts │ │ │ ├── storage.bucket.dto.create.ts │ │ │ ├── storage.bucket.dto.delete.ts │ │ │ ├── storage.bucket.dto.parent.ts │ │ │ ├── storage.bucket.dto.upload.file.on.link.ts │ │ │ ├── storage.bucket.dto.upload.file.on.reference.ts │ │ │ ├── storage.bucket.dto.upload.file.result.ts │ │ │ └── storage.bucket.dto.upload.file.ts │ │ │ ├── storage.bucket.entity.ts │ │ │ ├── storage.bucket.interface.ts │ │ │ ├── storage.bucket.module.ts │ │ │ ├── storage.bucket.resolver.fields.ts │ │ │ ├── storage.bucket.resolver.mutations.ts │ │ │ ├── storage.bucket.service.authorization.ts │ │ │ └── storage.bucket.service.ts │ ├── task │ │ ├── dto │ │ │ ├── index.ts │ │ │ ├── task.interface.ts │ │ │ └── task.status.enum.ts │ │ ├── index.ts │ │ ├── task.module.ts │ │ ├── task.resolver.fields.ts │ │ └── task.resolver.queries.ts │ ├── template │ │ ├── template-applier │ │ │ ├── dto │ │ │ │ └── template.applier.dto.update.collaboration.ts │ │ │ ├── template.applier.module.ts │ │ │ ├── template.applier.resolver.mutations.ts │ │ │ └── template.applier.service.ts │ │ ├── template-content-space │ │ │ ├── dto │ │ │ │ ├── template.content.space.dto.create.ts │ │ │ │ └── template.content.space.dto.update.ts │ │ │ ├── template-content-space.lookup │ │ │ │ ├── template-content-space.lookup.module.ts │ │ │ │ └── template-content-space.lookup.service.ts │ │ │ ├── template.content.space.entity.ts │ │ │ ├── template.content.space.interface.ts │ │ │ ├── template.content.space.module.ts │ │ │ ├── template.content.space.resolver.fields.ts │ │ │ ├── template.content.space.resolver.mutations.ts │ │ │ ├── template.content.space.service.authorization.ts │ │ │ ├── template.content.space.service.license.ts │ │ │ └── template.content.space.service.ts │ │ ├── template-default │ │ │ ├── dto │ │ │ │ ├── template.default.dto.create.ts │ │ │ │ └── template.default.dto.update.ts │ │ │ ├── template.default.entity.ts │ │ │ ├── template.default.interface.ts │ │ │ ├── template.default.module.ts │ │ │ ├── template.default.resolver.fields.ts │ │ │ ├── template.default.service.authorization.ts │ │ │ └── template.default.service.ts │ │ ├── template │ │ │ ├── dto │ │ │ │ ├── template.dto.create.base.ts │ │ │ │ ├── template.dto.create.ts │ │ │ │ ├── template.dto.delete.ts │ │ │ │ ├── template.dto.update.from.space.ts │ │ │ │ └── template.dto.update.ts │ │ │ ├── template.entity.ts │ │ │ ├── template.interface.ts │ │ │ ├── template.module.ts │ │ │ ├── template.resolver.fields.ts │ │ │ ├── template.resolver.mutations.spec.ts │ │ │ ├── template.resolver.mutations.ts │ │ │ ├── template.service.authorization.ts │ │ │ └── template.service.ts │ │ ├── templates-manager │ │ │ ├── dto │ │ │ │ ├── templates.manager.dto.create..ts │ │ │ │ └── templates.manager.dto.create.ts │ │ │ ├── index.ts │ │ │ ├── templates.manager.entity.ts │ │ │ ├── templates.manager.interface.ts │ │ │ ├── templates.manager.module.ts │ │ │ ├── templates.manager.resolver.fields.ts │ │ │ ├── templates.manager.resolver.mutations.ts │ │ │ ├── templates.manager.service.authorization.ts │ │ │ └── templates.manager.service.ts │ │ └── templates-set │ │ │ ├── dto │ │ │ ├── templates.set.dto.create.template.from.space.content.ts │ │ │ ├── templates.set.dto.create.template.from.space.ts │ │ │ └── templates.set.dto.create.template.ts │ │ │ ├── index.ts │ │ │ ├── templates.set.entity.ts │ │ │ ├── templates.set.interface.ts │ │ │ ├── templates.set.module.ts │ │ │ ├── templates.set.resolver.fields.ts │ │ │ ├── templates.set.resolver.mutations.ts │ │ │ ├── templates.set.service.authorization.ts │ │ │ └── templates.set.service.ts │ └── timeline │ │ ├── calendar │ │ ├── calendar.entity.ts │ │ ├── calendar.interface.ts │ │ ├── calendar.module.ts │ │ ├── calendar.resolver.fields.ts │ │ ├── calendar.resolver.mutations.ts │ │ ├── calendar.service.authorization.ts │ │ ├── calendar.service.ts │ │ └── dto │ │ │ └── calendar.dto.create.event.ts │ │ ├── event │ │ ├── dto │ │ │ ├── event.dto.create.ts │ │ │ ├── event.dto.delete.ts │ │ │ └── event.dto.update.ts │ │ ├── event.entity.ts │ │ ├── event.interface.ts │ │ ├── event.module.ts │ │ ├── event.resolver.fields.ts │ │ ├── event.resolver.mutations.ts │ │ ├── event.resolver.spec.ts │ │ ├── event.service.authorization.ts │ │ ├── event.service.ts │ │ └── index.ts │ │ └── timeline │ │ ├── timeline.entity.ts │ │ ├── timeline.interface.ts │ │ ├── timeline.module.ts │ │ ├── timeline.resolver.fields.ts │ │ ├── timeline.service.authorization.ts │ │ └── timeline.service.ts ├── library │ ├── innovation-pack │ │ ├── dto │ │ │ ├── innovation.pack.dto.create.ts │ │ │ ├── innovation.pack.dto.update.ts │ │ │ └── innovationPack.dto.delete.ts │ │ ├── index.ts │ │ ├── innovation.pack.defaults │ │ │ ├── innovation.pack.defaults.module.ts │ │ │ └── innovation.pack.defaults.service.ts │ │ ├── innovation.pack.entity.ts │ │ ├── innovation.pack.interface.ts │ │ ├── innovation.pack.module.ts │ │ ├── innovation.pack.resolver.fields.ts │ │ ├── innovation.pack.resolver.mutations.ts │ │ ├── innovation.pack.service.authorization.ts │ │ ├── innovation.pack.service.spec.ts │ │ └── innovation.pack.service.ts │ ├── library │ │ ├── dto │ │ │ ├── library.dto.create.innovation.pack.ts │ │ │ ├── library.dto.innovationPacks.input.ts │ │ │ ├── library.dto.template.result.ts │ │ │ └── library.dto.templates.input.ts │ │ ├── library.entity.ts │ │ ├── library.interface.ts │ │ ├── library.module.ts │ │ ├── library.resolver.fields.ts │ │ ├── library.service.authorization.ts │ │ └── library.service.ts │ └── postgres-convergence │ │ └── csvTransform.ts ├── main.ts ├── migrations │ ├── 1764590884532-baseline.ts │ ├── 1764590884533-seed.ts │ └── utils │ │ ├── alterColumnType.ts │ │ ├── callouts │ │ ├── create-callout.ts │ │ └── update-to-link-callout.ts │ │ ├── chunk.array.ts │ │ ├── create-authorization-policy.ts │ │ ├── create-location.ts │ │ ├── create-profile.ts │ │ ├── create-tagset.ts │ │ ├── dataCoherency-utils.ts │ │ ├── escape-string.ts │ │ ├── generate-nameid.ts │ │ ├── get-query-runner.ts │ │ ├── preferences │ │ ├── add-preference-definitions-defaults.ts │ │ ├── add-preference-definitions.ts │ │ ├── add-preference-set.ts │ │ ├── add-preferences.ts │ │ ├── index.ts │ │ └── remove-preferences.ts │ │ ├── safely-add-foreignKey.ts │ │ ├── safely-drop-foreignKey.ts │ │ ├── safely-drop-index.ts │ │ └── storage │ │ └── storage-bucket-utils.ts ├── platform-admin │ ├── Readme.md │ ├── admin │ │ ├── dto │ │ │ ├── platform.admin.query.communication.results.ts │ │ │ ├── platform.admin.query.identity.results.ts │ │ │ └── platform.admin.query.results.ts │ │ ├── platform.admin.module.ts │ │ ├── platform.admin.resolver.communication.fields.ts │ │ ├── platform.admin.resolver.fields.ts │ │ ├── platform.admin.resolver.queries.ts │ │ └── platform.admin.service.ts │ ├── core │ │ └── identity │ │ │ ├── admin.identity.module.ts │ │ │ ├── admin.identity.resolver.fields.ts │ │ │ ├── admin.identity.resolver.mutations.ts │ │ │ ├── admin.identity.resolver.queries.ts │ │ │ ├── admin.identity.service.ts │ │ │ └── dto │ │ │ └── kratos.identity.dto.ts │ ├── domain │ │ ├── authorization │ │ │ ├── admin.authorization.module.ts │ │ │ ├── admin.authorization.resolver.mutations.ts │ │ │ ├── admin.authorization.resolver.queries.ts │ │ │ ├── admin.authorization.service.ts │ │ │ └── dto │ │ │ │ ├── authorization.dto.credential.grant.organization.ts │ │ │ │ ├── authorization.dto.credential.grant.ts │ │ │ │ ├── authorization.dto.credential.revoke.organization.ts │ │ │ │ ├── authorization.dto.credential.revoke.ts │ │ │ │ ├── authorization.dto.user.authorization.privileges.ts │ │ │ │ ├── authorization.dto.users.with.credential.ts │ │ │ │ └── index.ts │ │ ├── communication │ │ │ ├── admin.communication.module.ts │ │ │ ├── admin.communication.resolver.mutations.ts │ │ │ ├── admin.communication.service.ts │ │ │ └── dto │ │ │ │ ├── admin.communication.dto.ensure.access.input.ts │ │ │ │ ├── admin.communication.dto.membership.input.ts │ │ │ │ ├── admin.communication.dto.membership.result.ts │ │ │ │ ├── admin.communication.dto.orphaned.room.result.ts │ │ │ │ ├── admin.communication.dto.orphaned.usage.result.ts │ │ │ │ ├── admin.communication.dto.remove.orphaned.room.ts │ │ │ │ ├── admin.communication.dto.room.result.ts │ │ │ │ ├── admin.communication.dto.update.room.state.ts │ │ │ │ └── index.ts │ │ ├── organization │ │ │ ├── domain.platform.settings.module.ts │ │ │ ├── domain.platform.settings.resolver.mutations.ts │ │ │ ├── domain.platform.settings.service.ts │ │ │ └── dto │ │ │ │ └── organization.dto.update.platform.settings.ts │ │ ├── user │ │ │ ├── admin.users.module.ts │ │ │ └── admin.users.resolver.mutations.ts │ │ └── whiteboard │ │ │ ├── admin.whiteboard.files.result.ts │ │ │ ├── admin.whiteboard.module.ts │ │ │ ├── admin.whiteboard.resolver.mutations.ts │ │ │ └── admin.whiteboard.service.ts │ ├── in-app-notification │ │ ├── dto │ │ │ └── in.app.notification.admin.dto.prune.result.ts │ │ ├── in.app.notification.admin.module.ts │ │ ├── in.app.notification.admin.resolver.mutations.ts │ │ └── in.app.notification.admin.service.ts │ ├── licensing │ │ ├── admin.licensing.module.ts │ │ ├── admin.licensing.resolver.mutations.ts │ │ ├── admin.licensing.service.ts │ │ └── dto │ │ │ ├── admin.licensing.dto.assign.license.plan.to.account.ts │ │ │ ├── admin.licensing.dto.assign.license.plan.to.space.ts │ │ │ ├── admin.licensing.dto.revoke.license.plan.from.account.ts │ │ │ └── admin.licensing.dto.revoke.license.plan.from.space.ts │ └── services │ │ ├── avatars │ │ ├── admin.avatar.module.ts │ │ └── admin.avatarresolver.mutations.ts │ │ ├── geolocation │ │ ├── admin.geolocation.module.ts │ │ └── admin.geolocation.resolver.mutations.ts │ │ └── search │ │ ├── admin.search.ingest.module.ts │ │ └── admin.search.ingest.resolver.mutations.ts ├── platform │ ├── activity │ │ ├── activity.entity.ts │ │ ├── activity.interface.ts │ │ ├── activity.module.ts │ │ ├── activity.service.ts │ │ ├── create.latest.activity.per.space.spec.ts │ │ ├── create.latest.activity.per.space.ts │ │ ├── dto │ │ │ └── activity.dto.create.ts │ │ └── index.ts │ ├── authorization │ │ ├── platform.authorization.policy.module.ts │ │ └── platform.authorization.policy.service.ts │ ├── configuration │ │ ├── config │ │ │ ├── apm │ │ │ │ ├── apm.config.interface.ts │ │ │ │ └── index.ts │ │ │ ├── authentication │ │ │ │ ├── authentication.config.entity.ts │ │ │ │ ├── authentication.config.interface.ts │ │ │ │ ├── index.ts │ │ │ │ └── providers │ │ │ │ │ ├── authentication.provider.config.entity.ts │ │ │ │ │ ├── authentication.provider.config.interface.ts │ │ │ │ │ ├── index.ts │ │ │ │ │ └── ory │ │ │ │ │ ├── ory.config.entity.ts │ │ │ │ │ └── ory.config.interface.ts │ │ │ ├── config.entity.ts │ │ │ ├── config.interface.ts │ │ │ ├── config.module.ts │ │ │ ├── config.resolver.fields.ts │ │ │ ├── config.service.spec.ts │ │ │ ├── config.service.ts │ │ │ ├── index.ts │ │ │ ├── integrations │ │ │ │ ├── geo │ │ │ │ │ └── geo.config.interface.ts │ │ │ │ └── index.ts │ │ │ ├── locations │ │ │ │ ├── index.ts │ │ │ │ └── platform.locations.interface.ts │ │ │ ├── sentry │ │ │ │ ├── index.ts │ │ │ │ └── sentry.config.interface.ts │ │ │ └── storage │ │ │ │ ├── file.storage.config.interface.ts │ │ │ │ ├── index.ts │ │ │ │ └── storage.config.interface.ts │ │ ├── feature-flag │ │ │ └── platform.feature.flag.interface.ts │ │ └── index.ts │ ├── forum-discussion-lookup │ │ ├── forum.discussion.lookup.module.ts │ │ └── forum.discussion.lookup.service.ts │ ├── forum-discussion │ │ ├── discussion.entity.ts │ │ ├── discussion.interface.ts │ │ ├── discussion.module.ts │ │ ├── discussion.resolver.fields.ts │ │ ├── discussion.resolver.mutations.spec.ts │ │ ├── discussion.resolver.mutations.ts │ │ ├── discussion.service.authorization.ts │ │ ├── discussion.service.ts │ │ └── dto │ │ │ ├── discussion.dto.delete.ts │ │ │ └── discussion.dto.update.ts │ ├── forum │ │ ├── dto │ │ │ ├── forum.dto.create.discussion.ts │ │ │ ├── forum.dto.discussions.input.ts │ │ │ ├── forum.dto.event.discussion.updated.ts │ │ │ ├── forum.dto.event.message.received.ts │ │ │ └── forum.dto.send.message.community.leads.ts │ │ ├── forum.entity.ts │ │ ├── forum.interface.ts │ │ ├── forum.module.ts │ │ ├── forum.resolver.fields.ts │ │ ├── forum.resolver.mutations.ts │ │ ├── forum.resolver.subscriptions.ts │ │ ├── forum.service.authorization.ts │ │ ├── forum.service.spec.ts │ │ ├── forum.service.ts │ │ └── index.ts │ ├── in-app-notification-payload │ │ ├── dto │ │ │ ├── organization │ │ │ │ ├── index.ts │ │ │ │ ├── notification.in.app.payload.organization.base.ts │ │ │ │ ├── notification.in.app.payload.organization.message.direct.ts │ │ │ │ └── notification.in.app.payload.organization.message.room.ts │ │ │ ├── platform │ │ │ │ ├── index.ts │ │ │ │ ├── notification.in.app.payload.platform.base.ts │ │ │ │ ├── notification.in.app.payload.platform.forum.discussion.ts │ │ │ │ ├── notification.in.app.payload.platform.global.role.change.ts │ │ │ │ └── notification.in.app.payload.platform.user.profile.removed.ts │ │ │ ├── space │ │ │ │ ├── index.ts │ │ │ │ ├── notification.in.app.payload.space.base.ts │ │ │ │ ├── notification.in.app.payload.space.collaboration.callout.comment.ts │ │ │ │ ├── notification.in.app.payload.space.collaboration.callout.post.comment.ts │ │ │ │ ├── notification.in.app.payload.space.collaboration.callout.ts │ │ │ │ ├── notification.in.app.payload.space.communication.message.direct.ts │ │ │ │ ├── notification.in.app.payload.space.communication.update.ts │ │ │ │ ├── notification.in.app.payload.space.community.application.ts │ │ │ │ ├── notification.in.app.payload.space.community.calendar.event.comment.ts │ │ │ │ ├── notification.in.app.payload.space.community.calendar.event.ts │ │ │ │ ├── notification.in.app.payload.space.community.contributor.ts │ │ │ │ ├── notification.in.app.payload.space.community.invitation.platform.ts │ │ │ │ ├── notification.in.app.payload.space.community.invitation.ts │ │ │ │ └── notification.in.app.payload.space.ts │ │ │ ├── user │ │ │ │ ├── index.ts │ │ │ │ ├── notification.in.app.payload.user.base.ts │ │ │ │ ├── notification.in.app.payload.user.message.direct.ts │ │ │ │ ├── notification.in.app.payload.user.message.room.ts │ │ │ │ └── notification.in.app.payload.user.ts │ │ │ └── virtual-contributor │ │ │ │ ├── index.ts │ │ │ │ └── notification.in.app.payload.virtual.contributor.ts │ │ ├── field-resolvers │ │ │ ├── index.ts │ │ │ ├── organization │ │ │ │ ├── in.app.notification.payload.organization.message.direct.resolver.fields.ts │ │ │ │ └── in.app.notification.payload.organization.message.room.resolver.fields.ts │ │ │ ├── platform │ │ │ │ ├── in.app.notification.payload.platform.forum.discussion.resolver.fields.ts │ │ │ │ ├── in.app.notification.payload.platform.global.role.change.resolver.fields.ts │ │ │ │ └── in.app.notification.payload.platform.user.profile.removed.resolver.fields.ts │ │ │ ├── space │ │ │ │ ├── in.app.notification.payload.space.collaboration.callout.comment.resolver.fields.ts │ │ │ │ ├── in.app.notification.payload.space.collaboration.callout.post.comment.resolver.fields.ts │ │ │ │ ├── in.app.notification.payload.space.collaboration.callout.resolver.fields.ts │ │ │ │ ├── in.app.notification.payload.space.communication.message.direct.resolver.fields.ts │ │ │ │ ├── in.app.notification.payload.space.communication.update.resolver.fields.ts │ │ │ │ ├── in.app.notification.payload.space.community.application.resolver.fields.ts │ │ │ │ ├── in.app.notification.payload.space.community.calendar.event.comment.resolver.fields.ts │ │ │ │ ├── in.app.notification.payload.space.community.calendar.event.resolver.fields.ts │ │ │ │ ├── in.app.notification.payload.space.community.contributor.resolver.fields.ts │ │ │ │ ├── in.app.notification.payload.space.community.invitation.platform.resolver.fields.ts │ │ │ │ ├── in.app.notification.payload.space.community.invitation.resolver.fields.ts │ │ │ │ └── in.app.notification.payload.space.resolver.fields.ts │ │ │ ├── user │ │ │ │ ├── in.app.notification.payload.user.message.direct.resolver.fields.ts │ │ │ │ ├── in.app.notification.payload.user.message.room.resolver.fields.ts │ │ │ │ └── in.app.notification.payload.user.resolver.fields.ts │ │ │ └── vc │ │ │ │ └── in.app.notification.payload.virtual.contributor.resolver.fields.ts │ │ ├── in.app.notification.payload.interface.ts │ │ └── in.app.notification.payload.module.ts │ ├── in-app-notification │ │ ├── dto │ │ │ ├── in.app.notification.create.ts │ │ │ └── in.app.notification.state.update.ts │ │ ├── in.app.notification.core.entity.ids.ts │ │ ├── in.app.notification.entity.ts │ │ ├── in.app.notification.interface.ts │ │ ├── in.app.notification.module.ts │ │ ├── in.app.notification.resolver.fields.ts │ │ ├── in.app.notification.resolver.mutations.ts │ │ ├── in.app.notification.resolver.subscription.ts │ │ └── in.app.notification.service.ts │ ├── licensing │ │ ├── credential-based │ │ │ ├── license-credential-issuer │ │ │ │ ├── license.issuer.module.ts │ │ │ │ └── license.issuer.service.ts │ │ │ ├── license-plan │ │ │ │ ├── dto │ │ │ │ │ ├── license.plan.dto.create.ts │ │ │ │ │ ├── license.plan.dto.delete.ts │ │ │ │ │ └── license.plan.dto.update.ts │ │ │ │ ├── index.ts │ │ │ │ ├── license.plan.entity.ts │ │ │ │ ├── license.plan.interface.ts │ │ │ │ ├── license.plan.module.ts │ │ │ │ ├── license.plan.resolver.fields.ts │ │ │ │ ├── license.plan.resolver.mutations.ts │ │ │ │ └── license.plan.service.ts │ │ │ ├── license-policy │ │ │ │ ├── dto │ │ │ │ │ ├── license.policy.dto.credential.rule.create.ts │ │ │ │ │ ├── license.policy.dto.credential.rule.delete.ts │ │ │ │ │ ├── license.policy.dto.credential.rule.granted.entitlement.ts │ │ │ │ │ └── license.policy.dto.credential.rule.update.ts │ │ │ │ ├── index.ts │ │ │ │ ├── license.policy.entity.ts │ │ │ │ ├── license.policy.interface.ts │ │ │ │ ├── license.policy.module.ts │ │ │ │ ├── license.policy.resolver.mutations.ts │ │ │ │ ├── license.policy.service.authorization.ts │ │ │ │ └── license.policy.service.ts │ │ │ ├── licensing-credential-based-entitlements-engine │ │ │ │ ├── index.ts │ │ │ │ ├── licensing.credential.based.module.ts │ │ │ │ ├── licensing.credential.based.policy.credential.rule.interface.ts │ │ │ │ ├── licensing.credential.based.policy.credential.rule.ts │ │ │ │ ├── licensing.credential.based.service.spec.ts │ │ │ │ └── licensing.credential.based.service.ts │ │ │ └── licensing-framework │ │ │ │ ├── dto │ │ │ │ └── licensing.framework.dto.create.license.plan.ts │ │ │ │ ├── licensing.framework.entity.ts │ │ │ │ ├── licensing.framework.interface.ts │ │ │ │ ├── licensing.framework.module.ts │ │ │ │ ├── licensing.framework.resolver.fields.ts │ │ │ │ ├── licensing.framework.resolver.mutations.ts │ │ │ │ ├── licensing.framework.service.authorization.spec.ts │ │ │ │ ├── licensing.framework.service.authorization.ts │ │ │ │ └── licensing.framework.service.ts │ │ ├── dto │ │ │ └── licensing.dto.granted.entitlement.ts │ │ └── wingback-subscription │ │ │ ├── licensing.wingback.subscription.module.ts │ │ │ ├── licensing.wingback.subscription.resolver.mutations.ts │ │ │ ├── licensing.wingback.subscription.service.spec.ts │ │ │ ├── licensing.wingback.subscription.service.ts │ │ │ ├── types │ │ │ └── create.customer.input.ts │ │ │ └── wingback.constants.ts │ ├── metadata │ │ ├── index.ts │ │ ├── metadata.interface.ts │ │ ├── metadata.module.ts │ │ ├── metadata.service.spec.ts │ │ ├── metadata.service.ts │ │ └── service │ │ │ ├── index.ts │ │ │ ├── service.metadata.entity.ts │ │ │ └── service.metadata.interface.ts │ ├── platform-role │ │ ├── dto │ │ │ ├── platform.role.dto.assign.ts │ │ │ └── platform.role.dto.remove.ts │ │ ├── platform.role.module.ts │ │ └── platform.role.resolver.mutations.ts │ ├── platform-settings │ │ ├── dto │ │ │ ├── notification-email-blacklist.input.ts │ │ │ ├── platform.settings.dto.update.ts │ │ │ └── platform.settings.integration.dto.update.ts │ │ ├── index.ts │ │ ├── platform.settings.integrations.interface.ts │ │ ├── platform.settings.interface.ts │ │ ├── platform.settings.module.ts │ │ ├── platform.settings.service.blacklist.spec.ts │ │ └── platform.settings.service.ts │ ├── platform-templates │ │ ├── platform.templates.module.ts │ │ └── platform.templates.service.ts │ ├── platform.hub │ │ ├── dto │ │ │ ├── platform.dto.assign.role.user.ts │ │ │ ├── platform.dto.remove.role.user.ts │ │ │ └── platform.invitation.dto.global.role.ts │ │ ├── platform.hub.module.ts │ │ └── platform.hub.resolver.fields.ts │ ├── platform.well.known.virtual.contributors │ │ ├── dto │ │ │ ├── platform.well.known.virtual.contributor.dto.mapping.ts │ │ │ └── platform.well.known.virtual.contributor.dto.set.ts │ │ ├── index.ts │ │ ├── platform.well.known.virtual.contributors.interface.ts │ │ ├── platform.well.known.virtual.contributors.module.ts │ │ ├── platform.well.known.virtual.contributors.resolver.mutations.ts │ │ └── platform.well.known.virtual.contributors.service.ts │ └── platform │ │ ├── dto │ │ └── release.discussion.dto.ts │ │ ├── platform.entity.ts │ │ ├── platform.interface.ts │ │ ├── platform.module.ts │ │ ├── platform.resolver.fields.ts │ │ ├── platform.resolver.mutations.ts │ │ ├── platform.resolver.queries.spec.ts │ │ ├── platform.resolver.queries.ts │ │ ├── platform.service.authorization.ts │ │ ├── platform.service.license.ts │ │ └── platform.service.ts ├── schema-bootstrap │ ├── module.schema-bootstrap.ts │ └── stubs │ │ ├── cache.stub.ts │ │ ├── db.stub.ts │ │ ├── event-bus-providers.stub.ts │ │ ├── event-bus.stub.ts │ │ ├── microservices.stub.ts │ │ └── search.stub.ts ├── schema-contract │ ├── README.md │ ├── classify │ │ └── build-report.ts │ ├── deprecation │ │ ├── parser.ts │ │ └── registry.ts │ ├── diff │ │ ├── cleanup.ts │ │ ├── diff-core.ts │ │ ├── diff-enum.ts │ │ ├── diff-scalar.ts │ │ └── diff-types.ts │ ├── governance │ │ ├── apply-overrides.ts │ │ ├── codeowners.ts │ │ └── reviews.ts │ ├── model │ │ ├── change-entry.ts │ │ ├── change-report.ts │ │ ├── deprecation-entry.ts │ │ ├── index.ts │ │ ├── schema-snapshot.ts │ │ ├── shared-types.ts │ │ └── types.ts │ └── snapshot │ │ └── load-baseline.ts ├── services │ ├── adapters │ │ ├── activity-adapter │ │ │ ├── activity.adapter.module.ts │ │ │ ├── activity.adapter.ts │ │ │ └── dto │ │ │ │ ├── activity.dto.input.base.ts │ │ │ │ ├── activity.dto.input.calendar.event.created.ts │ │ │ │ ├── activity.dto.input.callout.discussion.comment.ts │ │ │ │ ├── activity.dto.input.callout.link.created.ts │ │ │ │ ├── activity.dto.input.callout.memo.created.ts │ │ │ │ ├── activity.dto.input.callout.post.comment.ts │ │ │ │ ├── activity.dto.input.callout.post.created.ts │ │ │ │ ├── activity.dto.input.callout.published.ts │ │ │ │ ├── activity.dto.input.callout.whiteboard.content.modified.ts │ │ │ │ ├── activity.dto.input.callout.whiteboard.created.ts │ │ │ │ ├── activity.dto.input.member.joined.ts │ │ │ │ ├── activity.dto.input.message.removed.ts │ │ │ │ ├── activity.dto.input.subspace.created.ts │ │ │ │ └── activity.dto.input.update.sent.ts │ │ ├── ai-server-adapter │ │ │ ├── ai.server.adapter.module.ts │ │ │ ├── ai.server.adapter.ts │ │ │ ├── dto │ │ │ │ ├── ai.server.adapter.dto.invocation.ts │ │ │ │ └── ai.server.adapter.dto.update.ai.persona.service.ts │ │ │ └── index.ts │ │ ├── communication-adapter │ │ │ ├── communication-adapter.module.ts │ │ │ ├── communication.adapter.ts │ │ │ ├── dto │ │ │ │ ├── communication.dto.add.reaction.ts │ │ │ │ ├── communication.dto.direct.messaging.start.ts │ │ │ │ ├── communication.dto.direct.messaging.stop.ts │ │ │ │ ├── communication.dto.message.delete.ts │ │ │ │ ├── communication.dto.message.send.ts │ │ │ │ ├── communication.dto.remove.reaction.ts │ │ │ │ ├── communication.dto.room.result.ts │ │ │ │ └── communications.dto.message.reply.ts │ │ │ └── index.ts │ │ ├── notification-adapter │ │ │ ├── dto │ │ │ │ ├── notification.dto.input.base.ts │ │ │ │ ├── organization │ │ │ │ │ ├── notification.dto.input.organization.mention.ts │ │ │ │ │ └── notification.input.organization.message.ts │ │ │ │ ├── platform │ │ │ │ │ ├── notification.dto.input.platform.forum.discussion.comment.ts │ │ │ │ │ ├── notification.dto.input.platform.forum.discussion.created.ts │ │ │ │ │ ├── notification.dto.input.platform.global.role.change.ts │ │ │ │ │ ├── notification.dto.input.platform.space.created.ts │ │ │ │ │ ├── notification.dto.input.platform.user.registered.ts │ │ │ │ │ └── notification.dto.input.platform.user.removed.ts │ │ │ │ ├── space │ │ │ │ │ ├── notification.dto.input.space.collaboration.callout.comment.ts │ │ │ │ │ ├── notification.dto.input.space.collaboration.callout.contribution.created.ts │ │ │ │ │ ├── notification.dto.input.space.collaboration.callout.post.contribution.comment.ts │ │ │ │ │ ├── notification.dto.input.space.collaboration.callout.published.ts │ │ │ │ │ ├── notification.dto.input.space.communication.leads.message.ts │ │ │ │ │ ├── notification.dto.input.space.communication.update.sent.ts │ │ │ │ │ ├── notification.dto.input.space.communication.user.comment.reply.ts │ │ │ │ │ ├── notification.dto.input.space.community.application.ts │ │ │ │ │ ├── notification.dto.input.space.community.calendar.event.comment.ts │ │ │ │ │ ├── notification.dto.input.space.community.calendar.event.created.ts │ │ │ │ │ ├── notification.dto.input.space.community.invitation.platform.ts │ │ │ │ │ ├── notification.dto.input.space.community.invitation.ts │ │ │ │ │ ├── notification.dto.input.space.community.invitation.vc.declined.ts │ │ │ │ │ ├── notification.dto.input.space.community.invitation.vc.ts │ │ │ │ │ └── notification.dto.input.space.community.new.member.ts │ │ │ │ └── user │ │ │ │ │ ├── notification.dto.input.entity.mentions.ts │ │ │ │ │ ├── notification.dto.input.user.mention.ts │ │ │ │ │ ├── notification.dto.input.user.message.ts │ │ │ │ │ └── notification.dto.input.user.space.community.application.declined.ts │ │ │ ├── index.ts │ │ │ ├── notification.adapter.module.ts │ │ │ ├── notification.adapter.ts │ │ │ ├── notification.organization.adapter.ts │ │ │ ├── notification.platform.adapter.ts │ │ │ ├── notification.space.adapter.ts │ │ │ ├── notification.user.adapter.ts │ │ │ └── notification.virtual.contributor.adapter.ts │ │ ├── notification-external-adapter │ │ │ ├── notification.external.adapter.module.ts │ │ │ └── notification.external.adapter.ts │ │ ├── notification-in-app-adapter │ │ │ ├── dto │ │ │ │ └── notification.in.app.payload.base.ts │ │ │ ├── notification.in.app.adapter.module.ts │ │ │ ├── notification.in.app.adapter.spec.ts │ │ │ └── notification.in.app.adapter.ts │ │ └── storage │ │ │ ├── index.ts │ │ │ ├── local-storage │ │ │ └── local.storage.adapter.ts │ │ │ ├── storage.service.interface.ts │ │ │ ├── storage.service.module.ts │ │ │ ├── storage.service.provider.ts │ │ │ └── storage.service.type.ts │ ├── ai-server │ │ ├── ai-persona-engine-adapter │ │ │ ├── ai.persona.engine.adapter.module.ts │ │ │ ├── ai.persona.engine.adapter.ts │ │ │ └── dto │ │ │ │ ├── ai.persona.engine.adapter.dto.base.response.ts │ │ │ │ ├── ai.persona.engine.adapter.dto.base.ts │ │ │ │ ├── ai.persona.engine.adapter.dto.invocation.input.ts │ │ │ │ └── ai.persona.engine.adapter.dto.question.response.ts │ │ ├── ai-persona │ │ │ ├── ai.persona.entity.ts │ │ │ ├── ai.persona.external.config.resolver.fields.ts │ │ │ ├── ai.persona.interface.ts │ │ │ ├── ai.persona.module.ts │ │ │ ├── ai.persona.resolver.fields.ts │ │ │ ├── ai.persona.resolver.mutations.ts │ │ │ ├── ai.persona.service.authorization.ts │ │ │ ├── ai.persona.service.ts │ │ │ ├── dto │ │ │ │ ├── ai.persona.dto.create.ts │ │ │ │ ├── ai.persona.dto.delete.ts │ │ │ │ ├── ai.persona.dto.update.ts │ │ │ │ ├── ai.persona.invocation │ │ │ │ │ ├── ai.persona.invocation.dto.input.ts │ │ │ │ │ ├── invocation.operation.dto.ts │ │ │ │ │ ├── invocation.result.action.dto.ts │ │ │ │ │ ├── result.handler.dto.ts │ │ │ │ │ └── room.details.dto.ts │ │ │ │ ├── external.config.ts │ │ │ │ ├── index.ts │ │ │ │ └── interaction.message.ts │ │ │ ├── index.ts │ │ │ └── transformers │ │ │ │ └── prompt.graph.transformer.ts │ │ ├── ai-server │ │ │ ├── ai.server.entity.ts │ │ │ ├── ai.server.interface.ts │ │ │ ├── ai.server.module.ts │ │ │ ├── ai.server.resolver.fields.ts │ │ │ ├── ai.server.resolver.mutations.ts │ │ │ ├── ai.server.resolver.queries.ts │ │ │ ├── ai.server.service.authorization.ts │ │ │ ├── ai.server.service.ts │ │ │ └── dto │ │ │ │ ├── ai.server.dto.assign.role.user.ts │ │ │ │ ├── ai.server.dto.ingest.ai.persona.service.ts │ │ │ │ └── ai.server.dto.remove.role.user.ts │ │ └── prompt-graph │ │ │ ├── config │ │ │ └── prompt.graph.expert.json │ │ │ └── dto │ │ │ ├── prompt.graph.data.point.dto.ts │ │ │ ├── prompt.graph.data.struct.dto.ts │ │ │ ├── prompt.graph.dto.ts │ │ │ ├── prompt.graph.edge.dto.ts │ │ │ └── prompt.graph.node.dto.ts │ ├── api │ │ ├── activity-log │ │ │ ├── activity.log.builder.interface.ts │ │ │ ├── activity.log.builder.service.ts │ │ │ ├── activity.log.module.ts │ │ │ ├── activity.log.resolver.queries.ts │ │ │ ├── activity.log.resolver.subscriptions.ts │ │ │ ├── activity.log.service.ts │ │ │ ├── dto │ │ │ │ ├── activity.log.dto.collaboration.input.ts │ │ │ │ ├── activity.log.dto.entry.base.interface.ts │ │ │ │ ├── activity.log.dto.entry.calendar.event.created.ts │ │ │ │ ├── activity.log.dto.entry.callout.discussion.comment.ts │ │ │ │ ├── activity.log.dto.entry.callout.link.created.ts │ │ │ │ ├── activity.log.dto.entry.callout.memo.created.ts │ │ │ │ ├── activity.log.dto.entry.callout.post.comment.ts │ │ │ │ ├── activity.log.dto.entry.callout.post.created.ts │ │ │ │ ├── activity.log.dto.entry.callout.published.ts │ │ │ │ ├── activity.log.dto.entry.callout.whiteboard.content.modified.ts │ │ │ │ ├── activity.log.dto.entry.callout.whiteboard.created.ts │ │ │ │ ├── activity.log.dto.entry.member.joined.interface.ts │ │ │ │ ├── activity.log.dto.entry.subspace.created.ts │ │ │ │ ├── activity.log.dto.entry.update.sent.ts │ │ │ │ ├── activity.log.entry.interface.ts │ │ │ │ └── subscriptions │ │ │ │ │ ├── activity.created.dto.ts │ │ │ │ │ ├── activity.log.activity.created.subscription.input.ts │ │ │ │ │ └── activity.log.dto.activity.created.subscription.payload.ts │ │ │ └── index.ts │ │ ├── conversion │ │ │ ├── conversion.module.ts │ │ │ ├── conversion.resolver.mutations.ts │ │ │ ├── conversion.service.ts │ │ │ └── dto │ │ │ │ ├── conversion.dto.vc.space.to.vc.kb.ts │ │ │ │ ├── convert.dto.space.l1.to.space.l0.input.ts │ │ │ │ ├── convert.dto.space.l1.to.space.l2.input.ts │ │ │ │ └── convert.dto.space.l2.to.space.l1.input.ts │ │ ├── input-creator │ │ │ ├── dto │ │ │ │ ├── index.ts │ │ │ │ └── input.creator.query.results.ts │ │ │ ├── input.creator.module.ts │ │ │ ├── input.creator.resolver.fields.ts │ │ │ ├── input.creator.resolver.queries.ts │ │ │ └── input.creator.service.ts │ │ ├── lookup-by-name │ │ │ ├── dto │ │ │ │ ├── index.ts │ │ │ │ └── lookup.by.name.query.results.ts │ │ │ ├── index.ts │ │ │ ├── lookup.by.name.module.ts │ │ │ ├── lookup.by.name.resolver.fields.ts │ │ │ ├── lookup.by.name.resolver.queries.ts │ │ │ └── lookup.by.name.service.ts │ │ ├── lookup │ │ │ ├── dto │ │ │ │ ├── index.ts │ │ │ │ ├── lookup.query.my.privileges.results.ts │ │ │ │ └── lookup.query.results.ts │ │ │ ├── index.ts │ │ │ ├── lookup.module.ts │ │ │ ├── lookup.resolver.fields.ts │ │ │ ├── lookup.resolver.my.privileges.fields.ts │ │ │ ├── lookup.resolver.queries.ts │ │ │ └── lookup.service.ts │ │ ├── me │ │ │ ├── dto │ │ │ │ ├── index.ts │ │ │ │ ├── me.application.result.ts │ │ │ │ ├── me.conversations.result.ts │ │ │ │ ├── me.invitation.result.ts │ │ │ │ ├── me.membership.result.ts │ │ │ │ ├── me.notification.event.filter.dto.input.ts │ │ │ │ ├── me.pending.membership.result.ts │ │ │ │ ├── me.query.results.ts │ │ │ │ ├── me.space.pending.membership.info.ts │ │ │ │ └── my.journeys.results.ts │ │ │ ├── index.ts │ │ │ ├── me.conversations.resolver.fields.ts │ │ │ ├── me.module.ts │ │ │ ├── me.resolver.fields.ts │ │ │ ├── me.resolver.queries.ts │ │ │ ├── me.service.ts │ │ │ └── space.membership.type.ts │ │ ├── notification-recipients │ │ │ ├── dto │ │ │ │ ├── notification.recipients.dto.input.ts │ │ │ │ └── notification.recipients.dto.result.ts │ │ │ ├── notification.recipients.module.ts │ │ │ ├── notification.recipients.resolver.fields.ts │ │ │ ├── notification.recipients.resolver.queries.ts │ │ │ └── notification.recipients.service.ts │ │ ├── registration │ │ │ ├── registration.module.ts │ │ │ ├── registration.resolver.mutations.ts │ │ │ └── registration.service.ts │ │ ├── roles │ │ │ ├── dto │ │ │ │ ├── roles.dto.input.organization.ts │ │ │ │ ├── roles.dto.input.user.ts │ │ │ │ ├── roles.dto.input.virtual.contributor.ts │ │ │ │ ├── roles.dto.result.community.application.ts │ │ │ │ ├── roles.dto.result.community.invitation.ts │ │ │ │ ├── roles.dto.result.community.ts │ │ │ │ ├── roles.dto.result.contributor.ts │ │ │ │ ├── roles.dto.result.organization.ts │ │ │ │ ├── roles.dto.result.space.ts │ │ │ │ └── roles.dto.result.ts │ │ │ ├── index.ts │ │ │ ├── roles.module.ts │ │ │ ├── roles.resolver.fields.ts │ │ │ ├── roles.resolver.queries.spec.ts │ │ │ ├── roles.resolver.queries.ts │ │ │ ├── roles.service.spec.ts │ │ │ ├── roles.service.ts │ │ │ └── util │ │ │ │ ├── get.organization.roles.for.user.entity.data.ts │ │ │ │ ├── get.organization.roles.for.user.query.result.ts │ │ │ │ ├── get.space.roles.for.contributor.entity.data.ts │ │ │ │ ├── get.space.roles.for.contributor.query.result.ts │ │ │ │ ├── group.credentials.by.entity.ts │ │ │ │ ├── map.organization.credentials.to.roles.ts │ │ │ │ └── map.space.credentials.to.roles.ts │ │ ├── search │ │ │ ├── dto │ │ │ │ ├── inputs │ │ │ │ │ ├── index.ts │ │ │ │ │ ├── search.dto.input.ts │ │ │ │ │ └── search.filter.input.ts │ │ │ │ └── results │ │ │ │ │ ├── base.search.hit.ts │ │ │ │ │ ├── index.ts │ │ │ │ │ ├── search.category.result.ts │ │ │ │ │ ├── search.result.base.ts │ │ │ │ │ ├── search.result.callout.ts │ │ │ │ │ ├── search.result.dto.ts │ │ │ │ │ ├── search.result.interface.ts │ │ │ │ │ ├── search.result.organization.ts │ │ │ │ │ ├── search.result.post.ts │ │ │ │ │ ├── search.result.space.ts │ │ │ │ │ └── search.result.user.ts │ │ │ ├── extract │ │ │ │ ├── build.multi.search.request.items.ts │ │ │ │ ├── build.search.query.ts │ │ │ │ ├── search.extract.service.ts │ │ │ │ └── search.index.ts │ │ │ ├── ingest │ │ │ │ ├── get.index.pattern.ts │ │ │ │ ├── index.ts │ │ │ │ ├── search.ingest.module.ts │ │ │ │ ├── search.ingest.service.spec.ts │ │ │ │ └── search.ingest.service.ts │ │ │ ├── result │ │ │ │ └── search.result.service.ts │ │ │ ├── search.category.ts │ │ │ ├── search.module.ts │ │ │ ├── search.resolver.queries.ts │ │ │ ├── search.result.type.ts │ │ │ ├── search.service.spec.ts │ │ │ ├── search.service.ts │ │ │ └── util │ │ │ │ ├── calculate.search.cursor.ts │ │ │ │ ├── index.ts │ │ │ │ ├── try.parse.search.cursor.ts │ │ │ │ └── validate.search.parameters.ts │ │ └── url-resolver │ │ │ ├── dto │ │ │ ├── url.resolver.query.calendar.result.ts │ │ │ ├── url.resolver.query.callouts.set.result.ts │ │ │ ├── url.resolver.query.closest.ancestor.ts │ │ │ ├── url.resolver.query.collaboration.result.ts │ │ │ ├── url.resolver.query.innovation.pack.result.ts │ │ │ ├── url.resolver.query.results.ts │ │ │ ├── url.resolver.query.space.result.ts │ │ │ ├── url.resolver.query.templates.set.result.ts │ │ │ ├── url.resolver.query.virtual.contributor.result.ts │ │ │ ├── url.resolver.result.state.ts │ │ │ └── url.resolver.result.ts │ │ │ ├── url.resolver.exception.ts │ │ │ ├── url.resolver.module.ts │ │ │ ├── url.resolver.resolver.queries.ts │ │ │ ├── url.resolver.service.ts │ │ │ └── url.resolver.utils.ts │ ├── auth-reset │ │ ├── auth-reset.payload.interface.ts │ │ ├── publisher │ │ │ ├── auth-reset.module.ts │ │ │ ├── auth-reset.service.spec.ts │ │ │ └── auth-reset.service.ts │ │ ├── reset.event.type.ts │ │ └── subscriber │ │ │ ├── auth-reset.controller.spec.ts │ │ │ ├── auth-reset.controller.ts │ │ │ └── auth-reset.subscriber.module.ts │ ├── collaborative-document-integration │ │ ├── collaborative-document-integration.controller.ts │ │ ├── collaborative-document-integration.module.ts │ │ ├── collaborative-document-integration.service.ts │ │ ├── index.ts │ │ ├── inputs │ │ │ ├── base.input.data.ts │ │ │ ├── fetch.input.data.ts │ │ │ ├── index.ts │ │ │ ├── info.input.data.ts │ │ │ ├── memo.contributions.input.data.ts │ │ │ ├── save.input.data.ts │ │ │ └── who.input.data.ts │ │ ├── outputs │ │ │ ├── base.output.data.ts │ │ │ ├── fetch.output.data.ts │ │ │ ├── health.check.output.data.ts │ │ │ ├── index.ts │ │ │ ├── info.output.data.ts │ │ │ └── save.output.data.ts │ │ └── types │ │ │ ├── error.codes.ts │ │ │ ├── event.pattern.enum.ts │ │ │ ├── index.ts │ │ │ ├── message.pattern.enum.ts │ │ │ └── user.info.ts │ ├── external │ │ ├── avatar-creator │ │ │ ├── avatar.creator.module.ts │ │ │ └── avatar.creator.service.ts │ │ ├── elasticsearch │ │ │ ├── contribution-reporter │ │ │ │ ├── contribution.reporter.module.ts │ │ │ │ ├── contribution.reporter.service.spec.ts │ │ │ │ ├── contribution.reporter.service.ts │ │ │ │ └── index.ts │ │ │ ├── elasticsearch-client │ │ │ │ ├── elasticsearch.client.factory.ts │ │ │ │ ├── elasticsearch.client.provider.ts │ │ │ │ └── index.ts │ │ │ ├── events │ │ │ │ ├── base.contribution.ts │ │ │ │ ├── callout │ │ │ │ │ ├── callout.comment.created.ts │ │ │ │ │ ├── callout.created.ts │ │ │ │ │ ├── callout.memo.created.ts │ │ │ │ │ ├── callout.post.comment.created.ts │ │ │ │ │ ├── callout.post.created.ts │ │ │ │ │ ├── callout.whiteboard.created.ts │ │ │ │ │ └── callout.whiteboard.edited.ts │ │ │ │ ├── index.ts │ │ │ │ ├── journey │ │ │ │ │ ├── challenge.content.edited.ts │ │ │ │ │ ├── challenge.created.ts │ │ │ │ │ ├── challenge.joined.ts │ │ │ │ │ ├── opportunity.content.edited.ts │ │ │ │ │ ├── opportunity.created.ts │ │ │ │ │ ├── opportunity.joined.ts │ │ │ │ │ ├── space.content.edited.ts │ │ │ │ │ └── space.joined.ts │ │ │ │ └── update.created.ts │ │ │ ├── guidance-reporter │ │ │ │ ├── guidance.reporter.module.ts │ │ │ │ ├── guidance.reporter.service.spec.ts │ │ │ │ ├── guidance.reporter.service.ts │ │ │ │ ├── guidance.usage.document.ts │ │ │ │ ├── guidance.usage.ts │ │ │ │ └── index.ts │ │ │ ├── types │ │ │ │ ├── author-details.ts │ │ │ │ ├── contribution-details.ts │ │ │ │ ├── contribution.document.ts │ │ │ │ ├── contribution.type.ts │ │ │ │ ├── elastic.response.error.ts │ │ │ │ └── index.ts │ │ │ └── utils │ │ │ │ ├── handle.elastic.error.ts │ │ │ │ ├── index.ts │ │ │ │ ├── is.elastic.error.ts │ │ │ │ └── is.elastic.response.error.ts │ │ ├── geo-location │ │ │ ├── geo.information.ts │ │ │ ├── geo.location.cache.metadata.ts │ │ │ ├── geo.location.module.ts │ │ │ ├── geo.location.service.spec.ts │ │ │ ├── geo.location.service.ts │ │ │ ├── geo.plugin.response.ts │ │ │ ├── index.ts │ │ │ └── utils │ │ │ │ └── is.limit.exceeded.ts │ │ ├── geoapify │ │ │ ├── geo.location.ts │ │ │ ├── geoapify.geocode.response.ts │ │ │ ├── geoapify.module.ts │ │ │ ├── geoapify.service.ts │ │ │ └── index.ts │ │ ├── wingback-webhooks │ │ │ ├── get.contract.validation.pipe.spec.ts │ │ │ ├── get.contract.validation.pipe.ts │ │ │ ├── index.ts │ │ │ ├── types.ts │ │ │ ├── wingback.webhook.controller.spec.ts │ │ │ ├── wingback.webhook.controller.ts │ │ │ ├── wingback.webhook.interceptor.spec.ts │ │ │ ├── wingback.webhook.interceptor.ts │ │ │ ├── wingback.webhook.module.ts │ │ │ ├── wingback.webhook.service.spec.ts │ │ │ ├── wingback.webhook.service.ts │ │ │ └── wingback.webhook.unauthorized.exception.ts │ │ └── wingback │ │ │ ├── exceptions │ │ │ ├── wingback.customer.not.created.ts │ │ │ ├── wingback.customer.not.found.ts │ │ │ ├── wingback.customer.not.removed.ts │ │ │ └── wingback.exception.ts │ │ │ ├── index.ts │ │ │ ├── types │ │ │ ├── entitlement-details │ │ │ │ └── wingback.feature.detail.per.unit.ts │ │ │ ├── wingback.type.contract.ts │ │ │ ├── wingback.type.create.customer.ts │ │ │ ├── wingback.type.entitlement.ts │ │ │ ├── wingback.type.error.ts │ │ │ ├── wingback.type.feature.ts │ │ │ └── wingback.type.update.customer.ts │ │ │ ├── wingback.manager.module.ts │ │ │ └── wingback.manager.ts │ ├── file-integration │ │ ├── file.integration.controller.ts │ │ ├── file.integration.module.ts │ │ ├── file.integration.service.ts │ │ ├── index.ts │ │ ├── inputs │ │ │ ├── base.input.data.ts │ │ │ ├── file.info.input.data.ts │ │ │ └── index.ts │ │ ├── outputs │ │ │ ├── base.output.data.ts │ │ │ ├── file.info.output.data.ts │ │ │ ├── health.check.output.data.ts │ │ │ └── index.ts │ │ └── types │ │ │ └── message.pattern.ts │ ├── infrastructure │ │ ├── contributor-lookup │ │ │ ├── contributor.lookup.module.ts │ │ │ └── contributor.lookup.service.ts │ │ ├── entity-resolver │ │ │ ├── community.resolver.service.ts │ │ │ ├── contribution.resolver.service.ts │ │ │ ├── entity.resolver.module.ts │ │ │ ├── identity.resolver.service.ts │ │ │ ├── room.resolver.service.ts │ │ │ └── timeline.resolver.service.ts │ │ ├── event-bus │ │ │ ├── event.bus.mocking.spec.ts │ │ │ ├── event.bus.module.ts │ │ │ ├── handlers │ │ │ │ ├── index.ts │ │ │ │ ├── ingest.body.of.knowledge.result.handler.ts │ │ │ │ ├── ingest.website.result.handler.ts │ │ │ │ └── invoke.engine.result.handler.ts │ │ │ ├── messages │ │ │ │ ├── index.ts │ │ │ │ ├── ingest.body.of.knowledge.command.ts │ │ │ │ ├── ingest.body.of.knowledge.result.event.ts │ │ │ │ ├── ingest.website.result.event.ts │ │ │ │ ├── ingest.website.ts │ │ │ │ ├── invoke.engine.result.ts │ │ │ │ ├── invoke.engine.ts │ │ │ │ └── types │ │ │ │ │ ├── index.ts │ │ │ │ │ ├── ingest.error.ts │ │ │ │ │ ├── ingestion.purpose.ts │ │ │ │ │ └── ingestion.result.ts │ │ │ ├── publisher.ts │ │ │ ├── rabbitmq.connection.factory.ts │ │ │ ├── rabbitmq.connection.module.ts │ │ │ └── subscriber.ts │ │ ├── kratos │ │ │ ├── kratos.module.ts │ │ │ ├── kratos.service.ts │ │ │ └── types │ │ │ │ ├── kratos.payload.ts │ │ │ │ ├── ory.default.identity.schema.ts │ │ │ │ ├── ory.traits.ts │ │ │ │ └── session.invalid.enum.ts │ │ ├── license-entitlement-usage │ │ │ ├── license.entitlement.usage.module.ts │ │ │ ├── license.entitlement.usage.service.spec.ts │ │ │ └── license.entitlement.usage.service.ts │ │ ├── naming │ │ │ ├── generate.name.id.spec.ts │ │ │ ├── generate.name.id.test.data.ts │ │ │ ├── generate.name.id.ts │ │ │ ├── naming.module.ts │ │ │ ├── naming.service.spec.ts │ │ │ └── naming.service.ts │ │ ├── space-filter │ │ │ ├── dto │ │ │ │ └── space.filter.dto.input.ts │ │ │ ├── space.filter.module.ts │ │ │ └── space.filter.service.ts │ │ ├── storage-aggregator-resolver │ │ │ ├── storage.aggregator.resolver.module.ts │ │ │ └── storage.aggregator.resolver.service.ts │ │ ├── synapse │ │ │ ├── synapse-admin.service.ts │ │ │ └── synapse.module.ts │ │ ├── temporary-storage │ │ │ ├── temporary.storage.module.ts │ │ │ └── temporary.storage.service.ts │ │ └── url-generator │ │ │ ├── index.ts │ │ │ ├── url.generator.module.ts │ │ │ ├── url.generator.service.cache.ts │ │ │ └── url.generator.service.ts │ ├── room-integration │ │ ├── room.controller.service.ts │ │ └── room.integration.module.ts │ ├── session-sync │ │ ├── kratos-session.repository.ts │ │ ├── session-sync.module.ts │ │ ├── session-sync.service.spec.ts │ │ └── session-sync.service.ts │ ├── subscriptions │ │ └── subscription-service │ │ │ ├── dto │ │ │ ├── activity.created.subscription.payload.ts │ │ │ ├── in.app.notification.counter.subscription.payload.ts │ │ │ ├── in.app.notification.received.subscription.payload.ts │ │ │ ├── index.ts │ │ │ ├── room.event.subscription.payload.ts │ │ │ └── virtual.contributor.updated.subscription.payload.ts │ │ │ ├── index.ts │ │ │ ├── subscription.publish.service.ts │ │ │ ├── subscription.read.service.ts │ │ │ ├── subscription.service.module.ts │ │ │ └── typed.pub.sub.engine.ts │ ├── task │ │ ├── index.ts │ │ ├── task.error.interface.ts │ │ ├── task.interface.ts │ │ ├── task.list.key.ts │ │ ├── task.module.ts │ │ ├── task.result.interface.ts │ │ ├── task.service.spec.ts │ │ ├── task.service.ts │ │ └── types.ts │ ├── util │ │ ├── ack.ts │ │ └── index.ts │ └── whiteboard-integration │ │ ├── inputs │ │ ├── access.granted.input.data.ts │ │ ├── base.input.data.ts │ │ ├── content.modified.input.data.ts │ │ ├── contribution.input.data.ts │ │ ├── fetch.input.data.ts │ │ ├── index.ts │ │ ├── info.input.data.ts │ │ ├── save.input.data.ts │ │ └── who.input.data.ts │ │ ├── outputs │ │ ├── base.output.data.ts │ │ ├── fetch.output.data.ts │ │ ├── health.check.output.data.ts │ │ ├── index.ts │ │ ├── info.output.data.ts │ │ └── save.output.data.ts │ │ ├── types │ │ ├── event.pattern.ts │ │ ├── index.ts │ │ ├── message.pattern.ts │ │ └── user.info.ts │ │ ├── whiteboard.integration.controller.ts │ │ ├── whiteboard.integration.module.ts │ │ └── whiteboard.integration.service.ts ├── tools │ └── schema │ │ ├── README-override.md │ │ ├── README.md │ │ ├── __tests__ │ │ ├── deprecation-grace.spec.ts │ │ └── lifecycle-window.spec.ts │ │ ├── deprecation-parser.ts │ │ ├── diff-schema.ts │ │ ├── override-fetch.ts │ │ ├── override.ts │ │ ├── print-schema.ts │ │ ├── sort-sdl.ts │ │ ├── types.ts │ │ └── validate-artifacts.ts └── types │ ├── alkemio.config.ts │ ├── context.type.ts │ ├── deep.select.properties.ts │ ├── entity.relations.ts │ ├── graphql │ ├── graphql.context.ts │ ├── index.ts │ └── subscriptions │ │ └── subscriptionRelatedTypes.ts │ ├── index.ts │ ├── prefixed.type.ts │ └── typed.logger.service.interface.ts ├── test ├── config │ ├── jest.config.ci.js │ ├── jest.config.ci.nocov.js │ └── jest.config.js ├── data │ ├── agent.mock.ts │ ├── agentInfo.mock.ts │ ├── applications.mock.ts │ ├── organization.mock.ts │ ├── roles-user.mock.ts │ ├── space.mock.ts │ ├── user.mock.ts │ ├── user.settings.mock.ts │ └── virtual-contributor.mock.ts ├── mocks │ ├── account.service.mock.ts │ ├── agent.service.mock.ts │ ├── application.service.mock.ts │ ├── auth.reset.service.mock.ts │ ├── authorization.policy.service.mock.ts │ ├── authorization.service.mock.ts │ ├── cache-manager.mock.ts │ ├── communication.adapter.mock.ts │ ├── community.resolver.service.mock.ts │ ├── community.service.mock.ts │ ├── config.service.mock.ts │ ├── contributor.lookup.service.mock.ts │ ├── elasticsearch.client.provider.mock.ts │ ├── entity.manager.provider.mock.ts │ ├── geo.location.service.mock.ts │ ├── http.service.mock.ts │ ├── index.ts │ ├── invitation.service.mock.ts │ ├── matrix.adapter.service.mock.ts │ ├── notification.external.adapter.mock.ts │ ├── notification.platform.adapter.service.mock.ts │ ├── notification.space.adapter.service.mock.ts │ ├── notifications.service.mock.ts │ ├── organization.lookup.service.mock.ts │ ├── organization.service.mock.ts │ ├── platform.authorization.service.mock.ts │ ├── search │ │ ├── search.extract.service.mock.ts │ │ ├── search.ingest.service.mock.ts │ │ └── search.result.service.mock.ts │ ├── space.filter.service.mock.ts │ ├── space.service.mock.ts │ ├── task.service.mock.ts │ ├── user.authorization.service.mock.ts │ ├── user.group.service.mock.ts │ ├── user.lookup.service.mock.ts │ ├── user.service.mock.ts │ ├── virtual.contributor.lookup.service.mock.ts │ ├── virtual.contributor.service.mock.ts │ └── winston.provider.mock.ts ├── schema-contract │ ├── coverage │ │ ├── classify.spec.ts │ │ ├── diff-types.extra.spec.ts │ │ ├── governance.codeowners.spec.ts │ │ ├── governance.reviews.spec.ts │ │ ├── load-baseline.spec.ts │ │ └── registry.spec.ts │ ├── deprecation │ │ └── parser.spec.ts │ ├── diff │ │ ├── enum-lifecycle.spec.ts │ │ └── scalar-classification.spec.ts │ ├── governance │ │ └── override.spec.ts │ ├── integration │ │ ├── baseline.spec.ts │ │ ├── breaking-block.spec.ts │ │ └── breaking-override.spec.ts │ └── perf │ │ └── large-schema.spec.ts ├── schema │ ├── bootstrap-parity.spec.ts │ ├── deprecation-parser.spec.ts │ ├── diff-baseline.spec.ts │ ├── diff-basic.spec.ts │ ├── diff-enum-removal.spec.ts │ ├── diff-invalid-deprecation.spec.ts │ ├── diff-nullability.spec.ts │ ├── diff-performance.spec.ts │ ├── diff-scalar.spec.ts │ ├── override-eval.spec.ts │ ├── override-fetch.spec.ts │ ├── override-sync.spec.ts │ └── validate-artifacts.spec.ts ├── unit │ ├── domain │ │ └── common │ │ │ └── whiteboard │ │ │ ├── whiteboard.guest-access.service.spec.ts │ │ │ └── whiteboard.resolver.mutations.spec.ts │ ├── library │ │ └── postgres-convergence │ │ │ └── csvTransform.spec.ts │ └── services │ │ └── whiteboard-integration │ │ └── whiteboard.integration.service.spec.ts └── utils │ ├── async-to-throw.ts │ ├── default.mocker.factory.ts │ ├── event-bus.mock.factory.ts │ ├── index.ts │ ├── mock.type.ts │ ├── mock.value.provider.ts │ ├── pub.sub.engine.mock.factory.ts │ ├── public-part.ts │ ├── repository.mock.factory.ts │ ├── repository.provider.mock.factory.ts │ └── test-data.ts ├── tsconfig.build.json ├── tsconfig.json └── uploads └── hello-alkemio.txt /.build/ory/kratos/courier-templates/recovery/invalid/email.subject.gotmpl: -------------------------------------------------------------------------------- 1 | [Alkemio] Account access attempted 2 | -------------------------------------------------------------------------------- /.build/ory/kratos/courier-templates/recovery_code/invalid/email.subject.gotmpl: -------------------------------------------------------------------------------- 1 | [Alkemio] Account access attempted 2 | -------------------------------------------------------------------------------- /.build/ory/kratos/courier-templates/verification/invalid/email.subject.gotmpl: -------------------------------------------------------------------------------- 1 | [Alkemio] Someone tried to verify this email address 2 | -------------------------------------------------------------------------------- /.build/ory/kratos/courier-templates/verification/valid/email.subject.gotmpl: -------------------------------------------------------------------------------- 1 | [Alkemio] Please verify your email address! 2 | -------------------------------------------------------------------------------- /.build/ory/kratos/courier-templates/verification_code/invalid/email.subject.gotmpl: -------------------------------------------------------------------------------- 1 | [Alkemio] Someone tried to verify this email address 2 | -------------------------------------------------------------------------------- /.build/ory/kratos/courier-templates/verification_code/valid/email.subject.gotmpl: -------------------------------------------------------------------------------- 1 | [Alkemio] Please verify your email address! 2 | -------------------------------------------------------------------------------- /.build/ory/kratos/identity.schema.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alkem-io/server/HEAD/.build/ory/kratos/identity.schema.json -------------------------------------------------------------------------------- /.build/ory/kratos/kratos.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alkem-io/server/HEAD/.build/ory/kratos/kratos.yml -------------------------------------------------------------------------------- /.build/ory/kratos/oidc/oidc.github.jsonnet: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alkem-io/server/HEAD/.build/ory/kratos/oidc/oidc.github.jsonnet -------------------------------------------------------------------------------- /.build/ory/kratos/oidc/oidc.linkedin.jsonnet: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alkem-io/server/HEAD/.build/ory/kratos/oidc/oidc.linkedin.jsonnet -------------------------------------------------------------------------------- /.build/ory/kratos/oidc/oidc.microsoft.jsonnet: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alkem-io/server/HEAD/.build/ory/kratos/oidc/oidc.microsoft.jsonnet -------------------------------------------------------------------------------- /.build/ory/oathkeeper/access-rules.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alkem-io/server/HEAD/.build/ory/oathkeeper/access-rules.yml -------------------------------------------------------------------------------- /.build/ory/oathkeeper/id_token.jwks.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alkem-io/server/HEAD/.build/ory/oathkeeper/id_token.jwks.json -------------------------------------------------------------------------------- /.build/ory/oathkeeper/oathkeeper.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alkem-io/server/HEAD/.build/ory/oathkeeper/oathkeeper.yml -------------------------------------------------------------------------------- /.build/postgres/entrypoint-wrapper.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alkem-io/server/HEAD/.build/postgres/entrypoint-wrapper.sh -------------------------------------------------------------------------------- /.build/postgres/init-multiple-databases.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alkem-io/server/HEAD/.build/postgres/init-multiple-databases.sh -------------------------------------------------------------------------------- /.build/synapse/alkemio.matrix.host.log.config: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alkem-io/server/HEAD/.build/synapse/alkemio.matrix.host.log.config -------------------------------------------------------------------------------- /.build/synapse/alkemio.matrix.host.signing.key: -------------------------------------------------------------------------------- 1 | ed25519 a_uvmV Ns3vabIpDbRd54mzAdjsFqCnijrXjie+GthjnFy5ZII 2 | -------------------------------------------------------------------------------- /.build/synapse/homeserver.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alkem-io/server/HEAD/.build/synapse/homeserver.yaml -------------------------------------------------------------------------------- /.build/synapse/log.config: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alkem-io/server/HEAD/.build/synapse/log.config -------------------------------------------------------------------------------- /.build/synapse/media_store/README.md: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /.build/traefik/http.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alkem-io/server/HEAD/.build/traefik/http.yml -------------------------------------------------------------------------------- /.build/traefik/traefik.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alkem-io/server/HEAD/.build/traefik/traefik.yml -------------------------------------------------------------------------------- /.coderabbit.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alkem-io/server/HEAD/.coderabbit.yaml -------------------------------------------------------------------------------- /.dockerignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alkem-io/server/HEAD/.dockerignore -------------------------------------------------------------------------------- /.editorconfig: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alkem-io/server/HEAD/.editorconfig -------------------------------------------------------------------------------- /.env.docker: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alkem-io/server/HEAD/.env.docker -------------------------------------------------------------------------------- /.gitattributes: -------------------------------------------------------------------------------- 1 | * text=auto eol=lf 2 | -------------------------------------------------------------------------------- /.github/CODEOWNERS: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alkem-io/server/HEAD/.github/CODEOWNERS -------------------------------------------------------------------------------- /.github/ISSUE_TEMPLATE/bug_report.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alkem-io/server/HEAD/.github/ISSUE_TEMPLATE/bug_report.md -------------------------------------------------------------------------------- /.github/ISSUE_TEMPLATE/epic.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alkem-io/server/HEAD/.github/ISSUE_TEMPLATE/epic.md -------------------------------------------------------------------------------- /.github/ISSUE_TEMPLATE/feature_request.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alkem-io/server/HEAD/.github/ISSUE_TEMPLATE/feature_request.md -------------------------------------------------------------------------------- /.github/ISSUE_TEMPLATE/user_story.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alkem-io/server/HEAD/.github/ISSUE_TEMPLATE/user_story.md -------------------------------------------------------------------------------- /.github/PULL_REQUEST_TEMPLATE.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alkem-io/server/HEAD/.github/PULL_REQUEST_TEMPLATE.md -------------------------------------------------------------------------------- /.github/config.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alkem-io/server/HEAD/.github/config.yml -------------------------------------------------------------------------------- /.github/copilot-instructions.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alkem-io/server/HEAD/.github/copilot-instructions.md -------------------------------------------------------------------------------- /.github/prompts/alkemio.pr.prompt.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alkem-io/server/HEAD/.github/prompts/alkemio.pr.prompt.md -------------------------------------------------------------------------------- /.github/prompts/speckit.analyze.prompt.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alkem-io/server/HEAD/.github/prompts/speckit.analyze.prompt.md -------------------------------------------------------------------------------- /.github/prompts/speckit.checklist.prompt.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alkem-io/server/HEAD/.github/prompts/speckit.checklist.prompt.md -------------------------------------------------------------------------------- /.github/prompts/speckit.clarify.prompt.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alkem-io/server/HEAD/.github/prompts/speckit.clarify.prompt.md -------------------------------------------------------------------------------- /.github/prompts/speckit.constitution.prompt.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alkem-io/server/HEAD/.github/prompts/speckit.constitution.prompt.md -------------------------------------------------------------------------------- /.github/prompts/speckit.implement.prompt.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alkem-io/server/HEAD/.github/prompts/speckit.implement.prompt.md -------------------------------------------------------------------------------- /.github/prompts/speckit.plan.prompt.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alkem-io/server/HEAD/.github/prompts/speckit.plan.prompt.md -------------------------------------------------------------------------------- /.github/prompts/speckit.specify.prompt.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alkem-io/server/HEAD/.github/prompts/speckit.specify.prompt.md -------------------------------------------------------------------------------- /.github/prompts/speckit.tasks.prompt.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alkem-io/server/HEAD/.github/prompts/speckit.tasks.prompt.md -------------------------------------------------------------------------------- /.github/stale.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alkem-io/server/HEAD/.github/stale.yml -------------------------------------------------------------------------------- /.github/workflows/PR_REVIEW_METRICS.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alkem-io/server/HEAD/.github/workflows/PR_REVIEW_METRICS.md -------------------------------------------------------------------------------- /.github/workflows/build-release-docker-hub.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alkem-io/server/HEAD/.github/workflows/build-release-docker-hub.yml -------------------------------------------------------------------------------- /.github/workflows/review-router.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alkem-io/server/HEAD/.github/workflows/review-router.yml -------------------------------------------------------------------------------- /.github/workflows/schema-baseline.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alkem-io/server/HEAD/.github/workflows/schema-baseline.yml -------------------------------------------------------------------------------- /.github/workflows/schema-contract.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alkem-io/server/HEAD/.github/workflows/schema-contract.yml -------------------------------------------------------------------------------- /.github/workflows/scripts/schema-gate.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alkem-io/server/HEAD/.github/workflows/scripts/schema-gate.ts -------------------------------------------------------------------------------- /.github/workflows/trigger-e2e-tests.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alkem-io/server/HEAD/.github/workflows/trigger-e2e-tests.yml -------------------------------------------------------------------------------- /.github/workflows/trigger-sonarqube.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alkem-io/server/HEAD/.github/workflows/trigger-sonarqube.yml -------------------------------------------------------------------------------- /.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alkem-io/server/HEAD/.gitignore -------------------------------------------------------------------------------- /.lintstagedrc.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alkem-io/server/HEAD/.lintstagedrc.json -------------------------------------------------------------------------------- /.npmignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alkem-io/server/HEAD/.npmignore -------------------------------------------------------------------------------- /.npmrc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alkem-io/server/HEAD/.npmrc -------------------------------------------------------------------------------- /.prettierignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alkem-io/server/HEAD/.prettierignore -------------------------------------------------------------------------------- /.prettierrc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alkem-io/server/HEAD/.prettierrc -------------------------------------------------------------------------------- /.scripts/backups/.env.sample: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alkem-io/server/HEAD/.scripts/backups/.env.sample -------------------------------------------------------------------------------- /.scripts/backups/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alkem-io/server/HEAD/.scripts/backups/README.md -------------------------------------------------------------------------------- /.scripts/backups/recreate_databases.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alkem-io/server/HEAD/.scripts/backups/recreate_databases.sh -------------------------------------------------------------------------------- /.scripts/backups/restore_latest_backup.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alkem-io/server/HEAD/.scripts/backups/restore_latest_backup.sh -------------------------------------------------------------------------------- /.scripts/backups/restore_latest_backup_set.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alkem-io/server/HEAD/.scripts/backups/restore_latest_backup_set.sh -------------------------------------------------------------------------------- /.scripts/backups/utils/check_dependencies.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alkem-io/server/HEAD/.scripts/backups/utils/check_dependencies.sh -------------------------------------------------------------------------------- /.scripts/backups/utils/configure_aws.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alkem-io/server/HEAD/.scripts/backups/utils/configure_aws.sh -------------------------------------------------------------------------------- /.scripts/backups/utils/detect_os.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alkem-io/server/HEAD/.scripts/backups/utils/detect_os.sh -------------------------------------------------------------------------------- /.scripts/backups/utils/install_aws.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alkem-io/server/HEAD/.scripts/backups/utils/install_aws.sh -------------------------------------------------------------------------------- /.scripts/backups/utils/manage_database.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alkem-io/server/HEAD/.scripts/backups/utils/manage_database.sh -------------------------------------------------------------------------------- /.scripts/bootstrap_synapse.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alkem-io/server/HEAD/.scripts/bootstrap_synapse.sh -------------------------------------------------------------------------------- /.scripts/create_db.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alkem-io/server/HEAD/.scripts/create_db.sh -------------------------------------------------------------------------------- /.scripts/migrations/.env.sample: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alkem-io/server/HEAD/.scripts/migrations/.env.sample -------------------------------------------------------------------------------- /.scripts/migrations/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alkem-io/server/HEAD/.scripts/migrations/README.md -------------------------------------------------------------------------------- /.scripts/migrations/compare_sql_tables.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alkem-io/server/HEAD/.scripts/migrations/compare_sql_tables.sh -------------------------------------------------------------------------------- /.scripts/migrations/create_snapshot.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alkem-io/server/HEAD/.scripts/migrations/create_snapshot.sh -------------------------------------------------------------------------------- /.scripts/migrations/create_synapse_snapshot.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alkem-io/server/HEAD/.scripts/migrations/create_synapse_snapshot.sh -------------------------------------------------------------------------------- /.scripts/migrations/db/reference_schema.sql: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alkem-io/server/HEAD/.scripts/migrations/db/reference_schema.sql -------------------------------------------------------------------------------- /.scripts/migrations/export_to_csv.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alkem-io/server/HEAD/.scripts/migrations/export_to_csv.sh -------------------------------------------------------------------------------- /.scripts/migrations/import_from_csv.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alkem-io/server/HEAD/.scripts/migrations/import_from_csv.sh -------------------------------------------------------------------------------- /.scripts/migrations/restore_snapshot.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alkem-io/server/HEAD/.scripts/migrations/restore_snapshot.sh -------------------------------------------------------------------------------- /.scripts/migrations/run_validate_migration.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alkem-io/server/HEAD/.scripts/migrations/run_validate_migration.sh -------------------------------------------------------------------------------- /.scripts/migrations/test.sql: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alkem-io/server/HEAD/.scripts/migrations/test.sql -------------------------------------------------------------------------------- /.scripts/rename.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alkem-io/server/HEAD/.scripts/rename.sh -------------------------------------------------------------------------------- /.scripts/schema.sql: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alkem-io/server/HEAD/.scripts/schema.sql -------------------------------------------------------------------------------- /.scripts/tests/recreate-db.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alkem-io/server/HEAD/.scripts/tests/recreate-db.ts -------------------------------------------------------------------------------- /.sonarlint/connectedMode.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alkem-io/server/HEAD/.sonarlint/connectedMode.json -------------------------------------------------------------------------------- /.specify/memory/constitution.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alkem-io/server/HEAD/.specify/memory/constitution.md -------------------------------------------------------------------------------- /.specify/scripts/bash/check-prerequisites.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alkem-io/server/HEAD/.specify/scripts/bash/check-prerequisites.sh -------------------------------------------------------------------------------- /.specify/scripts/bash/common.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alkem-io/server/HEAD/.specify/scripts/bash/common.sh -------------------------------------------------------------------------------- /.specify/scripts/bash/create-new-feature.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alkem-io/server/HEAD/.specify/scripts/bash/create-new-feature.sh -------------------------------------------------------------------------------- /.specify/scripts/bash/setup-plan.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alkem-io/server/HEAD/.specify/scripts/bash/setup-plan.sh -------------------------------------------------------------------------------- /.specify/scripts/bash/update-agent-context.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alkem-io/server/HEAD/.specify/scripts/bash/update-agent-context.sh -------------------------------------------------------------------------------- /.specify/templates/agent-file-template.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alkem-io/server/HEAD/.specify/templates/agent-file-template.md -------------------------------------------------------------------------------- /.specify/templates/checklist-template.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alkem-io/server/HEAD/.specify/templates/checklist-template.md -------------------------------------------------------------------------------- /.specify/templates/plan-template.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alkem-io/server/HEAD/.specify/templates/plan-template.md -------------------------------------------------------------------------------- /.specify/templates/spec-template.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alkem-io/server/HEAD/.specify/templates/spec-template.md -------------------------------------------------------------------------------- /.specify/templates/tasks-template.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alkem-io/server/HEAD/.specify/templates/tasks-template.md -------------------------------------------------------------------------------- /.travis.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alkem-io/server/HEAD/.travis.yml -------------------------------------------------------------------------------- /.vscode/extensions.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alkem-io/server/HEAD/.vscode/extensions.json -------------------------------------------------------------------------------- /.vscode/launch.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alkem-io/server/HEAD/.vscode/launch.json -------------------------------------------------------------------------------- /.vscode/mcp.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alkem-io/server/HEAD/.vscode/mcp.json -------------------------------------------------------------------------------- /.vscode/settings.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alkem-io/server/HEAD/.vscode/settings.json -------------------------------------------------------------------------------- /.vscode/tasks.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alkem-io/server/HEAD/.vscode/tasks.json -------------------------------------------------------------------------------- /Dockerfile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alkem-io/server/HEAD/Dockerfile -------------------------------------------------------------------------------- /LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alkem-io/server/HEAD/LICENSE -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alkem-io/server/HEAD/README.md -------------------------------------------------------------------------------- /agents.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alkem-io/server/HEAD/agents.md -------------------------------------------------------------------------------- /alkemio.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alkem-io/server/HEAD/alkemio.yml -------------------------------------------------------------------------------- /contract-tests/change-report.contract.spec.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alkem-io/server/HEAD/contract-tests/change-report.contract.spec.ts -------------------------------------------------------------------------------- /contract-tests/schema.contract.spec.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alkem-io/server/HEAD/contract-tests/schema.contract.spec.ts -------------------------------------------------------------------------------- /contract-tests/schema.parity.spec.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alkem-io/server/HEAD/contract-tests/schema.parity.spec.ts -------------------------------------------------------------------------------- /contract-tests/schema.performance.spec.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alkem-io/server/HEAD/contract-tests/schema.performance.spec.ts -------------------------------------------------------------------------------- /docs/AI.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alkem-io/server/HEAD/docs/AI.md -------------------------------------------------------------------------------- /docs/DataManagement.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alkem-io/server/HEAD/docs/DataManagement.md -------------------------------------------------------------------------------- /docs/Design.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alkem-io/server/HEAD/docs/Design.md -------------------------------------------------------------------------------- /docs/Developing.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alkem-io/server/HEAD/docs/Developing.md -------------------------------------------------------------------------------- /docs/Guest-Users.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alkem-io/server/HEAD/docs/Guest-Users.md -------------------------------------------------------------------------------- /docs/Notifications.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alkem-io/server/HEAD/docs/Notifications.md -------------------------------------------------------------------------------- /docs/Pagination.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alkem-io/server/HEAD/docs/Pagination.md -------------------------------------------------------------------------------- /docs/PublishingImages.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alkem-io/server/HEAD/docs/PublishingImages.md -------------------------------------------------------------------------------- /docs/QA.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alkem-io/server/HEAD/docs/QA.md -------------------------------------------------------------------------------- /docs/Running.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alkem-io/server/HEAD/docs/Running.md -------------------------------------------------------------------------------- /docs/Templates.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alkem-io/server/HEAD/docs/Templates.md -------------------------------------------------------------------------------- /docs/authentication/authentication_flow.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alkem-io/server/HEAD/docs/authentication/authentication_flow.md -------------------------------------------------------------------------------- /docs/authentication/authentication_flow.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alkem-io/server/HEAD/docs/authentication/authentication_flow.svg -------------------------------------------------------------------------------- /docs/authorization-forest.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alkem-io/server/HEAD/docs/authorization-forest.md -------------------------------------------------------------------------------- /docs/credential-based-authorization.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alkem-io/server/HEAD/docs/credential-based-authorization.md -------------------------------------------------------------------------------- /docs/database-definitions.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alkem-io/server/HEAD/docs/database-definitions.md -------------------------------------------------------------------------------- /docs/diagrams/.$templates.drawio.bkp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alkem-io/server/HEAD/docs/diagrams/.$templates.drawio.bkp -------------------------------------------------------------------------------- /docs/diagrams/login-session-extend-flow: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alkem-io/server/HEAD/docs/diagrams/login-session-extend-flow -------------------------------------------------------------------------------- /docs/diagrams/templates.drawio: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alkem-io/server/HEAD/docs/diagrams/templates.drawio -------------------------------------------------------------------------------- /docs/event-bus-testing.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alkem-io/server/HEAD/docs/event-bus-testing.md -------------------------------------------------------------------------------- /docs/graphql-typeorm-usage.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alkem-io/server/HEAD/docs/graphql-typeorm-usage.md -------------------------------------------------------------------------------- /docs/how-to-add-activity.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alkem-io/server/HEAD/docs/how-to-add-activity.md -------------------------------------------------------------------------------- /docs/images/alkemio-pagination-design.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alkem-io/server/HEAD/docs/images/alkemio-pagination-design.svg -------------------------------------------------------------------------------- /docs/images/alkemio-server-design.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alkem-io/server/HEAD/docs/images/alkemio-server-design.png -------------------------------------------------------------------------------- /docs/images/alkemio-server-layer-diagram.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alkem-io/server/HEAD/docs/images/alkemio-server-layer-diagram.png -------------------------------------------------------------------------------- /docs/images/alkemio-services-networking.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alkem-io/server/HEAD/docs/images/alkemio-services-networking.png -------------------------------------------------------------------------------- /docs/images/login-session-extend-flow.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alkem-io/server/HEAD/docs/images/login-session-extend-flow.png -------------------------------------------------------------------------------- /docs/images/pagination-efficiency.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alkem-io/server/HEAD/docs/images/pagination-efficiency.png -------------------------------------------------------------------------------- /docs/images/pagination-time-complexity.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alkem-io/server/HEAD/docs/images/pagination-time-complexity.png -------------------------------------------------------------------------------- /docs/images/templates-domain.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alkem-io/server/HEAD/docs/images/templates-domain.png -------------------------------------------------------------------------------- /docs/images/templates-platform.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alkem-io/server/HEAD/docs/images/templates-platform.png -------------------------------------------------------------------------------- /docs/notification-entity-fk-mapping.ods: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alkem-io/server/HEAD/docs/notification-entity-fk-mapping.ods -------------------------------------------------------------------------------- /docs/search/Search.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alkem-io/server/HEAD/docs/search/Search.md -------------------------------------------------------------------------------- /docs/search/ingest-detailed-design.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alkem-io/server/HEAD/docs/search/ingest-detailed-design.svg -------------------------------------------------------------------------------- /docs/search/search-detailed-design.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alkem-io/server/HEAD/docs/search/search-detailed-design.svg -------------------------------------------------------------------------------- /eslint.config.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alkem-io/server/HEAD/eslint.config.js -------------------------------------------------------------------------------- /graphql-samples/mutations/communication/send-community-leads-message: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /graphql-samples/mutations/create/create-actor: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alkem-io/server/HEAD/graphql-samples/mutations/create/create-actor -------------------------------------------------------------------------------- /graphql-samples/mutations/create/create-user: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alkem-io/server/HEAD/graphql-samples/mutations/create/create-user -------------------------------------------------------------------------------- /graphql-samples/mutations/delete/delete-actor: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alkem-io/server/HEAD/graphql-samples/mutations/delete/delete-actor -------------------------------------------------------------------------------- /graphql-samples/mutations/delete/delete-canvas: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alkem-io/server/HEAD/graphql-samples/mutations/delete/delete-canvas -------------------------------------------------------------------------------- /graphql-samples/mutations/delete/delete-post: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alkem-io/server/HEAD/graphql-samples/mutations/delete/delete-post -------------------------------------------------------------------------------- /graphql-samples/mutations/delete/delete-space: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alkem-io/server/HEAD/graphql-samples/mutations/delete/delete-space -------------------------------------------------------------------------------- /graphql-samples/mutations/delete/delete-user: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alkem-io/server/HEAD/graphql-samples/mutations/delete/delete-user -------------------------------------------------------------------------------- /graphql-samples/mutations/update/update-actor: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alkem-io/server/HEAD/graphql-samples/mutations/update/update-actor -------------------------------------------------------------------------------- /graphql-samples/mutations/update/update-post: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alkem-io/server/HEAD/graphql-samples/mutations/update/update-post -------------------------------------------------------------------------------- /graphql-samples/mutations/update/update-space: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alkem-io/server/HEAD/graphql-samples/mutations/update/update-space -------------------------------------------------------------------------------- /graphql-samples/mutations/update/update-user: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alkem-io/server/HEAD/graphql-samples/mutations/update/update-user -------------------------------------------------------------------------------- /graphql-samples/mutations/update/update-visual: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alkem-io/server/HEAD/graphql-samples/mutations/update/update-visual -------------------------------------------------------------------------------- /graphql-samples/mutations/update/upload-avatar: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alkem-io/server/HEAD/graphql-samples/mutations/update/upload-avatar -------------------------------------------------------------------------------- /graphql-samples/queries/config/auth-providers: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alkem-io/server/HEAD/graphql-samples/queries/config/auth-providers -------------------------------------------------------------------------------- /graphql-samples/queries/config/full-config: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alkem-io/server/HEAD/graphql-samples/queries/config/full-config -------------------------------------------------------------------------------- /graphql-samples/queries/config/template-config: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alkem-io/server/HEAD/graphql-samples/queries/config/template-config -------------------------------------------------------------------------------- /graphql-samples/queries/configuration-template: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alkem-io/server/HEAD/graphql-samples/queries/configuration-template -------------------------------------------------------------------------------- /graphql-samples/queries/roles-organization: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alkem-io/server/HEAD/graphql-samples/queries/roles-organization -------------------------------------------------------------------------------- /graphql-samples/queries/roles-user: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alkem-io/server/HEAD/graphql-samples/queries/roles-user -------------------------------------------------------------------------------- /graphql-samples/queries/search/simple-search: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alkem-io/server/HEAD/graphql-samples/queries/search/simple-search -------------------------------------------------------------------------------- /graphql-samples/queries/spaces-visibility: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alkem-io/server/HEAD/graphql-samples/queries/spaces-visibility -------------------------------------------------------------------------------- /graphql-samples/queries/users-filtered: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alkem-io/server/HEAD/graphql-samples/queries/users-filtered -------------------------------------------------------------------------------- /graphql-samples/subscriptions/challengeCreated: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alkem-io/server/HEAD/graphql-samples/subscriptions/challengeCreated -------------------------------------------------------------------------------- /manifests/25-server-deployment-dev.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alkem-io/server/HEAD/manifests/25-server-deployment-dev.yaml -------------------------------------------------------------------------------- /manifests/26-server-migration.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alkem-io/server/HEAD/manifests/26-server-migration.yaml -------------------------------------------------------------------------------- /manifests/30-server-service.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alkem-io/server/HEAD/manifests/30-server-service.yaml -------------------------------------------------------------------------------- /nest-cli.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alkem-io/server/HEAD/nest-cli.json -------------------------------------------------------------------------------- /package.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alkem-io/server/HEAD/package.json -------------------------------------------------------------------------------- /pnpm-lock.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alkem-io/server/HEAD/pnpm-lock.yaml -------------------------------------------------------------------------------- /quickstart-services-ai-debug.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alkem-io/server/HEAD/quickstart-services-ai-debug.yml -------------------------------------------------------------------------------- /quickstart-services-ai.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alkem-io/server/HEAD/quickstart-services-ai.yml -------------------------------------------------------------------------------- /quickstart-services-kratos-debug.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alkem-io/server/HEAD/quickstart-services-kratos-debug.yml -------------------------------------------------------------------------------- /quickstart-services.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alkem-io/server/HEAD/quickstart-services.yml -------------------------------------------------------------------------------- /schema-baseline.graphql: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alkem-io/server/HEAD/schema-baseline.graphql -------------------------------------------------------------------------------- /schema-lite.graphql: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alkem-io/server/HEAD/schema-lite.graphql -------------------------------------------------------------------------------- /schema.graphql: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alkem-io/server/HEAD/schema.graphql -------------------------------------------------------------------------------- /scripts/db/reset-postgres.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alkem-io/server/HEAD/scripts/db/reset-postgres.sh -------------------------------------------------------------------------------- /scripts/git/replicate-pr.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alkem-io/server/HEAD/scripts/git/replicate-pr.sh -------------------------------------------------------------------------------- /scripts/schema/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alkem-io/server/HEAD/scripts/schema/README.md -------------------------------------------------------------------------------- /scripts/schema/diff-schema.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alkem-io/server/HEAD/scripts/schema/diff-schema.ts -------------------------------------------------------------------------------- /scripts/schema/generate-schema.snapshot.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alkem-io/server/HEAD/scripts/schema/generate-schema.snapshot.ts -------------------------------------------------------------------------------- /scripts/schema/post-pr-comment.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alkem-io/server/HEAD/scripts/schema/post-pr-comment.ts -------------------------------------------------------------------------------- /scripts/schema/publish-baseline.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alkem-io/server/HEAD/scripts/schema/publish-baseline.ts -------------------------------------------------------------------------------- /scripts/schema/schema-gate.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alkem-io/server/HEAD/scripts/schema/schema-gate.ts -------------------------------------------------------------------------------- /sonar-project.properties: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alkem-io/server/HEAD/sonar-project.properties -------------------------------------------------------------------------------- /specs/001-create-a-new/spec.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alkem-io/server/HEAD/specs/001-create-a-new/spec.md -------------------------------------------------------------------------------- /specs/001-memo-collection-contribution/plan.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alkem-io/server/HEAD/specs/001-memo-collection-contribution/plan.md -------------------------------------------------------------------------------- /specs/001-memo-collection-contribution/spec.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alkem-io/server/HEAD/specs/001-memo-collection-contribution/spec.md -------------------------------------------------------------------------------- /specs/001-toggle-whiteboard-guest/plan.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alkem-io/server/HEAD/specs/001-toggle-whiteboard-guest/plan.md -------------------------------------------------------------------------------- /specs/001-toggle-whiteboard-guest/research.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alkem-io/server/HEAD/specs/001-toggle-whiteboard-guest/research.md -------------------------------------------------------------------------------- /specs/001-toggle-whiteboard-guest/spec.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alkem-io/server/HEAD/specs/001-toggle-whiteboard-guest/spec.md -------------------------------------------------------------------------------- /specs/001-toggle-whiteboard-guest/tasks.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alkem-io/server/HEAD/specs/001-toggle-whiteboard-guest/tasks.md -------------------------------------------------------------------------------- /specs/002-schema-contract-diffing/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alkem-io/server/HEAD/specs/002-schema-contract-diffing/README.md -------------------------------------------------------------------------------- /specs/002-schema-contract-diffing/coverage.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alkem-io/server/HEAD/specs/002-schema-contract-diffing/coverage.md -------------------------------------------------------------------------------- /specs/002-schema-contract-diffing/plan.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alkem-io/server/HEAD/specs/002-schema-contract-diffing/plan.md -------------------------------------------------------------------------------- /specs/002-schema-contract-diffing/research.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alkem-io/server/HEAD/specs/002-schema-contract-diffing/research.md -------------------------------------------------------------------------------- /specs/002-schema-contract-diffing/spec.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alkem-io/server/HEAD/specs/002-schema-contract-diffing/spec.md -------------------------------------------------------------------------------- /specs/002-schema-contract-diffing/tasks.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alkem-io/server/HEAD/specs/002-schema-contract-diffing/tasks.md -------------------------------------------------------------------------------- /specs/003-domain-event-standard/spec.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alkem-io/server/HEAD/specs/003-domain-event-standard/spec.md -------------------------------------------------------------------------------- /specs/005-governance-pr-template/spec.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alkem-io/server/HEAD/specs/005-governance-pr-template/spec.md -------------------------------------------------------------------------------- /specs/009-domain-modeling-formalism/spec.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alkem-io/server/HEAD/specs/009-domain-modeling-formalism/spec.md -------------------------------------------------------------------------------- /specs/010-synapse-kratos-oidc/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alkem-io/server/HEAD/specs/010-synapse-kratos-oidc/README.md -------------------------------------------------------------------------------- /specs/010-synapse-kratos-oidc/analysis.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alkem-io/server/HEAD/specs/010-synapse-kratos-oidc/analysis.md -------------------------------------------------------------------------------- /specs/010-synapse-kratos-oidc/plan.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alkem-io/server/HEAD/specs/010-synapse-kratos-oidc/plan.md -------------------------------------------------------------------------------- /specs/010-synapse-kratos-oidc/quickstart.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alkem-io/server/HEAD/specs/010-synapse-kratos-oidc/quickstart.md -------------------------------------------------------------------------------- /specs/010-synapse-kratos-oidc/spec.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alkem-io/server/HEAD/specs/010-synapse-kratos-oidc/spec.md -------------------------------------------------------------------------------- /specs/010-synapse-kratos-oidc/tasks.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alkem-io/server/HEAD/specs/010-synapse-kratos-oidc/tasks.md -------------------------------------------------------------------------------- /specs/011-clarify-override-semantics/spec.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alkem-io/server/HEAD/specs/011-clarify-override-semantics/spec.md -------------------------------------------------------------------------------- /specs/012-generate-schema-baseline/plan.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alkem-io/server/HEAD/specs/012-generate-schema-baseline/plan.md -------------------------------------------------------------------------------- /specs/012-generate-schema-baseline/research.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alkem-io/server/HEAD/specs/012-generate-schema-baseline/research.md -------------------------------------------------------------------------------- /specs/012-generate-schema-baseline/spec.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alkem-io/server/HEAD/specs/012-generate-schema-baseline/spec.md -------------------------------------------------------------------------------- /specs/012-generate-schema-baseline/tasks.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alkem-io/server/HEAD/specs/012-generate-schema-baseline/tasks.md -------------------------------------------------------------------------------- /specs/012-oidc-golang-service/data-model.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alkem-io/server/HEAD/specs/012-oidc-golang-service/data-model.md -------------------------------------------------------------------------------- /specs/012-oidc-golang-service/plan.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alkem-io/server/HEAD/specs/012-oidc-golang-service/plan.md -------------------------------------------------------------------------------- /specs/012-oidc-golang-service/quickstart.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alkem-io/server/HEAD/specs/012-oidc-golang-service/quickstart.md -------------------------------------------------------------------------------- /specs/012-oidc-golang-service/research.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alkem-io/server/HEAD/specs/012-oidc-golang-service/research.md -------------------------------------------------------------------------------- /specs/012-oidc-golang-service/spec.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alkem-io/server/HEAD/specs/012-oidc-golang-service/spec.md -------------------------------------------------------------------------------- /specs/012-oidc-golang-service/tasks.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alkem-io/server/HEAD/specs/012-oidc-golang-service/tasks.md -------------------------------------------------------------------------------- /specs/013-guest-contributions-policy/plan.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alkem-io/server/HEAD/specs/013-guest-contributions-policy/plan.md -------------------------------------------------------------------------------- /specs/013-guest-contributions-policy/spec.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alkem-io/server/HEAD/specs/013-guest-contributions-policy/spec.md -------------------------------------------------------------------------------- /specs/013-guest-contributions-policy/tasks.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alkem-io/server/HEAD/specs/013-guest-contributions-policy/tasks.md -------------------------------------------------------------------------------- /specs/014-callouts-tag-cloud/data-model.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alkem-io/server/HEAD/specs/014-callouts-tag-cloud/data-model.md -------------------------------------------------------------------------------- /specs/014-callouts-tag-cloud/plan.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alkem-io/server/HEAD/specs/014-callouts-tag-cloud/plan.md -------------------------------------------------------------------------------- /specs/014-callouts-tag-cloud/quickstart.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alkem-io/server/HEAD/specs/014-callouts-tag-cloud/quickstart.md -------------------------------------------------------------------------------- /specs/014-callouts-tag-cloud/research.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alkem-io/server/HEAD/specs/014-callouts-tag-cloud/research.md -------------------------------------------------------------------------------- /specs/014-callouts-tag-cloud/spec.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alkem-io/server/HEAD/specs/014-callouts-tag-cloud/spec.md -------------------------------------------------------------------------------- /specs/014-callouts-tag-cloud/tasks.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alkem-io/server/HEAD/specs/014-callouts-tag-cloud/tasks.md -------------------------------------------------------------------------------- /specs/014-user-owned-conversations/plan.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alkem-io/server/HEAD/specs/014-user-owned-conversations/plan.md -------------------------------------------------------------------------------- /specs/014-user-owned-conversations/spec.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alkem-io/server/HEAD/specs/014-user-owned-conversations/spec.md -------------------------------------------------------------------------------- /specs/015-sonarqube-analysis/data-model.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alkem-io/server/HEAD/specs/015-sonarqube-analysis/data-model.md -------------------------------------------------------------------------------- /specs/015-sonarqube-analysis/plan.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alkem-io/server/HEAD/specs/015-sonarqube-analysis/plan.md -------------------------------------------------------------------------------- /specs/015-sonarqube-analysis/quickstart.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alkem-io/server/HEAD/specs/015-sonarqube-analysis/quickstart.md -------------------------------------------------------------------------------- /specs/015-sonarqube-analysis/research.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alkem-io/server/HEAD/specs/015-sonarqube-analysis/research.md -------------------------------------------------------------------------------- /specs/015-sonarqube-analysis/spec.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alkem-io/server/HEAD/specs/015-sonarqube-analysis/spec.md -------------------------------------------------------------------------------- /specs/015-sonarqube-analysis/tasks.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alkem-io/server/HEAD/specs/015-sonarqube-analysis/tasks.md -------------------------------------------------------------------------------- /specs/016-notification-email-blacklist/plan.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alkem-io/server/HEAD/specs/016-notification-email-blacklist/plan.md -------------------------------------------------------------------------------- /specs/016-notification-email-blacklist/spec.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alkem-io/server/HEAD/specs/016-notification-email-blacklist/spec.md -------------------------------------------------------------------------------- /specs/017-postgres-db-convergence/plan.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alkem-io/server/HEAD/specs/017-postgres-db-convergence/plan.md -------------------------------------------------------------------------------- /specs/017-postgres-db-convergence/research.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alkem-io/server/HEAD/specs/017-postgres-db-convergence/research.md -------------------------------------------------------------------------------- /specs/017-postgres-db-convergence/spec.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alkem-io/server/HEAD/specs/017-postgres-db-convergence/spec.md -------------------------------------------------------------------------------- /specs/017-postgres-db-convergence/tasks.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alkem-io/server/HEAD/specs/017-postgres-db-convergence/tasks.md -------------------------------------------------------------------------------- /specs/018-postgres-db-convergence/plan.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alkem-io/server/HEAD/specs/018-postgres-db-convergence/plan.md -------------------------------------------------------------------------------- /specs/018-postgres-db-convergence/research.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alkem-io/server/HEAD/specs/018-postgres-db-convergence/research.md -------------------------------------------------------------------------------- /specs/018-postgres-db-convergence/spec.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alkem-io/server/HEAD/specs/018-postgres-db-convergence/spec.md -------------------------------------------------------------------------------- /specs/018-postgres-db-convergence/tasks.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alkem-io/server/HEAD/specs/018-postgres-db-convergence/tasks.md -------------------------------------------------------------------------------- /src/apm/apm.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alkem-io/server/HEAD/src/apm/apm.ts -------------------------------------------------------------------------------- /src/apm/decorators/index.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alkem-io/server/HEAD/src/apm/decorators/index.ts -------------------------------------------------------------------------------- /src/apm/decorators/util/copy.metadata.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alkem-io/server/HEAD/src/apm/decorators/util/copy.metadata.ts -------------------------------------------------------------------------------- /src/apm/decorators/util/index.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alkem-io/server/HEAD/src/apm/decorators/util/index.ts -------------------------------------------------------------------------------- /src/apm/decorators/util/instrument.method.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alkem-io/server/HEAD/src/apm/decorators/util/instrument.method.ts -------------------------------------------------------------------------------- /src/apm/index.ts: -------------------------------------------------------------------------------- 1 | export * from './apm'; 2 | -------------------------------------------------------------------------------- /src/apm/plugins/apm.apollo.plugin.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alkem-io/server/HEAD/src/apm/plugins/apm.apollo.plugin.ts -------------------------------------------------------------------------------- /src/apm/plugins/index.ts: -------------------------------------------------------------------------------- 1 | export * from './apm.apollo.plugin'; 2 | -------------------------------------------------------------------------------- /src/app.controller.spec.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alkem-io/server/HEAD/src/app.controller.spec.ts -------------------------------------------------------------------------------- /src/app.controller.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alkem-io/server/HEAD/src/app.controller.ts -------------------------------------------------------------------------------- /src/app.module.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alkem-io/server/HEAD/src/app.module.ts -------------------------------------------------------------------------------- /src/common/app.id.provider.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alkem-io/server/HEAD/src/common/app.id.provider.ts -------------------------------------------------------------------------------- /src/common/constants/authorization/index.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alkem-io/server/HEAD/src/common/constants/authorization/index.ts -------------------------------------------------------------------------------- /src/common/constants/communication.constants.ts: -------------------------------------------------------------------------------- 1 | export const COMMUNICATION_PLATFORM_SPACEID = 'platform'; 2 | -------------------------------------------------------------------------------- /src/common/constants/index.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alkem-io/server/HEAD/src/common/constants/index.ts -------------------------------------------------------------------------------- /src/common/constants/providers.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alkem-io/server/HEAD/src/common/constants/providers.ts -------------------------------------------------------------------------------- /src/common/constants/rabbitmq.constants.ts: -------------------------------------------------------------------------------- 1 | export const RABBITMQ_EXCHANGE_NAME_DIRECT = 2 | 'alkemio-graphql-subscriptions-direct'; 3 | -------------------------------------------------------------------------------- /src/common/decorators/headers.decorator.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alkem-io/server/HEAD/src/common/decorators/headers.decorator.ts -------------------------------------------------------------------------------- /src/common/decorators/index.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alkem-io/server/HEAD/src/common/decorators/index.ts -------------------------------------------------------------------------------- /src/common/decorators/profiling.decorator.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alkem-io/server/HEAD/src/common/decorators/profiling.decorator.ts -------------------------------------------------------------------------------- /src/common/enums/account.role.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alkem-io/server/HEAD/src/common/enums/account.role.ts -------------------------------------------------------------------------------- /src/common/enums/account.type.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alkem-io/server/HEAD/src/common/enums/account.type.ts -------------------------------------------------------------------------------- /src/common/enums/activity.event.type.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alkem-io/server/HEAD/src/common/enums/activity.event.type.ts -------------------------------------------------------------------------------- /src/common/enums/agent.type.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alkem-io/server/HEAD/src/common/enums/agent.type.ts -------------------------------------------------------------------------------- /src/common/enums/ai.persona.engine.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alkem-io/server/HEAD/src/common/enums/ai.persona.engine.ts -------------------------------------------------------------------------------- /src/common/enums/ai.server.role.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alkem-io/server/HEAD/src/common/enums/ai.server.role.ts -------------------------------------------------------------------------------- /src/common/enums/alkemio.error.status.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alkem-io/server/HEAD/src/common/enums/alkemio.error.status.ts -------------------------------------------------------------------------------- /src/common/enums/authentication.provider.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alkem-io/server/HEAD/src/common/enums/authentication.provider.ts -------------------------------------------------------------------------------- /src/common/enums/authentication.type.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alkem-io/server/HEAD/src/common/enums/authentication.type.ts -------------------------------------------------------------------------------- /src/common/enums/authorization.credential.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alkem-io/server/HEAD/src/common/enums/authorization.credential.ts -------------------------------------------------------------------------------- /src/common/enums/authorization.policy.type.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alkem-io/server/HEAD/src/common/enums/authorization.policy.type.ts -------------------------------------------------------------------------------- /src/common/enums/authorization.privilege.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alkem-io/server/HEAD/src/common/enums/authorization.privilege.ts -------------------------------------------------------------------------------- /src/common/enums/calendar.event.type.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alkem-io/server/HEAD/src/common/enums/calendar.event.type.ts -------------------------------------------------------------------------------- /src/common/enums/callout.contribution.type.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alkem-io/server/HEAD/src/common/enums/callout.contribution.type.ts -------------------------------------------------------------------------------- /src/common/enums/callout.framing.type.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alkem-io/server/HEAD/src/common/enums/callout.framing.type.ts -------------------------------------------------------------------------------- /src/common/enums/callout.visibility.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alkem-io/server/HEAD/src/common/enums/callout.visibility.ts -------------------------------------------------------------------------------- /src/common/enums/callouts.set.type.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alkem-io/server/HEAD/src/common/enums/callouts.set.type.ts -------------------------------------------------------------------------------- /src/common/enums/content.update.policy.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alkem-io/server/HEAD/src/common/enums/content.update.policy.ts -------------------------------------------------------------------------------- /src/common/enums/credential.type.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alkem-io/server/HEAD/src/common/enums/credential.type.ts -------------------------------------------------------------------------------- /src/common/enums/discussions.orderBy.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alkem-io/server/HEAD/src/common/enums/discussions.orderBy.ts -------------------------------------------------------------------------------- /src/common/enums/forum.discussion.category.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alkem-io/server/HEAD/src/common/enums/forum.discussion.category.ts -------------------------------------------------------------------------------- /src/common/enums/forum.discussion.privacy.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alkem-io/server/HEAD/src/common/enums/forum.discussion.privacy.ts -------------------------------------------------------------------------------- /src/common/enums/index.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alkem-io/server/HEAD/src/common/enums/index.ts -------------------------------------------------------------------------------- /src/common/enums/innovation.packs.orderBy.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alkem-io/server/HEAD/src/common/enums/innovation.packs.orderBy.ts -------------------------------------------------------------------------------- /src/common/enums/license.entitlement.type.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alkem-io/server/HEAD/src/common/enums/license.entitlement.type.ts -------------------------------------------------------------------------------- /src/common/enums/license.type.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alkem-io/server/HEAD/src/common/enums/license.type.ts -------------------------------------------------------------------------------- /src/common/enums/logging.context.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alkem-io/server/HEAD/src/common/enums/logging.context.ts -------------------------------------------------------------------------------- /src/common/enums/messaging.queue.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alkem-io/server/HEAD/src/common/enums/messaging.queue.ts -------------------------------------------------------------------------------- /src/common/enums/mime.file.type.document.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alkem-io/server/HEAD/src/common/enums/mime.file.type.document.ts -------------------------------------------------------------------------------- /src/common/enums/mime.file.type.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alkem-io/server/HEAD/src/common/enums/mime.file.type.ts -------------------------------------------------------------------------------- /src/common/enums/mime.file.type.visual.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alkem-io/server/HEAD/src/common/enums/mime.file.type.visual.ts -------------------------------------------------------------------------------- /src/common/enums/notification.event.payload.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alkem-io/server/HEAD/src/common/enums/notification.event.payload.ts -------------------------------------------------------------------------------- /src/common/enums/notification.event.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alkem-io/server/HEAD/src/common/enums/notification.event.ts -------------------------------------------------------------------------------- /src/common/enums/organization.verification.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alkem-io/server/HEAD/src/common/enums/organization.verification.ts -------------------------------------------------------------------------------- /src/common/enums/platform.feature.flag.name.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alkem-io/server/HEAD/src/common/enums/platform.feature.flag.name.ts -------------------------------------------------------------------------------- /src/common/enums/profile.type.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alkem-io/server/HEAD/src/common/enums/profile.type.ts -------------------------------------------------------------------------------- /src/common/enums/rest.endpoint.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alkem-io/server/HEAD/src/common/enums/rest.endpoint.ts -------------------------------------------------------------------------------- /src/common/enums/restricted.space.names.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alkem-io/server/HEAD/src/common/enums/restricted.space.names.ts -------------------------------------------------------------------------------- /src/common/enums/role.name.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alkem-io/server/HEAD/src/common/enums/role.name.ts -------------------------------------------------------------------------------- /src/common/enums/role.set.contributor.type.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alkem-io/server/HEAD/src/common/enums/role.set.contributor.type.ts -------------------------------------------------------------------------------- /src/common/enums/role.set.role.implicit.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alkem-io/server/HEAD/src/common/enums/role.set.role.implicit.ts -------------------------------------------------------------------------------- /src/common/enums/role.set.type.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alkem-io/server/HEAD/src/common/enums/role.set.type.ts -------------------------------------------------------------------------------- /src/common/enums/role.set.update.type.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alkem-io/server/HEAD/src/common/enums/role.set.update.type.ts -------------------------------------------------------------------------------- /src/common/enums/room.type.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alkem-io/server/HEAD/src/common/enums/room.type.ts -------------------------------------------------------------------------------- /src/common/enums/search.visibility.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alkem-io/server/HEAD/src/common/enums/search.visibility.ts -------------------------------------------------------------------------------- /src/common/enums/space.level.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alkem-io/server/HEAD/src/common/enums/space.level.ts -------------------------------------------------------------------------------- /src/common/enums/space.privacy.mode.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alkem-io/server/HEAD/src/common/enums/space.privacy.mode.ts -------------------------------------------------------------------------------- /src/common/enums/space.visibility.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alkem-io/server/HEAD/src/common/enums/space.visibility.ts -------------------------------------------------------------------------------- /src/common/enums/storage.aggregator.type.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alkem-io/server/HEAD/src/common/enums/storage.aggregator.type.ts -------------------------------------------------------------------------------- /src/common/enums/subscription.type.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alkem-io/server/HEAD/src/common/enums/subscription.type.ts -------------------------------------------------------------------------------- /src/common/enums/subscriptions/index.ts: -------------------------------------------------------------------------------- 1 | export * from './mutation.type'; 2 | -------------------------------------------------------------------------------- /src/common/enums/tagset.reserved.name.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alkem-io/server/HEAD/src/common/enums/tagset.reserved.name.ts -------------------------------------------------------------------------------- /src/common/enums/tagset.type.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alkem-io/server/HEAD/src/common/enums/tagset.type.ts -------------------------------------------------------------------------------- /src/common/enums/template.default.type.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alkem-io/server/HEAD/src/common/enums/template.default.type.ts -------------------------------------------------------------------------------- /src/common/enums/template.type.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alkem-io/server/HEAD/src/common/enums/template.type.ts -------------------------------------------------------------------------------- /src/common/enums/url.path.base.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alkem-io/server/HEAD/src/common/enums/url.path.base.ts -------------------------------------------------------------------------------- /src/common/enums/url.path.element.space.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alkem-io/server/HEAD/src/common/enums/url.path.element.space.ts -------------------------------------------------------------------------------- /src/common/enums/url.path.element.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alkem-io/server/HEAD/src/common/enums/url.path.element.ts -------------------------------------------------------------------------------- /src/common/enums/url.type.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alkem-io/server/HEAD/src/common/enums/url.type.ts -------------------------------------------------------------------------------- /src/common/enums/visual.type.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alkem-io/server/HEAD/src/common/enums/visual.type.ts -------------------------------------------------------------------------------- /src/common/enums/whiteboard.preview.mode.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alkem-io/server/HEAD/src/common/enums/whiteboard.preview.mode.ts -------------------------------------------------------------------------------- /src/common/exceptions/account.exception.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alkem-io/server/HEAD/src/common/exceptions/account.exception.ts -------------------------------------------------------------------------------- /src/common/exceptions/auth/index.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alkem-io/server/HEAD/src/common/exceptions/auth/index.ts -------------------------------------------------------------------------------- /src/common/exceptions/base.exception.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alkem-io/server/HEAD/src/common/exceptions/base.exception.ts -------------------------------------------------------------------------------- /src/common/exceptions/bootstrap.exception.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alkem-io/server/HEAD/src/common/exceptions/bootstrap.exception.ts -------------------------------------------------------------------------------- /src/common/exceptions/communication/index.ts: -------------------------------------------------------------------------------- 1 | export * from './communication.timed.out.exception'; 2 | -------------------------------------------------------------------------------- /src/common/exceptions/data-loader/index.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alkem-io/server/HEAD/src/common/exceptions/data-loader/index.ts -------------------------------------------------------------------------------- /src/common/exceptions/exception.details.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alkem-io/server/HEAD/src/common/exceptions/exception.details.ts -------------------------------------------------------------------------------- /src/common/exceptions/forbidden.exception.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alkem-io/server/HEAD/src/common/exceptions/forbidden.exception.ts -------------------------------------------------------------------------------- /src/common/exceptions/geo/index.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alkem-io/server/HEAD/src/common/exceptions/geo/index.ts -------------------------------------------------------------------------------- /src/common/exceptions/http/index.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alkem-io/server/HEAD/src/common/exceptions/http/index.ts -------------------------------------------------------------------------------- /src/common/exceptions/index.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alkem-io/server/HEAD/src/common/exceptions/index.ts -------------------------------------------------------------------------------- /src/common/exceptions/internal/index.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alkem-io/server/HEAD/src/common/exceptions/internal/index.ts -------------------------------------------------------------------------------- /src/common/exceptions/invalid.uuid.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alkem-io/server/HEAD/src/common/exceptions/invalid.uuid.ts -------------------------------------------------------------------------------- /src/common/exceptions/not.enabled.exception.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alkem-io/server/HEAD/src/common/exceptions/not.enabled.exception.ts -------------------------------------------------------------------------------- /src/common/exceptions/pagination/index.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alkem-io/server/HEAD/src/common/exceptions/pagination/index.ts -------------------------------------------------------------------------------- /src/common/exceptions/storage/index.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alkem-io/server/HEAD/src/common/exceptions/storage/index.ts -------------------------------------------------------------------------------- /src/common/exceptions/subscription/index.ts: -------------------------------------------------------------------------------- 1 | export * from './unable.to.subscribe.exception'; 2 | -------------------------------------------------------------------------------- /src/common/exceptions/user/index.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alkem-io/server/HEAD/src/common/exceptions/user/index.ts -------------------------------------------------------------------------------- /src/common/exceptions/validation.exception.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alkem-io/server/HEAD/src/common/exceptions/validation.exception.ts -------------------------------------------------------------------------------- /src/common/interceptors/index.ts: -------------------------------------------------------------------------------- 1 | export * from './innovation.hub.interceptor'; 2 | -------------------------------------------------------------------------------- /src/common/interfaces/base.subscription.payload.interface.ts: -------------------------------------------------------------------------------- 1 | export interface BaseSubscriptionPayload { 2 | eventID: string; 3 | } 4 | -------------------------------------------------------------------------------- /src/common/interfaces/groupable.interface.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alkem-io/server/HEAD/src/common/interfaces/groupable.interface.ts -------------------------------------------------------------------------------- /src/common/interfaces/index.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alkem-io/server/HEAD/src/common/interfaces/index.ts -------------------------------------------------------------------------------- /src/common/interfaces/redis.interfaces.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alkem-io/server/HEAD/src/common/interfaces/redis.interfaces.ts -------------------------------------------------------------------------------- /src/common/pipes/index.ts: -------------------------------------------------------------------------------- 1 | export * from './validation.pipe'; 2 | -------------------------------------------------------------------------------- /src/common/pipes/validation.pipe.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alkem-io/server/HEAD/src/common/pipes/validation.pipe.ts -------------------------------------------------------------------------------- /src/common/utils/array.random.element.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alkem-io/server/HEAD/src/common/utils/array.random.element.ts -------------------------------------------------------------------------------- /src/common/utils/async.filter.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alkem-io/server/HEAD/src/common/utils/async.filter.ts -------------------------------------------------------------------------------- /src/common/utils/async.map.sequential.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alkem-io/server/HEAD/src/common/utils/async.map.sequential.ts -------------------------------------------------------------------------------- /src/common/utils/async.map.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alkem-io/server/HEAD/src/common/utils/async.map.ts -------------------------------------------------------------------------------- /src/common/utils/async.reduce.sequential.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alkem-io/server/HEAD/src/common/utils/async.reduce.sequential.ts -------------------------------------------------------------------------------- /src/common/utils/async.reduce.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alkem-io/server/HEAD/src/common/utils/async.reduce.ts -------------------------------------------------------------------------------- /src/common/utils/base64.to.buffer.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alkem-io/server/HEAD/src/common/utils/base64.to.buffer.ts -------------------------------------------------------------------------------- /src/common/utils/calculate.buffer.hash.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alkem-io/server/HEAD/src/common/utils/calculate.buffer.hash.ts -------------------------------------------------------------------------------- /src/common/utils/compare.enums.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alkem-io/server/HEAD/src/common/utils/compare.enums.ts -------------------------------------------------------------------------------- /src/common/utils/compression.util.spec.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alkem-io/server/HEAD/src/common/utils/compression.util.spec.ts -------------------------------------------------------------------------------- /src/common/utils/compression.util.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alkem-io/server/HEAD/src/common/utils/compression.util.ts -------------------------------------------------------------------------------- /src/common/utils/convert-to-entity/index.ts: -------------------------------------------------------------------------------- 1 | export * from './convert.to.entity'; 2 | -------------------------------------------------------------------------------- /src/common/utils/email.util.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alkem-io/server/HEAD/src/common/utils/email.util.ts -------------------------------------------------------------------------------- /src/common/utils/file.util.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alkem-io/server/HEAD/src/common/utils/file.util.ts -------------------------------------------------------------------------------- /src/common/utils/get-differences/get.diff.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alkem-io/server/HEAD/src/common/utils/get-differences/get.diff.ts -------------------------------------------------------------------------------- /src/common/utils/get-differences/index.ts: -------------------------------------------------------------------------------- 1 | export * from './get.diff'; 2 | -------------------------------------------------------------------------------- /src/common/utils/get.session.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alkem-io/server/HEAD/src/common/utils/get.session.ts -------------------------------------------------------------------------------- /src/common/utils/has-allowed-allowed-fields/index.ts: -------------------------------------------------------------------------------- 1 | export * from './has.only.allowed.fields'; 2 | -------------------------------------------------------------------------------- /src/common/utils/image.util.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alkem-io/server/HEAD/src/common/utils/image.util.ts -------------------------------------------------------------------------------- /src/common/utils/index.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alkem-io/server/HEAD/src/common/utils/index.ts -------------------------------------------------------------------------------- /src/common/utils/is.defined.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alkem-io/server/HEAD/src/common/utils/is.defined.ts -------------------------------------------------------------------------------- /src/common/utils/limitAndShuffle.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alkem-io/server/HEAD/src/common/utils/limitAndShuffle.ts -------------------------------------------------------------------------------- /src/common/utils/path.resolve.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alkem-io/server/HEAD/src/common/utils/path.resolve.ts -------------------------------------------------------------------------------- /src/common/utils/random.id.generator.util.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alkem-io/server/HEAD/src/common/utils/random.id.generator.util.ts -------------------------------------------------------------------------------- /src/common/utils/random.util.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alkem-io/server/HEAD/src/common/utils/random.util.ts -------------------------------------------------------------------------------- /src/common/utils/string.util.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alkem-io/server/HEAD/src/common/utils/string.util.ts -------------------------------------------------------------------------------- /src/common/utils/stringify.util.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alkem-io/server/HEAD/src/common/utils/stringify.util.ts -------------------------------------------------------------------------------- /src/common/utils/untildify.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alkem-io/server/HEAD/src/common/utils/untildify.ts -------------------------------------------------------------------------------- /src/config/aliases.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alkem-io/server/HEAD/src/config/aliases.ts -------------------------------------------------------------------------------- /src/config/config.utils.spec.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alkem-io/server/HEAD/src/config/config.utils.spec.ts -------------------------------------------------------------------------------- /src/config/config.utils.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alkem-io/server/HEAD/src/config/config.utils.ts -------------------------------------------------------------------------------- /src/config/configuration.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alkem-io/server/HEAD/src/config/configuration.ts -------------------------------------------------------------------------------- /src/config/dynamic.import.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alkem-io/server/HEAD/src/config/dynamic.import.ts -------------------------------------------------------------------------------- /src/config/fix.uuid.column.type.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alkem-io/server/HEAD/src/config/fix.uuid.column.type.ts -------------------------------------------------------------------------------- /src/config/graphql/config.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alkem-io/server/HEAD/src/config/graphql/config.ts -------------------------------------------------------------------------------- /src/config/graphql/index.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alkem-io/server/HEAD/src/config/graphql/index.ts -------------------------------------------------------------------------------- /src/config/graphql/me.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alkem-io/server/HEAD/src/config/graphql/me.ts -------------------------------------------------------------------------------- /src/config/graphql/metadata.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alkem-io/server/HEAD/src/config/graphql/metadata.ts -------------------------------------------------------------------------------- /src/config/graphql/spaces.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alkem-io/server/HEAD/src/config/graphql/spaces.ts -------------------------------------------------------------------------------- /src/config/index.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alkem-io/server/HEAD/src/config/index.ts -------------------------------------------------------------------------------- /src/config/migration.config.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alkem-io/server/HEAD/src/config/migration.config.ts -------------------------------------------------------------------------------- /src/config/migration.create.config.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alkem-io/server/HEAD/src/config/migration.create.config.ts -------------------------------------------------------------------------------- /src/config/typeorm.cli.config.run.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alkem-io/server/HEAD/src/config/typeorm.cli.config.run.ts -------------------------------------------------------------------------------- /src/config/typeorm.cli.config.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alkem-io/server/HEAD/src/config/typeorm.cli.config.ts -------------------------------------------------------------------------------- /src/config/winston.config.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alkem-io/server/HEAD/src/config/winston.config.ts -------------------------------------------------------------------------------- /src/core/authentication/constants.ts: -------------------------------------------------------------------------------- 1 | export const X_GUEST_NAME_HEADER = 'x-guest-name'; 2 | -------------------------------------------------------------------------------- /src/core/authentication/index.ts: -------------------------------------------------------------------------------- 1 | export * from './strategy.names'; 2 | -------------------------------------------------------------------------------- /src/core/authentication/ory.api.strategy.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alkem-io/server/HEAD/src/core/authentication/ory.api.strategy.ts -------------------------------------------------------------------------------- /src/core/authentication/ory.strategy.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alkem-io/server/HEAD/src/core/authentication/ory.strategy.ts -------------------------------------------------------------------------------- /src/core/authentication/strategy.names.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alkem-io/server/HEAD/src/core/authentication/strategy.names.ts -------------------------------------------------------------------------------- /src/core/authorization/authorization.module.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alkem-io/server/HEAD/src/core/authorization/authorization.module.ts -------------------------------------------------------------------------------- /src/core/authorization/graphql.guard.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alkem-io/server/HEAD/src/core/authorization/graphql.guard.ts -------------------------------------------------------------------------------- /src/core/authorization/index.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alkem-io/server/HEAD/src/core/authorization/index.ts -------------------------------------------------------------------------------- /src/core/authorization/rest.guard.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alkem-io/server/HEAD/src/core/authorization/rest.guard.ts -------------------------------------------------------------------------------- /src/core/bootstrap/bootstrap.module.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alkem-io/server/HEAD/src/core/bootstrap/bootstrap.module.ts -------------------------------------------------------------------------------- /src/core/bootstrap/bootstrap.service.spec.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alkem-io/server/HEAD/src/core/bootstrap/bootstrap.service.spec.ts -------------------------------------------------------------------------------- /src/core/bootstrap/bootstrap.service.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alkem-io/server/HEAD/src/core/bootstrap/bootstrap.service.ts -------------------------------------------------------------------------------- /src/core/bootstrap/index.ts: -------------------------------------------------------------------------------- 1 | export * from './bootstrap.service'; 2 | -------------------------------------------------------------------------------- /src/core/dataloader/creators/base/index.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alkem-io/server/HEAD/src/core/dataloader/creators/base/index.ts -------------------------------------------------------------------------------- /src/core/dataloader/creators/index.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alkem-io/server/HEAD/src/core/dataloader/creators/index.ts -------------------------------------------------------------------------------- /src/core/dataloader/decorators/index.ts: -------------------------------------------------------------------------------- 1 | export * from './data.loader.decorator'; 2 | -------------------------------------------------------------------------------- /src/core/dataloader/interceptors/index.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alkem-io/server/HEAD/src/core/dataloader/interceptors/index.ts -------------------------------------------------------------------------------- /src/core/dataloader/loader.interface.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alkem-io/server/HEAD/src/core/dataloader/loader.interface.ts -------------------------------------------------------------------------------- /src/core/dataloader/utils/findByBatchIds.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alkem-io/server/HEAD/src/core/dataloader/utils/findByBatchIds.ts -------------------------------------------------------------------------------- /src/core/dataloader/utils/index.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alkem-io/server/HEAD/src/core/dataloader/utils/index.ts -------------------------------------------------------------------------------- /src/core/error-handling/index.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alkem-io/server/HEAD/src/core/error-handling/index.ts -------------------------------------------------------------------------------- /src/core/error-handling/rest.error.response.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alkem-io/server/HEAD/src/core/error-handling/rest.error.response.ts -------------------------------------------------------------------------------- /src/core/filtering/filter.fn.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alkem-io/server/HEAD/src/core/filtering/filter.fn.ts -------------------------------------------------------------------------------- /src/core/filtering/filters/index.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alkem-io/server/HEAD/src/core/filtering/filters/index.ts -------------------------------------------------------------------------------- /src/core/filtering/filters/userFilter.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alkem-io/server/HEAD/src/core/filtering/filters/userFilter.ts -------------------------------------------------------------------------------- /src/core/filtering/index.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alkem-io/server/HEAD/src/core/filtering/index.ts -------------------------------------------------------------------------------- /src/core/filtering/input-types/index.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alkem-io/server/HEAD/src/core/filtering/input-types/index.ts -------------------------------------------------------------------------------- /src/core/interceptors/auth.interceptor.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alkem-io/server/HEAD/src/core/interceptors/auth.interceptor.ts -------------------------------------------------------------------------------- /src/core/interceptors/index.ts: -------------------------------------------------------------------------------- 1 | export * from './auth.interceptor'; 2 | -------------------------------------------------------------------------------- /src/core/microservices/client.proxy.factory.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alkem-io/server/HEAD/src/core/microservices/client.proxy.factory.ts -------------------------------------------------------------------------------- /src/core/microservices/index.ts: -------------------------------------------------------------------------------- 1 | export * from './microservices.module'; 2 | -------------------------------------------------------------------------------- /src/core/microservices/microservices.module.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alkem-io/server/HEAD/src/core/microservices/microservices.module.ts -------------------------------------------------------------------------------- /src/core/microservices/subscription.factory.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alkem-io/server/HEAD/src/core/microservices/subscription.factory.ts -------------------------------------------------------------------------------- /src/core/middleware/favicon.middleware.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alkem-io/server/HEAD/src/core/middleware/favicon.middleware.ts -------------------------------------------------------------------------------- /src/core/middleware/index.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alkem-io/server/HEAD/src/core/middleware/index.ts -------------------------------------------------------------------------------- /src/core/pagination/index.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alkem-io/server/HEAD/src/core/pagination/index.ts -------------------------------------------------------------------------------- /src/core/pagination/paginated.organization.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alkem-io/server/HEAD/src/core/pagination/paginated.organization.ts -------------------------------------------------------------------------------- /src/core/pagination/paginated.space.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alkem-io/server/HEAD/src/core/pagination/paginated.space.ts -------------------------------------------------------------------------------- /src/core/pagination/paginated.type.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alkem-io/server/HEAD/src/core/pagination/paginated.type.ts -------------------------------------------------------------------------------- /src/core/pagination/paginated.user.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alkem-io/server/HEAD/src/core/pagination/paginated.user.ts -------------------------------------------------------------------------------- /src/core/pagination/pagination.args.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alkem-io/server/HEAD/src/core/pagination/pagination.args.ts -------------------------------------------------------------------------------- /src/core/pagination/pagination.fn.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alkem-io/server/HEAD/src/core/pagination/pagination.fn.ts -------------------------------------------------------------------------------- /src/core/validation/handlers/base/index.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alkem-io/server/HEAD/src/core/validation/handlers/base/index.ts -------------------------------------------------------------------------------- /src/core/validation/handlers/index.ts: -------------------------------------------------------------------------------- 1 | export * from './base'; 2 | -------------------------------------------------------------------------------- /src/core/validation/index.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alkem-io/server/HEAD/src/core/validation/index.ts -------------------------------------------------------------------------------- /src/core/validation/subdomain.regex.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alkem-io/server/HEAD/src/core/validation/subdomain.regex.ts -------------------------------------------------------------------------------- /src/core/validation/xstate/machine.schema.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alkem-io/server/HEAD/src/core/validation/xstate/machine.schema.json -------------------------------------------------------------------------------- /src/domain/access/application/index.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alkem-io/server/HEAD/src/domain/access/application/index.ts -------------------------------------------------------------------------------- /src/domain/access/invitation.platform/index.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alkem-io/server/HEAD/src/domain/access/invitation.platform/index.ts -------------------------------------------------------------------------------- /src/domain/access/invitation/index.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alkem-io/server/HEAD/src/domain/access/invitation/index.ts -------------------------------------------------------------------------------- /src/domain/access/role-set/index.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alkem-io/server/HEAD/src/domain/access/role-set/index.ts -------------------------------------------------------------------------------- /src/domain/access/role-set/role.set.entity.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alkem-io/server/HEAD/src/domain/access/role-set/role.set.entity.ts -------------------------------------------------------------------------------- /src/domain/access/role-set/role.set.module.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alkem-io/server/HEAD/src/domain/access/role-set/role.set.module.ts -------------------------------------------------------------------------------- /src/domain/access/role-set/role.set.service.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alkem-io/server/HEAD/src/domain/access/role-set/role.set.service.ts -------------------------------------------------------------------------------- /src/domain/access/role-set/types/index.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alkem-io/server/HEAD/src/domain/access/role-set/types/index.ts -------------------------------------------------------------------------------- /src/domain/access/role/dto/role.dto.create.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alkem-io/server/HEAD/src/domain/access/role/dto/role.dto.create.ts -------------------------------------------------------------------------------- /src/domain/access/role/role.entity.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alkem-io/server/HEAD/src/domain/access/role/role.entity.ts -------------------------------------------------------------------------------- /src/domain/access/role/role.interface.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alkem-io/server/HEAD/src/domain/access/role/role.interface.ts -------------------------------------------------------------------------------- /src/domain/access/role/role.module.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alkem-io/server/HEAD/src/domain/access/role/role.module.ts -------------------------------------------------------------------------------- /src/domain/access/role/role.resolver.fields.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alkem-io/server/HEAD/src/domain/access/role/role.resolver.fields.ts -------------------------------------------------------------------------------- /src/domain/access/role/role.service.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alkem-io/server/HEAD/src/domain/access/role/role.service.ts -------------------------------------------------------------------------------- /src/domain/activity-feed/index.ts: -------------------------------------------------------------------------------- 1 | export * from './activity.feed.module'; 2 | -------------------------------------------------------------------------------- /src/domain/agent/agent/agent.entity.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alkem-io/server/HEAD/src/domain/agent/agent/agent.entity.ts -------------------------------------------------------------------------------- /src/domain/agent/agent/agent.interface.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alkem-io/server/HEAD/src/domain/agent/agent/agent.interface.ts -------------------------------------------------------------------------------- /src/domain/agent/agent/agent.module.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alkem-io/server/HEAD/src/domain/agent/agent/agent.module.ts -------------------------------------------------------------------------------- /src/domain/agent/agent/agent.service.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alkem-io/server/HEAD/src/domain/agent/agent/agent.service.ts -------------------------------------------------------------------------------- /src/domain/agent/agent/dto/agent.dto.create.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alkem-io/server/HEAD/src/domain/agent/agent/dto/agent.dto.create.ts -------------------------------------------------------------------------------- /src/domain/agent/agent/index.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alkem-io/server/HEAD/src/domain/agent/agent/index.ts -------------------------------------------------------------------------------- /src/domain/agent/credential/index.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alkem-io/server/HEAD/src/domain/agent/credential/index.ts -------------------------------------------------------------------------------- /src/domain/agent/index.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alkem-io/server/HEAD/src/domain/agent/index.ts -------------------------------------------------------------------------------- /src/domain/agents.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alkem-io/server/HEAD/src/domain/agents.md -------------------------------------------------------------------------------- /src/domain/collaboration/callout-contribution/dto/index.ts: -------------------------------------------------------------------------------- 1 | export * from './callout.contribution.dto.create'; 2 | -------------------------------------------------------------------------------- /src/domain/collaboration/callout/dto/index.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alkem-io/server/HEAD/src/domain/collaboration/callout/dto/index.ts -------------------------------------------------------------------------------- /src/domain/collaboration/collaboration/dto/index.ts: -------------------------------------------------------------------------------- 1 | export * from './collaboration.dto.delete'; 2 | -------------------------------------------------------------------------------- /src/domain/collaboration/link/dto/index.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alkem-io/server/HEAD/src/domain/collaboration/link/dto/index.ts -------------------------------------------------------------------------------- /src/domain/collaboration/link/link.entity.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alkem-io/server/HEAD/src/domain/collaboration/link/link.entity.ts -------------------------------------------------------------------------------- /src/domain/collaboration/link/link.module.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alkem-io/server/HEAD/src/domain/collaboration/link/link.module.ts -------------------------------------------------------------------------------- /src/domain/collaboration/link/link.service.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alkem-io/server/HEAD/src/domain/collaboration/link/link.service.ts -------------------------------------------------------------------------------- /src/domain/collaboration/post/index.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alkem-io/server/HEAD/src/domain/collaboration/post/index.ts -------------------------------------------------------------------------------- /src/domain/collaboration/post/post.entity.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alkem-io/server/HEAD/src/domain/collaboration/post/post.entity.ts -------------------------------------------------------------------------------- /src/domain/collaboration/post/post.module.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alkem-io/server/HEAD/src/domain/collaboration/post/post.module.ts -------------------------------------------------------------------------------- /src/domain/collaboration/post/post.service.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alkem-io/server/HEAD/src/domain/collaboration/post/post.service.ts -------------------------------------------------------------------------------- /src/domain/common/entity/base-entity/index.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alkem-io/server/HEAD/src/domain/common/entity/base-entity/index.ts -------------------------------------------------------------------------------- /src/domain/common/form/dto/form.dto.create.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alkem-io/server/HEAD/src/domain/common/form/dto/form.dto.create.ts -------------------------------------------------------------------------------- /src/domain/common/form/dto/form.dto.update.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alkem-io/server/HEAD/src/domain/common/form/dto/form.dto.update.ts -------------------------------------------------------------------------------- /src/domain/common/form/form.entity.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alkem-io/server/HEAD/src/domain/common/form/form.entity.ts -------------------------------------------------------------------------------- /src/domain/common/form/form.interface.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alkem-io/server/HEAD/src/domain/common/form/form.interface.ts -------------------------------------------------------------------------------- /src/domain/common/form/form.module.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alkem-io/server/HEAD/src/domain/common/form/form.module.ts -------------------------------------------------------------------------------- /src/domain/common/form/form.resolver.fields.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alkem-io/server/HEAD/src/domain/common/form/form.resolver.fields.ts -------------------------------------------------------------------------------- /src/domain/common/form/form.service.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alkem-io/server/HEAD/src/domain/common/form/form.service.ts -------------------------------------------------------------------------------- /src/domain/common/interfaces/index.ts: -------------------------------------------------------------------------------- 1 | export * from './groupable.interface'; 2 | -------------------------------------------------------------------------------- /src/domain/common/knowledge-base/dto/index.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alkem-io/server/HEAD/src/domain/common/knowledge-base/dto/index.ts -------------------------------------------------------------------------------- /src/domain/common/license/license.entity.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alkem-io/server/HEAD/src/domain/common/license/license.entity.ts -------------------------------------------------------------------------------- /src/domain/common/license/license.interface.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alkem-io/server/HEAD/src/domain/common/license/license.interface.ts -------------------------------------------------------------------------------- /src/domain/common/license/license.module.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alkem-io/server/HEAD/src/domain/common/license/license.module.ts -------------------------------------------------------------------------------- /src/domain/common/license/license.service.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alkem-io/server/HEAD/src/domain/common/license/license.service.ts -------------------------------------------------------------------------------- /src/domain/common/lifecycle/index.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alkem-io/server/HEAD/src/domain/common/lifecycle/index.ts -------------------------------------------------------------------------------- /src/domain/common/location/dto/index.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alkem-io/server/HEAD/src/domain/common/location/dto/index.ts -------------------------------------------------------------------------------- /src/domain/common/location/index.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alkem-io/server/HEAD/src/domain/common/location/index.ts -------------------------------------------------------------------------------- /src/domain/common/location/location.entity.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alkem-io/server/HEAD/src/domain/common/location/location.entity.ts -------------------------------------------------------------------------------- /src/domain/common/location/location.module.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alkem-io/server/HEAD/src/domain/common/location/location.module.ts -------------------------------------------------------------------------------- /src/domain/common/location/location.service.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alkem-io/server/HEAD/src/domain/common/location/location.service.ts -------------------------------------------------------------------------------- /src/domain/common/memo/conversion/Iframe.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alkem-io/server/HEAD/src/domain/common/memo/conversion/Iframe.ts -------------------------------------------------------------------------------- /src/domain/common/memo/conversion/const.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alkem-io/server/HEAD/src/domain/common/memo/conversion/const.ts -------------------------------------------------------------------------------- /src/domain/common/memo/conversion/index.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alkem-io/server/HEAD/src/domain/common/memo/conversion/index.ts -------------------------------------------------------------------------------- /src/domain/common/memo/dto/memo.dto.create.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alkem-io/server/HEAD/src/domain/common/memo/dto/memo.dto.create.ts -------------------------------------------------------------------------------- /src/domain/common/memo/dto/memo.dto.delete.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alkem-io/server/HEAD/src/domain/common/memo/dto/memo.dto.delete.ts -------------------------------------------------------------------------------- /src/domain/common/memo/dto/memo.dto.update.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alkem-io/server/HEAD/src/domain/common/memo/dto/memo.dto.update.ts -------------------------------------------------------------------------------- /src/domain/common/memo/index.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alkem-io/server/HEAD/src/domain/common/memo/index.ts -------------------------------------------------------------------------------- /src/domain/common/memo/memo.entity.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alkem-io/server/HEAD/src/domain/common/memo/memo.entity.ts -------------------------------------------------------------------------------- /src/domain/common/memo/memo.interface.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alkem-io/server/HEAD/src/domain/common/memo/memo.interface.ts -------------------------------------------------------------------------------- /src/domain/common/memo/memo.module.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alkem-io/server/HEAD/src/domain/common/memo/memo.module.ts -------------------------------------------------------------------------------- /src/domain/common/memo/memo.resolver.fields.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alkem-io/server/HEAD/src/domain/common/memo/memo.resolver.fields.ts -------------------------------------------------------------------------------- /src/domain/common/memo/memo.service.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alkem-io/server/HEAD/src/domain/common/memo/memo.service.ts -------------------------------------------------------------------------------- /src/domain/common/memo/types.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alkem-io/server/HEAD/src/domain/common/memo/types.ts -------------------------------------------------------------------------------- /src/domain/common/nvp/index.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alkem-io/server/HEAD/src/domain/common/nvp/index.ts -------------------------------------------------------------------------------- /src/domain/common/nvp/nvp.dto.create.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alkem-io/server/HEAD/src/domain/common/nvp/nvp.dto.create.ts -------------------------------------------------------------------------------- /src/domain/common/nvp/nvp.entity.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alkem-io/server/HEAD/src/domain/common/nvp/nvp.entity.ts -------------------------------------------------------------------------------- /src/domain/common/nvp/nvp.factory.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alkem-io/server/HEAD/src/domain/common/nvp/nvp.factory.ts -------------------------------------------------------------------------------- /src/domain/common/nvp/nvp.interface.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alkem-io/server/HEAD/src/domain/common/nvp/nvp.interface.ts -------------------------------------------------------------------------------- /src/domain/common/nvp/nvp.module.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alkem-io/server/HEAD/src/domain/common/nvp/nvp.module.ts -------------------------------------------------------------------------------- /src/domain/common/nvp/nvp.service.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alkem-io/server/HEAD/src/domain/common/nvp/nvp.service.ts -------------------------------------------------------------------------------- /src/domain/common/profile/dto/index.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alkem-io/server/HEAD/src/domain/common/profile/dto/index.ts -------------------------------------------------------------------------------- /src/domain/common/profile/index.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alkem-io/server/HEAD/src/domain/common/profile/index.ts -------------------------------------------------------------------------------- /src/domain/common/profile/profile.entity.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alkem-io/server/HEAD/src/domain/common/profile/profile.entity.ts -------------------------------------------------------------------------------- /src/domain/common/profile/profile.interface.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alkem-io/server/HEAD/src/domain/common/profile/profile.interface.ts -------------------------------------------------------------------------------- /src/domain/common/profile/profile.module.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alkem-io/server/HEAD/src/domain/common/profile/profile.module.ts -------------------------------------------------------------------------------- /src/domain/common/profile/profile.service.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alkem-io/server/HEAD/src/domain/common/profile/profile.service.ts -------------------------------------------------------------------------------- /src/domain/common/query-args/ids.query.args.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alkem-io/server/HEAD/src/domain/common/query-args/ids.query.args.ts -------------------------------------------------------------------------------- /src/domain/common/reference/index.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alkem-io/server/HEAD/src/domain/common/reference/index.ts -------------------------------------------------------------------------------- /src/domain/common/scalars/index.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alkem-io/server/HEAD/src/domain/common/scalars/index.ts -------------------------------------------------------------------------------- /src/domain/common/scalars/scalar.emoji.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alkem-io/server/HEAD/src/domain/common/scalars/scalar.emoji.ts -------------------------------------------------------------------------------- /src/domain/common/scalars/scalar.markdown.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alkem-io/server/HEAD/src/domain/common/scalars/scalar.markdown.ts -------------------------------------------------------------------------------- /src/domain/common/scalars/scalar.messageid.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alkem-io/server/HEAD/src/domain/common/scalars/scalar.messageid.ts -------------------------------------------------------------------------------- /src/domain/common/scalars/scalar.nameid.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alkem-io/server/HEAD/src/domain/common/scalars/scalar.nameid.ts -------------------------------------------------------------------------------- /src/domain/common/scalars/scalar.uuid.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alkem-io/server/HEAD/src/domain/common/scalars/scalar.uuid.ts -------------------------------------------------------------------------------- /src/domain/common/scalars/scalars.module.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alkem-io/server/HEAD/src/domain/common/scalars/scalars.module.ts -------------------------------------------------------------------------------- /src/domain/common/tagset-template-set/index.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alkem-io/server/HEAD/src/domain/common/tagset-template-set/index.ts -------------------------------------------------------------------------------- /src/domain/common/tagset-template/index.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alkem-io/server/HEAD/src/domain/common/tagset-template/index.ts -------------------------------------------------------------------------------- /src/domain/common/tagset/dto/tagset.args.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alkem-io/server/HEAD/src/domain/common/tagset/dto/tagset.args.ts -------------------------------------------------------------------------------- /src/domain/common/tagset/index.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alkem-io/server/HEAD/src/domain/common/tagset/index.ts -------------------------------------------------------------------------------- /src/domain/common/tagset/tagset.entity.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alkem-io/server/HEAD/src/domain/common/tagset/tagset.entity.ts -------------------------------------------------------------------------------- /src/domain/common/tagset/tagset.interface.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alkem-io/server/HEAD/src/domain/common/tagset/tagset.interface.ts -------------------------------------------------------------------------------- /src/domain/common/tagset/tagset.module.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alkem-io/server/HEAD/src/domain/common/tagset/tagset.module.ts -------------------------------------------------------------------------------- /src/domain/common/tagset/tagset.service.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alkem-io/server/HEAD/src/domain/common/tagset/tagset.service.ts -------------------------------------------------------------------------------- /src/domain/common/visual/index.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alkem-io/server/HEAD/src/domain/common/visual/index.ts -------------------------------------------------------------------------------- /src/domain/common/visual/visual.constraints.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alkem-io/server/HEAD/src/domain/common/visual/visual.constraints.ts -------------------------------------------------------------------------------- /src/domain/common/visual/visual.entity.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alkem-io/server/HEAD/src/domain/common/visual/visual.entity.ts -------------------------------------------------------------------------------- /src/domain/common/visual/visual.interface.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alkem-io/server/HEAD/src/domain/common/visual/visual.interface.ts -------------------------------------------------------------------------------- /src/domain/common/visual/visual.module.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alkem-io/server/HEAD/src/domain/common/visual/visual.module.ts -------------------------------------------------------------------------------- /src/domain/common/visual/visual.service.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alkem-io/server/HEAD/src/domain/common/visual/visual.service.ts -------------------------------------------------------------------------------- /src/domain/common/whiteboard/index.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alkem-io/server/HEAD/src/domain/common/whiteboard/index.ts -------------------------------------------------------------------------------- /src/domain/common/whiteboard/types.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alkem-io/server/HEAD/src/domain/common/whiteboard/types.ts -------------------------------------------------------------------------------- /src/domain/communication/message/index.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alkem-io/server/HEAD/src/domain/communication/message/index.ts -------------------------------------------------------------------------------- /src/domain/communication/room/index.ts: -------------------------------------------------------------------------------- 1 | export * from './room.entity'; 2 | -------------------------------------------------------------------------------- /src/domain/communication/room/room.entity.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alkem-io/server/HEAD/src/domain/communication/room/room.entity.ts -------------------------------------------------------------------------------- /src/domain/communication/room/room.module.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alkem-io/server/HEAD/src/domain/communication/room/room.module.ts -------------------------------------------------------------------------------- /src/domain/communication/room/room.service.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alkem-io/server/HEAD/src/domain/communication/room/room.service.ts -------------------------------------------------------------------------------- /src/domain/community/community/index.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alkem-io/server/HEAD/src/domain/community/community/index.ts -------------------------------------------------------------------------------- /src/domain/community/contributor/index.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alkem-io/server/HEAD/src/domain/community/contributor/index.ts -------------------------------------------------------------------------------- /src/domain/community/organization-settings/index.ts: -------------------------------------------------------------------------------- 1 | export * from './dto/organization.settings.dto.update'; 2 | -------------------------------------------------------------------------------- /src/domain/community/organization/dto/index.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alkem-io/server/HEAD/src/domain/community/organization/dto/index.ts -------------------------------------------------------------------------------- /src/domain/community/organization/index.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alkem-io/server/HEAD/src/domain/community/organization/index.ts -------------------------------------------------------------------------------- /src/domain/community/user-group/dto/index.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alkem-io/server/HEAD/src/domain/community/user-group/dto/index.ts -------------------------------------------------------------------------------- /src/domain/community/user-group/index.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alkem-io/server/HEAD/src/domain/community/user-group/index.ts -------------------------------------------------------------------------------- /src/domain/community/user-settings/index.ts: -------------------------------------------------------------------------------- 1 | export * from './dto/user.settings.dto.update'; 2 | -------------------------------------------------------------------------------- /src/domain/community/user/dto/index.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alkem-io/server/HEAD/src/domain/community/user/dto/index.ts -------------------------------------------------------------------------------- /src/domain/community/user/index.ts: -------------------------------------------------------------------------------- 1 | export * from './dto'; 2 | -------------------------------------------------------------------------------- /src/domain/community/user/user.entity.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alkem-io/server/HEAD/src/domain/community/user/user.entity.ts -------------------------------------------------------------------------------- /src/domain/community/user/user.interface.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alkem-io/server/HEAD/src/domain/community/user/user.interface.ts -------------------------------------------------------------------------------- /src/domain/community/user/user.module.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alkem-io/server/HEAD/src/domain/community/user/user.module.ts -------------------------------------------------------------------------------- /src/domain/community/user/user.service.spec.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alkem-io/server/HEAD/src/domain/community/user/user.service.spec.ts -------------------------------------------------------------------------------- /src/domain/community/user/user.service.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alkem-io/server/HEAD/src/domain/community/user/user.service.ts -------------------------------------------------------------------------------- /src/domain/community/virtual-contributor-settings/index.ts: -------------------------------------------------------------------------------- 1 | export * from './dto/virtual.contributor.settings.dto.update'; 2 | -------------------------------------------------------------------------------- /src/domain/innovation-hub/dto/index.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alkem-io/server/HEAD/src/domain/innovation-hub/dto/index.ts -------------------------------------------------------------------------------- /src/domain/innovation-hub/types.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alkem-io/server/HEAD/src/domain/innovation-hub/types.ts -------------------------------------------------------------------------------- /src/domain/space/account.license.plan/index.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alkem-io/server/HEAD/src/domain/space/account.license.plan/index.ts -------------------------------------------------------------------------------- /src/domain/space/account/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alkem-io/server/HEAD/src/domain/space/account/README.md -------------------------------------------------------------------------------- /src/domain/space/account/account.entity.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alkem-io/server/HEAD/src/domain/space/account/account.entity.ts -------------------------------------------------------------------------------- /src/domain/space/account/account.interface.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alkem-io/server/HEAD/src/domain/space/account/account.interface.ts -------------------------------------------------------------------------------- /src/domain/space/account/account.module.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alkem-io/server/HEAD/src/domain/space/account/account.module.ts -------------------------------------------------------------------------------- /src/domain/space/account/account.service.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alkem-io/server/HEAD/src/domain/space/account/account.service.ts -------------------------------------------------------------------------------- /src/domain/space/account/constants.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alkem-io/server/HEAD/src/domain/space/account/constants.ts -------------------------------------------------------------------------------- /src/domain/space/index.ts: -------------------------------------------------------------------------------- 1 | export * from './space'; 2 | -------------------------------------------------------------------------------- /src/domain/space/space.about/index.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alkem-io/server/HEAD/src/domain/space/space.about/index.ts -------------------------------------------------------------------------------- /src/domain/space/space.settings/index.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alkem-io/server/HEAD/src/domain/space/space.settings/index.ts -------------------------------------------------------------------------------- /src/domain/space/space/dto/space.dto.create.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alkem-io/server/HEAD/src/domain/space/space/dto/space.dto.create.ts -------------------------------------------------------------------------------- /src/domain/space/space/dto/space.dto.delete.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alkem-io/server/HEAD/src/domain/space/space/dto/space.dto.delete.ts -------------------------------------------------------------------------------- /src/domain/space/space/dto/space.dto.ingest.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alkem-io/server/HEAD/src/domain/space/space/dto/space.dto.ingest.ts -------------------------------------------------------------------------------- /src/domain/space/space/dto/space.dto.update.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alkem-io/server/HEAD/src/domain/space/space/dto/space.dto.update.ts -------------------------------------------------------------------------------- /src/domain/space/space/index.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alkem-io/server/HEAD/src/domain/space/space/index.ts -------------------------------------------------------------------------------- /src/domain/space/space/space.entity.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alkem-io/server/HEAD/src/domain/space/space/space.entity.ts -------------------------------------------------------------------------------- /src/domain/space/space/space.interface.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alkem-io/server/HEAD/src/domain/space/space/space.interface.ts -------------------------------------------------------------------------------- /src/domain/space/space/space.module.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alkem-io/server/HEAD/src/domain/space/space/space.module.ts -------------------------------------------------------------------------------- /src/domain/space/space/space.service.spec.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alkem-io/server/HEAD/src/domain/space/space/space.service.spec.ts -------------------------------------------------------------------------------- /src/domain/space/space/space.service.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alkem-io/server/HEAD/src/domain/space/space/space.service.ts -------------------------------------------------------------------------------- /src/domain/storage/document/document.entity.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alkem-io/server/HEAD/src/domain/storage/document/document.entity.ts -------------------------------------------------------------------------------- /src/domain/storage/document/document.module.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alkem-io/server/HEAD/src/domain/storage/document/document.module.ts -------------------------------------------------------------------------------- /src/domain/storage/document/index.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alkem-io/server/HEAD/src/domain/storage/document/index.ts -------------------------------------------------------------------------------- /src/domain/task/dto/index.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alkem-io/server/HEAD/src/domain/task/dto/index.ts -------------------------------------------------------------------------------- /src/domain/task/dto/task.interface.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alkem-io/server/HEAD/src/domain/task/dto/task.interface.ts -------------------------------------------------------------------------------- /src/domain/task/dto/task.status.enum.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alkem-io/server/HEAD/src/domain/task/dto/task.status.enum.ts -------------------------------------------------------------------------------- /src/domain/task/index.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alkem-io/server/HEAD/src/domain/task/index.ts -------------------------------------------------------------------------------- /src/domain/task/task.module.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alkem-io/server/HEAD/src/domain/task/task.module.ts -------------------------------------------------------------------------------- /src/domain/task/task.resolver.fields.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alkem-io/server/HEAD/src/domain/task/task.resolver.fields.ts -------------------------------------------------------------------------------- /src/domain/task/task.resolver.queries.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alkem-io/server/HEAD/src/domain/task/task.resolver.queries.ts -------------------------------------------------------------------------------- /src/domain/template/templates-manager/index.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alkem-io/server/HEAD/src/domain/template/templates-manager/index.ts -------------------------------------------------------------------------------- /src/domain/template/templates-set/index.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alkem-io/server/HEAD/src/domain/template/templates-set/index.ts -------------------------------------------------------------------------------- /src/domain/timeline/event/event.entity.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alkem-io/server/HEAD/src/domain/timeline/event/event.entity.ts -------------------------------------------------------------------------------- /src/domain/timeline/event/event.interface.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alkem-io/server/HEAD/src/domain/timeline/event/event.interface.ts -------------------------------------------------------------------------------- /src/domain/timeline/event/event.module.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alkem-io/server/HEAD/src/domain/timeline/event/event.module.ts -------------------------------------------------------------------------------- /src/domain/timeline/event/event.service.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alkem-io/server/HEAD/src/domain/timeline/event/event.service.ts -------------------------------------------------------------------------------- /src/domain/timeline/event/index.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alkem-io/server/HEAD/src/domain/timeline/event/index.ts -------------------------------------------------------------------------------- /src/library/innovation-pack/index.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alkem-io/server/HEAD/src/library/innovation-pack/index.ts -------------------------------------------------------------------------------- /src/library/library/library.entity.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alkem-io/server/HEAD/src/library/library/library.entity.ts -------------------------------------------------------------------------------- /src/library/library/library.interface.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alkem-io/server/HEAD/src/library/library/library.interface.ts -------------------------------------------------------------------------------- /src/library/library/library.module.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alkem-io/server/HEAD/src/library/library/library.module.ts -------------------------------------------------------------------------------- /src/library/library/library.resolver.fields.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alkem-io/server/HEAD/src/library/library/library.resolver.fields.ts -------------------------------------------------------------------------------- /src/library/library/library.service.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alkem-io/server/HEAD/src/library/library/library.service.ts -------------------------------------------------------------------------------- /src/main.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alkem-io/server/HEAD/src/main.ts -------------------------------------------------------------------------------- /src/migrations/1764590884532-baseline.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alkem-io/server/HEAD/src/migrations/1764590884532-baseline.ts -------------------------------------------------------------------------------- /src/migrations/1764590884533-seed.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alkem-io/server/HEAD/src/migrations/1764590884533-seed.ts -------------------------------------------------------------------------------- /src/migrations/utils/alterColumnType.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alkem-io/server/HEAD/src/migrations/utils/alterColumnType.ts -------------------------------------------------------------------------------- /src/migrations/utils/callouts/update-to-link-callout.ts: -------------------------------------------------------------------------------- 1 | export const updateToLinkCallout = async (id: string) => { 2 | return id; 3 | }; 4 | -------------------------------------------------------------------------------- /src/migrations/utils/chunk.array.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alkem-io/server/HEAD/src/migrations/utils/chunk.array.ts -------------------------------------------------------------------------------- /src/migrations/utils/create-location.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alkem-io/server/HEAD/src/migrations/utils/create-location.ts -------------------------------------------------------------------------------- /src/migrations/utils/create-profile.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alkem-io/server/HEAD/src/migrations/utils/create-profile.ts -------------------------------------------------------------------------------- /src/migrations/utils/create-tagset.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alkem-io/server/HEAD/src/migrations/utils/create-tagset.ts -------------------------------------------------------------------------------- /src/migrations/utils/dataCoherency-utils.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alkem-io/server/HEAD/src/migrations/utils/dataCoherency-utils.ts -------------------------------------------------------------------------------- /src/migrations/utils/escape-string.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alkem-io/server/HEAD/src/migrations/utils/escape-string.ts -------------------------------------------------------------------------------- /src/migrations/utils/generate-nameid.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alkem-io/server/HEAD/src/migrations/utils/generate-nameid.ts -------------------------------------------------------------------------------- /src/migrations/utils/get-query-runner.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alkem-io/server/HEAD/src/migrations/utils/get-query-runner.ts -------------------------------------------------------------------------------- /src/migrations/utils/preferences/index.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alkem-io/server/HEAD/src/migrations/utils/preferences/index.ts -------------------------------------------------------------------------------- /src/migrations/utils/safely-add-foreignKey.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alkem-io/server/HEAD/src/migrations/utils/safely-add-foreignKey.ts -------------------------------------------------------------------------------- /src/migrations/utils/safely-drop-foreignKey.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alkem-io/server/HEAD/src/migrations/utils/safely-drop-foreignKey.ts -------------------------------------------------------------------------------- /src/migrations/utils/safely-drop-index.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alkem-io/server/HEAD/src/migrations/utils/safely-drop-index.ts -------------------------------------------------------------------------------- /src/platform-admin/Readme.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alkem-io/server/HEAD/src/platform-admin/Readme.md -------------------------------------------------------------------------------- /src/platform-admin/domain/communication/dto/index.ts: -------------------------------------------------------------------------------- 1 | export * from './admin.communication.dto.membership.input'; 2 | -------------------------------------------------------------------------------- /src/platform/activity/activity.entity.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alkem-io/server/HEAD/src/platform/activity/activity.entity.ts -------------------------------------------------------------------------------- /src/platform/activity/activity.interface.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alkem-io/server/HEAD/src/platform/activity/activity.interface.ts -------------------------------------------------------------------------------- /src/platform/activity/activity.module.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alkem-io/server/HEAD/src/platform/activity/activity.module.ts -------------------------------------------------------------------------------- /src/platform/activity/activity.service.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alkem-io/server/HEAD/src/platform/activity/activity.service.ts -------------------------------------------------------------------------------- /src/platform/activity/index.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alkem-io/server/HEAD/src/platform/activity/index.ts -------------------------------------------------------------------------------- /src/platform/configuration/config/apm/index.ts: -------------------------------------------------------------------------------- 1 | export * from './apm.config.interface'; 2 | -------------------------------------------------------------------------------- /src/platform/configuration/config/index.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alkem-io/server/HEAD/src/platform/configuration/config/index.ts -------------------------------------------------------------------------------- /src/platform/configuration/config/locations/index.ts: -------------------------------------------------------------------------------- 1 | export * from './platform.locations.interface'; 2 | -------------------------------------------------------------------------------- /src/platform/configuration/config/sentry/index.ts: -------------------------------------------------------------------------------- 1 | export * from './sentry.config.interface'; 2 | -------------------------------------------------------------------------------- /src/platform/configuration/config/storage/index.ts: -------------------------------------------------------------------------------- 1 | export * from './storage.config.interface'; 2 | -------------------------------------------------------------------------------- /src/platform/configuration/index.ts: -------------------------------------------------------------------------------- 1 | export * from './config'; 2 | -------------------------------------------------------------------------------- /src/platform/forum/forum.entity.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alkem-io/server/HEAD/src/platform/forum/forum.entity.ts -------------------------------------------------------------------------------- /src/platform/forum/forum.interface.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alkem-io/server/HEAD/src/platform/forum/forum.interface.ts -------------------------------------------------------------------------------- /src/platform/forum/forum.module.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alkem-io/server/HEAD/src/platform/forum/forum.module.ts -------------------------------------------------------------------------------- /src/platform/forum/forum.resolver.fields.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alkem-io/server/HEAD/src/platform/forum/forum.resolver.fields.ts -------------------------------------------------------------------------------- /src/platform/forum/forum.resolver.mutations.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alkem-io/server/HEAD/src/platform/forum/forum.resolver.mutations.ts -------------------------------------------------------------------------------- /src/platform/forum/forum.service.spec.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alkem-io/server/HEAD/src/platform/forum/forum.service.spec.ts -------------------------------------------------------------------------------- /src/platform/forum/forum.service.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alkem-io/server/HEAD/src/platform/forum/forum.service.ts -------------------------------------------------------------------------------- /src/platform/forum/index.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alkem-io/server/HEAD/src/platform/forum/index.ts -------------------------------------------------------------------------------- /src/platform/metadata/index.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alkem-io/server/HEAD/src/platform/metadata/index.ts -------------------------------------------------------------------------------- /src/platform/metadata/metadata.interface.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alkem-io/server/HEAD/src/platform/metadata/metadata.interface.ts -------------------------------------------------------------------------------- /src/platform/metadata/metadata.module.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alkem-io/server/HEAD/src/platform/metadata/metadata.module.ts -------------------------------------------------------------------------------- /src/platform/metadata/metadata.service.spec.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alkem-io/server/HEAD/src/platform/metadata/metadata.service.spec.ts -------------------------------------------------------------------------------- /src/platform/metadata/metadata.service.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alkem-io/server/HEAD/src/platform/metadata/metadata.service.ts -------------------------------------------------------------------------------- /src/platform/metadata/service/index.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alkem-io/server/HEAD/src/platform/metadata/service/index.ts -------------------------------------------------------------------------------- /src/platform/platform-settings/index.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alkem-io/server/HEAD/src/platform/platform-settings/index.ts -------------------------------------------------------------------------------- /src/platform/platform/platform.entity.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alkem-io/server/HEAD/src/platform/platform/platform.entity.ts -------------------------------------------------------------------------------- /src/platform/platform/platform.interface.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alkem-io/server/HEAD/src/platform/platform/platform.interface.ts -------------------------------------------------------------------------------- /src/platform/platform/platform.module.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alkem-io/server/HEAD/src/platform/platform/platform.module.ts -------------------------------------------------------------------------------- /src/platform/platform/platform.service.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alkem-io/server/HEAD/src/platform/platform/platform.service.ts -------------------------------------------------------------------------------- /src/schema-bootstrap/stubs/cache.stub.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alkem-io/server/HEAD/src/schema-bootstrap/stubs/cache.stub.ts -------------------------------------------------------------------------------- /src/schema-bootstrap/stubs/db.stub.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alkem-io/server/HEAD/src/schema-bootstrap/stubs/db.stub.ts -------------------------------------------------------------------------------- /src/schema-bootstrap/stubs/event-bus.stub.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alkem-io/server/HEAD/src/schema-bootstrap/stubs/event-bus.stub.ts -------------------------------------------------------------------------------- /src/schema-bootstrap/stubs/search.stub.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alkem-io/server/HEAD/src/schema-bootstrap/stubs/search.stub.ts -------------------------------------------------------------------------------- /src/schema-contract/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alkem-io/server/HEAD/src/schema-contract/README.md -------------------------------------------------------------------------------- /src/schema-contract/classify/build-report.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alkem-io/server/HEAD/src/schema-contract/classify/build-report.ts -------------------------------------------------------------------------------- /src/schema-contract/deprecation/parser.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alkem-io/server/HEAD/src/schema-contract/deprecation/parser.ts -------------------------------------------------------------------------------- /src/schema-contract/deprecation/registry.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alkem-io/server/HEAD/src/schema-contract/deprecation/registry.ts -------------------------------------------------------------------------------- /src/schema-contract/diff/cleanup.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alkem-io/server/HEAD/src/schema-contract/diff/cleanup.ts -------------------------------------------------------------------------------- /src/schema-contract/diff/diff-core.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alkem-io/server/HEAD/src/schema-contract/diff/diff-core.ts -------------------------------------------------------------------------------- /src/schema-contract/diff/diff-enum.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alkem-io/server/HEAD/src/schema-contract/diff/diff-enum.ts -------------------------------------------------------------------------------- /src/schema-contract/diff/diff-scalar.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alkem-io/server/HEAD/src/schema-contract/diff/diff-scalar.ts -------------------------------------------------------------------------------- /src/schema-contract/diff/diff-types.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alkem-io/server/HEAD/src/schema-contract/diff/diff-types.ts -------------------------------------------------------------------------------- /src/schema-contract/governance/codeowners.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alkem-io/server/HEAD/src/schema-contract/governance/codeowners.ts -------------------------------------------------------------------------------- /src/schema-contract/governance/reviews.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alkem-io/server/HEAD/src/schema-contract/governance/reviews.ts -------------------------------------------------------------------------------- /src/schema-contract/model/change-entry.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alkem-io/server/HEAD/src/schema-contract/model/change-entry.ts -------------------------------------------------------------------------------- /src/schema-contract/model/change-report.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alkem-io/server/HEAD/src/schema-contract/model/change-report.ts -------------------------------------------------------------------------------- /src/schema-contract/model/deprecation-entry.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alkem-io/server/HEAD/src/schema-contract/model/deprecation-entry.ts -------------------------------------------------------------------------------- /src/schema-contract/model/index.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alkem-io/server/HEAD/src/schema-contract/model/index.ts -------------------------------------------------------------------------------- /src/schema-contract/model/schema-snapshot.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alkem-io/server/HEAD/src/schema-contract/model/schema-snapshot.ts -------------------------------------------------------------------------------- /src/schema-contract/model/shared-types.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alkem-io/server/HEAD/src/schema-contract/model/shared-types.ts -------------------------------------------------------------------------------- /src/schema-contract/model/types.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alkem-io/server/HEAD/src/schema-contract/model/types.ts -------------------------------------------------------------------------------- /src/schema-contract/snapshot/load-baseline.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alkem-io/server/HEAD/src/schema-contract/snapshot/load-baseline.ts -------------------------------------------------------------------------------- /src/services/adapters/activity-adapter/dto/activity.dto.input.base.ts: -------------------------------------------------------------------------------- 1 | export class ActivityInputBase { 2 | triggeredBy!: string; 3 | } 4 | -------------------------------------------------------------------------------- /src/services/adapters/ai-server-adapter/index.ts: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /src/services/adapters/communication-adapter/index.ts: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /src/services/adapters/notification-adapter/index.ts: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /src/services/adapters/storage/index.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alkem-io/server/HEAD/src/services/adapters/storage/index.ts -------------------------------------------------------------------------------- /src/services/ai-server/ai-persona/dto/index.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alkem-io/server/HEAD/src/services/ai-server/ai-persona/dto/index.ts -------------------------------------------------------------------------------- /src/services/ai-server/ai-persona/index.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alkem-io/server/HEAD/src/services/ai-server/ai-persona/index.ts -------------------------------------------------------------------------------- /src/services/api/activity-log/index.ts: -------------------------------------------------------------------------------- 1 | export * from './activity.log.service'; 2 | -------------------------------------------------------------------------------- /src/services/api/input-creator/dto/index.ts: -------------------------------------------------------------------------------- 1 | export * from './input.creator.query.results'; 2 | -------------------------------------------------------------------------------- /src/services/api/lookup-by-name/dto/index.ts: -------------------------------------------------------------------------------- 1 | export * from './lookup.by.name.query.results'; 2 | -------------------------------------------------------------------------------- /src/services/api/lookup-by-name/index.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alkem-io/server/HEAD/src/services/api/lookup-by-name/index.ts -------------------------------------------------------------------------------- /src/services/api/lookup/dto/index.ts: -------------------------------------------------------------------------------- 1 | export * from './lookup.query.results'; 2 | -------------------------------------------------------------------------------- /src/services/api/lookup/index.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alkem-io/server/HEAD/src/services/api/lookup/index.ts -------------------------------------------------------------------------------- /src/services/api/lookup/lookup.module.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alkem-io/server/HEAD/src/services/api/lookup/lookup.module.ts -------------------------------------------------------------------------------- /src/services/api/lookup/lookup.service.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alkem-io/server/HEAD/src/services/api/lookup/lookup.service.ts -------------------------------------------------------------------------------- /src/services/api/me/dto/index.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alkem-io/server/HEAD/src/services/api/me/dto/index.ts -------------------------------------------------------------------------------- /src/services/api/me/dto/me.query.results.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alkem-io/server/HEAD/src/services/api/me/dto/me.query.results.ts -------------------------------------------------------------------------------- /src/services/api/me/dto/my.journeys.results.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alkem-io/server/HEAD/src/services/api/me/dto/my.journeys.results.ts -------------------------------------------------------------------------------- /src/services/api/me/index.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alkem-io/server/HEAD/src/services/api/me/index.ts -------------------------------------------------------------------------------- /src/services/api/me/me.module.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alkem-io/server/HEAD/src/services/api/me/me.module.ts -------------------------------------------------------------------------------- /src/services/api/me/me.resolver.fields.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alkem-io/server/HEAD/src/services/api/me/me.resolver.fields.ts -------------------------------------------------------------------------------- /src/services/api/me/me.resolver.queries.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alkem-io/server/HEAD/src/services/api/me/me.resolver.queries.ts -------------------------------------------------------------------------------- /src/services/api/me/me.service.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alkem-io/server/HEAD/src/services/api/me/me.service.ts -------------------------------------------------------------------------------- /src/services/api/me/space.membership.type.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alkem-io/server/HEAD/src/services/api/me/space.membership.type.ts -------------------------------------------------------------------------------- /src/services/api/roles/dto/roles.dto.result.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alkem-io/server/HEAD/src/services/api/roles/dto/roles.dto.result.ts -------------------------------------------------------------------------------- /src/services/api/roles/index.ts: -------------------------------------------------------------------------------- 1 | export * from './dto/roles.dto.input.user'; 2 | -------------------------------------------------------------------------------- /src/services/api/roles/roles.module.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alkem-io/server/HEAD/src/services/api/roles/roles.module.ts -------------------------------------------------------------------------------- /src/services/api/roles/roles.service.spec.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alkem-io/server/HEAD/src/services/api/roles/roles.service.spec.ts -------------------------------------------------------------------------------- /src/services/api/roles/roles.service.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alkem-io/server/HEAD/src/services/api/roles/roles.service.ts -------------------------------------------------------------------------------- /src/services/api/search/dto/inputs/index.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alkem-io/server/HEAD/src/services/api/search/dto/inputs/index.ts -------------------------------------------------------------------------------- /src/services/api/search/dto/results/index.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alkem-io/server/HEAD/src/services/api/search/dto/results/index.ts -------------------------------------------------------------------------------- /src/services/api/search/ingest/index.ts: -------------------------------------------------------------------------------- 1 | export * from './search.ingest.module'; 2 | -------------------------------------------------------------------------------- /src/services/api/search/search.category.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alkem-io/server/HEAD/src/services/api/search/search.category.ts -------------------------------------------------------------------------------- /src/services/api/search/search.module.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alkem-io/server/HEAD/src/services/api/search/search.module.ts -------------------------------------------------------------------------------- /src/services/api/search/search.result.type.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alkem-io/server/HEAD/src/services/api/search/search.result.type.ts -------------------------------------------------------------------------------- /src/services/api/search/search.service.spec.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alkem-io/server/HEAD/src/services/api/search/search.service.spec.ts -------------------------------------------------------------------------------- /src/services/api/search/search.service.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alkem-io/server/HEAD/src/services/api/search/search.service.ts -------------------------------------------------------------------------------- /src/services/api/search/util/index.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alkem-io/server/HEAD/src/services/api/search/util/index.ts -------------------------------------------------------------------------------- /src/services/auth-reset/reset.event.type.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alkem-io/server/HEAD/src/services/auth-reset/reset.event.type.ts -------------------------------------------------------------------------------- /src/services/collaborative-document-integration/index.ts: -------------------------------------------------------------------------------- 1 | export * from './collaborative-document-integration.module'; 2 | -------------------------------------------------------------------------------- /src/services/external/elasticsearch/elasticsearch-client/index.ts: -------------------------------------------------------------------------------- 1 | export * from './elasticsearch.client.provider'; 2 | -------------------------------------------------------------------------------- /src/services/external/geo-location/index.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alkem-io/server/HEAD/src/services/external/geo-location/index.ts -------------------------------------------------------------------------------- /src/services/external/geoapify/geo.location.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alkem-io/server/HEAD/src/services/external/geoapify/geo.location.ts -------------------------------------------------------------------------------- /src/services/external/geoapify/index.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alkem-io/server/HEAD/src/services/external/geoapify/index.ts -------------------------------------------------------------------------------- /src/services/external/wingback-webhooks/index.ts: -------------------------------------------------------------------------------- 1 | export * from './wingback.webhook.module'; 2 | -------------------------------------------------------------------------------- /src/services/external/wingback/index.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alkem-io/server/HEAD/src/services/external/wingback/index.ts -------------------------------------------------------------------------------- /src/services/external/wingback/types/wingback.type.update.customer.ts: -------------------------------------------------------------------------------- 1 | export type UpdateCustomer = Record; 2 | -------------------------------------------------------------------------------- /src/services/file-integration/index.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alkem-io/server/HEAD/src/services/file-integration/index.ts -------------------------------------------------------------------------------- /src/services/file-integration/inputs/base.input.data.ts: -------------------------------------------------------------------------------- 1 | export class BaseInputData { 2 | constructor(public event: string) {} 3 | } 4 | -------------------------------------------------------------------------------- /src/services/file-integration/inputs/index.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alkem-io/server/HEAD/src/services/file-integration/inputs/index.ts -------------------------------------------------------------------------------- /src/services/file-integration/outputs/base.output.data.ts: -------------------------------------------------------------------------------- 1 | export class BaseOutputData { 2 | constructor(public event: string) {} 3 | } 4 | -------------------------------------------------------------------------------- /src/services/file-integration/outputs/index.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alkem-io/server/HEAD/src/services/file-integration/outputs/index.ts -------------------------------------------------------------------------------- /src/services/task/index.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alkem-io/server/HEAD/src/services/task/index.ts -------------------------------------------------------------------------------- /src/services/task/task.error.interface.ts: -------------------------------------------------------------------------------- 1 | export type TaskError = string; 2 | -------------------------------------------------------------------------------- /src/services/task/task.interface.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alkem-io/server/HEAD/src/services/task/task.interface.ts -------------------------------------------------------------------------------- /src/services/task/task.list.key.ts: -------------------------------------------------------------------------------- 1 | export const TASK_LIST_CACHE_KEY = 'task-list'; 2 | -------------------------------------------------------------------------------- /src/services/task/task.module.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alkem-io/server/HEAD/src/services/task/task.module.ts -------------------------------------------------------------------------------- /src/services/task/task.result.interface.ts: -------------------------------------------------------------------------------- 1 | export type TaskResult = string; 2 | -------------------------------------------------------------------------------- /src/services/task/task.service.spec.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alkem-io/server/HEAD/src/services/task/task.service.spec.ts -------------------------------------------------------------------------------- /src/services/task/task.service.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alkem-io/server/HEAD/src/services/task/task.service.ts -------------------------------------------------------------------------------- /src/services/task/types.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alkem-io/server/HEAD/src/services/task/types.ts -------------------------------------------------------------------------------- /src/services/util/ack.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alkem-io/server/HEAD/src/services/util/ack.ts -------------------------------------------------------------------------------- /src/services/util/index.ts: -------------------------------------------------------------------------------- 1 | export * from './ack'; 2 | -------------------------------------------------------------------------------- /src/services/whiteboard-integration/inputs/base.input.data.ts: -------------------------------------------------------------------------------- 1 | export class BaseInputData { 2 | constructor(public event: string) {} 3 | } 4 | -------------------------------------------------------------------------------- /src/tools/schema/README-override.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alkem-io/server/HEAD/src/tools/schema/README-override.md -------------------------------------------------------------------------------- /src/tools/schema/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alkem-io/server/HEAD/src/tools/schema/README.md -------------------------------------------------------------------------------- /src/tools/schema/deprecation-parser.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alkem-io/server/HEAD/src/tools/schema/deprecation-parser.ts -------------------------------------------------------------------------------- /src/tools/schema/diff-schema.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alkem-io/server/HEAD/src/tools/schema/diff-schema.ts -------------------------------------------------------------------------------- /src/tools/schema/override-fetch.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alkem-io/server/HEAD/src/tools/schema/override-fetch.ts -------------------------------------------------------------------------------- /src/tools/schema/override.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alkem-io/server/HEAD/src/tools/schema/override.ts -------------------------------------------------------------------------------- /src/tools/schema/print-schema.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alkem-io/server/HEAD/src/tools/schema/print-schema.ts -------------------------------------------------------------------------------- /src/tools/schema/sort-sdl.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alkem-io/server/HEAD/src/tools/schema/sort-sdl.ts -------------------------------------------------------------------------------- /src/tools/schema/types.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alkem-io/server/HEAD/src/tools/schema/types.ts -------------------------------------------------------------------------------- /src/tools/schema/validate-artifacts.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alkem-io/server/HEAD/src/tools/schema/validate-artifacts.ts -------------------------------------------------------------------------------- /src/types/alkemio.config.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alkem-io/server/HEAD/src/types/alkemio.config.ts -------------------------------------------------------------------------------- /src/types/context.type.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alkem-io/server/HEAD/src/types/context.type.ts -------------------------------------------------------------------------------- /src/types/deep.select.properties.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alkem-io/server/HEAD/src/types/deep.select.properties.ts -------------------------------------------------------------------------------- /src/types/entity.relations.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alkem-io/server/HEAD/src/types/entity.relations.ts -------------------------------------------------------------------------------- /src/types/graphql/graphql.context.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alkem-io/server/HEAD/src/types/graphql/graphql.context.ts -------------------------------------------------------------------------------- /src/types/graphql/index.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alkem-io/server/HEAD/src/types/graphql/index.ts -------------------------------------------------------------------------------- /src/types/index.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alkem-io/server/HEAD/src/types/index.ts -------------------------------------------------------------------------------- /src/types/prefixed.type.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alkem-io/server/HEAD/src/types/prefixed.type.ts -------------------------------------------------------------------------------- /src/types/typed.logger.service.interface.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alkem-io/server/HEAD/src/types/typed.logger.service.interface.ts -------------------------------------------------------------------------------- /test/config/jest.config.ci.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alkem-io/server/HEAD/test/config/jest.config.ci.js -------------------------------------------------------------------------------- /test/config/jest.config.ci.nocov.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alkem-io/server/HEAD/test/config/jest.config.ci.nocov.js -------------------------------------------------------------------------------- /test/config/jest.config.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alkem-io/server/HEAD/test/config/jest.config.js -------------------------------------------------------------------------------- /test/data/agent.mock.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alkem-io/server/HEAD/test/data/agent.mock.ts -------------------------------------------------------------------------------- /test/data/agentInfo.mock.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alkem-io/server/HEAD/test/data/agentInfo.mock.ts -------------------------------------------------------------------------------- /test/data/applications.mock.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alkem-io/server/HEAD/test/data/applications.mock.ts -------------------------------------------------------------------------------- /test/data/organization.mock.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alkem-io/server/HEAD/test/data/organization.mock.ts -------------------------------------------------------------------------------- /test/data/roles-user.mock.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alkem-io/server/HEAD/test/data/roles-user.mock.ts -------------------------------------------------------------------------------- /test/data/space.mock.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alkem-io/server/HEAD/test/data/space.mock.ts -------------------------------------------------------------------------------- /test/data/user.mock.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alkem-io/server/HEAD/test/data/user.mock.ts -------------------------------------------------------------------------------- /test/data/user.settings.mock.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alkem-io/server/HEAD/test/data/user.settings.mock.ts -------------------------------------------------------------------------------- /test/data/virtual-contributor.mock.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alkem-io/server/HEAD/test/data/virtual-contributor.mock.ts -------------------------------------------------------------------------------- /test/mocks/account.service.mock.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alkem-io/server/HEAD/test/mocks/account.service.mock.ts -------------------------------------------------------------------------------- /test/mocks/agent.service.mock.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alkem-io/server/HEAD/test/mocks/agent.service.mock.ts -------------------------------------------------------------------------------- /test/mocks/application.service.mock.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alkem-io/server/HEAD/test/mocks/application.service.mock.ts -------------------------------------------------------------------------------- /test/mocks/auth.reset.service.mock.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alkem-io/server/HEAD/test/mocks/auth.reset.service.mock.ts -------------------------------------------------------------------------------- /test/mocks/authorization.service.mock.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alkem-io/server/HEAD/test/mocks/authorization.service.mock.ts -------------------------------------------------------------------------------- /test/mocks/cache-manager.mock.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alkem-io/server/HEAD/test/mocks/cache-manager.mock.ts -------------------------------------------------------------------------------- /test/mocks/communication.adapter.mock.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alkem-io/server/HEAD/test/mocks/communication.adapter.mock.ts -------------------------------------------------------------------------------- /test/mocks/community.resolver.service.mock.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alkem-io/server/HEAD/test/mocks/community.resolver.service.mock.ts -------------------------------------------------------------------------------- /test/mocks/community.service.mock.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alkem-io/server/HEAD/test/mocks/community.service.mock.ts -------------------------------------------------------------------------------- /test/mocks/config.service.mock.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alkem-io/server/HEAD/test/mocks/config.service.mock.ts -------------------------------------------------------------------------------- /test/mocks/contributor.lookup.service.mock.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alkem-io/server/HEAD/test/mocks/contributor.lookup.service.mock.ts -------------------------------------------------------------------------------- /test/mocks/entity.manager.provider.mock.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alkem-io/server/HEAD/test/mocks/entity.manager.provider.mock.ts -------------------------------------------------------------------------------- /test/mocks/geo.location.service.mock.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alkem-io/server/HEAD/test/mocks/geo.location.service.mock.ts -------------------------------------------------------------------------------- /test/mocks/http.service.mock.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alkem-io/server/HEAD/test/mocks/http.service.mock.ts -------------------------------------------------------------------------------- /test/mocks/index.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alkem-io/server/HEAD/test/mocks/index.ts -------------------------------------------------------------------------------- /test/mocks/invitation.service.mock.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alkem-io/server/HEAD/test/mocks/invitation.service.mock.ts -------------------------------------------------------------------------------- /test/mocks/matrix.adapter.service.mock.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alkem-io/server/HEAD/test/mocks/matrix.adapter.service.mock.ts -------------------------------------------------------------------------------- /test/mocks/notifications.service.mock.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alkem-io/server/HEAD/test/mocks/notifications.service.mock.ts -------------------------------------------------------------------------------- /test/mocks/organization.lookup.service.mock.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alkem-io/server/HEAD/test/mocks/organization.lookup.service.mock.ts -------------------------------------------------------------------------------- /test/mocks/organization.service.mock.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alkem-io/server/HEAD/test/mocks/organization.service.mock.ts -------------------------------------------------------------------------------- /test/mocks/space.filter.service.mock.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alkem-io/server/HEAD/test/mocks/space.filter.service.mock.ts -------------------------------------------------------------------------------- /test/mocks/space.service.mock.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alkem-io/server/HEAD/test/mocks/space.service.mock.ts -------------------------------------------------------------------------------- /test/mocks/task.service.mock.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alkem-io/server/HEAD/test/mocks/task.service.mock.ts -------------------------------------------------------------------------------- /test/mocks/user.authorization.service.mock.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alkem-io/server/HEAD/test/mocks/user.authorization.service.mock.ts -------------------------------------------------------------------------------- /test/mocks/user.group.service.mock.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alkem-io/server/HEAD/test/mocks/user.group.service.mock.ts -------------------------------------------------------------------------------- /test/mocks/user.lookup.service.mock.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alkem-io/server/HEAD/test/mocks/user.lookup.service.mock.ts -------------------------------------------------------------------------------- /test/mocks/user.service.mock.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alkem-io/server/HEAD/test/mocks/user.service.mock.ts -------------------------------------------------------------------------------- /test/mocks/virtual.contributor.service.mock.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alkem-io/server/HEAD/test/mocks/virtual.contributor.service.mock.ts -------------------------------------------------------------------------------- /test/mocks/winston.provider.mock.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alkem-io/server/HEAD/test/mocks/winston.provider.mock.ts -------------------------------------------------------------------------------- /test/schema/bootstrap-parity.spec.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alkem-io/server/HEAD/test/schema/bootstrap-parity.spec.ts -------------------------------------------------------------------------------- /test/schema/deprecation-parser.spec.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alkem-io/server/HEAD/test/schema/deprecation-parser.spec.ts -------------------------------------------------------------------------------- /test/schema/diff-baseline.spec.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alkem-io/server/HEAD/test/schema/diff-baseline.spec.ts -------------------------------------------------------------------------------- /test/schema/diff-basic.spec.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alkem-io/server/HEAD/test/schema/diff-basic.spec.ts -------------------------------------------------------------------------------- /test/schema/diff-enum-removal.spec.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alkem-io/server/HEAD/test/schema/diff-enum-removal.spec.ts -------------------------------------------------------------------------------- /test/schema/diff-nullability.spec.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alkem-io/server/HEAD/test/schema/diff-nullability.spec.ts -------------------------------------------------------------------------------- /test/schema/diff-performance.spec.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alkem-io/server/HEAD/test/schema/diff-performance.spec.ts -------------------------------------------------------------------------------- /test/schema/diff-scalar.spec.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alkem-io/server/HEAD/test/schema/diff-scalar.spec.ts -------------------------------------------------------------------------------- /test/schema/override-eval.spec.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alkem-io/server/HEAD/test/schema/override-eval.spec.ts -------------------------------------------------------------------------------- /test/schema/override-fetch.spec.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alkem-io/server/HEAD/test/schema/override-fetch.spec.ts -------------------------------------------------------------------------------- /test/schema/override-sync.spec.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alkem-io/server/HEAD/test/schema/override-sync.spec.ts -------------------------------------------------------------------------------- /test/schema/validate-artifacts.spec.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alkem-io/server/HEAD/test/schema/validate-artifacts.spec.ts -------------------------------------------------------------------------------- /test/utils/async-to-throw.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alkem-io/server/HEAD/test/utils/async-to-throw.ts -------------------------------------------------------------------------------- /test/utils/default.mocker.factory.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alkem-io/server/HEAD/test/utils/default.mocker.factory.ts -------------------------------------------------------------------------------- /test/utils/event-bus.mock.factory.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alkem-io/server/HEAD/test/utils/event-bus.mock.factory.ts -------------------------------------------------------------------------------- /test/utils/index.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alkem-io/server/HEAD/test/utils/index.ts -------------------------------------------------------------------------------- /test/utils/mock.type.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alkem-io/server/HEAD/test/utils/mock.type.ts -------------------------------------------------------------------------------- /test/utils/mock.value.provider.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alkem-io/server/HEAD/test/utils/mock.value.provider.ts -------------------------------------------------------------------------------- /test/utils/pub.sub.engine.mock.factory.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alkem-io/server/HEAD/test/utils/pub.sub.engine.mock.factory.ts -------------------------------------------------------------------------------- /test/utils/public-part.ts: -------------------------------------------------------------------------------- 1 | export type PublicPart = { 2 | [P in keyof T]?: unknown; 3 | }; 4 | -------------------------------------------------------------------------------- /test/utils/repository.mock.factory.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alkem-io/server/HEAD/test/utils/repository.mock.factory.ts -------------------------------------------------------------------------------- /test/utils/test-data.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alkem-io/server/HEAD/test/utils/test-data.ts -------------------------------------------------------------------------------- /tsconfig.build.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alkem-io/server/HEAD/tsconfig.build.json -------------------------------------------------------------------------------- /tsconfig.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alkem-io/server/HEAD/tsconfig.json -------------------------------------------------------------------------------- /uploads/hello-alkemio.txt: -------------------------------------------------------------------------------- 1 | Hello Alkemio! --------------------------------------------------------------------------------