├── .dockerignore ├── .editorconfig ├── .env.example ├── .gitignore ├── .vscode ├── launch.json └── settings.json ├── CLAUDE.md ├── Makefile ├── README.md ├── backend ├── .eslintignore ├── .eslintrc.js ├── .gitignore ├── Dockerfile ├── package-lock.json ├── package.json ├── src │ ├── BroadcastListener.ts │ ├── app.controller.ts │ ├── app.module.ts │ ├── configuration │ │ └── config.ts │ ├── custom-decorators │ │ └── StringBodyDecorator.ts │ ├── interceptors │ │ └── logging.interceptor.ts │ ├── main.ts │ ├── routes │ │ ├── capabilities │ │ │ ├── capability-mappings.ts │ │ │ ├── capability-query.ts │ │ │ ├── capability.controller.ts │ │ │ ├── capability.module.ts │ │ │ └── capability.service.ts │ │ ├── constraints │ │ │ ├── constraint-mappings.ts │ │ │ ├── constraint-queries.ts │ │ │ ├── constraint.controller.spec.ts │ │ │ ├── constraint.controller.ts │ │ │ ├── constraint.service.spec.ts │ │ │ ├── constraint.service.ts │ │ │ └── constraints.module.ts │ │ ├── graph-operations │ │ │ ├── graph-operation.controller.ts │ │ │ └── graph-operation.module.ts │ │ ├── graph-repositories │ │ │ ├── graph-repository.controller.ts │ │ │ └── graph-repository.module.ts │ │ ├── mappings │ │ │ ├── llm-generation │ │ │ │ ├── llm-generation.controller.spec.ts │ │ │ │ ├── llm-generation.controller.ts │ │ │ │ ├── llm-generation.module.ts │ │ │ │ ├── llm-generation.service.spec.ts │ │ │ │ └── llm-generation.service.ts │ │ │ ├── mtp-mapping │ │ │ │ ├── mtp-mapping.controller.ts │ │ │ │ ├── mtp-mapping.module.ts │ │ │ │ └── mtp-mapping.service.ts │ │ │ └── plc-mapping │ │ │ │ ├── plc-mapping.controller.spec.ts │ │ │ │ ├── plc-mapping.controller.ts │ │ │ │ ├── plc-mapping.module.ts │ │ │ │ ├── plc-mapping.service.spec.ts │ │ │ │ └── plc-mapping.service.ts │ │ ├── process-planning │ │ │ ├── process-planning.controller.ts │ │ │ ├── process-planning.module.ts │ │ │ └── process-planning.service.ts │ │ ├── production-modules │ │ │ ├── module-mappings.ts │ │ │ ├── module.controller.ts │ │ │ ├── module.module.ts │ │ │ └── module.service.ts │ │ ├── properties │ │ │ ├── property-mappings.ts │ │ │ ├── property.controller.ts │ │ │ ├── property.module.ts │ │ │ └── property.service.ts │ │ ├── skill-execution │ │ │ ├── executors │ │ │ │ ├── NullSkillExecutor.ts │ │ │ │ ├── RestSkillExecutor.ts │ │ │ │ ├── RestSkillQueries.ts │ │ │ │ ├── SkillExecutor.ts │ │ │ │ ├── opc-ua-executors │ │ │ │ │ ├── OpcUaMethodSkillExecutor.ts │ │ │ │ │ ├── OpcUaSkillExecutor.ts │ │ │ │ │ └── OpcUaVariableSkillExecutor.ts │ │ │ │ └── skill-execution-mappings.ts │ │ │ ├── skill-execution.controller.ts │ │ │ ├── skill-execution.module.ts │ │ │ └── skill-executor-factory.service.ts │ │ ├── skill-states │ │ │ ├── skill-state.controller.ts │ │ │ ├── skill-state.service.ts │ │ │ └── skilll-state.modules.ts │ │ └── skills │ │ │ ├── query-fragments.ts │ │ │ ├── skill-mappings.ts │ │ │ ├── skill.controller.ts │ │ │ ├── skill.module.ts │ │ │ └── skill.service.ts │ ├── socket-gateway │ │ ├── Websocket.ts │ │ ├── capability-socket.ts │ │ ├── module-socket.ts │ │ ├── skill-socket.ts │ │ └── socket.module.ts │ └── util │ │ ├── GraphDbConnection.module.ts │ │ ├── GraphDbConnection.service.ts │ │ ├── LocalHttpRequestConfigService.ts │ │ ├── OpcUaSessionManager.ts │ │ ├── opc-ua-state-monitor.service.ts │ │ ├── opcua-statetracker-manager.service.ts │ │ └── opcua.module.ts ├── tsconfig.build.json └── tsconfig.json ├── docker-compose.dev.yml ├── docker-compose.yml ├── frontend ├── .eslintignore ├── .eslintrc.js ├── .gitignore ├── Dockerfile ├── angular.json ├── environments │ ├── environment.prod.ts │ └── environment.ts ├── index.html ├── karma.conf.js ├── main.ts ├── nginx.conf ├── package-lock.json ├── package.json ├── polyfills.ts ├── protractor.conf.js ├── proxy.conf.json ├── src │ ├── app-routing.module.ts │ ├── app.component.html │ ├── app.component.scss │ ├── app.component.spec.ts │ ├── app.component.ts │ ├── app.module.spec.ts │ ├── app.module.ts │ ├── assets │ │ ├── .gitkeep │ │ ├── favicon │ │ │ ├── android-chrome-192x192.png │ │ │ ├── android-chrome-512x512.png │ │ │ ├── apple-touch-icon.png │ │ │ ├── favicon-16x16.png │ │ │ ├── favicon-32x32.png │ │ │ ├── favicon.ico │ │ │ └── site.webmanifest │ │ └── images │ │ │ ├── SkillMEx-Logo.png │ │ │ ├── at-logo.png │ │ │ ├── caskade-logo.png │ │ │ ├── caskade-logo_transparent.png │ │ │ ├── logo.png │ │ │ ├── slider1.jpg │ │ │ ├── slider2.jpg │ │ │ └── slider3.jpg │ ├── layout │ │ ├── charts │ │ │ ├── bar-chart │ │ │ │ ├── bar-chart.component.html │ │ │ │ └── bar-chart.component.ts │ │ │ ├── charts-routing.module.ts │ │ │ ├── charts.component.html │ │ │ ├── charts.component.scss │ │ │ ├── charts.component.spec.ts │ │ │ ├── charts.component.ts │ │ │ ├── charts.module.spec.ts │ │ │ ├── charts.module.ts │ │ │ ├── doughnut-chart │ │ │ │ ├── doughnut-chart.component.html │ │ │ │ └── doughnut-chart.component.ts │ │ │ ├── line-chart │ │ │ │ ├── line-chart.component.html │ │ │ │ └── line-chart.component.ts │ │ │ ├── pie-chart │ │ │ │ ├── pie-chart.component.html │ │ │ │ └── pie-chart.component.ts │ │ │ ├── polararea-chart │ │ │ │ ├── polararea-chart.component.html │ │ │ │ └── polararea-chart.component.ts │ │ │ └── radar-chart │ │ │ │ ├── radar-chart.component.html │ │ │ │ └── radar-chart.component.ts │ │ ├── components │ │ │ ├── header │ │ │ │ ├── header.component.html │ │ │ │ ├── header.component.scss │ │ │ │ ├── header.component.spec.ts │ │ │ │ └── header.component.ts │ │ │ ├── message-container │ │ │ │ ├── message-container..component.spec.ts │ │ │ │ ├── message-container.component.html │ │ │ │ ├── message-container.component.scss │ │ │ │ └── message-container.component.ts │ │ │ ├── message │ │ │ │ ├── message.component.html │ │ │ │ ├── message.component.scss │ │ │ │ ├── message.component.spec.ts │ │ │ │ └── message.component.ts │ │ │ └── sidebar │ │ │ │ ├── sidebar.component.html │ │ │ │ ├── sidebar.component.scss │ │ │ │ ├── sidebar.component.spec.ts │ │ │ │ └── sidebar.component.ts │ │ ├── layout-routing.module.ts │ │ ├── layout.component.html │ │ ├── layout.component.scss │ │ ├── layout.component.spec.ts │ │ ├── layout.component.ts │ │ ├── layout.module.spec.ts │ │ └── layout.module.ts │ ├── modules │ │ ├── access-denied │ │ │ ├── access-denied-routing.module.ts │ │ │ ├── access-denied.component.html │ │ │ ├── access-denied.component.scss │ │ │ ├── access-denied.component.spec.ts │ │ │ ├── access-denied.component.ts │ │ │ ├── access-denied.module.spec.ts │ │ │ └── access-denied.module.ts │ │ ├── capabilities │ │ │ ├── capability-graph-visu │ │ │ │ ├── capability-graph-visu.component.html │ │ │ │ ├── capability-graph-visu.component.scss │ │ │ │ └── capability-graph-visu.component.ts │ │ │ ├── capability-overview │ │ │ │ ├── capability-overview.component.html │ │ │ │ ├── capability-overview.component.scss │ │ │ │ └── capability-overview.component.ts │ │ │ ├── capability-registration │ │ │ │ ├── capability-registration.component.html │ │ │ │ ├── capability-registration.component.scss │ │ │ │ └── capability-registration.component.ts │ │ │ ├── capability.component.html │ │ │ ├── capability.component.ts │ │ │ ├── capability.module.ts │ │ │ └── capability.routing.ts │ │ ├── capability-editor │ │ │ ├── capability-editor.component.html │ │ │ ├── capability-editor.component.scss │ │ │ ├── capability-editor.component.spec.ts │ │ │ ├── capability-editor.component.ts │ │ │ ├── capability-editor.module.ts │ │ │ ├── capability-editor.routing.ts │ │ │ └── fpbStateIcons │ │ │ │ ├── fpb-state-icon.component.html │ │ │ │ └── fpb-state-icon.component.ts │ │ ├── dashboard │ │ │ ├── components │ │ │ │ ├── notification │ │ │ │ │ ├── notification.component.html │ │ │ │ │ ├── notification.component.scss │ │ │ │ │ ├── notification.component.spec.ts │ │ │ │ │ └── notification.component.ts │ │ │ │ └── settings-overview │ │ │ │ │ ├── settings-overview.component.html │ │ │ │ │ ├── settings-overview.component.scss │ │ │ │ │ ├── settings-overview.component.spec.ts │ │ │ │ │ └── settings-overview.component.ts │ │ │ ├── dashboard-routing.module.ts │ │ │ ├── dashboard.component.html │ │ │ ├── dashboard.component.scss │ │ │ ├── dashboard.component.spec.ts │ │ │ ├── dashboard.component.ts │ │ │ ├── dashboard.module.spec.ts │ │ │ └── dashboard.module.ts │ │ ├── graph-visualization │ │ │ ├── D3GraphData.ts │ │ │ ├── graph-visualization.component.html │ │ │ ├── graph-visualization.component.scss │ │ │ ├── graph-visualization.component.ts │ │ │ ├── graph-visualization.module.ts │ │ │ ├── graph-visualization.routing.ts │ │ │ ├── node-creator.service.spec.ts │ │ │ └── node-creator.service.ts │ │ ├── login │ │ │ ├── login-routing.module.ts │ │ │ ├── login.component.html │ │ │ ├── login.component.scss │ │ │ ├── login.component.spec.ts │ │ │ ├── login.component.ts │ │ │ ├── login.module.spec.ts │ │ │ └── login.module.ts │ │ ├── not-found │ │ │ ├── not-found-routing.module.ts │ │ │ ├── not-found.component.html │ │ │ ├── not-found.component.scss │ │ │ ├── not-found.component.spec.ts │ │ │ ├── not-found.component.ts │ │ │ ├── not-found.module.spec.ts │ │ │ └── not-found.module.ts │ │ ├── process-planning │ │ │ ├── bpmn-result │ │ │ │ ├── bpmn-result.component.html │ │ │ │ └── bpmn-result.component.ts │ │ │ ├── check-plan │ │ │ │ ├── check-plan.component.html │ │ │ │ └── check-plan.component.ts │ │ │ ├── new-plan │ │ │ │ ├── loader │ │ │ │ │ ├── loader.component.html │ │ │ │ │ └── loader.component.ts │ │ │ │ ├── new-plan.component.html │ │ │ │ └── new-plan.component.ts │ │ │ ├── process-planning.component.html │ │ │ ├── process-planning.component.ts │ │ │ ├── process-planning.module.ts │ │ │ └── process-planning.routing.ts │ │ ├── production-modules │ │ │ ├── module-graph-visu │ │ │ │ ├── module-graph-visu.component.html │ │ │ │ ├── module-graph-visu.component.scss │ │ │ │ └── module-graph-visu.component.ts │ │ │ ├── module-overview │ │ │ │ ├── module-overview.component.html │ │ │ │ └── module-overview.component.ts │ │ │ ├── module-registration │ │ │ │ ├── module-registration.component.html │ │ │ │ ├── module-registration.component.scss │ │ │ │ └── module-registration.component.ts │ │ │ ├── production-module.component.html │ │ │ ├── production-module.component.ts │ │ │ ├── production-module.module.ts │ │ │ └── production-module.routing.ts │ │ ├── production-processes │ │ │ ├── process-control │ │ │ │ ├── process-control.component.html │ │ │ │ ├── process-control.component.ts │ │ │ │ ├── process-control.module.ts │ │ │ │ ├── process-control.routing.ts │ │ │ │ ├── process-definitions │ │ │ │ │ ├── process-definitions.component.html │ │ │ │ │ ├── process-definitions.component.scss │ │ │ │ │ ├── process-definitions.component.spec.ts │ │ │ │ │ └── process-definitions.component.ts │ │ │ │ └── process-instances │ │ │ │ │ ├── process-instances.component.html │ │ │ │ │ ├── process-instances.component.scss │ │ │ │ │ ├── process-instances.component.spec.ts │ │ │ │ │ └── process-instances.component.ts │ │ │ ├── production-processes.component.html │ │ │ ├── production-processes.component.scss │ │ │ ├── production-processes.component.ts │ │ │ ├── production-processes.module.ts │ │ │ └── production-processes.routing.ts │ │ ├── server-error │ │ │ ├── server-error-routing.module.ts │ │ │ ├── server-error.component.html │ │ │ ├── server-error.component.scss │ │ │ ├── server-error.component.spec.ts │ │ │ ├── server-error.component.ts │ │ │ ├── server-error.module.spec.ts │ │ │ └── server-error.module.ts │ │ ├── signup │ │ │ ├── signup-routing.module.ts │ │ │ ├── signup.component.html │ │ │ ├── signup.component.scss │ │ │ ├── signup.component.spec.ts │ │ │ ├── signup.component.ts │ │ │ ├── signup.module.spec.ts │ │ │ └── signup.module.ts │ │ ├── skillmex-configuration │ │ │ ├── skillmex-configuration.component.html │ │ │ ├── skillmex-configuration.component.ts │ │ │ ├── skillmex-configuration.module.ts │ │ │ ├── skillmex-configuration.routing.ts │ │ │ └── subcomponents │ │ │ │ ├── graphdb-settings.component.html │ │ │ │ ├── graphdb-settings.component.ts │ │ │ │ ├── mtp-mapping-settings.component.html │ │ │ │ └── mtp-mapping-settings.component.ts │ │ └── skills │ │ │ ├── skill-container.component.html │ │ │ ├── skill-container.component.scss │ │ │ ├── skill-container.component.ts │ │ │ ├── skill-container.module.ts │ │ │ ├── skill-container.routing.ts │ │ │ ├── skill-graph-visu │ │ │ ├── skill-graph-visu.component.html │ │ │ ├── skill-graph-visu.component.scss │ │ │ └── skill-graph-visu.component.ts │ │ │ ├── skill-overview │ │ │ ├── skill-overview.component.html │ │ │ ├── skill-overview.component.scss │ │ │ └── skill-overview.component.ts │ │ │ └── skill-registration │ │ │ ├── skill-registration.component.html │ │ │ ├── skill-registration.component.scss │ │ │ └── skill-registration.component.ts │ ├── router.animations.ts │ ├── shared │ │ ├── directives │ │ │ ├── Directives.module.ts │ │ │ └── FileValueAccessor.directive.ts │ │ ├── guard │ │ │ ├── auth.guard.spec.ts │ │ │ ├── auth.guard.ts │ │ │ └── index.ts │ │ ├── index.ts │ │ ├── models │ │ │ ├── BpmnTaskCapability.ts │ │ │ ├── Capability.ts │ │ │ ├── Constraint.ts │ │ │ ├── FpbElement.ts │ │ │ ├── ProductionModule.ts │ │ │ ├── Property.ts │ │ │ ├── Skill.ts │ │ │ └── module.ts │ │ ├── modules │ │ │ ├── bpmn-modeler │ │ │ │ ├── BpmnDataModel.ts │ │ │ │ ├── bpmn-modeler.component.html │ │ │ │ ├── bpmn-modeler.component.scss │ │ │ │ ├── bpmn-modeler.component.ts │ │ │ │ ├── bpmn-modeler.module.ts │ │ │ │ ├── emptyDiagram.ts │ │ │ │ └── properties-panel │ │ │ │ │ ├── bpmn-extension-element.service.ts │ │ │ │ │ ├── bpmn-mail.service.ts │ │ │ │ │ ├── bpmn-model.service.ts │ │ │ │ │ ├── properties-panel.component.html │ │ │ │ │ ├── properties-panel.component.scss │ │ │ │ │ ├── properties-panel.component.ts │ │ │ │ │ └── properties-subcomponents │ │ │ │ │ ├── base-task-form │ │ │ │ │ ├── base-task-form.component.html │ │ │ │ │ ├── base-task-form.component.scss │ │ │ │ │ ├── base-task-form.component.spec.ts │ │ │ │ │ └── base-task-form.component.ts │ │ │ │ │ ├── flow-form │ │ │ │ │ ├── flow-form.component.html │ │ │ │ │ ├── flow-form.component.scss │ │ │ │ │ ├── flow-form.component.spec.ts │ │ │ │ │ └── flow-form.component.ts │ │ │ │ │ ├── send-task-form │ │ │ │ │ ├── mail-form │ │ │ │ │ │ ├── mail-form.component.html │ │ │ │ │ │ ├── mail-form.component.scss │ │ │ │ │ │ ├── mail-form.component.spec.ts │ │ │ │ │ │ └── mail-form.component.ts │ │ │ │ │ ├── send-task-form.component.html │ │ │ │ │ ├── send-task-form.component.scss │ │ │ │ │ ├── send-task-form.component.spec.ts │ │ │ │ │ └── send-task-form.component.ts │ │ │ │ │ ├── service-task-form │ │ │ │ │ ├── service-subcomponents │ │ │ │ │ │ ├── capability-task-form │ │ │ │ │ │ │ ├── capability-task-form.component.html │ │ │ │ │ │ │ ├── capability-task-form.component.scss │ │ │ │ │ │ │ ├── capability-task-form.component.spec.ts │ │ │ │ │ │ │ └── capability-task-form.component.ts │ │ │ │ │ │ └── skill-task-form │ │ │ │ │ │ │ ├── skill-task-form.component.html │ │ │ │ │ │ │ ├── skill-task-form.component.scss │ │ │ │ │ │ │ ├── skill-task-form.component.spec.ts │ │ │ │ │ │ │ └── skill-task-form.component.ts │ │ │ │ │ ├── service-task-form.component.html │ │ │ │ │ ├── service-task-form.component.scss │ │ │ │ │ ├── service-task-form.component.spec.ts │ │ │ │ │ └── service-task-form.component.ts │ │ │ │ │ └── user-task-form │ │ │ │ │ ├── user-task-form.component.html │ │ │ │ │ ├── user-task-form.component.scss │ │ │ │ │ ├── user-task-form.component.spec.ts │ │ │ │ │ └── user-task-form.component.ts │ │ │ ├── bpmn-viewer │ │ │ │ ├── bpmn-viewer.component.html │ │ │ │ ├── bpmn-viewer.component.scss │ │ │ │ ├── bpmn-viewer.component.ts │ │ │ │ └── bpmn-viewer.module.ts │ │ │ ├── capability-card │ │ │ │ ├── capability-card.component.html │ │ │ │ ├── capability-card.component.scss │ │ │ │ ├── capability-card.component.ts │ │ │ │ └── capability-card.module.ts │ │ │ ├── index.ts │ │ │ ├── ontology-registration │ │ │ │ ├── llm-generation │ │ │ │ │ ├── llm-generation.component.html │ │ │ │ │ ├── llm-generation.component.scss │ │ │ │ │ ├── llm-generation.component.ts │ │ │ │ │ └── llm-generation.spec.ts │ │ │ │ ├── manual-registration │ │ │ │ │ ├── manual-registration.component.html │ │ │ │ │ ├── manual-registration.component.scss │ │ │ │ │ ├── manual-registration.component.spec.ts │ │ │ │ │ └── manual-registration.component.ts │ │ │ │ ├── mtp-mapping │ │ │ │ │ ├── mtp-mapping.component.html │ │ │ │ │ ├── mtp-mapping.component.scss │ │ │ │ │ ├── mtp-mapping.component.spec.ts │ │ │ │ │ └── mtp-mapping.component.ts │ │ │ │ ├── ontology-registration.component.html │ │ │ │ ├── ontology-registration.component.scss │ │ │ │ ├── ontology-registration.component.ts │ │ │ │ ├── ontology-registration.module.ts │ │ │ │ └── plc-mapping │ │ │ │ │ ├── plc-mapping.component.html │ │ │ │ │ ├── plc-mapping.component.scss │ │ │ │ │ ├── plc-mapping.component.spec.ts │ │ │ │ │ └── plc-mapping.component.ts │ │ │ ├── page-header │ │ │ │ ├── page-header.component.html │ │ │ │ ├── page-header.component.scss │ │ │ │ ├── page-header.component.spec.ts │ │ │ │ ├── page-header.component.ts │ │ │ │ ├── page-header.module.spec.ts │ │ │ │ └── page-header.module.ts │ │ │ ├── skill-card │ │ │ │ ├── skill-card.component.html │ │ │ │ ├── skill-card.component.scss │ │ │ │ ├── skill-card.component.spec.ts │ │ │ │ ├── skill-card.component.ts │ │ │ │ └── skill-card.module.ts │ │ │ └── stat │ │ │ │ ├── stat.component.html │ │ │ │ ├── stat.component.scss │ │ │ │ ├── stat.component.spec.ts │ │ │ │ ├── stat.component.ts │ │ │ │ ├── stat.module.spec.ts │ │ │ │ └── stat.module.ts │ │ ├── pipes │ │ │ └── shared-pipes.module.ts │ │ └── services │ │ │ ├── ClipboardService.ts │ │ │ ├── bpmn │ │ │ ├── deployment.service.spec.ts │ │ │ ├── deployment.service.ts │ │ │ ├── process-definition.service.spec.ts │ │ │ ├── process-definition.service.ts │ │ │ ├── process-instance.service.spec.ts │ │ │ └── process-instance.service.ts │ │ │ ├── capability.service.ts │ │ │ ├── graphDbRepoService.service.ts │ │ │ ├── llm-generation.service.ts │ │ │ ├── message.service.spec.ts │ │ │ ├── message.service.ts │ │ │ ├── module.service.ts │ │ │ ├── mtp-mapping.service.ts │ │ │ ├── plc-mapping.service.ts │ │ │ ├── process-planning.service.ts │ │ │ ├── property.service.ts │ │ │ ├── query.service.ts │ │ │ ├── service-locator.service.spec.ts │ │ │ ├── service-locator.service.ts │ │ │ ├── skill-execution.service.ts │ │ │ ├── skill.service.ts │ │ │ └── sockets │ │ │ ├── SocketConnection.ts │ │ │ ├── capability-socket.service.ts │ │ │ ├── module-socket.service.ts │ │ │ └── skill-socket.service.ts │ └── styles │ │ ├── _responsive.scss │ │ ├── _rtl.scss │ │ ├── _spinner.scss │ │ ├── _utils.scss │ │ └── app.scss ├── test.ts ├── tsconfig.app.json ├── tsconfig.json └── tsconfig.spec.json ├── shared ├── .eslintignore ├── .eslintrc.js ├── .gitignore ├── package-lock.json ├── package.json ├── src │ └── models │ │ ├── RdfElement.ts │ │ ├── capability │ │ ├── Capability.ts │ │ └── CapabilityType.ts │ │ ├── constraints │ │ └── ConstraintDto.ts │ │ ├── fpb │ │ └── FpbElementDTO.ts │ │ ├── graph-visualization │ │ └── NeighborData.ts │ │ ├── mappings │ │ ├── LlmCapabilityGenerationDto.ts │ │ ├── MappingServiceConfig.ts │ │ └── PlcMappingRequest.ts │ │ ├── process-planning │ │ ├── PlanningDataDto.ts │ │ └── PlanningResult.ts │ │ ├── processDefinition │ │ └── ProcessDefinition.ts │ │ ├── processInstance │ │ └── ProcessInstance.ts │ │ ├── production-module │ │ └── ProductionModule.ts │ │ ├── properties │ │ └── PropertyDTO.ts │ │ ├── skill │ │ ├── Skill.ts │ │ ├── SkillExecutionRequest.ts │ │ └── SkillVariable.ts │ │ ├── socket-communication │ │ └── SocketData.ts │ │ └── state-machine │ │ ├── Command.ts │ │ ├── ISA88 │ │ ├── ISA88CommandTypeIri.ts │ │ ├── ISA88StateMachine.ts │ │ ├── ISA88StateMachineBuilder.ts │ │ └── ISA88StateTypeIri.ts │ │ ├── State.ts │ │ ├── StateMachine.ts │ │ └── Transition.ts └── tsconfig.json └── tsconfig.base.json /.dockerignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CaSkade-Automation/CaSkade-MES/HEAD/.dockerignore -------------------------------------------------------------------------------- /.editorconfig: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CaSkade-Automation/CaSkade-MES/HEAD/.editorconfig -------------------------------------------------------------------------------- /.env.example: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CaSkade-Automation/CaSkade-MES/HEAD/.env.example -------------------------------------------------------------------------------- /.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CaSkade-Automation/CaSkade-MES/HEAD/.gitignore -------------------------------------------------------------------------------- /.vscode/launch.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CaSkade-Automation/CaSkade-MES/HEAD/.vscode/launch.json -------------------------------------------------------------------------------- /.vscode/settings.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CaSkade-Automation/CaSkade-MES/HEAD/.vscode/settings.json -------------------------------------------------------------------------------- /CLAUDE.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CaSkade-Automation/CaSkade-MES/HEAD/CLAUDE.md -------------------------------------------------------------------------------- /Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CaSkade-Automation/CaSkade-MES/HEAD/Makefile -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CaSkade-Automation/CaSkade-MES/HEAD/README.md -------------------------------------------------------------------------------- /backend/.eslintignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CaSkade-Automation/CaSkade-MES/HEAD/backend/.eslintignore -------------------------------------------------------------------------------- /backend/.eslintrc.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CaSkade-Automation/CaSkade-MES/HEAD/backend/.eslintrc.js -------------------------------------------------------------------------------- /backend/.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CaSkade-Automation/CaSkade-MES/HEAD/backend/.gitignore -------------------------------------------------------------------------------- /backend/Dockerfile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CaSkade-Automation/CaSkade-MES/HEAD/backend/Dockerfile -------------------------------------------------------------------------------- /backend/package-lock.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CaSkade-Automation/CaSkade-MES/HEAD/backend/package-lock.json -------------------------------------------------------------------------------- /backend/package.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CaSkade-Automation/CaSkade-MES/HEAD/backend/package.json -------------------------------------------------------------------------------- /backend/src/BroadcastListener.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CaSkade-Automation/CaSkade-MES/HEAD/backend/src/BroadcastListener.ts -------------------------------------------------------------------------------- /backend/src/app.controller.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CaSkade-Automation/CaSkade-MES/HEAD/backend/src/app.controller.ts -------------------------------------------------------------------------------- /backend/src/app.module.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CaSkade-Automation/CaSkade-MES/HEAD/backend/src/app.module.ts -------------------------------------------------------------------------------- /backend/src/configuration/config.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CaSkade-Automation/CaSkade-MES/HEAD/backend/src/configuration/config.ts -------------------------------------------------------------------------------- /backend/src/custom-decorators/StringBodyDecorator.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CaSkade-Automation/CaSkade-MES/HEAD/backend/src/custom-decorators/StringBodyDecorator.ts -------------------------------------------------------------------------------- /backend/src/interceptors/logging.interceptor.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CaSkade-Automation/CaSkade-MES/HEAD/backend/src/interceptors/logging.interceptor.ts -------------------------------------------------------------------------------- /backend/src/main.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CaSkade-Automation/CaSkade-MES/HEAD/backend/src/main.ts -------------------------------------------------------------------------------- /backend/src/routes/capabilities/capability-mappings.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CaSkade-Automation/CaSkade-MES/HEAD/backend/src/routes/capabilities/capability-mappings.ts -------------------------------------------------------------------------------- /backend/src/routes/capabilities/capability-query.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CaSkade-Automation/CaSkade-MES/HEAD/backend/src/routes/capabilities/capability-query.ts -------------------------------------------------------------------------------- /backend/src/routes/capabilities/capability.controller.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CaSkade-Automation/CaSkade-MES/HEAD/backend/src/routes/capabilities/capability.controller.ts -------------------------------------------------------------------------------- /backend/src/routes/capabilities/capability.module.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CaSkade-Automation/CaSkade-MES/HEAD/backend/src/routes/capabilities/capability.module.ts -------------------------------------------------------------------------------- /backend/src/routes/capabilities/capability.service.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CaSkade-Automation/CaSkade-MES/HEAD/backend/src/routes/capabilities/capability.service.ts -------------------------------------------------------------------------------- /backend/src/routes/constraints/constraint-mappings.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CaSkade-Automation/CaSkade-MES/HEAD/backend/src/routes/constraints/constraint-mappings.ts -------------------------------------------------------------------------------- /backend/src/routes/constraints/constraint-queries.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CaSkade-Automation/CaSkade-MES/HEAD/backend/src/routes/constraints/constraint-queries.ts -------------------------------------------------------------------------------- /backend/src/routes/constraints/constraint.controller.spec.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CaSkade-Automation/CaSkade-MES/HEAD/backend/src/routes/constraints/constraint.controller.spec.ts -------------------------------------------------------------------------------- /backend/src/routes/constraints/constraint.controller.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CaSkade-Automation/CaSkade-MES/HEAD/backend/src/routes/constraints/constraint.controller.ts -------------------------------------------------------------------------------- /backend/src/routes/constraints/constraint.service.spec.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CaSkade-Automation/CaSkade-MES/HEAD/backend/src/routes/constraints/constraint.service.spec.ts -------------------------------------------------------------------------------- /backend/src/routes/constraints/constraint.service.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CaSkade-Automation/CaSkade-MES/HEAD/backend/src/routes/constraints/constraint.service.ts -------------------------------------------------------------------------------- /backend/src/routes/constraints/constraints.module.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CaSkade-Automation/CaSkade-MES/HEAD/backend/src/routes/constraints/constraints.module.ts -------------------------------------------------------------------------------- /backend/src/routes/graph-operations/graph-operation.controller.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CaSkade-Automation/CaSkade-MES/HEAD/backend/src/routes/graph-operations/graph-operation.controller.ts -------------------------------------------------------------------------------- /backend/src/routes/graph-operations/graph-operation.module.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CaSkade-Automation/CaSkade-MES/HEAD/backend/src/routes/graph-operations/graph-operation.module.ts -------------------------------------------------------------------------------- /backend/src/routes/graph-repositories/graph-repository.controller.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CaSkade-Automation/CaSkade-MES/HEAD/backend/src/routes/graph-repositories/graph-repository.controller.ts -------------------------------------------------------------------------------- /backend/src/routes/graph-repositories/graph-repository.module.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CaSkade-Automation/CaSkade-MES/HEAD/backend/src/routes/graph-repositories/graph-repository.module.ts -------------------------------------------------------------------------------- /backend/src/routes/mappings/llm-generation/llm-generation.controller.spec.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CaSkade-Automation/CaSkade-MES/HEAD/backend/src/routes/mappings/llm-generation/llm-generation.controller.spec.ts -------------------------------------------------------------------------------- /backend/src/routes/mappings/llm-generation/llm-generation.controller.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CaSkade-Automation/CaSkade-MES/HEAD/backend/src/routes/mappings/llm-generation/llm-generation.controller.ts -------------------------------------------------------------------------------- /backend/src/routes/mappings/llm-generation/llm-generation.module.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CaSkade-Automation/CaSkade-MES/HEAD/backend/src/routes/mappings/llm-generation/llm-generation.module.ts -------------------------------------------------------------------------------- /backend/src/routes/mappings/llm-generation/llm-generation.service.spec.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CaSkade-Automation/CaSkade-MES/HEAD/backend/src/routes/mappings/llm-generation/llm-generation.service.spec.ts -------------------------------------------------------------------------------- /backend/src/routes/mappings/llm-generation/llm-generation.service.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CaSkade-Automation/CaSkade-MES/HEAD/backend/src/routes/mappings/llm-generation/llm-generation.service.ts -------------------------------------------------------------------------------- /backend/src/routes/mappings/mtp-mapping/mtp-mapping.controller.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CaSkade-Automation/CaSkade-MES/HEAD/backend/src/routes/mappings/mtp-mapping/mtp-mapping.controller.ts -------------------------------------------------------------------------------- /backend/src/routes/mappings/mtp-mapping/mtp-mapping.module.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CaSkade-Automation/CaSkade-MES/HEAD/backend/src/routes/mappings/mtp-mapping/mtp-mapping.module.ts -------------------------------------------------------------------------------- /backend/src/routes/mappings/mtp-mapping/mtp-mapping.service.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CaSkade-Automation/CaSkade-MES/HEAD/backend/src/routes/mappings/mtp-mapping/mtp-mapping.service.ts -------------------------------------------------------------------------------- /backend/src/routes/mappings/plc-mapping/plc-mapping.controller.spec.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CaSkade-Automation/CaSkade-MES/HEAD/backend/src/routes/mappings/plc-mapping/plc-mapping.controller.spec.ts -------------------------------------------------------------------------------- /backend/src/routes/mappings/plc-mapping/plc-mapping.controller.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CaSkade-Automation/CaSkade-MES/HEAD/backend/src/routes/mappings/plc-mapping/plc-mapping.controller.ts -------------------------------------------------------------------------------- /backend/src/routes/mappings/plc-mapping/plc-mapping.module.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CaSkade-Automation/CaSkade-MES/HEAD/backend/src/routes/mappings/plc-mapping/plc-mapping.module.ts -------------------------------------------------------------------------------- /backend/src/routes/mappings/plc-mapping/plc-mapping.service.spec.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CaSkade-Automation/CaSkade-MES/HEAD/backend/src/routes/mappings/plc-mapping/plc-mapping.service.spec.ts -------------------------------------------------------------------------------- /backend/src/routes/mappings/plc-mapping/plc-mapping.service.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CaSkade-Automation/CaSkade-MES/HEAD/backend/src/routes/mappings/plc-mapping/plc-mapping.service.ts -------------------------------------------------------------------------------- /backend/src/routes/process-planning/process-planning.controller.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CaSkade-Automation/CaSkade-MES/HEAD/backend/src/routes/process-planning/process-planning.controller.ts -------------------------------------------------------------------------------- /backend/src/routes/process-planning/process-planning.module.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CaSkade-Automation/CaSkade-MES/HEAD/backend/src/routes/process-planning/process-planning.module.ts -------------------------------------------------------------------------------- /backend/src/routes/process-planning/process-planning.service.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CaSkade-Automation/CaSkade-MES/HEAD/backend/src/routes/process-planning/process-planning.service.ts -------------------------------------------------------------------------------- /backend/src/routes/production-modules/module-mappings.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CaSkade-Automation/CaSkade-MES/HEAD/backend/src/routes/production-modules/module-mappings.ts -------------------------------------------------------------------------------- /backend/src/routes/production-modules/module.controller.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CaSkade-Automation/CaSkade-MES/HEAD/backend/src/routes/production-modules/module.controller.ts -------------------------------------------------------------------------------- /backend/src/routes/production-modules/module.module.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CaSkade-Automation/CaSkade-MES/HEAD/backend/src/routes/production-modules/module.module.ts -------------------------------------------------------------------------------- /backend/src/routes/production-modules/module.service.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CaSkade-Automation/CaSkade-MES/HEAD/backend/src/routes/production-modules/module.service.ts -------------------------------------------------------------------------------- /backend/src/routes/properties/property-mappings.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CaSkade-Automation/CaSkade-MES/HEAD/backend/src/routes/properties/property-mappings.ts -------------------------------------------------------------------------------- /backend/src/routes/properties/property.controller.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CaSkade-Automation/CaSkade-MES/HEAD/backend/src/routes/properties/property.controller.ts -------------------------------------------------------------------------------- /backend/src/routes/properties/property.module.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CaSkade-Automation/CaSkade-MES/HEAD/backend/src/routes/properties/property.module.ts -------------------------------------------------------------------------------- /backend/src/routes/properties/property.service.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CaSkade-Automation/CaSkade-MES/HEAD/backend/src/routes/properties/property.service.ts -------------------------------------------------------------------------------- /backend/src/routes/skill-execution/executors/NullSkillExecutor.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CaSkade-Automation/CaSkade-MES/HEAD/backend/src/routes/skill-execution/executors/NullSkillExecutor.ts -------------------------------------------------------------------------------- /backend/src/routes/skill-execution/executors/RestSkillExecutor.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CaSkade-Automation/CaSkade-MES/HEAD/backend/src/routes/skill-execution/executors/RestSkillExecutor.ts -------------------------------------------------------------------------------- /backend/src/routes/skill-execution/executors/RestSkillQueries.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CaSkade-Automation/CaSkade-MES/HEAD/backend/src/routes/skill-execution/executors/RestSkillQueries.ts -------------------------------------------------------------------------------- /backend/src/routes/skill-execution/executors/SkillExecutor.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CaSkade-Automation/CaSkade-MES/HEAD/backend/src/routes/skill-execution/executors/SkillExecutor.ts -------------------------------------------------------------------------------- /backend/src/routes/skill-execution/executors/opc-ua-executors/OpcUaMethodSkillExecutor.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CaSkade-Automation/CaSkade-MES/HEAD/backend/src/routes/skill-execution/executors/opc-ua-executors/OpcUaMethodSkillExecutor.ts -------------------------------------------------------------------------------- /backend/src/routes/skill-execution/executors/opc-ua-executors/OpcUaSkillExecutor.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CaSkade-Automation/CaSkade-MES/HEAD/backend/src/routes/skill-execution/executors/opc-ua-executors/OpcUaSkillExecutor.ts -------------------------------------------------------------------------------- /backend/src/routes/skill-execution/executors/opc-ua-executors/OpcUaVariableSkillExecutor.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CaSkade-Automation/CaSkade-MES/HEAD/backend/src/routes/skill-execution/executors/opc-ua-executors/OpcUaVariableSkillExecutor.ts -------------------------------------------------------------------------------- /backend/src/routes/skill-execution/executors/skill-execution-mappings.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CaSkade-Automation/CaSkade-MES/HEAD/backend/src/routes/skill-execution/executors/skill-execution-mappings.ts -------------------------------------------------------------------------------- /backend/src/routes/skill-execution/skill-execution.controller.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CaSkade-Automation/CaSkade-MES/HEAD/backend/src/routes/skill-execution/skill-execution.controller.ts -------------------------------------------------------------------------------- /backend/src/routes/skill-execution/skill-execution.module.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CaSkade-Automation/CaSkade-MES/HEAD/backend/src/routes/skill-execution/skill-execution.module.ts -------------------------------------------------------------------------------- /backend/src/routes/skill-execution/skill-executor-factory.service.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CaSkade-Automation/CaSkade-MES/HEAD/backend/src/routes/skill-execution/skill-executor-factory.service.ts -------------------------------------------------------------------------------- /backend/src/routes/skill-states/skill-state.controller.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CaSkade-Automation/CaSkade-MES/HEAD/backend/src/routes/skill-states/skill-state.controller.ts -------------------------------------------------------------------------------- /backend/src/routes/skill-states/skill-state.service.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CaSkade-Automation/CaSkade-MES/HEAD/backend/src/routes/skill-states/skill-state.service.ts -------------------------------------------------------------------------------- /backend/src/routes/skill-states/skilll-state.modules.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CaSkade-Automation/CaSkade-MES/HEAD/backend/src/routes/skill-states/skilll-state.modules.ts -------------------------------------------------------------------------------- /backend/src/routes/skills/query-fragments.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CaSkade-Automation/CaSkade-MES/HEAD/backend/src/routes/skills/query-fragments.ts -------------------------------------------------------------------------------- /backend/src/routes/skills/skill-mappings.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CaSkade-Automation/CaSkade-MES/HEAD/backend/src/routes/skills/skill-mappings.ts -------------------------------------------------------------------------------- /backend/src/routes/skills/skill.controller.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CaSkade-Automation/CaSkade-MES/HEAD/backend/src/routes/skills/skill.controller.ts -------------------------------------------------------------------------------- /backend/src/routes/skills/skill.module.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CaSkade-Automation/CaSkade-MES/HEAD/backend/src/routes/skills/skill.module.ts -------------------------------------------------------------------------------- /backend/src/routes/skills/skill.service.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CaSkade-Automation/CaSkade-MES/HEAD/backend/src/routes/skills/skill.service.ts -------------------------------------------------------------------------------- /backend/src/socket-gateway/Websocket.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CaSkade-Automation/CaSkade-MES/HEAD/backend/src/socket-gateway/Websocket.ts -------------------------------------------------------------------------------- /backend/src/socket-gateway/capability-socket.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CaSkade-Automation/CaSkade-MES/HEAD/backend/src/socket-gateway/capability-socket.ts -------------------------------------------------------------------------------- /backend/src/socket-gateway/module-socket.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CaSkade-Automation/CaSkade-MES/HEAD/backend/src/socket-gateway/module-socket.ts -------------------------------------------------------------------------------- /backend/src/socket-gateway/skill-socket.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CaSkade-Automation/CaSkade-MES/HEAD/backend/src/socket-gateway/skill-socket.ts -------------------------------------------------------------------------------- /backend/src/socket-gateway/socket.module.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CaSkade-Automation/CaSkade-MES/HEAD/backend/src/socket-gateway/socket.module.ts -------------------------------------------------------------------------------- /backend/src/util/GraphDbConnection.module.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CaSkade-Automation/CaSkade-MES/HEAD/backend/src/util/GraphDbConnection.module.ts -------------------------------------------------------------------------------- /backend/src/util/GraphDbConnection.service.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CaSkade-Automation/CaSkade-MES/HEAD/backend/src/util/GraphDbConnection.service.ts -------------------------------------------------------------------------------- /backend/src/util/LocalHttpRequestConfigService.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CaSkade-Automation/CaSkade-MES/HEAD/backend/src/util/LocalHttpRequestConfigService.ts -------------------------------------------------------------------------------- /backend/src/util/OpcUaSessionManager.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CaSkade-Automation/CaSkade-MES/HEAD/backend/src/util/OpcUaSessionManager.ts -------------------------------------------------------------------------------- /backend/src/util/opc-ua-state-monitor.service.ts: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /backend/src/util/opcua-statetracker-manager.service.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CaSkade-Automation/CaSkade-MES/HEAD/backend/src/util/opcua-statetracker-manager.service.ts -------------------------------------------------------------------------------- /backend/src/util/opcua.module.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CaSkade-Automation/CaSkade-MES/HEAD/backend/src/util/opcua.module.ts -------------------------------------------------------------------------------- /backend/tsconfig.build.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CaSkade-Automation/CaSkade-MES/HEAD/backend/tsconfig.build.json -------------------------------------------------------------------------------- /backend/tsconfig.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CaSkade-Automation/CaSkade-MES/HEAD/backend/tsconfig.json -------------------------------------------------------------------------------- /docker-compose.dev.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CaSkade-Automation/CaSkade-MES/HEAD/docker-compose.dev.yml -------------------------------------------------------------------------------- /docker-compose.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CaSkade-Automation/CaSkade-MES/HEAD/docker-compose.yml -------------------------------------------------------------------------------- /frontend/.eslintignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CaSkade-Automation/CaSkade-MES/HEAD/frontend/.eslintignore -------------------------------------------------------------------------------- /frontend/.eslintrc.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CaSkade-Automation/CaSkade-MES/HEAD/frontend/.eslintrc.js -------------------------------------------------------------------------------- /frontend/.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CaSkade-Automation/CaSkade-MES/HEAD/frontend/.gitignore -------------------------------------------------------------------------------- /frontend/Dockerfile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CaSkade-Automation/CaSkade-MES/HEAD/frontend/Dockerfile -------------------------------------------------------------------------------- /frontend/angular.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CaSkade-Automation/CaSkade-MES/HEAD/frontend/angular.json -------------------------------------------------------------------------------- /frontend/environments/environment.prod.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CaSkade-Automation/CaSkade-MES/HEAD/frontend/environments/environment.prod.ts -------------------------------------------------------------------------------- /frontend/environments/environment.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CaSkade-Automation/CaSkade-MES/HEAD/frontend/environments/environment.ts -------------------------------------------------------------------------------- /frontend/index.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CaSkade-Automation/CaSkade-MES/HEAD/frontend/index.html -------------------------------------------------------------------------------- /frontend/karma.conf.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CaSkade-Automation/CaSkade-MES/HEAD/frontend/karma.conf.js -------------------------------------------------------------------------------- /frontend/main.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CaSkade-Automation/CaSkade-MES/HEAD/frontend/main.ts -------------------------------------------------------------------------------- /frontend/nginx.conf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CaSkade-Automation/CaSkade-MES/HEAD/frontend/nginx.conf -------------------------------------------------------------------------------- /frontend/package-lock.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CaSkade-Automation/CaSkade-MES/HEAD/frontend/package-lock.json -------------------------------------------------------------------------------- /frontend/package.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CaSkade-Automation/CaSkade-MES/HEAD/frontend/package.json -------------------------------------------------------------------------------- /frontend/polyfills.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CaSkade-Automation/CaSkade-MES/HEAD/frontend/polyfills.ts -------------------------------------------------------------------------------- /frontend/protractor.conf.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CaSkade-Automation/CaSkade-MES/HEAD/frontend/protractor.conf.js -------------------------------------------------------------------------------- /frontend/proxy.conf.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CaSkade-Automation/CaSkade-MES/HEAD/frontend/proxy.conf.json -------------------------------------------------------------------------------- /frontend/src/app-routing.module.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CaSkade-Automation/CaSkade-MES/HEAD/frontend/src/app-routing.module.ts -------------------------------------------------------------------------------- /frontend/src/app.component.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CaSkade-Automation/CaSkade-MES/HEAD/frontend/src/app.component.html -------------------------------------------------------------------------------- /frontend/src/app.component.scss: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /frontend/src/app.component.spec.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CaSkade-Automation/CaSkade-MES/HEAD/frontend/src/app.component.spec.ts -------------------------------------------------------------------------------- /frontend/src/app.component.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CaSkade-Automation/CaSkade-MES/HEAD/frontend/src/app.component.ts -------------------------------------------------------------------------------- /frontend/src/app.module.spec.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CaSkade-Automation/CaSkade-MES/HEAD/frontend/src/app.module.spec.ts -------------------------------------------------------------------------------- /frontend/src/app.module.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CaSkade-Automation/CaSkade-MES/HEAD/frontend/src/app.module.ts -------------------------------------------------------------------------------- /frontend/src/assets/.gitkeep: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /frontend/src/assets/favicon/android-chrome-192x192.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CaSkade-Automation/CaSkade-MES/HEAD/frontend/src/assets/favicon/android-chrome-192x192.png -------------------------------------------------------------------------------- /frontend/src/assets/favicon/android-chrome-512x512.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CaSkade-Automation/CaSkade-MES/HEAD/frontend/src/assets/favicon/android-chrome-512x512.png -------------------------------------------------------------------------------- /frontend/src/assets/favicon/apple-touch-icon.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CaSkade-Automation/CaSkade-MES/HEAD/frontend/src/assets/favicon/apple-touch-icon.png -------------------------------------------------------------------------------- /frontend/src/assets/favicon/favicon-16x16.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CaSkade-Automation/CaSkade-MES/HEAD/frontend/src/assets/favicon/favicon-16x16.png -------------------------------------------------------------------------------- /frontend/src/assets/favicon/favicon-32x32.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CaSkade-Automation/CaSkade-MES/HEAD/frontend/src/assets/favicon/favicon-32x32.png -------------------------------------------------------------------------------- /frontend/src/assets/favicon/favicon.ico: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CaSkade-Automation/CaSkade-MES/HEAD/frontend/src/assets/favicon/favicon.ico -------------------------------------------------------------------------------- /frontend/src/assets/favicon/site.webmanifest: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CaSkade-Automation/CaSkade-MES/HEAD/frontend/src/assets/favicon/site.webmanifest -------------------------------------------------------------------------------- /frontend/src/assets/images/SkillMEx-Logo.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CaSkade-Automation/CaSkade-MES/HEAD/frontend/src/assets/images/SkillMEx-Logo.png -------------------------------------------------------------------------------- /frontend/src/assets/images/at-logo.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CaSkade-Automation/CaSkade-MES/HEAD/frontend/src/assets/images/at-logo.png -------------------------------------------------------------------------------- /frontend/src/assets/images/caskade-logo.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CaSkade-Automation/CaSkade-MES/HEAD/frontend/src/assets/images/caskade-logo.png -------------------------------------------------------------------------------- /frontend/src/assets/images/caskade-logo_transparent.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CaSkade-Automation/CaSkade-MES/HEAD/frontend/src/assets/images/caskade-logo_transparent.png -------------------------------------------------------------------------------- /frontend/src/assets/images/logo.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CaSkade-Automation/CaSkade-MES/HEAD/frontend/src/assets/images/logo.png -------------------------------------------------------------------------------- /frontend/src/assets/images/slider1.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CaSkade-Automation/CaSkade-MES/HEAD/frontend/src/assets/images/slider1.jpg -------------------------------------------------------------------------------- /frontend/src/assets/images/slider2.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CaSkade-Automation/CaSkade-MES/HEAD/frontend/src/assets/images/slider2.jpg -------------------------------------------------------------------------------- /frontend/src/assets/images/slider3.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CaSkade-Automation/CaSkade-MES/HEAD/frontend/src/assets/images/slider3.jpg -------------------------------------------------------------------------------- /frontend/src/layout/charts/bar-chart/bar-chart.component.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CaSkade-Automation/CaSkade-MES/HEAD/frontend/src/layout/charts/bar-chart/bar-chart.component.html -------------------------------------------------------------------------------- /frontend/src/layout/charts/bar-chart/bar-chart.component.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CaSkade-Automation/CaSkade-MES/HEAD/frontend/src/layout/charts/bar-chart/bar-chart.component.ts -------------------------------------------------------------------------------- /frontend/src/layout/charts/charts-routing.module.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CaSkade-Automation/CaSkade-MES/HEAD/frontend/src/layout/charts/charts-routing.module.ts -------------------------------------------------------------------------------- /frontend/src/layout/charts/charts.component.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CaSkade-Automation/CaSkade-MES/HEAD/frontend/src/layout/charts/charts.component.html -------------------------------------------------------------------------------- /frontend/src/layout/charts/charts.component.scss: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /frontend/src/layout/charts/charts.component.spec.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CaSkade-Automation/CaSkade-MES/HEAD/frontend/src/layout/charts/charts.component.spec.ts -------------------------------------------------------------------------------- /frontend/src/layout/charts/charts.component.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CaSkade-Automation/CaSkade-MES/HEAD/frontend/src/layout/charts/charts.component.ts -------------------------------------------------------------------------------- /frontend/src/layout/charts/charts.module.spec.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CaSkade-Automation/CaSkade-MES/HEAD/frontend/src/layout/charts/charts.module.spec.ts -------------------------------------------------------------------------------- /frontend/src/layout/charts/charts.module.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CaSkade-Automation/CaSkade-MES/HEAD/frontend/src/layout/charts/charts.module.ts -------------------------------------------------------------------------------- /frontend/src/layout/charts/doughnut-chart/doughnut-chart.component.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CaSkade-Automation/CaSkade-MES/HEAD/frontend/src/layout/charts/doughnut-chart/doughnut-chart.component.html -------------------------------------------------------------------------------- /frontend/src/layout/charts/doughnut-chart/doughnut-chart.component.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CaSkade-Automation/CaSkade-MES/HEAD/frontend/src/layout/charts/doughnut-chart/doughnut-chart.component.ts -------------------------------------------------------------------------------- /frontend/src/layout/charts/line-chart/line-chart.component.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CaSkade-Automation/CaSkade-MES/HEAD/frontend/src/layout/charts/line-chart/line-chart.component.html -------------------------------------------------------------------------------- /frontend/src/layout/charts/line-chart/line-chart.component.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CaSkade-Automation/CaSkade-MES/HEAD/frontend/src/layout/charts/line-chart/line-chart.component.ts -------------------------------------------------------------------------------- /frontend/src/layout/charts/pie-chart/pie-chart.component.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CaSkade-Automation/CaSkade-MES/HEAD/frontend/src/layout/charts/pie-chart/pie-chart.component.html -------------------------------------------------------------------------------- /frontend/src/layout/charts/pie-chart/pie-chart.component.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CaSkade-Automation/CaSkade-MES/HEAD/frontend/src/layout/charts/pie-chart/pie-chart.component.ts -------------------------------------------------------------------------------- /frontend/src/layout/charts/polararea-chart/polararea-chart.component.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CaSkade-Automation/CaSkade-MES/HEAD/frontend/src/layout/charts/polararea-chart/polararea-chart.component.html -------------------------------------------------------------------------------- /frontend/src/layout/charts/polararea-chart/polararea-chart.component.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CaSkade-Automation/CaSkade-MES/HEAD/frontend/src/layout/charts/polararea-chart/polararea-chart.component.ts -------------------------------------------------------------------------------- /frontend/src/layout/charts/radar-chart/radar-chart.component.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CaSkade-Automation/CaSkade-MES/HEAD/frontend/src/layout/charts/radar-chart/radar-chart.component.html -------------------------------------------------------------------------------- /frontend/src/layout/charts/radar-chart/radar-chart.component.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CaSkade-Automation/CaSkade-MES/HEAD/frontend/src/layout/charts/radar-chart/radar-chart.component.ts -------------------------------------------------------------------------------- /frontend/src/layout/components/header/header.component.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CaSkade-Automation/CaSkade-MES/HEAD/frontend/src/layout/components/header/header.component.html -------------------------------------------------------------------------------- /frontend/src/layout/components/header/header.component.scss: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CaSkade-Automation/CaSkade-MES/HEAD/frontend/src/layout/components/header/header.component.scss -------------------------------------------------------------------------------- /frontend/src/layout/components/header/header.component.spec.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CaSkade-Automation/CaSkade-MES/HEAD/frontend/src/layout/components/header/header.component.spec.ts -------------------------------------------------------------------------------- /frontend/src/layout/components/header/header.component.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CaSkade-Automation/CaSkade-MES/HEAD/frontend/src/layout/components/header/header.component.ts -------------------------------------------------------------------------------- /frontend/src/layout/components/message-container/message-container..component.spec.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CaSkade-Automation/CaSkade-MES/HEAD/frontend/src/layout/components/message-container/message-container..component.spec.ts -------------------------------------------------------------------------------- /frontend/src/layout/components/message-container/message-container.component.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CaSkade-Automation/CaSkade-MES/HEAD/frontend/src/layout/components/message-container/message-container.component.html -------------------------------------------------------------------------------- /frontend/src/layout/components/message-container/message-container.component.scss: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CaSkade-Automation/CaSkade-MES/HEAD/frontend/src/layout/components/message-container/message-container.component.scss -------------------------------------------------------------------------------- /frontend/src/layout/components/message-container/message-container.component.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CaSkade-Automation/CaSkade-MES/HEAD/frontend/src/layout/components/message-container/message-container.component.ts -------------------------------------------------------------------------------- /frontend/src/layout/components/message/message.component.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CaSkade-Automation/CaSkade-MES/HEAD/frontend/src/layout/components/message/message.component.html -------------------------------------------------------------------------------- /frontend/src/layout/components/message/message.component.scss: -------------------------------------------------------------------------------- 1 | .message { 2 | width: 100%; 3 | } 4 | -------------------------------------------------------------------------------- /frontend/src/layout/components/message/message.component.spec.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CaSkade-Automation/CaSkade-MES/HEAD/frontend/src/layout/components/message/message.component.spec.ts -------------------------------------------------------------------------------- /frontend/src/layout/components/message/message.component.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CaSkade-Automation/CaSkade-MES/HEAD/frontend/src/layout/components/message/message.component.ts -------------------------------------------------------------------------------- /frontend/src/layout/components/sidebar/sidebar.component.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CaSkade-Automation/CaSkade-MES/HEAD/frontend/src/layout/components/sidebar/sidebar.component.html -------------------------------------------------------------------------------- /frontend/src/layout/components/sidebar/sidebar.component.scss: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CaSkade-Automation/CaSkade-MES/HEAD/frontend/src/layout/components/sidebar/sidebar.component.scss -------------------------------------------------------------------------------- /frontend/src/layout/components/sidebar/sidebar.component.spec.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CaSkade-Automation/CaSkade-MES/HEAD/frontend/src/layout/components/sidebar/sidebar.component.spec.ts -------------------------------------------------------------------------------- /frontend/src/layout/components/sidebar/sidebar.component.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CaSkade-Automation/CaSkade-MES/HEAD/frontend/src/layout/components/sidebar/sidebar.component.ts -------------------------------------------------------------------------------- /frontend/src/layout/layout-routing.module.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CaSkade-Automation/CaSkade-MES/HEAD/frontend/src/layout/layout-routing.module.ts -------------------------------------------------------------------------------- /frontend/src/layout/layout.component.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CaSkade-Automation/CaSkade-MES/HEAD/frontend/src/layout/layout.component.html -------------------------------------------------------------------------------- /frontend/src/layout/layout.component.scss: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CaSkade-Automation/CaSkade-MES/HEAD/frontend/src/layout/layout.component.scss -------------------------------------------------------------------------------- /frontend/src/layout/layout.component.spec.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CaSkade-Automation/CaSkade-MES/HEAD/frontend/src/layout/layout.component.spec.ts -------------------------------------------------------------------------------- /frontend/src/layout/layout.component.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CaSkade-Automation/CaSkade-MES/HEAD/frontend/src/layout/layout.component.ts -------------------------------------------------------------------------------- /frontend/src/layout/layout.module.spec.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CaSkade-Automation/CaSkade-MES/HEAD/frontend/src/layout/layout.module.spec.ts -------------------------------------------------------------------------------- /frontend/src/layout/layout.module.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CaSkade-Automation/CaSkade-MES/HEAD/frontend/src/layout/layout.module.ts -------------------------------------------------------------------------------- /frontend/src/modules/access-denied/access-denied-routing.module.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CaSkade-Automation/CaSkade-MES/HEAD/frontend/src/modules/access-denied/access-denied-routing.module.ts -------------------------------------------------------------------------------- /frontend/src/modules/access-denied/access-denied.component.html: -------------------------------------------------------------------------------- 1 |
2 | access-denied works! 3 |
4 | -------------------------------------------------------------------------------- /frontend/src/modules/access-denied/access-denied.component.scss: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /frontend/src/modules/access-denied/access-denied.component.spec.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CaSkade-Automation/CaSkade-MES/HEAD/frontend/src/modules/access-denied/access-denied.component.spec.ts -------------------------------------------------------------------------------- /frontend/src/modules/access-denied/access-denied.component.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CaSkade-Automation/CaSkade-MES/HEAD/frontend/src/modules/access-denied/access-denied.component.ts -------------------------------------------------------------------------------- /frontend/src/modules/access-denied/access-denied.module.spec.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CaSkade-Automation/CaSkade-MES/HEAD/frontend/src/modules/access-denied/access-denied.module.spec.ts -------------------------------------------------------------------------------- /frontend/src/modules/access-denied/access-denied.module.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CaSkade-Automation/CaSkade-MES/HEAD/frontend/src/modules/access-denied/access-denied.module.ts -------------------------------------------------------------------------------- /frontend/src/modules/capabilities/capability-graph-visu/capability-graph-visu.component.html: -------------------------------------------------------------------------------- 1 |2 | capability-graph-visu works! 3 |
4 | -------------------------------------------------------------------------------- /frontend/src/modules/capabilities/capability-graph-visu/capability-graph-visu.component.scss: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /frontend/src/modules/capabilities/capability-graph-visu/capability-graph-visu.component.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CaSkade-Automation/CaSkade-MES/HEAD/frontend/src/modules/capabilities/capability-graph-visu/capability-graph-visu.component.ts -------------------------------------------------------------------------------- /frontend/src/modules/capabilities/capability-overview/capability-overview.component.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CaSkade-Automation/CaSkade-MES/HEAD/frontend/src/modules/capabilities/capability-overview/capability-overview.component.html -------------------------------------------------------------------------------- /frontend/src/modules/capabilities/capability-overview/capability-overview.component.scss: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /frontend/src/modules/capabilities/capability-overview/capability-overview.component.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CaSkade-Automation/CaSkade-MES/HEAD/frontend/src/modules/capabilities/capability-overview/capability-overview.component.ts -------------------------------------------------------------------------------- /frontend/src/modules/capabilities/capability-registration/capability-registration.component.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CaSkade-Automation/CaSkade-MES/HEAD/frontend/src/modules/capabilities/capability-registration/capability-registration.component.html -------------------------------------------------------------------------------- /frontend/src/modules/capabilities/capability-registration/capability-registration.component.scss: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /frontend/src/modules/capabilities/capability-registration/capability-registration.component.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CaSkade-Automation/CaSkade-MES/HEAD/frontend/src/modules/capabilities/capability-registration/capability-registration.component.ts -------------------------------------------------------------------------------- /frontend/src/modules/capabilities/capability.component.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CaSkade-Automation/CaSkade-MES/HEAD/frontend/src/modules/capabilities/capability.component.html -------------------------------------------------------------------------------- /frontend/src/modules/capabilities/capability.component.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CaSkade-Automation/CaSkade-MES/HEAD/frontend/src/modules/capabilities/capability.component.ts -------------------------------------------------------------------------------- /frontend/src/modules/capabilities/capability.module.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CaSkade-Automation/CaSkade-MES/HEAD/frontend/src/modules/capabilities/capability.module.ts -------------------------------------------------------------------------------- /frontend/src/modules/capabilities/capability.routing.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CaSkade-Automation/CaSkade-MES/HEAD/frontend/src/modules/capabilities/capability.routing.ts -------------------------------------------------------------------------------- /frontend/src/modules/capability-editor/capability-editor.component.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CaSkade-Automation/CaSkade-MES/HEAD/frontend/src/modules/capability-editor/capability-editor.component.html -------------------------------------------------------------------------------- /frontend/src/modules/capability-editor/capability-editor.component.scss: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /frontend/src/modules/capability-editor/capability-editor.component.spec.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CaSkade-Automation/CaSkade-MES/HEAD/frontend/src/modules/capability-editor/capability-editor.component.spec.ts -------------------------------------------------------------------------------- /frontend/src/modules/capability-editor/capability-editor.component.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CaSkade-Automation/CaSkade-MES/HEAD/frontend/src/modules/capability-editor/capability-editor.component.ts -------------------------------------------------------------------------------- /frontend/src/modules/capability-editor/capability-editor.module.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CaSkade-Automation/CaSkade-MES/HEAD/frontend/src/modules/capability-editor/capability-editor.module.ts -------------------------------------------------------------------------------- /frontend/src/modules/capability-editor/capability-editor.routing.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CaSkade-Automation/CaSkade-MES/HEAD/frontend/src/modules/capability-editor/capability-editor.routing.ts -------------------------------------------------------------------------------- /frontend/src/modules/capability-editor/fpbStateIcons/fpb-state-icon.component.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CaSkade-Automation/CaSkade-MES/HEAD/frontend/src/modules/capability-editor/fpbStateIcons/fpb-state-icon.component.html -------------------------------------------------------------------------------- /frontend/src/modules/capability-editor/fpbStateIcons/fpb-state-icon.component.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CaSkade-Automation/CaSkade-MES/HEAD/frontend/src/modules/capability-editor/fpbStateIcons/fpb-state-icon.component.ts -------------------------------------------------------------------------------- /frontend/src/modules/dashboard/components/notification/notification.component.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CaSkade-Automation/CaSkade-MES/HEAD/frontend/src/modules/dashboard/components/notification/notification.component.html -------------------------------------------------------------------------------- /frontend/src/modules/dashboard/components/notification/notification.component.scss: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /frontend/src/modules/dashboard/components/notification/notification.component.spec.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CaSkade-Automation/CaSkade-MES/HEAD/frontend/src/modules/dashboard/components/notification/notification.component.spec.ts -------------------------------------------------------------------------------- /frontend/src/modules/dashboard/components/notification/notification.component.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CaSkade-Automation/CaSkade-MES/HEAD/frontend/src/modules/dashboard/components/notification/notification.component.ts -------------------------------------------------------------------------------- /frontend/src/modules/dashboard/components/settings-overview/settings-overview.component.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CaSkade-Automation/CaSkade-MES/HEAD/frontend/src/modules/dashboard/components/settings-overview/settings-overview.component.html -------------------------------------------------------------------------------- /frontend/src/modules/dashboard/components/settings-overview/settings-overview.component.scss: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CaSkade-Automation/CaSkade-MES/HEAD/frontend/src/modules/dashboard/components/settings-overview/settings-overview.component.scss -------------------------------------------------------------------------------- /frontend/src/modules/dashboard/components/settings-overview/settings-overview.component.spec.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CaSkade-Automation/CaSkade-MES/HEAD/frontend/src/modules/dashboard/components/settings-overview/settings-overview.component.spec.ts -------------------------------------------------------------------------------- /frontend/src/modules/dashboard/components/settings-overview/settings-overview.component.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CaSkade-Automation/CaSkade-MES/HEAD/frontend/src/modules/dashboard/components/settings-overview/settings-overview.component.ts -------------------------------------------------------------------------------- /frontend/src/modules/dashboard/dashboard-routing.module.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CaSkade-Automation/CaSkade-MES/HEAD/frontend/src/modules/dashboard/dashboard-routing.module.ts -------------------------------------------------------------------------------- /frontend/src/modules/dashboard/dashboard.component.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CaSkade-Automation/CaSkade-MES/HEAD/frontend/src/modules/dashboard/dashboard.component.html -------------------------------------------------------------------------------- /frontend/src/modules/dashboard/dashboard.component.scss: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /frontend/src/modules/dashboard/dashboard.component.spec.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CaSkade-Automation/CaSkade-MES/HEAD/frontend/src/modules/dashboard/dashboard.component.spec.ts -------------------------------------------------------------------------------- /frontend/src/modules/dashboard/dashboard.component.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CaSkade-Automation/CaSkade-MES/HEAD/frontend/src/modules/dashboard/dashboard.component.ts -------------------------------------------------------------------------------- /frontend/src/modules/dashboard/dashboard.module.spec.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CaSkade-Automation/CaSkade-MES/HEAD/frontend/src/modules/dashboard/dashboard.module.spec.ts -------------------------------------------------------------------------------- /frontend/src/modules/dashboard/dashboard.module.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CaSkade-Automation/CaSkade-MES/HEAD/frontend/src/modules/dashboard/dashboard.module.ts -------------------------------------------------------------------------------- /frontend/src/modules/graph-visualization/D3GraphData.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CaSkade-Automation/CaSkade-MES/HEAD/frontend/src/modules/graph-visualization/D3GraphData.ts -------------------------------------------------------------------------------- /frontend/src/modules/graph-visualization/graph-visualization.component.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CaSkade-Automation/CaSkade-MES/HEAD/frontend/src/modules/graph-visualization/graph-visualization.component.html -------------------------------------------------------------------------------- /frontend/src/modules/graph-visualization/graph-visualization.component.scss: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CaSkade-Automation/CaSkade-MES/HEAD/frontend/src/modules/graph-visualization/graph-visualization.component.scss -------------------------------------------------------------------------------- /frontend/src/modules/graph-visualization/graph-visualization.component.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CaSkade-Automation/CaSkade-MES/HEAD/frontend/src/modules/graph-visualization/graph-visualization.component.ts -------------------------------------------------------------------------------- /frontend/src/modules/graph-visualization/graph-visualization.module.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CaSkade-Automation/CaSkade-MES/HEAD/frontend/src/modules/graph-visualization/graph-visualization.module.ts -------------------------------------------------------------------------------- /frontend/src/modules/graph-visualization/graph-visualization.routing.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CaSkade-Automation/CaSkade-MES/HEAD/frontend/src/modules/graph-visualization/graph-visualization.routing.ts -------------------------------------------------------------------------------- /frontend/src/modules/graph-visualization/node-creator.service.spec.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CaSkade-Automation/CaSkade-MES/HEAD/frontend/src/modules/graph-visualization/node-creator.service.spec.ts -------------------------------------------------------------------------------- /frontend/src/modules/graph-visualization/node-creator.service.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CaSkade-Automation/CaSkade-MES/HEAD/frontend/src/modules/graph-visualization/node-creator.service.ts -------------------------------------------------------------------------------- /frontend/src/modules/login/login-routing.module.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CaSkade-Automation/CaSkade-MES/HEAD/frontend/src/modules/login/login-routing.module.ts -------------------------------------------------------------------------------- /frontend/src/modules/login/login.component.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CaSkade-Automation/CaSkade-MES/HEAD/frontend/src/modules/login/login.component.html -------------------------------------------------------------------------------- /frontend/src/modules/login/login.component.scss: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CaSkade-Automation/CaSkade-MES/HEAD/frontend/src/modules/login/login.component.scss -------------------------------------------------------------------------------- /frontend/src/modules/login/login.component.spec.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CaSkade-Automation/CaSkade-MES/HEAD/frontend/src/modules/login/login.component.spec.ts -------------------------------------------------------------------------------- /frontend/src/modules/login/login.component.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CaSkade-Automation/CaSkade-MES/HEAD/frontend/src/modules/login/login.component.ts -------------------------------------------------------------------------------- /frontend/src/modules/login/login.module.spec.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CaSkade-Automation/CaSkade-MES/HEAD/frontend/src/modules/login/login.module.spec.ts -------------------------------------------------------------------------------- /frontend/src/modules/login/login.module.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CaSkade-Automation/CaSkade-MES/HEAD/frontend/src/modules/login/login.module.ts -------------------------------------------------------------------------------- /frontend/src/modules/not-found/not-found-routing.module.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CaSkade-Automation/CaSkade-MES/HEAD/frontend/src/modules/not-found/not-found-routing.module.ts -------------------------------------------------------------------------------- /frontend/src/modules/not-found/not-found.component.html: -------------------------------------------------------------------------------- 1 |2 | not-found works! 3 |
4 | -------------------------------------------------------------------------------- /frontend/src/modules/not-found/not-found.component.scss: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /frontend/src/modules/not-found/not-found.component.spec.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CaSkade-Automation/CaSkade-MES/HEAD/frontend/src/modules/not-found/not-found.component.spec.ts -------------------------------------------------------------------------------- /frontend/src/modules/not-found/not-found.component.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CaSkade-Automation/CaSkade-MES/HEAD/frontend/src/modules/not-found/not-found.component.ts -------------------------------------------------------------------------------- /frontend/src/modules/not-found/not-found.module.spec.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CaSkade-Automation/CaSkade-MES/HEAD/frontend/src/modules/not-found/not-found.module.spec.ts -------------------------------------------------------------------------------- /frontend/src/modules/not-found/not-found.module.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CaSkade-Automation/CaSkade-MES/HEAD/frontend/src/modules/not-found/not-found.module.ts -------------------------------------------------------------------------------- /frontend/src/modules/process-planning/bpmn-result/bpmn-result.component.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CaSkade-Automation/CaSkade-MES/HEAD/frontend/src/modules/process-planning/bpmn-result/bpmn-result.component.html -------------------------------------------------------------------------------- /frontend/src/modules/process-planning/bpmn-result/bpmn-result.component.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CaSkade-Automation/CaSkade-MES/HEAD/frontend/src/modules/process-planning/bpmn-result/bpmn-result.component.ts -------------------------------------------------------------------------------- /frontend/src/modules/process-planning/check-plan/check-plan.component.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CaSkade-Automation/CaSkade-MES/HEAD/frontend/src/modules/process-planning/check-plan/check-plan.component.html -------------------------------------------------------------------------------- /frontend/src/modules/process-planning/check-plan/check-plan.component.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CaSkade-Automation/CaSkade-MES/HEAD/frontend/src/modules/process-planning/check-plan/check-plan.component.ts -------------------------------------------------------------------------------- /frontend/src/modules/process-planning/new-plan/loader/loader.component.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CaSkade-Automation/CaSkade-MES/HEAD/frontend/src/modules/process-planning/new-plan/loader/loader.component.html -------------------------------------------------------------------------------- /frontend/src/modules/process-planning/new-plan/loader/loader.component.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CaSkade-Automation/CaSkade-MES/HEAD/frontend/src/modules/process-planning/new-plan/loader/loader.component.ts -------------------------------------------------------------------------------- /frontend/src/modules/process-planning/new-plan/new-plan.component.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CaSkade-Automation/CaSkade-MES/HEAD/frontend/src/modules/process-planning/new-plan/new-plan.component.html -------------------------------------------------------------------------------- /frontend/src/modules/process-planning/new-plan/new-plan.component.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CaSkade-Automation/CaSkade-MES/HEAD/frontend/src/modules/process-planning/new-plan/new-plan.component.ts -------------------------------------------------------------------------------- /frontend/src/modules/process-planning/process-planning.component.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CaSkade-Automation/CaSkade-MES/HEAD/frontend/src/modules/process-planning/process-planning.component.html -------------------------------------------------------------------------------- /frontend/src/modules/process-planning/process-planning.component.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CaSkade-Automation/CaSkade-MES/HEAD/frontend/src/modules/process-planning/process-planning.component.ts -------------------------------------------------------------------------------- /frontend/src/modules/process-planning/process-planning.module.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CaSkade-Automation/CaSkade-MES/HEAD/frontend/src/modules/process-planning/process-planning.module.ts -------------------------------------------------------------------------------- /frontend/src/modules/process-planning/process-planning.routing.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CaSkade-Automation/CaSkade-MES/HEAD/frontend/src/modules/process-planning/process-planning.routing.ts -------------------------------------------------------------------------------- /frontend/src/modules/production-modules/module-graph-visu/module-graph-visu.component.html: -------------------------------------------------------------------------------- 1 |2 | module-graph-visu works! 3 |
4 | -------------------------------------------------------------------------------- /frontend/src/modules/production-modules/module-graph-visu/module-graph-visu.component.scss: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /frontend/src/modules/production-modules/module-graph-visu/module-graph-visu.component.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CaSkade-Automation/CaSkade-MES/HEAD/frontend/src/modules/production-modules/module-graph-visu/module-graph-visu.component.ts -------------------------------------------------------------------------------- /frontend/src/modules/production-modules/module-overview/module-overview.component.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CaSkade-Automation/CaSkade-MES/HEAD/frontend/src/modules/production-modules/module-overview/module-overview.component.html -------------------------------------------------------------------------------- /frontend/src/modules/production-modules/module-overview/module-overview.component.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CaSkade-Automation/CaSkade-MES/HEAD/frontend/src/modules/production-modules/module-overview/module-overview.component.ts -------------------------------------------------------------------------------- /frontend/src/modules/production-modules/module-registration/module-registration.component.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CaSkade-Automation/CaSkade-MES/HEAD/frontend/src/modules/production-modules/module-registration/module-registration.component.html -------------------------------------------------------------------------------- /frontend/src/modules/production-modules/module-registration/module-registration.component.scss: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /frontend/src/modules/production-modules/module-registration/module-registration.component.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CaSkade-Automation/CaSkade-MES/HEAD/frontend/src/modules/production-modules/module-registration/module-registration.component.ts -------------------------------------------------------------------------------- /frontend/src/modules/production-modules/production-module.component.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CaSkade-Automation/CaSkade-MES/HEAD/frontend/src/modules/production-modules/production-module.component.html -------------------------------------------------------------------------------- /frontend/src/modules/production-modules/production-module.component.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CaSkade-Automation/CaSkade-MES/HEAD/frontend/src/modules/production-modules/production-module.component.ts -------------------------------------------------------------------------------- /frontend/src/modules/production-modules/production-module.module.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CaSkade-Automation/CaSkade-MES/HEAD/frontend/src/modules/production-modules/production-module.module.ts -------------------------------------------------------------------------------- /frontend/src/modules/production-modules/production-module.routing.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CaSkade-Automation/CaSkade-MES/HEAD/frontend/src/modules/production-modules/production-module.routing.ts -------------------------------------------------------------------------------- /frontend/src/modules/production-processes/process-control/process-control.component.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CaSkade-Automation/CaSkade-MES/HEAD/frontend/src/modules/production-processes/process-control/process-control.component.html -------------------------------------------------------------------------------- /frontend/src/modules/production-processes/process-control/process-control.component.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CaSkade-Automation/CaSkade-MES/HEAD/frontend/src/modules/production-processes/process-control/process-control.component.ts -------------------------------------------------------------------------------- /frontend/src/modules/production-processes/process-control/process-control.module.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CaSkade-Automation/CaSkade-MES/HEAD/frontend/src/modules/production-processes/process-control/process-control.module.ts -------------------------------------------------------------------------------- /frontend/src/modules/production-processes/process-control/process-control.routing.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CaSkade-Automation/CaSkade-MES/HEAD/frontend/src/modules/production-processes/process-control/process-control.routing.ts -------------------------------------------------------------------------------- /frontend/src/modules/production-processes/process-control/process-definitions/process-definitions.component.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CaSkade-Automation/CaSkade-MES/HEAD/frontend/src/modules/production-processes/process-control/process-definitions/process-definitions.component.html -------------------------------------------------------------------------------- /frontend/src/modules/production-processes/process-control/process-definitions/process-definitions.component.scss: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CaSkade-Automation/CaSkade-MES/HEAD/frontend/src/modules/production-processes/process-control/process-definitions/process-definitions.component.scss -------------------------------------------------------------------------------- /frontend/src/modules/production-processes/process-control/process-definitions/process-definitions.component.spec.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CaSkade-Automation/CaSkade-MES/HEAD/frontend/src/modules/production-processes/process-control/process-definitions/process-definitions.component.spec.ts -------------------------------------------------------------------------------- /frontend/src/modules/production-processes/process-control/process-definitions/process-definitions.component.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CaSkade-Automation/CaSkade-MES/HEAD/frontend/src/modules/production-processes/process-control/process-definitions/process-definitions.component.ts -------------------------------------------------------------------------------- /frontend/src/modules/production-processes/process-control/process-instances/process-instances.component.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CaSkade-Automation/CaSkade-MES/HEAD/frontend/src/modules/production-processes/process-control/process-instances/process-instances.component.html -------------------------------------------------------------------------------- /frontend/src/modules/production-processes/process-control/process-instances/process-instances.component.scss: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CaSkade-Automation/CaSkade-MES/HEAD/frontend/src/modules/production-processes/process-control/process-instances/process-instances.component.scss -------------------------------------------------------------------------------- /frontend/src/modules/production-processes/process-control/process-instances/process-instances.component.spec.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CaSkade-Automation/CaSkade-MES/HEAD/frontend/src/modules/production-processes/process-control/process-instances/process-instances.component.spec.ts -------------------------------------------------------------------------------- /frontend/src/modules/production-processes/process-control/process-instances/process-instances.component.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CaSkade-Automation/CaSkade-MES/HEAD/frontend/src/modules/production-processes/process-control/process-instances/process-instances.component.ts -------------------------------------------------------------------------------- /frontend/src/modules/production-processes/production-processes.component.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CaSkade-Automation/CaSkade-MES/HEAD/frontend/src/modules/production-processes/production-processes.component.html -------------------------------------------------------------------------------- /frontend/src/modules/production-processes/production-processes.component.scss: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CaSkade-Automation/CaSkade-MES/HEAD/frontend/src/modules/production-processes/production-processes.component.scss -------------------------------------------------------------------------------- /frontend/src/modules/production-processes/production-processes.component.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CaSkade-Automation/CaSkade-MES/HEAD/frontend/src/modules/production-processes/production-processes.component.ts -------------------------------------------------------------------------------- /frontend/src/modules/production-processes/production-processes.module.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CaSkade-Automation/CaSkade-MES/HEAD/frontend/src/modules/production-processes/production-processes.module.ts -------------------------------------------------------------------------------- /frontend/src/modules/production-processes/production-processes.routing.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CaSkade-Automation/CaSkade-MES/HEAD/frontend/src/modules/production-processes/production-processes.routing.ts -------------------------------------------------------------------------------- /frontend/src/modules/server-error/server-error-routing.module.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CaSkade-Automation/CaSkade-MES/HEAD/frontend/src/modules/server-error/server-error-routing.module.ts -------------------------------------------------------------------------------- /frontend/src/modules/server-error/server-error.component.html: -------------------------------------------------------------------------------- 1 |2 | server-error works! 3 |
4 | -------------------------------------------------------------------------------- /frontend/src/modules/server-error/server-error.component.scss: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /frontend/src/modules/server-error/server-error.component.spec.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CaSkade-Automation/CaSkade-MES/HEAD/frontend/src/modules/server-error/server-error.component.spec.ts -------------------------------------------------------------------------------- /frontend/src/modules/server-error/server-error.component.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CaSkade-Automation/CaSkade-MES/HEAD/frontend/src/modules/server-error/server-error.component.ts -------------------------------------------------------------------------------- /frontend/src/modules/server-error/server-error.module.spec.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CaSkade-Automation/CaSkade-MES/HEAD/frontend/src/modules/server-error/server-error.module.spec.ts -------------------------------------------------------------------------------- /frontend/src/modules/server-error/server-error.module.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CaSkade-Automation/CaSkade-MES/HEAD/frontend/src/modules/server-error/server-error.module.ts -------------------------------------------------------------------------------- /frontend/src/modules/signup/signup-routing.module.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CaSkade-Automation/CaSkade-MES/HEAD/frontend/src/modules/signup/signup-routing.module.ts -------------------------------------------------------------------------------- /frontend/src/modules/signup/signup.component.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CaSkade-Automation/CaSkade-MES/HEAD/frontend/src/modules/signup/signup.component.html -------------------------------------------------------------------------------- /frontend/src/modules/signup/signup.component.scss: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CaSkade-Automation/CaSkade-MES/HEAD/frontend/src/modules/signup/signup.component.scss -------------------------------------------------------------------------------- /frontend/src/modules/signup/signup.component.spec.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CaSkade-Automation/CaSkade-MES/HEAD/frontend/src/modules/signup/signup.component.spec.ts -------------------------------------------------------------------------------- /frontend/src/modules/signup/signup.component.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CaSkade-Automation/CaSkade-MES/HEAD/frontend/src/modules/signup/signup.component.ts -------------------------------------------------------------------------------- /frontend/src/modules/signup/signup.module.spec.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CaSkade-Automation/CaSkade-MES/HEAD/frontend/src/modules/signup/signup.module.spec.ts -------------------------------------------------------------------------------- /frontend/src/modules/signup/signup.module.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CaSkade-Automation/CaSkade-MES/HEAD/frontend/src/modules/signup/signup.module.ts -------------------------------------------------------------------------------- /frontend/src/modules/skillmex-configuration/skillmex-configuration.component.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CaSkade-Automation/CaSkade-MES/HEAD/frontend/src/modules/skillmex-configuration/skillmex-configuration.component.html -------------------------------------------------------------------------------- /frontend/src/modules/skillmex-configuration/skillmex-configuration.component.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CaSkade-Automation/CaSkade-MES/HEAD/frontend/src/modules/skillmex-configuration/skillmex-configuration.component.ts -------------------------------------------------------------------------------- /frontend/src/modules/skillmex-configuration/skillmex-configuration.module.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CaSkade-Automation/CaSkade-MES/HEAD/frontend/src/modules/skillmex-configuration/skillmex-configuration.module.ts -------------------------------------------------------------------------------- /frontend/src/modules/skillmex-configuration/skillmex-configuration.routing.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CaSkade-Automation/CaSkade-MES/HEAD/frontend/src/modules/skillmex-configuration/skillmex-configuration.routing.ts -------------------------------------------------------------------------------- /frontend/src/modules/skillmex-configuration/subcomponents/graphdb-settings.component.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CaSkade-Automation/CaSkade-MES/HEAD/frontend/src/modules/skillmex-configuration/subcomponents/graphdb-settings.component.html -------------------------------------------------------------------------------- /frontend/src/modules/skillmex-configuration/subcomponents/graphdb-settings.component.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CaSkade-Automation/CaSkade-MES/HEAD/frontend/src/modules/skillmex-configuration/subcomponents/graphdb-settings.component.ts -------------------------------------------------------------------------------- /frontend/src/modules/skillmex-configuration/subcomponents/mtp-mapping-settings.component.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CaSkade-Automation/CaSkade-MES/HEAD/frontend/src/modules/skillmex-configuration/subcomponents/mtp-mapping-settings.component.html -------------------------------------------------------------------------------- /frontend/src/modules/skillmex-configuration/subcomponents/mtp-mapping-settings.component.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CaSkade-Automation/CaSkade-MES/HEAD/frontend/src/modules/skillmex-configuration/subcomponents/mtp-mapping-settings.component.ts -------------------------------------------------------------------------------- /frontend/src/modules/skills/skill-container.component.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CaSkade-Automation/CaSkade-MES/HEAD/frontend/src/modules/skills/skill-container.component.html -------------------------------------------------------------------------------- /frontend/src/modules/skills/skill-container.component.scss: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /frontend/src/modules/skills/skill-container.component.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CaSkade-Automation/CaSkade-MES/HEAD/frontend/src/modules/skills/skill-container.component.ts -------------------------------------------------------------------------------- /frontend/src/modules/skills/skill-container.module.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CaSkade-Automation/CaSkade-MES/HEAD/frontend/src/modules/skills/skill-container.module.ts -------------------------------------------------------------------------------- /frontend/src/modules/skills/skill-container.routing.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CaSkade-Automation/CaSkade-MES/HEAD/frontend/src/modules/skills/skill-container.routing.ts -------------------------------------------------------------------------------- /frontend/src/modules/skills/skill-graph-visu/skill-graph-visu.component.html: -------------------------------------------------------------------------------- 1 |2 | skill-graph-visu works! 3 |
4 | -------------------------------------------------------------------------------- /frontend/src/modules/skills/skill-graph-visu/skill-graph-visu.component.scss: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /frontend/src/modules/skills/skill-graph-visu/skill-graph-visu.component.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CaSkade-Automation/CaSkade-MES/HEAD/frontend/src/modules/skills/skill-graph-visu/skill-graph-visu.component.ts -------------------------------------------------------------------------------- /frontend/src/modules/skills/skill-overview/skill-overview.component.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CaSkade-Automation/CaSkade-MES/HEAD/frontend/src/modules/skills/skill-overview/skill-overview.component.html -------------------------------------------------------------------------------- /frontend/src/modules/skills/skill-overview/skill-overview.component.scss: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /frontend/src/modules/skills/skill-overview/skill-overview.component.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CaSkade-Automation/CaSkade-MES/HEAD/frontend/src/modules/skills/skill-overview/skill-overview.component.ts -------------------------------------------------------------------------------- /frontend/src/modules/skills/skill-registration/skill-registration.component.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CaSkade-Automation/CaSkade-MES/HEAD/frontend/src/modules/skills/skill-registration/skill-registration.component.html -------------------------------------------------------------------------------- /frontend/src/modules/skills/skill-registration/skill-registration.component.scss: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /frontend/src/modules/skills/skill-registration/skill-registration.component.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CaSkade-Automation/CaSkade-MES/HEAD/frontend/src/modules/skills/skill-registration/skill-registration.component.ts -------------------------------------------------------------------------------- /frontend/src/router.animations.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CaSkade-Automation/CaSkade-MES/HEAD/frontend/src/router.animations.ts -------------------------------------------------------------------------------- /frontend/src/shared/directives/Directives.module.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CaSkade-Automation/CaSkade-MES/HEAD/frontend/src/shared/directives/Directives.module.ts -------------------------------------------------------------------------------- /frontend/src/shared/directives/FileValueAccessor.directive.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CaSkade-Automation/CaSkade-MES/HEAD/frontend/src/shared/directives/FileValueAccessor.directive.ts -------------------------------------------------------------------------------- /frontend/src/shared/guard/auth.guard.spec.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CaSkade-Automation/CaSkade-MES/HEAD/frontend/src/shared/guard/auth.guard.spec.ts -------------------------------------------------------------------------------- /frontend/src/shared/guard/auth.guard.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CaSkade-Automation/CaSkade-MES/HEAD/frontend/src/shared/guard/auth.guard.ts -------------------------------------------------------------------------------- /frontend/src/shared/guard/index.ts: -------------------------------------------------------------------------------- 1 | export * from './auth.guard'; 2 | -------------------------------------------------------------------------------- /frontend/src/shared/index.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CaSkade-Automation/CaSkade-MES/HEAD/frontend/src/shared/index.ts -------------------------------------------------------------------------------- /frontend/src/shared/models/BpmnTaskCapability.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CaSkade-Automation/CaSkade-MES/HEAD/frontend/src/shared/models/BpmnTaskCapability.ts -------------------------------------------------------------------------------- /frontend/src/shared/models/Capability.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CaSkade-Automation/CaSkade-MES/HEAD/frontend/src/shared/models/Capability.ts -------------------------------------------------------------------------------- /frontend/src/shared/models/Constraint.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CaSkade-Automation/CaSkade-MES/HEAD/frontend/src/shared/models/Constraint.ts -------------------------------------------------------------------------------- /frontend/src/shared/models/FpbElement.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CaSkade-Automation/CaSkade-MES/HEAD/frontend/src/shared/models/FpbElement.ts -------------------------------------------------------------------------------- /frontend/src/shared/models/ProductionModule.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CaSkade-Automation/CaSkade-MES/HEAD/frontend/src/shared/models/ProductionModule.ts -------------------------------------------------------------------------------- /frontend/src/shared/models/Property.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CaSkade-Automation/CaSkade-MES/HEAD/frontend/src/shared/models/Property.ts -------------------------------------------------------------------------------- /frontend/src/shared/models/Skill.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CaSkade-Automation/CaSkade-MES/HEAD/frontend/src/shared/models/Skill.ts -------------------------------------------------------------------------------- /frontend/src/shared/models/module.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CaSkade-Automation/CaSkade-MES/HEAD/frontend/src/shared/models/module.ts -------------------------------------------------------------------------------- /frontend/src/shared/modules/bpmn-modeler/BpmnDataModel.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CaSkade-Automation/CaSkade-MES/HEAD/frontend/src/shared/modules/bpmn-modeler/BpmnDataModel.ts -------------------------------------------------------------------------------- /frontend/src/shared/modules/bpmn-modeler/bpmn-modeler.component.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CaSkade-Automation/CaSkade-MES/HEAD/frontend/src/shared/modules/bpmn-modeler/bpmn-modeler.component.html -------------------------------------------------------------------------------- /frontend/src/shared/modules/bpmn-modeler/bpmn-modeler.component.scss: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CaSkade-Automation/CaSkade-MES/HEAD/frontend/src/shared/modules/bpmn-modeler/bpmn-modeler.component.scss -------------------------------------------------------------------------------- /frontend/src/shared/modules/bpmn-modeler/bpmn-modeler.component.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CaSkade-Automation/CaSkade-MES/HEAD/frontend/src/shared/modules/bpmn-modeler/bpmn-modeler.component.ts -------------------------------------------------------------------------------- /frontend/src/shared/modules/bpmn-modeler/bpmn-modeler.module.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CaSkade-Automation/CaSkade-MES/HEAD/frontend/src/shared/modules/bpmn-modeler/bpmn-modeler.module.ts -------------------------------------------------------------------------------- /frontend/src/shared/modules/bpmn-modeler/emptyDiagram.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CaSkade-Automation/CaSkade-MES/HEAD/frontend/src/shared/modules/bpmn-modeler/emptyDiagram.ts -------------------------------------------------------------------------------- /frontend/src/shared/modules/bpmn-modeler/properties-panel/bpmn-extension-element.service.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CaSkade-Automation/CaSkade-MES/HEAD/frontend/src/shared/modules/bpmn-modeler/properties-panel/bpmn-extension-element.service.ts -------------------------------------------------------------------------------- /frontend/src/shared/modules/bpmn-modeler/properties-panel/bpmn-mail.service.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CaSkade-Automation/CaSkade-MES/HEAD/frontend/src/shared/modules/bpmn-modeler/properties-panel/bpmn-mail.service.ts -------------------------------------------------------------------------------- /frontend/src/shared/modules/bpmn-modeler/properties-panel/bpmn-model.service.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CaSkade-Automation/CaSkade-MES/HEAD/frontend/src/shared/modules/bpmn-modeler/properties-panel/bpmn-model.service.ts -------------------------------------------------------------------------------- /frontend/src/shared/modules/bpmn-modeler/properties-panel/properties-panel.component.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CaSkade-Automation/CaSkade-MES/HEAD/frontend/src/shared/modules/bpmn-modeler/properties-panel/properties-panel.component.html -------------------------------------------------------------------------------- /frontend/src/shared/modules/bpmn-modeler/properties-panel/properties-panel.component.scss: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CaSkade-Automation/CaSkade-MES/HEAD/frontend/src/shared/modules/bpmn-modeler/properties-panel/properties-panel.component.scss -------------------------------------------------------------------------------- /frontend/src/shared/modules/bpmn-modeler/properties-panel/properties-panel.component.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CaSkade-Automation/CaSkade-MES/HEAD/frontend/src/shared/modules/bpmn-modeler/properties-panel/properties-panel.component.ts -------------------------------------------------------------------------------- /frontend/src/shared/modules/bpmn-modeler/properties-panel/properties-subcomponents/base-task-form/base-task-form.component.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CaSkade-Automation/CaSkade-MES/HEAD/frontend/src/shared/modules/bpmn-modeler/properties-panel/properties-subcomponents/base-task-form/base-task-form.component.html -------------------------------------------------------------------------------- /frontend/src/shared/modules/bpmn-modeler/properties-panel/properties-subcomponents/base-task-form/base-task-form.component.scss: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /frontend/src/shared/modules/bpmn-modeler/properties-panel/properties-subcomponents/base-task-form/base-task-form.component.spec.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CaSkade-Automation/CaSkade-MES/HEAD/frontend/src/shared/modules/bpmn-modeler/properties-panel/properties-subcomponents/base-task-form/base-task-form.component.spec.ts -------------------------------------------------------------------------------- /frontend/src/shared/modules/bpmn-modeler/properties-panel/properties-subcomponents/base-task-form/base-task-form.component.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CaSkade-Automation/CaSkade-MES/HEAD/frontend/src/shared/modules/bpmn-modeler/properties-panel/properties-subcomponents/base-task-form/base-task-form.component.ts -------------------------------------------------------------------------------- /frontend/src/shared/modules/bpmn-modeler/properties-panel/properties-subcomponents/flow-form/flow-form.component.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CaSkade-Automation/CaSkade-MES/HEAD/frontend/src/shared/modules/bpmn-modeler/properties-panel/properties-subcomponents/flow-form/flow-form.component.html -------------------------------------------------------------------------------- /frontend/src/shared/modules/bpmn-modeler/properties-panel/properties-subcomponents/flow-form/flow-form.component.scss: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /frontend/src/shared/modules/bpmn-modeler/properties-panel/properties-subcomponents/flow-form/flow-form.component.spec.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CaSkade-Automation/CaSkade-MES/HEAD/frontend/src/shared/modules/bpmn-modeler/properties-panel/properties-subcomponents/flow-form/flow-form.component.spec.ts -------------------------------------------------------------------------------- /frontend/src/shared/modules/bpmn-modeler/properties-panel/properties-subcomponents/flow-form/flow-form.component.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CaSkade-Automation/CaSkade-MES/HEAD/frontend/src/shared/modules/bpmn-modeler/properties-panel/properties-subcomponents/flow-form/flow-form.component.ts -------------------------------------------------------------------------------- /frontend/src/shared/modules/bpmn-modeler/properties-panel/properties-subcomponents/send-task-form/mail-form/mail-form.component.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CaSkade-Automation/CaSkade-MES/HEAD/frontend/src/shared/modules/bpmn-modeler/properties-panel/properties-subcomponents/send-task-form/mail-form/mail-form.component.html -------------------------------------------------------------------------------- /frontend/src/shared/modules/bpmn-modeler/properties-panel/properties-subcomponents/send-task-form/mail-form/mail-form.component.scss: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /frontend/src/shared/modules/bpmn-modeler/properties-panel/properties-subcomponents/send-task-form/mail-form/mail-form.component.spec.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CaSkade-Automation/CaSkade-MES/HEAD/frontend/src/shared/modules/bpmn-modeler/properties-panel/properties-subcomponents/send-task-form/mail-form/mail-form.component.spec.ts -------------------------------------------------------------------------------- /frontend/src/shared/modules/bpmn-modeler/properties-panel/properties-subcomponents/send-task-form/mail-form/mail-form.component.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CaSkade-Automation/CaSkade-MES/HEAD/frontend/src/shared/modules/bpmn-modeler/properties-panel/properties-subcomponents/send-task-form/mail-form/mail-form.component.ts -------------------------------------------------------------------------------- /frontend/src/shared/modules/bpmn-modeler/properties-panel/properties-subcomponents/send-task-form/send-task-form.component.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CaSkade-Automation/CaSkade-MES/HEAD/frontend/src/shared/modules/bpmn-modeler/properties-panel/properties-subcomponents/send-task-form/send-task-form.component.html -------------------------------------------------------------------------------- /frontend/src/shared/modules/bpmn-modeler/properties-panel/properties-subcomponents/send-task-form/send-task-form.component.scss: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /frontend/src/shared/modules/bpmn-modeler/properties-panel/properties-subcomponents/send-task-form/send-task-form.component.spec.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CaSkade-Automation/CaSkade-MES/HEAD/frontend/src/shared/modules/bpmn-modeler/properties-panel/properties-subcomponents/send-task-form/send-task-form.component.spec.ts -------------------------------------------------------------------------------- /frontend/src/shared/modules/bpmn-modeler/properties-panel/properties-subcomponents/send-task-form/send-task-form.component.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CaSkade-Automation/CaSkade-MES/HEAD/frontend/src/shared/modules/bpmn-modeler/properties-panel/properties-subcomponents/send-task-form/send-task-form.component.ts -------------------------------------------------------------------------------- /frontend/src/shared/modules/bpmn-modeler/properties-panel/properties-subcomponents/service-task-form/service-subcomponents/capability-task-form/capability-task-form.component.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CaSkade-Automation/CaSkade-MES/HEAD/frontend/src/shared/modules/bpmn-modeler/properties-panel/properties-subcomponents/service-task-form/service-subcomponents/capability-task-form/capability-task-form.component.html -------------------------------------------------------------------------------- /frontend/src/shared/modules/bpmn-modeler/properties-panel/properties-subcomponents/service-task-form/service-subcomponents/capability-task-form/capability-task-form.component.scss: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /frontend/src/shared/modules/bpmn-modeler/properties-panel/properties-subcomponents/service-task-form/service-subcomponents/capability-task-form/capability-task-form.component.spec.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CaSkade-Automation/CaSkade-MES/HEAD/frontend/src/shared/modules/bpmn-modeler/properties-panel/properties-subcomponents/service-task-form/service-subcomponents/capability-task-form/capability-task-form.component.spec.ts -------------------------------------------------------------------------------- /frontend/src/shared/modules/bpmn-modeler/properties-panel/properties-subcomponents/service-task-form/service-subcomponents/capability-task-form/capability-task-form.component.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CaSkade-Automation/CaSkade-MES/HEAD/frontend/src/shared/modules/bpmn-modeler/properties-panel/properties-subcomponents/service-task-form/service-subcomponents/capability-task-form/capability-task-form.component.ts -------------------------------------------------------------------------------- /frontend/src/shared/modules/bpmn-modeler/properties-panel/properties-subcomponents/service-task-form/service-subcomponents/skill-task-form/skill-task-form.component.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CaSkade-Automation/CaSkade-MES/HEAD/frontend/src/shared/modules/bpmn-modeler/properties-panel/properties-subcomponents/service-task-form/service-subcomponents/skill-task-form/skill-task-form.component.html -------------------------------------------------------------------------------- /frontend/src/shared/modules/bpmn-modeler/properties-panel/properties-subcomponents/service-task-form/service-subcomponents/skill-task-form/skill-task-form.component.scss: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /frontend/src/shared/modules/bpmn-modeler/properties-panel/properties-subcomponents/service-task-form/service-subcomponents/skill-task-form/skill-task-form.component.spec.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CaSkade-Automation/CaSkade-MES/HEAD/frontend/src/shared/modules/bpmn-modeler/properties-panel/properties-subcomponents/service-task-form/service-subcomponents/skill-task-form/skill-task-form.component.spec.ts -------------------------------------------------------------------------------- /frontend/src/shared/modules/bpmn-modeler/properties-panel/properties-subcomponents/service-task-form/service-subcomponents/skill-task-form/skill-task-form.component.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CaSkade-Automation/CaSkade-MES/HEAD/frontend/src/shared/modules/bpmn-modeler/properties-panel/properties-subcomponents/service-task-form/service-subcomponents/skill-task-form/skill-task-form.component.ts -------------------------------------------------------------------------------- /frontend/src/shared/modules/bpmn-modeler/properties-panel/properties-subcomponents/service-task-form/service-task-form.component.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CaSkade-Automation/CaSkade-MES/HEAD/frontend/src/shared/modules/bpmn-modeler/properties-panel/properties-subcomponents/service-task-form/service-task-form.component.html -------------------------------------------------------------------------------- /frontend/src/shared/modules/bpmn-modeler/properties-panel/properties-subcomponents/service-task-form/service-task-form.component.scss: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /frontend/src/shared/modules/bpmn-modeler/properties-panel/properties-subcomponents/service-task-form/service-task-form.component.spec.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CaSkade-Automation/CaSkade-MES/HEAD/frontend/src/shared/modules/bpmn-modeler/properties-panel/properties-subcomponents/service-task-form/service-task-form.component.spec.ts -------------------------------------------------------------------------------- /frontend/src/shared/modules/bpmn-modeler/properties-panel/properties-subcomponents/service-task-form/service-task-form.component.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CaSkade-Automation/CaSkade-MES/HEAD/frontend/src/shared/modules/bpmn-modeler/properties-panel/properties-subcomponents/service-task-form/service-task-form.component.ts -------------------------------------------------------------------------------- /frontend/src/shared/modules/bpmn-modeler/properties-panel/properties-subcomponents/user-task-form/user-task-form.component.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CaSkade-Automation/CaSkade-MES/HEAD/frontend/src/shared/modules/bpmn-modeler/properties-panel/properties-subcomponents/user-task-form/user-task-form.component.html -------------------------------------------------------------------------------- /frontend/src/shared/modules/bpmn-modeler/properties-panel/properties-subcomponents/user-task-form/user-task-form.component.scss: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /frontend/src/shared/modules/bpmn-modeler/properties-panel/properties-subcomponents/user-task-form/user-task-form.component.spec.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CaSkade-Automation/CaSkade-MES/HEAD/frontend/src/shared/modules/bpmn-modeler/properties-panel/properties-subcomponents/user-task-form/user-task-form.component.spec.ts -------------------------------------------------------------------------------- /frontend/src/shared/modules/bpmn-modeler/properties-panel/properties-subcomponents/user-task-form/user-task-form.component.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CaSkade-Automation/CaSkade-MES/HEAD/frontend/src/shared/modules/bpmn-modeler/properties-panel/properties-subcomponents/user-task-form/user-task-form.component.ts -------------------------------------------------------------------------------- /frontend/src/shared/modules/bpmn-viewer/bpmn-viewer.component.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CaSkade-Automation/CaSkade-MES/HEAD/frontend/src/shared/modules/bpmn-viewer/bpmn-viewer.component.html -------------------------------------------------------------------------------- /frontend/src/shared/modules/bpmn-viewer/bpmn-viewer.component.scss: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CaSkade-Automation/CaSkade-MES/HEAD/frontend/src/shared/modules/bpmn-viewer/bpmn-viewer.component.scss -------------------------------------------------------------------------------- /frontend/src/shared/modules/bpmn-viewer/bpmn-viewer.component.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CaSkade-Automation/CaSkade-MES/HEAD/frontend/src/shared/modules/bpmn-viewer/bpmn-viewer.component.ts -------------------------------------------------------------------------------- /frontend/src/shared/modules/bpmn-viewer/bpmn-viewer.module.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CaSkade-Automation/CaSkade-MES/HEAD/frontend/src/shared/modules/bpmn-viewer/bpmn-viewer.module.ts -------------------------------------------------------------------------------- /frontend/src/shared/modules/capability-card/capability-card.component.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CaSkade-Automation/CaSkade-MES/HEAD/frontend/src/shared/modules/capability-card/capability-card.component.html -------------------------------------------------------------------------------- /frontend/src/shared/modules/capability-card/capability-card.component.scss: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /frontend/src/shared/modules/capability-card/capability-card.component.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CaSkade-Automation/CaSkade-MES/HEAD/frontend/src/shared/modules/capability-card/capability-card.component.ts -------------------------------------------------------------------------------- /frontend/src/shared/modules/capability-card/capability-card.module.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CaSkade-Automation/CaSkade-MES/HEAD/frontend/src/shared/modules/capability-card/capability-card.module.ts -------------------------------------------------------------------------------- /frontend/src/shared/modules/index.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CaSkade-Automation/CaSkade-MES/HEAD/frontend/src/shared/modules/index.ts -------------------------------------------------------------------------------- /frontend/src/shared/modules/ontology-registration/llm-generation/llm-generation.component.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CaSkade-Automation/CaSkade-MES/HEAD/frontend/src/shared/modules/ontology-registration/llm-generation/llm-generation.component.html -------------------------------------------------------------------------------- /frontend/src/shared/modules/ontology-registration/llm-generation/llm-generation.component.scss: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /frontend/src/shared/modules/ontology-registration/llm-generation/llm-generation.component.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CaSkade-Automation/CaSkade-MES/HEAD/frontend/src/shared/modules/ontology-registration/llm-generation/llm-generation.component.ts -------------------------------------------------------------------------------- /frontend/src/shared/modules/ontology-registration/llm-generation/llm-generation.spec.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CaSkade-Automation/CaSkade-MES/HEAD/frontend/src/shared/modules/ontology-registration/llm-generation/llm-generation.spec.ts -------------------------------------------------------------------------------- /frontend/src/shared/modules/ontology-registration/manual-registration/manual-registration.component.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CaSkade-Automation/CaSkade-MES/HEAD/frontend/src/shared/modules/ontology-registration/manual-registration/manual-registration.component.html -------------------------------------------------------------------------------- /frontend/src/shared/modules/ontology-registration/manual-registration/manual-registration.component.scss: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /frontend/src/shared/modules/ontology-registration/manual-registration/manual-registration.component.spec.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CaSkade-Automation/CaSkade-MES/HEAD/frontend/src/shared/modules/ontology-registration/manual-registration/manual-registration.component.spec.ts -------------------------------------------------------------------------------- /frontend/src/shared/modules/ontology-registration/manual-registration/manual-registration.component.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CaSkade-Automation/CaSkade-MES/HEAD/frontend/src/shared/modules/ontology-registration/manual-registration/manual-registration.component.ts -------------------------------------------------------------------------------- /frontend/src/shared/modules/ontology-registration/mtp-mapping/mtp-mapping.component.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CaSkade-Automation/CaSkade-MES/HEAD/frontend/src/shared/modules/ontology-registration/mtp-mapping/mtp-mapping.component.html -------------------------------------------------------------------------------- /frontend/src/shared/modules/ontology-registration/mtp-mapping/mtp-mapping.component.scss: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /frontend/src/shared/modules/ontology-registration/mtp-mapping/mtp-mapping.component.spec.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CaSkade-Automation/CaSkade-MES/HEAD/frontend/src/shared/modules/ontology-registration/mtp-mapping/mtp-mapping.component.spec.ts -------------------------------------------------------------------------------- /frontend/src/shared/modules/ontology-registration/mtp-mapping/mtp-mapping.component.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CaSkade-Automation/CaSkade-MES/HEAD/frontend/src/shared/modules/ontology-registration/mtp-mapping/mtp-mapping.component.ts -------------------------------------------------------------------------------- /frontend/src/shared/modules/ontology-registration/ontology-registration.component.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CaSkade-Automation/CaSkade-MES/HEAD/frontend/src/shared/modules/ontology-registration/ontology-registration.component.html -------------------------------------------------------------------------------- /frontend/src/shared/modules/ontology-registration/ontology-registration.component.scss: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /frontend/src/shared/modules/ontology-registration/ontology-registration.component.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CaSkade-Automation/CaSkade-MES/HEAD/frontend/src/shared/modules/ontology-registration/ontology-registration.component.ts -------------------------------------------------------------------------------- /frontend/src/shared/modules/ontology-registration/ontology-registration.module.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CaSkade-Automation/CaSkade-MES/HEAD/frontend/src/shared/modules/ontology-registration/ontology-registration.module.ts -------------------------------------------------------------------------------- /frontend/src/shared/modules/ontology-registration/plc-mapping/plc-mapping.component.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CaSkade-Automation/CaSkade-MES/HEAD/frontend/src/shared/modules/ontology-registration/plc-mapping/plc-mapping.component.html -------------------------------------------------------------------------------- /frontend/src/shared/modules/ontology-registration/plc-mapping/plc-mapping.component.scss: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /frontend/src/shared/modules/ontology-registration/plc-mapping/plc-mapping.component.spec.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CaSkade-Automation/CaSkade-MES/HEAD/frontend/src/shared/modules/ontology-registration/plc-mapping/plc-mapping.component.spec.ts -------------------------------------------------------------------------------- /frontend/src/shared/modules/ontology-registration/plc-mapping/plc-mapping.component.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CaSkade-Automation/CaSkade-MES/HEAD/frontend/src/shared/modules/ontology-registration/plc-mapping/plc-mapping.component.ts -------------------------------------------------------------------------------- /frontend/src/shared/modules/page-header/page-header.component.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CaSkade-Automation/CaSkade-MES/HEAD/frontend/src/shared/modules/page-header/page-header.component.html -------------------------------------------------------------------------------- /frontend/src/shared/modules/page-header/page-header.component.scss: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /frontend/src/shared/modules/page-header/page-header.component.spec.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CaSkade-Automation/CaSkade-MES/HEAD/frontend/src/shared/modules/page-header/page-header.component.spec.ts -------------------------------------------------------------------------------- /frontend/src/shared/modules/page-header/page-header.component.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CaSkade-Automation/CaSkade-MES/HEAD/frontend/src/shared/modules/page-header/page-header.component.ts -------------------------------------------------------------------------------- /frontend/src/shared/modules/page-header/page-header.module.spec.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CaSkade-Automation/CaSkade-MES/HEAD/frontend/src/shared/modules/page-header/page-header.module.spec.ts -------------------------------------------------------------------------------- /frontend/src/shared/modules/page-header/page-header.module.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CaSkade-Automation/CaSkade-MES/HEAD/frontend/src/shared/modules/page-header/page-header.module.ts -------------------------------------------------------------------------------- /frontend/src/shared/modules/skill-card/skill-card.component.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CaSkade-Automation/CaSkade-MES/HEAD/frontend/src/shared/modules/skill-card/skill-card.component.html -------------------------------------------------------------------------------- /frontend/src/shared/modules/skill-card/skill-card.component.scss: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CaSkade-Automation/CaSkade-MES/HEAD/frontend/src/shared/modules/skill-card/skill-card.component.scss -------------------------------------------------------------------------------- /frontend/src/shared/modules/skill-card/skill-card.component.spec.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CaSkade-Automation/CaSkade-MES/HEAD/frontend/src/shared/modules/skill-card/skill-card.component.spec.ts -------------------------------------------------------------------------------- /frontend/src/shared/modules/skill-card/skill-card.component.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CaSkade-Automation/CaSkade-MES/HEAD/frontend/src/shared/modules/skill-card/skill-card.component.ts -------------------------------------------------------------------------------- /frontend/src/shared/modules/skill-card/skill-card.module.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CaSkade-Automation/CaSkade-MES/HEAD/frontend/src/shared/modules/skill-card/skill-card.module.ts -------------------------------------------------------------------------------- /frontend/src/shared/modules/stat/stat.component.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CaSkade-Automation/CaSkade-MES/HEAD/frontend/src/shared/modules/stat/stat.component.html -------------------------------------------------------------------------------- /frontend/src/shared/modules/stat/stat.component.scss: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /frontend/src/shared/modules/stat/stat.component.spec.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CaSkade-Automation/CaSkade-MES/HEAD/frontend/src/shared/modules/stat/stat.component.spec.ts -------------------------------------------------------------------------------- /frontend/src/shared/modules/stat/stat.component.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CaSkade-Automation/CaSkade-MES/HEAD/frontend/src/shared/modules/stat/stat.component.ts -------------------------------------------------------------------------------- /frontend/src/shared/modules/stat/stat.module.spec.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CaSkade-Automation/CaSkade-MES/HEAD/frontend/src/shared/modules/stat/stat.module.spec.ts -------------------------------------------------------------------------------- /frontend/src/shared/modules/stat/stat.module.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CaSkade-Automation/CaSkade-MES/HEAD/frontend/src/shared/modules/stat/stat.module.ts -------------------------------------------------------------------------------- /frontend/src/shared/pipes/shared-pipes.module.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CaSkade-Automation/CaSkade-MES/HEAD/frontend/src/shared/pipes/shared-pipes.module.ts -------------------------------------------------------------------------------- /frontend/src/shared/services/ClipboardService.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CaSkade-Automation/CaSkade-MES/HEAD/frontend/src/shared/services/ClipboardService.ts -------------------------------------------------------------------------------- /frontend/src/shared/services/bpmn/deployment.service.spec.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CaSkade-Automation/CaSkade-MES/HEAD/frontend/src/shared/services/bpmn/deployment.service.spec.ts -------------------------------------------------------------------------------- /frontend/src/shared/services/bpmn/deployment.service.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CaSkade-Automation/CaSkade-MES/HEAD/frontend/src/shared/services/bpmn/deployment.service.ts -------------------------------------------------------------------------------- /frontend/src/shared/services/bpmn/process-definition.service.spec.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CaSkade-Automation/CaSkade-MES/HEAD/frontend/src/shared/services/bpmn/process-definition.service.spec.ts -------------------------------------------------------------------------------- /frontend/src/shared/services/bpmn/process-definition.service.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CaSkade-Automation/CaSkade-MES/HEAD/frontend/src/shared/services/bpmn/process-definition.service.ts -------------------------------------------------------------------------------- /frontend/src/shared/services/bpmn/process-instance.service.spec.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CaSkade-Automation/CaSkade-MES/HEAD/frontend/src/shared/services/bpmn/process-instance.service.spec.ts -------------------------------------------------------------------------------- /frontend/src/shared/services/bpmn/process-instance.service.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CaSkade-Automation/CaSkade-MES/HEAD/frontend/src/shared/services/bpmn/process-instance.service.ts -------------------------------------------------------------------------------- /frontend/src/shared/services/capability.service.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CaSkade-Automation/CaSkade-MES/HEAD/frontend/src/shared/services/capability.service.ts -------------------------------------------------------------------------------- /frontend/src/shared/services/graphDbRepoService.service.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CaSkade-Automation/CaSkade-MES/HEAD/frontend/src/shared/services/graphDbRepoService.service.ts -------------------------------------------------------------------------------- /frontend/src/shared/services/llm-generation.service.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CaSkade-Automation/CaSkade-MES/HEAD/frontend/src/shared/services/llm-generation.service.ts -------------------------------------------------------------------------------- /frontend/src/shared/services/message.service.spec.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CaSkade-Automation/CaSkade-MES/HEAD/frontend/src/shared/services/message.service.spec.ts -------------------------------------------------------------------------------- /frontend/src/shared/services/message.service.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CaSkade-Automation/CaSkade-MES/HEAD/frontend/src/shared/services/message.service.ts -------------------------------------------------------------------------------- /frontend/src/shared/services/module.service.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CaSkade-Automation/CaSkade-MES/HEAD/frontend/src/shared/services/module.service.ts -------------------------------------------------------------------------------- /frontend/src/shared/services/mtp-mapping.service.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CaSkade-Automation/CaSkade-MES/HEAD/frontend/src/shared/services/mtp-mapping.service.ts -------------------------------------------------------------------------------- /frontend/src/shared/services/plc-mapping.service.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CaSkade-Automation/CaSkade-MES/HEAD/frontend/src/shared/services/plc-mapping.service.ts -------------------------------------------------------------------------------- /frontend/src/shared/services/process-planning.service.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CaSkade-Automation/CaSkade-MES/HEAD/frontend/src/shared/services/process-planning.service.ts -------------------------------------------------------------------------------- /frontend/src/shared/services/property.service.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CaSkade-Automation/CaSkade-MES/HEAD/frontend/src/shared/services/property.service.ts -------------------------------------------------------------------------------- /frontend/src/shared/services/query.service.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CaSkade-Automation/CaSkade-MES/HEAD/frontend/src/shared/services/query.service.ts -------------------------------------------------------------------------------- /frontend/src/shared/services/service-locator.service.spec.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CaSkade-Automation/CaSkade-MES/HEAD/frontend/src/shared/services/service-locator.service.spec.ts -------------------------------------------------------------------------------- /frontend/src/shared/services/service-locator.service.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CaSkade-Automation/CaSkade-MES/HEAD/frontend/src/shared/services/service-locator.service.ts -------------------------------------------------------------------------------- /frontend/src/shared/services/skill-execution.service.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CaSkade-Automation/CaSkade-MES/HEAD/frontend/src/shared/services/skill-execution.service.ts -------------------------------------------------------------------------------- /frontend/src/shared/services/skill.service.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CaSkade-Automation/CaSkade-MES/HEAD/frontend/src/shared/services/skill.service.ts -------------------------------------------------------------------------------- /frontend/src/shared/services/sockets/SocketConnection.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CaSkade-Automation/CaSkade-MES/HEAD/frontend/src/shared/services/sockets/SocketConnection.ts -------------------------------------------------------------------------------- /frontend/src/shared/services/sockets/capability-socket.service.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CaSkade-Automation/CaSkade-MES/HEAD/frontend/src/shared/services/sockets/capability-socket.service.ts -------------------------------------------------------------------------------- /frontend/src/shared/services/sockets/module-socket.service.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CaSkade-Automation/CaSkade-MES/HEAD/frontend/src/shared/services/sockets/module-socket.service.ts -------------------------------------------------------------------------------- /frontend/src/shared/services/sockets/skill-socket.service.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CaSkade-Automation/CaSkade-MES/HEAD/frontend/src/shared/services/sockets/skill-socket.service.ts -------------------------------------------------------------------------------- /frontend/src/styles/_responsive.scss: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CaSkade-Automation/CaSkade-MES/HEAD/frontend/src/styles/_responsive.scss -------------------------------------------------------------------------------- /frontend/src/styles/_rtl.scss: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CaSkade-Automation/CaSkade-MES/HEAD/frontend/src/styles/_rtl.scss -------------------------------------------------------------------------------- /frontend/src/styles/_spinner.scss: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CaSkade-Automation/CaSkade-MES/HEAD/frontend/src/styles/_spinner.scss -------------------------------------------------------------------------------- /frontend/src/styles/_utils.scss: -------------------------------------------------------------------------------- 1 | .fs-12 { 2 | font-size: 12px; 3 | } 4 | -------------------------------------------------------------------------------- /frontend/src/styles/app.scss: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CaSkade-Automation/CaSkade-MES/HEAD/frontend/src/styles/app.scss -------------------------------------------------------------------------------- /frontend/test.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CaSkade-Automation/CaSkade-MES/HEAD/frontend/test.ts -------------------------------------------------------------------------------- /frontend/tsconfig.app.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CaSkade-Automation/CaSkade-MES/HEAD/frontend/tsconfig.app.json -------------------------------------------------------------------------------- /frontend/tsconfig.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CaSkade-Automation/CaSkade-MES/HEAD/frontend/tsconfig.json -------------------------------------------------------------------------------- /frontend/tsconfig.spec.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CaSkade-Automation/CaSkade-MES/HEAD/frontend/tsconfig.spec.json -------------------------------------------------------------------------------- /shared/.eslintignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CaSkade-Automation/CaSkade-MES/HEAD/shared/.eslintignore -------------------------------------------------------------------------------- /shared/.eslintrc.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CaSkade-Automation/CaSkade-MES/HEAD/shared/.eslintrc.js -------------------------------------------------------------------------------- /shared/.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CaSkade-Automation/CaSkade-MES/HEAD/shared/.gitignore -------------------------------------------------------------------------------- /shared/package-lock.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CaSkade-Automation/CaSkade-MES/HEAD/shared/package-lock.json -------------------------------------------------------------------------------- /shared/package.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CaSkade-Automation/CaSkade-MES/HEAD/shared/package.json -------------------------------------------------------------------------------- /shared/src/models/RdfElement.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CaSkade-Automation/CaSkade-MES/HEAD/shared/src/models/RdfElement.ts -------------------------------------------------------------------------------- /shared/src/models/capability/Capability.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CaSkade-Automation/CaSkade-MES/HEAD/shared/src/models/capability/Capability.ts -------------------------------------------------------------------------------- /shared/src/models/capability/CapabilityType.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CaSkade-Automation/CaSkade-MES/HEAD/shared/src/models/capability/CapabilityType.ts -------------------------------------------------------------------------------- /shared/src/models/constraints/ConstraintDto.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CaSkade-Automation/CaSkade-MES/HEAD/shared/src/models/constraints/ConstraintDto.ts -------------------------------------------------------------------------------- /shared/src/models/fpb/FpbElementDTO.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CaSkade-Automation/CaSkade-MES/HEAD/shared/src/models/fpb/FpbElementDTO.ts -------------------------------------------------------------------------------- /shared/src/models/graph-visualization/NeighborData.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CaSkade-Automation/CaSkade-MES/HEAD/shared/src/models/graph-visualization/NeighborData.ts -------------------------------------------------------------------------------- /shared/src/models/mappings/LlmCapabilityGenerationDto.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CaSkade-Automation/CaSkade-MES/HEAD/shared/src/models/mappings/LlmCapabilityGenerationDto.ts -------------------------------------------------------------------------------- /shared/src/models/mappings/MappingServiceConfig.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CaSkade-Automation/CaSkade-MES/HEAD/shared/src/models/mappings/MappingServiceConfig.ts -------------------------------------------------------------------------------- /shared/src/models/mappings/PlcMappingRequest.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CaSkade-Automation/CaSkade-MES/HEAD/shared/src/models/mappings/PlcMappingRequest.ts -------------------------------------------------------------------------------- /shared/src/models/process-planning/PlanningDataDto.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CaSkade-Automation/CaSkade-MES/HEAD/shared/src/models/process-planning/PlanningDataDto.ts -------------------------------------------------------------------------------- /shared/src/models/process-planning/PlanningResult.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CaSkade-Automation/CaSkade-MES/HEAD/shared/src/models/process-planning/PlanningResult.ts -------------------------------------------------------------------------------- /shared/src/models/processDefinition/ProcessDefinition.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CaSkade-Automation/CaSkade-MES/HEAD/shared/src/models/processDefinition/ProcessDefinition.ts -------------------------------------------------------------------------------- /shared/src/models/processInstance/ProcessInstance.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CaSkade-Automation/CaSkade-MES/HEAD/shared/src/models/processInstance/ProcessInstance.ts -------------------------------------------------------------------------------- /shared/src/models/production-module/ProductionModule.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CaSkade-Automation/CaSkade-MES/HEAD/shared/src/models/production-module/ProductionModule.ts -------------------------------------------------------------------------------- /shared/src/models/properties/PropertyDTO.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CaSkade-Automation/CaSkade-MES/HEAD/shared/src/models/properties/PropertyDTO.ts -------------------------------------------------------------------------------- /shared/src/models/skill/Skill.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CaSkade-Automation/CaSkade-MES/HEAD/shared/src/models/skill/Skill.ts -------------------------------------------------------------------------------- /shared/src/models/skill/SkillExecutionRequest.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CaSkade-Automation/CaSkade-MES/HEAD/shared/src/models/skill/SkillExecutionRequest.ts -------------------------------------------------------------------------------- /shared/src/models/skill/SkillVariable.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CaSkade-Automation/CaSkade-MES/HEAD/shared/src/models/skill/SkillVariable.ts -------------------------------------------------------------------------------- /shared/src/models/socket-communication/SocketData.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CaSkade-Automation/CaSkade-MES/HEAD/shared/src/models/socket-communication/SocketData.ts -------------------------------------------------------------------------------- /shared/src/models/state-machine/Command.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CaSkade-Automation/CaSkade-MES/HEAD/shared/src/models/state-machine/Command.ts -------------------------------------------------------------------------------- /shared/src/models/state-machine/ISA88/ISA88CommandTypeIri.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CaSkade-Automation/CaSkade-MES/HEAD/shared/src/models/state-machine/ISA88/ISA88CommandTypeIri.ts -------------------------------------------------------------------------------- /shared/src/models/state-machine/ISA88/ISA88StateMachine.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CaSkade-Automation/CaSkade-MES/HEAD/shared/src/models/state-machine/ISA88/ISA88StateMachine.ts -------------------------------------------------------------------------------- /shared/src/models/state-machine/ISA88/ISA88StateMachineBuilder.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CaSkade-Automation/CaSkade-MES/HEAD/shared/src/models/state-machine/ISA88/ISA88StateMachineBuilder.ts -------------------------------------------------------------------------------- /shared/src/models/state-machine/ISA88/ISA88StateTypeIri.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CaSkade-Automation/CaSkade-MES/HEAD/shared/src/models/state-machine/ISA88/ISA88StateTypeIri.ts -------------------------------------------------------------------------------- /shared/src/models/state-machine/State.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CaSkade-Automation/CaSkade-MES/HEAD/shared/src/models/state-machine/State.ts -------------------------------------------------------------------------------- /shared/src/models/state-machine/StateMachine.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CaSkade-Automation/CaSkade-MES/HEAD/shared/src/models/state-machine/StateMachine.ts -------------------------------------------------------------------------------- /shared/src/models/state-machine/Transition.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CaSkade-Automation/CaSkade-MES/HEAD/shared/src/models/state-machine/Transition.ts -------------------------------------------------------------------------------- /shared/tsconfig.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CaSkade-Automation/CaSkade-MES/HEAD/shared/tsconfig.json -------------------------------------------------------------------------------- /tsconfig.base.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CaSkade-Automation/CaSkade-MES/HEAD/tsconfig.base.json --------------------------------------------------------------------------------