├── .github ├── CODEOWNERS ├── PULL_REQUEST_TEMPLATE.md ├── dependabot.yml └── workflows │ ├── chart-release.yaml │ ├── codeql.yml │ ├── dependencies-backend.yml │ ├── dependencies-frontend.yaml │ ├── deployment-tests.yaml │ ├── docker-build-frontend.yml │ ├── docker-build.yml │ ├── helm-test.yaml │ ├── kics.yaml │ ├── test-report.yaml │ ├── trivy.yml │ ├── trufflehog.yml │ └── verify.yml ├── .gitignore ├── .tractusx ├── .trivyignore ├── AUTHORS.md ├── CHANGELOG.md ├── CODE_OF_CONDUCT.md ├── CONTRIBUTING.md ├── DEPENDENCIES_ICHUB-BACKEND ├── DEPENDENCIES_ICHUB-FRONTEND ├── INSTALL.md ├── LICENSE ├── LICENSE_non-code ├── NOTICE.md ├── README.md ├── SECURITY.md ├── charts ├── industry-core-hub │ ├── .helmignore │ ├── Chart.yaml │ ├── LICENSE │ ├── README.md │ ├── README.md.gotmpl │ ├── files │ │ └── realm-export.json │ ├── templates │ │ ├── _helpers.tpl │ │ ├── asset-sync-job.yaml │ │ ├── configmap-backend-postgres-init.yaml │ │ ├── configmap-backend.yaml │ │ ├── configmap-realm-data.yaml │ │ ├── deployment-backend.yaml │ │ ├── deployment-frontend.yaml │ │ ├── ingress-backend.yaml │ │ ├── ingress-frontend.yaml │ │ ├── job-realm-import.yaml │ │ ├── pvc-data-backend.yaml │ │ ├── secret-backend-external-db.yaml │ │ ├── secret-backend-postgres.yaml │ │ ├── secret-keycloak-realm-users.yaml │ │ ├── service-backend.yaml │ │ └── service-frontend.yaml │ ├── values-int-manufacturer.yaml │ ├── values-int.yaml │ ├── values-keycloak.yaml │ ├── values-local-deployment.yaml │ └── values.yaml └── test-helm-values-ichub.yaml ├── deployment ├── data-consumer │ ├── .helmignore │ ├── Chart.yaml │ ├── README.md │ ├── templates │ │ ├── _helpers.tpl │ │ ├── post-install-vault-setup.yaml │ │ └── vault-edc-configmap.yaml │ ├── values-int-vault.yaml │ ├── values-int.yaml │ └── values.yaml ├── data-manufacturer │ ├── .helmignore │ ├── Chart.yaml │ ├── README.md │ ├── templates │ │ ├── _helpers.tpl │ │ ├── post-install-vault-setup.yaml │ │ └── vault-edc-configmap.yaml │ ├── values-int-vault.yaml │ ├── values-int.yaml │ └── values.yaml ├── data-provider │ ├── .helmignore │ ├── Chart.yaml │ ├── README.md │ ├── templates │ │ ├── _helpers.tpl │ │ ├── post-install-vault-setup.yaml │ │ └── vault-edc-configmap.yaml │ ├── values-int-vault.yaml │ ├── values-int.yaml │ └── values.yaml └── local │ └── docker-compose │ ├── .env.example │ ├── README.md │ ├── docker-compose.yml │ ├── init-keycloak-db.sql │ └── prepare-realm.sh ├── docs ├── admin │ └── migration-guide.md ├── api │ ├── README.md │ ├── bruno │ │ └── Industry Core Hub Backend API │ │ │ ├── Check Health.bru │ │ │ ├── Open Connection Management │ │ │ ├── Data Get.bru │ │ │ ├── Data Post.bru │ │ │ └── folder.bru │ │ │ ├── Part Discovery Management │ │ │ ├── Discover Registries.bru │ │ │ ├── Discover Shell.bru │ │ │ ├── Discover Shells.bru │ │ │ ├── Discover Submodel.bru │ │ │ ├── Discover Submodels By Semantic Id.bru │ │ │ ├── Discover Submodels.bru │ │ │ └── folder.bru │ │ │ ├── Part Management │ │ │ ├── Part Management Create Catalog Part.bru │ │ │ ├── Part Management Create Partner Mapping.bru │ │ │ ├── Part Management Create Serialized Part.bru │ │ │ ├── Part Management Get Catalog Part Details.bru │ │ │ ├── Part Management Get Catalog Parts.bru │ │ │ ├── Part Management Get Serialized Parts.bru │ │ │ ├── Part Management Query Serialized Parts.bru │ │ │ └── folder.bru │ │ │ ├── Partner Management │ │ │ ├── Partner Management Create Business Partner.bru │ │ │ ├── Partner Management Get Business Partner.bru │ │ │ ├── Partner Management Get Business Partners.bru │ │ │ ├── Partner Management Get Data Exchange Agreements.bru │ │ │ └── folder.bru │ │ │ ├── Sharing Functionality │ │ │ ├── Share Catalog Part.bru │ │ │ └── folder.bru │ │ │ ├── Submodel Dispatcher │ │ │ ├── Submodel Dispatcher Delete Submodel.bru │ │ │ ├── Submodel Dispatcher Get Submodel Content Submodel Value.bru │ │ │ ├── Submodel Dispatcher Upload Submodel.bru │ │ │ └── folder.bru │ │ │ ├── Twin Management │ │ │ ├── Twin Management Create Catalog Part Twin.bru │ │ │ ├── Twin Management Create Serialized Part Twin.bru │ │ │ ├── Twin Management Create Twin Aspect.bru │ │ │ ├── Twin Management Get All Serialized Part Twins.bru │ │ │ ├── Twin Management Get Catalog Part Twin From Manufacturer.bru │ │ │ ├── Twin Management Get Catalog Part Twin.bru │ │ │ ├── Twin Management Get Catalog Part Twins.bru │ │ │ ├── Twin Management Get Serialized Part Twin.bru │ │ │ ├── Twin Management Share Catalog Part Twin.bru │ │ │ ├── Twin Management Share Serialized Part Twin.bru │ │ │ └── folder.bru │ │ │ ├── bruno.json │ │ │ └── collection.bru │ └── openAPI.yaml ├── architecture │ ├── .adr-dir │ ├── 1-introduction-and-goals.md │ ├── 2-architecture-constraints.md │ ├── 3-system-scope-and-context.md │ ├── 4-runtime-view.md │ ├── README.md │ ├── decision-records │ │ ├── 0001-record-architecture-decisions.md │ │ ├── 0002-tractus-x-sdk.md │ │ ├── 0003-tractus-x-sdk-individual-repository.md │ │ ├── 0004-data-storage-persistance-architecture.md │ │ └── media │ │ │ ├── abstraction-levels.svg │ │ │ ├── abstraction-levels.svg.license │ │ │ ├── abstraction-phases.svg │ │ │ ├── abstraction-phases.svg.license │ │ │ ├── datamodel-persistance.png │ │ │ ├── datamodel-persistance.png.license │ │ │ ├── ic-hub-context.svg │ │ │ ├── ic-hub-context.svg.license │ │ │ ├── modular-microservices-architecture.svg │ │ │ ├── modular-microservices-architecture.svg.license │ │ │ ├── sdk-context.png │ │ │ └── sdk-context.png.license │ ├── glossary.md │ └── media │ │ ├── Abstract Level Arch.svg │ │ ├── Abstract Level Arch.svg.license │ │ ├── Abstraction Levels.drawio.svg │ │ ├── Abstraction Levels.drawio.svg.license │ │ ├── Abstraction Phases.svg │ │ ├── Abstraction Phases.svg.license │ │ ├── BackendSequenceDiagram │ │ ├── BackendSequenceDiagram(Steps1-3).puml │ │ ├── BackendSequenceDiagram(Steps1-3).svg │ │ ├── BackendSequenceDiagram(Steps1-3).svg.license │ │ ├── BackendSequenceDiagram(Steps4-6).puml │ │ ├── BackendSequenceDiagram(Steps4-6).svg │ │ ├── BackendSequenceDiagram(Steps4-6).svg.license │ │ ├── BackendSequenceDiagram(Steps7-8).puml │ │ ├── BackendSequenceDiagram(Steps7-8).svg │ │ ├── BackendSequenceDiagram(Steps7-8).svg.license │ │ ├── BackendSequenceDiagram.puml │ │ ├── BackendSequenceDiagram.svg │ │ └── BackendSequenceDiagram.svg.license │ │ ├── CX-Next-Drawings-Data Model CX-Next.drawio.svg │ │ ├── Complete Context Diagram.svg │ │ ├── Complete Context Diagram.svg.license │ │ ├── Context Diagram.drawio.svg │ │ ├── Context Diagram.drawio.svg.license │ │ ├── FrontendSequenceDiagram │ │ ├── ProducDetailsSequenceDiagram.puml │ │ ├── ProducDetailsSequenceDiagram.svg │ │ ├── ProducDetailsSequenceDiagram.svg.license │ │ ├── ProductListSequenceDiagram.puml │ │ ├── ProductListSequenceDiagram.svg │ │ └── ProductListSequenceDiagram.svg.license │ │ ├── Frontend_Mock_Industry_Core.png │ │ ├── Frontend_Mock_Industry_Core.png.license │ │ ├── ICHDatabase.png │ │ ├── ICH_BackendStructure.svg │ │ ├── ICH_BackendStructure.svg.license │ │ ├── ICH_Catena_X_BuildingBlocks.svg │ │ ├── ICH_Catena_X_BuildingBlocks.svg.license │ │ ├── ICH_Frontend_Architecture.drawio │ │ ├── ICH_Frontend_Architecture.svg │ │ ├── ICH_Frontend_Architecture.svg.license │ │ ├── ICH_HighLevelArchitecture.svg │ │ ├── ICH_HighLevelArchitecture.svg.license │ │ ├── Interfaces.drawio.svg │ │ ├── Interfaces.drawio.svg.license │ │ ├── Software Compontents Diagram.drawio.svg │ │ ├── Software Compontents Diagram.drawio.svg.license │ │ ├── catena-x-speedway.svg │ │ └── catena-x-speedway.svg.license ├── database │ └── Metadata-DDL-public.sql ├── developer │ └── reset-keycloak-password.md ├── media │ ├── BackendArchitecture.png │ ├── BackendArchitecture.png.license │ ├── BuildingBlocks.png │ ├── BuildingBlocks.png.license │ ├── FrontendArchitecture.png │ ├── FrontendArchitecture.png.license │ ├── IndustryCoreHubLogo.png │ └── IndustryCoreHubLogo.png.license ├── meetings │ └── 2025-02-04-Meeting_Minutes ├── umbrella │ ├── minimal-values.yaml │ ├── postman │ │ └── ic-hub-aas-registry-v3.postman_collection.json │ └── umbrella-deployment-guide.md └── user │ ├── SUBMODEL_CREATOR_GUIDE.md │ └── media │ ├── 01-new-submodel-button.png │ ├── 01-new-submodel-button.png.license │ ├── 02-schema-selection-dpp-card.png │ ├── 02-schema-selection-dpp-card.png.license │ ├── 03-creator-layout-overview.png │ ├── 03-creator-layout-overview.png.license │ ├── 04-filter-required-off.png │ ├── 04-filter-required-off.png.license │ ├── 05-filter-required-on.png │ ├── 05-filter-required-on.png.license │ ├── 06-import-json-entry.png │ ├── 06-import-json-entry.png.license │ ├── 07-import-json-paste.png │ ├── 07-import-json-paste.png.license │ ├── 08-import-json-file-picker.png │ ├── 08-import-json-file-picker.png.license │ ├── 09-clear-form-action.png │ ├── 09-clear-form-action.png.license │ ├── 10-clear-form-confirmation.png │ ├── 10-clear-form-confirmation.png.license │ ├── 11-field-info-tooltip.png │ ├── 11-field-info-tooltip.png.license │ ├── 12-schema-rules-details.png │ ├── 12-schema-rules-details.png.license │ ├── 13-json-preview-navigate.png │ ├── 13-json-preview-navigate.png.license │ ├── 14-json-preview-focused.png │ ├── 14-json-preview-focused.png.license │ ├── 15-field-standard-text.png │ ├── 15-field-standard-text.png.license │ ├── 16-field-date-picker.png │ ├── 16-field-date-picker.png.license │ ├── 17-field-predefined-select.png │ ├── 17-field-predefined-select.png.license │ ├── 18-field-boolean-toggle.png │ ├── 18-field-boolean-toggle.png.license │ ├── 19-field-numeric-input.png │ ├── 19-field-numeric-input.png.license │ ├── 20-field-array-items.png │ ├── 20-field-array-items.png.license │ ├── 21-field-nested-structure.png │ ├── 21-field-nested-structure.png.license │ ├── 22-validate-button-action.png │ ├── 22-validate-button-action.png.license │ ├── 23-validation-errors-grouped.png │ ├── 23-validation-errors-grouped.png.license │ ├── 24-return-json-view.png │ ├── 24-return-json-view.png.license │ ├── 25-expand-error-group.png │ ├── 25-expand-error-group.png.license │ ├── 26-goto-field-navigate.png │ ├── 26-goto-field-navigate.png.license │ ├── 27-field-focused-correction.png │ ├── 27-field-focused-correction.png.license │ ├── 28-schema-rules-from-error.png │ ├── 28-schema-rules-from-error.png.license │ ├── 29-schema-rules-constraints.png │ ├── 29-schema-rules-constraints.png.license │ ├── 30-goto-field-from-rules.png │ ├── 30-goto-field-from-rules.png.license │ ├── 31-validation-success.png │ ├── 31-validation-success.png.license │ ├── 32-create-submodel-action.png │ ├── 32-create-submodel-action.png.license │ ├── 33-create-submodel-success.png │ ├── 33-create-submodel-success.png.license │ ├── 34-catalog-part-verification.png │ └── 34-catalog-part-verification.png.license ├── ichub-backend ├── .gitignore ├── Dockerfile ├── README.md ├── __init__.py ├── config │ ├── __init__.py │ ├── configuration.yml │ └── logging.yml ├── connector.py ├── controllers │ ├── __init__.py │ └── fastapi │ │ ├── __init__.py │ │ ├── app.py │ │ └── routers │ │ ├── authentication │ │ └── auth_api.py │ │ ├── consumer │ │ └── v1 │ │ │ ├── connection_management.py │ │ │ └── discovery_management.py │ │ └── provider │ │ └── v1 │ │ ├── __init__.py │ │ ├── part_management.py │ │ ├── partner_management.py │ │ ├── sharing_handler.py │ │ ├── submodel_dispatcher.py │ │ └── twin_management.py ├── database.py ├── docker-notice-ichub-backend.md ├── dtr.py ├── jobs │ ├── __init__.py │ ├── asset_sync_job.py │ └── run_asset_sync.py ├── main.py ├── managers │ ├── __init__.py │ ├── config │ │ ├── __init__.py │ │ ├── config_manager.py │ │ └── log_manager.py │ ├── enablement_services │ │ ├── __init__.py │ │ ├── connector_manager.py │ │ ├── consumer │ │ │ ├── __init__.py │ │ │ ├── base_connector_consumer_manager.py │ │ │ ├── base_dtr_consumer_manager.py │ │ │ ├── connector │ │ │ │ ├── database │ │ │ │ │ ├── __init__.py │ │ │ │ │ ├── connector_consumer_postgres_memory_manager.py │ │ │ │ │ └── connector_consumer_sync_postgres_memory_manager.py │ │ │ │ └── memory │ │ │ │ │ ├── __init__.py │ │ │ │ │ └── connector_consumer_memory_manager.py │ │ │ └── dtr │ │ │ │ ├── __init__.py │ │ │ │ ├── database │ │ │ │ ├── __init__.py │ │ │ │ ├── dtr_consumer_postgres_memory_manager.py │ │ │ │ └── dtr_consumer_sync_postgres_memory_manager.py │ │ │ │ ├── memory │ │ │ │ ├── __init__.py │ │ │ │ └── dtr_consumer_memory_manager.py │ │ │ │ └── pagination_manager.py │ │ ├── dtr_manager.py │ │ ├── provider │ │ │ ├── __init__.py │ │ │ ├── connector_provider_manager.py │ │ │ └── dtr_provider_manager.py │ │ └── submodel_service_manager.py │ ├── metadata_database │ │ ├── __init__.py │ │ ├── manager.py │ │ └── repositories.py │ └── submodels │ │ ├── __init__.py │ │ └── submodel_document_generator.py ├── models │ ├── __init__.py │ ├── metadata_database │ │ ├── __init__.py │ │ ├── consumer │ │ │ ├── __init__.py │ │ │ └── models.py │ │ └── provider │ │ │ ├── __init__.py │ │ │ └── models.py │ └── services │ │ ├── consumer │ │ ├── connection_management.py │ │ └── discovery_management.py │ │ └── provider │ │ ├── __init__.py │ │ ├── part_management.py │ │ ├── partner_management.py │ │ ├── sharing_management.py │ │ └── twin_management.py ├── requirements.txt ├── runtimes │ ├── __init__.py │ └── fastapi │ │ ├── __init__.py │ │ └── main.py ├── services │ └── provider │ │ ├── __init__.py │ │ ├── part_management_service.py │ │ ├── partner_management_service.py │ │ ├── sharing_service.py │ │ ├── submodel_dispatcher_service.py │ │ └── twin_management_service.py ├── setup.py ├── tests │ ├── __init__.py │ ├── controllers │ │ ├── __init__.py │ │ └── test_authentication.py │ ├── jobs │ │ ├── __init__.py │ │ └── test_asset_sync_job.py │ └── services │ │ ├── __init__.py │ │ └── provider │ │ ├── __init__.py │ │ ├── test_part_management_service.py │ │ ├── test_partner_management_service.py │ │ ├── test_sharing_service.py │ │ ├── test_submodel_dispatcher_service.py │ │ └── test_twin_management_service.py ├── tools │ ├── __init__.py │ ├── aspect_id_tools.py │ ├── constants.py │ ├── crypt_tools.py │ ├── env_tools.py │ ├── exceptions.py │ └── submodel_type_util.py └── utils │ └── async_utils.py ├── ichub-frontend ├── .dockerignore ├── .gitignore ├── Dockerfile ├── README.md ├── analyze-schema.cjs ├── docker-notice-ichub-frontend.md ├── docs │ ├── CONFIGURATION_ARCHITECTURE.md │ ├── GOVERNANCE_CONFIGURATION.md │ └── media │ │ ├── catalogView.png │ │ ├── productView.png │ │ ├── ux-ui-design.svg │ │ └── ux-ui-design.svg.license ├── eslint.config.js ├── index.html ├── nginx.conf ├── package-lock.json ├── package.json ├── public │ ├── 241117_Tractus_X_Logo_Only_RGB.png │ ├── 241117_Tractus_X_Logo_RGB_Light_Version.png │ ├── 241215_Tractus-X_Where_We_Build_Dataspaces_Logo_Light.png │ ├── IndustryCoreHubLogo.png │ ├── eclipse-tractus-x-logo.png │ ├── logo_tractus-x-min.ico │ ├── main-bg-new.png │ ├── stars-background.png │ ├── stars.png │ └── vite.svg ├── scripts │ └── inject-dynamic-env.sh ├── src │ ├── App.css │ ├── App.tsx │ ├── assets │ │ ├── IndustryCoreHubLogo.png.license │ │ ├── kit-images │ │ │ ├── business-partner-kit.svg │ │ │ ├── business-partner-kit.svg.license │ │ │ ├── data-chain-kit.svg │ │ │ ├── data-chain-kit.svg.license │ │ │ ├── dcm-kit.svg │ │ │ ├── dcm-kit.svg.license │ │ │ ├── eco-pass-kit.svg │ │ │ ├── eco-pass-kit.svg.license │ │ │ ├── industry-core-kit.svg │ │ │ ├── industry-core-kit.svg.license │ │ │ ├── pcf-kit.svg │ │ │ ├── pcf-kit.svg.license │ │ │ ├── traceability-kit.svg │ │ │ └── traceability-kit.svg.license │ │ └── styles │ │ │ ├── components │ │ │ ├── _CustomCardList.scss │ │ │ ├── _CustomDataGrid.scss │ │ │ ├── _Dialog.scss │ │ │ ├── _InstanceTable.scss │ │ │ ├── _SharedTable.scss │ │ │ ├── _index.scss │ │ │ └── part-discovery │ │ │ │ ├── _CatalogPartsDiscovery.scss │ │ │ │ ├── _FilterChips.scss │ │ │ │ ├── _PaginationControls.scss │ │ │ │ ├── _PartnerSearch.scss │ │ │ │ ├── _PartsDiscoverySidebar.scss │ │ │ │ ├── _SearchHeader.scss │ │ │ │ ├── _SearchModeToggle.scss │ │ │ │ ├── _SingleTwinSearch.scss │ │ │ │ └── _index.scss │ │ │ ├── config │ │ │ ├── _mixins.scss │ │ │ └── _variables.scss │ │ │ ├── layout │ │ │ ├── _Header.scss │ │ │ ├── _MainLayout.scss │ │ │ ├── _Sidebar.scss │ │ │ └── _index.scss │ │ │ ├── main.scss │ │ │ └── pages │ │ │ ├── _KitFeatures.scss │ │ │ ├── _PartnersList.scss │ │ │ ├── _PartsDiscovery.scss │ │ │ ├── _ProductDetail.scss │ │ │ ├── _ProductList.scss │ │ │ └── _index.scss │ ├── components │ │ ├── auth │ │ │ ├── AuthProvider.tsx │ │ │ └── ProtectedRoute.tsx │ │ ├── common │ │ │ └── ErrorPage.tsx │ │ ├── general │ │ │ ├── AdditionalSidebar.tsx │ │ │ ├── ErrorNotFound.tsx │ │ │ ├── FeaturesPanel.tsx │ │ │ ├── Header.tsx │ │ │ ├── JsonViewer.tsx │ │ │ ├── LoadingSpinner.tsx │ │ │ ├── PageNotification.tsx │ │ │ ├── Sidebar.tsx │ │ │ └── SidebarTooltip.tsx │ │ ├── icons │ │ │ └── CustomAppsIcon.tsx │ │ ├── layout │ │ │ └── AdditionalSidebar.tsx │ │ └── submodel-creation │ │ │ ├── CopyableUrnChip.tsx │ │ │ ├── CustomTooltip.tsx │ │ │ ├── DynamicForm.tsx │ │ │ ├── JsonImportDialog.tsx │ │ │ ├── JsonPreview.tsx │ │ │ ├── SchemaRulesViewer.tsx │ │ │ ├── SchemaSelector.tsx │ │ │ ├── ScrollToTopFab.tsx │ │ │ ├── SubmodelCreator.tsx │ │ │ ├── ValidationButton.tsx │ │ │ ├── index.ts │ │ │ └── objectPathUtils.ts │ ├── config │ │ ├── ConfigFactory.ts │ │ ├── README.md │ │ ├── base.ts │ │ ├── index.ts │ │ ├── schema.ts │ │ └── types.ts │ ├── contexts │ │ ├── AdditionalSidebarContext.tsx │ │ └── SidebarContext.tsx │ ├── features │ │ ├── catalog-management │ │ │ ├── api.ts │ │ │ ├── components │ │ │ │ ├── product-detail │ │ │ │ │ ├── AddSerializedPartDialog.tsx │ │ │ │ │ ├── DarkSubmodelViewer.tsx │ │ │ │ │ ├── InstanceProductsTable.tsx │ │ │ │ │ ├── JsonViewer.tsx │ │ │ │ │ ├── JsonViewerDialog.tsx │ │ │ │ │ ├── ProductButton.tsx │ │ │ │ │ ├── ProductData.tsx │ │ │ │ │ ├── SerializedPartStatusChip.tsx │ │ │ │ │ ├── ShareDropdown.tsx │ │ │ │ │ ├── SharedTable.tsx │ │ │ │ │ ├── SubmodelCard.tsx │ │ │ │ │ ├── SubmodelViewer.tsx │ │ │ │ │ └── SubmodelsGridDialog.tsx │ │ │ │ ├── product-list │ │ │ │ │ ├── CardChip.tsx │ │ │ │ │ ├── CreateProductListDialog.tsx │ │ │ │ │ └── ProductCard.tsx │ │ │ │ └── shared │ │ │ │ │ └── ShareDialog.tsx │ │ │ ├── config.ts │ │ │ ├── index.ts │ │ │ ├── pages │ │ │ │ ├── ProductsDetails.tsx │ │ │ │ ├── ProductsList.tsx │ │ │ │ └── index.ts │ │ │ ├── routes.tsx │ │ │ ├── types │ │ │ │ ├── dialog-types.ts │ │ │ │ ├── shared.ts │ │ │ │ ├── twin-types.ts │ │ │ │ └── types.ts │ │ │ └── utils │ │ │ │ └── utils.ts │ │ ├── kit-features │ │ │ ├── components │ │ │ │ └── KitCard.tsx │ │ │ ├── index.ts │ │ │ ├── pages │ │ │ │ └── KitFeaturesPage.tsx │ │ │ ├── routes.tsx │ │ │ └── types │ │ │ │ └── index.ts │ │ ├── main.tsx │ │ ├── part-discovery │ │ │ ├── api.ts │ │ │ ├── components │ │ │ │ ├── catalog-parts │ │ │ │ │ ├── CatalogPartsDiscovery.tsx │ │ │ │ │ └── DiscoveryCardChip.tsx │ │ │ │ ├── index.ts │ │ │ │ ├── search-result │ │ │ │ │ ├── FilterChips.tsx │ │ │ │ │ ├── PaginationControls.tsx │ │ │ │ │ └── SearchHeader.tsx │ │ │ │ ├── search │ │ │ │ │ ├── ErrorBoundary.tsx │ │ │ │ │ ├── PartnerSearch.tsx │ │ │ │ │ ├── PartsDiscoverySidebar.tsx │ │ │ │ │ ├── SearchLoading.tsx │ │ │ │ │ └── SearchModeToggle.tsx │ │ │ │ ├── serialized-parts │ │ │ │ │ └── SerializedPartsTable.tsx │ │ │ │ ├── single-twin │ │ │ │ │ ├── SingleTwinResult.tsx │ │ │ │ │ └── SingleTwinSearch.tsx │ │ │ │ ├── submodel-addons │ │ │ │ │ ├── BaseAddon.tsx │ │ │ │ │ ├── registry.ts │ │ │ │ │ ├── shared │ │ │ │ │ │ ├── registry.ts │ │ │ │ │ │ ├── semantic-id-utils.ts │ │ │ │ │ │ ├── types.ts │ │ │ │ │ │ └── utils.ts │ │ │ │ │ ├── types.ts │ │ │ │ │ ├── us-tariff-information │ │ │ │ │ │ ├── UsTariffInformationViewer.tsx │ │ │ │ │ │ ├── addon.ts │ │ │ │ │ │ ├── index.ts │ │ │ │ │ │ └── types.ts │ │ │ │ │ └── utils │ │ │ │ │ │ ├── country-flags.ts │ │ │ │ │ │ └── version-utils.ts │ │ │ │ └── submodel │ │ │ │ │ └── SubmodelViewer.tsx │ │ │ ├── config.ts │ │ │ ├── hooks │ │ │ │ └── usePartsDiscoverySearch.ts │ │ │ ├── index.ts │ │ │ ├── pages │ │ │ │ ├── PartsDiscovery.tsx │ │ │ │ └── index.ts │ │ │ ├── routes.tsx │ │ │ ├── types │ │ │ │ └── types.ts │ │ │ └── utils │ │ │ │ ├── data-converters.ts │ │ │ │ ├── dtr-utils.ts │ │ │ │ ├── governancePolicyUtils.test.ts │ │ │ │ ├── governancePolicyUtils.ts │ │ │ │ └── utils.ts │ │ ├── partner-management │ │ │ ├── api.ts │ │ │ ├── api │ │ │ │ └── index.ts │ │ │ ├── components │ │ │ │ ├── general │ │ │ │ │ ├── CreatePartnerDialog.tsx │ │ │ │ │ ├── PartnerAutocomplete.tsx │ │ │ │ │ └── index.ts │ │ │ │ ├── index.ts │ │ │ │ └── partners-list │ │ │ │ │ └── PartnerCard.tsx │ │ │ ├── config.ts │ │ │ ├── index.ts │ │ │ ├── pages │ │ │ │ ├── PartnersList.tsx │ │ │ │ └── index.ts │ │ │ ├── routes.tsx │ │ │ └── types │ │ │ │ ├── dialog-types.ts │ │ │ │ └── types.ts │ │ └── serialized-parts │ │ │ ├── api.ts │ │ │ ├── api │ │ │ └── index.ts │ │ │ ├── components │ │ │ ├── AddSerializedPartDialog.tsx │ │ │ └── SerializedPartsTable.tsx │ │ │ ├── config.ts │ │ │ ├── index.ts │ │ │ ├── pages │ │ │ ├── SerializedParts.tsx │ │ │ └── index.ts │ │ │ ├── routes.tsx │ │ │ ├── types.ts │ │ │ └── types │ │ │ └── twin-types.ts │ ├── hooks │ │ ├── useAdditionalSidebar.ts │ │ ├── useAuth.ts │ │ └── useEscapeKey.ts │ ├── layouts │ │ └── MainLayout.tsx │ ├── main.tsx │ ├── routes.tsx │ ├── schemas │ │ ├── DigitalProductPassport-schema.json │ │ ├── index.ts │ │ ├── json-schema-interpreter.ts │ │ └── schemaLoader.ts │ ├── services │ │ ├── AuthService.ts │ │ ├── EnvironmentService.ts │ │ └── HttpClient.ts │ ├── styles │ │ └── fieldNavigation.css │ ├── tests │ │ └── payloads │ │ │ ├── instance-data.json │ │ │ ├── sample-data.json │ │ │ └── shared-partners.json │ ├── theme │ │ ├── palette.ts │ │ ├── theme.ts │ │ └── typography.ts │ ├── types │ │ ├── axiosError.tsx │ │ ├── index.ts │ │ ├── partnerDialogViewer.ts │ │ └── routing.ts │ ├── utils │ │ ├── downloadJson.ts │ │ ├── fieldNavigation.ts │ │ ├── schemaUtils.ts │ │ └── semantics.ts │ └── vite-env.d.ts ├── tsconfig.node.json └── vite.config.ts ├── pytest.ini ├── scripts └── reset-keycloak-password.sh └── test.sh /.github/CODEOWNERS: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eclipse-tractusx/industry-core-hub/HEAD/.github/CODEOWNERS -------------------------------------------------------------------------------- /.github/PULL_REQUEST_TEMPLATE.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eclipse-tractusx/industry-core-hub/HEAD/.github/PULL_REQUEST_TEMPLATE.md -------------------------------------------------------------------------------- /.github/dependabot.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eclipse-tractusx/industry-core-hub/HEAD/.github/dependabot.yml -------------------------------------------------------------------------------- /.github/workflows/chart-release.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eclipse-tractusx/industry-core-hub/HEAD/.github/workflows/chart-release.yaml -------------------------------------------------------------------------------- /.github/workflows/codeql.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eclipse-tractusx/industry-core-hub/HEAD/.github/workflows/codeql.yml -------------------------------------------------------------------------------- /.github/workflows/dependencies-backend.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eclipse-tractusx/industry-core-hub/HEAD/.github/workflows/dependencies-backend.yml -------------------------------------------------------------------------------- /.github/workflows/dependencies-frontend.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eclipse-tractusx/industry-core-hub/HEAD/.github/workflows/dependencies-frontend.yaml -------------------------------------------------------------------------------- /.github/workflows/deployment-tests.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eclipse-tractusx/industry-core-hub/HEAD/.github/workflows/deployment-tests.yaml -------------------------------------------------------------------------------- /.github/workflows/docker-build-frontend.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eclipse-tractusx/industry-core-hub/HEAD/.github/workflows/docker-build-frontend.yml -------------------------------------------------------------------------------- /.github/workflows/docker-build.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eclipse-tractusx/industry-core-hub/HEAD/.github/workflows/docker-build.yml -------------------------------------------------------------------------------- /.github/workflows/helm-test.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eclipse-tractusx/industry-core-hub/HEAD/.github/workflows/helm-test.yaml -------------------------------------------------------------------------------- /.github/workflows/kics.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eclipse-tractusx/industry-core-hub/HEAD/.github/workflows/kics.yaml -------------------------------------------------------------------------------- /.github/workflows/test-report.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eclipse-tractusx/industry-core-hub/HEAD/.github/workflows/test-report.yaml -------------------------------------------------------------------------------- /.github/workflows/trivy.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eclipse-tractusx/industry-core-hub/HEAD/.github/workflows/trivy.yml -------------------------------------------------------------------------------- /.github/workflows/trufflehog.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eclipse-tractusx/industry-core-hub/HEAD/.github/workflows/trufflehog.yml -------------------------------------------------------------------------------- /.github/workflows/verify.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eclipse-tractusx/industry-core-hub/HEAD/.github/workflows/verify.yml -------------------------------------------------------------------------------- /.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eclipse-tractusx/industry-core-hub/HEAD/.gitignore -------------------------------------------------------------------------------- /.tractusx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eclipse-tractusx/industry-core-hub/HEAD/.tractusx -------------------------------------------------------------------------------- /.trivyignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eclipse-tractusx/industry-core-hub/HEAD/.trivyignore -------------------------------------------------------------------------------- /AUTHORS.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eclipse-tractusx/industry-core-hub/HEAD/AUTHORS.md -------------------------------------------------------------------------------- /CHANGELOG.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eclipse-tractusx/industry-core-hub/HEAD/CHANGELOG.md -------------------------------------------------------------------------------- /CODE_OF_CONDUCT.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eclipse-tractusx/industry-core-hub/HEAD/CODE_OF_CONDUCT.md -------------------------------------------------------------------------------- /CONTRIBUTING.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eclipse-tractusx/industry-core-hub/HEAD/CONTRIBUTING.md -------------------------------------------------------------------------------- /DEPENDENCIES_ICHUB-BACKEND: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eclipse-tractusx/industry-core-hub/HEAD/DEPENDENCIES_ICHUB-BACKEND -------------------------------------------------------------------------------- /DEPENDENCIES_ICHUB-FRONTEND: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eclipse-tractusx/industry-core-hub/HEAD/DEPENDENCIES_ICHUB-FRONTEND -------------------------------------------------------------------------------- /INSTALL.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eclipse-tractusx/industry-core-hub/HEAD/INSTALL.md -------------------------------------------------------------------------------- /LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eclipse-tractusx/industry-core-hub/HEAD/LICENSE -------------------------------------------------------------------------------- /LICENSE_non-code: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eclipse-tractusx/industry-core-hub/HEAD/LICENSE_non-code -------------------------------------------------------------------------------- /NOTICE.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eclipse-tractusx/industry-core-hub/HEAD/NOTICE.md -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eclipse-tractusx/industry-core-hub/HEAD/README.md -------------------------------------------------------------------------------- /SECURITY.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eclipse-tractusx/industry-core-hub/HEAD/SECURITY.md -------------------------------------------------------------------------------- /charts/industry-core-hub/.helmignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eclipse-tractusx/industry-core-hub/HEAD/charts/industry-core-hub/.helmignore -------------------------------------------------------------------------------- /charts/industry-core-hub/Chart.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eclipse-tractusx/industry-core-hub/HEAD/charts/industry-core-hub/Chart.yaml -------------------------------------------------------------------------------- /charts/industry-core-hub/LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eclipse-tractusx/industry-core-hub/HEAD/charts/industry-core-hub/LICENSE -------------------------------------------------------------------------------- /charts/industry-core-hub/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eclipse-tractusx/industry-core-hub/HEAD/charts/industry-core-hub/README.md -------------------------------------------------------------------------------- /charts/industry-core-hub/README.md.gotmpl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eclipse-tractusx/industry-core-hub/HEAD/charts/industry-core-hub/README.md.gotmpl -------------------------------------------------------------------------------- /charts/industry-core-hub/files/realm-export.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eclipse-tractusx/industry-core-hub/HEAD/charts/industry-core-hub/files/realm-export.json -------------------------------------------------------------------------------- /charts/industry-core-hub/templates/_helpers.tpl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eclipse-tractusx/industry-core-hub/HEAD/charts/industry-core-hub/templates/_helpers.tpl -------------------------------------------------------------------------------- /charts/industry-core-hub/templates/asset-sync-job.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eclipse-tractusx/industry-core-hub/HEAD/charts/industry-core-hub/templates/asset-sync-job.yaml -------------------------------------------------------------------------------- /charts/industry-core-hub/templates/configmap-backend-postgres-init.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eclipse-tractusx/industry-core-hub/HEAD/charts/industry-core-hub/templates/configmap-backend-postgres-init.yaml -------------------------------------------------------------------------------- /charts/industry-core-hub/templates/configmap-backend.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eclipse-tractusx/industry-core-hub/HEAD/charts/industry-core-hub/templates/configmap-backend.yaml -------------------------------------------------------------------------------- /charts/industry-core-hub/templates/configmap-realm-data.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eclipse-tractusx/industry-core-hub/HEAD/charts/industry-core-hub/templates/configmap-realm-data.yaml -------------------------------------------------------------------------------- /charts/industry-core-hub/templates/deployment-backend.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eclipse-tractusx/industry-core-hub/HEAD/charts/industry-core-hub/templates/deployment-backend.yaml -------------------------------------------------------------------------------- /charts/industry-core-hub/templates/deployment-frontend.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eclipse-tractusx/industry-core-hub/HEAD/charts/industry-core-hub/templates/deployment-frontend.yaml -------------------------------------------------------------------------------- /charts/industry-core-hub/templates/ingress-backend.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eclipse-tractusx/industry-core-hub/HEAD/charts/industry-core-hub/templates/ingress-backend.yaml -------------------------------------------------------------------------------- /charts/industry-core-hub/templates/ingress-frontend.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eclipse-tractusx/industry-core-hub/HEAD/charts/industry-core-hub/templates/ingress-frontend.yaml -------------------------------------------------------------------------------- /charts/industry-core-hub/templates/job-realm-import.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eclipse-tractusx/industry-core-hub/HEAD/charts/industry-core-hub/templates/job-realm-import.yaml -------------------------------------------------------------------------------- /charts/industry-core-hub/templates/pvc-data-backend.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eclipse-tractusx/industry-core-hub/HEAD/charts/industry-core-hub/templates/pvc-data-backend.yaml -------------------------------------------------------------------------------- /charts/industry-core-hub/templates/secret-backend-external-db.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eclipse-tractusx/industry-core-hub/HEAD/charts/industry-core-hub/templates/secret-backend-external-db.yaml -------------------------------------------------------------------------------- /charts/industry-core-hub/templates/secret-backend-postgres.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eclipse-tractusx/industry-core-hub/HEAD/charts/industry-core-hub/templates/secret-backend-postgres.yaml -------------------------------------------------------------------------------- /charts/industry-core-hub/templates/secret-keycloak-realm-users.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eclipse-tractusx/industry-core-hub/HEAD/charts/industry-core-hub/templates/secret-keycloak-realm-users.yaml -------------------------------------------------------------------------------- /charts/industry-core-hub/templates/service-backend.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eclipse-tractusx/industry-core-hub/HEAD/charts/industry-core-hub/templates/service-backend.yaml -------------------------------------------------------------------------------- /charts/industry-core-hub/templates/service-frontend.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eclipse-tractusx/industry-core-hub/HEAD/charts/industry-core-hub/templates/service-frontend.yaml -------------------------------------------------------------------------------- /charts/industry-core-hub/values-int-manufacturer.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eclipse-tractusx/industry-core-hub/HEAD/charts/industry-core-hub/values-int-manufacturer.yaml -------------------------------------------------------------------------------- /charts/industry-core-hub/values-int.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eclipse-tractusx/industry-core-hub/HEAD/charts/industry-core-hub/values-int.yaml -------------------------------------------------------------------------------- /charts/industry-core-hub/values-keycloak.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eclipse-tractusx/industry-core-hub/HEAD/charts/industry-core-hub/values-keycloak.yaml -------------------------------------------------------------------------------- /charts/industry-core-hub/values-local-deployment.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eclipse-tractusx/industry-core-hub/HEAD/charts/industry-core-hub/values-local-deployment.yaml -------------------------------------------------------------------------------- /charts/industry-core-hub/values.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eclipse-tractusx/industry-core-hub/HEAD/charts/industry-core-hub/values.yaml -------------------------------------------------------------------------------- /charts/test-helm-values-ichub.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eclipse-tractusx/industry-core-hub/HEAD/charts/test-helm-values-ichub.yaml -------------------------------------------------------------------------------- /deployment/data-consumer/.helmignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eclipse-tractusx/industry-core-hub/HEAD/deployment/data-consumer/.helmignore -------------------------------------------------------------------------------- /deployment/data-consumer/Chart.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eclipse-tractusx/industry-core-hub/HEAD/deployment/data-consumer/Chart.yaml -------------------------------------------------------------------------------- /deployment/data-consumer/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eclipse-tractusx/industry-core-hub/HEAD/deployment/data-consumer/README.md -------------------------------------------------------------------------------- /deployment/data-consumer/templates/_helpers.tpl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eclipse-tractusx/industry-core-hub/HEAD/deployment/data-consumer/templates/_helpers.tpl -------------------------------------------------------------------------------- /deployment/data-consumer/templates/post-install-vault-setup.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eclipse-tractusx/industry-core-hub/HEAD/deployment/data-consumer/templates/post-install-vault-setup.yaml -------------------------------------------------------------------------------- /deployment/data-consumer/templates/vault-edc-configmap.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eclipse-tractusx/industry-core-hub/HEAD/deployment/data-consumer/templates/vault-edc-configmap.yaml -------------------------------------------------------------------------------- /deployment/data-consumer/values-int-vault.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eclipse-tractusx/industry-core-hub/HEAD/deployment/data-consumer/values-int-vault.yaml -------------------------------------------------------------------------------- /deployment/data-consumer/values-int.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eclipse-tractusx/industry-core-hub/HEAD/deployment/data-consumer/values-int.yaml -------------------------------------------------------------------------------- /deployment/data-consumer/values.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eclipse-tractusx/industry-core-hub/HEAD/deployment/data-consumer/values.yaml -------------------------------------------------------------------------------- /deployment/data-manufacturer/.helmignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eclipse-tractusx/industry-core-hub/HEAD/deployment/data-manufacturer/.helmignore -------------------------------------------------------------------------------- /deployment/data-manufacturer/Chart.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eclipse-tractusx/industry-core-hub/HEAD/deployment/data-manufacturer/Chart.yaml -------------------------------------------------------------------------------- /deployment/data-manufacturer/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eclipse-tractusx/industry-core-hub/HEAD/deployment/data-manufacturer/README.md -------------------------------------------------------------------------------- /deployment/data-manufacturer/templates/_helpers.tpl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eclipse-tractusx/industry-core-hub/HEAD/deployment/data-manufacturer/templates/_helpers.tpl -------------------------------------------------------------------------------- /deployment/data-manufacturer/templates/post-install-vault-setup.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eclipse-tractusx/industry-core-hub/HEAD/deployment/data-manufacturer/templates/post-install-vault-setup.yaml -------------------------------------------------------------------------------- /deployment/data-manufacturer/templates/vault-edc-configmap.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eclipse-tractusx/industry-core-hub/HEAD/deployment/data-manufacturer/templates/vault-edc-configmap.yaml -------------------------------------------------------------------------------- /deployment/data-manufacturer/values-int-vault.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eclipse-tractusx/industry-core-hub/HEAD/deployment/data-manufacturer/values-int-vault.yaml -------------------------------------------------------------------------------- /deployment/data-manufacturer/values-int.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eclipse-tractusx/industry-core-hub/HEAD/deployment/data-manufacturer/values-int.yaml -------------------------------------------------------------------------------- /deployment/data-manufacturer/values.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eclipse-tractusx/industry-core-hub/HEAD/deployment/data-manufacturer/values.yaml -------------------------------------------------------------------------------- /deployment/data-provider/.helmignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eclipse-tractusx/industry-core-hub/HEAD/deployment/data-provider/.helmignore -------------------------------------------------------------------------------- /deployment/data-provider/Chart.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eclipse-tractusx/industry-core-hub/HEAD/deployment/data-provider/Chart.yaml -------------------------------------------------------------------------------- /deployment/data-provider/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eclipse-tractusx/industry-core-hub/HEAD/deployment/data-provider/README.md -------------------------------------------------------------------------------- /deployment/data-provider/templates/_helpers.tpl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eclipse-tractusx/industry-core-hub/HEAD/deployment/data-provider/templates/_helpers.tpl -------------------------------------------------------------------------------- /deployment/data-provider/templates/post-install-vault-setup.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eclipse-tractusx/industry-core-hub/HEAD/deployment/data-provider/templates/post-install-vault-setup.yaml -------------------------------------------------------------------------------- /deployment/data-provider/templates/vault-edc-configmap.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eclipse-tractusx/industry-core-hub/HEAD/deployment/data-provider/templates/vault-edc-configmap.yaml -------------------------------------------------------------------------------- /deployment/data-provider/values-int-vault.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eclipse-tractusx/industry-core-hub/HEAD/deployment/data-provider/values-int-vault.yaml -------------------------------------------------------------------------------- /deployment/data-provider/values-int.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eclipse-tractusx/industry-core-hub/HEAD/deployment/data-provider/values-int.yaml -------------------------------------------------------------------------------- /deployment/data-provider/values.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eclipse-tractusx/industry-core-hub/HEAD/deployment/data-provider/values.yaml -------------------------------------------------------------------------------- /deployment/local/docker-compose/.env.example: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eclipse-tractusx/industry-core-hub/HEAD/deployment/local/docker-compose/.env.example -------------------------------------------------------------------------------- /deployment/local/docker-compose/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eclipse-tractusx/industry-core-hub/HEAD/deployment/local/docker-compose/README.md -------------------------------------------------------------------------------- /deployment/local/docker-compose/docker-compose.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eclipse-tractusx/industry-core-hub/HEAD/deployment/local/docker-compose/docker-compose.yml -------------------------------------------------------------------------------- /deployment/local/docker-compose/init-keycloak-db.sql: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eclipse-tractusx/industry-core-hub/HEAD/deployment/local/docker-compose/init-keycloak-db.sql -------------------------------------------------------------------------------- /deployment/local/docker-compose/prepare-realm.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eclipse-tractusx/industry-core-hub/HEAD/deployment/local/docker-compose/prepare-realm.sh -------------------------------------------------------------------------------- /docs/admin/migration-guide.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eclipse-tractusx/industry-core-hub/HEAD/docs/admin/migration-guide.md -------------------------------------------------------------------------------- /docs/api/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eclipse-tractusx/industry-core-hub/HEAD/docs/api/README.md -------------------------------------------------------------------------------- /docs/api/bruno/Industry Core Hub Backend API/Check Health.bru: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eclipse-tractusx/industry-core-hub/HEAD/docs/api/bruno/Industry Core Hub Backend API/Check Health.bru -------------------------------------------------------------------------------- /docs/api/bruno/Industry Core Hub Backend API/Open Connection Management/Data Get.bru: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eclipse-tractusx/industry-core-hub/HEAD/docs/api/bruno/Industry Core Hub Backend API/Open Connection Management/Data Get.bru -------------------------------------------------------------------------------- /docs/api/bruno/Industry Core Hub Backend API/Open Connection Management/Data Post.bru: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eclipse-tractusx/industry-core-hub/HEAD/docs/api/bruno/Industry Core Hub Backend API/Open Connection Management/Data Post.bru -------------------------------------------------------------------------------- /docs/api/bruno/Industry Core Hub Backend API/Open Connection Management/folder.bru: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eclipse-tractusx/industry-core-hub/HEAD/docs/api/bruno/Industry Core Hub Backend API/Open Connection Management/folder.bru -------------------------------------------------------------------------------- /docs/api/bruno/Industry Core Hub Backend API/Part Discovery Management/Discover Registries.bru: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eclipse-tractusx/industry-core-hub/HEAD/docs/api/bruno/Industry Core Hub Backend API/Part Discovery Management/Discover Registries.bru -------------------------------------------------------------------------------- /docs/api/bruno/Industry Core Hub Backend API/Part Discovery Management/Discover Shell.bru: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eclipse-tractusx/industry-core-hub/HEAD/docs/api/bruno/Industry Core Hub Backend API/Part Discovery Management/Discover Shell.bru -------------------------------------------------------------------------------- /docs/api/bruno/Industry Core Hub Backend API/Part Discovery Management/Discover Shells.bru: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eclipse-tractusx/industry-core-hub/HEAD/docs/api/bruno/Industry Core Hub Backend API/Part Discovery Management/Discover Shells.bru -------------------------------------------------------------------------------- /docs/api/bruno/Industry Core Hub Backend API/Part Discovery Management/Discover Submodel.bru: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eclipse-tractusx/industry-core-hub/HEAD/docs/api/bruno/Industry Core Hub Backend API/Part Discovery Management/Discover Submodel.bru -------------------------------------------------------------------------------- /docs/api/bruno/Industry Core Hub Backend API/Part Discovery Management/Discover Submodels By Semantic Id.bru: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eclipse-tractusx/industry-core-hub/HEAD/docs/api/bruno/Industry Core Hub Backend API/Part Discovery Management/Discover Submodels By Semantic Id.bru -------------------------------------------------------------------------------- /docs/api/bruno/Industry Core Hub Backend API/Part Discovery Management/Discover Submodels.bru: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eclipse-tractusx/industry-core-hub/HEAD/docs/api/bruno/Industry Core Hub Backend API/Part Discovery Management/Discover Submodels.bru -------------------------------------------------------------------------------- /docs/api/bruno/Industry Core Hub Backend API/Part Discovery Management/folder.bru: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eclipse-tractusx/industry-core-hub/HEAD/docs/api/bruno/Industry Core Hub Backend API/Part Discovery Management/folder.bru -------------------------------------------------------------------------------- /docs/api/bruno/Industry Core Hub Backend API/Part Management/Part Management Create Catalog Part.bru: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eclipse-tractusx/industry-core-hub/HEAD/docs/api/bruno/Industry Core Hub Backend API/Part Management/Part Management Create Catalog Part.bru -------------------------------------------------------------------------------- /docs/api/bruno/Industry Core Hub Backend API/Part Management/Part Management Create Partner Mapping.bru: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eclipse-tractusx/industry-core-hub/HEAD/docs/api/bruno/Industry Core Hub Backend API/Part Management/Part Management Create Partner Mapping.bru -------------------------------------------------------------------------------- /docs/api/bruno/Industry Core Hub Backend API/Part Management/Part Management Create Serialized Part.bru: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eclipse-tractusx/industry-core-hub/HEAD/docs/api/bruno/Industry Core Hub Backend API/Part Management/Part Management Create Serialized Part.bru -------------------------------------------------------------------------------- /docs/api/bruno/Industry Core Hub Backend API/Part Management/Part Management Get Catalog Part Details.bru: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eclipse-tractusx/industry-core-hub/HEAD/docs/api/bruno/Industry Core Hub Backend API/Part Management/Part Management Get Catalog Part Details.bru -------------------------------------------------------------------------------- /docs/api/bruno/Industry Core Hub Backend API/Part Management/Part Management Get Catalog Parts.bru: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eclipse-tractusx/industry-core-hub/HEAD/docs/api/bruno/Industry Core Hub Backend API/Part Management/Part Management Get Catalog Parts.bru -------------------------------------------------------------------------------- /docs/api/bruno/Industry Core Hub Backend API/Part Management/Part Management Get Serialized Parts.bru: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eclipse-tractusx/industry-core-hub/HEAD/docs/api/bruno/Industry Core Hub Backend API/Part Management/Part Management Get Serialized Parts.bru -------------------------------------------------------------------------------- /docs/api/bruno/Industry Core Hub Backend API/Part Management/Part Management Query Serialized Parts.bru: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eclipse-tractusx/industry-core-hub/HEAD/docs/api/bruno/Industry Core Hub Backend API/Part Management/Part Management Query Serialized Parts.bru -------------------------------------------------------------------------------- /docs/api/bruno/Industry Core Hub Backend API/Part Management/folder.bru: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eclipse-tractusx/industry-core-hub/HEAD/docs/api/bruno/Industry Core Hub Backend API/Part Management/folder.bru -------------------------------------------------------------------------------- /docs/api/bruno/Industry Core Hub Backend API/Partner Management/Partner Management Create Business Partner.bru: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eclipse-tractusx/industry-core-hub/HEAD/docs/api/bruno/Industry Core Hub Backend API/Partner Management/Partner Management Create Business Partner.bru -------------------------------------------------------------------------------- /docs/api/bruno/Industry Core Hub Backend API/Partner Management/Partner Management Get Business Partner.bru: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eclipse-tractusx/industry-core-hub/HEAD/docs/api/bruno/Industry Core Hub Backend API/Partner Management/Partner Management Get Business Partner.bru -------------------------------------------------------------------------------- /docs/api/bruno/Industry Core Hub Backend API/Partner Management/Partner Management Get Business Partners.bru: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eclipse-tractusx/industry-core-hub/HEAD/docs/api/bruno/Industry Core Hub Backend API/Partner Management/Partner Management Get Business Partners.bru -------------------------------------------------------------------------------- /docs/api/bruno/Industry Core Hub Backend API/Partner Management/Partner Management Get Data Exchange Agreements.bru: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eclipse-tractusx/industry-core-hub/HEAD/docs/api/bruno/Industry Core Hub Backend API/Partner Management/Partner Management Get Data Exchange Agreements.bru -------------------------------------------------------------------------------- /docs/api/bruno/Industry Core Hub Backend API/Partner Management/folder.bru: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eclipse-tractusx/industry-core-hub/HEAD/docs/api/bruno/Industry Core Hub Backend API/Partner Management/folder.bru -------------------------------------------------------------------------------- /docs/api/bruno/Industry Core Hub Backend API/Sharing Functionality/Share Catalog Part.bru: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eclipse-tractusx/industry-core-hub/HEAD/docs/api/bruno/Industry Core Hub Backend API/Sharing Functionality/Share Catalog Part.bru -------------------------------------------------------------------------------- /docs/api/bruno/Industry Core Hub Backend API/Sharing Functionality/folder.bru: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eclipse-tractusx/industry-core-hub/HEAD/docs/api/bruno/Industry Core Hub Backend API/Sharing Functionality/folder.bru -------------------------------------------------------------------------------- /docs/api/bruno/Industry Core Hub Backend API/Submodel Dispatcher/Submodel Dispatcher Delete Submodel.bru: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eclipse-tractusx/industry-core-hub/HEAD/docs/api/bruno/Industry Core Hub Backend API/Submodel Dispatcher/Submodel Dispatcher Delete Submodel.bru -------------------------------------------------------------------------------- /docs/api/bruno/Industry Core Hub Backend API/Submodel Dispatcher/Submodel Dispatcher Get Submodel Content Submodel Value.bru: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eclipse-tractusx/industry-core-hub/HEAD/docs/api/bruno/Industry Core Hub Backend API/Submodel Dispatcher/Submodel Dispatcher Get Submodel Content Submodel Value.bru -------------------------------------------------------------------------------- /docs/api/bruno/Industry Core Hub Backend API/Submodel Dispatcher/Submodel Dispatcher Upload Submodel.bru: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eclipse-tractusx/industry-core-hub/HEAD/docs/api/bruno/Industry Core Hub Backend API/Submodel Dispatcher/Submodel Dispatcher Upload Submodel.bru -------------------------------------------------------------------------------- /docs/api/bruno/Industry Core Hub Backend API/Submodel Dispatcher/folder.bru: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eclipse-tractusx/industry-core-hub/HEAD/docs/api/bruno/Industry Core Hub Backend API/Submodel Dispatcher/folder.bru -------------------------------------------------------------------------------- /docs/api/bruno/Industry Core Hub Backend API/Twin Management/Twin Management Create Catalog Part Twin.bru: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eclipse-tractusx/industry-core-hub/HEAD/docs/api/bruno/Industry Core Hub Backend API/Twin Management/Twin Management Create Catalog Part Twin.bru -------------------------------------------------------------------------------- /docs/api/bruno/Industry Core Hub Backend API/Twin Management/Twin Management Create Serialized Part Twin.bru: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eclipse-tractusx/industry-core-hub/HEAD/docs/api/bruno/Industry Core Hub Backend API/Twin Management/Twin Management Create Serialized Part Twin.bru -------------------------------------------------------------------------------- /docs/api/bruno/Industry Core Hub Backend API/Twin Management/Twin Management Create Twin Aspect.bru: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eclipse-tractusx/industry-core-hub/HEAD/docs/api/bruno/Industry Core Hub Backend API/Twin Management/Twin Management Create Twin Aspect.bru -------------------------------------------------------------------------------- /docs/api/bruno/Industry Core Hub Backend API/Twin Management/Twin Management Get All Serialized Part Twins.bru: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eclipse-tractusx/industry-core-hub/HEAD/docs/api/bruno/Industry Core Hub Backend API/Twin Management/Twin Management Get All Serialized Part Twins.bru -------------------------------------------------------------------------------- /docs/api/bruno/Industry Core Hub Backend API/Twin Management/Twin Management Get Catalog Part Twin From Manufacturer.bru: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eclipse-tractusx/industry-core-hub/HEAD/docs/api/bruno/Industry Core Hub Backend API/Twin Management/Twin Management Get Catalog Part Twin From Manufacturer.bru -------------------------------------------------------------------------------- /docs/api/bruno/Industry Core Hub Backend API/Twin Management/Twin Management Get Catalog Part Twin.bru: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eclipse-tractusx/industry-core-hub/HEAD/docs/api/bruno/Industry Core Hub Backend API/Twin Management/Twin Management Get Catalog Part Twin.bru -------------------------------------------------------------------------------- /docs/api/bruno/Industry Core Hub Backend API/Twin Management/Twin Management Get Catalog Part Twins.bru: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eclipse-tractusx/industry-core-hub/HEAD/docs/api/bruno/Industry Core Hub Backend API/Twin Management/Twin Management Get Catalog Part Twins.bru -------------------------------------------------------------------------------- /docs/api/bruno/Industry Core Hub Backend API/Twin Management/Twin Management Get Serialized Part Twin.bru: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eclipse-tractusx/industry-core-hub/HEAD/docs/api/bruno/Industry Core Hub Backend API/Twin Management/Twin Management Get Serialized Part Twin.bru -------------------------------------------------------------------------------- /docs/api/bruno/Industry Core Hub Backend API/Twin Management/Twin Management Share Catalog Part Twin.bru: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eclipse-tractusx/industry-core-hub/HEAD/docs/api/bruno/Industry Core Hub Backend API/Twin Management/Twin Management Share Catalog Part Twin.bru -------------------------------------------------------------------------------- /docs/api/bruno/Industry Core Hub Backend API/Twin Management/Twin Management Share Serialized Part Twin.bru: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eclipse-tractusx/industry-core-hub/HEAD/docs/api/bruno/Industry Core Hub Backend API/Twin Management/Twin Management Share Serialized Part Twin.bru -------------------------------------------------------------------------------- /docs/api/bruno/Industry Core Hub Backend API/Twin Management/folder.bru: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eclipse-tractusx/industry-core-hub/HEAD/docs/api/bruno/Industry Core Hub Backend API/Twin Management/folder.bru -------------------------------------------------------------------------------- /docs/api/bruno/Industry Core Hub Backend API/bruno.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eclipse-tractusx/industry-core-hub/HEAD/docs/api/bruno/Industry Core Hub Backend API/bruno.json -------------------------------------------------------------------------------- /docs/api/bruno/Industry Core Hub Backend API/collection.bru: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eclipse-tractusx/industry-core-hub/HEAD/docs/api/bruno/Industry Core Hub Backend API/collection.bru -------------------------------------------------------------------------------- /docs/api/openAPI.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eclipse-tractusx/industry-core-hub/HEAD/docs/api/openAPI.yaml -------------------------------------------------------------------------------- /docs/architecture/.adr-dir: -------------------------------------------------------------------------------- 1 | decision-records 2 | -------------------------------------------------------------------------------- /docs/architecture/1-introduction-and-goals.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eclipse-tractusx/industry-core-hub/HEAD/docs/architecture/1-introduction-and-goals.md -------------------------------------------------------------------------------- /docs/architecture/2-architecture-constraints.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eclipse-tractusx/industry-core-hub/HEAD/docs/architecture/2-architecture-constraints.md -------------------------------------------------------------------------------- /docs/architecture/3-system-scope-and-context.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eclipse-tractusx/industry-core-hub/HEAD/docs/architecture/3-system-scope-and-context.md -------------------------------------------------------------------------------- /docs/architecture/4-runtime-view.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eclipse-tractusx/industry-core-hub/HEAD/docs/architecture/4-runtime-view.md -------------------------------------------------------------------------------- /docs/architecture/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eclipse-tractusx/industry-core-hub/HEAD/docs/architecture/README.md -------------------------------------------------------------------------------- /docs/architecture/decision-records/0001-record-architecture-decisions.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eclipse-tractusx/industry-core-hub/HEAD/docs/architecture/decision-records/0001-record-architecture-decisions.md -------------------------------------------------------------------------------- /docs/architecture/decision-records/0002-tractus-x-sdk.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eclipse-tractusx/industry-core-hub/HEAD/docs/architecture/decision-records/0002-tractus-x-sdk.md -------------------------------------------------------------------------------- /docs/architecture/decision-records/0003-tractus-x-sdk-individual-repository.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eclipse-tractusx/industry-core-hub/HEAD/docs/architecture/decision-records/0003-tractus-x-sdk-individual-repository.md -------------------------------------------------------------------------------- /docs/architecture/decision-records/0004-data-storage-persistance-architecture.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eclipse-tractusx/industry-core-hub/HEAD/docs/architecture/decision-records/0004-data-storage-persistance-architecture.md -------------------------------------------------------------------------------- /docs/architecture/decision-records/media/abstraction-levels.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eclipse-tractusx/industry-core-hub/HEAD/docs/architecture/decision-records/media/abstraction-levels.svg -------------------------------------------------------------------------------- /docs/architecture/decision-records/media/abstraction-levels.svg.license: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eclipse-tractusx/industry-core-hub/HEAD/docs/architecture/decision-records/media/abstraction-levels.svg.license -------------------------------------------------------------------------------- /docs/architecture/decision-records/media/abstraction-phases.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eclipse-tractusx/industry-core-hub/HEAD/docs/architecture/decision-records/media/abstraction-phases.svg -------------------------------------------------------------------------------- /docs/architecture/decision-records/media/abstraction-phases.svg.license: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eclipse-tractusx/industry-core-hub/HEAD/docs/architecture/decision-records/media/abstraction-phases.svg.license -------------------------------------------------------------------------------- /docs/architecture/decision-records/media/datamodel-persistance.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eclipse-tractusx/industry-core-hub/HEAD/docs/architecture/decision-records/media/datamodel-persistance.png -------------------------------------------------------------------------------- /docs/architecture/decision-records/media/datamodel-persistance.png.license: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eclipse-tractusx/industry-core-hub/HEAD/docs/architecture/decision-records/media/datamodel-persistance.png.license -------------------------------------------------------------------------------- /docs/architecture/decision-records/media/ic-hub-context.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eclipse-tractusx/industry-core-hub/HEAD/docs/architecture/decision-records/media/ic-hub-context.svg -------------------------------------------------------------------------------- /docs/architecture/decision-records/media/ic-hub-context.svg.license: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eclipse-tractusx/industry-core-hub/HEAD/docs/architecture/decision-records/media/ic-hub-context.svg.license -------------------------------------------------------------------------------- /docs/architecture/decision-records/media/modular-microservices-architecture.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eclipse-tractusx/industry-core-hub/HEAD/docs/architecture/decision-records/media/modular-microservices-architecture.svg -------------------------------------------------------------------------------- /docs/architecture/decision-records/media/modular-microservices-architecture.svg.license: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eclipse-tractusx/industry-core-hub/HEAD/docs/architecture/decision-records/media/modular-microservices-architecture.svg.license -------------------------------------------------------------------------------- /docs/architecture/decision-records/media/sdk-context.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eclipse-tractusx/industry-core-hub/HEAD/docs/architecture/decision-records/media/sdk-context.png -------------------------------------------------------------------------------- /docs/architecture/decision-records/media/sdk-context.png.license: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eclipse-tractusx/industry-core-hub/HEAD/docs/architecture/decision-records/media/sdk-context.png.license -------------------------------------------------------------------------------- /docs/architecture/glossary.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eclipse-tractusx/industry-core-hub/HEAD/docs/architecture/glossary.md -------------------------------------------------------------------------------- /docs/architecture/media/Abstract Level Arch.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eclipse-tractusx/industry-core-hub/HEAD/docs/architecture/media/Abstract Level Arch.svg -------------------------------------------------------------------------------- /docs/architecture/media/Abstract Level Arch.svg.license: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eclipse-tractusx/industry-core-hub/HEAD/docs/architecture/media/Abstract Level Arch.svg.license -------------------------------------------------------------------------------- /docs/architecture/media/Abstraction Levels.drawio.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eclipse-tractusx/industry-core-hub/HEAD/docs/architecture/media/Abstraction Levels.drawio.svg -------------------------------------------------------------------------------- /docs/architecture/media/Abstraction Levels.drawio.svg.license: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eclipse-tractusx/industry-core-hub/HEAD/docs/architecture/media/Abstraction Levels.drawio.svg.license -------------------------------------------------------------------------------- /docs/architecture/media/Abstraction Phases.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eclipse-tractusx/industry-core-hub/HEAD/docs/architecture/media/Abstraction Phases.svg -------------------------------------------------------------------------------- /docs/architecture/media/Abstraction Phases.svg.license: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eclipse-tractusx/industry-core-hub/HEAD/docs/architecture/media/Abstraction Phases.svg.license -------------------------------------------------------------------------------- /docs/architecture/media/BackendSequenceDiagram/BackendSequenceDiagram(Steps1-3).puml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eclipse-tractusx/industry-core-hub/HEAD/docs/architecture/media/BackendSequenceDiagram/BackendSequenceDiagram(Steps1-3).puml -------------------------------------------------------------------------------- /docs/architecture/media/BackendSequenceDiagram/BackendSequenceDiagram(Steps1-3).svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eclipse-tractusx/industry-core-hub/HEAD/docs/architecture/media/BackendSequenceDiagram/BackendSequenceDiagram(Steps1-3).svg -------------------------------------------------------------------------------- /docs/architecture/media/BackendSequenceDiagram/BackendSequenceDiagram(Steps1-3).svg.license: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eclipse-tractusx/industry-core-hub/HEAD/docs/architecture/media/BackendSequenceDiagram/BackendSequenceDiagram(Steps1-3).svg.license -------------------------------------------------------------------------------- /docs/architecture/media/BackendSequenceDiagram/BackendSequenceDiagram(Steps4-6).puml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eclipse-tractusx/industry-core-hub/HEAD/docs/architecture/media/BackendSequenceDiagram/BackendSequenceDiagram(Steps4-6).puml -------------------------------------------------------------------------------- /docs/architecture/media/BackendSequenceDiagram/BackendSequenceDiagram(Steps4-6).svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eclipse-tractusx/industry-core-hub/HEAD/docs/architecture/media/BackendSequenceDiagram/BackendSequenceDiagram(Steps4-6).svg -------------------------------------------------------------------------------- /docs/architecture/media/BackendSequenceDiagram/BackendSequenceDiagram(Steps4-6).svg.license: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eclipse-tractusx/industry-core-hub/HEAD/docs/architecture/media/BackendSequenceDiagram/BackendSequenceDiagram(Steps4-6).svg.license -------------------------------------------------------------------------------- /docs/architecture/media/BackendSequenceDiagram/BackendSequenceDiagram(Steps7-8).puml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eclipse-tractusx/industry-core-hub/HEAD/docs/architecture/media/BackendSequenceDiagram/BackendSequenceDiagram(Steps7-8).puml -------------------------------------------------------------------------------- /docs/architecture/media/BackendSequenceDiagram/BackendSequenceDiagram(Steps7-8).svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eclipse-tractusx/industry-core-hub/HEAD/docs/architecture/media/BackendSequenceDiagram/BackendSequenceDiagram(Steps7-8).svg -------------------------------------------------------------------------------- /docs/architecture/media/BackendSequenceDiagram/BackendSequenceDiagram(Steps7-8).svg.license: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eclipse-tractusx/industry-core-hub/HEAD/docs/architecture/media/BackendSequenceDiagram/BackendSequenceDiagram(Steps7-8).svg.license -------------------------------------------------------------------------------- /docs/architecture/media/BackendSequenceDiagram/BackendSequenceDiagram.puml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eclipse-tractusx/industry-core-hub/HEAD/docs/architecture/media/BackendSequenceDiagram/BackendSequenceDiagram.puml -------------------------------------------------------------------------------- /docs/architecture/media/BackendSequenceDiagram/BackendSequenceDiagram.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eclipse-tractusx/industry-core-hub/HEAD/docs/architecture/media/BackendSequenceDiagram/BackendSequenceDiagram.svg -------------------------------------------------------------------------------- /docs/architecture/media/BackendSequenceDiagram/BackendSequenceDiagram.svg.license: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eclipse-tractusx/industry-core-hub/HEAD/docs/architecture/media/BackendSequenceDiagram/BackendSequenceDiagram.svg.license -------------------------------------------------------------------------------- /docs/architecture/media/CX-Next-Drawings-Data Model CX-Next.drawio.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eclipse-tractusx/industry-core-hub/HEAD/docs/architecture/media/CX-Next-Drawings-Data Model CX-Next.drawio.svg -------------------------------------------------------------------------------- /docs/architecture/media/Complete Context Diagram.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eclipse-tractusx/industry-core-hub/HEAD/docs/architecture/media/Complete Context Diagram.svg -------------------------------------------------------------------------------- /docs/architecture/media/Complete Context Diagram.svg.license: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eclipse-tractusx/industry-core-hub/HEAD/docs/architecture/media/Complete Context Diagram.svg.license -------------------------------------------------------------------------------- /docs/architecture/media/Context Diagram.drawio.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eclipse-tractusx/industry-core-hub/HEAD/docs/architecture/media/Context Diagram.drawio.svg -------------------------------------------------------------------------------- /docs/architecture/media/Context Diagram.drawio.svg.license: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eclipse-tractusx/industry-core-hub/HEAD/docs/architecture/media/Context Diagram.drawio.svg.license -------------------------------------------------------------------------------- /docs/architecture/media/FrontendSequenceDiagram/ProducDetailsSequenceDiagram.puml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eclipse-tractusx/industry-core-hub/HEAD/docs/architecture/media/FrontendSequenceDiagram/ProducDetailsSequenceDiagram.puml -------------------------------------------------------------------------------- /docs/architecture/media/FrontendSequenceDiagram/ProducDetailsSequenceDiagram.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eclipse-tractusx/industry-core-hub/HEAD/docs/architecture/media/FrontendSequenceDiagram/ProducDetailsSequenceDiagram.svg -------------------------------------------------------------------------------- /docs/architecture/media/FrontendSequenceDiagram/ProducDetailsSequenceDiagram.svg.license: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eclipse-tractusx/industry-core-hub/HEAD/docs/architecture/media/FrontendSequenceDiagram/ProducDetailsSequenceDiagram.svg.license -------------------------------------------------------------------------------- /docs/architecture/media/FrontendSequenceDiagram/ProductListSequenceDiagram.puml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eclipse-tractusx/industry-core-hub/HEAD/docs/architecture/media/FrontendSequenceDiagram/ProductListSequenceDiagram.puml -------------------------------------------------------------------------------- /docs/architecture/media/FrontendSequenceDiagram/ProductListSequenceDiagram.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eclipse-tractusx/industry-core-hub/HEAD/docs/architecture/media/FrontendSequenceDiagram/ProductListSequenceDiagram.svg -------------------------------------------------------------------------------- /docs/architecture/media/FrontendSequenceDiagram/ProductListSequenceDiagram.svg.license: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eclipse-tractusx/industry-core-hub/HEAD/docs/architecture/media/FrontendSequenceDiagram/ProductListSequenceDiagram.svg.license -------------------------------------------------------------------------------- /docs/architecture/media/Frontend_Mock_Industry_Core.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eclipse-tractusx/industry-core-hub/HEAD/docs/architecture/media/Frontend_Mock_Industry_Core.png -------------------------------------------------------------------------------- /docs/architecture/media/Frontend_Mock_Industry_Core.png.license: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eclipse-tractusx/industry-core-hub/HEAD/docs/architecture/media/Frontend_Mock_Industry_Core.png.license -------------------------------------------------------------------------------- /docs/architecture/media/ICHDatabase.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eclipse-tractusx/industry-core-hub/HEAD/docs/architecture/media/ICHDatabase.png -------------------------------------------------------------------------------- /docs/architecture/media/ICH_BackendStructure.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eclipse-tractusx/industry-core-hub/HEAD/docs/architecture/media/ICH_BackendStructure.svg -------------------------------------------------------------------------------- /docs/architecture/media/ICH_BackendStructure.svg.license: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eclipse-tractusx/industry-core-hub/HEAD/docs/architecture/media/ICH_BackendStructure.svg.license -------------------------------------------------------------------------------- /docs/architecture/media/ICH_Catena_X_BuildingBlocks.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eclipse-tractusx/industry-core-hub/HEAD/docs/architecture/media/ICH_Catena_X_BuildingBlocks.svg -------------------------------------------------------------------------------- /docs/architecture/media/ICH_Catena_X_BuildingBlocks.svg.license: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eclipse-tractusx/industry-core-hub/HEAD/docs/architecture/media/ICH_Catena_X_BuildingBlocks.svg.license -------------------------------------------------------------------------------- /docs/architecture/media/ICH_Frontend_Architecture.drawio: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eclipse-tractusx/industry-core-hub/HEAD/docs/architecture/media/ICH_Frontend_Architecture.drawio -------------------------------------------------------------------------------- /docs/architecture/media/ICH_Frontend_Architecture.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eclipse-tractusx/industry-core-hub/HEAD/docs/architecture/media/ICH_Frontend_Architecture.svg -------------------------------------------------------------------------------- /docs/architecture/media/ICH_Frontend_Architecture.svg.license: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eclipse-tractusx/industry-core-hub/HEAD/docs/architecture/media/ICH_Frontend_Architecture.svg.license -------------------------------------------------------------------------------- /docs/architecture/media/ICH_HighLevelArchitecture.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eclipse-tractusx/industry-core-hub/HEAD/docs/architecture/media/ICH_HighLevelArchitecture.svg -------------------------------------------------------------------------------- /docs/architecture/media/ICH_HighLevelArchitecture.svg.license: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eclipse-tractusx/industry-core-hub/HEAD/docs/architecture/media/ICH_HighLevelArchitecture.svg.license -------------------------------------------------------------------------------- /docs/architecture/media/Interfaces.drawio.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eclipse-tractusx/industry-core-hub/HEAD/docs/architecture/media/Interfaces.drawio.svg -------------------------------------------------------------------------------- /docs/architecture/media/Interfaces.drawio.svg.license: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eclipse-tractusx/industry-core-hub/HEAD/docs/architecture/media/Interfaces.drawio.svg.license -------------------------------------------------------------------------------- /docs/architecture/media/Software Compontents Diagram.drawio.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eclipse-tractusx/industry-core-hub/HEAD/docs/architecture/media/Software Compontents Diagram.drawio.svg -------------------------------------------------------------------------------- /docs/architecture/media/Software Compontents Diagram.drawio.svg.license: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eclipse-tractusx/industry-core-hub/HEAD/docs/architecture/media/Software Compontents Diagram.drawio.svg.license -------------------------------------------------------------------------------- /docs/architecture/media/catena-x-speedway.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eclipse-tractusx/industry-core-hub/HEAD/docs/architecture/media/catena-x-speedway.svg -------------------------------------------------------------------------------- /docs/architecture/media/catena-x-speedway.svg.license: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eclipse-tractusx/industry-core-hub/HEAD/docs/architecture/media/catena-x-speedway.svg.license -------------------------------------------------------------------------------- /docs/database/Metadata-DDL-public.sql: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eclipse-tractusx/industry-core-hub/HEAD/docs/database/Metadata-DDL-public.sql -------------------------------------------------------------------------------- /docs/developer/reset-keycloak-password.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eclipse-tractusx/industry-core-hub/HEAD/docs/developer/reset-keycloak-password.md -------------------------------------------------------------------------------- /docs/media/BackendArchitecture.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eclipse-tractusx/industry-core-hub/HEAD/docs/media/BackendArchitecture.png -------------------------------------------------------------------------------- /docs/media/BackendArchitecture.png.license: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eclipse-tractusx/industry-core-hub/HEAD/docs/media/BackendArchitecture.png.license -------------------------------------------------------------------------------- /docs/media/BuildingBlocks.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eclipse-tractusx/industry-core-hub/HEAD/docs/media/BuildingBlocks.png -------------------------------------------------------------------------------- /docs/media/BuildingBlocks.png.license: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eclipse-tractusx/industry-core-hub/HEAD/docs/media/BuildingBlocks.png.license -------------------------------------------------------------------------------- /docs/media/FrontendArchitecture.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eclipse-tractusx/industry-core-hub/HEAD/docs/media/FrontendArchitecture.png -------------------------------------------------------------------------------- /docs/media/FrontendArchitecture.png.license: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eclipse-tractusx/industry-core-hub/HEAD/docs/media/FrontendArchitecture.png.license -------------------------------------------------------------------------------- /docs/media/IndustryCoreHubLogo.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eclipse-tractusx/industry-core-hub/HEAD/docs/media/IndustryCoreHubLogo.png -------------------------------------------------------------------------------- /docs/media/IndustryCoreHubLogo.png.license: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eclipse-tractusx/industry-core-hub/HEAD/docs/media/IndustryCoreHubLogo.png.license -------------------------------------------------------------------------------- /docs/meetings/2025-02-04-Meeting_Minutes: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eclipse-tractusx/industry-core-hub/HEAD/docs/meetings/2025-02-04-Meeting_Minutes -------------------------------------------------------------------------------- /docs/umbrella/minimal-values.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eclipse-tractusx/industry-core-hub/HEAD/docs/umbrella/minimal-values.yaml -------------------------------------------------------------------------------- /docs/umbrella/postman/ic-hub-aas-registry-v3.postman_collection.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eclipse-tractusx/industry-core-hub/HEAD/docs/umbrella/postman/ic-hub-aas-registry-v3.postman_collection.json -------------------------------------------------------------------------------- /docs/umbrella/umbrella-deployment-guide.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eclipse-tractusx/industry-core-hub/HEAD/docs/umbrella/umbrella-deployment-guide.md -------------------------------------------------------------------------------- /docs/user/SUBMODEL_CREATOR_GUIDE.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eclipse-tractusx/industry-core-hub/HEAD/docs/user/SUBMODEL_CREATOR_GUIDE.md -------------------------------------------------------------------------------- /docs/user/media/01-new-submodel-button.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eclipse-tractusx/industry-core-hub/HEAD/docs/user/media/01-new-submodel-button.png -------------------------------------------------------------------------------- /docs/user/media/01-new-submodel-button.png.license: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eclipse-tractusx/industry-core-hub/HEAD/docs/user/media/01-new-submodel-button.png.license -------------------------------------------------------------------------------- /docs/user/media/02-schema-selection-dpp-card.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eclipse-tractusx/industry-core-hub/HEAD/docs/user/media/02-schema-selection-dpp-card.png -------------------------------------------------------------------------------- /docs/user/media/02-schema-selection-dpp-card.png.license: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eclipse-tractusx/industry-core-hub/HEAD/docs/user/media/02-schema-selection-dpp-card.png.license -------------------------------------------------------------------------------- /docs/user/media/03-creator-layout-overview.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eclipse-tractusx/industry-core-hub/HEAD/docs/user/media/03-creator-layout-overview.png -------------------------------------------------------------------------------- /docs/user/media/03-creator-layout-overview.png.license: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eclipse-tractusx/industry-core-hub/HEAD/docs/user/media/03-creator-layout-overview.png.license -------------------------------------------------------------------------------- /docs/user/media/04-filter-required-off.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eclipse-tractusx/industry-core-hub/HEAD/docs/user/media/04-filter-required-off.png -------------------------------------------------------------------------------- /docs/user/media/04-filter-required-off.png.license: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eclipse-tractusx/industry-core-hub/HEAD/docs/user/media/04-filter-required-off.png.license -------------------------------------------------------------------------------- /docs/user/media/05-filter-required-on.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eclipse-tractusx/industry-core-hub/HEAD/docs/user/media/05-filter-required-on.png -------------------------------------------------------------------------------- /docs/user/media/05-filter-required-on.png.license: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eclipse-tractusx/industry-core-hub/HEAD/docs/user/media/05-filter-required-on.png.license -------------------------------------------------------------------------------- /docs/user/media/06-import-json-entry.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eclipse-tractusx/industry-core-hub/HEAD/docs/user/media/06-import-json-entry.png -------------------------------------------------------------------------------- /docs/user/media/06-import-json-entry.png.license: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eclipse-tractusx/industry-core-hub/HEAD/docs/user/media/06-import-json-entry.png.license -------------------------------------------------------------------------------- /docs/user/media/07-import-json-paste.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eclipse-tractusx/industry-core-hub/HEAD/docs/user/media/07-import-json-paste.png -------------------------------------------------------------------------------- /docs/user/media/07-import-json-paste.png.license: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eclipse-tractusx/industry-core-hub/HEAD/docs/user/media/07-import-json-paste.png.license -------------------------------------------------------------------------------- /docs/user/media/08-import-json-file-picker.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eclipse-tractusx/industry-core-hub/HEAD/docs/user/media/08-import-json-file-picker.png -------------------------------------------------------------------------------- /docs/user/media/08-import-json-file-picker.png.license: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eclipse-tractusx/industry-core-hub/HEAD/docs/user/media/08-import-json-file-picker.png.license -------------------------------------------------------------------------------- /docs/user/media/09-clear-form-action.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eclipse-tractusx/industry-core-hub/HEAD/docs/user/media/09-clear-form-action.png -------------------------------------------------------------------------------- /docs/user/media/09-clear-form-action.png.license: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eclipse-tractusx/industry-core-hub/HEAD/docs/user/media/09-clear-form-action.png.license -------------------------------------------------------------------------------- /docs/user/media/10-clear-form-confirmation.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eclipse-tractusx/industry-core-hub/HEAD/docs/user/media/10-clear-form-confirmation.png -------------------------------------------------------------------------------- /docs/user/media/10-clear-form-confirmation.png.license: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eclipse-tractusx/industry-core-hub/HEAD/docs/user/media/10-clear-form-confirmation.png.license -------------------------------------------------------------------------------- /docs/user/media/11-field-info-tooltip.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eclipse-tractusx/industry-core-hub/HEAD/docs/user/media/11-field-info-tooltip.png -------------------------------------------------------------------------------- /docs/user/media/11-field-info-tooltip.png.license: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eclipse-tractusx/industry-core-hub/HEAD/docs/user/media/11-field-info-tooltip.png.license -------------------------------------------------------------------------------- /docs/user/media/12-schema-rules-details.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eclipse-tractusx/industry-core-hub/HEAD/docs/user/media/12-schema-rules-details.png -------------------------------------------------------------------------------- /docs/user/media/12-schema-rules-details.png.license: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eclipse-tractusx/industry-core-hub/HEAD/docs/user/media/12-schema-rules-details.png.license -------------------------------------------------------------------------------- /docs/user/media/13-json-preview-navigate.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eclipse-tractusx/industry-core-hub/HEAD/docs/user/media/13-json-preview-navigate.png -------------------------------------------------------------------------------- /docs/user/media/13-json-preview-navigate.png.license: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eclipse-tractusx/industry-core-hub/HEAD/docs/user/media/13-json-preview-navigate.png.license -------------------------------------------------------------------------------- /docs/user/media/14-json-preview-focused.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eclipse-tractusx/industry-core-hub/HEAD/docs/user/media/14-json-preview-focused.png -------------------------------------------------------------------------------- /docs/user/media/14-json-preview-focused.png.license: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eclipse-tractusx/industry-core-hub/HEAD/docs/user/media/14-json-preview-focused.png.license -------------------------------------------------------------------------------- /docs/user/media/15-field-standard-text.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eclipse-tractusx/industry-core-hub/HEAD/docs/user/media/15-field-standard-text.png -------------------------------------------------------------------------------- /docs/user/media/15-field-standard-text.png.license: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eclipse-tractusx/industry-core-hub/HEAD/docs/user/media/15-field-standard-text.png.license -------------------------------------------------------------------------------- /docs/user/media/16-field-date-picker.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eclipse-tractusx/industry-core-hub/HEAD/docs/user/media/16-field-date-picker.png -------------------------------------------------------------------------------- /docs/user/media/16-field-date-picker.png.license: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eclipse-tractusx/industry-core-hub/HEAD/docs/user/media/16-field-date-picker.png.license -------------------------------------------------------------------------------- /docs/user/media/17-field-predefined-select.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eclipse-tractusx/industry-core-hub/HEAD/docs/user/media/17-field-predefined-select.png -------------------------------------------------------------------------------- /docs/user/media/17-field-predefined-select.png.license: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eclipse-tractusx/industry-core-hub/HEAD/docs/user/media/17-field-predefined-select.png.license -------------------------------------------------------------------------------- /docs/user/media/18-field-boolean-toggle.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eclipse-tractusx/industry-core-hub/HEAD/docs/user/media/18-field-boolean-toggle.png -------------------------------------------------------------------------------- /docs/user/media/18-field-boolean-toggle.png.license: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eclipse-tractusx/industry-core-hub/HEAD/docs/user/media/18-field-boolean-toggle.png.license -------------------------------------------------------------------------------- /docs/user/media/19-field-numeric-input.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eclipse-tractusx/industry-core-hub/HEAD/docs/user/media/19-field-numeric-input.png -------------------------------------------------------------------------------- /docs/user/media/19-field-numeric-input.png.license: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eclipse-tractusx/industry-core-hub/HEAD/docs/user/media/19-field-numeric-input.png.license -------------------------------------------------------------------------------- /docs/user/media/20-field-array-items.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eclipse-tractusx/industry-core-hub/HEAD/docs/user/media/20-field-array-items.png -------------------------------------------------------------------------------- /docs/user/media/20-field-array-items.png.license: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eclipse-tractusx/industry-core-hub/HEAD/docs/user/media/20-field-array-items.png.license -------------------------------------------------------------------------------- /docs/user/media/21-field-nested-structure.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eclipse-tractusx/industry-core-hub/HEAD/docs/user/media/21-field-nested-structure.png -------------------------------------------------------------------------------- /docs/user/media/21-field-nested-structure.png.license: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eclipse-tractusx/industry-core-hub/HEAD/docs/user/media/21-field-nested-structure.png.license -------------------------------------------------------------------------------- /docs/user/media/22-validate-button-action.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eclipse-tractusx/industry-core-hub/HEAD/docs/user/media/22-validate-button-action.png -------------------------------------------------------------------------------- /docs/user/media/22-validate-button-action.png.license: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eclipse-tractusx/industry-core-hub/HEAD/docs/user/media/22-validate-button-action.png.license -------------------------------------------------------------------------------- /docs/user/media/23-validation-errors-grouped.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eclipse-tractusx/industry-core-hub/HEAD/docs/user/media/23-validation-errors-grouped.png -------------------------------------------------------------------------------- /docs/user/media/23-validation-errors-grouped.png.license: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eclipse-tractusx/industry-core-hub/HEAD/docs/user/media/23-validation-errors-grouped.png.license -------------------------------------------------------------------------------- /docs/user/media/24-return-json-view.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eclipse-tractusx/industry-core-hub/HEAD/docs/user/media/24-return-json-view.png -------------------------------------------------------------------------------- /docs/user/media/24-return-json-view.png.license: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eclipse-tractusx/industry-core-hub/HEAD/docs/user/media/24-return-json-view.png.license -------------------------------------------------------------------------------- /docs/user/media/25-expand-error-group.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eclipse-tractusx/industry-core-hub/HEAD/docs/user/media/25-expand-error-group.png -------------------------------------------------------------------------------- /docs/user/media/25-expand-error-group.png.license: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eclipse-tractusx/industry-core-hub/HEAD/docs/user/media/25-expand-error-group.png.license -------------------------------------------------------------------------------- /docs/user/media/26-goto-field-navigate.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eclipse-tractusx/industry-core-hub/HEAD/docs/user/media/26-goto-field-navigate.png -------------------------------------------------------------------------------- /docs/user/media/26-goto-field-navigate.png.license: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eclipse-tractusx/industry-core-hub/HEAD/docs/user/media/26-goto-field-navigate.png.license -------------------------------------------------------------------------------- /docs/user/media/27-field-focused-correction.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eclipse-tractusx/industry-core-hub/HEAD/docs/user/media/27-field-focused-correction.png -------------------------------------------------------------------------------- /docs/user/media/27-field-focused-correction.png.license: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eclipse-tractusx/industry-core-hub/HEAD/docs/user/media/27-field-focused-correction.png.license -------------------------------------------------------------------------------- /docs/user/media/28-schema-rules-from-error.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eclipse-tractusx/industry-core-hub/HEAD/docs/user/media/28-schema-rules-from-error.png -------------------------------------------------------------------------------- /docs/user/media/28-schema-rules-from-error.png.license: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eclipse-tractusx/industry-core-hub/HEAD/docs/user/media/28-schema-rules-from-error.png.license -------------------------------------------------------------------------------- /docs/user/media/29-schema-rules-constraints.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eclipse-tractusx/industry-core-hub/HEAD/docs/user/media/29-schema-rules-constraints.png -------------------------------------------------------------------------------- /docs/user/media/29-schema-rules-constraints.png.license: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eclipse-tractusx/industry-core-hub/HEAD/docs/user/media/29-schema-rules-constraints.png.license -------------------------------------------------------------------------------- /docs/user/media/30-goto-field-from-rules.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eclipse-tractusx/industry-core-hub/HEAD/docs/user/media/30-goto-field-from-rules.png -------------------------------------------------------------------------------- /docs/user/media/30-goto-field-from-rules.png.license: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eclipse-tractusx/industry-core-hub/HEAD/docs/user/media/30-goto-field-from-rules.png.license -------------------------------------------------------------------------------- /docs/user/media/31-validation-success.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eclipse-tractusx/industry-core-hub/HEAD/docs/user/media/31-validation-success.png -------------------------------------------------------------------------------- /docs/user/media/31-validation-success.png.license: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eclipse-tractusx/industry-core-hub/HEAD/docs/user/media/31-validation-success.png.license -------------------------------------------------------------------------------- /docs/user/media/32-create-submodel-action.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eclipse-tractusx/industry-core-hub/HEAD/docs/user/media/32-create-submodel-action.png -------------------------------------------------------------------------------- /docs/user/media/32-create-submodel-action.png.license: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eclipse-tractusx/industry-core-hub/HEAD/docs/user/media/32-create-submodel-action.png.license -------------------------------------------------------------------------------- /docs/user/media/33-create-submodel-success.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eclipse-tractusx/industry-core-hub/HEAD/docs/user/media/33-create-submodel-success.png -------------------------------------------------------------------------------- /docs/user/media/33-create-submodel-success.png.license: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eclipse-tractusx/industry-core-hub/HEAD/docs/user/media/33-create-submodel-success.png.license -------------------------------------------------------------------------------- /docs/user/media/34-catalog-part-verification.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eclipse-tractusx/industry-core-hub/HEAD/docs/user/media/34-catalog-part-verification.png -------------------------------------------------------------------------------- /docs/user/media/34-catalog-part-verification.png.license: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eclipse-tractusx/industry-core-hub/HEAD/docs/user/media/34-catalog-part-verification.png.license -------------------------------------------------------------------------------- /ichub-backend/.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eclipse-tractusx/industry-core-hub/HEAD/ichub-backend/.gitignore -------------------------------------------------------------------------------- /ichub-backend/Dockerfile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eclipse-tractusx/industry-core-hub/HEAD/ichub-backend/Dockerfile -------------------------------------------------------------------------------- /ichub-backend/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eclipse-tractusx/industry-core-hub/HEAD/ichub-backend/README.md -------------------------------------------------------------------------------- /ichub-backend/__init__.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eclipse-tractusx/industry-core-hub/HEAD/ichub-backend/__init__.py -------------------------------------------------------------------------------- /ichub-backend/config/__init__.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eclipse-tractusx/industry-core-hub/HEAD/ichub-backend/config/__init__.py -------------------------------------------------------------------------------- /ichub-backend/config/configuration.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eclipse-tractusx/industry-core-hub/HEAD/ichub-backend/config/configuration.yml -------------------------------------------------------------------------------- /ichub-backend/config/logging.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eclipse-tractusx/industry-core-hub/HEAD/ichub-backend/config/logging.yml -------------------------------------------------------------------------------- /ichub-backend/connector.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eclipse-tractusx/industry-core-hub/HEAD/ichub-backend/connector.py -------------------------------------------------------------------------------- /ichub-backend/controllers/__init__.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eclipse-tractusx/industry-core-hub/HEAD/ichub-backend/controllers/__init__.py -------------------------------------------------------------------------------- /ichub-backend/controllers/fastapi/__init__.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eclipse-tractusx/industry-core-hub/HEAD/ichub-backend/controllers/fastapi/__init__.py -------------------------------------------------------------------------------- /ichub-backend/controllers/fastapi/app.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eclipse-tractusx/industry-core-hub/HEAD/ichub-backend/controllers/fastapi/app.py -------------------------------------------------------------------------------- /ichub-backend/controllers/fastapi/routers/authentication/auth_api.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eclipse-tractusx/industry-core-hub/HEAD/ichub-backend/controllers/fastapi/routers/authentication/auth_api.py -------------------------------------------------------------------------------- /ichub-backend/controllers/fastapi/routers/consumer/v1/connection_management.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eclipse-tractusx/industry-core-hub/HEAD/ichub-backend/controllers/fastapi/routers/consumer/v1/connection_management.py -------------------------------------------------------------------------------- /ichub-backend/controllers/fastapi/routers/consumer/v1/discovery_management.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eclipse-tractusx/industry-core-hub/HEAD/ichub-backend/controllers/fastapi/routers/consumer/v1/discovery_management.py -------------------------------------------------------------------------------- /ichub-backend/controllers/fastapi/routers/provider/v1/__init__.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eclipse-tractusx/industry-core-hub/HEAD/ichub-backend/controllers/fastapi/routers/provider/v1/__init__.py -------------------------------------------------------------------------------- /ichub-backend/controllers/fastapi/routers/provider/v1/part_management.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eclipse-tractusx/industry-core-hub/HEAD/ichub-backend/controllers/fastapi/routers/provider/v1/part_management.py -------------------------------------------------------------------------------- /ichub-backend/controllers/fastapi/routers/provider/v1/partner_management.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eclipse-tractusx/industry-core-hub/HEAD/ichub-backend/controllers/fastapi/routers/provider/v1/partner_management.py -------------------------------------------------------------------------------- /ichub-backend/controllers/fastapi/routers/provider/v1/sharing_handler.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eclipse-tractusx/industry-core-hub/HEAD/ichub-backend/controllers/fastapi/routers/provider/v1/sharing_handler.py -------------------------------------------------------------------------------- /ichub-backend/controllers/fastapi/routers/provider/v1/submodel_dispatcher.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eclipse-tractusx/industry-core-hub/HEAD/ichub-backend/controllers/fastapi/routers/provider/v1/submodel_dispatcher.py -------------------------------------------------------------------------------- /ichub-backend/controllers/fastapi/routers/provider/v1/twin_management.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eclipse-tractusx/industry-core-hub/HEAD/ichub-backend/controllers/fastapi/routers/provider/v1/twin_management.py -------------------------------------------------------------------------------- /ichub-backend/database.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eclipse-tractusx/industry-core-hub/HEAD/ichub-backend/database.py -------------------------------------------------------------------------------- /ichub-backend/docker-notice-ichub-backend.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eclipse-tractusx/industry-core-hub/HEAD/ichub-backend/docker-notice-ichub-backend.md -------------------------------------------------------------------------------- /ichub-backend/dtr.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eclipse-tractusx/industry-core-hub/HEAD/ichub-backend/dtr.py -------------------------------------------------------------------------------- /ichub-backend/jobs/__init__.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eclipse-tractusx/industry-core-hub/HEAD/ichub-backend/jobs/__init__.py -------------------------------------------------------------------------------- /ichub-backend/jobs/asset_sync_job.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eclipse-tractusx/industry-core-hub/HEAD/ichub-backend/jobs/asset_sync_job.py -------------------------------------------------------------------------------- /ichub-backend/jobs/run_asset_sync.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eclipse-tractusx/industry-core-hub/HEAD/ichub-backend/jobs/run_asset_sync.py -------------------------------------------------------------------------------- /ichub-backend/main.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eclipse-tractusx/industry-core-hub/HEAD/ichub-backend/main.py -------------------------------------------------------------------------------- /ichub-backend/managers/__init__.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eclipse-tractusx/industry-core-hub/HEAD/ichub-backend/managers/__init__.py -------------------------------------------------------------------------------- /ichub-backend/managers/config/__init__.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eclipse-tractusx/industry-core-hub/HEAD/ichub-backend/managers/config/__init__.py -------------------------------------------------------------------------------- /ichub-backend/managers/config/config_manager.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eclipse-tractusx/industry-core-hub/HEAD/ichub-backend/managers/config/config_manager.py -------------------------------------------------------------------------------- /ichub-backend/managers/config/log_manager.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eclipse-tractusx/industry-core-hub/HEAD/ichub-backend/managers/config/log_manager.py -------------------------------------------------------------------------------- /ichub-backend/managers/enablement_services/__init__.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eclipse-tractusx/industry-core-hub/HEAD/ichub-backend/managers/enablement_services/__init__.py -------------------------------------------------------------------------------- /ichub-backend/managers/enablement_services/connector_manager.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eclipse-tractusx/industry-core-hub/HEAD/ichub-backend/managers/enablement_services/connector_manager.py -------------------------------------------------------------------------------- /ichub-backend/managers/enablement_services/consumer/__init__.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eclipse-tractusx/industry-core-hub/HEAD/ichub-backend/managers/enablement_services/consumer/__init__.py -------------------------------------------------------------------------------- /ichub-backend/managers/enablement_services/consumer/base_connector_consumer_manager.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eclipse-tractusx/industry-core-hub/HEAD/ichub-backend/managers/enablement_services/consumer/base_connector_consumer_manager.py -------------------------------------------------------------------------------- /ichub-backend/managers/enablement_services/consumer/base_dtr_consumer_manager.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eclipse-tractusx/industry-core-hub/HEAD/ichub-backend/managers/enablement_services/consumer/base_dtr_consumer_manager.py -------------------------------------------------------------------------------- /ichub-backend/managers/enablement_services/consumer/connector/database/__init__.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eclipse-tractusx/industry-core-hub/HEAD/ichub-backend/managers/enablement_services/consumer/connector/database/__init__.py -------------------------------------------------------------------------------- /ichub-backend/managers/enablement_services/consumer/connector/database/connector_consumer_postgres_memory_manager.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eclipse-tractusx/industry-core-hub/HEAD/ichub-backend/managers/enablement_services/consumer/connector/database/connector_consumer_postgres_memory_manager.py -------------------------------------------------------------------------------- /ichub-backend/managers/enablement_services/consumer/connector/database/connector_consumer_sync_postgres_memory_manager.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eclipse-tractusx/industry-core-hub/HEAD/ichub-backend/managers/enablement_services/consumer/connector/database/connector_consumer_sync_postgres_memory_manager.py -------------------------------------------------------------------------------- /ichub-backend/managers/enablement_services/consumer/connector/memory/__init__.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eclipse-tractusx/industry-core-hub/HEAD/ichub-backend/managers/enablement_services/consumer/connector/memory/__init__.py -------------------------------------------------------------------------------- /ichub-backend/managers/enablement_services/consumer/connector/memory/connector_consumer_memory_manager.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eclipse-tractusx/industry-core-hub/HEAD/ichub-backend/managers/enablement_services/consumer/connector/memory/connector_consumer_memory_manager.py -------------------------------------------------------------------------------- /ichub-backend/managers/enablement_services/consumer/dtr/__init__.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eclipse-tractusx/industry-core-hub/HEAD/ichub-backend/managers/enablement_services/consumer/dtr/__init__.py -------------------------------------------------------------------------------- /ichub-backend/managers/enablement_services/consumer/dtr/database/__init__.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eclipse-tractusx/industry-core-hub/HEAD/ichub-backend/managers/enablement_services/consumer/dtr/database/__init__.py -------------------------------------------------------------------------------- /ichub-backend/managers/enablement_services/consumer/dtr/database/dtr_consumer_postgres_memory_manager.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eclipse-tractusx/industry-core-hub/HEAD/ichub-backend/managers/enablement_services/consumer/dtr/database/dtr_consumer_postgres_memory_manager.py -------------------------------------------------------------------------------- /ichub-backend/managers/enablement_services/consumer/dtr/database/dtr_consumer_sync_postgres_memory_manager.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eclipse-tractusx/industry-core-hub/HEAD/ichub-backend/managers/enablement_services/consumer/dtr/database/dtr_consumer_sync_postgres_memory_manager.py -------------------------------------------------------------------------------- /ichub-backend/managers/enablement_services/consumer/dtr/memory/__init__.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eclipse-tractusx/industry-core-hub/HEAD/ichub-backend/managers/enablement_services/consumer/dtr/memory/__init__.py -------------------------------------------------------------------------------- /ichub-backend/managers/enablement_services/consumer/dtr/memory/dtr_consumer_memory_manager.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eclipse-tractusx/industry-core-hub/HEAD/ichub-backend/managers/enablement_services/consumer/dtr/memory/dtr_consumer_memory_manager.py -------------------------------------------------------------------------------- /ichub-backend/managers/enablement_services/consumer/dtr/pagination_manager.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eclipse-tractusx/industry-core-hub/HEAD/ichub-backend/managers/enablement_services/consumer/dtr/pagination_manager.py -------------------------------------------------------------------------------- /ichub-backend/managers/enablement_services/dtr_manager.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eclipse-tractusx/industry-core-hub/HEAD/ichub-backend/managers/enablement_services/dtr_manager.py -------------------------------------------------------------------------------- /ichub-backend/managers/enablement_services/provider/__init__.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eclipse-tractusx/industry-core-hub/HEAD/ichub-backend/managers/enablement_services/provider/__init__.py -------------------------------------------------------------------------------- /ichub-backend/managers/enablement_services/provider/connector_provider_manager.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eclipse-tractusx/industry-core-hub/HEAD/ichub-backend/managers/enablement_services/provider/connector_provider_manager.py -------------------------------------------------------------------------------- /ichub-backend/managers/enablement_services/provider/dtr_provider_manager.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eclipse-tractusx/industry-core-hub/HEAD/ichub-backend/managers/enablement_services/provider/dtr_provider_manager.py -------------------------------------------------------------------------------- /ichub-backend/managers/enablement_services/submodel_service_manager.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eclipse-tractusx/industry-core-hub/HEAD/ichub-backend/managers/enablement_services/submodel_service_manager.py -------------------------------------------------------------------------------- /ichub-backend/managers/metadata_database/__init__.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eclipse-tractusx/industry-core-hub/HEAD/ichub-backend/managers/metadata_database/__init__.py -------------------------------------------------------------------------------- /ichub-backend/managers/metadata_database/manager.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eclipse-tractusx/industry-core-hub/HEAD/ichub-backend/managers/metadata_database/manager.py -------------------------------------------------------------------------------- /ichub-backend/managers/metadata_database/repositories.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eclipse-tractusx/industry-core-hub/HEAD/ichub-backend/managers/metadata_database/repositories.py -------------------------------------------------------------------------------- /ichub-backend/managers/submodels/__init__.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eclipse-tractusx/industry-core-hub/HEAD/ichub-backend/managers/submodels/__init__.py -------------------------------------------------------------------------------- /ichub-backend/managers/submodels/submodel_document_generator.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eclipse-tractusx/industry-core-hub/HEAD/ichub-backend/managers/submodels/submodel_document_generator.py -------------------------------------------------------------------------------- /ichub-backend/models/__init__.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eclipse-tractusx/industry-core-hub/HEAD/ichub-backend/models/__init__.py -------------------------------------------------------------------------------- /ichub-backend/models/metadata_database/__init__.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eclipse-tractusx/industry-core-hub/HEAD/ichub-backend/models/metadata_database/__init__.py -------------------------------------------------------------------------------- /ichub-backend/models/metadata_database/consumer/__init__.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eclipse-tractusx/industry-core-hub/HEAD/ichub-backend/models/metadata_database/consumer/__init__.py -------------------------------------------------------------------------------- /ichub-backend/models/metadata_database/consumer/models.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eclipse-tractusx/industry-core-hub/HEAD/ichub-backend/models/metadata_database/consumer/models.py -------------------------------------------------------------------------------- /ichub-backend/models/metadata_database/provider/__init__.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eclipse-tractusx/industry-core-hub/HEAD/ichub-backend/models/metadata_database/provider/__init__.py -------------------------------------------------------------------------------- /ichub-backend/models/metadata_database/provider/models.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eclipse-tractusx/industry-core-hub/HEAD/ichub-backend/models/metadata_database/provider/models.py -------------------------------------------------------------------------------- /ichub-backend/models/services/consumer/connection_management.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eclipse-tractusx/industry-core-hub/HEAD/ichub-backend/models/services/consumer/connection_management.py -------------------------------------------------------------------------------- /ichub-backend/models/services/consumer/discovery_management.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eclipse-tractusx/industry-core-hub/HEAD/ichub-backend/models/services/consumer/discovery_management.py -------------------------------------------------------------------------------- /ichub-backend/models/services/provider/__init__.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eclipse-tractusx/industry-core-hub/HEAD/ichub-backend/models/services/provider/__init__.py -------------------------------------------------------------------------------- /ichub-backend/models/services/provider/part_management.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eclipse-tractusx/industry-core-hub/HEAD/ichub-backend/models/services/provider/part_management.py -------------------------------------------------------------------------------- /ichub-backend/models/services/provider/partner_management.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eclipse-tractusx/industry-core-hub/HEAD/ichub-backend/models/services/provider/partner_management.py -------------------------------------------------------------------------------- /ichub-backend/models/services/provider/sharing_management.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eclipse-tractusx/industry-core-hub/HEAD/ichub-backend/models/services/provider/sharing_management.py -------------------------------------------------------------------------------- /ichub-backend/models/services/provider/twin_management.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eclipse-tractusx/industry-core-hub/HEAD/ichub-backend/models/services/provider/twin_management.py -------------------------------------------------------------------------------- /ichub-backend/requirements.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eclipse-tractusx/industry-core-hub/HEAD/ichub-backend/requirements.txt -------------------------------------------------------------------------------- /ichub-backend/runtimes/__init__.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eclipse-tractusx/industry-core-hub/HEAD/ichub-backend/runtimes/__init__.py -------------------------------------------------------------------------------- /ichub-backend/runtimes/fastapi/__init__.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eclipse-tractusx/industry-core-hub/HEAD/ichub-backend/runtimes/fastapi/__init__.py -------------------------------------------------------------------------------- /ichub-backend/runtimes/fastapi/main.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eclipse-tractusx/industry-core-hub/HEAD/ichub-backend/runtimes/fastapi/main.py -------------------------------------------------------------------------------- /ichub-backend/services/provider/__init__.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eclipse-tractusx/industry-core-hub/HEAD/ichub-backend/services/provider/__init__.py -------------------------------------------------------------------------------- /ichub-backend/services/provider/part_management_service.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eclipse-tractusx/industry-core-hub/HEAD/ichub-backend/services/provider/part_management_service.py -------------------------------------------------------------------------------- /ichub-backend/services/provider/partner_management_service.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eclipse-tractusx/industry-core-hub/HEAD/ichub-backend/services/provider/partner_management_service.py -------------------------------------------------------------------------------- /ichub-backend/services/provider/sharing_service.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eclipse-tractusx/industry-core-hub/HEAD/ichub-backend/services/provider/sharing_service.py -------------------------------------------------------------------------------- /ichub-backend/services/provider/submodel_dispatcher_service.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eclipse-tractusx/industry-core-hub/HEAD/ichub-backend/services/provider/submodel_dispatcher_service.py -------------------------------------------------------------------------------- /ichub-backend/services/provider/twin_management_service.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eclipse-tractusx/industry-core-hub/HEAD/ichub-backend/services/provider/twin_management_service.py -------------------------------------------------------------------------------- /ichub-backend/setup.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eclipse-tractusx/industry-core-hub/HEAD/ichub-backend/setup.py -------------------------------------------------------------------------------- /ichub-backend/tests/__init__.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eclipse-tractusx/industry-core-hub/HEAD/ichub-backend/tests/__init__.py -------------------------------------------------------------------------------- /ichub-backend/tests/controllers/__init__.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eclipse-tractusx/industry-core-hub/HEAD/ichub-backend/tests/controllers/__init__.py -------------------------------------------------------------------------------- /ichub-backend/tests/controllers/test_authentication.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eclipse-tractusx/industry-core-hub/HEAD/ichub-backend/tests/controllers/test_authentication.py -------------------------------------------------------------------------------- /ichub-backend/tests/jobs/__init__.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eclipse-tractusx/industry-core-hub/HEAD/ichub-backend/tests/jobs/__init__.py -------------------------------------------------------------------------------- /ichub-backend/tests/jobs/test_asset_sync_job.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eclipse-tractusx/industry-core-hub/HEAD/ichub-backend/tests/jobs/test_asset_sync_job.py -------------------------------------------------------------------------------- /ichub-backend/tests/services/__init__.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eclipse-tractusx/industry-core-hub/HEAD/ichub-backend/tests/services/__init__.py -------------------------------------------------------------------------------- /ichub-backend/tests/services/provider/__init__.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eclipse-tractusx/industry-core-hub/HEAD/ichub-backend/tests/services/provider/__init__.py -------------------------------------------------------------------------------- /ichub-backend/tests/services/provider/test_part_management_service.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eclipse-tractusx/industry-core-hub/HEAD/ichub-backend/tests/services/provider/test_part_management_service.py -------------------------------------------------------------------------------- /ichub-backend/tests/services/provider/test_partner_management_service.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eclipse-tractusx/industry-core-hub/HEAD/ichub-backend/tests/services/provider/test_partner_management_service.py -------------------------------------------------------------------------------- /ichub-backend/tests/services/provider/test_sharing_service.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eclipse-tractusx/industry-core-hub/HEAD/ichub-backend/tests/services/provider/test_sharing_service.py -------------------------------------------------------------------------------- /ichub-backend/tests/services/provider/test_submodel_dispatcher_service.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eclipse-tractusx/industry-core-hub/HEAD/ichub-backend/tests/services/provider/test_submodel_dispatcher_service.py -------------------------------------------------------------------------------- /ichub-backend/tests/services/provider/test_twin_management_service.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eclipse-tractusx/industry-core-hub/HEAD/ichub-backend/tests/services/provider/test_twin_management_service.py -------------------------------------------------------------------------------- /ichub-backend/tools/__init__.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eclipse-tractusx/industry-core-hub/HEAD/ichub-backend/tools/__init__.py -------------------------------------------------------------------------------- /ichub-backend/tools/aspect_id_tools.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eclipse-tractusx/industry-core-hub/HEAD/ichub-backend/tools/aspect_id_tools.py -------------------------------------------------------------------------------- /ichub-backend/tools/constants.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eclipse-tractusx/industry-core-hub/HEAD/ichub-backend/tools/constants.py -------------------------------------------------------------------------------- /ichub-backend/tools/crypt_tools.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eclipse-tractusx/industry-core-hub/HEAD/ichub-backend/tools/crypt_tools.py -------------------------------------------------------------------------------- /ichub-backend/tools/env_tools.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eclipse-tractusx/industry-core-hub/HEAD/ichub-backend/tools/env_tools.py -------------------------------------------------------------------------------- /ichub-backend/tools/exceptions.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eclipse-tractusx/industry-core-hub/HEAD/ichub-backend/tools/exceptions.py -------------------------------------------------------------------------------- /ichub-backend/tools/submodel_type_util.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eclipse-tractusx/industry-core-hub/HEAD/ichub-backend/tools/submodel_type_util.py -------------------------------------------------------------------------------- /ichub-backend/utils/async_utils.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eclipse-tractusx/industry-core-hub/HEAD/ichub-backend/utils/async_utils.py -------------------------------------------------------------------------------- /ichub-frontend/.dockerignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eclipse-tractusx/industry-core-hub/HEAD/ichub-frontend/.dockerignore -------------------------------------------------------------------------------- /ichub-frontend/.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eclipse-tractusx/industry-core-hub/HEAD/ichub-frontend/.gitignore -------------------------------------------------------------------------------- /ichub-frontend/Dockerfile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eclipse-tractusx/industry-core-hub/HEAD/ichub-frontend/Dockerfile -------------------------------------------------------------------------------- /ichub-frontend/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eclipse-tractusx/industry-core-hub/HEAD/ichub-frontend/README.md -------------------------------------------------------------------------------- /ichub-frontend/analyze-schema.cjs: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /ichub-frontend/docker-notice-ichub-frontend.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eclipse-tractusx/industry-core-hub/HEAD/ichub-frontend/docker-notice-ichub-frontend.md -------------------------------------------------------------------------------- /ichub-frontend/docs/CONFIGURATION_ARCHITECTURE.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eclipse-tractusx/industry-core-hub/HEAD/ichub-frontend/docs/CONFIGURATION_ARCHITECTURE.md -------------------------------------------------------------------------------- /ichub-frontend/docs/GOVERNANCE_CONFIGURATION.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eclipse-tractusx/industry-core-hub/HEAD/ichub-frontend/docs/GOVERNANCE_CONFIGURATION.md -------------------------------------------------------------------------------- /ichub-frontend/docs/media/catalogView.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eclipse-tractusx/industry-core-hub/HEAD/ichub-frontend/docs/media/catalogView.png -------------------------------------------------------------------------------- /ichub-frontend/docs/media/productView.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eclipse-tractusx/industry-core-hub/HEAD/ichub-frontend/docs/media/productView.png -------------------------------------------------------------------------------- /ichub-frontend/docs/media/ux-ui-design.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eclipse-tractusx/industry-core-hub/HEAD/ichub-frontend/docs/media/ux-ui-design.svg -------------------------------------------------------------------------------- /ichub-frontend/docs/media/ux-ui-design.svg.license: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eclipse-tractusx/industry-core-hub/HEAD/ichub-frontend/docs/media/ux-ui-design.svg.license -------------------------------------------------------------------------------- /ichub-frontend/eslint.config.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eclipse-tractusx/industry-core-hub/HEAD/ichub-frontend/eslint.config.js -------------------------------------------------------------------------------- /ichub-frontend/index.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eclipse-tractusx/industry-core-hub/HEAD/ichub-frontend/index.html -------------------------------------------------------------------------------- /ichub-frontend/nginx.conf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eclipse-tractusx/industry-core-hub/HEAD/ichub-frontend/nginx.conf -------------------------------------------------------------------------------- /ichub-frontend/package-lock.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eclipse-tractusx/industry-core-hub/HEAD/ichub-frontend/package-lock.json -------------------------------------------------------------------------------- /ichub-frontend/package.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eclipse-tractusx/industry-core-hub/HEAD/ichub-frontend/package.json -------------------------------------------------------------------------------- /ichub-frontend/public/241117_Tractus_X_Logo_Only_RGB.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eclipse-tractusx/industry-core-hub/HEAD/ichub-frontend/public/241117_Tractus_X_Logo_Only_RGB.png -------------------------------------------------------------------------------- /ichub-frontend/public/241117_Tractus_X_Logo_RGB_Light_Version.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eclipse-tractusx/industry-core-hub/HEAD/ichub-frontend/public/241117_Tractus_X_Logo_RGB_Light_Version.png -------------------------------------------------------------------------------- /ichub-frontend/public/241215_Tractus-X_Where_We_Build_Dataspaces_Logo_Light.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eclipse-tractusx/industry-core-hub/HEAD/ichub-frontend/public/241215_Tractus-X_Where_We_Build_Dataspaces_Logo_Light.png -------------------------------------------------------------------------------- /ichub-frontend/public/IndustryCoreHubLogo.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eclipse-tractusx/industry-core-hub/HEAD/ichub-frontend/public/IndustryCoreHubLogo.png -------------------------------------------------------------------------------- /ichub-frontend/public/eclipse-tractus-x-logo.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eclipse-tractusx/industry-core-hub/HEAD/ichub-frontend/public/eclipse-tractus-x-logo.png -------------------------------------------------------------------------------- /ichub-frontend/public/logo_tractus-x-min.ico: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eclipse-tractusx/industry-core-hub/HEAD/ichub-frontend/public/logo_tractus-x-min.ico -------------------------------------------------------------------------------- /ichub-frontend/public/main-bg-new.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eclipse-tractusx/industry-core-hub/HEAD/ichub-frontend/public/main-bg-new.png -------------------------------------------------------------------------------- /ichub-frontend/public/stars-background.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eclipse-tractusx/industry-core-hub/HEAD/ichub-frontend/public/stars-background.png -------------------------------------------------------------------------------- /ichub-frontend/public/stars.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eclipse-tractusx/industry-core-hub/HEAD/ichub-frontend/public/stars.png -------------------------------------------------------------------------------- /ichub-frontend/public/vite.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eclipse-tractusx/industry-core-hub/HEAD/ichub-frontend/public/vite.svg -------------------------------------------------------------------------------- /ichub-frontend/scripts/inject-dynamic-env.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eclipse-tractusx/industry-core-hub/HEAD/ichub-frontend/scripts/inject-dynamic-env.sh -------------------------------------------------------------------------------- /ichub-frontend/src/App.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eclipse-tractusx/industry-core-hub/HEAD/ichub-frontend/src/App.css -------------------------------------------------------------------------------- /ichub-frontend/src/App.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eclipse-tractusx/industry-core-hub/HEAD/ichub-frontend/src/App.tsx -------------------------------------------------------------------------------- /ichub-frontend/src/assets/IndustryCoreHubLogo.png.license: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eclipse-tractusx/industry-core-hub/HEAD/ichub-frontend/src/assets/IndustryCoreHubLogo.png.license -------------------------------------------------------------------------------- /ichub-frontend/src/assets/kit-images/business-partner-kit.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eclipse-tractusx/industry-core-hub/HEAD/ichub-frontend/src/assets/kit-images/business-partner-kit.svg -------------------------------------------------------------------------------- /ichub-frontend/src/assets/kit-images/business-partner-kit.svg.license: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eclipse-tractusx/industry-core-hub/HEAD/ichub-frontend/src/assets/kit-images/business-partner-kit.svg.license -------------------------------------------------------------------------------- /ichub-frontend/src/assets/kit-images/data-chain-kit.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eclipse-tractusx/industry-core-hub/HEAD/ichub-frontend/src/assets/kit-images/data-chain-kit.svg -------------------------------------------------------------------------------- /ichub-frontend/src/assets/kit-images/data-chain-kit.svg.license: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eclipse-tractusx/industry-core-hub/HEAD/ichub-frontend/src/assets/kit-images/data-chain-kit.svg.license -------------------------------------------------------------------------------- /ichub-frontend/src/assets/kit-images/dcm-kit.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eclipse-tractusx/industry-core-hub/HEAD/ichub-frontend/src/assets/kit-images/dcm-kit.svg -------------------------------------------------------------------------------- /ichub-frontend/src/assets/kit-images/dcm-kit.svg.license: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eclipse-tractusx/industry-core-hub/HEAD/ichub-frontend/src/assets/kit-images/dcm-kit.svg.license -------------------------------------------------------------------------------- /ichub-frontend/src/assets/kit-images/eco-pass-kit.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eclipse-tractusx/industry-core-hub/HEAD/ichub-frontend/src/assets/kit-images/eco-pass-kit.svg -------------------------------------------------------------------------------- /ichub-frontend/src/assets/kit-images/eco-pass-kit.svg.license: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eclipse-tractusx/industry-core-hub/HEAD/ichub-frontend/src/assets/kit-images/eco-pass-kit.svg.license -------------------------------------------------------------------------------- /ichub-frontend/src/assets/kit-images/industry-core-kit.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eclipse-tractusx/industry-core-hub/HEAD/ichub-frontend/src/assets/kit-images/industry-core-kit.svg -------------------------------------------------------------------------------- /ichub-frontend/src/assets/kit-images/industry-core-kit.svg.license: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eclipse-tractusx/industry-core-hub/HEAD/ichub-frontend/src/assets/kit-images/industry-core-kit.svg.license -------------------------------------------------------------------------------- /ichub-frontend/src/assets/kit-images/pcf-kit.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eclipse-tractusx/industry-core-hub/HEAD/ichub-frontend/src/assets/kit-images/pcf-kit.svg -------------------------------------------------------------------------------- /ichub-frontend/src/assets/kit-images/pcf-kit.svg.license: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eclipse-tractusx/industry-core-hub/HEAD/ichub-frontend/src/assets/kit-images/pcf-kit.svg.license -------------------------------------------------------------------------------- /ichub-frontend/src/assets/kit-images/traceability-kit.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eclipse-tractusx/industry-core-hub/HEAD/ichub-frontend/src/assets/kit-images/traceability-kit.svg -------------------------------------------------------------------------------- /ichub-frontend/src/assets/kit-images/traceability-kit.svg.license: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eclipse-tractusx/industry-core-hub/HEAD/ichub-frontend/src/assets/kit-images/traceability-kit.svg.license -------------------------------------------------------------------------------- /ichub-frontend/src/assets/styles/components/_CustomCardList.scss: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eclipse-tractusx/industry-core-hub/HEAD/ichub-frontend/src/assets/styles/components/_CustomCardList.scss -------------------------------------------------------------------------------- /ichub-frontend/src/assets/styles/components/_CustomDataGrid.scss: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eclipse-tractusx/industry-core-hub/HEAD/ichub-frontend/src/assets/styles/components/_CustomDataGrid.scss -------------------------------------------------------------------------------- /ichub-frontend/src/assets/styles/components/_Dialog.scss: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eclipse-tractusx/industry-core-hub/HEAD/ichub-frontend/src/assets/styles/components/_Dialog.scss -------------------------------------------------------------------------------- /ichub-frontend/src/assets/styles/components/_InstanceTable.scss: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eclipse-tractusx/industry-core-hub/HEAD/ichub-frontend/src/assets/styles/components/_InstanceTable.scss -------------------------------------------------------------------------------- /ichub-frontend/src/assets/styles/components/_SharedTable.scss: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eclipse-tractusx/industry-core-hub/HEAD/ichub-frontend/src/assets/styles/components/_SharedTable.scss -------------------------------------------------------------------------------- /ichub-frontend/src/assets/styles/components/_index.scss: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eclipse-tractusx/industry-core-hub/HEAD/ichub-frontend/src/assets/styles/components/_index.scss -------------------------------------------------------------------------------- /ichub-frontend/src/assets/styles/components/part-discovery/_CatalogPartsDiscovery.scss: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eclipse-tractusx/industry-core-hub/HEAD/ichub-frontend/src/assets/styles/components/part-discovery/_CatalogPartsDiscovery.scss -------------------------------------------------------------------------------- /ichub-frontend/src/assets/styles/components/part-discovery/_FilterChips.scss: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eclipse-tractusx/industry-core-hub/HEAD/ichub-frontend/src/assets/styles/components/part-discovery/_FilterChips.scss -------------------------------------------------------------------------------- /ichub-frontend/src/assets/styles/components/part-discovery/_PaginationControls.scss: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eclipse-tractusx/industry-core-hub/HEAD/ichub-frontend/src/assets/styles/components/part-discovery/_PaginationControls.scss -------------------------------------------------------------------------------- /ichub-frontend/src/assets/styles/components/part-discovery/_PartnerSearch.scss: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eclipse-tractusx/industry-core-hub/HEAD/ichub-frontend/src/assets/styles/components/part-discovery/_PartnerSearch.scss -------------------------------------------------------------------------------- /ichub-frontend/src/assets/styles/components/part-discovery/_PartsDiscoverySidebar.scss: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eclipse-tractusx/industry-core-hub/HEAD/ichub-frontend/src/assets/styles/components/part-discovery/_PartsDiscoverySidebar.scss -------------------------------------------------------------------------------- /ichub-frontend/src/assets/styles/components/part-discovery/_SearchHeader.scss: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eclipse-tractusx/industry-core-hub/HEAD/ichub-frontend/src/assets/styles/components/part-discovery/_SearchHeader.scss -------------------------------------------------------------------------------- /ichub-frontend/src/assets/styles/components/part-discovery/_SearchModeToggle.scss: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eclipse-tractusx/industry-core-hub/HEAD/ichub-frontend/src/assets/styles/components/part-discovery/_SearchModeToggle.scss -------------------------------------------------------------------------------- /ichub-frontend/src/assets/styles/components/part-discovery/_SingleTwinSearch.scss: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eclipse-tractusx/industry-core-hub/HEAD/ichub-frontend/src/assets/styles/components/part-discovery/_SingleTwinSearch.scss -------------------------------------------------------------------------------- /ichub-frontend/src/assets/styles/components/part-discovery/_index.scss: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eclipse-tractusx/industry-core-hub/HEAD/ichub-frontend/src/assets/styles/components/part-discovery/_index.scss -------------------------------------------------------------------------------- /ichub-frontend/src/assets/styles/config/_mixins.scss: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eclipse-tractusx/industry-core-hub/HEAD/ichub-frontend/src/assets/styles/config/_mixins.scss -------------------------------------------------------------------------------- /ichub-frontend/src/assets/styles/config/_variables.scss: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eclipse-tractusx/industry-core-hub/HEAD/ichub-frontend/src/assets/styles/config/_variables.scss -------------------------------------------------------------------------------- /ichub-frontend/src/assets/styles/layout/_Header.scss: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eclipse-tractusx/industry-core-hub/HEAD/ichub-frontend/src/assets/styles/layout/_Header.scss -------------------------------------------------------------------------------- /ichub-frontend/src/assets/styles/layout/_MainLayout.scss: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eclipse-tractusx/industry-core-hub/HEAD/ichub-frontend/src/assets/styles/layout/_MainLayout.scss -------------------------------------------------------------------------------- /ichub-frontend/src/assets/styles/layout/_Sidebar.scss: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eclipse-tractusx/industry-core-hub/HEAD/ichub-frontend/src/assets/styles/layout/_Sidebar.scss -------------------------------------------------------------------------------- /ichub-frontend/src/assets/styles/layout/_index.scss: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eclipse-tractusx/industry-core-hub/HEAD/ichub-frontend/src/assets/styles/layout/_index.scss -------------------------------------------------------------------------------- /ichub-frontend/src/assets/styles/main.scss: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eclipse-tractusx/industry-core-hub/HEAD/ichub-frontend/src/assets/styles/main.scss -------------------------------------------------------------------------------- /ichub-frontend/src/assets/styles/pages/_KitFeatures.scss: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eclipse-tractusx/industry-core-hub/HEAD/ichub-frontend/src/assets/styles/pages/_KitFeatures.scss -------------------------------------------------------------------------------- /ichub-frontend/src/assets/styles/pages/_PartnersList.scss: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eclipse-tractusx/industry-core-hub/HEAD/ichub-frontend/src/assets/styles/pages/_PartnersList.scss -------------------------------------------------------------------------------- /ichub-frontend/src/assets/styles/pages/_PartsDiscovery.scss: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eclipse-tractusx/industry-core-hub/HEAD/ichub-frontend/src/assets/styles/pages/_PartsDiscovery.scss -------------------------------------------------------------------------------- /ichub-frontend/src/assets/styles/pages/_ProductDetail.scss: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eclipse-tractusx/industry-core-hub/HEAD/ichub-frontend/src/assets/styles/pages/_ProductDetail.scss -------------------------------------------------------------------------------- /ichub-frontend/src/assets/styles/pages/_ProductList.scss: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eclipse-tractusx/industry-core-hub/HEAD/ichub-frontend/src/assets/styles/pages/_ProductList.scss -------------------------------------------------------------------------------- /ichub-frontend/src/assets/styles/pages/_index.scss: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eclipse-tractusx/industry-core-hub/HEAD/ichub-frontend/src/assets/styles/pages/_index.scss -------------------------------------------------------------------------------- /ichub-frontend/src/components/auth/AuthProvider.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eclipse-tractusx/industry-core-hub/HEAD/ichub-frontend/src/components/auth/AuthProvider.tsx -------------------------------------------------------------------------------- /ichub-frontend/src/components/auth/ProtectedRoute.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eclipse-tractusx/industry-core-hub/HEAD/ichub-frontend/src/components/auth/ProtectedRoute.tsx -------------------------------------------------------------------------------- /ichub-frontend/src/components/common/ErrorPage.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eclipse-tractusx/industry-core-hub/HEAD/ichub-frontend/src/components/common/ErrorPage.tsx -------------------------------------------------------------------------------- /ichub-frontend/src/components/general/AdditionalSidebar.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eclipse-tractusx/industry-core-hub/HEAD/ichub-frontend/src/components/general/AdditionalSidebar.tsx -------------------------------------------------------------------------------- /ichub-frontend/src/components/general/ErrorNotFound.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eclipse-tractusx/industry-core-hub/HEAD/ichub-frontend/src/components/general/ErrorNotFound.tsx -------------------------------------------------------------------------------- /ichub-frontend/src/components/general/FeaturesPanel.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eclipse-tractusx/industry-core-hub/HEAD/ichub-frontend/src/components/general/FeaturesPanel.tsx -------------------------------------------------------------------------------- /ichub-frontend/src/components/general/Header.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eclipse-tractusx/industry-core-hub/HEAD/ichub-frontend/src/components/general/Header.tsx -------------------------------------------------------------------------------- /ichub-frontend/src/components/general/JsonViewer.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eclipse-tractusx/industry-core-hub/HEAD/ichub-frontend/src/components/general/JsonViewer.tsx -------------------------------------------------------------------------------- /ichub-frontend/src/components/general/LoadingSpinner.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eclipse-tractusx/industry-core-hub/HEAD/ichub-frontend/src/components/general/LoadingSpinner.tsx -------------------------------------------------------------------------------- /ichub-frontend/src/components/general/PageNotification.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eclipse-tractusx/industry-core-hub/HEAD/ichub-frontend/src/components/general/PageNotification.tsx -------------------------------------------------------------------------------- /ichub-frontend/src/components/general/Sidebar.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eclipse-tractusx/industry-core-hub/HEAD/ichub-frontend/src/components/general/Sidebar.tsx -------------------------------------------------------------------------------- /ichub-frontend/src/components/general/SidebarTooltip.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eclipse-tractusx/industry-core-hub/HEAD/ichub-frontend/src/components/general/SidebarTooltip.tsx -------------------------------------------------------------------------------- /ichub-frontend/src/components/icons/CustomAppsIcon.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eclipse-tractusx/industry-core-hub/HEAD/ichub-frontend/src/components/icons/CustomAppsIcon.tsx -------------------------------------------------------------------------------- /ichub-frontend/src/components/layout/AdditionalSidebar.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eclipse-tractusx/industry-core-hub/HEAD/ichub-frontend/src/components/layout/AdditionalSidebar.tsx -------------------------------------------------------------------------------- /ichub-frontend/src/components/submodel-creation/CopyableUrnChip.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eclipse-tractusx/industry-core-hub/HEAD/ichub-frontend/src/components/submodel-creation/CopyableUrnChip.tsx -------------------------------------------------------------------------------- /ichub-frontend/src/components/submodel-creation/CustomTooltip.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eclipse-tractusx/industry-core-hub/HEAD/ichub-frontend/src/components/submodel-creation/CustomTooltip.tsx -------------------------------------------------------------------------------- /ichub-frontend/src/components/submodel-creation/DynamicForm.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eclipse-tractusx/industry-core-hub/HEAD/ichub-frontend/src/components/submodel-creation/DynamicForm.tsx -------------------------------------------------------------------------------- /ichub-frontend/src/components/submodel-creation/JsonImportDialog.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eclipse-tractusx/industry-core-hub/HEAD/ichub-frontend/src/components/submodel-creation/JsonImportDialog.tsx -------------------------------------------------------------------------------- /ichub-frontend/src/components/submodel-creation/JsonPreview.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eclipse-tractusx/industry-core-hub/HEAD/ichub-frontend/src/components/submodel-creation/JsonPreview.tsx -------------------------------------------------------------------------------- /ichub-frontend/src/components/submodel-creation/SchemaRulesViewer.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eclipse-tractusx/industry-core-hub/HEAD/ichub-frontend/src/components/submodel-creation/SchemaRulesViewer.tsx -------------------------------------------------------------------------------- /ichub-frontend/src/components/submodel-creation/SchemaSelector.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eclipse-tractusx/industry-core-hub/HEAD/ichub-frontend/src/components/submodel-creation/SchemaSelector.tsx -------------------------------------------------------------------------------- /ichub-frontend/src/components/submodel-creation/ScrollToTopFab.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eclipse-tractusx/industry-core-hub/HEAD/ichub-frontend/src/components/submodel-creation/ScrollToTopFab.tsx -------------------------------------------------------------------------------- /ichub-frontend/src/components/submodel-creation/SubmodelCreator.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eclipse-tractusx/industry-core-hub/HEAD/ichub-frontend/src/components/submodel-creation/SubmodelCreator.tsx -------------------------------------------------------------------------------- /ichub-frontend/src/components/submodel-creation/ValidationButton.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eclipse-tractusx/industry-core-hub/HEAD/ichub-frontend/src/components/submodel-creation/ValidationButton.tsx -------------------------------------------------------------------------------- /ichub-frontend/src/components/submodel-creation/index.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eclipse-tractusx/industry-core-hub/HEAD/ichub-frontend/src/components/submodel-creation/index.ts -------------------------------------------------------------------------------- /ichub-frontend/src/components/submodel-creation/objectPathUtils.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eclipse-tractusx/industry-core-hub/HEAD/ichub-frontend/src/components/submodel-creation/objectPathUtils.ts -------------------------------------------------------------------------------- /ichub-frontend/src/config/ConfigFactory.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eclipse-tractusx/industry-core-hub/HEAD/ichub-frontend/src/config/ConfigFactory.ts -------------------------------------------------------------------------------- /ichub-frontend/src/config/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eclipse-tractusx/industry-core-hub/HEAD/ichub-frontend/src/config/README.md -------------------------------------------------------------------------------- /ichub-frontend/src/config/base.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eclipse-tractusx/industry-core-hub/HEAD/ichub-frontend/src/config/base.ts -------------------------------------------------------------------------------- /ichub-frontend/src/config/index.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eclipse-tractusx/industry-core-hub/HEAD/ichub-frontend/src/config/index.ts -------------------------------------------------------------------------------- /ichub-frontend/src/config/schema.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eclipse-tractusx/industry-core-hub/HEAD/ichub-frontend/src/config/schema.ts -------------------------------------------------------------------------------- /ichub-frontend/src/config/types.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eclipse-tractusx/industry-core-hub/HEAD/ichub-frontend/src/config/types.ts -------------------------------------------------------------------------------- /ichub-frontend/src/contexts/AdditionalSidebarContext.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eclipse-tractusx/industry-core-hub/HEAD/ichub-frontend/src/contexts/AdditionalSidebarContext.tsx -------------------------------------------------------------------------------- /ichub-frontend/src/contexts/SidebarContext.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eclipse-tractusx/industry-core-hub/HEAD/ichub-frontend/src/contexts/SidebarContext.tsx -------------------------------------------------------------------------------- /ichub-frontend/src/features/catalog-management/api.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eclipse-tractusx/industry-core-hub/HEAD/ichub-frontend/src/features/catalog-management/api.ts -------------------------------------------------------------------------------- /ichub-frontend/src/features/catalog-management/components/product-detail/AddSerializedPartDialog.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eclipse-tractusx/industry-core-hub/HEAD/ichub-frontend/src/features/catalog-management/components/product-detail/AddSerializedPartDialog.tsx -------------------------------------------------------------------------------- /ichub-frontend/src/features/catalog-management/components/product-detail/DarkSubmodelViewer.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eclipse-tractusx/industry-core-hub/HEAD/ichub-frontend/src/features/catalog-management/components/product-detail/DarkSubmodelViewer.tsx -------------------------------------------------------------------------------- /ichub-frontend/src/features/catalog-management/components/product-detail/InstanceProductsTable.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eclipse-tractusx/industry-core-hub/HEAD/ichub-frontend/src/features/catalog-management/components/product-detail/InstanceProductsTable.tsx -------------------------------------------------------------------------------- /ichub-frontend/src/features/catalog-management/components/product-detail/JsonViewer.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eclipse-tractusx/industry-core-hub/HEAD/ichub-frontend/src/features/catalog-management/components/product-detail/JsonViewer.tsx -------------------------------------------------------------------------------- /ichub-frontend/src/features/catalog-management/components/product-detail/JsonViewerDialog.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eclipse-tractusx/industry-core-hub/HEAD/ichub-frontend/src/features/catalog-management/components/product-detail/JsonViewerDialog.tsx -------------------------------------------------------------------------------- /ichub-frontend/src/features/catalog-management/components/product-detail/ProductButton.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eclipse-tractusx/industry-core-hub/HEAD/ichub-frontend/src/features/catalog-management/components/product-detail/ProductButton.tsx -------------------------------------------------------------------------------- /ichub-frontend/src/features/catalog-management/components/product-detail/ProductData.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eclipse-tractusx/industry-core-hub/HEAD/ichub-frontend/src/features/catalog-management/components/product-detail/ProductData.tsx -------------------------------------------------------------------------------- /ichub-frontend/src/features/catalog-management/components/product-detail/SerializedPartStatusChip.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eclipse-tractusx/industry-core-hub/HEAD/ichub-frontend/src/features/catalog-management/components/product-detail/SerializedPartStatusChip.tsx -------------------------------------------------------------------------------- /ichub-frontend/src/features/catalog-management/components/product-detail/ShareDropdown.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eclipse-tractusx/industry-core-hub/HEAD/ichub-frontend/src/features/catalog-management/components/product-detail/ShareDropdown.tsx -------------------------------------------------------------------------------- /ichub-frontend/src/features/catalog-management/components/product-detail/SharedTable.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eclipse-tractusx/industry-core-hub/HEAD/ichub-frontend/src/features/catalog-management/components/product-detail/SharedTable.tsx -------------------------------------------------------------------------------- /ichub-frontend/src/features/catalog-management/components/product-detail/SubmodelCard.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eclipse-tractusx/industry-core-hub/HEAD/ichub-frontend/src/features/catalog-management/components/product-detail/SubmodelCard.tsx -------------------------------------------------------------------------------- /ichub-frontend/src/features/catalog-management/components/product-detail/SubmodelViewer.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eclipse-tractusx/industry-core-hub/HEAD/ichub-frontend/src/features/catalog-management/components/product-detail/SubmodelViewer.tsx -------------------------------------------------------------------------------- /ichub-frontend/src/features/catalog-management/components/product-detail/SubmodelsGridDialog.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eclipse-tractusx/industry-core-hub/HEAD/ichub-frontend/src/features/catalog-management/components/product-detail/SubmodelsGridDialog.tsx -------------------------------------------------------------------------------- /ichub-frontend/src/features/catalog-management/components/product-list/CardChip.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eclipse-tractusx/industry-core-hub/HEAD/ichub-frontend/src/features/catalog-management/components/product-list/CardChip.tsx -------------------------------------------------------------------------------- /ichub-frontend/src/features/catalog-management/components/product-list/CreateProductListDialog.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eclipse-tractusx/industry-core-hub/HEAD/ichub-frontend/src/features/catalog-management/components/product-list/CreateProductListDialog.tsx -------------------------------------------------------------------------------- /ichub-frontend/src/features/catalog-management/components/product-list/ProductCard.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eclipse-tractusx/industry-core-hub/HEAD/ichub-frontend/src/features/catalog-management/components/product-list/ProductCard.tsx -------------------------------------------------------------------------------- /ichub-frontend/src/features/catalog-management/components/shared/ShareDialog.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eclipse-tractusx/industry-core-hub/HEAD/ichub-frontend/src/features/catalog-management/components/shared/ShareDialog.tsx -------------------------------------------------------------------------------- /ichub-frontend/src/features/catalog-management/config.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eclipse-tractusx/industry-core-hub/HEAD/ichub-frontend/src/features/catalog-management/config.ts -------------------------------------------------------------------------------- /ichub-frontend/src/features/catalog-management/index.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eclipse-tractusx/industry-core-hub/HEAD/ichub-frontend/src/features/catalog-management/index.ts -------------------------------------------------------------------------------- /ichub-frontend/src/features/catalog-management/pages/ProductsDetails.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eclipse-tractusx/industry-core-hub/HEAD/ichub-frontend/src/features/catalog-management/pages/ProductsDetails.tsx -------------------------------------------------------------------------------- /ichub-frontend/src/features/catalog-management/pages/ProductsList.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eclipse-tractusx/industry-core-hub/HEAD/ichub-frontend/src/features/catalog-management/pages/ProductsList.tsx -------------------------------------------------------------------------------- /ichub-frontend/src/features/catalog-management/pages/index.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eclipse-tractusx/industry-core-hub/HEAD/ichub-frontend/src/features/catalog-management/pages/index.ts -------------------------------------------------------------------------------- /ichub-frontend/src/features/catalog-management/routes.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eclipse-tractusx/industry-core-hub/HEAD/ichub-frontend/src/features/catalog-management/routes.tsx -------------------------------------------------------------------------------- /ichub-frontend/src/features/catalog-management/types/dialog-types.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eclipse-tractusx/industry-core-hub/HEAD/ichub-frontend/src/features/catalog-management/types/dialog-types.ts -------------------------------------------------------------------------------- /ichub-frontend/src/features/catalog-management/types/shared.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eclipse-tractusx/industry-core-hub/HEAD/ichub-frontend/src/features/catalog-management/types/shared.ts -------------------------------------------------------------------------------- /ichub-frontend/src/features/catalog-management/types/twin-types.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eclipse-tractusx/industry-core-hub/HEAD/ichub-frontend/src/features/catalog-management/types/twin-types.ts -------------------------------------------------------------------------------- /ichub-frontend/src/features/catalog-management/types/types.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eclipse-tractusx/industry-core-hub/HEAD/ichub-frontend/src/features/catalog-management/types/types.ts -------------------------------------------------------------------------------- /ichub-frontend/src/features/catalog-management/utils/utils.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eclipse-tractusx/industry-core-hub/HEAD/ichub-frontend/src/features/catalog-management/utils/utils.ts -------------------------------------------------------------------------------- /ichub-frontend/src/features/kit-features/components/KitCard.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eclipse-tractusx/industry-core-hub/HEAD/ichub-frontend/src/features/kit-features/components/KitCard.tsx -------------------------------------------------------------------------------- /ichub-frontend/src/features/kit-features/index.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eclipse-tractusx/industry-core-hub/HEAD/ichub-frontend/src/features/kit-features/index.ts -------------------------------------------------------------------------------- /ichub-frontend/src/features/kit-features/pages/KitFeaturesPage.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eclipse-tractusx/industry-core-hub/HEAD/ichub-frontend/src/features/kit-features/pages/KitFeaturesPage.tsx -------------------------------------------------------------------------------- /ichub-frontend/src/features/kit-features/routes.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eclipse-tractusx/industry-core-hub/HEAD/ichub-frontend/src/features/kit-features/routes.tsx -------------------------------------------------------------------------------- /ichub-frontend/src/features/kit-features/types/index.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eclipse-tractusx/industry-core-hub/HEAD/ichub-frontend/src/features/kit-features/types/index.ts -------------------------------------------------------------------------------- /ichub-frontend/src/features/main.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eclipse-tractusx/industry-core-hub/HEAD/ichub-frontend/src/features/main.tsx -------------------------------------------------------------------------------- /ichub-frontend/src/features/part-discovery/api.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eclipse-tractusx/industry-core-hub/HEAD/ichub-frontend/src/features/part-discovery/api.ts -------------------------------------------------------------------------------- /ichub-frontend/src/features/part-discovery/components/catalog-parts/CatalogPartsDiscovery.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eclipse-tractusx/industry-core-hub/HEAD/ichub-frontend/src/features/part-discovery/components/catalog-parts/CatalogPartsDiscovery.tsx -------------------------------------------------------------------------------- /ichub-frontend/src/features/part-discovery/components/catalog-parts/DiscoveryCardChip.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eclipse-tractusx/industry-core-hub/HEAD/ichub-frontend/src/features/part-discovery/components/catalog-parts/DiscoveryCardChip.tsx -------------------------------------------------------------------------------- /ichub-frontend/src/features/part-discovery/components/index.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eclipse-tractusx/industry-core-hub/HEAD/ichub-frontend/src/features/part-discovery/components/index.ts -------------------------------------------------------------------------------- /ichub-frontend/src/features/part-discovery/components/search-result/FilterChips.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eclipse-tractusx/industry-core-hub/HEAD/ichub-frontend/src/features/part-discovery/components/search-result/FilterChips.tsx -------------------------------------------------------------------------------- /ichub-frontend/src/features/part-discovery/components/search-result/PaginationControls.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eclipse-tractusx/industry-core-hub/HEAD/ichub-frontend/src/features/part-discovery/components/search-result/PaginationControls.tsx -------------------------------------------------------------------------------- /ichub-frontend/src/features/part-discovery/components/search-result/SearchHeader.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eclipse-tractusx/industry-core-hub/HEAD/ichub-frontend/src/features/part-discovery/components/search-result/SearchHeader.tsx -------------------------------------------------------------------------------- /ichub-frontend/src/features/part-discovery/components/search/ErrorBoundary.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eclipse-tractusx/industry-core-hub/HEAD/ichub-frontend/src/features/part-discovery/components/search/ErrorBoundary.tsx -------------------------------------------------------------------------------- /ichub-frontend/src/features/part-discovery/components/search/PartnerSearch.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eclipse-tractusx/industry-core-hub/HEAD/ichub-frontend/src/features/part-discovery/components/search/PartnerSearch.tsx -------------------------------------------------------------------------------- /ichub-frontend/src/features/part-discovery/components/search/PartsDiscoverySidebar.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eclipse-tractusx/industry-core-hub/HEAD/ichub-frontend/src/features/part-discovery/components/search/PartsDiscoverySidebar.tsx -------------------------------------------------------------------------------- /ichub-frontend/src/features/part-discovery/components/search/SearchLoading.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eclipse-tractusx/industry-core-hub/HEAD/ichub-frontend/src/features/part-discovery/components/search/SearchLoading.tsx -------------------------------------------------------------------------------- /ichub-frontend/src/features/part-discovery/components/search/SearchModeToggle.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eclipse-tractusx/industry-core-hub/HEAD/ichub-frontend/src/features/part-discovery/components/search/SearchModeToggle.tsx -------------------------------------------------------------------------------- /ichub-frontend/src/features/part-discovery/components/serialized-parts/SerializedPartsTable.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eclipse-tractusx/industry-core-hub/HEAD/ichub-frontend/src/features/part-discovery/components/serialized-parts/SerializedPartsTable.tsx -------------------------------------------------------------------------------- /ichub-frontend/src/features/part-discovery/components/single-twin/SingleTwinResult.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eclipse-tractusx/industry-core-hub/HEAD/ichub-frontend/src/features/part-discovery/components/single-twin/SingleTwinResult.tsx -------------------------------------------------------------------------------- /ichub-frontend/src/features/part-discovery/components/single-twin/SingleTwinSearch.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eclipse-tractusx/industry-core-hub/HEAD/ichub-frontend/src/features/part-discovery/components/single-twin/SingleTwinSearch.tsx -------------------------------------------------------------------------------- /ichub-frontend/src/features/part-discovery/components/submodel-addons/BaseAddon.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eclipse-tractusx/industry-core-hub/HEAD/ichub-frontend/src/features/part-discovery/components/submodel-addons/BaseAddon.tsx -------------------------------------------------------------------------------- /ichub-frontend/src/features/part-discovery/components/submodel-addons/registry.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eclipse-tractusx/industry-core-hub/HEAD/ichub-frontend/src/features/part-discovery/components/submodel-addons/registry.ts -------------------------------------------------------------------------------- /ichub-frontend/src/features/part-discovery/components/submodel-addons/shared/registry.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eclipse-tractusx/industry-core-hub/HEAD/ichub-frontend/src/features/part-discovery/components/submodel-addons/shared/registry.ts -------------------------------------------------------------------------------- /ichub-frontend/src/features/part-discovery/components/submodel-addons/shared/semantic-id-utils.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eclipse-tractusx/industry-core-hub/HEAD/ichub-frontend/src/features/part-discovery/components/submodel-addons/shared/semantic-id-utils.ts -------------------------------------------------------------------------------- /ichub-frontend/src/features/part-discovery/components/submodel-addons/shared/types.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eclipse-tractusx/industry-core-hub/HEAD/ichub-frontend/src/features/part-discovery/components/submodel-addons/shared/types.ts -------------------------------------------------------------------------------- /ichub-frontend/src/features/part-discovery/components/submodel-addons/shared/utils.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eclipse-tractusx/industry-core-hub/HEAD/ichub-frontend/src/features/part-discovery/components/submodel-addons/shared/utils.ts -------------------------------------------------------------------------------- /ichub-frontend/src/features/part-discovery/components/submodel-addons/types.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eclipse-tractusx/industry-core-hub/HEAD/ichub-frontend/src/features/part-discovery/components/submodel-addons/types.ts -------------------------------------------------------------------------------- /ichub-frontend/src/features/part-discovery/components/submodel-addons/us-tariff-information/UsTariffInformationViewer.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eclipse-tractusx/industry-core-hub/HEAD/ichub-frontend/src/features/part-discovery/components/submodel-addons/us-tariff-information/UsTariffInformationViewer.tsx -------------------------------------------------------------------------------- /ichub-frontend/src/features/part-discovery/components/submodel-addons/us-tariff-information/addon.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eclipse-tractusx/industry-core-hub/HEAD/ichub-frontend/src/features/part-discovery/components/submodel-addons/us-tariff-information/addon.ts -------------------------------------------------------------------------------- /ichub-frontend/src/features/part-discovery/components/submodel-addons/us-tariff-information/index.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eclipse-tractusx/industry-core-hub/HEAD/ichub-frontend/src/features/part-discovery/components/submodel-addons/us-tariff-information/index.ts -------------------------------------------------------------------------------- /ichub-frontend/src/features/part-discovery/components/submodel-addons/us-tariff-information/types.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eclipse-tractusx/industry-core-hub/HEAD/ichub-frontend/src/features/part-discovery/components/submodel-addons/us-tariff-information/types.ts -------------------------------------------------------------------------------- /ichub-frontend/src/features/part-discovery/components/submodel-addons/utils/country-flags.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eclipse-tractusx/industry-core-hub/HEAD/ichub-frontend/src/features/part-discovery/components/submodel-addons/utils/country-flags.ts -------------------------------------------------------------------------------- /ichub-frontend/src/features/part-discovery/components/submodel-addons/utils/version-utils.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eclipse-tractusx/industry-core-hub/HEAD/ichub-frontend/src/features/part-discovery/components/submodel-addons/utils/version-utils.ts -------------------------------------------------------------------------------- /ichub-frontend/src/features/part-discovery/components/submodel/SubmodelViewer.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eclipse-tractusx/industry-core-hub/HEAD/ichub-frontend/src/features/part-discovery/components/submodel/SubmodelViewer.tsx -------------------------------------------------------------------------------- /ichub-frontend/src/features/part-discovery/config.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eclipse-tractusx/industry-core-hub/HEAD/ichub-frontend/src/features/part-discovery/config.ts -------------------------------------------------------------------------------- /ichub-frontend/src/features/part-discovery/hooks/usePartsDiscoverySearch.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eclipse-tractusx/industry-core-hub/HEAD/ichub-frontend/src/features/part-discovery/hooks/usePartsDiscoverySearch.ts -------------------------------------------------------------------------------- /ichub-frontend/src/features/part-discovery/index.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eclipse-tractusx/industry-core-hub/HEAD/ichub-frontend/src/features/part-discovery/index.ts -------------------------------------------------------------------------------- /ichub-frontend/src/features/part-discovery/pages/PartsDiscovery.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eclipse-tractusx/industry-core-hub/HEAD/ichub-frontend/src/features/part-discovery/pages/PartsDiscovery.tsx -------------------------------------------------------------------------------- /ichub-frontend/src/features/part-discovery/pages/index.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eclipse-tractusx/industry-core-hub/HEAD/ichub-frontend/src/features/part-discovery/pages/index.ts -------------------------------------------------------------------------------- /ichub-frontend/src/features/part-discovery/routes.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eclipse-tractusx/industry-core-hub/HEAD/ichub-frontend/src/features/part-discovery/routes.tsx -------------------------------------------------------------------------------- /ichub-frontend/src/features/part-discovery/types/types.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eclipse-tractusx/industry-core-hub/HEAD/ichub-frontend/src/features/part-discovery/types/types.ts -------------------------------------------------------------------------------- /ichub-frontend/src/features/part-discovery/utils/data-converters.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eclipse-tractusx/industry-core-hub/HEAD/ichub-frontend/src/features/part-discovery/utils/data-converters.ts -------------------------------------------------------------------------------- /ichub-frontend/src/features/part-discovery/utils/dtr-utils.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eclipse-tractusx/industry-core-hub/HEAD/ichub-frontend/src/features/part-discovery/utils/dtr-utils.ts -------------------------------------------------------------------------------- /ichub-frontend/src/features/part-discovery/utils/governancePolicyUtils.test.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eclipse-tractusx/industry-core-hub/HEAD/ichub-frontend/src/features/part-discovery/utils/governancePolicyUtils.test.ts -------------------------------------------------------------------------------- /ichub-frontend/src/features/part-discovery/utils/governancePolicyUtils.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eclipse-tractusx/industry-core-hub/HEAD/ichub-frontend/src/features/part-discovery/utils/governancePolicyUtils.ts -------------------------------------------------------------------------------- /ichub-frontend/src/features/part-discovery/utils/utils.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eclipse-tractusx/industry-core-hub/HEAD/ichub-frontend/src/features/part-discovery/utils/utils.ts -------------------------------------------------------------------------------- /ichub-frontend/src/features/partner-management/api.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eclipse-tractusx/industry-core-hub/HEAD/ichub-frontend/src/features/partner-management/api.ts -------------------------------------------------------------------------------- /ichub-frontend/src/features/partner-management/api/index.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eclipse-tractusx/industry-core-hub/HEAD/ichub-frontend/src/features/partner-management/api/index.ts -------------------------------------------------------------------------------- /ichub-frontend/src/features/partner-management/components/general/CreatePartnerDialog.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eclipse-tractusx/industry-core-hub/HEAD/ichub-frontend/src/features/partner-management/components/general/CreatePartnerDialog.tsx -------------------------------------------------------------------------------- /ichub-frontend/src/features/partner-management/components/general/PartnerAutocomplete.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eclipse-tractusx/industry-core-hub/HEAD/ichub-frontend/src/features/partner-management/components/general/PartnerAutocomplete.tsx -------------------------------------------------------------------------------- /ichub-frontend/src/features/partner-management/components/general/index.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eclipse-tractusx/industry-core-hub/HEAD/ichub-frontend/src/features/partner-management/components/general/index.ts -------------------------------------------------------------------------------- /ichub-frontend/src/features/partner-management/components/index.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eclipse-tractusx/industry-core-hub/HEAD/ichub-frontend/src/features/partner-management/components/index.ts -------------------------------------------------------------------------------- /ichub-frontend/src/features/partner-management/components/partners-list/PartnerCard.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eclipse-tractusx/industry-core-hub/HEAD/ichub-frontend/src/features/partner-management/components/partners-list/PartnerCard.tsx -------------------------------------------------------------------------------- /ichub-frontend/src/features/partner-management/config.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eclipse-tractusx/industry-core-hub/HEAD/ichub-frontend/src/features/partner-management/config.ts -------------------------------------------------------------------------------- /ichub-frontend/src/features/partner-management/index.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eclipse-tractusx/industry-core-hub/HEAD/ichub-frontend/src/features/partner-management/index.ts -------------------------------------------------------------------------------- /ichub-frontend/src/features/partner-management/pages/PartnersList.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eclipse-tractusx/industry-core-hub/HEAD/ichub-frontend/src/features/partner-management/pages/PartnersList.tsx -------------------------------------------------------------------------------- /ichub-frontend/src/features/partner-management/pages/index.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eclipse-tractusx/industry-core-hub/HEAD/ichub-frontend/src/features/partner-management/pages/index.ts -------------------------------------------------------------------------------- /ichub-frontend/src/features/partner-management/routes.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eclipse-tractusx/industry-core-hub/HEAD/ichub-frontend/src/features/partner-management/routes.tsx -------------------------------------------------------------------------------- /ichub-frontend/src/features/partner-management/types/dialog-types.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eclipse-tractusx/industry-core-hub/HEAD/ichub-frontend/src/features/partner-management/types/dialog-types.ts -------------------------------------------------------------------------------- /ichub-frontend/src/features/partner-management/types/types.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eclipse-tractusx/industry-core-hub/HEAD/ichub-frontend/src/features/partner-management/types/types.ts -------------------------------------------------------------------------------- /ichub-frontend/src/features/serialized-parts/api.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eclipse-tractusx/industry-core-hub/HEAD/ichub-frontend/src/features/serialized-parts/api.ts -------------------------------------------------------------------------------- /ichub-frontend/src/features/serialized-parts/api/index.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eclipse-tractusx/industry-core-hub/HEAD/ichub-frontend/src/features/serialized-parts/api/index.ts -------------------------------------------------------------------------------- /ichub-frontend/src/features/serialized-parts/components/AddSerializedPartDialog.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eclipse-tractusx/industry-core-hub/HEAD/ichub-frontend/src/features/serialized-parts/components/AddSerializedPartDialog.tsx -------------------------------------------------------------------------------- /ichub-frontend/src/features/serialized-parts/components/SerializedPartsTable.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eclipse-tractusx/industry-core-hub/HEAD/ichub-frontend/src/features/serialized-parts/components/SerializedPartsTable.tsx -------------------------------------------------------------------------------- /ichub-frontend/src/features/serialized-parts/config.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eclipse-tractusx/industry-core-hub/HEAD/ichub-frontend/src/features/serialized-parts/config.ts -------------------------------------------------------------------------------- /ichub-frontend/src/features/serialized-parts/index.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eclipse-tractusx/industry-core-hub/HEAD/ichub-frontend/src/features/serialized-parts/index.ts -------------------------------------------------------------------------------- /ichub-frontend/src/features/serialized-parts/pages/SerializedParts.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eclipse-tractusx/industry-core-hub/HEAD/ichub-frontend/src/features/serialized-parts/pages/SerializedParts.tsx -------------------------------------------------------------------------------- /ichub-frontend/src/features/serialized-parts/pages/index.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eclipse-tractusx/industry-core-hub/HEAD/ichub-frontend/src/features/serialized-parts/pages/index.ts -------------------------------------------------------------------------------- /ichub-frontend/src/features/serialized-parts/routes.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eclipse-tractusx/industry-core-hub/HEAD/ichub-frontend/src/features/serialized-parts/routes.tsx -------------------------------------------------------------------------------- /ichub-frontend/src/features/serialized-parts/types.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eclipse-tractusx/industry-core-hub/HEAD/ichub-frontend/src/features/serialized-parts/types.ts -------------------------------------------------------------------------------- /ichub-frontend/src/features/serialized-parts/types/twin-types.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eclipse-tractusx/industry-core-hub/HEAD/ichub-frontend/src/features/serialized-parts/types/twin-types.ts -------------------------------------------------------------------------------- /ichub-frontend/src/hooks/useAdditionalSidebar.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eclipse-tractusx/industry-core-hub/HEAD/ichub-frontend/src/hooks/useAdditionalSidebar.ts -------------------------------------------------------------------------------- /ichub-frontend/src/hooks/useAuth.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eclipse-tractusx/industry-core-hub/HEAD/ichub-frontend/src/hooks/useAuth.ts -------------------------------------------------------------------------------- /ichub-frontend/src/hooks/useEscapeKey.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eclipse-tractusx/industry-core-hub/HEAD/ichub-frontend/src/hooks/useEscapeKey.ts -------------------------------------------------------------------------------- /ichub-frontend/src/layouts/MainLayout.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eclipse-tractusx/industry-core-hub/HEAD/ichub-frontend/src/layouts/MainLayout.tsx -------------------------------------------------------------------------------- /ichub-frontend/src/main.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eclipse-tractusx/industry-core-hub/HEAD/ichub-frontend/src/main.tsx -------------------------------------------------------------------------------- /ichub-frontend/src/routes.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eclipse-tractusx/industry-core-hub/HEAD/ichub-frontend/src/routes.tsx -------------------------------------------------------------------------------- /ichub-frontend/src/schemas/DigitalProductPassport-schema.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eclipse-tractusx/industry-core-hub/HEAD/ichub-frontend/src/schemas/DigitalProductPassport-schema.json -------------------------------------------------------------------------------- /ichub-frontend/src/schemas/index.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eclipse-tractusx/industry-core-hub/HEAD/ichub-frontend/src/schemas/index.ts -------------------------------------------------------------------------------- /ichub-frontend/src/schemas/json-schema-interpreter.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eclipse-tractusx/industry-core-hub/HEAD/ichub-frontend/src/schemas/json-schema-interpreter.ts -------------------------------------------------------------------------------- /ichub-frontend/src/schemas/schemaLoader.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eclipse-tractusx/industry-core-hub/HEAD/ichub-frontend/src/schemas/schemaLoader.ts -------------------------------------------------------------------------------- /ichub-frontend/src/services/AuthService.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eclipse-tractusx/industry-core-hub/HEAD/ichub-frontend/src/services/AuthService.ts -------------------------------------------------------------------------------- /ichub-frontend/src/services/EnvironmentService.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eclipse-tractusx/industry-core-hub/HEAD/ichub-frontend/src/services/EnvironmentService.ts -------------------------------------------------------------------------------- /ichub-frontend/src/services/HttpClient.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eclipse-tractusx/industry-core-hub/HEAD/ichub-frontend/src/services/HttpClient.ts -------------------------------------------------------------------------------- /ichub-frontend/src/styles/fieldNavigation.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eclipse-tractusx/industry-core-hub/HEAD/ichub-frontend/src/styles/fieldNavigation.css -------------------------------------------------------------------------------- /ichub-frontend/src/tests/payloads/instance-data.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eclipse-tractusx/industry-core-hub/HEAD/ichub-frontend/src/tests/payloads/instance-data.json -------------------------------------------------------------------------------- /ichub-frontend/src/tests/payloads/sample-data.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eclipse-tractusx/industry-core-hub/HEAD/ichub-frontend/src/tests/payloads/sample-data.json -------------------------------------------------------------------------------- /ichub-frontend/src/tests/payloads/shared-partners.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eclipse-tractusx/industry-core-hub/HEAD/ichub-frontend/src/tests/payloads/shared-partners.json -------------------------------------------------------------------------------- /ichub-frontend/src/theme/palette.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eclipse-tractusx/industry-core-hub/HEAD/ichub-frontend/src/theme/palette.ts -------------------------------------------------------------------------------- /ichub-frontend/src/theme/theme.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eclipse-tractusx/industry-core-hub/HEAD/ichub-frontend/src/theme/theme.ts -------------------------------------------------------------------------------- /ichub-frontend/src/theme/typography.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eclipse-tractusx/industry-core-hub/HEAD/ichub-frontend/src/theme/typography.ts -------------------------------------------------------------------------------- /ichub-frontend/src/types/axiosError.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eclipse-tractusx/industry-core-hub/HEAD/ichub-frontend/src/types/axiosError.tsx -------------------------------------------------------------------------------- /ichub-frontend/src/types/index.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eclipse-tractusx/industry-core-hub/HEAD/ichub-frontend/src/types/index.ts -------------------------------------------------------------------------------- /ichub-frontend/src/types/partnerDialogViewer.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eclipse-tractusx/industry-core-hub/HEAD/ichub-frontend/src/types/partnerDialogViewer.ts -------------------------------------------------------------------------------- /ichub-frontend/src/types/routing.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eclipse-tractusx/industry-core-hub/HEAD/ichub-frontend/src/types/routing.ts -------------------------------------------------------------------------------- /ichub-frontend/src/utils/downloadJson.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eclipse-tractusx/industry-core-hub/HEAD/ichub-frontend/src/utils/downloadJson.ts -------------------------------------------------------------------------------- /ichub-frontend/src/utils/fieldNavigation.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eclipse-tractusx/industry-core-hub/HEAD/ichub-frontend/src/utils/fieldNavigation.ts -------------------------------------------------------------------------------- /ichub-frontend/src/utils/schemaUtils.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eclipse-tractusx/industry-core-hub/HEAD/ichub-frontend/src/utils/schemaUtils.ts -------------------------------------------------------------------------------- /ichub-frontend/src/utils/semantics.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eclipse-tractusx/industry-core-hub/HEAD/ichub-frontend/src/utils/semantics.ts -------------------------------------------------------------------------------- /ichub-frontend/src/vite-env.d.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eclipse-tractusx/industry-core-hub/HEAD/ichub-frontend/src/vite-env.d.ts -------------------------------------------------------------------------------- /ichub-frontend/tsconfig.node.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eclipse-tractusx/industry-core-hub/HEAD/ichub-frontend/tsconfig.node.json -------------------------------------------------------------------------------- /ichub-frontend/vite.config.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eclipse-tractusx/industry-core-hub/HEAD/ichub-frontend/vite.config.ts -------------------------------------------------------------------------------- /pytest.ini: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eclipse-tractusx/industry-core-hub/HEAD/pytest.ini -------------------------------------------------------------------------------- /scripts/reset-keycloak-password.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eclipse-tractusx/industry-core-hub/HEAD/scripts/reset-keycloak-password.sh -------------------------------------------------------------------------------- /test.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eclipse-tractusx/industry-core-hub/HEAD/test.sh --------------------------------------------------------------------------------